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/ktasTravel_db.sql
-- MySQL dump 10.13  Distrib 8.0.27, for Linux (x86_64)
--
-- Host: localhost    Database: ktasTravel_db
-- ------------------------------------------------------
-- 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: `ktasTravel_db`
--

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

USE `ktasTravel_db`;

--
-- 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','','mail@wowidays.com','admin','367c436285b64a20da47d20ed973c3b6','2010-10-30 22:51:18','2010-10-30 22:51:18','2010-10-30 23:39:32',1,'admin'),(2,'baibhav','kumar','baibhav@catpl.co.in','admin123','e10adc3949ba59abbe56e057f20f883e','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=2 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,38535,32651,50000.00,1,50000.00,'2022-12-12 17:01:17');
/*!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=5 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,38535,32651,1,50000.00,1,'2022-12-12',5216,'2022-12-12 16:33:00','2022-12-12 00:00:00',0,1,50000.00,'2022-12-12 16:54:56','Flight Booking ',0,4655.50,50000.00,50000.00,2,28816,'DMCS105500415511',1,'Online Wallet','Farhan Corporate','0'),(2,38535,32651,1,50000.00,1,'2022-12-12',5216,'2022-12-12 16:33:00','2022-12-12 00:00:00',0,1,50000.00,'2022-12-12 16:54:53','Add Fund',1,4655.50,50000.00,54655.50,2,28815,'DMCS105500415511',7,'Self Card','Farhan Corporate','0'),(3,38535,32651,1,50000.00,1,'2022-12-12',5216,'2022-12-12 16:33:00','2022-12-12 00:00:00',0,1,50000.00,'2022-12-12 16:33:00','',1,50000.00,50000.00,50000.00,1,28811,'1670842847',7,'Add Credit','Farhan Corporate','0'),(4,38535,32651,1,50000.00,1,'2022-12-12',5216,'2022-12-12 16:33:00','2022-12-12 00:00:00',0,1,50000.00,'2022-12-12 16:27:00','Welcome',1,0.00,0.00,0.00,1,28809,'',7,'Start Account','Farhan Corporate','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 AUTO_INCREMENT=5 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 */;
INSERT INTO `tb_agency_userrole_mapping` VALUES (1,38518,40506,'1','1','0'),(2,38535,40523,'1','1','0'),(3,92553,95443,'1','1','0'),(4,111515,114896,'1','1','0');
/*!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 AUTO_INCREMENT=102 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 */;
INSERT INTO `tb_agency_userrole_permission` VALUES (1,38518,40506,0,'Dashboard','MOD01','dashboard','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',1,'1','dashboard',1,'0','index'),(2,38518,40506,0,'Staff Management','MOD02','','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',19,'1','staff-management',1,'0',''),(3,38518,40506,0,'Staff','STA01','staff','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',20,'1','staff-management',2,'MOD02','index'),(4,38518,40506,0,'Search','MOD03','','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',2,'1','search',1,'0',''),(5,38518,40506,0,'Flights','SRC01','flight','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',3,'1','default',2,'MOD03','flight'),(6,38518,40506,0,'Hotels','SRC02','hotels','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',4,'1','hotels',2,'MOD03','index'),(7,38518,40506,0,'Hotels','SRC03','hotelsinv','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',5,'1','hotelsinv',2,'MOD03','index'),(8,38518,40506,0,'Holidays','SRC04','holidays','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',6,'1','holidays',4,'MOD03','index'),(9,38518,40506,0,'Activities','SRC05','activities','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',7,'1','activities',4,'MOD03','index'),(10,38518,40506,0,'Reports','MOD04','','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',8,'1','bookings',1,'0',''),(11,38518,40506,0,'Flight Booking','BOK01','bookings/flight','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',9,'1','bookings',3,'MOD04','flight'),(12,38518,40506,0,'Flight Amendment','BOK02','bookings/flight/amendment','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',10,'1','bookings',3,'MOD04','flight'),(13,38518,40506,0,'Flight Checkin','BOK03','bookings/flight/checkin','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',11,'1','bookings',3,'MOD04','flight'),(14,38518,40506,0,'Hotel Booking','BOK04','bookings/hotel','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',12,'1','bookings',4,'MOD04','hotel'),(15,38518,40506,0,'Hotel Amendment','BOK05','bookings/hotel/amendment','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',13,'1','bookings',4,'MOD04','hotel'),(16,38518,40506,0,'Hotel Checkin','BOK06','bookings/hotel/checkin','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',14,'1','bookings',4,'MOD04','hotel'),(17,38518,40506,0,'Finance','MOD05','','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',15,'1','finance',1,'0',''),(18,38518,40506,0,'Deposit Payment','FIN01','finance/deposit','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',16,'1','finance',2,'MOD05','deposit'),(19,38518,40506,0,'Ledger','FIN02','finance/ledger','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',17,'1','finance',2,'MOD05','ledger'),(20,38518,40506,0,'Settings','MOD06','','2022-12-12 15:21:00','2022-12-12 15:21:00','0','0',21,'1','settings',1,'0',''),(21,38518,40506,0,'Markup','SET01','markup','2022-12-12 15:21:00','2022-12-12 15:21:00','0','0',22,'1','default',1,'MOD06','markup'),(22,38518,40506,0,'My Queries','MOD07','list/index/my-query','2022-12-12 15:21:00','2022-12-12 15:21:00','1','0',18,'1','list',1,'0','index'),(23,38535,40523,0,'Dashboard','MOD01','dashboard','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',1,'1','dashboard',1,'0','index'),(24,38535,40523,0,'Staff Management','MOD02','','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',19,'1','staff-management',1,'0',''),(25,38535,40523,0,'Staff','STA01','staff','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',20,'1','staff-management',2,'MOD02','index'),(26,38535,40523,0,'Search','MOD03','','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',2,'1','search',1,'0',''),(27,38535,40523,0,'Flights','SRC01','flight','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',3,'1','default',2,'MOD03','flight'),(28,38535,40523,0,'Hotels','SRC02','hotels','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',4,'1','hotels',2,'MOD03','index'),(29,38535,40523,0,'Hotels','SRC03','hotelsinv','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',5,'1','hotelsinv',2,'MOD03','index'),(30,38535,40523,0,'Holidays','SRC04','holidays','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',6,'1','holidays',4,'MOD03','index'),(31,38535,40523,0,'Activities','SRC05','activities','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',7,'1','activities',4,'MOD03','index'),(32,38535,40523,0,'Reports','MOD04','','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',8,'1','bookings',1,'0',''),(33,38535,40523,0,'Flight Booking','BOK01','bookings/flight','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',9,'1','bookings',3,'MOD04','flight'),(34,38535,40523,0,'Flight Amendment','BOK02','bookings/flight/amendment','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',10,'1','bookings',3,'MOD04','flight'),(35,38535,40523,0,'Flight Checkin','BOK03','bookings/flight/checkin','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',11,'1','bookings',3,'MOD04','flight'),(36,38535,40523,0,'Hotel Booking','BOK04','bookings/hotel','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',12,'1','bookings',4,'MOD04','hotel'),(37,38535,40523,0,'Hotel Amendment','BOK05','bookings/hotel/amendment','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',13,'1','bookings',4,'MOD04','hotel'),(38,38535,40523,0,'Hotel Checkin','BOK06','bookings/hotel/checkin','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',14,'1','bookings',4,'MOD04','hotel'),(39,38535,40523,0,'Finance','MOD05','','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',15,'1','finance',1,'0',''),(40,38535,40523,0,'Deposit Payment','FIN01','finance/deposit','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',16,'1','finance',2,'MOD05','deposit'),(41,38535,40523,0,'Ledger','FIN02','finance/ledger','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',17,'1','finance',2,'MOD05','ledger'),(42,38535,40523,0,'Settings','MOD06','','2022-12-12 16:26:00','2022-12-12 16:26:00','0','0',21,'1','settings',1,'0',''),(43,38535,40523,0,'Markup','SET01','markup','2022-12-12 16:26:00','2022-12-12 16:26:00','0','0',22,'1','default',1,'MOD06','markup'),(44,38535,40523,0,'My Queries','MOD07','list/index/my-query','2022-12-12 16:26:00','2022-12-12 16:26:00','1','0',18,'1','list',1,'0','index'),(45,92553,95443,0,'Dashboard','MOD01','dashboard','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',1,'1','dashboard',1,'0','index'),(46,92553,95443,0,'Staff Management','MOD02','','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',19,'1','staff-management',1,'0',''),(47,92553,95443,0,'Staff','STA01','staff','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',20,'1','staff-management',2,'MOD02','index'),(48,92553,95443,0,'Search','MOD03','','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',2,'1','search',1,'0',''),(49,92553,95443,0,'Flights','SRC01','flight','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',3,'1','default',2,'MOD03','flight'),(50,92553,95443,0,'Hotels','SRC02','hotels','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',4,'1','hotels',2,'MOD03','index'),(51,92553,95443,0,'Hotels','SRC03','hotelsinv','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',5,'1','hotelsinv',2,'MOD03','index'),(52,92553,95443,0,'Holidays','SRC04','holidays','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',8,'1','holidays',4,'MOD03','index'),(53,92553,95443,0,'Activities','SRC05','activities','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',9,'1','activities',4,'MOD03','index'),(54,92553,95443,0,'Umrah','SRC06','holidays/search-result?cat=umrah','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',10,'1','umrah',4,'MOD03','index'),(55,92553,95443,0,'Build Package','SRC07','byo','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',6,'1','byo',4,'MOD03','index'),(56,92553,95443,0,'Land Only Package','SRC08','byonew','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',7,'1','byonew',4,'MOD03','index'),(57,92553,95443,0,'Visa','SRC09','visa','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',11,'1','visa',4,'MOD03','index'),(58,92553,95443,0,'Manage Inventory','SRC10','flight-inventory','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',12,'1','flight-inventory',4,'MOD03','index'),(59,92553,95443,0,'Reports','MOD04','','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',8,'1','bookings',1,'0',''),(60,92553,95443,0,'Flight Booking','BOK01','bookings/flight','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',9,'1','bookings',3,'MOD04','flight'),(61,92553,95443,0,'Flight Amendment','BOK02','bookings/flight/amendment','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',10,'1','bookings',3,'MOD04','flight'),(62,92553,95443,0,'Flight Checkin','BOK03','bookings/flight/checkin','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',11,'1','bookings',3,'MOD04','flight'),(63,92553,95443,0,'Hotel Booking','BOK04','bookings/hotel','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',12,'1','bookings',4,'MOD04','hotel'),(64,92553,95443,0,'Hotel Amendment','BOK05','bookings/hotel/amendment','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',13,'1','bookings',4,'MOD04','hotel'),(65,92553,95443,0,'Hotel Checkin','BOK06','bookings/hotel/checkin','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',14,'1','bookings',4,'MOD04','hotel'),(66,92553,95443,0,'Sales Report','BOK07','flight-inventory/index/flight-booking','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',23,'1','flight-inventory',4,'MOD04','index'),(67,92553,95443,0,'Cancellation Report','BOK08','flight-inventory/index/flight-booking/filter/cancel','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',24,'1','flight-inventory',4,'MOD04','index'),(68,92553,95443,0,'Finance','MOD05','','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',15,'1','finance',1,'0',''),(69,92553,95443,0,'Deposit Payment','FIN01','finance/deposit','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',16,'1','finance',2,'MOD05','deposit'),(70,92553,95443,0,'Ledger','FIN02','finance/ledger','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',17,'1','finance',2,'MOD05','ledger'),(71,92553,95443,0,'Settings','MOD06','','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',21,'1','settings',1,'0',''),(72,92553,95443,0,'Markup','SET01','markup','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',22,'1','default',1,'MOD06','markup'),(73,92553,95443,0,'My Queries','MOD07','list/index/my-query','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',18,'1','list',1,'0','index'),(74,92553,95443,0,'My Bookings','MOD08','list/index/my-query/type/confirmed','2023-09-20 16:05:00','2023-09-20 16:05:00','1','0',19,'1','list',1,'0','index'),(75,111515,114896,0,'Dashboard','MOD01','dashboard','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',1,'1','dashboard',1,'0','index'),(76,111515,114896,0,'Staff Management','MOD02','','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',19,'1','staff-management',1,'0',''),(77,111515,114896,0,'Staff','STA01','staff','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',20,'1','staff-management',2,'MOD02','index'),(78,111515,114896,0,'Search','MOD03','','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',2,'1','search',1,'0',''),(79,111515,114896,0,'Flights','SRC01','flight','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',3,'1','default',2,'MOD03','flight'),(80,111515,114896,0,'Hotels','SRC02','hotels','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',4,'1','hotels',2,'MOD03','index'),(81,111515,114896,0,'Hotels','SRC03','hotelsinv','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',5,'1','hotelsinv',2,'MOD03','index'),(82,111515,114896,0,'Holidays','SRC04','holidays','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',8,'1','holidays',4,'MOD03','index'),(83,111515,114896,0,'Activities','SRC05','activities','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',9,'1','activities',4,'MOD03','index'),(84,111515,114896,0,'Umrah','SRC06','holidays/search-result?cat=umrah','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',10,'1','umrah',4,'MOD03','index'),(85,111515,114896,0,'Build Package','SRC07','byo','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',6,'1','byo',4,'MOD03','index'),(86,111515,114896,0,'Land Only Package','SRC08','byonew','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',7,'1','byonew',4,'MOD03','index'),(87,111515,114896,0,'Visa','SRC09','visa','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',11,'1','visa',4,'MOD03','index'),(88,111515,114896,0,'Reports','MOD04','','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',8,'1','bookings',1,'0',''),(89,111515,114896,0,'Flight Booking','BOK01','bookings/flight','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',9,'1','bookings',3,'MOD04','flight'),(90,111515,114896,0,'Flight Amendment','BOK02','bookings/flight/amendment','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',10,'1','bookings',3,'MOD04','flight'),(91,111515,114896,0,'Flight Checkin','BOK03','bookings/flight/checkin','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',11,'1','bookings',3,'MOD04','flight'),(92,111515,114896,0,'Hotel Booking','BOK04','bookings/hotel','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',12,'1','bookings',4,'MOD04','hotel'),(93,111515,114896,0,'Hotel Amendment','BOK05','bookings/hotel/amendment','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',13,'1','bookings',4,'MOD04','hotel'),(94,111515,114896,0,'Hotel Checkin','BOK06','bookings/hotel/checkin','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',14,'1','bookings',4,'MOD04','hotel'),(95,111515,114896,0,'Finance','MOD05','','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',15,'1','finance',1,'0',''),(96,111515,114896,0,'Deposit Payment','FIN01','finance/deposit','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',16,'1','finance',2,'MOD05','deposit'),(97,111515,114896,0,'Ledger','FIN02','finance/ledger','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',17,'1','finance',2,'MOD05','ledger'),(98,111515,114896,0,'Settings','MOD06','','2024-02-07 11:27:00','2024-02-07 11:27:00','0','0',21,'1','settings',1,'0',''),(99,111515,114896,0,'Markup','SET01','markup','2024-02-07 11:27:00','2024-02-07 11:27:00','0','0',22,'1','default',1,'MOD06','markup'),(100,111515,114896,0,'My Queries','MOD07','list/index/my-query','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',18,'1','list',1,'0','index'),(101,111515,114896,0,'My Bookings','MOD08','list/index/my-query/type/confirmed','2024-02-07 11:27:00','2024-02-07 11:27:00','1','0',19,'1','list',1,'0','index');
/*!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=9 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,38518,4539,'ONLINE','F9E5716939044586A5743A570EDA72C3',50000,'BFC40E146DEA466BA8C4D23F2A8852FC','2022-12-12','',7,1,40506,'2022-12-12 15:38:06','2022-12-12 15:38:06',0,1,1,NULL,NULL,NULL),(2,38535,4539,'CASH','55F10E0A48214AC7AE540FFE4A658531',1000,'','2022-12-12','Abid',7,1,40523,'2022-12-12 17:35:11','2022-12-12 17:35:11',0,1,0,NULL,NULL,NULL),(3,38535,4539,'ONLINE',NULL,5000,'','2022-12-13','',7,1,40523,'2022-12-13 17:38:54','2022-12-13 17:38:54',0,0,0,NULL,NULL,NULL),(4,92553,59951,'ONLINE','7E77AD247453406695E79A62AE457E95',10000,'11000000439558','2023-09-28','',7,1,95443,'2023-09-28 11:14:19','2023-09-28 11:14:19',0,1,1,'TRANSACTION IS SUCCESSFUL.',NULL,NULL),(5,92553,59951,'ONLINE','84EB0A32E61D4A70B22A37E764461BBF',20000,'11000000439574','2023-09-28','',7,1,95443,'2023-09-28 11:42:23','2023-09-28 11:42:23',0,1,1,'TRANSACTION IS SUCCESSFUL.',NULL,NULL),(6,92553,59951,'ONLINE','80887C6947E74E6A981AD5D486E77B9D',10000,'11000000447836','2023-10-13','',7,1,95443,'2023-10-13 10:45:39','2023-10-13 10:45:39',0,1,1,'TRANSACTION IS SUCCESSFUL.',NULL,NULL),(7,111515,59951,'Bank Transfer','11EF43AECEFF4CA98595BE116F7DC8CC',100,'1234567','2024-02-07','',7,1,114896,'2024-02-07 11:29:09','2024-02-07 11:29:49',0,1,1,NULL,NULL,NULL),(8,111515,59951,'Bank Transfer','609340EEA49C496F8DD51EA43BFD6D2C',5000,'3434345','2024-02-07','',7,1,114896,'2024-02-07 20:48:32','2024-02-07 20:48:32',0,1,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=5 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,'db677-03123-9c609-0d0d6','1',1,38535,4539,'TJS105500415511','CANCELLATION_QUOTATION','na','{\"bookingId\":\"TJS105500415511\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"na\",\"trips\":[{\"src\":\"BOM\",\"dest\":\"DEL\",\"departureDate\":\"2022-12-15\",\"travellers\":[{\"fn\":null,\"ln\":null}]}]}','[]','Online/Cash',NULL,0.00,0.00,0,'','Array','2022-12-12 17:19:02','2022-12-12 17:19:02'),(2,'db677-03123-9c609-0d0d6','2',1,38535,4539,'TJS105500415511','CANCELLATION_QUOTATION','na','{\"bookingId\":\"TJS105500415511\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"na\",\"trips\":[{\"src\":\"BOM\",\"dest\":\"DEL\",\"departureDate\":\"2022-12-15\",\"travellers\":[{\"fn\":null,\"ln\":null}]}]}','[]','Online/Cash',NULL,0.00,0.00,0,'','Array','2022-12-12 17:19:07','2022-12-12 17:19:07'),(3,'c0978-f2273-8d1c2-8e692','3',1,92553,59951,'TJS100700715182','CANCELLATION_QUOTATION','Please update cancellation price','{\"bookingId\":\"TJS100700715182\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"Please update cancellation price\",\"trips\":[{\"src\":\"BLR\",\"dest\":\"DEL\",\"departureDate\":\"2023-10-10\",\"travellers\":[{\"fn\":null,\"ln\":null}]}]}','[]','Online/Cash',NULL,0.00,0.00,0,'','Array','2023-10-03 10:52:07','2023-10-03 10:52:07'),(4,'c0978-f2273-8d1c2-8e692','4',1,92553,59951,'TJS100700715182','CANCELLATION_QUOTATION','Please update cancellation price','{\"bookingId\":\"TJS100700715182\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"Please update cancellation price\",\"trips\":[{\"src\":\"BLR\",\"dest\":\"DEL\",\"departureDate\":\"2023-10-10\",\"travellers\":[{\"fn\":null,\"ln\":null}]}]}','[]','Online/Cash',NULL,0.00,0.00,0,'','Array','2023-10-03 10:52:26','2023-10-03 10:52:26');
/*!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=19 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 (3,'3_1646383668.jpg','','','',0,'1',1,'0',0,1,0),(14,'14_1686227829.jpg','','','',0,'0',1,'0',0,1,0),(15,'15_1686227840.jpg','','','',0,'0',1,'0',0,1,0),(16,'16_1686227861.jpg','','','',0,'0',1,'0',0,1,0),(17,'17_1686227868.jpg','','','',0,'0',1,'0',0,1,0),(18,'18_1686227877.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=28059 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),(28058,'140522','Udaipur','Udaipur','IN','','India','',2,0,101,'2022-12-07 08:27:01','2022-12-07 08:27:01',1,0,1);
/*!40000 ALTER TABLE `tb_master_geo_city` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_master_geo_city_new`
--

DROP TABLE IF EXISTS `tb_master_geo_city_new`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_master_geo_city_new` (
  `id` int NOT NULL AUTO_INCREMENT,
  `CityId` int NOT NULL,
  `TBBCityId` int NOT NULL,
  `CityName` varchar(43) NOT NULL,
  `countryTitle` varchar(31) DEFAULT NULL,
  `Code` varchar(2) DEFAULT NULL,
  `label` varchar(60) NOT NULL,
  `IsActive` smallint NOT NULL DEFAULT '1',
  `IsApproved` smallint NOT NULL DEFAULT '1',
  `IsMarkForDel` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51463 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_master_geo_city_new`
--

LOCK TABLES `tb_master_geo_city_new` WRITE;
/*!40000 ALTER TABLE `tb_master_geo_city_new` DISABLE KEYS */;
INSERT INTO `tb_master_geo_city_new` VALUES (1,720,100203,'Almora','India','IN','Almora (India)',1,1,0),(2,296,100263,'Ahmedabad','India','IN','Ahmedabad (India)',1,1,0),(3,360,100273,'Aizawl','India','IN','Aizawl (India)',1,1,0),(4,650,100307,'Allahabad','India','IN','Allahabad (India)',1,1,0),(5,34308,100363,'Ahmednagar','India','IN','Ahmednagar (India)',1,1,0),(6,635,100420,'Aligarh','India','IN','Aligarh (India)',1,1,0),(7,34478,100578,'Agatti','India','IN','Agatti (India)',1,1,0),(8,266,100589,'Agra','India','IN','Agra (India)',1,1,0),(9,229,100667,'Agartala','India','IN','Agartala (India)',1,1,0),(10,0,100686,'Ajabgarh','India','IN','Ajabgarh (India)',1,1,0),(11,34309,100689,'Akola','India','IN','Akola (India)',1,1,0),(12,0,100797,'Ahmedpur Mandvi','India','IN','Ahmedpur Mandvi (India)',1,1,0),(13,367,100804,'Ajmer','India','IN','Ajmer (India)',1,1,0),(14,887,100881,'Ambala','India','IN','Ambala (India)',1,1,0),(15,0,101068,'Arrosim Beach','India','IN','Arrosim Beach (India)',1,1,0),(16,973,101128,'Amravati','India','IN','Amravati (India)',1,1,0),(17,974,101129,'Amritsar','India','IN','Amritsar (India)',1,1,0),(18,0,101146,'Anjuna','India','IN','Anjuna (India)',1,1,0),(19,1102,101147,'Ankleshwar','India','IN','Ankleshwar (India)',1,1,0),(20,14275,101204,'Kochi','India','IN','Kochi (India)',1,1,0),(21,0,101318,'Bhayandar','India','IN','Bhayandar (India)',1,1,0),(22,0,101349,'Alto Porvorim','India','IN','Alto Porvorim (India)',1,1,0),(23,0,101485,'Baindur','India','IN','Baindur (India)',1,1,0),(24,0,101509,'Gangavathi','India','IN','Gangavathi (India)',1,1,0),(25,0,101615,'Adyar','India','IN','Adyar (India)',1,1,0),(26,620,101625,'Alibag','India','IN','Alibag (India)',1,1,0),(27,0,101671,'Khas Nagrota','India','IN','Khas Nagrota (India)',1,1,0),(28,0,101696,'Koti','India','IN','Koti (India)',1,1,0),(29,0,101849,'Daund','India','IN','Daund (India)',1,1,0),(30,17986,101894,'Mollem','India','IN','Mollem (India)',1,1,0),(31,0,101967,'Kottivakkam','India','IN','Kottivakkam (India)',1,1,0),(32,0,102033,'Narkanda','India','IN','Narkanda (India)',1,1,0),(33,0,102138,'Adoor','India','IN','Adoor (India)',1,1,0),(34,0,102166,'Angul','India','IN','Angul (India)',1,1,0),(35,0,102213,'Beawar','India','IN','Beawar (India)',1,1,0),(36,0,102259,'Chandipur','India','IN','Chandipur (India)',1,1,0),(37,0,102287,'Coochbehar','India','IN','Coochbehar (India)',1,1,0),(38,0,102310,'Dharampur','India','IN','Dharampur (India)',1,1,0),(39,0,102458,'Fatehabad','India','IN','Fatehabad (India)',1,1,0),(40,0,102486,'Gosaba','India','IN','Gosaba (India)',1,1,0),(41,0,102499,'Gudalur','India','IN','Gudalur (India)',1,1,0),(42,0,102512,'Hebbal','India','IN','Hebbal (India)',1,1,0),(43,0,102531,'Ichalkaranji','India','IN','Ichalkaranji (India)',1,1,0),(44,35283,102540,'Kasol','India','IN','Kasol (India)',1,1,0),(45,0,102545,'Khandela','India','IN','Khandela (India)',1,1,0),(46,0,102599,'Malayattoor','India','IN','Malayattoor (India)',1,1,0),(47,34493,102675,'Ratlam','India','IN','Ratlam (India)',1,1,0),(48,0,102683,'Renigunta','India','IN','Renigunta (India)',1,1,0),(49,0,102750,'Perambalur','India','IN','Perambalur (India)',1,1,0),(50,17942,102819,'Mohan','India','IN','Mohan (India)',1,1,0),(51,34505,102834,'Morbi','India','IN','Morbi (India)',1,1,0),(52,0,102941,'Rajakkad','India','IN','Rajakkad (India)',1,1,0),(53,0,102942,'Rajapalayam','India','IN','Rajapalayam (India)',1,1,0),(54,0,102954,'Rinchenpong','India','IN','Rinchenpong (India)',1,1,0),(55,0,103180,'Sirsa','India','IN','Sirsa (India)',1,1,0),(56,0,103217,'Rohetgarh','India','IN','Rohetgarh (India)',1,1,0),(57,0,103270,'Perinthalmanna','India','IN','Perinthalmanna (India)',1,1,0),(58,0,103325,'Saharanpur','India','IN','Saharanpur (India)',1,1,0),(59,0,103344,'Samayapuram','India','IN','Samayapuram (India)',1,1,0),(60,0,103345,'Sambalpur','India','IN','Sambalpur (India)',1,1,0),(61,24081,103346,'Samode','India','IN','Samode (India)',1,1,0),(62,34389,103491,'Salasar','India','IN','Salasar (India)',1,1,0),(63,0,103727,'Kudal','India','IN','Kudal (India)',1,1,0),(64,0,103728,'Kurnool','India','IN','Kurnool (India)',1,1,0),(65,0,103751,'Lansdowne','India','IN','Lansdowne (India)',1,1,0),(66,34465,103781,'Mahad','India','IN','Mahad (India)',1,1,0),(67,0,103825,'Mohania','India','IN','Mohania (India)',1,1,0),(68,0,103877,'Kondotty','India','IN','Kondotty (India)',1,1,0),(69,0,103888,'Kundapur','India','IN','Kundapur (India)',1,1,0),(70,34312,103931,'Jalna','India','IN','Jalna (India)',1,1,0),(71,0,103950,'Karimnagar','India','IN','Karimnagar (India)',1,1,0),(72,0,104040,'McLeod Ganj','India','IN','McLeod Ganj (India)',1,1,0),(73,0,104092,'Kalady','India','IN','Kalady (India)',1,1,0),(74,0,104156,'Mandarmoni','India','IN','Mandarmoni (India)',1,1,0),(75,0,104157,'Manipal','India','IN','Manipal (India)',1,1,0),(76,34437,104260,'Naggar','India','IN','Naggar (India)',1,1,0),(77,16298,104313,'Madikeri','India','IN','Madikeri (India)',1,1,0),(78,0,104316,'Mahansar','India','IN','Mahansar (India)',1,1,0),(79,0,104318,'Majorda','India','IN','Majorda (India)',1,1,0),(80,16736,104323,'Mapusa','India','IN','Mapusa (India)',1,1,0),(81,0,104345,'Meppadi','India','IN','Meppadi (India)',1,1,0),(82,0,104482,'Mandrem','India','IN','Mandrem (India)',1,1,0),(83,34511,104506,'Nadiad','India','IN','Nadiad (India)',1,1,0),(84,34538,104509,'Namakkal','India','IN','Namakkal (India)',1,1,0),(85,0,104531,'Nilgiri','India','IN','Nilgiri (India)',1,1,0),(86,0,104724,'Arambol','India','IN','Arambol (India)',1,1,0),(87,0,104936,'Dadahu','India','IN','Dadahu (India)',1,1,0),(88,0,104946,'Dhanachuli','India','IN','Dhanachuli (India)',1,1,0),(89,0,105028,'Barauni','India','IN','Barauni (India)',1,1,0),(90,0,105046,'Bharmour','India','IN','Bharmour (India)',1,1,0),(91,0,105141,'Abu Road','India','IN','Abu Road (India)',1,1,0),(92,0,105159,'Amer','India','IN','Amer (India)',1,1,0),(93,0,105160,'Anandpur','India','IN','Anandpur (India)',1,1,0),(94,0,105178,'Athirapilly','India','IN','Athirapilly (India)',1,1,0),(95,0,105188,'Balangir','India','IN','Balangir (India)',1,1,0),(96,34311,105246,'Chandrapur','India','IN','Chandrapur (India)',1,1,0),(97,0,105247,'Changodar','India','IN','Changodar (India)',1,1,0),(98,34562,105400,'Bhilai','India','IN','Bhilai (India)',1,1,0),(99,0,105482,'Deoghar','India','IN','Deoghar (India)',1,1,0),(100,0,105541,'Kuruppanthara','India','IN','Kuruppanthara (India)',1,1,0),(101,0,105614,'Jambulne','India','IN','Jambulne (India)',1,1,0),(102,34521,105627,'Junagadh','India','IN','Junagadh (India)',1,1,0),(103,0,105633,'Kalpatta','India','IN','Kalpatta (India)',1,1,0),(104,34290,105648,'Bhilwara','India','IN','Bhilwara (India)',1,1,0),(105,34404,105649,'Bhowali','India','IN','Bhowali (India)',1,1,0),(106,0,105699,'Candolim','India','IN','Candolim (India)',1,1,0),(107,0,105721,'Champakulam','India','IN','Champakulam (India)',1,1,0),(108,0,105734,'Bhat','India','IN','Bhat (India)',1,1,0),(109,0,105736,'Bijainagar','India','IN','Bijainagar (India)',1,1,0),(110,0,105779,'Dhela','India','IN','Dhela (India)',1,1,0),(111,0,105832,'Guirim','India','IN','Guirim (India)',1,1,0),(112,0,105850,'Hisar','India','IN','Hisar (India)',1,1,0),(113,0,105885,'Jhadol','India','IN','Jhadol (India)',1,1,0),(114,0,105896,'Tiracol','India','IN','Tiracol (India)',1,1,0),(115,0,105998,'Darbhanga','India','IN','Darbhanga (India)',1,1,0),(116,34483,106006,'Dhanaulti','India','IN','Dhanaulti (India)',1,1,0),(117,0,106010,'Dindigul','India','IN','Dindigul (India)',1,1,0),(118,0,106106,'Giridih','India','IN','Giridih (India)',1,1,0),(119,34328,106131,'Guntur','India','IN','Guntur (India)',1,1,0),(120,34497,106186,'Khandwa','India','IN','Khandwa (India)',1,1,0),(121,0,106208,'Cherai Beach','India','IN','Cherai Beach (India)',1,1,0),(122,34356,106255,'Devprayag','India','IN','Devprayag (India)',1,1,0),(123,0,106383,'Thakurdwara','India','IN','Thakurdwara (India)',1,1,0),(124,0,106394,'Tiruttani','India','IN','Tiruttani (India)',1,1,0),(125,34345,106481,'Margao','India','IN','Margao (India)',1,1,0),(126,34411,106510,'Mirik','India','IN','Mirik (India)',1,1,0),(127,17940,106514,'Mohali','India','IN','Mohali (India)',1,1,0),(128,0,106556,'North Paravur','India','IN','North Paravur (India)',1,1,0),(129,0,106580,'Pangong Tso Lake','India','IN','Pangong Tso Lake (India)',1,1,0),(130,0,106639,'Sholayur','India','IN','Sholayur (India)',1,1,0),(131,34490,106649,'Singrauli','India','IN','Singrauli (India)',1,1,0),(132,0,106650,'Sirkazhi','India','IN','Sirkazhi (India)',1,1,0),(133,0,106651,'Skara','India','IN','Skara (India)',1,1,0),(134,0,106662,'Pateri','India','IN','Pateri (India)',1,1,0),(135,20914,106663,'Patiala','India','IN','Patiala (India)',1,1,0),(136,0,106676,'Phaltan','India','IN','Phaltan (India)',1,1,0),(137,0,106703,'Pudukkotai','India','IN','Pudukkotai (India)',1,1,0),(138,0,106770,'Sanand','India','IN','Sanand (India)',1,1,0),(139,34556,106849,'Trimbak','India','IN','Trimbak (India)',1,1,0),(140,0,106856,'Tura','India','IN','Tura (India)',1,1,0),(141,0,106898,'Sitlakhet','India','IN','Sitlakhet (India)',1,1,0),(142,0,106955,'Thodupuzha','India','IN','Thodupuzha (India)',1,1,0),(143,0,106958,'Thumkunta','India','IN','Thumkunta (India)',1,1,0),(144,0,106963,'Titwala','India','IN','Titwala (India)',1,1,0),(145,0,107078,'Sultan Bathery','India','IN','Sultan Bathery (India)',1,1,0),(146,0,107210,'Vajrahalli','India','IN','Vajrahalli (India)',1,1,0),(147,0,107226,'Sitalakhet','India','IN','Sitalakhet (India)',1,1,0),(148,0,107250,'Sri Ganganagar','India','IN','Sri Ganganagar (India)',1,1,0),(149,0,107275,'Sungal','India','IN','Sungal (India)',1,1,0),(150,0,107371,'Shamshabad','India','IN','Shamshabad (India)',1,1,0),(151,0,107390,'Vishakapatnam','India','IN','Vishakapatnam (India)',1,1,0),(152,34322,107391,'Vizianagaram','India','IN','Vizianagaram (India)',1,1,0),(153,0,107703,'Wakad','India','IN','Wakad (India)',1,1,0),(154,0,107754,'Suratgarh','India','IN','Suratgarh (India)',1,1,0),(155,34504,107782,'Tinsukia','India','IN','Tinsukia (India)',1,1,0),(156,28478,107855,'Vasco da Gama','India','IN','Vasco da Gama (India)',1,1,0),(157,0,107887,'Wandoor','India','IN','Wandoor (India)',1,1,0),(158,0,107938,'Uruli Kanchan','India','IN','Uruli Kanchan (India)',1,1,0),(159,0,107944,'Vaikom','India','IN','Vaikom (India)',1,1,0),(160,0,107957,'Verem','India','IN','Verem (India)',1,1,0),(161,0,108056,'Bhagalpur','India','IN','Bhagalpur (India)',1,1,0),(162,34435,108057,'Bhuntar','India','IN','Bhuntar (India)',1,1,0),(163,34502,108141,'Chhindwara','India','IN','Chhindwara (India)',1,1,0),(164,6192,108144,'Chittorgarh','India','IN','Chittorgarh (India)',1,1,0),(165,0,108256,'Goa Velha','India','IN','Goa Velha (India)',1,1,0),(166,0,108265,'Govardhan','India','IN','Govardhan (India)',1,1,0),(167,0,108361,'Katihar','India','IN','Katihar (India)',1,1,0),(168,0,108369,'Kihim','India','IN','Kihim (India)',1,1,0),(169,0,108572,'Stok','India','IN','Stok (India)',1,1,0),(170,0,108863,'Dwarka','India','IN','Dwarka (India)',1,1,0),(171,0,109000,'Bhiwadi','India','IN','Bhiwadi (India)',1,1,0),(172,851,109093,'Alwar','India','IN','Alwar (India)',1,1,0),(173,0,109167,'Arcot','India','IN','Arcot (India)',1,1,0),(174,34526,109446,'Anand','India','IN','Anand (India)',1,1,0),(175,0,109524,'Alappuzha','India','IN','Alappuzha (India)',1,1,0),(176,0,109665,'Auroville','India','IN','Auroville (India)',1,1,0),(177,2001,109814,'Badrinath','India','IN','Badrinath (India)',1,1,0),(178,0,109872,'Arpora','India','IN','Arpora (India)',1,1,0),(179,0,109973,'Aronda','India','IN','Aronda (India)',1,1,0),(180,0,110041,'B. R. Hills','India','IN','B. R. Hills (India)',1,1,0),(181,34354,110211,'Asansol','India','IN','Asansol (India)',1,1,0),(182,1775,110248,'Auli','India','IN','Auli (India)',1,1,0),(183,1790,110349,'Aurangabad','India','IN','Aurangabad (India)',1,1,0),(184,0,110358,'Ayodhya','India','IN','Ayodhya (India)',1,1,0),(185,0,110425,'Baratang Island','India','IN','Baratang Island (India)',1,1,0),(186,0,110483,'Ballari','India','IN','Ballari (India)',1,1,0),(187,0,110512,'Bardez','India','IN','Bardez (India)',1,1,0),(188,0,110564,'Behror','India','IN','Behror (India)',1,1,0),(189,2744,110566,'Bekal','India','IN','Bekal (India)',1,1,0),(190,0,110618,'Betalbatim Beach','India','IN','Betalbatim Beach (India)',1,1,0),(191,0,110640,'Baga','India','IN','Baga (India)',1,1,0),(192,0,110659,'Bakkhali','India','IN','Bakkhali (India)',1,1,0),(193,0,110789,'Barbil','India','IN','Barbil (India)',1,1,0),(194,0,110851,'Bandipur','India','IN','Bandipur (India)',1,1,0),(195,0,110853,'Bangaram Island','India','IN','Bangaram Island (India)',1,1,0),(196,0,110855,'Baramati','India','IN','Baramati (India)',1,1,0),(197,2201,110977,'Balrampur','India','IN','Balrampur (India)',1,1,0),(198,2370,111009,'Bareilly','India','IN','Bareilly (India)',1,1,0),(199,0,111028,'Basara','India','IN','Basara (India)',1,1,0),(200,1983,111073,'Badami','India','IN','Badami (India)',1,1,0),(201,0,111097,'Balasinore','India','IN','Balasinore (India)',1,1,0),(202,0,111121,'Bandhavgarh-Nationalpark','India','IN','Bandhavgarh-Nationalpark (India)',1,1,0),(203,0,111124,'Bengaluru','India','IN','Bengaluru (India)',1,1,0),(204,0,111142,'Barmer','India','IN','Barmer (India)',1,1,0),(205,3131,111195,'Bharuch','India','IN','Bharuch (India)',1,1,0),(206,3138,111196,'Bhimtal','India','IN','Bhimtal (India)',1,1,0),(207,0,111212,'Binsar','India','IN','Binsar (India)',1,1,0),(208,0,111216,'Bishangarh','India','IN','Bishangarh (India)',1,1,0),(209,34561,111264,'Bomdila','India','IN','Bomdila (India)',1,1,0),(210,0,111292,'Bhatinda','India','IN','Bhatinda (India)',1,1,0),(211,0,111364,'Bokkapuram','India','IN','Bokkapuram (India)',1,1,0),(212,0,111427,'Belagavi','India','IN','Belagavi (India)',1,1,0),(213,0,111440,'Belur & Halebid','India','IN','Belur & Halebid (India)',1,1,0),(214,3130,111484,'Bharatpur','India','IN','Bharatpur (India)',1,1,0),(215,3133,111485,'Bhavnagar','India','IN','Bhavnagar (India)',1,1,0),(216,0,111486,'Bhogapuram','India','IN','Bhogapuram (India)',1,1,0),(217,0,111499,'Bijaipur','India','IN','Bijaipur (India)',1,1,0),(218,0,111558,'Bhubaneswar','India','IN','Bhubaneswar (India)',1,1,0),(219,0,111574,'Bilaspur','India','IN','Bilaspur (India)',1,1,0),(220,0,111655,'Benaulim Beach','India','IN','Benaulim Beach (India)',1,1,0),(221,0,111694,'Bhandardara','India','IN','Bhandardara (India)',1,1,0),(222,0,111749,'Betul','India','IN','Betul (India)',1,1,0),(223,3139,111932,'Bhopal','India','IN','Bhopal (India)',1,1,0),(224,0,111949,'Vijapura','India','IN','Vijapura (India)',1,1,0),(225,0,112228,'Bokaro','India','IN','Bokaro (India)',1,1,0),(226,34333,112272,'Brahmapur','India','IN','Brahmapur (India)',1,1,0),(227,0,112643,'Bodhgaya','India','IN','Bodhgaya (India)',1,1,0),(228,0,112649,'Bogmallo','India','IN','Bogmallo (India)',1,1,0),(229,34344,112868,'Calangute','India','IN','Calangute (India)',1,1,0),(230,0,112913,'Caranzalem','India','IN','Caranzalem (India)',1,1,0),(231,4434,113081,'Bundi','India','IN','Bundi (India)',1,1,0),(232,14323,113128,'Kolkata','India','IN','Kolkata (India)',1,1,0),(233,0,113160,'Canacona','India','IN','Canacona (India)',1,1,0),(234,0,113347,'Cansaulim Beach','India','IN','Cansaulim Beach (India)',1,1,0),(235,0,113566,'Cauvery','India','IN','Cauvery (India)',1,1,0),(236,5691,113675,'Chail','India','IN','Chail (India)',1,1,0),(237,0,113683,'Changanassery','India','IN','Changanassery (India)',1,1,0),(238,5765,114107,'Chandigarh','India','IN','Chandigarh (India)',1,1,0),(239,0,114117,'Charholi Budruk','India','IN','Charholi Budruk (India)',1,1,0),(240,6161,114272,'Chiplun','India','IN','Chiplun (India)',1,1,0),(241,6561,114326,'Cochin','India','IN','Cochin (India)',1,1,0),(242,0,114357,'Chinakakani','India','IN','Chinakakani (India)',1,1,0),(243,6009,114523,'Cherai','India','IN','Cherai (India)',1,1,0),(244,0,114554,'Churu','India','IN','Churu (India)',1,1,0),(245,0,114566,'Cavelossim','India','IN','Cavelossim (India)',1,1,0),(246,0,114601,'Chakan','India','IN','Chakan (India)',1,1,0),(247,0,114660,'Chinnakanal','India','IN','Chinnakanal (India)',1,1,0),(248,5720,114703,'Chamba','India','IN','Chamba (India)',1,1,0),(249,0,114758,'Choglamsar','India','IN','Choglamsar (India)',1,1,0),(250,34539,114793,'Chidambaram','India','IN','Chidambaram (India)',1,1,0),(251,0,114801,'Chintpuri','India','IN','Chintpuri (India)',1,1,0),(252,34297,114803,'Chitrakoot','India','IN','Chitrakoot (India)',1,1,0),(253,0,114804,'Chittaurgarh','India','IN','Chittaurgarh (India)',1,1,0),(254,0,114811,'Chorao Island','India','IN','Chorao Island (India)',1,1,0),(255,0,114817,'Chowara','India','IN','Chowara (India)',1,1,0),(256,0,114823,'Chundale','India','IN','Chundale (India)',1,1,0),(257,34294,114936,'Chamoli','India','IN','Chamoli (India)',1,1,0),(258,0,114960,'Chaukori','India','IN','Chaukori (India)',1,1,0),(259,0,114977,'Chhota Udaipur','India','IN','Chhota Udaipur (India)',1,1,0),(260,0,114986,'Chikkamagaluru','India','IN','Chikkamagaluru (India)',1,1,0),(261,0,114987,'Chikmaglur','India','IN','Chikmaglur (India)',1,1,0),(262,0,115176,'Dahej','India','IN','Dahej (India)',1,1,0),(263,6879,115400,'Coorg','India','IN','Coorg (India)',1,1,0),(264,0,115501,'Corbett-Nationalpark','India','IN','Corbett-Nationalpark (India)',1,1,0),(265,0,115526,'Covelong','India','IN','Covelong (India)',1,1,0),(266,7543,115634,'Dapoli','India','IN','Dapoli (India)',1,1,0),(267,0,115840,'Colva','India','IN','Colva (India)',1,1,0),(268,6871,115864,'Coonoor','India','IN','Coonoor (India)',1,1,0),(269,0,115880,'Dharamshala','India','IN','Dharamshala (India)',1,1,0),(270,0,115881,'Dholpur','India','IN','Dholpur (India)',1,1,0),(271,7852,115884,'Dibrugarh','India','IN','Dibrugarh (India)',1,1,0),(272,0,115894,'Digha','India','IN','Digha (India)',1,1,0),(273,0,115896,'Dimapur','India','IN','Dimapur (India)',1,1,0),(274,7951,115899,'Diu','India','IN','Diu (India)',1,1,0),(275,8361,115958,'Durgapur','India','IN','Durgapur (India)',1,1,0),(276,7415,116021,'Cuttack','India','IN','Cuttack (India)',1,1,0),(277,7500,116035,'Daman','India','IN','Daman (India)',1,1,0),(278,0,116039,'Dandeli','India','IN','Dandeli (India)',1,1,0),(279,7751,116074,'Deogarh','India','IN','Deogarh (India)',1,1,0),(280,0,116087,'Dhule','India','IN','Dhule (India)',1,1,0),(281,7680,116164,'Dehradun','India','IN','Dehradun (India)',1,1,0),(282,7556,116264,'Darjeeling','India','IN','Darjeeling (India)',1,1,0),(283,0,116338,'Dhikuli','India','IN','Dhikuli (India)',1,1,0),(284,34381,116460,'Dundlod','India','IN','Dundlod (India)',1,1,0),(285,0,116604,'Dabolim','India','IN','Dabolim (India)',1,1,0),(286,7478,116613,'Dalhousie','India','IN','Dalhousie (India)',1,1,0),(287,0,116624,'Dankuni','India','IN','Dankuni (India)',1,1,0),(288,0,117048,'Durg','India','IN','Durg (India)',1,1,0),(289,0,117110,'Edava','India','IN','Edava (India)',1,1,0),(290,0,117352,'Devikulam','India','IN','Devikulam (India)',1,1,0),(291,9259,117771,'Fatehpur Sikri','India','IN','Fatehpur Sikri (India)',1,1,0),(292,10099,117993,'Gandhidham','India','IN','Gandhidham (India)',1,1,0),(293,9228,118129,'Faridabad','India','IN','Faridabad (India)',1,1,0),(294,0,118719,'Glenburn','India','IN','Glenburn (India)',1,1,0),(295,0,118733,'Gokarna','India','IN','Gokarna (India)',1,1,0),(296,0,118805,'Fatehgarh','India','IN','Fatehgarh (India)',1,1,0),(297,10372,118973,'Ghaziabad','India','IN','Ghaziabad (India)',1,1,0),(298,10100,119071,'Gandhinagar','India','IN','Gandhinagar (India)',1,1,0),(299,10106,119221,'Gangtok','India','IN','Gangtok (India)',1,1,0),(300,34444,119222,'Ganpatipule','India','IN','Ganpatipule (India)',1,1,0),(301,31045,119358,'Gaya','India','IN','Gaya (India)',1,1,0),(302,0,119513,'Gurugram','India','IN','Gurugram (India)',1,1,0),(303,11229,119517,'Guruvayur','India','IN','Guruvayur (India)',1,1,0),(304,10105,119613,'Gangotri','India','IN','Gangotri (India)',1,1,0),(305,10576,119805,'Goa','India','IN','Goa (India)',1,1,0),(306,11197,119924,'Gulmarg','India','IN','Gulmarg (India)',1,1,0),(307,0,119961,'Hansi','India','IN','Hansi (India)',1,1,0),(308,11658,119978,'Havelock Island','India','IN','Havelock Island (India)',1,1,0),(309,0,120206,'Hanumangarh','India','IN','Hanumangarh (India)',1,1,0),(310,0,120368,'Gopalpur on Sea','India','IN','Gopalpur on Sea (India)',1,1,0),(311,0,120370,'Gorai Beach','India','IN','Gorai Beach (India)',1,1,0),(312,10685,120371,'Gorakhpur','India','IN','Gorakhpur (India)',1,1,0),(313,11248,120439,'Gwalior','India','IN','Gwalior (India)',1,1,0),(314,0,120588,'Haldwani','India','IN','Haldwani (India)',1,1,0),(315,11603,120871,'Hassan','India','IN','Hassan (India)',1,1,0),(316,11240,121139,'Guwahati','India','IN','Guwahati (India)',1,1,0),(317,11451,121175,'Hampi','India','IN','Hampi (India)',1,1,0),(318,11530,121186,'Haridwar','India','IN','Haridwar (India)',1,1,0),(319,12330,121290,'Hosur','India','IN','Hosur (India)',1,1,0),(320,0,121355,'Hinjawadi','India','IN','Hinjawadi (India)',1,1,0),(321,0,121396,'Hosapete','India','IN','Hosapete (India)',1,1,0),(322,12971,121509,'Jabalpur','India','IN','Jabalpur (India)',1,1,0),(323,34544,121557,'Hoshiarpur','India','IN','Hoshiarpur (India)',1,1,0),(324,0,121570,'Hudikeri','India','IN','Hudikeri (India)',1,1,0),(325,12706,121726,'Indore','India','IN','Indore (India)',1,1,0),(326,13021,121783,'Jammu','India','IN','Jammu (India)',1,1,0),(327,13422,121837,'Kalpetta','India','IN','Kalpetta (India)',1,1,0),(328,0,121841,'Kamba','India','IN','Kamba (India)',1,1,0),(329,34555,121984,'Igatpuri','India','IN','Igatpuri (India)',1,1,0),(330,12681,122108,'Imphal','India','IN','Imphal (India)',1,1,0),(331,12995,122175,'Jaipur','India','IN','Jaipur (India)',1,1,0),(332,13007,122177,'Jalgaon','India','IN','Jalgaon (India)',1,1,0),(333,13121,122199,'Jhansi','India','IN','Jhansi (India)',1,1,0),(334,13232,122215,'Jorhat','India','IN','Jorhat (India)',1,1,0),(335,0,122253,'Kandaghat','India','IN','Kandaghat (India)',1,1,0),(336,0,122256,'Kanniyakumari','India','IN','Kanniyakumari (India)',1,1,0),(337,13593,122275,'Karnal','India','IN','Karnal (India)',1,1,0),(338,12996,122326,'Jaisalmer','India','IN','Jaisalmer (India)',1,1,0),(339,13003,122327,'Jalandhar','India','IN','Jalandhar (India)',1,1,0),(340,34464,122328,'Jalpaiguri','India','IN','Jalpaiguri (India)',1,1,0),(341,13022,122329,'Jamnagar','India','IN','Jamnagar (India)',1,1,0),(342,0,122370,'Junagarh','India','IN','Junagarh (India)',1,1,0),(343,0,122388,'Kaliel','India','IN','Kaliel (India)',1,1,0),(344,0,122406,'Kanadukathan','India','IN','Kanadukathan (India)',1,1,0),(345,13403,122511,'Kalimpong','India','IN','Kalimpong (India)',1,1,0),(346,13514,122522,'Kannur','India','IN','Kannur (India)',1,1,0),(347,0,122525,'Kappad','India','IN','Kappad (India)',1,1,0),(348,13931,122580,'Khajuraho','India','IN','Khajuraho (India)',1,1,0),(349,12920,122732,'Itanagar','India','IN','Itanagar (India)',1,1,0),(350,0,122763,'Jeypore','India','IN','Jeypore (India)',1,1,0),(351,14637,122798,'Kutch','India','IN','Kutch (India)',1,1,0),(352,13487,122824,'Kanchipuram','India','IN','Kanchipuram (India)',1,1,0),(353,0,122826,'Kangra Valley','India','IN','Kangra Valley (India)',1,1,0),(354,0,122848,'Kasargod','India','IN','Kasargod (India)',1,1,0),(355,0,122931,'Kanha','India','IN','Kanha (India)',1,1,0),(356,13516,122932,'Kanpur','India','IN','Kanpur (India)',1,1,0),(357,13569,122938,'Kargil','India','IN','Kargil (India)',1,1,0),(358,13628,122950,'Kasauli','India','IN','Kasauli (India)',1,1,0),(359,0,122978,'Kerala','India','IN','Kerala (India)',1,1,0),(360,0,122998,'Khilchipur','India','IN','Khilchipur (India)',1,1,0),(361,13520,123084,'Kanyakumari','India','IN','Kanyakumari (India)',1,1,0),(362,13618,123098,'Karwar','India','IN','Karwar (India)',1,1,0),(363,34361,123108,'Kathgodam','India','IN','Kathgodam (India)',1,1,0),(364,13547,123204,'Karaikudi','India','IN','Karaikudi (India)',1,1,0),(365,13617,123217,'Karur','India','IN','Karur (India)',1,1,0),(366,0,123218,'Kasarde','India','IN','Kasarde (India)',1,1,0),(367,13718,123227,'Kausani','India','IN','Kausani (India)',1,1,0),(368,13758,123231,'Kedarnath','India','IN','Kedarnath (India)',1,1,0),(369,34484,123258,'Khajjiar','India','IN','Khajjiar (India)',1,1,0),(370,13936,123259,'Khandala','India','IN','Khandala (India)',1,1,0),(371,14429,123312,'Kotagiri','India','IN','Kotagiri (India)',1,1,0),(372,0,123314,'Kotputli','India','IN','Kotputli (India)',1,1,0),(373,0,123334,'Krishnagiri','India','IN','Krishnagiri (India)',1,1,0),(374,14578,123344,'Kumarakom','India','IN','Kumarakom (India)',1,1,0),(375,0,123420,'Jalore','India','IN','Jalore (India)',1,1,0),(376,13024,123422,'Jamshedpur','India','IN','Jamshedpur (India)',1,1,0),(377,35366,123445,'Jispa','India','IN','Jispa (India)',1,1,0),(378,0,123469,'Jwalamukhi','India','IN','Jwalamukhi (India)',1,1,0),(379,13369,123476,'Kakinada','India','IN','Kakinada (India)',1,1,0),(380,0,123503,'Karad','India','IN','Karad (India)',1,1,0),(381,34569,123518,'Kashid','India','IN','Kashid (India)',1,1,0),(382,13634,123519,'Kashipur','India','IN','Kashipur (India)',1,1,0),(383,0,123527,'Kaziranga','India','IN','Kaziranga (India)',1,1,0),(384,14277,123608,'Kodaikanal','India','IN','Kodaikanal (India)',1,1,0),(385,13953,123676,'Khimsar','India','IN','Khimsar (India)',1,1,0),(386,0,123774,'Kumbhalgarh','India','IN','Kumbhalgarh (India)',1,1,0),(387,14316,123875,'Kolhapur','India','IN','Kolhapur (India)',1,1,0),(388,14324,123877,'Kollam','India','IN','Kollam (India)',1,1,0),(389,34291,123879,'Konark','India','IN','Konark (India)',1,1,0),(390,14438,123891,'Kottayam','India','IN','Kottayam (India)',1,1,0),(391,14455,123897,'Kovalam','India','IN','Kovalam (India)',1,1,0),(392,14544,123914,'Kuchaman','India','IN','Kuchaman (India)',1,1,0),(393,14430,124008,'Kothamangalam','India','IN','Kothamangalam (India)',1,1,0),(394,14625,124044,'Kushalnagar','India','IN','Kushalnagar (India)',1,1,0),(395,14627,124045,'Kushinagar','India','IN','Kushinagar (India)',1,1,0),(396,13683,124184,'Katra','India','IN','Katra (India)',1,1,0),(397,0,124514,'Lakkidi','India','IN','Lakkidi (India)',1,1,0),(398,14426,124966,'Kota','India','IN','Kota (India)',1,1,0),(399,0,124997,'Kudasan','India','IN','Kudasan (India)',1,1,0),(400,14580,125002,'Kumbakonam','India','IN','Kumbakonam (India)',1,1,0),(401,15229,125144,'Leh','India','IN','Leh (India)',1,1,0),(402,34313,125485,'Latur','India','IN','Latur (India)',1,1,0),(403,16102,125651,'Luni','India','IN','Luni (India)',1,1,0),(404,16375,125684,'Mahabaleshwar','India','IN','Mahabaleshwar (India)',1,1,0),(405,16033,125928,'Ludhiana','India','IN','Ludhiana (India)',1,1,0),(406,16376,126117,'Mahabalipuram','India','IN','Mahabalipuram (India)',1,1,0),(407,0,126139,'Mamallapuram','India','IN','Mamallapuram (India)',1,1,0),(408,16388,126265,'Maheshwar','India','IN','Maheshwar (India)',1,1,0),(409,16593,126388,'Manali','India','IN','Manali (India)',1,1,0),(410,15833,126630,'Lonavala','India','IN','Lonavala (India)',1,1,0),(411,16028,126666,'Lucknow','India','IN','Lucknow (India)',1,1,0),(412,16619,126802,'Mandawa','India','IN','Mandawa (India)',1,1,0),(413,0,126805,'Mangaluru','India','IN','Mangaluru (India)',1,1,0),(414,0,126810,'Manmad','India','IN','Manmad (India)',1,1,0),(415,16755,126817,'Mararikulam','India','IN','Mararikulam (India)',1,1,0),(416,17191,126911,'Mayiladuthurai','India','IN','Mayiladuthurai (India)',1,1,0),(417,34469,126958,'Malvan','India','IN','Malvan (India)',1,1,0),(418,16319,127067,'Madurai','India','IN','Madurai (India)',1,1,0),(419,0,127105,'Malpura','India','IN','Malpura (India)',1,1,0),(420,16628,127113,'Mandu','India','IN','Mandu (India)',1,1,0),(421,6000,127343,'Chennai','India','IN','Chennai (India)',1,1,0),(422,0,127352,'Majorda Beach','India','IN','Majorda Beach (India)',1,1,0),(423,17096,127857,'Mathura','India','IN','Mathura (India)',1,1,0),(424,0,128030,'Murbad','India','IN','Murbad (India)',1,1,0),(425,18697,128573,'Munnar','India','IN','Munnar (India)',1,1,0),(426,0,128698,'Mysuru','India','IN','Mysuru (India)',1,1,0),(427,0,128734,'Navi Mumbai','India','IN','Navi Mumbai (India)',1,1,0),(428,0,128829,'Mettupalayam','India','IN','Mettupalayam (India)',1,1,0),(429,0,128914,'Mobor Beach','India','IN','Mobor Beach (India)',1,1,0),(430,0,129044,'Morjim','India','IN','Morjim (India)',1,1,0),(431,0,129104,'Murinjapuzha','India','IN','Murinjapuzha (India)',1,1,0),(432,19013,129163,'Narlai','India','IN','Narlai (India)',1,1,0),(433,34567,129189,'Neil Island','India','IN','Neil Island (India)',1,1,0),(434,0,129232,'Muradabad','India','IN','Muradabad (India)',1,1,0),(435,0,129257,'Nalagarh','India','IN','Nalagarh (India)',1,1,0),(436,19166,129289,'Nellore','India','IN','Nellore (India)',1,1,0),(437,34550,129415,'Mukteshwar','India','IN','Mukteshwar (India)',1,1,0),(438,34568,129434,'Murud','India','IN','Murud (India)',1,1,0),(439,0,129447,'Nagapattinam','India','IN','Nagapattinam (India)',1,1,0),(440,19472,129477,'Nimaj','India','IN','Nimaj (India)',1,1,0),(441,0,129615,'Moradabad','India','IN','Moradabad (India)',1,1,0),(442,0,129690,'Mukkam','India','IN','Mukkam (India)',1,1,0),(443,0,129695,'Mullor','India','IN','Mullor (India)',1,1,0),(444,18876,129723,'Nagpur','India','IN','Nagpur (India)',1,1,0),(445,18892,129726,'Nainital','India','IN','Nainital (India)',1,1,0),(446,18942,129732,'Nanded','India','IN','Nanded (India)',1,1,0),(447,0,129777,'Nagarhole National Park','India','IN','Nagarhole National Park (India)',1,1,0),(448,0,129778,'Nagoa','India','IN','Nagoa (India)',1,1,0),(449,19137,129816,'Neeleshwar','India','IN','Neeleshwar (India)',1,1,0),(450,0,129827,'Nerul','India','IN','Nerul (India)',1,1,0),(451,0,130105,'Nalkeri','India','IN','Nalkeri (India)',1,1,0),(452,0,130137,'Neemrana','India','IN','Neemrana (India)',1,1,0),(453,19543,130205,'Noida','India','IN','Noida (India)',1,1,0),(454,20205,130252,'Orchha','India','IN','Orchha (India)',1,1,0),(455,34519,130316,'Palanpur','India','IN','Palanpur (India)',1,1,0),(456,18776,130341,'Mussoorie','India','IN','Mussoorie (India)',1,1,0),(457,18858,130352,'Nadukani','India','IN','Nadukani (India)',1,1,0),(458,0,130354,'Nahar Magra','India','IN','Nahar Magra (India)',1,1,0),(459,0,130357,'Nakinda','India','IN','Nakinda (India)',1,1,0),(460,34460,130358,'Namchi','India','IN','Namchi (India)',1,1,0),(461,7701,130443,'Delhi','India','IN','Delhi (India)',1,1,0),(462,0,130749,'Palani','India','IN','Palani (India)',1,1,0),(463,0,130799,'Orissa','India','IN','Orissa (India)',1,1,0),(464,0,130852,'Padappai','India','IN','Padappai (India)',1,1,0),(465,20161,130990,'Ooty','India','IN','Ooty (India)',1,1,0),(466,0,131002,'Panchkula','India','IN','Panchkula (India)',1,1,0),(467,34306,131027,'Pathanamthitta','India','IN','Pathanamthitta (India)',1,1,0),(468,20920,131028,'Patnitop','India','IN','Patnitop (India)',1,1,0),(469,0,131276,'Omkareshwar','India','IN','Omkareshwar (India)',1,1,0),(470,20566,131375,'Pahalgam','India','IN','Pahalgam (India)',1,1,0),(471,0,131392,'Palolem Beach','India','IN','Palolem Beach (India)',1,1,0),(472,20696,131394,'Panchgani','India','IN','Panchgani (India)',1,1,0),(473,20690,131398,'Panaji','India','IN','Panaji (India)',1,1,0),(474,20779,131406,'Paragpur','India','IN','Paragpur (India)',1,1,0),(475,0,131437,'Panna','India','IN','Panna (India)',1,1,0),(476,21289,131523,'Phalodi','India','IN','Phalodi (India)',1,1,0),(477,20741,131544,'Panvel','India','IN','Panvel (India)',1,1,0),(478,20800,131552,'Paravur','India','IN','Paravur (India)',1,1,0),(479,0,131597,'Pernem','India','IN','Pernem (India)',1,1,0),(480,0,131721,'Pakhal','India','IN','Pakhal (India)',1,1,0),(481,0,132015,'Pachmarhi','India','IN','Pachmarhi (India)',1,1,0),(482,20604,132025,'Palakkad','India','IN','Palakkad (India)',1,1,0),(483,0,132055,'Parra','India','IN','Parra (India)',1,1,0),(484,21077,132089,'Pench','India','IN','Pench (India)',1,1,0),(485,0,132133,'Periyar','India','IN','Periyar (India)',1,1,0),(486,21449,132183,'Pinjore','India','IN','Pinjore (India)',1,1,0),(487,0,132282,'Pollachi','India','IN','Pollachi (India)',1,1,0),(488,0,132292,'Ponmudi','India','IN','Ponmudi (India)',1,1,0),(489,20918,132429,'Patna','India','IN','Patna (India)',1,1,0),(490,0,132561,'Puducherry','India','IN','Puducherry (India)',1,1,0),(491,22260,132593,'Puri','India','IN','Puri (India)',1,1,0),(492,0,132621,'Ramgarh','India','IN','Ramgarh (India)',1,1,0),(493,20909,132705,'Pathankot','India','IN','Pathankot (India)',1,1,0),(494,0,132724,'Pench Nationalpark','India','IN','Pench Nationalpark (India)',1,1,0),(495,21286,132753,'Phagwara','India','IN','Phagwara (India)',1,1,0),(496,22238,133133,'Pune','India','IN','Pune (India)',1,1,0),(497,34359,133175,'Rajgir','India','IN','Rajgir (India)',1,1,0),(498,0,133177,'Ramakkalmedu','India','IN','Ramakkalmedu (India)',1,1,0),(499,0,133179,'Rameshwaram','India','IN','Rameshwaram (India)',1,1,0),(500,34379,133214,'Pokhran','India','IN','Pokhran (India)',1,1,0),(501,35146,133295,'Ravangla','India','IN','Ravangla (India)',1,1,0),(502,0,133418,'Pimpri-Chinchwad','India','IN','Pimpri-Chinchwad (India)',1,1,0),(503,21809,133497,'Poovar','India','IN','Poovar (India)',1,1,0),(504,21819,133551,'Porbandar','India','IN','Porbandar (India)',1,1,0),(505,32511,133556,'Port Blair','India','IN','Port Blair (India)',1,1,0),(506,22508,133672,'Raipur','India','IN','Raipur (India)',1,1,0),(507,22558,133676,'Ranakpur','India','IN','Ranakpur (India)',1,1,0),(508,22618,133687,'Ratnagiri','India','IN','Ratnagiri (India)',1,1,0),(509,22562,133760,'Ranchi','India','IN','Ranchi (India)',1,1,0),(510,22582,133838,'Ranikhet','India','IN','Ranikhet (India)',1,1,0),(511,22270,134001,'Pushkar','India','IN','Pushkar (India)',1,1,0),(512,0,134040,'Rajahmahendravaram','India','IN','Rajahmahendravaram (India)',1,1,0),(513,0,134041,'Rajgarh','India','IN','Rajgarh (India)',1,1,0),(514,0,134058,'Rohtak','India','IN','Rohtak (India)',1,1,0),(515,0,134170,'Pulamanthole','India','IN','Pulamanthole (India)',1,1,0),(516,22287,134178,'Puttaparthi','India','IN','Puttaparthi (India)',1,1,0),(517,22511,134211,'Rajkot','India','IN','Rajkot (India)',1,1,0),(518,0,134213,'Ramathra Fort','India','IN','Ramathra Fort (India)',1,1,0),(519,22538,134214,'Ramnagar','India','IN','Ramnagar (India)',1,1,0),(520,0,134224,'Ranthambore Nationalpark','India','IN','Ranthambore Nationalpark (India)',1,1,0),(521,23371,134643,'Rourkela','India','IN','Rourkela (India)',1,1,0),(522,23018,134932,'Rishikesh','India','IN','Rishikesh (India)',1,1,0),(523,24118,135522,'Sanchi','India','IN','Sanchi (India)',1,1,0),(524,0,135586,'Sariska National Park','India','IN','Sariska National Park (India)',1,1,0),(525,0,135694,'Saligao','India','IN','Saligao (India)',1,1,0),(526,34295,135778,'Rudraprayag','India','IN','Rudraprayag (India)',1,1,0),(527,23984,135916,'Salem','India','IN','Salem (India)',1,1,0),(528,24315,136093,'Sardargarh','India','IN','Sardargarh (India)',1,1,0),(529,24966,136285,'Shamirpet','India','IN','Shamirpet (India)',1,1,0),(530,0,136312,'Sikar','India','IN','Sikar (India)',1,1,0),(531,34317,136409,'Satara','India','IN','Satara (India)',1,1,0),(532,34316,136501,'Sangli','India','IN','Sangli (India)',1,1,0),(533,0,136555,'Sasan Gir','India','IN','Sasan Gir (India)',1,1,0),(534,24453,136656,'Sawai Madhopur','India','IN','Sawai Madhopur (India)',1,1,0),(535,24702,136748,'Secunderabad','India','IN','Secunderabad (India)',1,1,0),(536,0,136766,'Seoni','India','IN','Seoni (India)',1,1,0),(537,0,136801,'Shekhawati','India','IN','Shekhawati (India)',1,1,0),(538,34325,137118,'Srikakulam','India','IN','Srikakulam (India)',1,1,0),(539,25100,137316,'Shirdi','India','IN','Shirdi (India)',1,1,0),(540,24954,137380,'Shahpura','India','IN','Shahpura (India)',1,1,0),(541,0,137404,'Siana','India','IN','Siana (India)',1,1,0),(542,0,137470,'Sindhudi','India','IN','Sindhudi (India)',1,1,0),(543,0,137568,'Shantiniketan','India','IN','Shantiniketan (India)',1,1,0),(544,25109,137750,'Shivpuri','India','IN','Shivpuri (India)',1,1,0),(545,0,138010,'Siolim','India','IN','Siolim (India)',1,1,0),(546,0,138049,'Somnath','India','IN','Somnath (India)',1,1,0),(547,34299,138127,'Solan','India','IN','Solan (India)',1,1,0),(548,34318,138128,'Solapur','India','IN','Solapur (India)',1,1,0),(549,0,138370,'Sriperumbudur','India','IN','Sriperumbudur (India)',1,1,0),(550,34549,138484,'Sonamarg','India','IN','Sonamarg (India)',1,1,0),(551,0,138523,'Sravasti','India','IN','Sravasti (India)',1,1,0),(552,0,138628,'Thanneermukkom','India','IN','Thanneermukkom (India)',1,1,0),(553,25073,138670,'Shillong','India','IN','Shillong (India)',1,1,0),(554,1,138673,'Shimla','India','IN','Shimla (India)',1,1,0),(555,0,138706,'Sinquerim Beach','India','IN','Sinquerim Beach (India)',1,1,0),(556,27116,139069,'Tezpur','India','IN','Tezpur (India)',1,1,0),(557,27126,139071,'Thalassery','India','IN','Thalassery (India)',1,1,0),(558,0,139315,'Tiruvannamalai','India','IN','Tiruvannamalai (India)',1,1,0),(559,25897,139456,'Srinagar','India','IN','Srinagar (India)',1,1,0),(560,26438,139526,'Surat','India','IN','Surat (India)',1,1,0),(561,27136,139605,'Thanjavur','India','IN','Thanjavur (India)',1,1,0),(562,27156,139609,'Thekkady','India','IN','Thekkady (India)',1,1,0),(563,0,139669,'Tala','India','IN','Tala (India)',1,1,0),(564,34557,139699,'Tawang','India','IN','Tawang (India)',1,1,0),(565,34536,139744,'Theni','India','IN','Theni (India)',1,1,0),(566,34288,139820,'Trivandrum','India','IN','Trivandrum (India)',1,1,0),(567,0,139974,'Tarangambadi','India','IN','Tarangambadi (India)',1,1,0),(568,27134,140020,'Thane','India','IN','Thane (India)',1,1,0),(569,27227,140032,'Thrissur','India','IN','Thrissur (India)',1,1,0),(570,0,140098,'Uchiyarda','India','IN','Uchiyarda (India)',1,1,0),(571,28264,140143,'Uttarkashi','India','IN','Uttarkashi (India)',1,1,0),(572,0,140235,'Sunderban','India','IN','Sunderban (India)',1,1,0),(573,0,140310,'Tirunelveli','India','IN','Tirunelveli (India)',1,1,0),(574,27353,140311,'Tirupati','India','IN','Tirupati (India)',1,1,0),(575,0,140415,'Thiksey','India','IN','Thiksey (India)',1,1,0),(576,28058,140522,'Udaipur','India','IN','Udaipur (India)',1,1,0),(577,0,140575,'Vainguinim Beach','India','IN','Vainguinim Beach (India)',1,1,0),(578,0,140593,'Vallikunnam','India','IN','Vallikunnam (India)',1,1,0),(579,28083,140701,'Ujjain','India','IN','Ujjain (India)',1,1,0),(580,34540,141054,'Tiruppur','India','IN','Tiruppur (India)',1,1,0),(581,34377,141097,'Una','India','IN','Una (India)',1,1,0),(582,0,141147,'Vapi','India','IN','Vapi (India)',1,1,0),(583,34425,141231,'Thoothukudi','India','IN','Thoothukudi (India)',1,1,0),(584,0,141371,'Vizhinjam','India','IN','Vizhinjam (India)',1,1,0),(585,34405,141391,'Vrindavan','India','IN','Vrindavan (India)',1,1,0),(586,0,141450,'Varca Beach','India','IN','Varca Beach (India)',1,1,0),(587,0,141528,'Turia','India','IN','Turia (India)',1,1,0),(588,0,141578,'Utorda Beach','India','IN','Utorda Beach (India)',1,1,0),(589,28303,141587,'Vadodara','India','IN','Vadodara (India)',1,1,0),(590,0,141615,'Vandanmedu','India','IN','Vandanmedu (India)',1,1,0),(591,28449,141618,'Varanasi','India','IN','Varanasi (India)',1,1,0),(592,0,141630,'Vazhoor','India','IN','Vazhoor (India)',1,1,0),(593,28119,141832,'Umaria','India','IN','Umaria (India)',1,1,0),(594,34463,141960,'Wankaner','India','IN','Wankaner (India)',1,1,0),(595,28467,141976,'Varkala','India','IN','Varkala (India)',1,1,0),(596,34399,141980,'Vasai','India','IN','Vasai (India)',1,1,0),(597,34323,142198,'Visakhapatnam','India','IN','Visakhapatnam (India)',1,1,0),(598,0,142295,'Velsao Beach','India','IN','Velsao Beach (India)',1,1,0),(599,34512,142563,'Veraval','India','IN','Veraval (India)',1,1,0),(600,0,143329,'Yercaud','India','IN','Yercaud (India)',1,1,0),(601,0,143481,'Wuste Thar','India','IN','Wuste Thar (India)',1,1,0),(602,0,143639,'Yamunotri','India','IN','Yamunotri (India)',1,1,0),(603,0,143727,'Whitefield','India','IN','Whitefield (India)',1,1,0),(604,0,143798,'Yavatmal','India','IN','Yavatmal (India)',1,1,0),(605,0,144227,'Bheeramballi','India','IN','Bheeramballi (India)',1,1,0),(606,0,144229,'Bhiwandi','India','IN','Bhiwandi (India)',1,1,0),(607,3142,144230,'Bhuj','India','IN','Bhuj (India)',1,1,0),(608,3209,144247,'Bikaner','India','IN','Bikaner (India)',1,1,0),(609,0,144306,'Mumbai','India','IN','Mumbai (India)',1,1,0),(610,14464,144475,'Kozhikode','India','IN','Kozhikode (India)',1,1,0),(611,0,144510,'Candolim Beach','India','IN','Candolim Beach (India)',1,1,0),(612,6609,144735,'Coimbatore','India','IN','Coimbatore (India)',1,1,0),(613,7596,144874,'Dausa','India','IN','Dausa (India)',1,1,0),(614,0,144913,'Dharmapuri','India','IN','Dharmapuri (India)',1,1,0),(615,0,144950,'Dooars','India','IN','Dooars (India)',1,1,0),(616,8310,144996,'Dungarpur','India','IN','Dungarpur (India)',1,1,0),(617,34523,145006,'Dwarka','India','IN','Dwarka (India)',1,1,0),(618,8893,145110,'Ernakulam','India','IN','Ernakulam (India)',1,1,0),(619,0,145430,'Greater Noida','India','IN','Greater Noida (India)',1,1,0),(620,34518,145660,'Hooghly','India','IN','Hooghly (India)',1,1,0),(621,12370,145687,'Howrah','India','IN','Howrah (India)',1,1,0),(622,0,145694,'Hubballi-Dharwad','India','IN','Hubballi-Dharwad (India)',1,1,0),(623,12538,145710,'Hyderabad','India','IN','Hyderabad (India)',1,1,0),(624,13184,145836,'Jodhpur','India','IN','Jodhpur (India)',1,1,0),(625,0,145856,'Kadmat Island','India','IN','Kadmat Island (India)',1,1,0),(626,34320,145872,'Kalyan','India','IN','Kalyan (India)',1,1,0),(627,14570,146047,'Kullu','India','IN','Kullu (India)',1,1,0),(628,34446,146051,'Kumily','India','IN','Kumily (India)',1,1,0),(629,34559,146091,'Lachung','India','IN','Lachung (India)',1,1,0),(630,34455,146104,'Lahaul and Spiti','India','IN','Lahaul and Spiti (India)',1,1,0),(631,0,146184,'Lava','India','IN','Lava (India)',1,1,0),(632,0,146447,'Malappuram','India','IN','Malappuram (India)',1,1,0),(633,34373,146462,'Mandi','India','IN','Mandi (India)',1,1,0),(634,0,146481,'Maradu','India','IN','Maradu (India)',1,1,0),(635,0,146484,'Marari Beach','India','IN','Marari Beach (India)',1,1,0),(636,17029,146533,'Mashobra','India','IN','Mashobra (India)',1,1,0),(637,17093,146545,'Matheran','India','IN','Matheran (India)',1,1,0),(638,34298,146575,'Meerut','India','IN','Meerut (India)',1,1,0),(639,18551,146752,'Mount Abu','India','IN','Mount Abu (India)',1,1,0),(640,18648,146768,'Mukundgarh','India','IN','Mukundgarh (India)',1,1,0),(641,34472,146776,'Munsiyari','India','IN','Munsiyari (India)',1,1,0),(642,19034,146814,'Nashik','India','IN','Nashik (India)',1,1,0),(643,0,146820,'Nattika','India','IN','Nattika (India)',1,1,0),(644,19098,146825,'Nawalgarh','India','IN','Nawalgarh (India)',1,1,0),(645,20606,147070,'Palampur','India','IN','Palampur (India)',1,1,0),(646,20639,147075,'Pali','India','IN','Pali (India)',1,1,0),(647,0,147083,'Pandikkad','India','IN','Pandikkad (India)',1,1,0),(648,34547,147088,'Panipat','India','IN','Panipat (India)',1,1,0),(649,20872,147106,'Parwanoo','India','IN','Parwanoo (India)',1,1,0),(650,21043,147140,'Pelling','India','IN','Pelling (India)',1,1,0),(651,0,147410,'Purakkad','India','IN','Purakkad (India)',1,1,0),(652,34466,147442,'Raigad','India','IN','Raigad (India)',1,1,0),(653,22833,147501,'Rewari','India','IN','Rewari (India)',1,1,0),(654,23168,147554,'Rohet','India','IN','Rohet (India)',1,1,0),(655,0,147607,'Sahibzada Ajit Singh Nagar','India','IN','Sahibzada Ajit Singh Nagar (India)',1,1,0),(656,24375,147780,'Satna','India','IN','Satna (India)',1,1,0),(657,0,147891,'Shivamogga','India','IN','Shivamogga (India)',1,1,0),(658,25227,147912,'Siliguri','India','IN','Siliguri (India)',1,1,0),(659,25241,147914,'Silvassa','India','IN','Silvassa (India)',1,1,0),(660,0,148240,'Tiruchirappalli','India','IN','Tiruchirappalli (India)',1,1,0),(661,28067,148363,'Udupi','India','IN','Udupi (India)',1,1,0),(662,28138,148374,'Unchagaon','India','IN','Unchagaon (India)',1,1,0),(663,0,148406,'Vagamon','India','IN','Vagamon (India)',1,1,0),(664,0,148407,'Vagator','India','IN','Vagator (India)',1,1,0),(665,0,148446,'Vayalar','India','IN','Vayalar (India)',1,1,0),(666,0,148450,'Velangani','India','IN','Velangani (India)',1,1,0),(667,0,148459,'Vellore','India','IN','Vellore (India)',1,1,0),(668,28759,148500,'Vijayawada','India','IN','Vijayawada (India)',1,1,0),(669,29412,148630,'Wayanad','India','IN','Wayanad (India)',1,1,0),(670,0,148767,'Yelagiri','India','IN','Yelagiri (India)',1,1,0),(671,4488,148834,'Burhanpur','India','IN','Burhanpur (India)',1,1,0),(672,0,148835,'Alipurduar','India','IN','Alipurduar (India)',1,1,0),(673,34451,148844,'Jhunjhunu','India','IN','Jhunjhunu (India)',1,1,0),(674,34488,148857,'Balaghat','India','IN','Balaghat (India)',1,1,0),(675,0,148869,'Karauli','India','IN','Karauli (India)',1,1,0),(676,0,148870,'CHILLING','India','IN','CHILLING (India)',1,1,0),(677,0,148892,'Hemis Skupachan','India','IN','Hemis Skupachan (India)',1,1,0),(678,0,148896,'LINGSHED','India','IN','LINGSHED (India)',1,1,0),(679,0,148897,'Satpura','India','IN','Satpura (India)',1,1,0),(680,0,148898,'SHINGRAK','India','IN','SHINGRAK (India)',1,1,0),(681,0,148900,'DEEPYOKMA','India','IN','DEEPYOKMA (India)',1,1,0),(682,0,148901,'Thiruvananthapuram','India','IN','Thiruvananthapuram (India)',1,1,0),(683,34454,148902,'Kishangarh','India','IN','Kishangarh (India)',1,1,0),(684,0,148903,'Lataguri','India','IN','Lataguri (India)',1,1,0),(685,0,148983,'Bali','India','IN','Bali (India)',1,1,0),(686,0,150162,'North Lakhimpur','India','IN','North Lakhimpur (India)',1,1,0),(687,1987,150171,'Baddi','India','IN','Baddi (India)',1,1,0),(688,0,150174,'Kumbalgarh','India','IN','Kumbalgarh (India)',1,1,0),(689,0,150180,'Roorkee','India','IN','Roorkee (India)',1,1,0),(690,19133,150203,'Nedumbassery','India','IN','Nedumbassery (India)',1,1,0),(691,0,150235,'Hubballi','India','IN','Hubballi (India)',1,1,0),(692,0,150242,'Benaulim','India','IN','Benaulim (India)',1,1,0),(693,0,150248,'Zirakpur','India','IN','Zirakpur (India)',1,1,0),(694,34447,150284,'Chalakudy','India','IN','Chalakudy (India)',1,1,0),(695,0,150287,'TIB BAGO','India','IN','TIB BAGO (India)',1,1,0),(696,0,150356,'Midnapur','India','IN','Midnapur (India)',1,1,0),(697,0,150357,'NYERAK','India','IN','NYERAK (India)',1,1,0),(698,34558,150358,'Pondicherry','India','IN','Pondicherry (India)',1,1,0),(699,34387,150359,'Rudrapur','India','IN','Rudrapur (India)',1,1,0),(700,0,150360,'Shahpur','India','IN','Shahpur (India)',1,1,0),(701,25219,150361,'Silchar','India','IN','Silchar (India)',1,1,0),(702,0,150362,'Tarapith','India','IN','Tarapith (India)',1,1,0),(703,34296,150363,'Ladakh','India','IN','Ladakh (India)',1,1,0),(704,0,150387,'ZARIBAGO','India','IN','ZARIBAGO (India)',1,1,0),(705,0,150392,'Muzaffarnagar','India','IN','Muzaffarnagar (India)',1,1,0),(706,35145,150396,'Yuksom','India','IN','Yuksom (India)',1,1,0),(707,0,150397,'Kadapa','India','IN','Kadapa (India)',1,1,0),(708,1686,150412,'Athirapally','India','IN','Athirapally (India)',1,1,0),(709,12990,150469,'Jagdalpur','India','IN','Jagdalpur (India)',1,1,0),(710,11209,150594,'Guna','India','IN','Guna (India)',1,1,0),(711,13898,150615,'Keshod','India','IN','Keshod (India)',1,1,0),(712,0,150632,'Malda','India','IN','Malda (India)',1,1,0),(713,19365,150649,'Neyveli','India','IN','Neyveli (India)',1,1,0),(714,2012,150697,'Bagdogra','India','IN','Bagdogra (India)',1,1,0),(715,0,150731,'Dhanbad','India','IN','Dhanbad (India)',1,1,0),(716,20739,150800,'Pantnagar','India','IN','Pantnagar (India)',1,1,0),(717,22831,150930,'Rewa','India','IN','Rewa (India)',1,1,0),(718,23478,150936,'Rupsi','India','IN','Rupsi (India)',1,1,0),(719,0,150951,'Balurghat','India','IN','Balurghat (India)',1,1,0),(720,0,150965,'Car Nicobar','India','IN','Car Nicobar (India)',1,1,0),(721,0,151112,'Kailashahar','India','IN','Kailashahar (India)',1,1,0),(722,13438,151198,'Kamalpur','India','IN','Kamalpur (India)',1,1,0),(723,732,151339,'Along','India','IN','Along (India)',1,1,0),(724,7934,151439,'Dirang','India','IN','Dirang (India)',1,1,0),(725,0,151469,'Kandla','India','IN','Kandla (India)',1,1,0),(726,0,151536,'Muzaffarpur','India','IN','Muzaffarpur (India)',1,1,0),(727,0,151612,'Vythiri','India','IN','Vythiri (India)',1,1,0),(728,0,151614,'Warangal','India','IN','Warangal (India)',1,1,0),(729,22526,151654,'Ramagundam','India','IN','Ramagundam (India)',1,1,0),(730,34462,151811,'Bhalukpong','India','IN','Bhalukpong (India)',1,1,0),(731,36592,151812,'Mehsana','India','IN','Mehsana (India)',1,1,0),(732,34430,151833,'Naldehra','India','IN','Naldehra (India)',1,1,0),(733,0,151834,'Taboda','India','IN','Taboda (India)',1,1,0),(734,0,151835,'Sonmarg','India','IN','Sonmarg (India)',1,1,0),(735,0,151836,'Ashtamudi','India','IN','Ashtamudi (India)',1,1,0),(736,0,151837,'Kidanganad','India','IN','Kidanganad (India)',1,1,0),(737,22025,151840,'Pragpur','India','IN','Pragpur (India)',1,1,0),(738,0,151841,'Kantal','India','IN','Kantal (India)',1,1,0),(739,0,151842,'Baiguney','India','IN','Baiguney (India)',1,1,0),(740,0,151843,'Bongaigaon','India','IN','Bongaigaon (India)',1,1,0),(741,34548,151844,'Kurukshetra','India','IN','Kurukshetra (India)',1,1,0),(742,0,151845,'Nathdwara','India','IN','Nathdwara (India)',1,1,0),(743,0,151846,'Nawanshahar','India','IN','Nawanshahar (India)',1,1,0),(744,0,151847,'Sattal','India','IN','Sattal (India)',1,1,0),(745,34546,151848,'Sonipat','India','IN','Sonipat (India)',1,1,0),(746,0,151849,'Sultanpur','India','IN','Sultanpur (India)',1,1,0),(747,0,151850,'Tadoba','India','IN','Tadoba (India)',1,1,0),(748,0,151851,'NEIL ISLAND','India','IN','NEIL ISLAND (India)',1,1,0),(749,0,151859,'KATPADI','India','IN','KATPADI (India)',1,1,0),(750,0,151860,'Rameswaram','India','IN','Rameswaram (India)',1,1,0),(751,0,151861,'Parbhani','India','IN','Parbhani (India)',1,1,0),(752,0,100001,'Kapas','Malaysia','MY','Kapas (Malaysia)',1,1,0),(753,0,100002,'Layang-Layang','Malaysia','MY','Layang-Layang (Malaysia)',1,1,0),(754,10,100003,'A Capela','Spain','ES','A Capela (Spain)',1,1,0),(755,14,100004,'A Fonsagrada','Spain','ES','A Fonsagrada (Spain)',1,1,0),(756,0,100005,'A Pontenova','Spain','ES','A Pontenova (Spain)',1,1,0),(757,0,100006,'A Toxa','Spain','ES','A Toxa (Spain)',1,1,0),(758,21,100007,'Aalborg','Denmark','DK','Aalborg (Denmark)',1,1,0),(759,28,100008,'Aarau','Switzerland','CH','Aarau (Switzerland)',1,1,0),(760,0,100009,'Abakan','Russia','RU','Abakan (Russia)',1,1,0),(761,0,100010,'Abanillas','Spain','ES','Abanillas (Spain)',1,1,0),(762,44,100011,'Abbadia San Salvatore','Italy','IT','Abbadia San Salvatore (Italy)',1,1,0),(763,47,100012,'Abbeville','France','FR','Abbeville (France)',1,1,0),(764,54,100013,'Abbotsford','Canada','CA','Abbotsford (Canada)',1,1,0),(765,0,100014,'Aberdares','Kenya','KE','Aberdares (Kenya)',1,1,0),(766,0,100015,'Aberdour','United Kingdom','UK','Aberdour (United Kingdom)',1,1,0),(767,0,100016,'Aberfeldy','United Kingdom','UK','Aberfeldy (United Kingdom)',1,1,0),(768,0,100017,'Abergavenny','United Kingdom','UK','Abergavenny (United Kingdom)',1,1,0),(769,0,100018,'Aberlour','United Kingdom','UK','Aberlour (United Kingdom)',1,1,0),(770,0,100019,'Abertamy','Czech Republic','CZ','Abertamy (Czech Republic)',1,1,0),(771,0,100020,'Abtsgmund','Germany','DE','Abtsgmund (Germany)',1,1,0),(772,0,100021,'Abybro','Denmark','DK','Abybro (Denmark)',1,1,0),(773,116,100022,'Acaya','Italy','IT','Acaya (Italy)',1,1,0),(774,124,100023,'Achau','Austria','AT','Achau (Austria)',1,1,0),(775,0,100024,'Acheloj','Bulgaria','BG','Acheloj (Bulgaria)',1,1,0),(776,127,100025,'Achern','Germany','DE','Achern (Germany)',1,1,0),(777,134,100026,'Aci Castello','Italy','IT','Aci Castello (Italy)',1,1,0),(778,0,100027,'Acquafredda di Maratea','Italy','IT','Acquafredda di Maratea (Italy)',1,1,0),(779,0,100028,'Acton Trussell','United Kingdom','UK','Acton Trussell (United Kingdom)',1,1,0),(780,160,100029,'Adairsville','United States of America','US','Adairsville (United States of America)',1,1,0),(781,0,100030,'Addaya','Spain','ES','Addaya (Spain)',1,1,0),(782,0,100031,'Addis Abeba','Ethiopia','ET','Addis Abeba (Ethiopia)',1,1,0),(783,177,100032,'Adeje','Spain','ES','Adeje (Spain)',1,1,0),(784,0,100033,'Adele','Greece','GR','Adele (Greece)',1,1,0),(785,194,100034,'Adiyaman','Turkey','TR','Adiyaman (Turkey)',1,1,0),(786,195,100035,'Adjuntas','Puerto Rico','PR','Adjuntas (Puerto Rico)',1,1,0),(787,0,100036,'Adrano','Italy','IT','Adrano (Italy)',1,1,0),(788,0,100037,'Adrasan-Cavus','Turkey','TR','Adrasan-Cavus (Turkey)',1,1,0),(789,0,100038,'Aegiali','Greece','GR','Aegiali (Greece)',1,1,0),(790,210,100039,'Aerzen','Germany','DE','Aerzen (Germany)',1,1,0),(791,0,100040,'Afiartis','Greece','GR','Afiartis (Greece)',1,1,0),(792,0,100041,'Agali','Greece','GR','Agali (Greece)',1,1,0),(793,0,100042,'Ager','Spain','ES','Ager (Spain)',1,1,0),(794,0,100043,'Aggsbach','Austria','AT','Aggsbach (Austria)',1,1,0),(795,0,100044,'Agios Constantinos','Greece','GR','Agios Constantinos (Greece)',1,1,0),(796,0,100045,'Agios Dimitrios','Greece','GR','Agios Dimitrios (Greece)',1,1,0),(797,0,100046,'Agios Ermogenis','Greece','GR','Agios Ermogenis (Greece)',1,1,0),(798,0,100047,'Agios Ilias','Greece','GR','Agios Ilias (Greece)',1,1,0),(799,0,100048,'Aglientu','Italy','IT','Aglientu (Italy)',1,1,0),(800,272,100049,'Agrinio','Greece','GR','Agrinio (Greece)',1,1,0),(801,275,100050,'Agua Amarga','Spain','ES','Agua Amarga (Spain)',1,1,0),(802,283,100051,'Aguas de Moura','Portugal','PT','Aguas de Moura (Portugal)',1,1,0),(803,285,100052,'Aguascalientes','Mexico','MX','Aguascalientes (Mexico)',1,1,0),(804,0,100053,'Aguimes','Spain','ES','Aguimes (Spain)',1,1,0),(805,0,100054,'Agulo','Spain','ES','Agulo (Spain)',1,1,0),(806,0,100055,'Ahetze','France','FR','Ahetze (France)',1,1,0),(807,0,100056,'Ahlimbsmuhle','Germany','DE','Ahlimbsmuhle (Germany)',1,1,0),(808,0,100057,'Ahlone','Myanmar','MM','Ahlone (Myanmar)',1,1,0),(809,297,100058,'Ahoskie','United States of America','US','Ahoskie (United States of America)',1,1,0),(810,0,100059,'Ahrenshoop','Germany','DE','Ahrenshoop (Germany)',1,1,0),(811,0,100060,'Ahrenviolfeld','Germany','DE','Ahrenviolfeld (Germany)',1,1,0),(812,0,100061,'Ahtaris','Finland','FI','Ahtaris (Finland)',1,1,0),(813,301,100062,'Ahualulco de Mercado','Mexico','MX','Ahualulco de Mercado (Mexico)',1,1,0),(814,0,100063,'Aigaliers','France','FR','Aigaliers (France)',1,1,0),(815,326,100064,'Aimargues','France','FR','Aimargues (France)',1,1,0),(816,0,100065,'Ainet','Austria','AT','Ainet (Austria)',1,1,0),(817,0,100066,'Ainring','Germany','DE','Ainring (Germany)',1,1,0),(818,333,100067,'Ainsa','Spain','ES','Ainsa (Spain)',1,1,0),(819,341,100068,'Airdrie','Canada','CA','Airdrie (Canada)',1,1,0),(820,345,100069,'Airolo','Switzerland','CH','Airolo (Switzerland)',1,1,0),(821,354,100070,'Aitutaki','Cook Islands','CK','Aitutaki (Cook Islands)',1,1,0),(822,356,100071,'Aix-en-Provence','France','FR','Aix-en-Provence (France)',1,1,0),(823,0,100072,'Ajo','Spain','ES','Ajo (Spain)',1,1,0),(824,373,100073,'Akaroa','New Zealand','NZ','Akaroa (New Zealand)',1,1,0),(825,389,100074,'Akishima','Japan','JP','Akishima (Japan)',1,1,0),(826,403,100075,'Aksu','China','CN','Aksu (China)',1,1,0),(827,0,100076,'Alabarracin','Spain','ES','Alabarracin (Spain)',1,1,0),(828,423,100077,'Alachua','United States of America','US','Alachua (United States of America)',1,1,0),(829,0,100078,'Alagoinhas','Brazil','BR','Alagoinhas (Brazil)',1,1,0),(830,425,100079,'Alajuela','Costa Rica','CR','Alajuela (Costa Rica)',1,1,0),(831,427,100080,'Alameda','United States of America','US','Alameda (United States of America)',1,1,0),(832,0,100081,'Alandroal','Portugal','PT','Alandroal (Portugal)',1,1,0),(833,0,100082,'Alanis de la Sierra','Spain','ES','Alanis de la Sierra (Spain)',1,1,0),(834,434,100083,'Alanson','United States of America','US','Alanson (United States of America)',1,1,0),(835,447,100084,'Alba Iulia','Romania','RO','Alba Iulia (Romania)',1,1,0),(836,463,100085,'Albemarle','United States of America','US','Albemarle (United States of America)',1,1,0),(837,0,100086,'Albershausen','Germany','DE','Albershausen (Germany)',1,1,0),(838,0,100087,'Albinyana','Spain','ES','Albinyana (Spain)',1,1,0),(839,494,100088,'Albolote','Spain','ES','Albolote (Spain)',1,1,0),(840,0,100089,'Alcala de Henares','Spain','ES','Alcala de Henares (Spain)',1,1,0),(841,509,100090,'Alcanada','Spain','ES','Alcanada (Spain)',1,1,0),(842,518,100091,'Alcazar de San Juan','Spain','ES','Alcazar de San Juan (Spain)',1,1,0),(843,0,100092,'Alcester','United Kingdom','UK','Alcester (United Kingdom)',1,1,0),(844,0,100093,'Alcudia de Guadix','Spain','ES','Alcudia de Guadix (Spain)',1,1,0),(845,0,100094,'Aldbury','United Kingdom','UK','Aldbury (United Kingdom)',1,1,0),(846,0,100095,'Aldeanueva De La Serrezuela','Spain','ES','Aldeanueva De La Serrezuela (Spain)',1,1,0),(847,0,100096,'Aldeburgh','United Kingdom','UK','Aldeburgh (United Kingdom)',1,1,0),(848,0,100097,'Aldeia da Serra','Portugal','PT','Aldeia da Serra (Portugal)',1,1,0),(849,0,100098,'Aldeia das Dez','Portugal','PT','Aldeia das Dez (Portugal)',1,1,0),(850,0,100099,'Aldergrove','United Kingdom','UK','Aldergrove (United Kingdom)',1,1,0),(851,0,100100,'Aldudes','France','FR','Aldudes (France)',1,1,0),(852,555,100101,'Alencon','France','FR','Alencon (France)',1,1,0),(853,0,100102,'Alexandra Headland','Australia','AU','Alexandra Headland (Australia)',1,1,0),(854,574,100103,'Alexandria','Egypt','EG','Alexandria (Egypt)',1,1,0),(855,0,100104,'Alfriston','United Kingdom','UK','Alfriston (United Kingdom)',1,1,0),(856,14955,100105,'Langkawi','Malaysia','MY','Langkawi (Malaysia)',1,1,0),(857,0,100106,'Tioman','Malaysia','MY','Tioman (Malaysia)',1,1,0),(858,0,100107,'(De) Panne','Belgium','BE','(De) Panne (Belgium)',1,1,0),(859,0,100108,'A Lama','Spain','ES','A Lama (Spain)',1,1,0),(860,27,100109,'Aalter','Belgium','BE','Aalter (Belgium)',1,1,0),(861,0,100110,'Ababi','Indonesia','ID','Ababi (Indonesia)',1,1,0),(862,35,100111,'Abaco Island','Bahamas','BS','Abaco Island (Bahamas)',1,1,0),(863,0,100112,'Abbadia Lariana','Italy','IT','Abbadia Lariana (Italy)',1,1,0),(864,0,100113,'Abbaretz','France','FR','Abbaretz (France)',1,1,0),(865,68,100114,'Aberdeen','United States of America','US','Aberdeen (United States of America)',1,1,0),(866,0,100115,'Aberfoyle','United Kingdom','UK','Aberfoyle (United Kingdom)',1,1,0),(867,0,100116,'Aberporth','United Kingdom','UK','Aberporth (United Kingdom)',1,1,0),(868,0,100117,'Abfaltersbach','Austria','AT','Abfaltersbach (Austria)',1,1,0),(869,87,100118,'Abilene','United States of America','US','Abilene (United States of America)',1,1,0),(870,106,100119,'Abu Simbel','Egypt','EG','Abu Simbel (Egypt)',1,1,0),(871,0,100120,'Abzakovo','Russia','RU','Abzakovo (Russia)',1,1,0),(872,0,100121,'Achberg','Germany','DE','Achberg (Germany)',1,1,0),(873,0,100122,'Achouffe','Belgium','BE','Achouffe (Belgium)',1,1,0),(874,135,100123,'Acireale','Italy','IT','Acireale (Italy)',1,1,0),(875,139,100124,'Acoma','United States of America','US','Acoma (United States of America)',1,1,0),(876,0,100125,'Acquaseria','Italy','IT','Acquaseria (Italy)',1,1,0),(877,0,100126,'Ada Island','Montenegro','ME','Ada Island (Montenegro)',1,1,0),(878,190,100127,'Adenau','Germany','DE','Adenau (Germany)',1,1,0),(879,0,100128,'Adia','Greece','GR','Adia (Greece)',1,1,0),(880,0,100129,'Adlergebirge','Czech Republic','CZ','Adlergebirge (Czech Republic)',1,1,0),(881,0,100130,'Adorf','Germany','DE','Adorf (Germany)',1,1,0),(882,0,100131,'Aduard','Netherlands','NL','Aduard (Netherlands)',1,1,0),(883,0,100132,'Aeschlen','Switzerland','CH','Aeschlen (Switzerland)',1,1,0),(884,0,100133,'Aexlandroupolis','Greece','GR','Aexlandroupolis (Greece)',1,1,0),(885,226,100134,'Agaete','Spain','ES','Agaete (Spain)',1,1,0),(886,228,100135,'Agarn','Switzerland','CH','Agarn (Switzerland)',1,1,0),(887,0,100136,'Agassiz','Canada','CA','Agassiz (Canada)',1,1,0),(888,230,100137,'Agat','Guam','GU','Agat (Guam)',1,1,0),(889,0,100138,'Ageliana','Greece','GR','Ageliana (Greece)',1,1,0),(890,240,100139,'Agen','France','FR','Agen (France)',1,1,0),(891,0,100140,'Aggius','Italy','IT','Aggius (Italy)',1,1,0),(892,0,100141,'Agios Emilianos','Greece','GR','Agios Emilianos (Greece)',1,1,0),(893,0,100142,'Agios Panteleimonas','Greece','GR','Agios Panteleimonas (Greece)',1,1,0),(894,0,100143,'Agios Sostis','Greece','GR','Agios Sostis (Greece)',1,1,0),(895,0,100144,'Agios Spyridon','Greece','GR','Agios Spyridon (Greece)',1,1,0),(896,0,100145,'Agnieres-en-Devoluy','France','FR','Agnieres-en-Devoluy (France)',1,1,0),(897,0,100146,'Agnone','Italy','IT','Agnone (Italy)',1,1,0),(898,268,100147,'Agrate Brianza','Italy','IT','Agrate Brianza (Italy)',1,1,0),(899,0,100148,'Agria','Greece','GR','Agria (Greece)',1,1,0),(900,0,100149,'Agrilos','Greece','GR','Agrilos (Greece)',1,1,0),(901,0,100150,'Ahlsdorf','Germany','DE','Ahlsdorf (Germany)',1,1,0),(902,303,100151,'Ahungalla','Sri Lanka','LK','Ahungalla (Sri Lanka)',1,1,0),(903,306,100152,'Ahwahnee','United States of America','US','Ahwahnee (United States of America)',1,1,0),(904,310,100153,'Aidone','Italy','IT','Aidone (Italy)',1,1,0),(905,0,100154,'Aigeiros','Greece','GR','Aigeiros (Greece)',1,1,0),(906,320,100155,'Aigues Mortes','France','FR','Aigues Mortes (France)',1,1,0),(907,0,100156,'Ailpena Pound','Australia','AU','Ailpena Pound (Australia)',1,1,0),(908,0,100157,'Aire-sur-l\'Adour','France','FR','Aire-sur-l\'Adour (France)',1,1,0),(909,344,100158,'Airlie Beach','Australia','AU','Airlie Beach (Australia)',1,1,0),(910,0,100159,'Airport West','Australia','AU','Airport West (Australia)',1,1,0),(911,0,100160,'Aisey-sur-Seine','France','FR','Aisey-sur-Seine (France)',1,1,0),(912,361,100161,'Aizuwakamatsu','Japan','JP','Aizuwakamatsu (Japan)',1,1,0),(913,364,100162,'Ajax','Canada','CA','Ajax (Canada)',1,1,0),(914,380,100163,'Akersloot','Netherlands','NL','Akersloot (Netherlands)',1,1,0),(915,0,100164,'Al Bahah','Saudi Arabia','SA','Al Bahah (Saudi Arabia)',1,1,0),(916,0,100165,'Al Buraimi','Oman','OM','Al Buraimi (Oman)',1,1,0),(917,0,100166,'Ala','Italy','IT','Ala (Italy)',1,1,0),(918,421,100167,'Alabaster','United States of America','US','Alabaster (United States of America)',1,1,0),(919,0,100168,'Alagna Valsesia','Italy','IT','Alagna Valsesia (Italy)',1,1,0),(920,0,100169,'Alameda','Spain','ES','Alameda (Spain)',1,1,0),(921,0,100170,'Albarella Island','Italy','IT','Albarella Island (Italy)',1,1,0),(922,0,100171,'Albbruck','Germany','DE','Albbruck (Germany)',1,1,0),(923,0,100172,'Albertina','South Africa','ZA','Albertina (South Africa)',1,1,0),(924,498,100173,'Albstadt','Germany','DE','Albstadt (Germany)',1,1,0),(925,0,100174,'Alcacovas','Portugal','PT','Alcacovas (Portugal)',1,1,0),(926,0,100175,'Alcamo Marina','Italy','IT','Alcamo Marina (Italy)',1,1,0),(927,515,100176,'Alcantarilha','Portugal','PT','Alcantarilha (Portugal)',1,1,0),(928,0,100177,'Alcorisa','Spain','ES','Alcorisa (Spain)',1,1,0),(929,528,100178,'Alcossebre','Spain','ES','Alcossebre (Spain)',1,1,0),(930,537,100179,'Aldergrove','Canada','CA','Aldergrove (Canada)',1,1,0),(931,0,100180,'Aldermaston','United Kingdom','UK','Aldermaston (United Kingdom)',1,1,0),(932,0,100181,'Aleppo','Syria',NULL,'Aleppo (Syria)',1,1,0),(933,0,100182,'Alexander','United States of America','US','Alexander (United States of America)',1,1,0),(934,568,100183,'Alexander City','United States of America','US','Alexander City (United States of America)',1,1,0),(935,0,100184,'Alfoz de Lloredo','Spain','ES','Alfoz de Lloredo (Spain)',1,1,0),(936,0,100185,'Alfta','Sweden','SE','Alfta (Sweden)',1,1,0),(937,602,100186,'Algarrobo','Chile','CL','Algarrobo (Chile)',1,1,0),(938,605,100187,'Alghero','Italy','IT','Alghero (Italy)',1,1,0),(939,0,100188,'Algonquin Provincial Park','Canada','CA','Algonquin Provincial Park (Canada)',1,1,0),(940,615,100189,'Alhama de Aragon','Spain','ES','Alhama de Aragon (Spain)',1,1,0),(941,0,100190,'Alhaurin del Grande','Spain','ES','Alhaurin del Grande (Spain)',1,1,0),(942,628,100191,'Alice','United States of America','US','Alice (United States of America)',1,1,0),(943,629,100192,'Alice Bel Colle','Italy','IT','Alice Bel Colle (Italy)',1,1,0),(944,632,100193,'Alicedale','South Africa','ZA','Alicedale (South Africa)',1,1,0),(945,638,100194,'Alikanas','Greece','GR','Alikanas (Greece)',1,1,0),(946,640,100195,'Aliki','Greece','GR','Aliki (Greece)',1,1,0),(947,0,100196,'Alkyes','Greece','GR','Alkyes (Greece)',1,1,0),(948,654,100197,'Allariz','Spain','ES','Allariz (Spain)',1,1,0),(949,660,100198,'Alleghe','Italy','IT','Alleghe (Italy)',1,1,0),(950,0,100199,'Allegre','France','FR','Allegre (France)',1,1,0),(951,664,100200,'Allendale','United States of America','US','Allendale (United States of America)',1,1,0),(952,0,100201,'Allerheiligen','Austria','AT','Allerheiligen (Austria)',1,1,0),(953,0,100202,'Allrode','Germany','DE','Allrode (Germany)',1,1,0),(954,733,100204,'Alonissos','Greece','GR','Alonissos (Greece)',1,1,0),(955,0,100205,'Alpiarca','Portugal','PT','Alpiarca (Portugal)',1,1,0),(956,0,100206,'Alsdorf','Germany','DE','Alsdorf (Germany)',1,1,0),(957,0,100207,'Alt Schadow','Germany','DE','Alt Schadow (Germany)',1,1,0),(958,0,100208,'Alt Schwerin','Germany','DE','Alt Schwerin (Germany)',1,1,0),(959,794,100209,'Altea','Spain','ES','Altea (Spain)',1,1,0),(960,0,100210,'101 Mile House','Canada','CA','101 Mile House (Canada)',1,1,0),(961,0,100211,'Aalten','Netherlands','NL','Aalten (Netherlands)',1,1,0),(962,0,100212,'Aardenburg','Netherlands','NL','Aardenburg (Netherlands)',1,1,0),(963,33,100213,'Aars','Denmark','DK','Aars (Denmark)',1,1,0),(964,0,100214,'Abalos','Spain','ES','Abalos (Spain)',1,1,0),(965,0,100215,'Abberley','United Kingdom','UK','Abberley (United Kingdom)',1,1,0),(966,0,100216,'Abenberg','Germany','DE','Abenberg (Germany)',1,1,0),(967,0,100217,'Aberystwyth','United Kingdom','UK','Aberystwyth (United Kingdom)',1,1,0),(968,86,100218,'Abha','Saudi Arabia','SA','Abha (Saudi Arabia)',1,1,0),(969,89,100219,'Abingdon','United States of America','US','Abingdon (United States of America)',1,1,0),(970,0,100220,'Abington','United Kingdom','UK','Abington (United Kingdom)',1,1,0),(971,97,100221,'Abrantes','Portugal','PT','Abrantes (Portugal)',1,1,0),(972,0,100222,'Abstatt','Germany','DE','Abstatt (Germany)',1,1,0),(973,0,100223,'Abtsteinach','Germany','DE','Abtsteinach (Germany)',1,1,0),(974,0,100224,'Abu Soma','Egypt','EG','Abu Soma (Egypt)',1,1,0),(975,107,100225,'Abuja','Nigeria','NG','Abuja (Nigeria)',1,1,0),(976,0,100226,'Acconia di Curinga','Italy','IT','Acconia di Curinga (Italy)',1,1,0),(977,130,100227,'Achim','Germany','DE','Achim (Germany)',1,1,0),(978,0,100228,'Achnasheen','United Kingdom','UK','Achnasheen (United Kingdom)',1,1,0),(979,0,100229,'Acquarossa','Switzerland','CH','Acquarossa (Switzerland)',1,1,0),(980,147,100230,'Acquaviva','Italy','IT','Acquaviva (Italy)',1,1,0),(981,0,100231,'Acquaviva Picena','Italy','IT','Acquaviva Picena (Italy)',1,1,0),(982,150,100232,'Acra','United States of America','US','Acra (United States of America)',1,1,0),(983,155,100233,'Actopan','Mexico','MX','Actopan (Mexico)',1,1,0),(984,158,100234,'Ada','United States of America','US','Ada (United States of America)',1,1,0),(985,162,100235,'Adamas','Greece','GR','Adamas (Greece)',1,1,0),(986,0,100236,'Adamov','Czech Republic','CZ','Adamov (Czech Republic)',1,1,0),(987,168,100237,'Adana','Turkey','TR','Adana (Turkey)',1,1,0),(988,179,100238,'Adelaide','Australia','AU','Adelaide (Australia)',1,1,0),(989,183,100239,'Adelanto','United States of America','US','Adelanto (United States of America)',1,1,0),(990,0,100240,'Admont','Austria','AT','Admont (Austria)',1,1,0),(991,0,100241,'Aeropuerto de Madrid-Barajas','Spain','ES','Aeropuerto de Madrid-Barajas (Spain)',1,1,0),(992,211,100242,'Aeschi','Switzerland','CH','Aeschi (Switzerland)',1,1,0),(993,0,100243,'Affoltern am Albis','Switzerland','CH','Affoltern am Albis (Switzerland)',1,1,0),(994,250,100244,'Aghir','Tunisia','TN','Aghir (Tunisia)',1,1,0),(995,0,100245,'Aghnablaney','United Kingdom','UK','Aghnablaney (United Kingdom)',1,1,0),(996,0,100246,'Agia Roumeli','Greece','GR','Agia Roumeli (Greece)',1,1,0),(997,0,100247,'Agia Thekli','Greece','GR','Agia Thekli (Greece)',1,1,0),(998,0,100248,'Agia Triada','Greece','GR','Agia Triada (Greece)',1,1,0),(999,0,100249,'Agios Athanasios','Greece','GR','Agios Athanasios (Greece)',1,1,0),(1000,0,100250,'Agios Fanourios','Greece','GR','Agios Fanourios (Greece)',1,1,0),(1001,0,100251,'Agios Fokas','Greece','GR','Agios Fokas (Greece)',1,1,0),(1002,0,100252,'Agios Georgios','Greece','GR','Agios Georgios (Greece)',1,1,0),(1003,0,100253,'Agios Germanos','Greece','GR','Agios Germanos (Greece)',1,1,0),(1004,0,100254,'Agios Nikitas','Greece','GR','Agios Nikitas (Greece)',1,1,0),(1005,0,100255,'Agios Nikolaos','Greece','GR','Agios Nikolaos (Greece)',1,1,0),(1006,0,100256,'Agios Nikolaos Volimes','Greece','GR','Agios Nikolaos Volimes (Greece)',1,1,0),(1007,0,100257,'Agrigent','Italy','IT','Agrigent (Italy)',1,1,0),(1008,0,100258,'Agrustos','Italy','IT','Agrustos (Italy)',1,1,0),(1009,277,100259,'Agua de Pau','Portugal','PT','Agua de Pau (Portugal)',1,1,0),(1010,288,100260,'Aguilas','Spain','ES','Aguilas (Spain)',1,1,0),(1011,291,100261,'Agva','Turkey','TR','Agva (Turkey)',1,1,0),(1012,293,100262,'Ahangama','Sri Lanka','LK','Ahangama (Sri Lanka)',1,1,0),(1013,0,100264,'Aich / Schladming','Austria','AT','Aich / Schladming (Austria)',1,1,0),(1014,0,100265,'Aichelberg','Germany','DE','Aichelberg (Germany)',1,1,0),(1015,0,100266,'Aidenbach','Germany','DE','Aidenbach (Germany)',1,1,0),(1016,0,100267,'Aielli','Italy','IT','Aielli (Italy)',1,1,0),(1017,312,100268,'Aigio','Greece','GR','Aigio (Greece)',1,1,0),(1018,313,100269,'Aigle','Switzerland','CH','Aigle (Switzerland)',1,1,0),(1019,324,100270,'Aillant-sur-Tholon','France','FR','Aillant-sur-Tholon (France)',1,1,0),(1020,0,100271,'Aime La Plagne','France','FR','Aime La Plagne (France)',1,1,0),(1021,0,100272,'Aix-en-Othe','France','FR','Aix-en-Othe (France)',1,1,0),(1022,363,100274,'Ajaccio','France','FR','Ajaccio (France)',1,1,0),(1023,0,100275,'Akagera','Rwanda','RW','Akagera (Rwanda)',1,1,0),(1024,390,100276,'Akita','Japan','JP','Akita (Japan)',1,1,0),(1025,394,100277,'Akkrum','Netherlands','NL','Akkrum (Netherlands)',1,1,0),(1026,0,100278,'Akoumia','Greece','GR','Akoumia (Greece)',1,1,0),(1027,410,100279,'Akyaka','Turkey','TR','Akyaka (Turkey)',1,1,0),(1028,30570,100280,'Al','Norway','NO','Al (Norway)',1,1,0),(1029,0,100281,'Alanya-Kargicak','Turkey','TR','Alanya-Kargicak (Turkey)',1,1,0),(1030,0,100282,'Alatopetra','Greece','GR','Alatopetra (Greece)',1,1,0),(1031,0,100283,'Albanchez de Magina','Spain','ES','Albanchez de Magina (Spain)',1,1,0),(1032,452,100284,'Albano Laziale','Italy','IT','Albano Laziale (Italy)',1,1,0),(1033,462,100285,'Albelda de Iregua','Spain','ES','Albelda de Iregua (Spain)',1,1,0),(1034,464,100286,'Albena','Bulgaria','BG','Albena (Bulgaria)',1,1,0),(1035,465,100287,'Albenga','Italy','IT','Albenga (Italy)',1,1,0),(1036,466,100288,'Alberese','Italy','IT','Alberese (Italy)',1,1,0),(1037,470,100289,'Alberobello','Italy','IT','Alberobello (Italy)',1,1,0),(1038,0,100290,'Albertacce','France','FR','Albertacce (France)',1,1,0),(1039,481,100291,'Albertville','United States of America','US','Albertville (United States of America)',1,1,0),(1040,487,100292,'Albinen','Switzerland','CH','Albinen (Switzerland)',1,1,0),(1041,0,100293,'Albourne','United Kingdom','UK','Albourne (United Kingdom)',1,1,0),(1042,504,100294,'Albury','Australia','AU','Albury (Australia)',1,1,0),(1043,530,100295,'Alcoy','Spain','ES','Alcoy (Spain)',1,1,0),(1044,531,100296,'Alcudia','Spain','ES','Alcudia (Spain)',1,1,0),(1045,0,100297,'Aldeanueva Del Camino','Spain','ES','Aldeanueva Del Camino (Spain)',1,1,0),(1046,560,100298,'Aleria','France','FR','Aleria (France)',1,1,0),(1047,584,100299,'Alfaro','Spain','ES','Alfaro (Spain)',1,1,0),(1048,604,100300,'Algeciras','Spain','ES','Algeciras (Spain)',1,1,0),(1049,0,100301,'Alhama de Murcia','Spain','ES','Alhama de Murcia (Spain)',1,1,0),(1050,617,100302,'Alhaurin de la Torre','Spain','ES','Alhaurin de la Torre (Spain)',1,1,0),(1051,0,100303,'Al-Hoceima','Morocco','MA','Al-Hoceima (Morocco)',1,1,0),(1052,0,100304,'Al-Hofuf','Saudi Arabia','SA','Al-Hofuf (Saudi Arabia)',1,1,0),(1053,646,100305,'Aliso Viejo','United States of America','US','Aliso Viejo (United States of America)',1,1,0),(1054,0,100306,'Aljustrel','Portugal','PT','Aljustrel (Portugal)',1,1,0),(1055,655,100308,'Allauch','France','FR','Allauch (France)',1,1,0),(1056,0,100309,'Allen Park','United States of America','US','Allen Park (United States of America)',1,1,0),(1057,0,100310,'Alles','Spain','ES','Alles (Spain)',1,1,0),(1058,0,100311,'Allhallows','United Kingdom','UK','Allhallows (United Kingdom)',1,1,0),(1059,0,100312,'Almerimar','Spain','ES','Almerimar (Spain)',1,1,0),(1060,719,100313,'Almonte','Spain','ES','Almonte (Spain)',1,1,0),(1061,744,100314,'Alp','Spain','ES','Alp (Spain)',1,1,0),(1062,757,100315,'Alphonse Island','Seychelles','SC','Alphonse Island (Seychelles)',1,1,0),(1063,759,100316,'Alpine','United States of America','US','Alpine (United States of America)',1,1,0),(1064,0,100317,'Alt Pori','Greece','GR','Alt Pori (Greece)',1,1,0),(1065,0,100318,'Alt St. Johann','Switzerland','CH','Alt St. Johann (Switzerland)',1,1,0),(1066,785,100319,'Altamonte Springs','United States of America','US','Altamonte Springs (United States of America)',1,1,0),(1067,0,100320,'Lang Tengah','Malaysia','MY','Lang Tengah (Malaysia)',1,1,0),(1068,0,100321,'Perhentian','Malaysia','MY','Perhentian (Malaysia)',1,1,0),(1069,0,100322,'A Caniza','Spain','ES','A Caniza (Spain)',1,1,0),(1070,11,100323,'A Coruna','Spain','ES','A Coruna (Spain)',1,1,0),(1071,26,100324,'Aalst','Belgium','BE','Aalst (Belgium)',1,1,0),(1072,0,100325,'Aavasaksa','Finland','FI','Aavasaksa (Finland)',1,1,0),(1073,0,100326,'Aba','China','CN','Aba (China)',1,1,0),(1074,0,100327,'Abaran','Spain','ES','Abaran (Spain)',1,1,0),(1075,48,100328,'Abbeville','United States of America','US','Abbeville (United States of America)',1,1,0),(1076,55,100329,'Abbotsford','United States of America','US','Abbotsford (United States of America)',1,1,0),(1077,0,100330,'Aberdeen','United States of America','US','Aberdeen (United States of America)',1,1,0),(1078,0,100331,'Aberdeen','United States of America','US','Aberdeen (United States of America)',1,1,0),(1079,0,100332,'Abu Dabab','Egypt','EG','Abu Dabab (Egypt)',1,1,0),(1080,0,100333,'Acceglio','Italy','IT','Acceglio (Italy)',1,1,0),(1081,0,100334,'Acheres (Yvelines)','France','FR','Acheres (Yvelines) (France)',1,1,0),(1082,131,100335,'Achlada','Greece','GR','Achlada (Greece)',1,1,0),(1083,0,100336,'Achslach','Germany','DE','Achslach (Germany)',1,1,0),(1084,0,100337,'Aclare','Ireland','IE','Aclare (Ireland)',1,1,0),(1085,0,100338,'Adaminaby','Australia','AU','Adaminaby (Australia)',1,1,0),(1086,0,100339,'Adapazari','Turkey','TR','Adapazari (Turkey)',1,1,0),(1087,173,100340,'Addison','United States of America','US','Addison (United States of America)',1,1,0),(1088,175,100341,'Addu Atoll','Maldives','MV','Addu Atoll (Maldives)',1,1,0),(1089,184,100342,'Adelboden','Switzerland','CH','Adelboden (Switzerland)',1,1,0),(1090,0,100343,'Adigrat','Ethiopia','ET','Adigrat (Ethiopia)',1,1,0),(1091,199,100344,'Adnet','Austria','AT','Adnet (Austria)',1,1,0),(1092,0,100345,'Adrspach','Czech Republic','CZ','Adrspach (Czech Republic)',1,1,0),(1093,212,100346,'Aeschlen ob Gunten','Switzerland','CH','Aeschlen ob Gunten (Switzerland)',1,1,0),(1094,213,100347,'Afandou','Greece','GR','Afandou (Greece)',1,1,0),(1095,0,100348,'Affoltern im Emmental','Switzerland','CH','Affoltern im Emmental (Switzerland)',1,1,0),(1096,0,100349,'Afourer','Morocco','MA','Afourer (Morocco)',1,1,0),(1097,0,100350,'Afritz am See','Austria','AT','Afritz am See (Austria)',1,1,0),(1098,222,100351,'Afyon','Turkey','TR','Afyon (Turkey)',1,1,0),(1099,0,100352,'Agard','Hungary','HU','Agard (Hungary)',1,1,0),(1100,0,100353,'Aghveran','Armenia','AM','Aghveran (Armenia)',1,1,0),(1101,0,100354,'Agia Anna','Greece','GR','Agia Anna (Greece)',1,1,0),(1102,0,100355,'Agia Apostoli','Greece','GR','Agia Apostoli (Greece)',1,1,0),(1103,0,100356,'Agia Ermioni','Greece','GR','Agia Ermioni (Greece)',1,1,0),(1104,0,100357,'Agia Irini','Greece','GR','Agia Irini (Greece)',1,1,0),(1105,0,100358,'Agios Lavrentios','Greece','GR','Agios Lavrentios (Greece)',1,1,0),(1106,0,100359,'Agios Myronas','Greece','GR','Agios Myronas (Greece)',1,1,0),(1107,260,100360,'Agnes Water','Australia','AU','Agnes Water (Australia)',1,1,0),(1108,0,100361,'Agua de Madeiros','Portugal','PT','Agua de Madeiros (Portugal)',1,1,0),(1109,294,100362,'Ahaus','Germany','DE','Ahaus (Germany)',1,1,0),(1110,0,100364,'Aichach','Germany','DE','Aichach (Germany)',1,1,0),(1111,0,100365,'Aichhalden','Germany','DE','Aichhalden (Germany)',1,1,0),(1112,0,100366,'Aichtal','Germany','DE','Aichtal (Germany)',1,1,0),(1113,0,100367,'Aicirits-Camou-Suhast','France','FR','Aicirits-Camou-Suhast (France)',1,1,0),(1114,314,100368,'Aiguablava','Spain','ES','Aiguablava (Spain)',1,1,0),(1115,322,100369,'Aiguines','France','FR','Aiguines (France)',1,1,0),(1116,0,100370,'Ainsworth','Canada','CA','Ainsworth (Canada)',1,1,0),(1117,0,100371,'Airth','United Kingdom','UK','Airth (United Kingdom)',1,1,0),(1118,0,100372,'Aitrach','Germany','DE','Aitrach (Germany)',1,1,0),(1119,0,100373,'Aizpun','Spain','ES','Aizpun (Spain)',1,1,0),(1120,375,100374,'Akaslompolo','Finland','FI','Akaslompolo (Finland)',1,1,0),(1121,377,100375,'Akbuk','Turkey','TR','Akbuk (Turkey)',1,1,0),(1122,0,100376,'Akriotiri','Greece','GR','Akriotiri (Greece)',1,1,0),(1123,401,100377,'Aksaray','Turkey','TR','Aksaray (Turkey)',1,1,0),(1124,0,100378,'Al Arz','Lebanon','LB','Al Arz (Lebanon)',1,1,0),(1125,418,100379,'Al Jahra','Kuwait','KW','Al Jahra (Kuwait)',1,1,0),(1126,0,100380,'Al Karak','Jordan','JO','Al Karak (Jordan)',1,1,0),(1127,0,100381,'Al Marjan Islands','United Arab Emirates','AE','Al Marjan Islands (United Arab Emirates)',1,1,0),(1128,0,100382,'Alaior','Spain','ES','Alaior (Spain)',1,1,0),(1129,0,100383,'Alara','Turkey','TR','Alara (Turkey)',1,1,0),(1130,0,100384,'Alasehir','Turkey','TR','Alasehir (Turkey)',1,1,0),(1131,441,100385,'Alassio','Italy','IT','Alassio (Italy)',1,1,0),(1132,444,100386,'Alba','Italy','IT','Alba (Italy)',1,1,0),(1133,445,100387,'Alba','United States of America','US','Alba (United States of America)',1,1,0),(1134,446,100388,'Alba de Tormes','Spain','ES','Alba de Tormes (Spain)',1,1,0),(1135,0,100389,'Alban','Canada','CA','Alban (Canada)',1,1,0),(1136,0,100390,'Albarellos','Spain','ES','Albarellos (Spain)',1,1,0),(1137,456,100391,'Albaretto della Torre','Italy','IT','Albaretto della Torre (Italy)',1,1,0),(1138,0,100392,'Albe','France','FR','Albe (France)',1,1,0),(1139,0,100393,'Albersweiler','Germany','DE','Albersweiler (Germany)',1,1,0),(1140,0,100394,'Alberta','Canada','CA','Alberta (Canada)',1,1,0),(1141,480,100395,'Albertville','France','FR','Albertville (France)',1,1,0),(1142,488,100396,'Albinia','Italy','IT','Albinia (Italy)',1,1,0),(1143,506,100397,'Alcacer do Sal','Portugal','PT','Alcacer do Sal (Portugal)',1,1,0),(1144,0,100398,'Alcala de Guadaira','Spain','ES','Alcala de Guadaira (Spain)',1,1,0),(1145,0,100399,'Alcala de Xivert','Spain','ES','Alcala de Xivert (Spain)',1,1,0),(1146,0,100400,'Alcala del Valle','Spain','ES','Alcala del Valle (Spain)',1,1,0),(1147,510,100401,'Alcanar','Spain','ES','Alcanar (Spain)',1,1,0),(1148,511,100402,'Alcanena','Portugal','PT','Alcanena (Portugal)',1,1,0),(1149,527,100403,'Alcorcon','Spain','ES','Alcorcon (Spain)',1,1,0),(1150,0,100404,'Alcova','United States of America','US','Alcova (United States of America)',1,1,0),(1151,0,100405,'Aldaia','Spain','ES','Aldaia (Spain)',1,1,0),(1152,0,100406,'Aldeia do Mato','Portugal','PT','Aldeia do Mato (Portugal)',1,1,0),(1153,562,100407,'Ales','France','FR','Ales (France)',1,1,0),(1154,563,100408,'Alessandria','Italy','IT','Alessandria (Italy)',1,1,0),(1155,0,100409,'Alexandrov','Russia','RU','Alexandrov (Russia)',1,1,0),(1156,0,100410,'Alf on Moselle','Germany','DE','Alf on Moselle (Germany)',1,1,0),(1157,581,100411,'Alfafar','Spain','ES','Alfafar (Spain)',1,1,0),(1158,0,100412,'Alfeld (Leine)','Germany','DE','Alfeld (Leine) (Germany)',1,1,0),(1159,599,100413,'Algar','Spain','ES','Algar (Spain)',1,1,0),(1160,0,100414,'Algermissen','Germany','DE','Algermissen (Germany)',1,1,0),(1161,610,100415,'Algona','United States of America','US','Algona (United States of America)',1,1,0),(1162,613,100416,'Algorfa','Spain','ES','Algorfa (Spain)',1,1,0),(1163,0,100417,'Algund','Italy','IT','Algund (Italy)',1,1,0),(1164,0,100418,'Alhama de Granada','Spain','ES','Alhama de Granada (Spain)',1,1,0),(1165,619,100419,'Alia','Italy','IT','Alia (Italy)',1,1,0),(1166,0,100421,'Alikampos','Greece','GR','Alikampos (Greece)',1,1,0),(1167,0,100422,'Aljubarrota','Portugal','PT','Aljubarrota (Portugal)',1,1,0),(1168,0,100423,'Allemans sur Dropt','France','FR','Allemans sur Dropt (France)',1,1,0),(1169,0,100424,'Allepuz','Spain','ES','Allepuz (Spain)',1,1,0),(1170,0,100425,'Alleringersleben','Germany','DE','Alleringersleben (Germany)',1,1,0),(1171,0,100426,'Ally','France','FR','Ally (France)',1,1,0),(1172,690,100427,'Alma','United States of America','US','Alma (United States of America)',1,1,0),(1173,0,100428,'Sipadan','Malaysia','MY','Sipadan (Malaysia)',1,1,0),(1174,0,100429,'108 Mile House','Canada','CA','108 Mile House (Canada)',1,1,0),(1175,25,100430,'Aalsmeer','Netherlands','NL','Aalsmeer (Netherlands)',1,1,0),(1176,0,100431,'Aarberg','Switzerland','CH','Aarberg (Switzerland)',1,1,0),(1177,31,100432,'Aarhus','Denmark','DK','Aarhus (Denmark)',1,1,0),(1178,0,100433,'Aarschot','Belgium','BE','Aarschot (Belgium)',1,1,0),(1179,50,100434,'Abbeyleix','Ireland','IE','Abbeyleix (Ireland)',1,1,0),(1180,59,100435,'Abejar','Spain','ES','Abejar (Spain)',1,1,0),(1181,0,100436,'Abel-Tasman-Nationalpark','New Zealand','NZ','Abel-Tasman-Nationalpark (New Zealand)',1,1,0),(1182,0,100437,'Abene','Senegal','SN','Abene (Senegal)',1,1,0),(1183,0,100438,'Aberdare','United Kingdom','UK','Aberdare (United Kingdom)',1,1,0),(1184,0,100439,'Aberdeen Harbour','Hong Kong','HK','Aberdeen Harbour (Hong Kong)',1,1,0),(1185,0,100440,'Aberdovey','United Kingdom','UK','Aberdovey (United Kingdom)',1,1,0),(1186,0,100441,'Abisko','Sweden','SE','Abisko (Sweden)',1,1,0),(1187,0,100442,'Aboyne','United Kingdom','UK','Aboyne (United Kingdom)',1,1,0),(1188,99,100443,'Absam','Austria','AT','Absam (Austria)',1,1,0),(1189,113,100444,'Acapulco','Mexico','MX','Acapulco (Mexico)',1,1,0),(1190,115,100445,'Acate','Italy','IT','Acate (Italy)',1,1,0),(1191,0,100446,'Accrington','United Kingdom','UK','Accrington (United Kingdom)',1,1,0),(1192,123,100447,'Acharavi','Greece','GR','Acharavi (Greece)',1,1,0),(1193,128,100448,'Achill Island','Ireland','IE','Achill Island (Ireland)',1,1,0),(1194,148,100449,'Acquedolci','Italy','IT','Acquedolci (Italy)',1,1,0),(1195,0,100450,'Ada Foah','Ghana','GH','Ada Foah (Ghana)',1,1,0),(1196,163,100451,'Adams','United States of America','US','Adams (United States of America)',1,1,0),(1197,169,100452,'Adare','Ireland','IE','Adare (Ireland)',1,1,0),(1198,0,100453,'Addison','United States of America','US','Addison (United States of America)',1,1,0),(1199,0,100454,'Advance','United States of America','US','Advance (United States of America)',1,1,0),(1200,0,100455,'Advocate Harbour','Canada','CA','Advocate Harbour (Canada)',1,1,0),(1201,0,100456,'Aegina Town','Greece','GR','Aegina Town (Greece)',1,1,0),(1202,0,100457,'Aesch BL','Switzerland','CH','Aesch BL (Switzerland)',1,1,0),(1203,0,100458,'Afers','Italy','IT','Afers (Italy)',1,1,0),(1204,215,100459,'Affi','Italy','IT','Affi (Italy)',1,1,0),(1205,0,100460,'Afif','Portugal','PT','Afif (Portugal)',1,1,0),(1206,221,100461,'Afton','United States of America','US','Afton (United States of America)',1,1,0),(1207,0,100462,'Agafay','Morocco','MA','Agafay (Morocco)',1,1,0),(1208,0,100463,'Agios Dimitrios',NULL,NULL,'Agios Dimitrios ()',1,1,0),(1209,0,100464,'Agios Gordios','Greece','GR','Agios Gordios (Greece)',1,1,0),(1210,0,100465,'Agios Ioannis','Greece','GR','Agios Ioannis (Greece)',1,1,0),(1211,0,100466,'Agios Isidoros','Greece','GR','Agios Isidoros (Greece)',1,1,0),(1212,0,100467,'Agios Kirykos','Greece','GR','Agios Kirykos (Greece)',1,1,0),(1213,0,100468,'Agios Stefanos','Greece','GR','Agios Stefanos (Greece)',1,1,0),(1214,263,100469,'Agno','Switzerland','CH','Agno (Switzerland)',1,1,0),(1215,274,100470,'Agropoli','Italy','IT','Agropoli (Italy)',1,1,0),(1216,281,100471,'Aguas Calientes','Peru','PE','Aguas Calientes (Peru)',1,1,0),(1217,282,100472,'Aguas de Lindoia','Brazil','BR','Aguas de Lindoia (Brazil)',1,1,0),(1218,0,100473,'Ahe-Tuamotu','French Polynesia','PF','Ahe-Tuamotu (French Polynesia)',1,1,0),(1219,295,100474,'Ahlbeck','Germany','DE','Ahlbeck (Germany)',1,1,0),(1220,0,100475,'Ahlefeld-Bistensee','Germany','DE','Ahlefeld-Bistensee (Germany)',1,1,0),(1221,0,100476,'Ahlen','Germany','DE','Ahlen (Germany)',1,1,0),(1222,299,100477,'Ahrensfelde','Germany','DE','Ahrensfelde (Germany)',1,1,0),(1223,0,100478,'Ahus','Sweden','SE','Ahus (Sweden)',1,1,0),(1224,315,100479,'Aiguamurcia','Spain','ES','Aiguamurcia (Spain)',1,1,0),(1225,317,100480,'Aigueblanche','France','FR','Aigueblanche (France)',1,1,0),(1226,319,100481,'Aigueperse','France','FR','Aigueperse (France)',1,1,0),(1227,323,100482,'Aiken','United States of America','US','Aiken (United States of America)',1,1,0),(1228,0,100483,'Aire-sur-la-Lys','France','FR','Aire-sur-la-Lys (France)',1,1,0),(1229,0,100484,'Aireys Inlet','Australia','AU','Aireys Inlet (Australia)',1,1,0),(1230,0,100485,'Aiterhofen','Germany','DE','Aiterhofen (Germany)',1,1,0),(1231,0,100486,'Aix- Les- Bains','France','FR','Aix- Les- Bains (France)',1,1,0),(1232,0,100487,'Aksu','Turkey','TR','Aksu (Turkey)',1,1,0),(1233,408,100488,'Akureyri','Iceland','IS','Akureyri (Iceland)',1,1,0),(1234,414,100489,'Al Areen','Bahrain','BH','Al Areen (Bahrain)',1,1,0),(1235,0,100490,'Al Barsha','United Arab Emirates','AE','Al Barsha (United Arab Emirates)',1,1,0),(1236,0,100491,'Al Khobar','Saudi Arabia','SA','Al Khobar (Saudi Arabia)',1,1,0),(1237,0,100492,'Al Mirfa','United Arab Emirates','AE','Al Mirfa (United Arab Emirates)',1,1,0),(1238,429,100493,'Alamogordo','United States of America','US','Alamogordo (United States of America)',1,1,0),(1239,0,100494,'Alanno','Italy','IT','Alanno (Italy)',1,1,0),(1240,439,100495,'Alarcon','Spain','ES','Alarcon (Spain)',1,1,0),(1241,0,100496,'Alas','Spain','ES','Alas (Spain)',1,1,0),(1242,453,100497,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1243,0,100498,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1244,467,100499,'Albergaria-a-Velha','Portugal','PT','Albergaria-a-Velha (Portugal)',1,1,0),(1245,0,100500,'Albernoa','Portugal','PT','Albernoa (Portugal)',1,1,0),(1246,497,100501,'Alboraya','Spain','ES','Alboraya (Spain)',1,1,0),(1247,499,100502,'Albufeira','Portugal','PT','Albufeira (Portugal)',1,1,0),(1248,0,100503,'Alcala la Real','Spain','ES','Alcala la Real (Spain)',1,1,0),(1249,512,100504,'Alcaniz','Spain','ES','Alcaniz (Spain)',1,1,0),(1250,525,100505,'Alcolea del Pinar','Spain','ES','Alcolea del Pinar (Spain)',1,1,0),(1251,0,100506,'Aldealengua','Spain','ES','Aldealengua (Spain)',1,1,0),(1252,0,100507,'Aldeanueva de la Vera','Spain','ES','Aldeanueva de la Vera (Spain)',1,1,0),(1253,541,100508,'Aldersbach','Germany','DE','Aldersbach (Germany)',1,1,0),(1254,0,100509,'Alderton',NULL,NULL,'Alderton ()',1,1,0),(1255,0,100510,'Alet les Bains','France','FR','Alet les Bains (France)',1,1,0),(1256,566,100511,'Alevia','Spain','ES','Alevia (Spain)',1,1,0),(1257,572,100512,'Alexandria','United States of America','US','Alexandria (United States of America)',1,1,0),(1258,0,100513,'Alexandria','United States of America','US','Alexandria (United States of America)',1,1,0),(1259,0,100514,'Alfenas','Brazil','BR','Alfenas (Brazil)',1,1,0),(1260,0,100515,'Alford','United Kingdom','UK','Alford (United Kingdom)',1,1,0),(1261,637,100516,'Alijo','Portugal','PT','Alijo (Portugal)',1,1,0),(1262,0,100517,'Alimini','Italy','IT','Alimini (Italy)',1,1,0),(1263,0,100518,'Alinda','Greece','GR','Alinda (Greece)',1,1,0),(1264,644,100519,'Alingsas','Sweden','SE','Alingsas (Sweden)',1,1,0),(1265,0,100520,'Aljezur','Portugal','PT','Aljezur (Portugal)',1,1,0),(1266,0,100521,'Allensford','United Kingdom','UK','Allensford (United Kingdom)',1,1,0),(1267,669,100522,'Allentown','United States of America','US','Allentown (United States of America)',1,1,0),(1268,0,100523,'Alma','United States of America','US','Alma (United States of America)',1,1,0),(1269,697,100524,'Almansa','Spain','ES','Almansa (Spain)',1,1,0),(1270,699,100525,'Almayate Bajo','Spain','ES','Almayate Bajo (Spain)',1,1,0),(1271,706,100526,'Almere','Netherlands','NL','Almere (Netherlands)',1,1,0),(1272,707,100527,'Almeria','Spain','ES','Almeria (Spain)',1,1,0),(1273,0,100528,'Almiri','Greece','GR','Almiri (Greece)',1,1,0),(1274,0,100529,'Almirida','Greece','GR','Almirida (Greece)',1,1,0),(1275,0,100530,'Almog','Israel','IL','Almog (Israel)',1,1,0),(1276,0,100531,'Alnmouth','United Kingdom','UK','Alnmouth (United Kingdom)',1,1,0),(1277,743,100532,'Alozaina','Spain','ES','Alozaina (Spain)',1,1,0),(1278,0,100533,'Alpujarra de la Sierra','Spain','ES','Alpujarra de la Sierra (Spain)',1,1,0),(1279,763,100534,'Alquezar','Spain','ES','Alquezar (Spain)',1,1,0),(1280,0,100535,'Redang','Malaysia','MY','Redang (Malaysia)',1,1,0),(1281,0,100536,'A Guarda','Spain','ES','A Guarda (Spain)',1,1,0),(1282,16,100537,'A Pobra de Trives','Spain','ES','A Pobra de Trives (Spain)',1,1,0),(1283,0,100538,'Aach (Hegau)','Germany','DE','Aach (Hegau) (Germany)',1,1,0),(1284,19,100539,'Aachen','Germany','DE','Aachen (Germany)',1,1,0),(1285,0,100540,'Aalden','Netherlands','NL','Aalden (Netherlands)',1,1,0),(1286,22,100541,'Aalen','Germany','DE','Aalen (Germany)',1,1,0),(1287,0,100542,'Aanekoski','Finland','FI','Aanekoski (Finland)',1,1,0),(1288,29,100543,'Aarburg','Switzerland','CH','Aarburg (Switzerland)',1,1,0),(1289,34,100544,'Aartselaar','Belgium','BE','Aartselaar (Belgium)',1,1,0),(1290,0,100545,'Abbateggio','Italy','IT','Abbateggio (Italy)',1,1,0),(1291,0,100546,'Abbeyfeale','Ireland','IE','Abbeyfeale (Ireland)',1,1,0),(1292,52,100547,'Abbiategrasso','Italy','IT','Abbiategrasso (Italy)',1,1,0),(1293,58,100548,'Abcoude','Netherlands','NL','Abcoude (Netherlands)',1,1,0),(1294,0,100549,'Abensberg','Germany','DE','Abensberg (Germany)',1,1,0),(1295,0,100550,'Abeokuta','Nigeria','NG','Abeokuta (Nigeria)',1,1,0),(1296,0,100551,'Abercraf','United Kingdom','UK','Abercraf (United Kingdom)',1,1,0),(1297,0,100552,'Aberdeen','United Kingdom','UK','Aberdeen (United Kingdom)',1,1,0),(1298,0,100553,'Aberdeen','United States of America','US','Aberdeen (United States of America)',1,1,0),(1299,0,100554,'Abergele','United Kingdom','UK','Abergele (United Kingdom)',1,1,0),(1300,85,100555,'Abetone','Italy','IT','Abetone (Italy)',1,1,0),(1301,0,100556,'Abilene','United States of America','US','Abilene (United States of America)',1,1,0),(1302,0,100557,'Abondance','France','FR','Abondance (France)',1,1,0),(1303,0,100558,'Abrest','France','FR','Abrest (France)',1,1,0),(1304,100,100559,'Absecon','United States of America','US','Absecon (United States of America)',1,1,0),(1305,108,100560,'Abuta','Japan','JP','Abuta (Japan)',1,1,0),(1306,0,100561,'Acadia National Park','United States of America','US','Acadia National Park (United States of America)',1,1,0),(1307,0,100562,'Achladies','Greece','GR','Achladies (Greece)',1,1,0),(1308,0,100563,'Aci Sant\'Antonio','Italy','IT','Aci Sant\'Antonio (Italy)',1,1,0),(1309,143,100564,'Acqualagna','Italy','IT','Acqualagna (Italy)',1,1,0),(1310,145,100565,'Acquappesa','Italy','IT','Acquappesa (Italy)',1,1,0),(1311,146,100566,'Acquasparta','Italy','IT','Acquasparta (Italy)',1,1,0),(1312,157,100567,'Acworth','United States of America','US','Acworth (United States of America)',1,1,0),(1313,178,100568,'Adel','United States of America','US','Adel (United States of America)',1,1,0),(1314,0,100569,'Adelaide River','Australia','AU','Adelaide River (Australia)',1,1,0),(1315,0,100570,'Adelshofen (Mittelfranken)','Germany','DE','Adelshofen (Mittelfranken) (Germany)',1,1,0),(1316,0,100571,'Adelsried','Germany','DE','Adelsried (Germany)',1,1,0),(1317,0,100572,'Affligem','Belgium','BE','Affligem (Belgium)',1,1,0),(1318,0,100573,'Afiesl','Austria','AT','Afiesl (Austria)',1,1,0),(1319,218,100574,'Afissos','Greece','GR','Afissos (Greece)',1,1,0),(1320,0,100575,'Afyonkarahisar','Turkey','TR','Afyonkarahisar (Turkey)',1,1,0),(1321,0,100576,'Ag. Georgios by Naxos-City','Greece','GR','Ag. Georgios by Naxos-City (Greece)',1,1,0),(1322,0,100577,'Agarone','Switzerland','CH','Agarone (Switzerland)',1,1,0),(1323,235,100579,'Agde','France','FR','Agde (France)',1,1,0),(1324,0,100580,'Agen-d\'Aveyron','France','FR','Agen-d\'Aveyron (France)',1,1,0),(1325,241,100581,'Agerola','Italy','IT','Agerola (Italy)',1,1,0),(1326,0,100582,'Agia Marina','Greece','GR','Agia Marina (Greece)',1,1,0),(1327,0,100583,'Agia Pelagia','Greece','GR','Agia Pelagia (Greece)',1,1,0),(1328,0,100584,'Agii Pantes','Greece','GR','Agii Pantes (Greece)',1,1,0),(1329,0,100585,'Agios Mamas','Greece','GR','Agios Mamas (Greece)',1,1,0),(1330,259,100586,'Agneaux','France','FR','Agneaux (France)',1,1,0),(1331,261,100587,'Agnetz','France','FR','Agnetz (France)',1,1,0),(1332,0,100588,'Agos-Vidalos','France','FR','Agos-Vidalos (France)',1,1,0),(1333,0,100590,'Agrari','Greece','GR','Agrari (Greece)',1,1,0),(1334,0,100591,'Agrate Conturbia','Italy','IT','Agrate Conturbia (Italy)',1,1,0),(1335,286,100592,'Agueda','Portugal','PT','Agueda (Portugal)',1,1,0),(1336,0,100593,'Aheloy','Bulgaria','BG','Aheloy (Bulgaria)',1,1,0),(1337,0,100594,'Ahipara','New Zealand','NZ','Ahipara (New Zealand)',1,1,0),(1338,0,100595,'Ahrdorf','Germany','DE','Ahrdorf (Germany)',1,1,0),(1339,298,100596,'Ahrensburg','Germany','DE','Ahrensburg (Germany)',1,1,0),(1340,0,100597,'Ahrntal','Italy','IT','Ahrntal (Italy)',1,1,0),(1341,305,100598,'Ahuy','France','FR','Ahuy (France)',1,1,0),(1342,0,100599,'Ai Ais','Namibia','NA','Ai Ais (Namibia)',1,1,0),(1343,318,100600,'Aiguefonde','France','FR','Aiguefonde (France)',1,1,0),(1344,0,100601,'Aigueleze-Rivieres','France','FR','Aigueleze-Rivieres (France)',1,1,0),(1345,0,100602,'Ain El Sukhna (Ain Soukhna)','Egypt','EG','Ain El Sukhna (Ain Soukhna) (Egypt)',1,1,0),(1346,348,100603,'Airway Heights','United States of America','US','Airway Heights (United States of America)',1,1,0),(1347,352,100604,'Ait Ben Haddou','Morocco','MA','Ait Ben Haddou (Morocco)',1,1,0),(1348,0,100605,'Aizarnazabal','Spain','ES','Aizarnazabal (Spain)',1,1,0),(1349,365,100606,'Ajijic','Mexico','MX','Ajijic (Mexico)',1,1,0),(1350,0,100607,'Akritochori','Greece','GR','Akritochori (Greece)',1,1,0),(1351,407,100608,'Akumal','Mexico','MX','Akumal (Mexico)',1,1,0),(1352,0,100609,'Alajar','Spain','ES','Alajar (Spain)',1,1,0),(1353,0,100610,'Alajero','Spain','ES','Alajero (Spain)',1,1,0),(1354,440,100611,'Alaro','Spain','ES','Alaro (Spain)',1,1,0),(1355,0,100612,'Alba Adriatica','Italy','IT','Alba Adriatica (Italy)',1,1,0),(1356,450,100613,'Albalate de Zorita','Spain','ES','Albalate de Zorita (Spain)',1,1,0),(1357,0,100614,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1358,0,100615,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1359,0,100616,'Albaret Ste.-Marie / La Garde','France','FR','Albaret Ste.-Marie / La Garde (France)',1,1,0),(1360,0,100617,'Albergen','Netherlands','NL','Albergen (Netherlands)',1,1,0),(1361,0,100618,'Albersdorf','Germany','DE','Albersdorf (Germany)',1,1,0),(1362,474,100619,'Albert Lea','United States of America','US','Albert Lea (United States of America)',1,1,0),(1363,479,100620,'Albertslund','Denmark','DK','Albertslund (Denmark)',1,1,0),(1364,484,100621,'Albi','France','FR','Albi (France)',1,1,0),(1365,491,100622,'Albir','Spain','ES','Albir (Spain)',1,1,0),(1366,495,100623,'Albon','France','FR','Albon (France)',1,1,0),(1367,0,100624,'Albons','Spain','ES','Albons (Spain)',1,1,0),(1368,502,100625,'Albuquerque','United States of America','US','Albuquerque (United States of America)',1,1,0),(1369,505,100626,'Alcabideche','Portugal','PT','Alcabideche (Portugal)',1,1,0),(1370,0,100627,'Alcala de los Gazules','Spain','ES','Alcala de los Gazules (Spain)',1,1,0),(1371,0,100628,'Alcala del Rio','Spain','ES','Alcala del Rio (Spain)',1,1,0),(1372,516,100629,'Alcaucin','Spain','ES','Alcaucin (Spain)',1,1,0),(1373,517,100630,'Alcaudete','Spain','ES','Alcaudete (Spain)',1,1,0),(1374,0,100631,'Aldein','Italy','IT','Aldein (Italy)',1,1,0),(1375,0,100632,'Aldenhoven','Germany','DE','Aldenhoven (Germany)',1,1,0),(1376,556,100633,'Alenquer','Portugal','PT','Alenquer (Portugal)',1,1,0),(1377,564,100634,'Alessano','Italy','IT','Alessano (Italy)',1,1,0),(1378,0,100635,'Alesund','Norway','NO','Alesund (Norway)',1,1,0),(1379,0,100636,'Alexandria','United Kingdom','UK','Alexandria (United Kingdom)',1,1,0),(1380,0,100637,'Alexandria Bay','United States of America','US','Alexandria Bay (United States of America)',1,1,0),(1381,578,100638,'Aley','Lebanon','LB','Aley (Lebanon)',1,1,0),(1382,7,100639,'6th of October City','Egypt','EG','6th of October City (Egypt)',1,1,0),(1383,0,100640,'Aach (bei Trier)','Germany','DE','Aach (bei Trier) (Germany)',1,1,0),(1384,0,100641,'Abadan','Iran','IR','Abadan (Iran)',1,1,0),(1385,40,100642,'Abano Terme','Italy','IT','Abano Terme (Italy)',1,1,0),(1386,42,100643,'Abashiri','Japan','JP','Abashiri (Japan)',1,1,0),(1387,45,100644,'Abbasanta','Italy','IT','Abbasanta (Italy)',1,1,0),(1388,0,100645,'Abela','Portugal','PT','Abela (Portugal)',1,1,0),(1389,0,100646,'Aberaeron','United Kingdom','UK','Aberaeron (United Kingdom)',1,1,0),(1390,92,100647,'Abiquiu','United States of America','US','Abiquiu (United States of America)',1,1,0),(1391,0,100648,'Abizanda','Spain','ES','Abizanda (Spain)',1,1,0),(1392,0,100649,'Abrahamhegy','Hungary','HU','Abrahamhegy (Hungary)',1,1,0),(1393,101,100650,'Abtenau','Austria','AT','Abtenau (Austria)',1,1,0),(1394,111,100651,'Acajutla','El Salvador','SV','Acajutla (El Salvador)',1,1,0),(1395,0,100652,'Ach','Austria','AT','Ach (Austria)',1,1,0),(1396,0,100653,'Aci Trezza','Italy','IT','Aci Trezza (Italy)',1,1,0),(1397,138,100654,'Acme','United States of America','US','Acme (United States of America)',1,1,0),(1398,154,100655,'Acton','Australia','AU','Acton (Australia)',1,1,0),(1399,159,100656,'Adair','United States of America','US','Adair (United States of America)',1,1,0),(1400,0,100657,'Adazi','Latvia','LV','Adazi (Latvia)',1,1,0),(1401,0,100658,'Addo Elephant National Park','South Africa','ZA','Addo Elephant National Park (South Africa)',1,1,0),(1402,0,100659,'Ademuz','Spain','ES','Ademuz (Spain)',1,1,0),(1403,189,100660,'Aden','Yemen','YE','Aden (Yemen)',1,1,0),(1404,191,100661,'Adendorf','Germany','DE','Adendorf (Germany)',1,1,0),(1405,200,100662,'Adra','Spain','ES','Adra (Spain)',1,1,0),(1406,0,100663,'Aesch','Switzerland','CH','Aesch (Switzerland)',1,1,0),(1407,0,100664,'Afitos (Athitos)','Greece','GR','Afitos (Athitos) (Greece)',1,1,0),(1408,0,100665,'Aflenz','Austria','AT','Aflenz (Austria)',1,1,0),(1409,219,100666,'Afragola','Italy','IT','Afragola (Italy)',1,1,0),(1410,233,100668,'Agay','France','FR','Agay (France)',1,1,0),(1411,237,100669,'Agdz','Morocco','MA','Agdz (Morocco)',1,1,0),(1412,242,100670,'Agerskov','Denmark','DK','Agerskov (Denmark)',1,1,0),(1413,0,100671,'Agia Fotini','Greece','GR','Agia Fotini (Greece)',1,1,0),(1414,0,100672,'Agia Galini','Greece','GR','Agia Galini (Greece)',1,1,0),(1415,0,100673,'Agios Markos','Greece','GR','Agios Markos (Greece)',1,1,0),(1416,0,100674,'Aglasun','Turkey','TR','Aglasun (Turkey)',1,1,0),(1417,258,100675,'Agliano Terme','Italy','IT','Agliano Terme (Italy)',1,1,0),(1418,0,100676,'Agon - Coutainville','France','FR','Agon - Coutainville (France)',1,1,0),(1419,0,100677,'Agordo','Italy','IT','Agordo (Italy)',1,1,0),(1420,265,100678,'Agoura Hills','United States of America','US','Agoura Hills (United States of America)',1,1,0),(1421,279,100679,'Aguadilla','Puerto Rico','PR','Aguadilla (Puerto Rico)',1,1,0),(1422,0,100680,'Aguilar de Campoo','Spain','ES','Aguilar de Campoo (Spain)',1,1,0),(1423,0,100681,'Aia','Spain','ES','Aia (Spain)',1,1,0),(1424,0,100682,'Aigen im Muhlkreis','Austria','AT','Aigen im Muhlkreis (Austria)',1,1,0),(1425,332,100683,'Ainhoa','France','FR','Ainhoa (France)',1,1,0),(1426,336,100684,'Ainsworth','United States of America','US','Ainsworth (United States of America)',1,1,0),(1427,0,100685,'Aitrang','Germany','DE','Aitrang (Germany)',1,1,0),(1428,366,100687,'Ajman','United Arab Emirates','AE','Ajman (United Arab Emirates)',1,1,0),(1429,0,100688,'Akanin\'ny Nofy','Madagascar','MG','Akanin\'ny Nofy (Madagascar)',1,1,0),(1430,0,100690,'Akranes','Iceland','IS','Akranes (Iceland)',1,1,0),(1431,0,100691,'Aksum','Ethiopia','ET','Aksum (Ethiopia)',1,1,0),(1432,412,100692,'Al Ain','United Arab Emirates','AE','Al Ain (United Arab Emirates)',1,1,0),(1433,0,100693,'Alaminos','Cyprus','CY','Alaminos (Cyprus)',1,1,0),(1434,428,100694,'Alamo','United States of America','US','Alamo (United States of America)',1,1,0),(1435,431,100695,'Alamosa','United States of America','US','Alamosa (United States of America)',1,1,0),(1436,0,100696,'Alange','Spain','ES','Alange (Spain)',1,1,0),(1437,438,100697,'Alaquas','Spain','ES','Alaquas (Spain)',1,1,0),(1438,0,100698,'Alata','France','FR','Alata (France)',1,1,0),(1439,0,100699,'Alba di Canazei','Italy','IT','Alba di Canazei (Italy)',1,1,0),(1440,0,100700,'Albac','Romania','RO','Albac (Romania)',1,1,0),(1441,0,100701,'Alban','France','FR','Alban (France)',1,1,0),(1442,0,100702,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1443,0,100703,'Albany','United States of America','US','Albany (United States of America)',1,1,0),(1444,473,100704,'Albert','France','FR','Albert (France)',1,1,0),(1445,476,100705,'Alberton','South Africa','ZA','Alberton (South Africa)',1,1,0),(1446,0,100706,'Albignasego','Italy','IT','Albignasego (Italy)',1,1,0),(1447,0,100707,'Alburquerque','Spain','ES','Alburquerque (Spain)',1,1,0),(1448,0,100708,'Alcala de la Selva','Spain','ES','Alcala de la Selva (Spain)',1,1,0),(1449,0,100709,'Alcalar','Portugal','PT','Alcalar (Portugal)',1,1,0),(1450,0,100710,'Alcaracejos','Spain','ES','Alcaracejos (Spain)',1,1,0),(1451,0,100711,'Alcaraz','Spain','ES','Alcaraz (Spain)',1,1,0),(1452,521,100712,'Alcoa','United States of America','US','Alcoa (United States of America)',1,1,0),(1453,0,100713,'Alcobaca','Brazil','BR','Alcobaca (Brazil)',1,1,0),(1454,0,100714,'Alcover','Spain','ES','Alcover (Spain)',1,1,0),(1455,0,100715,'Alderley Edge','United Kingdom','UK','Alderley Edge (United Kingdom)',1,1,0),(1456,547,100716,'Aldrans','Austria','AT','Aldrans (Austria)',1,1,0),(1457,554,100717,'Alella','Spain','ES','Alella (Spain)',1,1,0),(1458,0,100718,'Aletshausen','Germany','DE','Aletshausen (Germany)',1,1,0),(1459,0,100719,'Alex','France','FR','Alex (France)',1,1,0),(1460,0,100720,'Alexandria','United States of America','US','Alexandria (United States of America)',1,1,0),(1461,0,100721,'Alexisbad','Germany','DE','Alexisbad (Germany)',1,1,0),(1462,582,100722,'Alfajarin','Spain','ES','Alfajarin (Spain)',1,1,0),(1463,0,100723,'Alfeld (Mittelfranken)','Germany','DE','Alfeld (Mittelfranken) (Germany)',1,1,0),(1464,591,100724,'Alfortville','France','FR','Alfortville (France)',1,1,0),(1465,0,100725,'Alfter','Germany','DE','Alfter (Germany)',1,1,0),(1466,0,100726,'Algarrobo Costa','Spain','ES','Algarrobo Costa (Spain)',1,1,0),(1467,630,100727,'Alice Springs','Australia','AU','Alice Springs (Australia)',1,1,0),(1468,0,100728,'Alixan','France','FR','Alixan (France)',1,1,0),(1469,653,100729,'Allanche','France','FR','Allanche (France)',1,1,0),(1470,0,100730,'Alland','Austria','AT','Alland (Austria)',1,1,0),(1471,0,100731,'Alle JU','Switzerland','CH','Alle JU (Switzerland)',1,1,0),(1472,657,100732,'Allegan','United States of America','US','Allegan (United States of America)',1,1,0),(1473,673,100733,'Allershausen','Germany','DE','Allershausen (Germany)',1,1,0),(1474,0,100734,'Allesley','United Kingdom','UK','Allesley (United Kingdom)',1,1,0),(1475,0,100735,'Alle-sur-Semois','Belgium','BE','Alle-sur-Semois (Belgium)',1,1,0),(1476,681,100736,'Alliance','United States of America','US','Alliance (United States of America)',1,1,0),(1477,0,100737,'Allmannshofen','Germany','DE','Allmannshofen (Germany)',1,1,0),(1478,0,100738,'Allmendingen','Germany','DE','Allmendingen (Germany)',1,1,0),(1479,0,100739,'Allmersbach im Tal','Germany','DE','Allmersbach im Tal (Germany)',1,1,0),(1480,693,100741,'Almaden','Spain','ES','Almaden (Spain)',1,1,0),(1481,694,100742,'Almagro','Spain','ES','Almagro (Spain)',1,1,0),(1482,704,100743,'Almen','Netherlands','NL','Almen (Netherlands)',1,1,0),(1483,0,100744,'Almenara','Spain','ES','Almenara (Spain)',1,1,0),(1484,0,100745,'Almenno San Salvatore','Italy','IT','Almenno San Salvatore (Italy)',1,1,0),(1485,0,100746,'Almiros','Greece','GR','Almiros (Greece)',1,1,0),(1486,738,100747,'Alora','Spain','ES','Alora (Spain)',1,1,0),(1487,745,100748,'Alpbach','Austria','AT','Alpbach (Austria)',1,1,0),(1488,761,100749,'Alpirsbach','Germany','DE','Alpirsbach (Germany)',1,1,0),(1489,0,100750,'Rawa','Malaysia','MY','Rawa (Malaysia)',1,1,0),(1490,0,100751,'Sibu Tengah','Malaysia','MY','Sibu Tengah (Malaysia)',1,1,0),(1491,0,100752,'’s-Heerenberg','Netherlands','NL','’s-Heerenberg (Netherlands)',1,1,0),(1492,20,100753,'Aalbaek','Denmark','DK','Aalbaek (Denmark)',1,1,0),(1493,0,100754,'Abbadia di Montepulciano','Italy','IT','Abbadia di Montepulciano (Italy)',1,1,0),(1494,0,100755,'Abenra','Denmark','DK','Abenra (Denmark)',1,1,0),(1495,0,100756,'Aberdeen','United States of America','US','Aberdeen (United States of America)',1,1,0),(1496,0,100757,'Aberlady','United Kingdom','UK','Aberlady (United Kingdom)',1,1,0),(1497,81,100758,'Abersee','Austria','AT','Abersee (Austria)',1,1,0),(1498,0,100759,'Abidjan','Ivory Coast','CI','Abidjan (Ivory Coast)',1,1,0),(1499,0,100760,'Abingdon','United Kingdom','UK','Abingdon (United Kingdom)',1,1,0),(1500,94,100761,'Ablitas','Spain','ES','Ablitas (Spain)',1,1,0),(1501,0,100762,'Abries','France','FR','Abries (France)',1,1,0),(1502,0,100763,'Abtswind','Germany','DE','Abtswind (Germany)',1,1,0),(1503,102,100764,'Abtwil','Switzerland','CH','Abtwil (Switzerland)',1,1,0),(1504,105,100765,'Abu Dhabi','United Arab Emirates','AE','Abu Dhabi (United Arab Emirates)',1,1,0),(1505,117,100766,'Acciaroli','Italy','IT','Acciaroli (Italy)',1,1,0),(1506,0,100767,'Acco','Israel','IL','Acco (Israel)',1,1,0),(1507,119,100768,'Accra','Ghana','GH','Accra (Ghana)',1,1,0),(1508,125,100769,'Achenkirch','Austria','AT','Achenkirch (Austria)',1,1,0),(1509,0,100770,'Acquacalda di Lipari','Italy','IT','Acquacalda di Lipari (Italy)',1,1,0),(1510,144,100771,'Acquapendente','Italy','IT','Acquapendente (Italy)',1,1,0),(1511,149,100772,'Acqui Terme','Italy','IT','Acqui Terme (Italy)',1,1,0),(1512,0,100773,'Acquila','Switzerland','CH','Acquila (Switzerland)',1,1,0),(1513,0,100774,'Adelianos Kambos','Greece','GR','Adelianos Kambos (Greece)',1,1,0),(1514,187,100775,'Adelsdorf','Germany','DE','Adelsdorf (Germany)',1,1,0),(1515,203,100776,'Adrian','United States of America','US','Adrian (United States of America)',1,1,0),(1516,0,100777,'Adzumino','Japan','JP','Adzumino (Japan)',1,1,0),(1517,0,100778,'Affalterbach','Germany','DE','Affalterbach (Germany)',1,1,0),(1518,225,100779,'Agadir','Morocco','MA','Agadir (Morocco)',1,1,0),(1519,0,100780,'Agger','Denmark','DK','Agger (Denmark)',1,1,0),(1520,0,100781,'Aghadowey','United Kingdom','UK','Aghadowey (United Kingdom)',1,1,0),(1521,0,100782,'Agia Efimia','Greece','GR','Agia Efimia (Greece)',1,1,0),(1522,0,100783,'Agia Paraskevi','Greece','GR','Agia Paraskevi (Greece)',1,1,0),(1523,0,100784,'Agiokampos','Greece','GR','Agiokampos (Greece)',1,1,0),(1524,255,100785,'Agios Andreas','Greece','GR','Agios Andreas (Greece)',1,1,0),(1525,0,100786,'Agios Georgios','Cyprus','CY','Agios Georgios (Cyprus)',1,1,0),(1526,0,100787,'Agios Konstantinos','Greece','GR','Agios Konstantinos (Greece)',1,1,0),(1527,0,100788,'Agios Leontas','Greece','GR','Agios Leontas (Greece)',1,1,0),(1528,0,100789,'Agios Matheos','Greece','GR','Agios Matheos (Greece)',1,1,0),(1529,0,100790,'Agios Pavlos','Greece','GR','Agios Pavlos (Greece)',1,1,0),(1530,0,100791,'Agios Petros','Greece','GR','Agios Petros (Greece)',1,1,0),(1531,0,100792,'Agios Prokopios','Greece','GR','Agios Prokopios (Greece)',1,1,0),(1532,0,100793,'Ago Bay','Japan','JP','Ago Bay (Japan)',1,1,0),(1533,0,100794,'Agolada','Spain','ES','Agolada (Spain)',1,1,0),(1534,280,100795,'Aguadulce','Spain','ES','Aguadulce (Spain)',1,1,0),(1535,0,100796,'Agueda del Caudillo','Spain','ES','Agueda del Caudillo (Spain)',1,1,0),(1536,0,100798,'Ahorntal','Germany','DE','Ahorntal (Germany)',1,1,0),(1537,0,100799,'Aigen im Ennstal','Austria','AT','Aigen im Ennstal (Austria)',1,1,0),(1538,327,100800,'Aime','France','FR','Aime (France)',1,1,0),(1539,329,100801,'Ain Draham','Tunisia','TN','Ain Draham (Tunisia)',1,1,0),(1540,0,100802,'Ainet de Cardos','Spain','ES','Ainet de Cardos (Spain)',1,1,0),(1541,0,100803,'Airasca','Italy','IT','Airasca (Italy)',1,1,0),(1542,0,100805,'Akernes - Aseral','Norway','NO','Akernes - Aseral (Norway)',1,1,0),(1543,379,100806,'Akersberga','Sweden','SE','Akersberga (Sweden)',1,1,0),(1544,0,100807,'Akrata','Greece','GR','Akrata (Greece)',1,1,0),(1545,399,100808,'Akron','United States of America','US','Akron (United States of America)',1,1,0),(1546,400,100809,'Akrotiri','Greece','GR','Akrotiri (Greece)',1,1,0),(1547,405,100810,'Aktobe','Kazakhstan','KZ','Aktobe (Kazakhstan)',1,1,0),(1548,0,100811,'Akyarlar','Turkey','TR','Akyarlar (Turkey)',1,1,0),(1549,0,100812,'Al Agah','United Arab Emirates','AE','Al Agah (United Arab Emirates)',1,1,0),(1550,0,100813,'Al Bukayriyah','Saudi Arabia','SA','Al Bukayriyah (Saudi Arabia)',1,1,0),(1551,430,100814,'Alamos','Mexico','MX','Alamos (Mexico)',1,1,0),(1552,433,100815,'Alano Di Piave','Italy','IT','Alano Di Piave (Italy)',1,1,0),(1553,435,100816,'Alanya','Turkey','TR','Alanya (Turkey)',1,1,0),(1554,0,100817,'Alanya-Kleopatra','Turkey','TR','Alanya-Kleopatra (Turkey)',1,1,0),(1555,448,100818,'Albacete','Spain','ES','Albacete (Spain)',1,1,0),(1556,454,100819,'Albany','Australia','AU','Albany (Australia)',1,1,0),(1557,0,100820,'Albanya','Spain','ES','Albanya (Spain)',1,1,0),(1558,0,100821,'Alberschwende','Austria','AT','Alberschwende (Austria)',1,1,0),(1559,478,100822,'Alberton','Canada','CA','Alberton (Canada)',1,1,0),(1560,0,100823,'Albertville','United States of America','US','Albertville (United States of America)',1,1,0),(1561,486,100824,'Albiez-Montrond','France','FR','Albiez-Montrond (France)',1,1,0),(1562,489,100825,'Albion','United States of America','US','Albion (United States of America)',1,1,0),(1563,493,100826,'Albissola Marina','Italy','IT','Albissola Marina (Italy)',1,1,0),(1564,0,100827,'Albury','United Kingdom','UK','Albury (United Kingdom)',1,1,0),(1565,507,100828,'Alcala','Spain','ES','Alcala (Spain)',1,1,0),(1566,514,100829,'Alcantara','Spain','ES','Alcantara (Spain)',1,1,0),(1567,522,100830,'Alcobaca','Portugal','PT','Alcobaca (Portugal)',1,1,0),(1568,523,100831,'Alcobendas','Spain','ES','Alcobendas (Spain)',1,1,0),(1569,0,100832,'Alcochete','Portugal','PT','Alcochete (Portugal)',1,1,0),(1570,529,100833,'Alcoutim','Portugal','PT','Alcoutim (Portugal)',1,1,0),(1571,0,100834,'Alcoy','Philippines','PH','Alcoy (Philippines)',1,1,0),(1572,0,100835,'Alcuneza','Spain','ES','Alcuneza (Spain)',1,1,0),(1573,0,100836,'Aldershot','United Kingdom','UK','Aldershot (United Kingdom)',1,1,0),(1574,0,100837,'Alegrete','Brazil','BR','Alegrete (Brazil)',1,1,0),(1575,558,100838,'Alenya','France','FR','Alenya (France)',1,1,0),(1576,571,100839,'Alexandra','New Zealand','NZ','Alexandra (New Zealand)',1,1,0),(1577,0,100840,'Alfandega da Fe','Portugal','PT','Alfandega da Fe (Portugal)',1,1,0),(1578,589,100841,'Alfes','Spain','ES','Alfes (Spain)',1,1,0),(1579,590,100842,'Alfiano Natta','Italy','IT','Alfiano Natta (Italy)',1,1,0),(1580,0,100843,'Algadia','Spain','ES','Algadia (Spain)',1,1,0),(1581,601,100844,'Algarinejo','Spain','ES','Algarinejo (Spain)',1,1,0),(1582,618,100845,'Ali Terme','Italy','IT','Ali Terme (Italy)',1,1,0),(1583,622,100846,'Alicante','Spain','ES','Alicante (Spain)',1,1,0),(1584,643,100847,'Alimos','Greece','GR','Alimos (Greece)',1,1,0),(1585,648,100848,'Alken','Germany','DE','Alken (Germany)',1,1,0),(1586,0,100849,'Alkham','United Kingdom','UK','Alkham (United Kingdom)',1,1,0),(1587,0,100850,'Allerford','United Kingdom','UK','Allerford (United Kingdom)',1,1,0),(1588,672,100851,'Allersberg','Germany','DE','Allersberg (Germany)',1,1,0),(1589,0,100852,'Allevard - les - Bains','France','FR','Allevard - les - Bains (France)',1,1,0),(1590,684,100853,'Allinge','Denmark','DK','Allinge (Denmark)',1,1,0),(1591,685,100854,'Alliste','Italy','IT','Alliste (Italy)',1,1,0),(1592,686,100855,'Alliston','Canada','CA','Alliston (Canada)',1,1,0),(1593,0,100856,'Alloa','United Kingdom','UK','Alloa (United Kingdom)',1,1,0),(1594,0,100857,'Altavilla Vicentina','Italy','IT','Altavilla Vicentina (Italy)',1,1,0),(1595,789,100858,'Altavista','United States of America','US','Altavista (United States of America)',1,1,0),(1596,798,100859,'Altenburg','Germany','DE','Altenburg (Germany)',1,1,0),(1597,0,100860,'Altenhof','Germany','DE','Altenhof (Germany)',1,1,0),(1598,0,100861,'Alterode','Germany','DE','Alterode (Germany)',1,1,0),(1599,0,100862,'Altfraunhofen','Germany','DE','Altfraunhofen (Germany)',1,1,0),(1600,0,100863,'Althuttendorf','Germany','DE','Althuttendorf (Germany)',1,1,0),(1601,0,100864,'Altlandsberg','Germany','DE','Altlandsberg (Germany)',1,1,0),(1602,817,100865,'Altomonte','Italy','IT','Altomonte (Italy)',1,1,0),(1603,0,100866,'Altrei','Italy','IT','Altrei (Italy)',1,1,0),(1604,0,100867,'Altron','Spain','ES','Altron (Spain)',1,1,0),(1605,0,100868,'Aluthgama','Sri Lanka','LK','Aluthgama (Sri Lanka)',1,1,0),(1606,834,100869,'Alva','United States of America','US','Alva (United States of America)',1,1,0),(1607,839,100870,'Alvdalen','Sweden','SE','Alvdalen (Sweden)',1,1,0),(1608,844,100871,'Alvignac','France','FR','Alvignac (France)',1,1,0),(1609,0,100872,'Alvsbyn','Sweden','SE','Alvsbyn (Sweden)',1,1,0),(1610,0,100873,'Alwalton','United Kingdom','UK','Alwalton (United Kingdom)',1,1,0),(1611,0,100874,'Alxa League','China','CN','Alxa League (China)',1,1,0),(1612,0,100875,'Alzano Lombardo','Italy','IT','Alzano Lombardo (Italy)',1,1,0),(1613,860,100876,'Amador City','United States of America','US','Amador City (United States of America)',1,1,0),(1614,0,100877,'Amamoor','Australia','AU','Amamoor (Australia)',1,1,0),(1615,0,100878,'Amargosa','Brazil','BR','Amargosa (Brazil)',1,1,0),(1616,880,100879,'Amargosa Valley','United States of America','US','Amargosa Valley (United States of America)',1,1,0),(1617,0,100880,'Amatrice','Italy','IT','Amatrice (Italy)',1,1,0),(1618,893,100882,'Ambergris Caye','Belize','BZ','Ambergris Caye (Belize)',1,1,0),(1619,0,100883,'Amberieux','France','FR','Amberieux (France)',1,1,0),(1620,0,100884,'Ambt Delden','Netherlands','NL','Ambt Delden (Netherlands)',1,1,0),(1621,0,100885,'America','Netherlands','NL','America (Netherlands)',1,1,0),(1622,0,100886,'American Fork','United States of America','US','American Fork (United States of America)',1,1,0),(1623,0,100887,'Amfiklia','Greece','GR','Amfiklia (Greece)',1,1,0),(1624,931,100888,'Amherst','United States of America','US','Amherst (United States of America)',1,1,0),(1625,0,100889,'Amlach','Austria','AT','Amlach (Austria)',1,1,0),(1626,0,100890,'Amoneburg','Germany','DE','Amoneburg (Germany)',1,1,0),(1627,0,100891,'Amparo','Brazil','BR','Amparo (Brazil)',1,1,0),(1628,0,100892,'Anaxos','Greece','GR','Anaxos (Greece)',1,1,0),(1629,0,100893,'Andechs','Germany','DE','Andechs (Germany)',1,1,0),(1630,0,100894,'Andeer','Switzerland','CH','Andeer (Switzerland)',1,1,0),(1631,0,100895,'Andijk','Netherlands','NL','Andijk (Netherlands)',1,1,0),(1632,0,100896,'Andros','Bahamas','BS','Andros (Bahamas)',1,1,0),(1633,1052,100897,'Angel Fire','United States of America','US','Angel Fire (United States of America)',1,1,0),(1634,0,100898,'Angkor','Cambodia','KH','Angkor (Cambodia)',1,1,0),(1635,0,100899,'Angles','France','FR','Angles (France)',1,1,0),(1636,0,100900,'Angmering','United Kingdom','UK','Angmering (United Kingdom)',1,1,0),(1637,0,100901,'Ankeveen','Netherlands','NL','Ankeveen (Netherlands)',1,1,0),(1638,0,100902,'Anklam-Bomitz','Germany','DE','Anklam-Bomitz (Germany)',1,1,0),(1639,1106,100903,'Anna','United States of America','US','Anna (United States of America)',1,1,0),(1640,1109,100904,'Annaberg','Austria','AT','Annaberg (Austria)',1,1,0),(1641,0,100905,'Annapolis Junction','United States of America','US','Annapolis Junction (United States of America)',1,1,0),(1642,1121,100906,'Annemasse','France','FR','Annemasse (France)',1,1,0),(1643,1125,100907,'Annonay','France','FR','Annonay (France)',1,1,0),(1644,0,100908,'Ano Garouna','Greece','GR','Ano Garouna (Greece)',1,1,0),(1645,0,100909,'Ano Vouves','Greece','GR','Ano Vouves (Greece)',1,1,0),(1646,0,100910,'Ansan','South Korea','KR','Ansan (South Korea)',1,1,0),(1647,0,100911,'Ansana','Italy','IT','Ansana (Italy)',1,1,0),(1648,1139,100912,'Ansedonia','Italy','IT','Ansedonia (Italy)',1,1,0),(1649,1142,100913,'Anshun','China','CN','Anshun (China)',1,1,0),(1650,0,100914,'Antholz','Italy','IT','Antholz (Italy)',1,1,0),(1651,1162,100915,'Antigua','Spain','ES','Antigua (Spain)',1,1,0),(1652,1176,100916,'Antiparos','Greece','GR','Antiparos (Greece)',1,1,0),(1653,0,100917,'Antrenas','France','FR','Antrenas (France)',1,1,0),(1654,1194,100918,'Anyer','Indonesia','ID','Anyer (Indonesia)',1,1,0),(1655,0,100919,'Anyksciai','Lithuania','LT','Anyksciai (Lithuania)',1,1,0),(1656,1209,100920,'Apalachin','United States of America','US','Apalachin (United States of America)',1,1,0),(1657,1214,100921,'Apeldoorn','Netherlands','NL','Apeldoorn (Netherlands)',1,1,0),(1658,1215,100922,'Apelern','Germany','DE','Apelern (Germany)',1,1,0),(1659,0,100923,'Apenburg-Winterfeld','Germany','DE','Apenburg-Winterfeld (Germany)',1,1,0),(1660,0,100924,'Aperi','Greece','GR','Aperi (Greece)',1,1,0),(1661,1219,100925,'Apia','Samoa','WS','Apia (Samoa)',1,1,0),(1662,0,100926,'Appeldorn','Germany','DE','Appeldorn (Germany)',1,1,0),(1663,1230,100927,'Appenzell','Switzerland','CH','Appenzell (Switzerland)',1,1,0),(1664,0,100928,'Appin','United Kingdom','UK','Appin (United Kingdom)',1,1,0),(1665,0,100929,'Appleby Magna','United Kingdom','UK','Appleby Magna (United Kingdom)',1,1,0),(1666,1241,100930,'Aprica','Italy','IT','Aprica (Italy)',1,1,0),(1667,0,100931,'Aptera','Greece','GR','Aptera (Greece)',1,1,0),(1668,1258,100932,'Aracena','Spain','ES','Aracena (Spain)',1,1,0),(1669,1270,100933,'Aranjuez','Spain','ES','Aranjuez (Spain)',1,1,0),(1670,0,100934,'Arao','Japan','JP','Arao (Japan)',1,1,0),(1671,1280,100935,'Ararat','Australia','AU','Ararat (Australia)',1,1,0),(1672,1283,100936,'Araxa','Brazil','BR','Araxa (Brazil)',1,1,0),(1673,0,100937,'Arbucies','Spain','ES','Arbucies (Spain)',1,1,0),(1674,0,100938,'Arcais','France','FR','Arcais (France)',1,1,0),(1675,0,100939,'Arcille','Italy','IT','Arcille (Italy)',1,1,0),(1676,1334,100940,'Ardeche','France','FR','Ardeche (France)',1,1,0),(1677,1341,100941,'Ardez','Switzerland','CH','Ardez (Switzerland)',1,1,0),(1678,1363,100942,'Arendal','Norway','NO','Arendal (Norway)',1,1,0),(1679,1383,100943,'Argentat','France','FR','Argentat (France)',1,1,0),(1680,1391,100944,'Argonos','Spain','ES','Argonos (Spain)',1,1,0),(1681,0,100945,'Aria','Greece','GR','Aria (Greece)',1,1,0),(1682,0,100946,'Aricera','Portugal','PT','Aricera (Portugal)',1,1,0),(1683,0,100947,'Arillas','Greece','GR','Arillas (Greece)',1,1,0),(1684,1415,100948,'Arkadelphia','United States of America','US','Arkadelphia (United States of America)',1,1,0),(1685,1423,100949,'Arkoudi','Greece','GR','Arkoudi (Greece)',1,1,0),(1686,1439,100950,'Armeni','Greece','GR','Armeni (Greece)',1,1,0),(1687,0,100951,'Armuna de Almanzora','Spain','ES','Armuna de Almanzora (Spain)',1,1,0),(1688,0,100952,'Armutalan','Turkey','TR','Armutalan (Turkey)',1,1,0),(1689,1452,100953,'Arnay-le-Duc','France','FR','Arnay-le-Duc (France)',1,1,0),(1690,1461,100954,'Arnes','Spain','ES','Arnes (Spain)',1,1,0),(1691,1471,100955,'Arnsberg','Germany','DE','Arnsberg (Germany)',1,1,0),(1692,0,100956,'Arradon','France','FR','Arradon (France)',1,1,0),(1693,1497,100957,'Arromanches-Les-Bains','France','FR','Arromanches-Les-Bains (France)',1,1,0),(1694,0,100958,'Arronches','Portugal','PT','Arronches (Portugal)',1,1,0),(1695,0,100959,'Arroyo de la Encomienda','Spain','ES','Arroyo de la Encomienda (Spain)',1,1,0),(1696,0,100960,'Ars-sur-Formans','France','FR','Ars-sur-Formans (France)',1,1,0),(1697,1510,100961,'Arteaga','Mexico','MX','Arteaga (Mexico)',1,1,0),(1698,1513,100962,'Artesia','United States of America','US','Artesia (United States of America)',1,1,0),(1699,1516,100963,'Arthur\'s Pass','New Zealand','NZ','Arthur\'s Pass (New Zealand)',1,1,0),(1700,0,100964,'Arthur\'s Point','New Zealand','NZ','Arthur\'s Point (New Zealand)',1,1,0),(1701,1525,100965,'Artvin','Turkey','TR','Artvin (Turkey)',1,1,0),(1702,0,100966,'Arzamas','Russia','RU','Arzamas (Russia)',1,1,0),(1703,1560,100967,'Aschau','Germany','DE','Aschau (Germany)',1,1,0),(1704,0,100968,'Asco','France','FR','Asco (France)',1,1,0),(1705,0,100969,'Ashford','United Kingdom','UK','Ashford (United Kingdom)',1,1,0),(1706,0,100970,'Ashington','United Kingdom','UK','Ashington (United Kingdom)',1,1,0),(1707,0,100971,'Altenstadt','Germany','DE','Altenstadt (Germany)',1,1,0),(1708,808,100972,'Altillac','France','FR','Altillac (France)',1,1,0),(1709,0,100973,'Altnau','Switzerland','CH','Altnau (Switzerland)',1,1,0),(1710,0,100974,'Alton','United Kingdom','UK','Alton (United Kingdom)',1,1,0),(1711,820,100975,'Alton','Canada','CA','Alton (Canada)',1,1,0),(1712,825,100976,'Altopascio','Italy','IT','Altopascio (Italy)',1,1,0),(1713,0,100977,'al-\'Ula','Saudi Arabia','SA','al-\'Ula (Saudi Arabia)',1,1,0),(1714,848,100978,'Alvito','Portugal','PT','Alvito (Portugal)',1,1,0),(1715,857,100979,'Alzey','Germany','DE','Alzey (Germany)',1,1,0),(1716,0,100980,'Am Dobrock','Germany','DE','Am Dobrock (Germany)',1,1,0),(1717,870,100981,'Amal','Sweden','SE','Amal (Sweden)',1,1,0),(1718,873,100982,'Amaliada','Greece','GR','Amaliada (Greece)',1,1,0),(1719,875,100983,'Amana','United States of America','US','Amana (United States of America)',1,1,0),(1720,877,100984,'Amantea','Italy','IT','Amantea (Italy)',1,1,0),(1721,879,100985,'Amares','Portugal','PT','Amares (Portugal)',1,1,0),(1722,0,100986,'Ambalangoda','Sri Lanka','LK','Ambalangoda (Sri Lanka)',1,1,0),(1723,0,100987,'Amealco','Mexico','MX','Amealco (Mexico)',1,1,0),(1724,916,100988,'Amendolara','Italy','IT','Amendolara (Italy)',1,1,0),(1725,0,100989,'Amerang','Germany','DE','Amerang (Germany)',1,1,0),(1726,928,100990,'Amesbury','United States of America','US','Amesbury (United States of America)',1,1,0),(1727,0,100991,'Ammassalik','Greenland','GL','Ammassalik (Greenland)',1,1,0),(1728,0,100992,'Ammoni','Greece','GR','Ammoni (Greece)',1,1,0),(1729,954,100993,'Amorebieta','Spain','ES','Amorebieta (Spain)',1,1,0),(1730,961,100994,'Amoudara','Greece','GR','Amoudara (Greece)',1,1,0),(1731,0,100995,'Amoudi','Greece','GR','Amoudi (Greece)',1,1,0),(1732,970,100996,'Ampudia','Spain','ES','Ampudia (Spain)',1,1,0),(1733,0,100997,'Anapa','Russia','RU','Anapa (Russia)',1,1,0),(1734,1013,100998,'Ancienne Lorette','Canada','CA','Ancienne Lorette (Canada)',1,1,0),(1735,1018,100999,'Andalusia','United States of America','US','Andalusia (United States of America)',1,1,0),(1736,0,101000,'Andamooka','Australia','AU','Andamooka (Australia)',1,1,0),(1737,0,101001,'Andelot-Blancheville','France','FR','Andelot-Blancheville (France)',1,1,0),(1738,1021,101002,'Andenes','Norway','NO','Andenes (Norway)',1,1,0),(1739,1035,101003,'Andover','United States of America','US','Andover (United States of America)',1,1,0),(1740,0,101004,'Andover','United Kingdom','UK','Andover (United Kingdom)',1,1,0),(1741,1036,101005,'Andraitx','Spain','ES','Andraitx (Spain)',1,1,0),(1742,1041,101006,'Andrezieux-Boutheon','France','FR','Andrezieux-Boutheon (France)',1,1,0),(1743,0,101007,'Andrianovo','Russia','RU','Andrianovo (Russia)',1,1,0),(1744,1043,101008,'Andrin','Spain','ES','Andrin (Spain)',1,1,0),(1745,1049,101009,'Anegada Island','British Virgin Islands','VG','Anegada Island (British Virgin Islands)',1,1,0),(1746,0,101010,'Angermunde','Germany','DE','Angermunde (Germany)',1,1,0),(1747,0,101011,'Angidia','Greece','GR','Angidia (Greece)',1,1,0),(1748,1081,101012,'Anguillara Sabazia','Italy','IT','Anguillara Sabazia (Italy)',1,1,0),(1749,1089,101013,'Anjajavy','Madagascar','MG','Anjajavy (Madagascar)',1,1,0),(1750,0,101014,'Anklam','Germany','DE','Anklam (Germany)',1,1,0),(1751,1127,101015,'Annunziata','Italy','IT','Annunziata (Italy)',1,1,0),(1752,0,101016,'Ano Pedina','Greece','GR','Ano Pedina (Greece)',1,1,0),(1753,0,101017,'Ano Symi','Greece','GR','Ano Symi (Greece)',1,1,0),(1754,0,101018,'Anould','France','FR','Anould (France)',1,1,0),(1755,1135,101019,'Ansbach','Germany','DE','Ansbach (Germany)',1,1,0),(1756,0,101020,'Anse a la Mouche','Seychelles','SC','Anse a la Mouche (Seychelles)',1,1,0),(1757,0,101021,'Anse Kerlan','Seychelles','SC','Anse Kerlan (Seychelles)',1,1,0),(1758,0,101022,'Anse Louis','Seychelles','SC','Anse Louis (Seychelles)',1,1,0),(1759,0,101023,'Anse Marcel','Saint Martin (French part)','MF','Anse Marcel (Saint Martin (French part))',1,1,0),(1760,0,101024,'Anstruther','United Kingdom','UK','Anstruther (United Kingdom)',1,1,0),(1761,1148,101025,'Antagnod','Italy','IT','Antagnod (Italy)',1,1,0),(1762,1152,101026,'Antananarivo','Madagascar','MG','Antananarivo (Madagascar)',1,1,0),(1763,1159,101027,'Anticoli Corrado','Italy','IT','Anticoli Corrado (Italy)',1,1,0),(1764,1161,101028,'Antigonish','Canada','CA','Antigonish (Canada)',1,1,0),(1765,0,101029,'Antipata','Greece','GR','Antipata (Greece)',1,1,0),(1766,1186,101030,'Antsirabe','Madagascar','MG','Antsirabe (Madagascar)',1,1,0),(1767,0,101031,'Antu (Yanbian)','China','CN','Antu (Yanbian) (China)',1,1,0),(1768,0,101032,'Appel','Germany','DE','Appel (Germany)',1,1,0),(1769,0,101033,'Appeltern','Netherlands','NL','Appeltern (Netherlands)',1,1,0),(1770,0,101034,'Apple Bay','British Virgin Islands','VG','Apple Bay (British Virgin Islands)',1,1,0),(1771,0,101035,'Apsuciems','Latvia','LV','Apsuciems (Latvia)',1,1,0),(1772,0,101036,'Apulia','Italy','IT','Apulia (Italy)',1,1,0),(1773,1247,101037,'Apulia','Portugal','PT','Apulia (Portugal)',1,1,0),(1774,0,101038,'Aquila d\'Arroscia','Italy','IT','Aquila d\'Arroscia (Italy)',1,1,0),(1775,0,101039,'Ara Nova','Italy','IT','Ara Nova (Italy)',1,1,0),(1776,1261,101040,'Arad','Israel','IL','Arad (Israel)',1,1,0),(1777,1281,101041,'Arauca','Colombia','CO','Arauca (Colombia)',1,1,0),(1778,0,101042,'Arbizu','Spain','ES','Arbizu (Spain)',1,1,0),(1779,1289,101043,'Arboga','Sweden','SE','Arboga (Sweden)',1,1,0),(1780,1294,101044,'Arborea','Italy','IT','Arborea (Italy)',1,1,0),(1781,0,101045,'Arches National Park','United States of America','US','Arches National Park (United States of America)',1,1,0),(1782,1318,101046,'Arcidosso','Italy','IT','Arcidosso (Italy)',1,1,0),(1783,0,101047,'Arcones','Spain','ES','Arcones (Spain)',1,1,0),(1784,1347,101048,'Ardmore','United States of America','US','Ardmore (United States of America)',1,1,0),(1785,0,101049,'Area de Altube','Spain','ES','Area de Altube (Spain)',1,1,0),(1786,0,101050,'Arenal d en Castell','Spain','ES','Arenal d en Castell (Spain)',1,1,0),(1787,1367,101051,'Areopoli','Greece','GR','Areopoli (Greece)',1,1,0),(1788,1368,101052,'Arequipa','Peru','PE','Arequipa (Peru)',1,1,0),(1789,0,101053,'Argentre-du-Plessis','France','FR','Argentre-du-Plessis (France)',1,1,0),(1790,0,101054,'Argyll','United Kingdom','UK','Argyll (United Kingdom)',1,1,0),(1791,1420,101055,'Arkdale','United States of America','US','Arkdale (United States of America)',1,1,0),(1792,1428,101056,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(1793,0,101057,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(1794,1438,101058,'Armbouts-Cappel','France','FR','Armbouts-Cappel (France)',1,1,0),(1795,1447,101059,'Armonk','United States of America','US','Armonk (United States of America)',1,1,0),(1796,1449,101060,'Arnage','France','FR','Arnage (France)',1,1,0),(1797,1459,101061,'Arnedo','Spain','ES','Arnedo (Spain)',1,1,0),(1798,0,101062,'Arnes','Iceland','IS','Arnes (Iceland)',1,1,0),(1799,1473,101063,'Arnuero','Spain','ES','Arnuero (Spain)',1,1,0),(1800,0,101064,'Arqua Petrarca','Italy','IT','Arqua Petrarca (Italy)',1,1,0),(1801,0,101065,'Arrach','Germany','DE','Arrach (Germany)',1,1,0),(1802,1494,101066,'Arriate','Spain','ES','Arriate (Spain)',1,1,0),(1803,1495,101067,'Arriondas','Spain','ES','Arriondas (Spain)',1,1,0),(1804,1502,101069,'Arroyo Seco','Mexico','MX','Arroyo Seco (Mexico)',1,1,0),(1805,1511,101070,'Arteixo','Spain','ES','Arteixo (Spain)',1,1,0),(1806,1536,101071,'Arvada','United States of America','US','Arvada (United States of America)',1,1,0),(1807,1545,101072,'Arzier','Switzerland','CH','Arzier (Switzerland)',1,1,0),(1808,0,101073,'Arzua','Spain','ES','Arzua (Spain)',1,1,0),(1809,0,101074,'Aschdod','Israel','IL','Aschdod (Israel)',1,1,0),(1810,0,101075,'Ascheffel','Germany','DE','Ascheffel (Germany)',1,1,0),(1811,1563,101076,'Aschheim','Germany','DE','Aschheim (Germany)',1,1,0),(1812,0,101077,'Aselinos','Greece','GR','Aselinos (Greece)',1,1,0),(1813,0,101078,'Aseri','Estonia','EE','Aseri (Estonia)',1,1,0),(1814,0,101079,'Ash','United Kingdom','UK','Ash (United Kingdom)',1,1,0),(1815,1583,101080,'Ashburton','New Zealand','NZ','Ashburton (New Zealand)',1,1,0),(1816,1589,101081,'Asheboro','United States of America','US','Asheboro (United States of America)',1,1,0),(1817,1621,101082,'Asolo','Italy','IT','Asolo (Italy)',1,1,0),(1818,1625,101083,'Asperg','Germany','DE','Asperg (Germany)',1,1,0),(1819,1633,101084,'Aspres-sur-Buech','France','FR','Aspres-sur-Buech (France)',1,1,0),(1820,611,101085,'Algonquin','United States of America','US','Algonquin (United States of America)',1,1,0),(1821,0,101086,'Aliko Beach','Greece','GR','Aliko Beach (Greece)',1,1,0),(1822,658,101087,'Allegany','United States of America','US','Allegany (United States of America)',1,1,0),(1823,0,101088,'Allemont','France','FR','Allemont (France)',1,1,0),(1824,0,101089,'Allenstein (Olsztyn)','Poland','PL','Allenstein (Olsztyn) (Poland)',1,1,0),(1825,0,101090,'Allschwil','Switzerland','CH','Allschwil (Switzerland)',1,1,0),(1826,0,101091,'Almaciga','Spain','ES','Almaciga (Spain)',1,1,0),(1827,0,101092,'Almaden de la Plata','Spain','ES','Almaden de la Plata (Spain)',1,1,0),(1828,703,101093,'Almelo','Netherlands','NL','Almelo (Netherlands)',1,1,0),(1829,722,101094,'Almunecar','Spain','ES','Almunecar (Spain)',1,1,0),(1830,737,101095,'Alor Setar','Malaysia','MY','Alor Setar (Malaysia)',1,1,0),(1831,0,101096,'Alpalhao','Portugal','PT','Alpalhao (Portugal)',1,1,0),(1832,755,101097,'Alphaville','Brazil','BR','Alphaville (Brazil)',1,1,0),(1833,0,101098,'Alpine','United States of America','US','Alpine (United States of America)',1,1,0),(1834,0,101099,'Alsancak','Cyprus','CY','Alsancak (Cyprus)',1,1,0),(1835,0,101100,'Alseno','Italy','IT','Alseno (Italy)',1,1,0),(1836,768,101101,'Alsfeld','Germany','DE','Alsfeld (Germany)',1,1,0),(1837,0,101102,'Alsoors','Hungary','HU','Alsoors (Hungary)',1,1,0),(1838,787,101103,'Altaussee','Austria','AT','Altaussee (Austria)',1,1,0),(1839,0,101104,'Altdorf (Niederbayern)','Germany','DE','Altdorf (Niederbayern) (Germany)',1,1,0),(1840,0,101105,'Altena','Germany','DE','Altena (Germany)',1,1,0),(1841,796,101106,'Altenau','Germany','DE','Altenau (Germany)',1,1,0),(1842,799,101107,'Altenholz','Germany','DE','Altenholz (Germany)',1,1,0),(1843,0,101108,'Altenmarkt an der Alz','Germany','DE','Altenmarkt an der Alz (Germany)',1,1,0),(1844,806,101109,'Alterkulz','Germany','DE','Alterkulz (Germany)',1,1,0),(1845,809,101110,'Altinkum','Turkey','TR','Altinkum (Turkey)',1,1,0),(1846,0,101111,'Altkirch','France','FR','Altkirch (France)',1,1,0),(1847,0,101112,'Altlengbach','Austria','AT','Altlengbach (Austria)',1,1,0),(1848,0,101113,'Altmunster','Austria','AT','Altmunster (Austria)',1,1,0),(1849,0,101114,'Altotting','Germany','DE','Altotting (Germany)',1,1,0),(1850,849,101115,'Alvor','Portugal','PT','Alvor (Portugal)',1,1,0),(1851,0,101116,'Alykes Beach','Greece','GR','Alykes Beach (Greece)',1,1,0),(1852,863,101117,'Amagansett','United States of America','US','Amagansett (United States of America)',1,1,0),(1853,871,101118,'Amalfi','Italy','IT','Amalfi (Italy)',1,1,0),(1854,889,101119,'Ambato','Ecuador','EC','Ambato (Ecuador)',1,1,0),(1855,0,101120,'Ambert','France','FR','Ambert (France)',1,1,0),(1856,898,101121,'Ambilly','France','FR','Ambilly (France)',1,1,0),(1857,906,101122,'Ambra','Italy','IT','Ambra (Italy)',1,1,0),(1858,910,101123,'Ameglia','Italy','IT','Ameglia (Italy)',1,1,0),(1859,923,101124,'Americus','United States of America','US','Americus (United States of America)',1,1,0),(1860,924,101125,'Amersfoort','Netherlands','NL','Amersfoort (Netherlands)',1,1,0),(1861,0,101126,'Amoopi','Greece','GR','Amoopi (Greece)',1,1,0),(1862,0,101127,'Ampflwang','Austria','AT','Ampflwang (Austria)',1,1,0),(1863,0,101130,'Amt Neuhaus','Germany','DE','Amt Neuhaus (Germany)',1,1,0),(1864,990,101131,'Anaheim','United States of America','US','Anaheim (United States of America)',1,1,0),(1865,997,101132,'Anamosa','United States of America','US','Anamosa (United States of America)',1,1,0),(1866,1009,101133,'Ancenis','France','FR','Ancenis (France)',1,1,0),(1867,1014,101134,'Ancona','Italy','IT','Ancona (Italy)',1,1,0),(1868,1015,101135,'Ancud','Chile','CL','Ancud (Chile)',1,1,0),(1869,0,101136,'Anderson Island','United States of America','US','Anderson Island (United States of America)',1,1,0),(1870,1026,101137,'Anderstorp','Sweden','SE','Anderstorp (Sweden)',1,1,0),(1871,0,101138,'Andrychow','Poland','PL','Andrychow (Poland)',1,1,0),(1872,1054,101139,'Angelholm','Sweden','SE','Angelholm (Sweden)',1,1,0),(1873,0,101140,'Anger (Berchtesgadener Land)','Germany','DE','Anger (Berchtesgadener Land) (Germany)',1,1,0),(1874,1064,101141,'Anghiari','Italy','IT','Anghiari (Italy)',1,1,0),(1875,1077,101142,'Angra do Heroismo','Portugal','PT','Angra do Heroismo (Portugal)',1,1,0),(1876,1078,101143,'Angra dos Reis','Brazil','BR','Angra dos Reis (Brazil)',1,1,0),(1877,0,101144,'Angus','United Kingdom','UK','Angus (United Kingdom)',1,1,0),(1878,1092,101145,'Anjo','Japan','JP','Anjo (Japan)',1,1,0),(1879,1104,101148,'Ankum','Germany','DE','Ankum (Germany)',1,1,0),(1880,1107,101149,'Anna Bay','Australia','AU','Anna Bay (Australia)',1,1,0),(1881,1111,101150,'Annaberg-Buchholz','Germany','DE','Annaberg-Buchholz (Germany)',1,1,0),(1882,0,101151,'Annacarthy','Ireland','IE','Annacarthy (Ireland)',1,1,0),(1883,0,101152,'Annagry','Ireland','IE','Annagry (Ireland)',1,1,0),(1884,0,101153,'Annan','United Kingdom','UK','Annan (United Kingdom)',1,1,0),(1885,1124,101154,'Anniston','United States of America','US','Anniston (United States of America)',1,1,0),(1886,1126,101155,'Annot','France','FR','Annot (France)',1,1,0),(1887,0,101156,'Anrode','Germany','DE','Anrode (Germany)',1,1,0),(1888,1157,101157,'Anthony','United States of America','US','Anthony (United States of America)',1,1,0),(1889,1158,101158,'Antibes','France','FR','Antibes (France)',1,1,0),(1890,1172,101159,'Antimony','United States of America','US','Antimony (United States of America)',1,1,0),(1891,1174,101160,'Antioch','United States of America','US','Antioch (United States of America)',1,1,0),(1892,0,101161,'Antioch','United States of America','US','Antioch (United States of America)',1,1,0),(1893,1177,101162,'Antlers','United States of America','US','Antlers (United States of America)',1,1,0),(1894,1182,101163,'Antonne-et-Trigonant','France','FR','Antonne-et-Trigonant (France)',1,1,0),(1895,0,101164,'Anttola','Finland','FI','Anttola (Finland)',1,1,0),(1896,0,101165,'Anzoategui','Venezuela','VE','Anzoategui (Venezuela)',1,1,0),(1897,1202,101166,'Aore Island','Vanuatu','VU','Aore Island (Vanuatu)',1,1,0),(1898,1208,101167,'Apalachicola','United States of America','US','Apalachicola (United States of America)',1,1,0),(1899,0,101168,'Apatistvanfalva','Hungary','HU','Apatistvanfalva (Hungary)',1,1,0),(1900,0,101169,'Appendweier','Germany','DE','Appendweier (Germany)',1,1,0),(1901,0,101170,'Appleby-in-Westmorland','United Kingdom','UK','Appleby-in-Westmorland (United Kingdom)',1,1,0),(1902,0,101171,'Apremont','France','FR','Apremont (France)',1,1,0),(1903,10570,101172,'Gmunden','Austria','AT','Gmunden (Austria)',1,1,0),(1904,22462,101177,'Radda In Chianti','Italy','IT','Radda In Chianti (Italy)',1,1,0),(1905,15818,101178,'Lombok','Indonesia','ID','Lombok (Indonesia)',1,1,0),(1906,6156,101179,'Chios','Greece','GR','Chios (Greece)',1,1,0),(1907,0,101180,'Matlock Bath','United Kingdom','UK','Matlock Bath (United Kingdom)',1,1,0),(1908,0,101181,'Whitchurch','United Kingdom','UK','Whitchurch (United Kingdom)',1,1,0),(1909,0,101183,'North Queensferry','United Kingdom','UK','North Queensferry (United Kingdom)',1,1,0),(1910,0,101184,'Llanberis','United Kingdom','UK','Llanberis (United Kingdom)',1,1,0),(1911,11821,101185,'Hellesylt','Norway','NO','Hellesylt (Norway)',1,1,0),(1912,0,101187,'Pietersburg','South Africa','ZA','Pietersburg (South Africa)',1,1,0),(1913,892,101189,'Amberg','Germany','DE','Amberg (Germany)',1,1,0),(1914,25707,101190,'Souillac','France','FR','Souillac (France)',1,1,0),(1915,0,101191,'Windsor','Canada','CA','Windsor (Canada)',1,1,0),(1916,28838,101192,'Villars-sur-Ollon','Switzerland','CH','Villars-sur-Ollon (Switzerland)',1,1,0),(1917,4473,101193,'Burgenstock','Switzerland','CH','Burgenstock (Switzerland)',1,1,0),(1918,25806,101194,'Spanish Point','Ireland','IE','Spanish Point (Ireland)',1,1,0),(1919,13480,101195,'Kanata','Canada','CA','Kanata (Canada)',1,1,0),(1920,9009,101196,'Etobicoke','Canada','CA','Etobicoke (Canada)',1,1,0),(1921,13775,101198,'Keflavik','Iceland','IS','Keflavik (Iceland)',1,1,0),(1922,0,101205,'Monaco - Monte Carlo','Monaco','MC','Monaco - Monte Carlo (Monaco)',1,1,0),(1923,300,101206,'Ahtari','Finland','FI','Ahtari (Finland)',1,1,0),(1924,33305,101208,'Santa Pola','Spain','ES','Santa Pola (Spain)',1,1,0),(1925,0,101209,'Villaviciosa de Odon','Spain','ES','Villaviciosa de Odon (Spain)',1,1,0),(1926,19078,101210,'Navacerrada','Spain','ES','Navacerrada (Spain)',1,1,0),(1927,4854,101211,'Cambrils','Spain','ES','Cambrils (Spain)',1,1,0),(1928,7387,101214,'Curia','Portugal','PT','Curia (Portugal)',1,1,0),(1929,3185,101215,'Bielsko-Biala','Poland','PL','Bielsko-Biala (Poland)',1,1,0),(1930,20032,101216,'Olden','Norway','NO','Olden (Norway)',1,1,0),(1931,28558,101217,'Velp','Netherlands','NL','Velp (Netherlands)',1,1,0),(1932,18663,101218,'Mulhouse','France','FR','Mulhouse (France)',1,1,0),(1933,17316,101219,'Medulin','Croatia','HR','Medulin (Croatia)',1,1,0),(1934,27308,101220,'Timmendorfer Strand','Germany','DE','Timmendorfer Strand (Germany)',1,1,0),(1935,18862,101221,'Nafplion','Greece','GR','Nafplion (Greece)',1,1,0),(1936,12359,101222,'Hovden','Norway','NO','Hovden (Norway)',1,1,0),(1937,0,101223,'Chatham','Canada','CA','Chatham (Canada)',1,1,0),(1938,586,101224,'Alfaz Del Pi','Spain','ES','Alfaz Del Pi (Spain)',1,1,0),(1939,3240,101225,'Bingen','Germany','DE','Bingen (Germany)',1,1,0),(1940,12890,101226,'Isola','France','FR','Isola (France)',1,1,0),(1941,5212,101227,'Carnoux-En-Provence','France','FR','Carnoux-En-Provence (France)',1,1,0),(1942,0,101228,'Nervi','Italy','IT','Nervi (Italy)',1,1,0),(1943,32317,101229,'Nova Levante','Italy','IT','Nova Levante (Italy)',1,1,0),(1944,30967,101230,'Fiano','Italy','IT','Fiano (Italy)',1,1,0),(1945,19191,101232,'Nepean','Canada','CA','Nepean (Canada)',1,1,0),(1946,31170,101238,'Isla de la Toja','Spain','ES','Isla de la Toja (Spain)',1,1,0),(1947,23240,101239,'ROQUEBRUNE CAP MARTIN','France','FR','ROQUEBRUNE CAP MARTIN (France)',1,1,0),(1948,5989,101240,'Chemin Grenier','Mauritius','MU','Chemin Grenier (Mauritius)',1,1,0),(1949,33082,101241,'San Marino','Italy','IT','San Marino (Italy)',1,1,0),(1950,0,101242,'Lake Toya','Japan','JP','Lake Toya (Japan)',1,1,0),(1951,27937,101243,'Tumon','Guam','GU','Tumon (Guam)',1,1,0),(1952,0,101244,'Sheerness','United Kingdom','UK','Sheerness (United Kingdom)',1,1,0),(1953,0,101245,'Market Deeping','United Kingdom','UK','Market Deeping (United Kingdom)',1,1,0),(1954,0,101246,'Markyate','United Kingdom','UK','Markyate (United Kingdom)',1,1,0),(1955,30266,101248,'Yilan','Taiwan','TW','Yilan (Taiwan)',1,1,0),(1956,7578,101249,'Dashu','Taiwan','TW','Dashu (Taiwan)',1,1,0),(1957,15518,101250,'Limburg','Germany','DE','Limburg (Germany)',1,1,0),(1958,10831,101251,'Grandchester','Australia','AU','Grandchester (Australia)',1,1,0),(1959,20538,101252,'Pacos de Ferreira','Portugal','PT','Pacos de Ferreira (Portugal)',1,1,0),(1960,12446,101253,'Hull','Canada','CA','Hull (Canada)',1,1,0),(1961,28627,101254,'Vernole','Italy','IT','Vernole (Italy)',1,1,0),(1962,15795,101255,'Loipersdorf','Austria','AT','Loipersdorf (Austria)',1,1,0),(1963,0,101256,'Hull','Canada','CA','Hull (Canada)',1,1,0),(1964,15292,101257,'Lennox Head','Australia','AU','Lennox Head (Australia)',1,1,0),(1965,524,101258,'Alcoceber','Spain','ES','Alcoceber (Spain)',1,1,0),(1966,30930,101259,'El Saler','Spain','ES','El Saler (Spain)',1,1,0),(1967,30720,101260,'Costa Brava','Spain','ES','Costa Brava (Spain)',1,1,0),(1968,30165,101261,'Yalta','Ukraine','UA','Yalta (Ukraine)',1,1,0),(1969,9376,101262,'Fesdu Island','Maldives','MV','Fesdu Island (Maldives)',1,1,0),(1970,16470,101263,'Makuhari','Japan','JP','Makuhari (Japan)',1,1,0),(1971,0,101264,'Mount Cook','New Zealand','NZ','Mount Cook (New Zealand)',1,1,0),(1972,25685,101265,'Sortland','Norway','NO','Sortland (Norway)',1,1,0),(1973,600,101266,'Algard','Norway','NO','Algard (Norway)',1,1,0),(1974,15775,101267,'Loen','Norway','NO','Loen (Norway)',1,1,0),(1975,0,101268,'Wellington','United Kingdom','UK','Wellington (United Kingdom)',1,1,0),(1976,0,101269,'Newton Aycliffe','United Kingdom','UK','Newton Aycliffe (United Kingdom)',1,1,0),(1977,0,101270,'Mijas Costa','Spain','ES','Mijas Costa (Spain)',1,1,0),(1978,12164,101271,'Holbrook','United States of America','US','Holbrook (United States of America)',1,1,0),(1979,9531,101272,'Flint','United States of America','US','Flint (United States of America)',1,1,0),(1980,0,101273,'Cody','United States of America','US','Cody (United States of America)',1,1,0),(1981,5180,101274,'Carlsbad','United States of America','US','Carlsbad (United States of America)',1,1,0),(1982,0,101275,'Brunswick','United States of America','US','Brunswick (United States of America)',1,1,0),(1983,7665,101276,'Deerfield','United States of America','US','Deerfield (United States of America)',1,1,0),(1984,0,101277,'North York','Canada','CA','North York (Canada)',1,1,0),(1985,0,101278,'Hilton Head Island','United States of America','US','Hilton Head Island (United States of America)',1,1,0),(1986,0,101279,'Deerfield','United States of America','US','Deerfield (United States of America)',1,1,0),(1987,0,101280,'Holbrook','United States of America','US','Holbrook (United States of America)',1,1,0),(1988,0,101281,'Nashville','United States of America','US','Nashville (United States of America)',1,1,0),(1989,0,101282,'Tallahassee','United States of America','US','Tallahassee (United States of America)',1,1,0),(1990,0,101283,'Deerfield','United States of America','US','Deerfield (United States of America)',1,1,0),(1991,0,101284,'Essex Junction','United States of America','US','Essex Junction (United States of America)',1,1,0),(1992,22682,101285,'Redang Island','Malaysia','MY','Redang Island (Malaysia)',1,1,0),(1993,27336,101286,'Tioman Island','Malaysia','MY','Tioman Island (Malaysia)',1,1,0),(1994,18075,101287,'Monheim','Germany','DE','Monheim (Germany)',1,1,0),(1995,10767,101288,'Gozo','Malta','MT','Gozo (Malta)',1,1,0),(1996,1115,101289,'Annapolis','United States of America','US','Annapolis (United States of America)',1,1,0),(1997,0,101290,'Mount Olive','United States of America','US','Mount Olive (United States of America)',1,1,0),(1998,0,101291,'Sankt Veit an der Glan','Austria','AT','Sankt Veit an der Glan (Austria)',1,1,0),(1999,6149,101292,'Chinle','United States of America','US','Chinle (United States of America)',1,1,0),(2000,0,101293,'Holbrook','United States of America','US','Holbrook (United States of America)',1,1,0),(2001,0,101294,'Baressa','Italy','IT','Baressa (Italy)',1,1,0),(2002,0,101295,'Barnave','France','FR','Barnave (France)',1,1,0),(2003,0,101296,'Barnawartha','Australia','AU','Barnawartha (Australia)',1,1,0),(2004,0,101297,'Barnby','United Kingdom','UK','Barnby (United Kingdom)',1,1,0),(2005,0,101298,'Barton on Sea','United Kingdom','UK','Barton on Sea (United Kingdom)',1,1,0),(2006,0,101299,'Batehaven','Australia','AU','Batehaven (Australia)',1,1,0),(2007,0,101300,'Batizovce','Slovakia','SK','Batizovce (Slovakia)',1,1,0),(2008,0,101301,'Batulicin','Indonesia','ID','Batulicin (Indonesia)',1,1,0),(2009,0,101302,'Bau-Bau','Indonesia','ID','Bau-Bau (Indonesia)',1,1,0),(2010,0,101303,'Baykalsk','Russia','RU','Baykalsk (Russia)',1,1,0),(2011,0,101304,'Bechet','Romania','RO','Bechet (Romania)',1,1,0),(2012,0,101305,'Beerzerveld','Netherlands','NL','Beerzerveld (Netherlands)',1,1,0),(2013,0,101306,'Beladice','Slovakia','SK','Beladice (Slovakia)',1,1,0),(2014,0,101307,'Belford','Australia','AU','Belford (Australia)',1,1,0),(2015,0,101308,'Belorezk','Russia','RU','Belorezk (Russia)',1,1,0),(2016,0,101309,'Belton','United Kingdom','UK','Belton (United Kingdom)',1,1,0),(2017,0,101310,'Benabarre','Spain','ES','Benabarre (Spain)',1,1,0),(2018,0,101311,'Beromunster','Switzerland','CH','Beromunster (Switzerland)',1,1,0),(2019,0,101312,'Berridale','Australia','AU','Berridale (Australia)',1,1,0),(2020,0,101313,'Berrima','Australia','AU','Berrima (Australia)',1,1,0),(2021,0,101314,'Beruwala','Sri Lanka','LK','Beruwala (Sri Lanka)',1,1,0),(2022,0,101315,'Beryaroza','Belarus','BY','Beryaroza (Belarus)',1,1,0),(2023,0,101316,'Besthorpe','United Kingdom','UK','Besthorpe (United Kingdom)',1,1,0),(2024,0,101317,'Bevazzana','Italy','IT','Bevazzana (Italy)',1,1,0),(2025,0,101319,'Bilinga','Australia','AU','Bilinga (Australia)',1,1,0),(2026,0,101320,'Birkenfeld (Nahe)','Germany','DE','Birkenfeld (Nahe) (Germany)',1,1,0),(2027,0,101321,'Birr',NULL,NULL,'Birr ()',1,1,0),(2028,0,101322,'Bishop\'s Castle','United Kingdom','UK','Bishop\'s Castle (United Kingdom)',1,1,0),(2029,0,101323,'Blendecques','France','FR','Blendecques (France)',1,1,0),(2030,0,101324,'Bodio Lomnago','Italy','IT','Bodio Lomnago (Italy)',1,1,0),(2031,0,101325,'Bogorodskoye','Russia','RU','Bogorodskoye (Russia)',1,1,0),(2032,0,101326,'Aarle-Rixtel','Netherlands','NL','Aarle-Rixtel (Netherlands)',1,1,0),(2033,0,101327,'Abanades','Spain','ES','Abanades (Spain)',1,1,0),(2034,41,101328,'Abant','Turkey','TR','Abant (Turkey)',1,1,0),(2035,0,101329,'Abersoch','United Kingdom','UK','Abersoch (United Kingdom)',1,1,0),(2036,0,101330,'Abrau-Djurso','Russia','RU','Abrau-Djurso (Russia)',1,1,0),(2037,0,101331,'Adalar','Turkey','TR','Adalar (Turkey)',1,1,0),(2038,0,101332,'Adbaston','United Kingdom','UK','Adbaston (United Kingdom)',1,1,0),(2039,0,101333,'Adderbury','United Kingdom','UK','Adderbury (United Kingdom)',1,1,0),(2040,0,101334,'Ade','France','FR','Ade (France)',1,1,0),(2041,0,101335,'Afjord','Norway','NO','Afjord (Norway)',1,1,0),(2042,0,101336,'Ahuachapan','El Salvador','SV','Ahuachapan (El Salvador)',1,1,0),(2043,0,101337,'Ain Ebel','Lebanon','LB','Ain Ebel (Lebanon)',1,1,0),(2044,0,101338,'Ajka','Hungary','HU','Ajka (Hungary)',1,1,0),(2045,0,101339,'Akkerhaugen','Norway','NO','Akkerhaugen (Norway)',1,1,0),(2046,0,101340,'Akure','Nigeria','NG','Akure (Nigeria)',1,1,0),(2047,0,101341,'Alcanices','Spain','ES','Alcanices (Spain)',1,1,0),(2048,0,101342,'Alcasser','Spain','ES','Alcasser (Spain)',1,1,0),(2049,0,101343,'Algodonales','Spain','ES','Algodonales (Spain)',1,1,0),(2050,662,101344,'Allemagne-en-Provence','France','FR','Allemagne-en-Provence (France)',1,1,0),(2051,0,101345,'Almeida De Sayago','Spain','ES','Almeida De Sayago (Spain)',1,1,0),(2052,0,101346,'Altinova','Turkey','TR','Altinova (Turkey)',1,1,0),(2053,0,101347,'Alto Bio Bio','Chile','CL','Alto Bio Bio (Chile)',1,1,0),(2054,0,101348,'Alto Caparao','Brazil','BR','Alto Caparao (Brazil)',1,1,0),(2055,882,101350,'Amarinthos','Greece','GR','Amarinthos (Greece)',1,1,0),(2056,0,101351,'Ammarnas','Sweden','SE','Ammarnas (Sweden)',1,1,0),(2057,0,101352,'Amphoe Ban Ta Khun','Thailand','TH','Amphoe Ban Ta Khun (Thailand)',1,1,0),(2058,33417,101353,'Sicily','Italy','IT','Sicily (Italy)',1,1,0),(2059,0,101354,'Busan','South Korea','KR','Busan (South Korea)',1,1,0),(2060,0,101355,'Pyrenees - Catalan','Spain','ES','Pyrenees - Catalan (Spain)',1,1,0),(2061,9835,101356,'French Alps','France','FR','French Alps (France)',1,1,0),(2062,0,101357,'Swiss Alps','Switzerland','CH','Swiss Alps (Switzerland)',1,1,0),(2063,19120,101358,'Neapolitan Riviera','Italy','IT','Neapolitan Riviera (Italy)',1,1,0),(2064,32654,101359,'Puglia','Italy','IT','Puglia (Italy)',1,1,0),(2065,30733,101360,'Costa del Sol','Spain','ES','Costa del Sol (Spain)',1,1,0),(2066,7010,101361,'Corsica','France','FR','Corsica (France)',1,1,0),(2067,13053,101362,'Java','Indonesia','ID','Java (Indonesia)',1,1,0),(2068,30725,101363,'Costa de Azahar','Spain','ES','Costa de Azahar (Spain)',1,1,0),(2069,33382,101364,'Sardinia','Italy','IT','Sardinia (Italy)',1,1,0),(2070,16505,101365,'Maldives','Maldives','MV','Maldives (Maldives)',1,1,0),(2071,0,101366,'Breteuil','France','FR','Breteuil (France)',1,1,0),(2072,0,101367,'Brewood','United Kingdom','UK','Brewood (United Kingdom)',1,1,0),(2073,0,101368,'Brightwater','New Zealand','NZ','Brightwater (New Zealand)',1,1,0),(2074,0,101369,'Bristol','Canada','CA','Bristol (Canada)',1,1,0),(2075,0,101370,'Browary','Ukraine','UA','Browary (Ukraine)',1,1,0),(2076,0,101371,'Brunehamel','France','FR','Brunehamel (France)',1,1,0),(2077,0,101372,'Brynmenyn','United Kingdom','UK','Brynmenyn (United Kingdom)',1,1,0),(2078,0,101373,'Bugnein','France','FR','Bugnein (France)',1,1,0),(2079,0,101374,'Burdaard','Netherlands','NL','Burdaard (Netherlands)',1,1,0),(2080,0,101375,'Burrweiler','Germany','DE','Burrweiler (Germany)',1,1,0),(2081,0,101376,'Bursins','Switzerland','CH','Bursins (Switzerland)',1,1,0),(2082,0,101377,'Busnago','Italy','IT','Busnago (Italy)',1,1,0),(2083,0,101378,'Cabella Ligure','Italy','IT','Cabella Ligure (Italy)',1,1,0),(2084,0,101379,'Cabeza del Buey','Spain','ES','Cabeza del Buey (Spain)',1,1,0),(2085,0,101380,'Cachoeira Alta','Brazil','BR','Cachoeira Alta (Brazil)',1,1,0),(2086,0,101381,'Caete','Brazil','BR','Caete (Brazil)',1,1,0),(2087,0,101382,'Cailly-sur-Eure','France','FR','Cailly-sur-Eure (France)',1,1,0),(2088,0,101383,'Calarca','Colombia','CO','Calarca (Colombia)',1,1,0),(2089,0,101384,'Calheta de Sao Miguel','Cape Verde','CV','Calheta de Sao Miguel (Cape Verde)',1,1,0),(2090,0,101385,'Calusco d\'Adda','Italy','IT','Calusco d\'Adda (Italy)',1,1,0),(2091,4856,101386,'Cambuquira','Brazil','BR','Cambuquira (Brazil)',1,1,0),(2092,0,101387,'Camorino','Switzerland','CH','Camorino (Switzerland)',1,1,0),(2093,0,101388,'Campeneac','France','FR','Campeneac (France)',1,1,0),(2094,0,101389,'Campiglione Fenile','Italy','IT','Campiglione Fenile (Italy)',1,1,0),(2095,0,101390,'Campofilone','Italy','IT','Campofilone (Italy)',1,1,0),(2096,0,101391,'Candarli','Turkey','TR','Candarli (Turkey)',1,1,0),(2097,0,101392,'Canowindra','Australia','AU','Canowindra (Australia)',1,1,0),(2098,0,101393,'Cantiano','Italy','IT','Cantiano (Italy)',1,1,0),(2099,0,101394,'Canvey Island','United Kingdom','UK','Canvey Island (United Kingdom)',1,1,0),(2100,0,101395,'Caoxian','China','CN','Caoxian (China)',1,1,0),(2101,5192,101396,'Carmel','Australia','AU','Carmel (Australia)',1,1,0),(2102,0,101397,'Carterton','New Zealand','NZ','Carterton (New Zealand)',1,1,0),(2103,0,101398,'Casaglione','France','FR','Casaglione (France)',1,1,0),(2104,0,101399,'Castelluccio di Norcia','Italy','IT','Castelluccio di Norcia (Italy)',1,1,0),(2105,0,101400,'Catamayo Canton','Ecuador','EC','Catamayo Canton (Ecuador)',1,1,0),(2106,0,101401,'Cava Manara','Italy','IT','Cava Manara (Italy)',1,1,0),(2107,0,101402,'Celenza Valfortore','Italy','IT','Celenza Valfortore (Italy)',1,1,0),(2108,0,101403,'Cereste','France','FR','Cereste (France)',1,1,0),(2109,0,101404,'Cernolice','Czech Republic','CZ','Cernolice (Czech Republic)',1,1,0),(2110,0,101405,'Cernozice','Czech Republic','CZ','Cernozice (Czech Republic)',1,1,0),(2111,5645,101406,'Certosa di Pavia','Italy','IT','Certosa di Pavia (Italy)',1,1,0),(2112,0,101407,'Chacala','Mexico','MX','Chacala (Mexico)',1,1,0),(2113,0,101408,'Chakvi','Georgia','GE','Chakvi (Georgia)',1,1,0),(2114,0,101409,'Champlitte-et-le-Prelot','France','FR','Champlitte-et-le-Prelot (France)',1,1,0),(2115,0,101410,'Charge','France','FR','Charge (France)',1,1,0),(2116,0,101411,'Biysk','Russia','RU','Biysk (Russia)',1,1,0),(2117,0,101412,'Bjelasnica','Bosnia and Herzegowina','BA','Bjelasnica (Bosnia and Herzegowina)',1,1,0),(2118,0,101413,'Bjert','Denmark','DK','Bjert (Denmark)',1,1,0),(2119,0,101414,'Blaencwm','United Kingdom','UK','Blaencwm (United Kingdom)',1,1,0),(2120,3463,101415,'Bluff','New Zealand','NZ','Bluff (New Zealand)',1,1,0),(2121,0,101416,'Blyton','United Kingdom','UK','Blyton (United Kingdom)',1,1,0),(2122,0,101417,'Bogatynia','Poland','PL','Bogatynia (Poland)',1,1,0),(2123,0,101418,'Bogoso','Ghana','GH','Bogoso (Ghana)',1,1,0),(2124,0,101419,'Bojarka','Ukraine','UA','Bojarka (Ukraine)',1,1,0),(2125,0,101420,'Bom Principio','Brazil','BR','Bom Principio (Brazil)',1,1,0),(2126,0,101421,'Bondarenkovo','Ukraine','UA','Bondarenkovo (Ukraine)',1,1,0),(2127,0,101422,'Bonea','Italy','IT','Bonea (Italy)',1,1,0),(2128,0,101423,'Borowsk','Russia','RU','Borowsk (Russia)',1,1,0),(2129,0,101424,'Boschan','Slovakia','SK','Boschan (Slovakia)',1,1,0),(2130,0,101425,'Boutx-le-Mourtis','France','FR','Boutx-le-Mourtis (France)',1,1,0),(2131,3871,101426,'Box Hill','Australia','AU','Box Hill (Australia)',1,1,0),(2132,0,101427,'Boyland','Australia','AU','Boyland (Australia)',1,1,0),(2133,0,101428,'Boyton','United Kingdom','UK','Boyton (United Kingdom)',1,1,0),(2134,0,101429,'Bradwell','United Kingdom','UK','Bradwell (United Kingdom)',1,1,0),(2135,0,101430,'Bragadiru','Romania','RO','Bragadiru (Romania)',1,1,0),(2136,0,101431,'Brandeglio','Italy','IT','Brandeglio (Italy)',1,1,0),(2137,0,101432,'Branna','Czech Republic','CZ','Branna (Czech Republic)',1,1,0),(2138,0,101433,'Brienno','Italy','IT','Brienno (Italy)',1,1,0),(2139,0,101434,'Brodowo','Poland','PL','Brodowo (Poland)',1,1,0),(2140,4227,101435,'Brookvale','Australia','AU','Brookvale (Australia)',1,1,0),(2141,0,101436,'Broos','Romania','RO','Broos (Romania)',1,1,0),(2142,0,101437,'Bruzolo','Italy','IT','Bruzolo (Italy)',1,1,0),(2143,0,101438,'Buccino','Italy','IT','Buccino (Italy)',1,1,0),(2144,4374,101439,'Budrio','Italy','IT','Budrio (Italy)',1,1,0),(2145,0,101440,'Buleleng Regency','Indonesia','ID','Buleleng Regency (Indonesia)',1,1,0),(2146,0,101441,'Burtsevo','Russia','RU','Burtsevo (Russia)',1,1,0),(2147,0,101442,'Bustanico','France','FR','Bustanico (France)',1,1,0),(2148,0,101443,'Caderzone Terme','Italy','IT','Caderzone Terme (Italy)',1,1,0),(2149,4717,101444,'Calafat','Romania','RO','Calafat (Romania)',1,1,0),(2150,0,101445,'Calenzana','France','FR','Calenzana (France)',1,1,0),(2151,0,101446,'Campocologno','Switzerland','CH','Campocologno (Switzerland)',1,1,0),(2152,0,101447,'Alpandeire','Spain','ES','Alpandeire (Spain)',1,1,0),(2153,0,101448,'Alt Bukow','Germany','DE','Alt Bukow (Germany)',1,1,0),(2154,0,101449,'Aluksne','Latvia','LV','Aluksne (Latvia)',1,1,0),(2155,0,101450,'Amfithea','Greece','GR','Amfithea (Greece)',1,1,0),(2156,0,101451,'Ammeldingen an der Our','Germany','DE','Ammeldingen an der Our (Germany)',1,1,0),(2157,0,101452,'Amphoe Si Maha Phot','Thailand','TH','Amphoe Si Maha Phot (Thailand)',1,1,0),(2158,0,101453,'Anatoliki Mani','Greece','GR','Anatoliki Mani (Greece)',1,1,0),(2159,0,101454,'Andrejewka','Russia','RU','Andrejewka (Russia)',1,1,0),(2160,0,101455,'Angarsk','Russia','RU','Angarsk (Russia)',1,1,0),(2161,0,101456,'Angri','Italy','IT','Angri (Italy)',1,1,0),(2162,0,101457,'Anon de Moncayo','Spain','ES','Anon de Moncayo (Spain)',1,1,0),(2163,0,101458,'Antas (Almeria)','Spain','ES','Antas (Almeria) (Spain)',1,1,0),(2164,0,101459,'Antuco','Chile','CL','Antuco (Chile)',1,1,0),(2165,0,101460,'Apuan','Indonesia','ID','Apuan (Indonesia)',1,1,0),(2166,0,101461,'Arahal','Spain','ES','Arahal (Spain)',1,1,0),(2167,0,101462,'Arenas de San Pedro','Spain','ES','Arenas de San Pedro (Spain)',1,1,0),(2168,0,101463,'Arguedas','Spain','ES','Arguedas (Spain)',1,1,0),(2169,0,101464,'Aribe','Spain','ES','Aribe (Spain)',1,1,0),(2170,0,101465,'Ariquemes','Brazil','BR','Ariquemes (Brazil)',1,1,0),(2171,0,101466,'Arschan','Russia','RU','Arschan (Russia)',1,1,0),(2172,0,101467,'Artingen','Italy','IT','Artingen (Italy)',1,1,0),(2173,0,101468,'Ashprington','United Kingdom','UK','Ashprington (United Kingdom)',1,1,0),(2174,0,101469,'Asuncion Nochixtlan','Mexico','MX','Asuncion Nochixtlan (Mexico)',1,1,0),(2175,0,101470,'Auburn','Australia','AU','Auburn (Australia)',1,1,0),(2176,0,101471,'Auvelais','Belgium','BE','Auvelais (Belgium)',1,1,0),(2177,0,101472,'Avignonet-de-Lauragais','France','FR','Avignonet-de-Lauragais (France)',1,1,0),(2178,1887,101473,'Awaji','Japan','JP','Awaji (Japan)',1,1,0),(2179,0,101474,'Ayampe',NULL,NULL,'Ayampe ()',1,1,0),(2180,1913,101475,'Ayios Dhimitrios','Greece','GR','Ayios Dhimitrios (Greece)',1,1,0),(2181,0,101476,'Azov','Russia','RU','Azov (Russia)',1,1,0),(2182,0,101477,'Azua','Dominican Republic','DO','Azua (Dominican Republic)',1,1,0),(2183,1945,101478,'Azumino','Japan','JP','Azumino (Japan)',1,1,0),(2184,0,101479,'Baar-Wanderath','Germany','DE','Baar-Wanderath (Germany)',1,1,0),(2185,0,101480,'Babolna','Hungary','HU','Babolna (Hungary)',1,1,0),(2186,0,101481,'Bacilly','France','FR','Bacilly (France)',1,1,0),(2187,0,101482,'Bad Salzhausen','Germany','DE','Bad Salzhausen (Germany)',1,1,0),(2188,0,101483,'Bage','Brazil','BR','Bage (Brazil)',1,1,0),(2189,0,101484,'Bagolino','Italy','IT','Bagolino (Italy)',1,1,0),(2190,0,101486,'Balatre','Belgium','BE','Balatre (Belgium)',1,1,0),(2191,0,101487,'Balerna','Switzerland','CH','Balerna (Switzerland)',1,1,0),(2192,0,101488,'Balfour','South Africa','ZA','Balfour (South Africa)',1,1,0),(2193,2186,101489,'Ballygawley','Ireland','IE','Ballygawley (Ireland)',1,1,0),(2194,0,101490,'Ban Phai','Thailand','TH','Ban Phai (Thailand)',1,1,0),(2195,0,101491,'Bang Sao Thong','Thailand','TH','Bang Sao Thong (Thailand)',1,1,0),(2196,0,101492,'Banneux','Belgium','BE','Banneux (Belgium)',1,1,0),(2197,0,101493,'Banovce nad Bebravoua','Slovakia','SK','Banovce nad Bebravoua (Slovakia)',1,1,0),(2198,0,101494,'Banting','Malaysia','MY','Banting (Malaysia)',1,1,0),(2199,0,101495,'Bao Loc','Vietnam','VN','Bao Loc (Vietnam)',1,1,0),(2200,0,101496,'Barnetby le Wold','United Kingdom','UK','Barnetby le Wold (United Kingdom)',1,1,0),(2201,0,101497,'Barra Nova','Brazil','BR','Barra Nova (Brazil)',1,1,0),(2202,0,101498,'Bassano','Canada','CA','Bassano (Canada)',1,1,0),(2203,0,101499,'Battlesbridge','United Kingdom','UK','Battlesbridge (United Kingdom)',1,1,0),(2204,0,101500,'Batu Karas','Indonesia','ID','Batu Karas (Indonesia)',1,1,0),(2205,0,101501,'Baycliff','United Kingdom','UK','Baycliff (United Kingdom)',1,1,0),(2206,0,101502,'Bayindir','Turkey','TR','Bayindir (Turkey)',1,1,0),(2207,0,101503,'Beauce','Canada','CA','Beauce (Canada)',1,1,0),(2208,0,101504,'Beaurains','France','FR','Beaurains (France)',1,1,0),(2209,0,101505,'Bechstedt','Germany','DE','Bechstedt (Germany)',1,1,0),(2210,2690,101506,'Bedonia','Italy','IT','Bedonia (Italy)',1,1,0),(2211,0,101507,'Beinwil am See','Switzerland','CH','Beinwil am See (Switzerland)',1,1,0),(2212,0,101508,'Belen de Umbria','Colombia','CO','Belen de Umbria (Colombia)',1,1,0),(2213,0,101510,'Gangelt','Germany','DE','Gangelt (Germany)',1,1,0),(2214,0,101511,'Gangi','Italy','IT','Gangi (Italy)',1,1,0),(2215,0,101512,'Garboldisham','United Kingdom','UK','Garboldisham (United Kingdom)',1,1,0),(2216,0,101513,'Gargallo','Spain','ES','Gargallo (Spain)',1,1,0),(2217,0,101514,'Gaspesie National Park','Canada','CA','Gaspesie National Park (Canada)',1,1,0),(2218,0,101515,'Gattieres','France','FR','Gattieres (France)',1,1,0),(2219,0,101516,'Gaziemir','Turkey','TR','Gaziemir (Turkey)',1,1,0),(2220,10325,101517,'Gerik','Malaysia','MY','Gerik (Malaysia)',1,1,0),(2221,0,101518,'Giberville','France','FR','Giberville (France)',1,1,0),(2222,0,101519,'Gien','France','FR','Gien (France)',1,1,0),(2223,10416,101520,'Gilgil','Kenya','KE','Gilgil (Kenya)',1,1,0),(2224,0,101521,'Gilligham','United Kingdom','UK','Gilligham (United Kingdom)',1,1,0),(2225,0,101522,'Giron','Colombia','CO','Giron (Colombia)',1,1,0),(2226,0,101523,'Giungano','Italy','IT','Giungano (Italy)',1,1,0),(2227,0,101524,'Glavatartsi','Bulgaria','BG','Glavatartsi (Bulgaria)',1,1,0),(2228,10502,101525,'Glebe','Australia','AU','Glebe (Australia)',1,1,0),(2229,0,101526,'Golhisar','Turkey','TR','Golhisar (Turkey)',1,1,0),(2230,0,101527,'Gollenberg','Germany','DE','Gollenberg (Germany)',1,1,0),(2231,0,101528,'Gorna Oryakhovitsa','Bulgaria','BG','Gorna Oryakhovitsa (Bulgaria)',1,1,0),(2232,0,101529,'Gornje Selo','Croatia','HR','Gornje Selo (Croatia)',1,1,0),(2233,0,101530,'Goseong','South Korea','KR','Goseong (South Korea)',1,1,0),(2234,0,101531,'Gouzon','France','FR','Gouzon (France)',1,1,0),(2235,0,101532,'Grayshott','United Kingdom','UK','Grayshott (United Kingdom)',1,1,0),(2236,10982,101533,'Greytown','New Zealand','NZ','Greytown (New Zealand)',1,1,0),(2237,0,101534,'Gro? Dratow','Germany','DE','Gro? Dratow (Germany)',1,1,0),(2238,0,101535,'Grums','Sweden','SE','Grums (Sweden)',1,1,0),(2239,0,101536,'Guanhaes','Brazil','BR','Guanhaes (Brazil)',1,1,0),(2240,0,101537,'Guaramirim','Brazil','BR','Guaramirim (Brazil)',1,1,0),(2241,0,101538,'Guimaras','Philippines','PH','Guimaras (Philippines)',1,1,0),(2242,0,101539,'Guissona','Spain','ES','Guissona (Spain)',1,1,0),(2243,0,101540,'Gure','Turkey','TR','Gure (Turkey)',1,1,0),(2244,0,101541,'Haarlo','Netherlands','NL','Haarlo (Netherlands)',1,1,0),(2245,0,101542,'Hachijo','Japan','JP','Hachijo (Japan)',1,1,0),(2246,0,101543,'Had Nes','Israel','IL','Had Nes (Israel)',1,1,0),(2247,0,101544,'Hadspen','Australia','AU','Hadspen (Australia)',1,1,0),(2248,0,101545,'Harmanli','Bulgaria','BG','Harmanli (Bulgaria)',1,1,0),(2249,11600,101546,'Haslev','Denmark','DK','Haslev (Denmark)',1,1,0),(2250,0,101547,'Hayashima','Japan','JP','Hayashima (Japan)',1,1,0),(2251,0,101548,'Hernadvecse','Hungary','HU','Hernadvecse (Hungary)',1,1,0),(2252,0,101549,'Hettstedt','Germany','DE','Hettstedt (Germany)',1,1,0),(2253,0,101550,'Heusden (Gem Asten)','Netherlands','NL','Heusden (Gem Asten) (Netherlands)',1,1,0),(2254,0,101551,'Hjerkinn','Norway','NO','Hjerkinn (Norway)',1,1,0),(2255,0,101552,'Holingol','China','CN','Holingol (China)',1,1,0),(2256,0,101553,'Hopewell Cape','Canada','CA','Hopewell Cape (Canada)',1,1,0),(2257,0,101554,'Hora Sfakion','Greece','GR','Hora Sfakion (Greece)',1,1,0),(2258,0,101555,'Hornsby','Australia','AU','Hornsby (Australia)',1,1,0),(2259,0,101556,'Hortolandia','Brazil','BR','Hortolandia (Brazil)',1,1,0),(2260,0,101557,'Hrebinky','Ukraine','UA','Hrebinky (Ukraine)',1,1,0),(2261,0,101558,'Amphoe Doem Bang Nang Buat','Thailand','TH','Amphoe Doem Bang Nang Buat (Thailand)',1,1,0),(2262,972,101559,'Amqui','Canada','CA','Amqui (Canada)',1,1,0),(2263,0,101560,'Anaklia','Georgia','GE','Anaklia (Georgia)',1,1,0),(2264,0,101561,'Analandia','Brazil','BR','Analandia (Brazil)',1,1,0),(2265,0,101562,'Anapoima','Colombia','CO','Anapoima (Colombia)',1,1,0),(2266,0,101563,'Angangueo','Mexico','MX','Angangueo (Mexico)',1,1,0),(2267,0,101565,'Ano Zakhlorou','Greece','GR','Ano Zakhlorou (Greece)',1,1,0),(2268,0,101566,'Anokhovo','Russia','RU','Anokhovo (Russia)',1,1,0),(2269,0,101567,'Anthemia','Greece','GR','Anthemia (Greece)',1,1,0),(2270,0,101568,'Anzonico','Switzerland','CH','Anzonico (Switzerland)',1,1,0),(2271,0,101569,'Araripina','Brazil','BR','Araripina (Brazil)',1,1,0),(2272,0,101570,'Arba','Italy','IT','Arba (Italy)',1,1,0),(2273,0,101571,'Arcegno','Switzerland','CH','Arcegno (Switzerland)',1,1,0),(2274,0,101572,'Arcos','Spain','ES','Arcos (Spain)',1,1,0),(2275,0,101573,'Ardesen','Turkey','TR','Ardesen (Turkey)',1,1,0),(2276,0,101574,'Arkendale','United Kingdom','UK','Arkendale (United Kingdom)',1,1,0),(2277,0,101575,'Armoy','France','FR','Armoy (France)',1,1,0),(2278,0,101576,'Arnaia','Greece','GR','Arnaia (Greece)',1,1,0),(2279,0,101577,'Arquata del Tronto','Italy','IT','Arquata del Tronto (Italy)',1,1,0),(2280,0,101578,'Asch','Netherlands','NL','Asch (Netherlands)',1,1,0),(2281,0,101579,'Asenovgrad','Bulgaria','BG','Asenovgrad (Bulgaria)',1,1,0),(2282,0,101580,'Assu','Brazil','BR','Assu (Brazil)',1,1,0),(2283,1690,101581,'Atholville','Canada','CA','Atholville (Canada)',1,1,0),(2284,0,101582,'Audru','Estonia','EE','Audru (Estonia)',1,1,0),(2285,0,101583,'Avrig','Romania','RO','Avrig (Romania)',1,1,0),(2286,0,101584,'Aya','Russia','RU','Aya (Russia)',1,1,0),(2287,0,101585,'Ayas','Turkey','TR','Ayas (Turkey)',1,1,0),(2288,0,101586,'Baarle-Nassau','Netherlands','NL','Baarle-Nassau (Netherlands)',1,1,0),(2289,0,101587,'Babakale','Turkey','TR','Babakale (Turkey)',1,1,0),(2290,0,101588,'Badia Pratiglia','Italy','IT','Badia Pratiglia (Italy)',1,1,0),(2291,0,101589,'Badulla','Sri Lanka','LK','Badulla (Sri Lanka)',1,1,0),(2292,2034,101590,'Bagnoregio','Italy','IT','Bagnoregio (Italy)',1,1,0),(2293,0,101591,'Bahias de Huatulco','Mexico','MX','Bahias de Huatulco (Mexico)',1,1,0),(2294,0,101592,'Bakers Creek','Australia','AU','Bakers Creek (Australia)',1,1,0),(2295,0,101593,'Balfour','Canada','CA','Balfour (Canada)',1,1,0),(2296,0,101594,'Balkanets','Bulgaria','BG','Balkanets (Bulgaria)',1,1,0),(2297,0,101595,'Ballinluig','United Kingdom','UK','Ballinluig (United Kingdom)',1,1,0),(2298,0,101596,'Baltimore','Canada','CA','Baltimore (Canada)',1,1,0),(2299,0,101597,'Balvi','Latvia','LV','Balvi (Latvia)',1,1,0),(2300,0,101598,'Bananeiras','Brazil','BR','Bananeiras (Brazil)',1,1,0),(2301,0,101599,'Bantay','Philippines','PH','Bantay (Philippines)',1,1,0),(2302,0,101600,'Bapaume','France','FR','Bapaume (France)',1,1,0),(2303,0,101601,'Barrhead','Canada','CA','Barrhead (Canada)',1,1,0),(2304,2500,101602,'Bass Hill','Australia','AU','Bass Hill (Australia)',1,1,0),(2305,0,101603,'Batatais','Brazil','BR','Batatais (Brazil)',1,1,0),(2306,0,101604,'Batchawana Bay','Canada','CA','Batchawana Bay (Canada)',1,1,0),(2307,0,101605,'Battery Hill','Australia','AU','Battery Hill (Australia)',1,1,0),(2308,0,101606,'Bayaguana','Dominican Republic','DO','Bayaguana (Dominican Republic)',1,1,0),(2309,0,101607,'Beachmere','Australia','AU','Beachmere (Australia)',1,1,0),(2310,0,101608,'Abda','Hungary','HU','Abda (Hungary)',1,1,0),(2311,0,101609,'Abre-Campo','Brazil','BR','Abre-Campo (Brazil)',1,1,0),(2312,0,101610,'Acacia Ridge','Australia','AU','Acacia Ridge (Australia)',1,1,0),(2313,0,101611,'Acailandia','Brazil','BR','Acailandia (Brazil)',1,1,0),(2314,0,101612,'Achene','Belgium','BE','Achene (Belgium)',1,1,0),(2315,0,101613,'Achtopol','Bulgaria','BG','Achtopol (Bulgaria)',1,1,0),(2316,0,101614,'Adjud','Romania','RO','Adjud (Romania)',1,1,0),(2317,0,101616,'Afumati','Romania','RO','Afumati (Romania)',1,1,0),(2318,0,101617,'Aggtelek','Hungary','HU','Aggtelek (Hungary)',1,1,0),(2319,0,101618,'Agioi Apostoli','Greece','GR','Agioi Apostoli (Greece)',1,1,0),(2320,0,101619,'Aguazul','Colombia','CO','Aguazul (Colombia)',1,1,0),(2321,0,101620,'Aikton','United Kingdom','UK','Aikton (United Kingdom)',1,1,0),(2322,0,101621,'Akkeshi','Japan','JP','Akkeshi (Japan)',1,1,0),(2323,0,101622,'Alcala de la Jovada','Spain','ES','Alcala de la Jovada (Spain)',1,1,0),(2324,0,101623,'Aldinga','Australia','AU','Aldinga (Australia)',1,1,0),(2325,0,101624,'Aliaga','Spain','ES','Aliaga (Spain)',1,1,0),(2326,758,101626,'Alpignano','Italy','IT','Alpignano (Italy)',1,1,0),(2327,0,101627,'Alstonville','Australia','AU','Alstonville (Australia)',1,1,0),(2328,0,101628,'Alt Schalkowitz','Poland','PL','Alt Schalkowitz (Poland)',1,1,0),(2329,0,101629,'Altier','France','FR','Altier (France)',1,1,0),(2330,930,101630,'Amfilochia','Greece','GR','Amfilochia (Greece)',1,1,0),(2331,0,101631,'Amqa','Israel','IL','Amqa (Israel)',1,1,0),(2332,0,101632,'Anderen','Netherlands','NL','Anderen (Netherlands)',1,1,0),(2333,0,101633,'Ane','Netherlands','NL','Ane (Netherlands)',1,1,0),(2334,0,101634,'Anserall','Spain','ES','Anserall (Spain)',1,1,0),(2335,0,101635,'Antonio Prado','Brazil','BR','Antonio Prado (Brazil)',1,1,0),(2336,0,101636,'Antsanitia','Madagascar','MG','Antsanitia (Madagascar)',1,1,0),(2337,0,101637,'Aqualand','Greece','GR','Aqualand (Greece)',1,1,0),(2338,0,101638,'Arantza','Spain','ES','Arantza (Spain)',1,1,0),(2339,0,101639,'Arcis-sur-Aube','France','FR','Arcis-sur-Aube (France)',1,1,0),(2340,0,101640,'Arcos','Brazil','BR','Arcos (Brazil)',1,1,0),(2341,0,101641,'Ardia','Spain','ES','Ardia (Spain)',1,1,0),(2342,0,101642,'Aregua','Paraguay','PY','Aregua (Paraguay)',1,1,0),(2343,1407,101643,'Arima','Trinidad and Tobago','TT','Arima (Trinidad and Tobago)',1,1,0),(2344,0,101644,'Arkhyz','Russia','RU','Arkhyz (Russia)',1,1,0),(2345,0,101645,'Arnac-Pompadour','France','FR','Arnac-Pompadour (France)',1,1,0),(2346,0,101646,'Arroyomolinos de la Vera','Spain','ES','Arroyomolinos de la Vera (Spain)',1,1,0),(2347,0,101647,'Arthurs Seat','Australia','AU','Arthurs Seat (Australia)',1,1,0),(2348,0,101648,'Aspremont','France','FR','Aspremont (France)',1,1,0),(2349,0,101649,'Atina','Italy','IT','Atina (Italy)',1,1,0),(2350,0,101650,'Atrybash','Russia','RU','Atrybash (Russia)',1,1,0),(2351,0,101651,'Audinghen','France','FR','Audinghen (France)',1,1,0),(2352,1905,101652,'Ayen','France','FR','Ayen (France)',1,1,0),(2353,0,101653,'Bab Boudir','Morocco','MA','Bab Boudir (Morocco)',1,1,0),(2354,0,101654,'Bachevo','Bulgaria','BG','Bachevo (Bulgaria)',1,1,0),(2355,0,101655,'Badia Polesine','Italy','IT','Badia Polesine (Italy)',1,1,0),(2356,0,101656,'Bagnolo del Salento','Italy','IT','Bagnolo del Salento (Italy)',1,1,0),(2357,0,101657,'Bahia de Kino','Mexico','MX','Bahia de Kino (Mexico)',1,1,0),(2358,0,101658,'Bajina Basta','Serbia','RS','Bajina Basta (Serbia)',1,1,0),(2359,0,101659,'Balaklawa','Ukraine','UA','Balaklawa (Ukraine)',1,1,0),(2360,0,101660,'Balangero','Italy','IT','Balangero (Italy)',1,1,0),(2361,0,101661,'Balquhidder','United Kingdom','UK','Balquhidder (United Kingdom)',1,1,0),(2362,0,101662,'Ban Khun Yuam','Thailand','TH','Ban Khun Yuam (Thailand)',1,1,0),(2363,0,101663,'Bangalow','Australia','AU','Bangalow (Australia)',1,1,0),(2364,0,101664,'Banksia Beach','Australia','AU','Banksia Beach (Australia)',1,1,0),(2365,0,101665,'Bankuti Menedekhaz','Hungary','HU','Bankuti Menedekhaz (Hungary)',1,1,0),(2366,0,101666,'Baranovichi','Belarus','BY','Baranovichi (Belarus)',1,1,0),(2367,0,101667,'Barbalha','Brazil','BR','Barbalha (Brazil)',1,1,0),(2368,0,101668,'Barbosa',NULL,NULL,'Barbosa ()',1,1,0),(2369,0,101669,'Barcarena','Brazil','BR','Barcarena (Brazil)',1,1,0),(2370,0,101670,'Khamyshki','Russia','RU','Khamyshki (Russia)',1,1,0),(2371,0,101672,'Kiffa','Mauritania','MR','Kiffa (Mauritania)',1,1,0),(2372,0,101673,'Kikugawa','Japan','JP','Kikugawa (Japan)',1,1,0),(2373,0,101674,'Kingston (Devon)','United Kingdom','UK','Kingston (Devon) (United Kingdom)',1,1,0),(2374,0,101675,'Kingston Blount','United Kingdom','UK','Kingston Blount (United Kingdom)',1,1,0),(2375,0,101676,'Kinnegad','Ireland','IE','Kinnegad (Ireland)',1,1,0),(2376,14098,101677,'Kinneret','Israel','IL','Kinneret (Israel)',1,1,0),(2377,0,101678,'Kirowsk','Russia','RU','Kirowsk (Russia)',1,1,0),(2378,0,101679,'Kiskoros','Hungary','HU','Kiskoros (Hungary)',1,1,0),(2379,0,101680,'Kjopsvik','Norway','NO','Kjopsvik (Norway)',1,1,0),(2380,0,101681,'Klawer','South Africa','ZA','Klawer (South Africa)',1,1,0),(2381,0,101682,'Kleinmaischeid','Germany','DE','Kleinmaischeid (Germany)',1,1,0),(2382,0,101683,'Knared','Sweden','SE','Knared (Sweden)',1,1,0),(2383,0,101684,'Ko Sichang (Amphoe Ko Sichang)','Thailand','TH','Ko Sichang (Amphoe Ko Sichang) (Thailand)',1,1,0),(2384,0,101685,'Koh Jum','Thailand','TH','Koh Jum (Thailand)',1,1,0),(2385,0,101686,'Kohtla-Jarve','Estonia','EE','Kohtla-Jarve (Estonia)',1,1,0),(2386,0,101687,'Koltschugino','Russia','RU','Koltschugino (Russia)',1,1,0),(2387,0,101688,'Komagane','Japan','JP','Komagane (Japan)',1,1,0),(2388,0,101689,'Kondopoga','Russia','RU','Kondopoga (Russia)',1,1,0),(2389,0,101690,'Konigswartha','Germany','DE','Konigswartha (Germany)',1,1,0),(2390,0,101691,'Konina-Polanki','Poland','PL','Konina-Polanki (Poland)',1,1,0),(2391,0,101692,'Konjic','Bosnia and Herzegowina','BA','Konjic (Bosnia and Herzegowina)',1,1,0),(2392,14365,101693,'Konstantynow Lodzki','Poland','PL','Konstantynow Lodzki (Poland)',1,1,0),(2393,0,101694,'Kornych','Ukraine','UA','Kornych (Ukraine)',1,1,0),(2394,0,101695,'Korostiv','Ukraine','UA','Korostiv (Ukraine)',1,1,0),(2395,0,101697,'Kovrov','Russia','RU','Kovrov (Russia)',1,1,0),(2396,0,101698,'Kozieglowy','Poland','PL','Kozieglowy (Poland)',1,1,0),(2397,0,101699,'Kratovo','Macedonia','MK','Kratovo (Macedonia)',1,1,0),(2398,0,101700,'Krinitsa','Russia','RU','Krinitsa (Russia)',1,1,0),(2399,0,101701,'Kronkup','Australia','AU','Kronkup (Australia)',1,1,0),(2400,0,101702,'Kurayoshi','Japan','JP','Kurayoshi (Japan)',1,1,0),(2401,0,101703,'Kurovo','Russia','RU','Kurovo (Russia)',1,1,0),(2402,0,101704,'Kuvshinovo','Russia','RU','Kuvshinovo (Russia)',1,1,0),(2403,0,101705,'Kyneton','Australia','AU','Kyneton (Australia)',1,1,0),(2404,0,101706,'L’Etang Bertrand','France','FR','L’Etang Bertrand (France)',1,1,0),(2405,0,101707,'La Bastide-Puylaurent','France','FR','La Bastide-Puylaurent (France)',1,1,0),(2406,0,101708,'La Ceja','Colombia','CO','La Ceja (Colombia)',1,1,0),(2407,31295,101709,'La Courneuve','France','FR','La Courneuve (France)',1,1,0),(2408,0,101710,'La Ese','Costa Rica','CR','La Ese (Costa Rica)',1,1,0),(2409,0,101711,'La Manzanilla de la Paz','Mexico','MX','La Manzanilla de la Paz (Mexico)',1,1,0),(2410,0,101712,'Ermington','United Kingdom','UK','Ermington (United Kingdom)',1,1,0),(2411,0,101713,'Etables sur Mer','France','FR','Etables sur Mer (France)',1,1,0),(2412,0,101714,'Eygliers','France','FR','Eygliers (France)',1,1,0),(2413,0,101715,'Falticeni','Romania','RO','Falticeni (Romania)',1,1,0),(2414,9318,101716,'Feltre','Italy','IT','Feltre (Italy)',1,1,0),(2415,9320,101717,'Fenelon Falls','Canada','CA','Fenelon Falls (Canada)',1,1,0),(2416,0,101718,'Ficarra','Italy','IT','Ficarra (Italy)',1,1,0),(2417,0,101719,'Fiesso Umbertiano','Italy','IT','Fiesso Umbertiano (Italy)',1,1,0),(2418,0,101720,'Fiume Veneto','Italy','IT','Fiume Veneto (Italy)',1,1,0),(2419,0,101721,'Fornos de Algodres','Portugal','PT','Fornos de Algodres (Portugal)',1,1,0),(2420,0,101722,'Forro','Hungary','HU','Forro (Hungary)',1,1,0),(2421,0,101723,'Foxt','United Kingdom','UK','Foxt (United Kingdom)',1,1,0),(2422,0,101724,'Frabosa Soprana','Italy','IT','Frabosa Soprana (Italy)',1,1,0),(2423,9820,101725,'Frehel','France','FR','Frehel (France)',1,1,0),(2424,0,101726,'Freshwater Creek','Australia','AU','Freshwater Creek (Australia)',1,1,0),(2425,0,101727,'Fu\'an (Provinz Fujian)','China','CN','Fu\'an (Provinz Fujian) (China)',1,1,0),(2426,0,101728,'Fuente de Piedra','Spain','ES','Fuente de Piedra (Spain)',1,1,0),(2427,0,101729,'Fuente Encalada','Spain','ES','Fuente Encalada (Spain)',1,1,0),(2428,0,101730,'Fujieda','Japan','JP','Fujieda (Japan)',1,1,0),(2429,0,101731,'Fujinomiya','Japan','JP','Fujinomiya (Japan)',1,1,0),(2430,0,101732,'Fusagasuga','Colombia','CO','Fusagasuga (Colombia)',1,1,0),(2431,0,101733,'Gallandau','Slovakia','SK','Gallandau (Slovakia)',1,1,0),(2432,0,101734,'Gambita','Colombia','CO','Gambita (Colombia)',1,1,0),(2433,0,101735,'Gaoyou','China','CN','Gaoyou (China)',1,1,0),(2434,0,101736,'Gapyeong','South Korea','KR','Gapyeong (South Korea)',1,1,0),(2435,0,101737,'Garesnica','Croatia','HR','Garesnica (Croatia)',1,1,0),(2436,0,101738,'Garganta De Los Montes','Spain','ES','Garganta De Los Montes (Spain)',1,1,0),(2437,0,101739,'Gaspar','Brazil','BR','Gaspar (Brazil)',1,1,0),(2438,0,101740,'Gedser','Denmark','DK','Gedser (Denmark)',1,1,0),(2439,0,101741,'General Juan Madariaga','Argentina','AR','General Juan Madariaga (Argentina)',1,1,0),(2440,0,101742,'Genouillac','France','FR','Genouillac (France)',1,1,0),(2441,0,101743,'Geoje City','South Korea','KR','Geoje City (South Korea)',1,1,0),(2442,0,101744,'Gilsland','United Kingdom','UK','Gilsland (United Kingdom)',1,1,0),(2443,0,101745,'Gimcheon','South Korea','KR','Gimcheon (South Korea)',1,1,0),(2444,0,101746,'Gkoura','Greece','GR','Gkoura (Greece)',1,1,0),(2445,0,101747,'Glucholazy','Poland','PL','Glucholazy (Poland)',1,1,0),(2446,0,101748,'Gnotzheim','Germany','DE','Gnotzheim (Germany)',1,1,0),(2447,0,101749,'Goianesia','Brazil','BR','Goianesia (Brazil)',1,1,0),(2448,0,101750,'Golina','Poland','PL','Golina (Poland)',1,1,0),(2449,0,101751,'Golino','Switzerland','CH','Golino (Switzerland)',1,1,0),(2450,0,101752,'Gonyu','Hungary','HU','Gonyu (Hungary)',1,1,0),(2451,0,101753,'Gorochowez','Russia','RU','Gorochowez (Russia)',1,1,0),(2452,0,101754,'Goto','Japan','JP','Goto (Japan)',1,1,0),(2453,10801,101755,'Gram','Denmark','DK','Gram (Denmark)',1,1,0),(2454,0,101756,'Grand Rapids','Canada','CA','Grand Rapids (Canada)',1,1,0),(2455,0,101757,'Grand-Pre','Canada','CA','Grand-Pre (Canada)',1,1,0),(2456,0,101758,'Gransebieth/ Zarrentin','Germany','DE','Gransebieth/ Zarrentin (Germany)',1,1,0),(2457,0,101759,'Great Easton','United Kingdom','UK','Great Easton (United Kingdom)',1,1,0),(2458,10911,101760,'Grecia','Costa Rica','CR','Grecia (Costa Rica)',1,1,0),(2459,0,101761,'Gremyachinsk','Russia','RU','Gremyachinsk (Russia)',1,1,0),(2460,0,101762,'Grodzisk Mazowiecki','Poland','PL','Grodzisk Mazowiecki (Poland)',1,1,0),(2461,0,101763,'Grundsund','Sweden','SE','Grundsund (Sweden)',1,1,0),(2462,0,101764,'Gryt','Sweden','SE','Gryt (Sweden)',1,1,0),(2463,0,101765,'Guarda do Embau','Brazil','BR','Guarda do Embau (Brazil)',1,1,0),(2464,0,101766,'Gudo','Switzerland','CH','Gudo (Switzerland)',1,1,0),(2465,0,101767,'Guildford','Australia','AU','Guildford (Australia)',1,1,0),(2466,11206,101768,'Gumushane','Turkey','TR','Gumushane (Turkey)',1,1,0),(2467,11226,101769,'Guriri','Brazil','BR','Guriri (Brazil)',1,1,0),(2468,0,101770,'Gurjewsk','Russia','RU','Gurjewsk (Russia)',1,1,0),(2469,0,101771,'Guzeripl\'','Russia','RU','Guzeripl\' (Russia)',1,1,0),(2470,0,101772,'Gweek','United Kingdom','UK','Gweek (United Kingdom)',1,1,0),(2471,0,101773,'Habere-Lullin','France','FR','Habere-Lullin (France)',1,1,0),(2472,0,101774,'Haimen','China','CN','Haimen (China)',1,1,0),(2473,0,101775,'Hainasch','Latvia','LV','Hainasch (Latvia)',1,1,0),(2474,0,101776,'Hakusan','Japan','JP','Hakusan (Japan)',1,1,0),(2475,0,101777,'Ham-Sud','Canada','CA','Ham-Sud (Canada)',1,1,0),(2476,0,101778,'Hamura','Japan','JP','Hamura (Japan)',1,1,0),(2477,0,101779,'Harbour Grace','Canada','CA','Harbour Grace (Canada)',1,1,0),(2478,0,101780,'Canamero','Spain','ES','Canamero (Spain)',1,1,0),(2479,0,101781,'Canete','Spain','ES','Canete (Spain)',1,1,0),(2480,0,101782,'Canim Lake','Canada','CA','Canim Lake (Canada)',1,1,0),(2481,5015,101783,'Cannonvale','Australia','AU','Cannonvale (Australia)',1,1,0),(2482,0,101784,'Canonbie','United Kingdom','UK','Canonbie (United Kingdom)',1,1,0),(2483,0,101785,'Canosio','Italy','IT','Canosio (Italy)',1,1,0),(2484,0,101786,'Cantenay-Epinard','France','FR','Cantenay-Epinard (France)',1,1,0),(2485,5041,101787,'Canungra','Australia','AU','Canungra (Australia)',1,1,0),(2486,0,101788,'Capaci','Italy','IT','Capaci (Italy)',1,1,0),(2487,0,101789,'Capao da Canoa','Brazil','BR','Capao da Canoa (Brazil)',1,1,0),(2488,0,101790,'Capinzal','Brazil','BR','Capinzal (Brazil)',1,1,0),(2489,5085,101791,'Capitolio','Brazil','BR','Capitolio (Brazil)',1,1,0),(2490,0,101792,'Caprile','Italy','IT','Caprile (Italy)',1,1,0),(2491,0,101793,'Carate Urio','Italy','IT','Carate Urio (Italy)',1,1,0),(2492,0,101794,'Carbonara al Ticino','Italy','IT','Carbonara al Ticino (Italy)',1,1,0),(2493,5150,101795,'Cardston','Canada','CA','Cardston (Canada)',1,1,0),(2494,0,101796,'Carenero Island','Panama','PA','Carenero Island (Panama)',1,1,0),(2495,0,101797,'Carenno','Italy','IT','Carenno (Italy)',1,1,0),(2496,0,101798,'Carhuaz','Peru','PE','Carhuaz (Peru)',1,1,0),(2497,5165,101799,'Carisio','Italy','IT','Carisio (Italy)',1,1,0),(2498,0,101800,'Carlet','Spain','ES','Carlet (Spain)',1,1,0),(2499,0,101801,'Carries','Haiti','HT','Carries (Haiti)',1,1,0),(2500,0,101802,'Castel di Tora','Italy','IT','Castel di Tora (Italy)',1,1,0),(2501,0,101803,'Cavnic','Romania','RO','Cavnic (Romania)',1,1,0),(2502,5512,101804,'Caxambu','Brazil','BR','Caxambu (Brazil)',1,1,0),(2503,0,101805,'Celles','Belgium','BE','Celles (Belgium)',1,1,0),(2504,0,101806,'Ceranesi','Italy','IT','Ceranesi (Italy)',1,1,0),(2505,0,101807,'Ceraukste parish','Latvia','LV','Ceraukste parish (Latvia)',1,1,0),(2506,0,101808,'Chang Khlan','Thailand','TH','Chang Khlan (Thailand)',1,1,0),(2507,0,101809,'Chateaubelair','St. Vincent & the Grenadines','VC','Chateaubelair (St. Vincent & the Grenadines)',1,1,0),(2508,0,101810,'Chateaumeillant','France','FR','Chateaumeillant (France)',1,1,0),(2509,0,101811,'Chateauneuf-d\'Ille-et-Vilaine','France','FR','Chateauneuf-d\'Ille-et-Vilaine (France)',1,1,0),(2510,0,101812,'Chateauneuf-sur-Loire','France','FR','Chateauneuf-sur-Loire (France)',1,1,0),(2511,0,101813,'Chelton','Canada','CA','Chelton (Canada)',1,1,0),(2512,0,101814,'Chenay','France','FR','Chenay (France)',1,1,0),(2513,0,101815,'Chillingham','Australia','AU','Chillingham (Australia)',1,1,0),(2514,0,101816,'Chilworth','United Kingdom','UK','Chilworth (United Kingdom)',1,1,0),(2515,0,101817,'Chojnice','Poland','PL','Chojnice (Poland)',1,1,0),(2516,0,101818,'Ciechanowiec','Poland','PL','Ciechanowiec (Poland)',1,1,0),(2517,0,101819,'Cimina','Italy','IT','Cimina (Italy)',1,1,0),(2518,0,101820,'Circasia','Colombia','CO','Circasia (Colombia)',1,1,0),(2519,0,101821,'Cislago','Italy','IT','Cislago (Italy)',1,1,0),(2520,0,101822,'Ciudad Bolivar','Colombia','CO','Ciudad Bolivar (Colombia)',1,1,0),(2521,0,101823,'Civitella Alfedena','Italy','IT','Civitella Alfedena (Italy)',1,1,0),(2522,0,101824,'Claussnitz','Germany','DE','Claussnitz (Germany)',1,1,0),(2523,0,101825,'Cocentaina','Spain','ES','Cocentaina (Spain)',1,1,0),(2524,0,101826,'Coll de Nargo','Spain','ES','Coll de Nargo (Spain)',1,1,0),(2525,0,101827,'Colmar','Poland','PL','Colmar (Poland)',1,1,0),(2526,0,101828,'Colyton','Australia','AU','Colyton (Australia)',1,1,0),(2527,0,101829,'Compostela','Philippines','PH','Compostela (Philippines)',1,1,0),(2528,0,101830,'Conchal','Brazil','BR','Conchal (Brazil)',1,1,0),(2529,0,101831,'Concordia Sagittaria','Italy','IT','Concordia Sagittaria (Italy)',1,1,0),(2530,0,101832,'Coolaroo','Australia','AU','Coolaroo (Australia)',1,1,0),(2531,6893,101833,'Copparo','Italy','IT','Copparo (Italy)',1,1,0),(2532,0,101834,'Cordenons','Italy','IT','Cordenons (Italy)',1,1,0),(2533,0,101835,'Corumba de Goias','Brazil','BR','Corumba de Goias (Brazil)',1,1,0),(2534,0,101836,'Cota','Colombia','CO','Cota (Colombia)',1,1,0),(2535,0,101837,'Cothen','Netherlands','NL','Cothen (Netherlands)',1,1,0),(2536,0,101838,'Couzeix','France','FR','Couzeix (France)',1,1,0),(2537,7108,101839,'Covadonga','Spain','ES','Covadonga (Spain)',1,1,0),(2538,0,101840,'Cruzeiro','Brazil','BR','Cruzeiro (Brazil)',1,1,0),(2539,0,101841,'Culcairn','Australia','AU','Culcairn (Australia)',1,1,0),(2540,0,101842,'Cultus Lake','Canada','CA','Cultus Lake (Canada)',1,1,0),(2541,0,101843,'Cunda Adasi','Turkey','TR','Cunda Adasi (Turkey)',1,1,0),(2542,7396,101844,'Cursi','Italy','IT','Cursi (Italy)',1,1,0),(2543,0,101845,'Cuxac-Cabardes','France','FR','Cuxac-Cabardes (France)',1,1,0),(2544,0,101846,'Dagneux','France','FR','Dagneux (France)',1,1,0),(2545,0,101847,'Dalung','Indonesia','ID','Dalung (Indonesia)',1,1,0),(2546,0,101848,'Damnoen Saduak District','Thailand','TH','Damnoen Saduak District (Thailand)',1,1,0),(2547,0,101850,'Dazio','Italy','IT','Dazio (Italy)',1,1,0),(2548,0,101851,'Delchevo','Bulgaria','BG','Delchevo (Bulgaria)',1,1,0),(2549,0,101852,'Derbent','Russia','RU','Derbent (Russia)',1,1,0),(2550,0,101853,'Dessel','Belgium','BE','Dessel (Belgium)',1,1,0),(2551,0,101854,'Didymoticho','Greece','GR','Didymoticho (Greece)',1,1,0),(2552,0,101855,'Dien Chau','Vietnam','VN','Dien Chau (Vietnam)',1,1,0),(2553,0,101856,'Dilsen-Stokkem','Belgium','BE','Dilsen-Stokkem (Belgium)',1,1,0),(2554,0,101857,'Dinner Plain','Australia','AU','Dinner Plain (Australia)',1,1,0),(2555,0,101858,'Dinteloord','Netherlands','NL','Dinteloord (Netherlands)',1,1,0),(2556,0,101859,'Diriamba','Nicaragua','NI','Diriamba (Nicaragua)',1,1,0),(2557,0,101860,'Divaca','Slovenia','SI','Divaca (Slovenia)',1,1,0),(2558,0,101861,'Doberdo Del Lago','Italy','IT','Doberdo Del Lago (Italy)',1,1,0),(2559,0,101862,'Dobron','Poland','PL','Dobron (Poland)',1,1,0),(2560,0,101863,'Dodekanes','Greece','GR','Dodekanes (Greece)',1,1,0),(2561,0,101864,'Dolgoprudny','Russia','RU','Dolgoprudny (Russia)',1,1,0),(2562,0,101865,'Domegge di Cadoreve','Italy','IT','Domegge di Cadoreve (Italy)',1,1,0),(2563,0,101866,'Dosbarrios','Spain','ES','Dosbarrios (Spain)',1,1,0),(2564,0,101867,'Dousland','United Kingdom','UK','Dousland (United Kingdom)',1,1,0),(2565,8153,101868,'Dragoman','Bulgaria','BG','Dragoman (Bulgaria)',1,1,0),(2566,0,101869,'Dudswell','Canada','CA','Dudswell (Canada)',1,1,0),(2567,0,101870,'Duino-Aurisina','Italy','IT','Duino-Aurisina (Italy)',1,1,0),(2568,0,101871,'Dunkineely','Ireland','IE','Dunkineely (Ireland)',1,1,0),(2569,0,101872,'Dwygyfylchi','United Kingdom','UK','Dwygyfylchi (United Kingdom)',1,1,0),(2570,8478,101873,'Eceabat','Turkey','TR','Eceabat (Turkey)',1,1,0),(2571,8496,101874,'Edegem','Belgium','BE','Edegem (Belgium)',1,1,0),(2572,0,101875,'Edzell','United Kingdom','UK','Edzell (United Kingdom)',1,1,0),(2573,0,101876,'Einsbach','Germany','DE','Einsbach (Germany)',1,1,0),(2574,0,101877,'El Challao','Argentina','AR','El Challao (Argentina)',1,1,0),(2575,0,101878,'El Quisco','Chile','CL','El Quisco (Chile)',1,1,0),(2576,0,101879,'Elbistan','Turkey','TR','Elbistan (Turkey)',1,1,0),(2577,0,101880,'Elhovo','Bulgaria','BG','Elhovo (Bulgaria)',1,1,0),(2578,0,101881,'Elpitiya','Sri Lanka','LK','Elpitiya (Sri Lanka)',1,1,0),(2579,8707,101882,'Elspeet','Netherlands','NL','Elspeet (Netherlands)',1,1,0),(2580,0,101883,'Emerson','Canada','CA','Emerson (Canada)',1,1,0),(2581,0,101884,'Engenho Velho','Brazil','BR','Engenho Velho (Brazil)',1,1,0),(2582,0,101885,'Epiry','France','FR','Epiry (France)',1,1,0),(2583,0,101886,'Essenheim','Germany','DE','Essenheim (Germany)',1,1,0),(2584,0,101887,'Eumseong','South Korea','KR','Eumseong (South Korea)',1,1,0),(2585,0,101888,'Eurobin','Australia','AU','Eurobin (Australia)',1,1,0),(2586,9045,101889,'Eurong','Australia','AU','Eurong (Australia)',1,1,0),(2587,0,101890,'Evatt','Australia','AU','Evatt (Australia)',1,1,0),(2588,0,101891,'Mochov','Czech Republic','CZ','Mochov (Czech Republic)',1,1,0),(2589,0,101892,'Mogo','Australia','AU','Mogo (Australia)',1,1,0),(2590,0,101893,'Molchanovka','Russia','RU','Molchanovka (Russia)',1,1,0),(2591,0,101895,'Momtschilgrad','Bulgaria','BG','Momtschilgrad (Bulgaria)',1,1,0),(2592,0,101896,'Mondolfo','Italy','IT','Mondolfo (Italy)',1,1,0),(2593,0,101897,'Mondrook','Australia','AU','Mondrook (Australia)',1,1,0),(2594,0,101898,'Mongiardino Ligure','Italy','IT','Mongiardino Ligure (Italy)',1,1,0),(2595,0,101899,'Montecarlo','Argentina','AR','Montecarlo (Argentina)',1,1,0),(2596,0,101900,'Monteleone di Spoleto','Italy','IT','Monteleone di Spoleto (Italy)',1,1,0),(2597,0,101901,'Montereale','Italy','IT','Montereale (Italy)',1,1,0),(2598,0,101902,'Montherlant','France','FR','Montherlant (France)',1,1,0),(2599,0,101903,'Montjovet','Italy','IT','Montjovet (Italy)',1,1,0),(2600,0,101904,'Montmeyan','France','FR','Montmeyan (France)',1,1,0),(2601,0,101905,'Mooroopna','Australia','AU','Mooroopna (Australia)',1,1,0),(2602,0,101906,'Moos in Passeier','Italy','IT','Moos in Passeier (Italy)',1,1,0),(2603,0,101907,'Moreno','Argentina','AR','Moreno (Argentina)',1,1,0),(2604,0,101908,'Moruya Heads','Australia','AU','Moruya Heads (Australia)',1,1,0),(2605,0,101909,'Moscazzano','Italy','IT','Moscazzano (Italy)',1,1,0),(2606,0,101910,'Mosgiel','New Zealand','NZ','Mosgiel (New Zealand)',1,1,0),(2607,0,101911,'Mosoj Llajta','Bolivia','BO','Mosoj Llajta (Bolivia)',1,1,0),(2608,0,101912,'Mouchard','France','FR','Mouchard (France)',1,1,0),(2609,0,101913,'Moudros','Greece','GR','Moudros (Greece)',1,1,0),(2610,0,101914,'Mount Dandenong','Australia','AU','Mount Dandenong (Australia)',1,1,0),(2611,0,101915,'Mount Martha','Australia','AU','Mount Martha (Australia)',1,1,0),(2612,0,101916,'Muccia','Italy','IT','Muccia (Italy)',1,1,0),(2613,0,101917,'Muna','Mexico','MX','Muna (Mexico)',1,1,0),(2614,0,101918,'Mykolayivka','Ukraine','UA','Mykolayivka (Ukraine)',1,1,0),(2615,0,101919,'Mylestom','Australia','AU','Mylestom (Australia)',1,1,0),(2616,0,101920,'Igantzi','Spain','ES','Igantzi (Spain)',1,1,0),(2617,0,101921,'Igrejinha','Brazil','BR','Igrejinha (Brazil)',1,1,0),(2618,0,101922,'Ijero Ekiti','Nigeria','NG','Ijero Ekiti (Nigeria)',1,1,0),(2619,0,101923,'Ijevan','Armenia','AM','Ijevan (Armenia)',1,1,0),(2620,0,101924,'Ilia Village','Greece','GR','Ilia Village (Greece)',1,1,0),(2621,0,101925,'Imer','Italy','IT','Imer (Italy)',1,1,0),(2622,0,101926,'Imotski','Croatia','HR','Imotski (Croatia)',1,1,0),(2623,0,101927,'Inch Marlowe','Barbados','BB','Inch Marlowe (Barbados)',1,1,0),(2624,0,101928,'Indented Head','Australia','AU','Indented Head (Australia)',1,1,0),(2625,0,101929,'Ineu','Romania','RO','Ineu (Romania)',1,1,0),(2626,0,101930,'Inkberrow','United Kingdom','UK','Inkberrow (United Kingdom)',1,1,0),(2627,0,101931,'Inkumu','Turkey','TR','Inkumu (Turkey)',1,1,0),(2628,0,101932,'Isla Aguada','Mexico','MX','Isla Aguada (Mexico)',1,1,0),(2629,0,101933,'Isla Grande','Colombia','CO','Isla Grande (Colombia)',1,1,0),(2630,0,101934,'Island Beach','Australia','AU','Island Beach (Australia)',1,1,0),(2631,0,101935,'Itanhi','Brazil','BR','Itanhi (Brazil)',1,1,0),(2632,0,101936,'Jackfield','United Kingdom','UK','Jackfield (United Kingdom)',1,1,0),(2633,0,101937,'Ja-Ela','Sri Lanka','LK','Ja-Ela (Sri Lanka)',1,1,0),(2634,0,101938,'Jandowae','Australia','AU','Jandowae (Australia)',1,1,0),(2635,0,101939,'Jankowice (powiat raciborski)','Poland','PL','Jankowice (powiat raciborski) (Poland)',1,1,0),(2636,0,101940,'Jassinja','Ukraine','UA','Jassinja (Ukraine)',1,1,0),(2637,0,101941,'Jau','Brazil','BR','Jau (Brazil)',1,1,0),(2638,0,101942,'Jicaral','Costa Rica','CR','Jicaral (Costa Rica)',1,1,0),(2639,0,101943,'Jipsinghuizen','Netherlands','NL','Jipsinghuizen (Netherlands)',1,1,0),(2640,0,101944,'Kalkim','Turkey','TR','Kalkim (Turkey)',1,1,0),(2641,0,101945,'Kamaishi','Japan','JP','Kamaishi (Japan)',1,1,0),(2642,0,101946,'Kamburugamuwa','Sri Lanka','LK','Kamburugamuwa (Sri Lanka)',1,1,0),(2643,13465,101947,'Kampar','Malaysia','MY','Kampar (Malaysia)',1,1,0),(2644,0,101948,'Kampia','Cyprus','CY','Kampia (Cyprus)',1,1,0),(2645,0,101949,'Kampong Chhnang','Cambodia','KH','Kampong Chhnang (Cambodia)',1,1,0),(2646,0,101950,'Kamyschin','Russia','RU','Kamyschin (Russia)',1,1,0),(2647,0,101951,'Kanjiza','Serbia','RS','Kanjiza (Serbia)',1,1,0),(2648,0,101952,'Kaspichan','Bulgaria','BG','Kaspichan (Bulgaria)',1,1,0),(2649,0,101953,'Kelaniya','Sri Lanka','LK','Kelaniya (Sri Lanka)',1,1,0),(2650,0,101954,'Kfar Tavor','Israel','IL','Kfar Tavor (Israel)',1,1,0),(2651,0,101955,'Killeberg','Sweden','SE','Killeberg (Sweden)',1,1,0),(2652,0,101956,'Kirby Stephen','United Kingdom','UK','Kirby Stephen (United Kingdom)',1,1,0),(2653,0,101957,'Kirk Yetholm','United Kingdom','UK','Kirk Yetholm (United Kingdom)',1,1,0),(2654,0,101958,'Klaster Hradiste nad Jizerou','Czech Republic','CZ','Klaster Hradiste nad Jizerou (Czech Republic)',1,1,0),(2655,0,101959,'Kleszczow','Poland','PL','Kleszczow (Poland)',1,1,0),(2656,0,101960,'Knyazhikha','Russia','RU','Knyazhikha (Russia)',1,1,0),(2657,0,101961,'Kokkino Nero','Greece','GR','Kokkino Nero (Greece)',1,1,0),(2658,0,101962,'Kollig','Germany','DE','Kollig (Germany)',1,1,0),(2659,0,101963,'Kon Tum','Vietnam','VN','Kon Tum (Vietnam)',1,1,0),(2660,0,101964,'Koonoomoo','Australia','AU','Koonoomoo (Australia)',1,1,0),(2661,0,101965,'Kootwijkerbroek','Netherlands','NL','Kootwijkerbroek (Netherlands)',1,1,0),(2662,0,101966,'Kormista','Greece','GR','Kormista (Greece)',1,1,0),(2663,0,101968,'Kozarovice','Czech Republic','CZ','Kozarovice (Czech Republic)',1,1,0),(2664,0,101969,'Krania','Greece','GR','Krania (Greece)',1,1,0),(2665,0,101970,'Krumovgrad','Bulgaria','BG','Krumovgrad (Bulgaria)',1,1,0),(2666,0,101971,'Kruunupyy','Finland','FI','Kruunupyy (Finland)',1,1,0),(2667,0,101972,'Krykhivtsi','Ukraine','UA','Krykhivtsi (Ukraine)',1,1,0),(2668,0,101973,'Kuleshovka','Russia','RU','Kuleshovka (Russia)',1,1,0),(2669,0,101974,'Kungsangen','Sweden','SE','Kungsangen (Sweden)',1,1,0),(2670,0,101975,'Kungur','Russia','RU','Kungur (Russia)',1,1,0),(2671,0,101976,'Kuremae','Estonia','EE','Kuremae (Estonia)',1,1,0),(2672,0,101977,'Kuroiso','Japan','JP','Kuroiso (Japan)',1,1,0),(2673,0,101978,'Kurri Kurri','Australia','AU','Kurri Kurri (Australia)',1,1,0),(2674,0,101979,'Kuty','Poland','PL','Kuty (Poland)',1,1,0),(2675,0,101980,'Kvesheti','Georgia','GE','Kvesheti (Georgia)',1,1,0),(2676,0,101981,'La Coucourde','France','FR','La Coucourde (France)',1,1,0),(2677,31312,101982,'La Falda','Argentina','AR','La Falda (Argentina)',1,1,0),(2678,0,101983,'La Gaulette','Mauritius','MU','La Gaulette (Mauritius)',1,1,0),(2679,0,101984,'La Granja','Argentina','AR','La Granja (Argentina)',1,1,0),(2680,0,101985,'La Merced','Argentina','AR','La Merced (Argentina)',1,1,0),(2681,0,101986,'La Mesa','Colombia','CO','La Mesa (Colombia)',1,1,0),(2682,0,101987,'La Motte-Chalancon','France','FR','La Motte-Chalancon (France)',1,1,0),(2683,0,101988,'La Paloma','Uruguay','UY','La Paloma (Uruguay)',1,1,0),(2684,0,101989,'La Pintada','Colombia','CO','La Pintada (Colombia)',1,1,0),(2685,0,101990,'La Solana','Spain','ES','La Solana (Spain)',1,1,0),(2686,0,101991,'Labinsk','Russia','RU','Labinsk (Russia)',1,1,0),(2687,0,101992,'Lacu Rosu','Romania','RO','Lacu Rosu (Romania)',1,1,0),(2688,0,101993,'Ladik','Turkey','TR','Ladik (Turkey)',1,1,0),(2689,0,101994,'Laggio di Vigo di Cadore','Italy','IT','Laggio di Vigo di Cadore (Italy)',1,1,0),(2690,0,101995,'Lake Fyans','Australia','AU','Lake Fyans (Australia)',1,1,0),(2691,0,101996,'Lake Tyers Beach','Australia','AU','Lake Tyers Beach (Australia)',1,1,0),(2692,0,101997,'Lamon','Italy','IT','Lamon (Italy)',1,1,0),(2693,0,101998,'L\'Ampolla del Mar','Spain','ES','L\'Ampolla del Mar (Spain)',1,1,0),(2694,0,101999,'Lancelin','Australia','AU','Lancelin (Australia)',1,1,0),(2695,0,102000,'Langadas','Greece','GR','Langadas (Greece)',1,1,0),(2696,15018,102001,'Lapua','Finland','FI','Lapua (Finland)',1,1,0),(2697,21421,102002,'Pindamonhangaba','Brazil','BR','Pindamonhangaba (Brazil)',1,1,0),(2698,0,102003,'Piobbico','Italy','IT','Piobbico (Italy)',1,1,0),(2699,0,102004,'Pippu','Japan','JP','Pippu (Japan)',1,1,0),(2700,0,102005,'Piripiri','Brazil','BR','Piripiri (Brazil)',1,1,0),(2701,0,102006,'Pitschen','Poland','PL','Pitschen (Poland)',1,1,0),(2702,0,102007,'Monte San Giovanni Campano','Italy','IT','Monte San Giovanni Campano (Italy)',1,1,0),(2703,0,102008,'Monterroso','Spain','ES','Monterroso (Spain)',1,1,0),(2704,0,102009,'Moore Park Beach','Australia','AU','Moore Park Beach (Australia)',1,1,0),(2705,0,102010,'Morlanwelz','Belgium','BE','Morlanwelz (Belgium)',1,1,0),(2706,0,102011,'Moroeni','Romania','RO','Moroeni (Romania)',1,1,0),(2707,0,102012,'Mount Glorious','Australia','AU','Mount Glorious (Australia)',1,1,0),(2708,32015,102013,'Mount Hotham','Australia','AU','Mount Hotham (Australia)',1,1,0),(2709,0,102014,'Mount Warning','Australia','AU','Mount Warning (Australia)',1,1,0),(2710,0,102015,'Moyobamba/ Muyupampa','Peru','PE','Moyobamba/ Muyupampa (Peru)',1,1,0),(2711,0,102016,'Mratin','Czech Republic','CZ','Mratin (Czech Republic)',1,1,0),(2712,0,102017,'Mt Macedon','Australia','AU','Mt Macedon (Australia)',1,1,0),(2713,0,102018,'Mudeford','United Kingdom','UK','Mudeford (United Kingdom)',1,1,0),(2714,0,102019,'Mulbring','Australia','AU','Mulbring (Australia)',1,1,0),(2715,0,102020,'Mullumbimby','Australia','AU','Mullumbimby (Australia)',1,1,0),(2716,0,102021,'Munera','Spain','ES','Munera (Spain)',1,1,0),(2717,0,102022,'Munkedal','Sweden','SE','Munkedal (Sweden)',1,1,0),(2718,0,102023,'Musculdy','France','FR','Musculdy (France)',1,1,0),(2719,18777,102024,'Mustafapasa','Turkey','TR','Mustafapasa (Turkey)',1,1,0),(2720,0,102025,'Muston','United Kingdom','UK','Muston (United Kingdom)',1,1,0),(2721,0,102026,'Myrtleford','Australia','AU','Myrtleford (Australia)',1,1,0),(2722,0,102027,'Myschkin','Russia','RU','Myschkin (Russia)',1,1,0),(2723,18901,102028,'Nakanojo','Japan','JP','Nakanojo (Japan)',1,1,0),(2724,0,102029,'Nakkila','Finland','FI','Nakkila (Finland)',1,1,0),(2725,0,102030,'Nancagua','Chile','CL','Nancagua (Chile)',1,1,0),(2726,0,102031,'Naoshima','Japan','JP','Naoshima (Japan)',1,1,0),(2727,0,102032,'Narechen','Bulgaria','BG','Narechen (Bulgaria)',1,1,0),(2728,0,102034,'Nazare','Brazil','BR','Nazare (Brazil)',1,1,0),(2729,0,102035,'Ndangane','Senegal','SN','Ndangane (Senegal)',1,1,0),(2730,19198,102036,'Nerang','Australia','AU','Nerang (Australia)',1,1,0),(2731,0,102037,'Neunkirchen','Austria','AT','Neunkirchen (Austria)',1,1,0),(2732,0,102038,'New Minas','Canada','CA','New Minas (Canada)',1,1,0),(2733,0,102039,'New Romney','United Kingdom','UK','New Romney (United Kingdom)',1,1,0),(2734,0,102040,'Niedermorschweier','France','FR','Niedermorschweier (France)',1,1,0),(2735,0,102041,'Nieuwveen','Netherlands','NL','Nieuwveen (Netherlands)',1,1,0),(2736,0,102042,'Nimbin','Australia','AU','Nimbin (Australia)',1,1,0),(2737,0,102043,'Ninh Hoa','Vietnam','VN','Ninh Hoa (Vietnam)',1,1,0),(2738,0,102044,'Nivolas Vermelle','France','FR','Nivolas Vermelle (France)',1,1,0),(2739,0,102045,'North Perrott','United Kingdom','UK','North Perrott (United Kingdom)',1,1,0),(2740,0,102046,'Nova Pec','Czech Republic','CZ','Nova Pec (Czech Republic)',1,1,0),(2741,0,102047,'Novy Kyrlay','Russia','RU','Novy Kyrlay (Russia)',1,1,0),(2742,0,102048,'Novy Urengoy','Russia','RU','Novy Urengoy (Russia)',1,1,0),(2743,0,102049,'Nowe Skalmierzyce','Poland','PL','Nowe Skalmierzyce (Poland)',1,1,0),(2744,0,102050,'Nowogrudok','Belarus','BY','Nowogrudok (Belarus)',1,1,0),(2745,0,102051,'Noyabrsk','Russia','RU','Noyabrsk (Russia)',1,1,0),(2746,0,102052,'Noyalo','France','FR','Noyalo (France)',1,1,0),(2747,0,102053,'Nuuk (Godthab)','Greenland','GL','Nuuk (Godthab) (Greenland)',1,1,0),(2748,0,102054,'Obedu','Nigeria','NG','Obedu (Nigeria)',1,1,0),(2749,0,102055,'Oberlungwitz','Germany','DE','Oberlungwitz (Germany)',1,1,0),(2750,0,102056,'Oberon','Australia','AU','Oberon (Australia)',1,1,0),(2751,0,102057,'Oberotterbach','Germany','DE','Oberotterbach (Germany)',1,1,0),(2752,0,102058,'Ocoyoacac','Mexico','MX','Ocoyoacac (Mexico)',1,1,0),(2753,0,102059,'Oggiono','Italy','IT','Oggiono (Italy)',1,1,0),(2754,0,102060,'Ognyanovo','Bulgaria','BG','Ognyanovo (Bulgaria)',1,1,0),(2755,0,102061,'Oiron','France','FR','Oiron (France)',1,1,0),(2756,19977,102062,'Oistins','Barbados','BB','Oistins (Barbados)',1,1,0),(2757,0,102063,'Olleros de Pisuerga','Spain','ES','Olleros de Pisuerga (Spain)',1,1,0),(2758,0,102064,'Omaezaki','Japan','JP','Omaezaki (Japan)',1,1,0),(2759,0,102065,'Ono Island','Fiji Islands','FJ','Ono Island (Fiji Islands)',1,1,0),(2760,0,102066,'Onsala','Sweden','SE','Onsala (Sweden)',1,1,0),(2761,0,102067,'Onton','Spain','ES','Onton (Spain)',1,1,0),(2762,0,102068,'Oosthuizen','Netherlands','NL','Oosthuizen (Netherlands)',1,1,0),(2763,20275,102069,'Orosi','Costa Rica','CR','Orosi (Costa Rica)',1,1,0),(2764,0,102070,'Ortovero','Italy','IT','Ortovero (Italy)',1,1,0),(2765,0,102071,'Osny','France','FR','Osny (France)',1,1,0),(2766,0,102072,'Ostra Amtervik','Sweden','SE','Ostra Amtervik (Sweden)',1,1,0),(2767,0,102073,'Otterham','United Kingdom','UK','Otterham (United Kingdom)',1,1,0),(2768,0,102074,'Overpelt','Belgium','BE','Overpelt (Belgium)',1,1,0),(2769,0,102075,'Overstrand','United Kingdom','UK','Overstrand (United Kingdom)',1,1,0),(2770,0,102076,'Ozolnieki','Latvia','LV','Ozolnieki (Latvia)',1,1,0),(2771,0,102077,'Pahuatlan','Mexico','MX','Pahuatlan (Mexico)',1,1,0),(2772,0,102078,'Pakruojis','Lithuania','LT','Pakruojis (Lithuania)',1,1,0),(2773,0,102079,'Palamutbuku','Turkey','TR','Palamutbuku (Turkey)',1,1,0),(2774,20618,102080,'Palazzolo sull\'Oglio','Italy','IT','Palazzolo sull\'Oglio (Italy)',1,1,0),(2775,0,102081,'Palmilla','Chile','CL','Palmilla (Chile)',1,1,0),(2776,0,102082,'Panadura','Sri Lanka','LK','Panadura (Sri Lanka)',1,1,0),(2777,0,102083,'Pancharevo','Bulgaria','BG','Pancharevo (Bulgaria)',1,1,0),(2778,0,102084,'Pano Akourdaleia','Cyprus','CY','Pano Akourdaleia (Cyprus)',1,1,0),(2779,0,102085,'Paracho de Verduzco','Mexico','MX','Paracho de Verduzco (Mexico)',1,1,0),(2780,0,102086,'Paraopeba','Brazil','BR','Paraopeba (Brazil)',1,1,0),(2781,0,102087,'Polaca','Croatia','HR','Polaca (Croatia)',1,1,0),(2782,0,102088,'Poland','Poland','PL','Poland (Poland)',1,1,0),(2783,0,102089,'Polnisch Neudorf','Poland','PL','Polnisch Neudorf (Poland)',1,1,0),(2784,0,102090,'Poneloya','Nicaragua','NI','Poneloya (Nicaragua)',1,1,0),(2785,0,102091,'Pontechianale','Italy','IT','Pontechianale (Italy)',1,1,0),(2786,0,102092,'Port Mathurin','Mauritius','MU','Port Mathurin (Mauritius)',1,1,0),(2787,0,102093,'Porto Torres','Italy','IT','Porto Torres (Italy)',1,1,0),(2788,0,102094,'Pouillenay','France','FR','Pouillenay (France)',1,1,0),(2789,21988,102095,'Pouzauges','France','FR','Pouzauges (France)',1,1,0),(2790,0,102096,'Primorskyi','Ukraine','UA','Primorskyi (Ukraine)',1,1,0),(2791,0,102097,'Promontogno','Switzerland','CH','Promontogno (Switzerland)',1,1,0),(2792,0,102098,'Provinz Imbabura','Ecuador','EC','Provinz Imbabura (Ecuador)',1,1,0),(2793,0,102099,'Pucioasa','Romania','RO','Pucioasa (Romania)',1,1,0),(2794,0,102100,'Pucusana','Peru','PE','Pucusana (Peru)',1,1,0),(2795,0,102101,'Puente de Vadillos','Spain','ES','Puente de Vadillos (Spain)',1,1,0),(2796,22195,102102,'Puerto Angel','Mexico','MX','Puerto Angel (Mexico)',1,1,0),(2797,0,102103,'Pukenui','New Zealand','NZ','Pukenui (New Zealand)',1,1,0),(2798,0,102104,'Pulversheim','France','FR','Pulversheim (France)',1,1,0),(2799,0,102105,'Purulha','Guatemala','GT','Purulha (Guatemala)',1,1,0),(2800,0,102106,'Puspokladany','Hungary','HU','Puspokladany (Hungary)',1,1,0),(2801,0,102107,'Puymeras','France','FR','Puymeras (France)',1,1,0),(2802,0,102108,'Qianjiang','China','CN','Qianjiang (China)',1,1,0),(2803,0,102109,'Qingzhou','China','CN','Qingzhou (China)',1,1,0),(2804,0,102110,'Qo‘qon','Uzbekistan','UZ','Qo‘qon (Uzbekistan)',1,1,0),(2805,0,102111,'Queilen','Chile','CL','Queilen (Chile)',1,1,0),(2806,0,102112,'Barra de Chapagua','Honduras','HN','Barra de Chapagua (Honduras)',1,1,0),(2807,2433,102113,'Barra de Navidad','Mexico','MX','Barra de Navidad (Mexico)',1,1,0),(2808,0,102114,'Barra del Jiote','Guatemala','GT','Barra del Jiote (Guatemala)',1,1,0),(2809,0,102115,'Barreme','France','FR','Barreme (France)',1,1,0),(2810,0,102116,'Bartin','Turkey','TR','Bartin (Turkey)',1,1,0),(2811,0,102117,'Barzio','Italy','IT','Barzio (Italy)',1,1,0),(2812,0,102118,'Bas Kungut','Azerbaijan','AZ','Bas Kungut (Azerbaijan)',1,1,0),(2813,0,102119,'Batu Ampar','Indonesia','ID','Batu Ampar (Indonesia)',1,1,0),(2814,0,102120,'Bay Roberts','Canada','CA','Bay Roberts (Canada)',1,1,0),(2815,0,102121,'Beamsville','Canada','CA','Beamsville (Canada)',1,1,0),(2816,0,102122,'Beaumont en Auge','France','FR','Beaumont en Auge (France)',1,1,0),(2817,0,102123,'Beaumont-du-Ventoux','France','FR','Beaumont-du-Ventoux (France)',1,1,0),(2818,0,102124,'Beligneux','France','FR','Beligneux (France)',1,1,0),(2819,0,102125,'Bellara','Australia','AU','Bellara (Australia)',1,1,0),(2820,0,102126,'Bender','Moldova','MD','Bender (Moldova)',1,1,0),(2821,0,102127,'Berbenno di Valtellina','Italy','IT','Berbenno di Valtellina (Italy)',1,1,0),(2822,0,102128,'Beregovoe','Ukraine','UA','Beregovoe (Ukraine)',1,1,0),(2823,0,102129,'Bertrix','Belgium','BE','Bertrix (Belgium)',1,1,0),(2824,0,102130,'Besiktas','Turkey','TR','Besiktas (Turkey)',1,1,0),(2825,0,102131,'Bilin','Czech Republic','CZ','Bilin (Czech Republic)',1,1,0),(2826,0,102132,'Bisaccia','Italy','IT','Bisaccia (Italy)',1,1,0),(2827,0,102133,'Bishops Frome','United Kingdom','UK','Bishops Frome (United Kingdom)',1,1,0),(2828,0,102134,'Abaliget','Hungary','HU','Abaliget (Hungary)',1,1,0),(2829,0,102135,'Abramtsevo Colony','Russia','RU','Abramtsevo Colony (Russia)',1,1,0),(2830,0,102136,'Addlestone','United Kingdom','UK','Addlestone (United Kingdom)',1,1,0),(2831,0,102137,'Adligenswil','Switzerland','CH','Adligenswil (Switzerland)',1,1,0),(2832,234,102139,'Agazzano','Italy','IT','Agazzano (Italy)',1,1,0),(2833,0,102140,'Agoy','Russia','RU','Agoy (Russia)',1,1,0),(2834,0,102141,'Aguachica','Colombia','CO','Aguachica (Colombia)',1,1,0),(2835,0,102142,'Aguas de Sao Pedro','Brazil','BR','Aguas de Sao Pedro (Brazil)',1,1,0),(2836,0,102143,'Aigues','Spain','ES','Aigues (Spain)',1,1,0),(2837,0,102144,'Aimogasta','Argentina','AR','Aimogasta (Argentina)',1,1,0),(2838,0,102145,'Ait Baha','Morocco','MA','Ait Baha (Morocco)',1,1,0),(2839,0,102146,'Ait Ourir','Morocco','MA','Ait Ourir (Morocco)',1,1,0),(2840,0,102147,'Ajdovscina','Slovenia','SI','Ajdovscina (Slovenia)',1,1,0),(2841,383,102148,'Akhisar','Turkey','TR','Akhisar (Turkey)',1,1,0),(2842,0,102149,'Al I Hallingdal','Norway','NO','Al I Hallingdal (Norway)',1,1,0),(2843,0,102150,'Alaverdi','Armenia','AM','Alaverdi (Armenia)',1,1,0),(2844,0,102151,'Aldeadavila de la Ribera','Spain','ES','Aldeadavila de la Ribera (Spain)',1,1,0),(2845,0,102152,'Alexandria','Greece','GR','Alexandria (Greece)',1,1,0),(2846,0,102153,'Alexandria',NULL,NULL,'Alexandria ()',1,1,0),(2847,0,102154,'Alezio','Italy','IT','Alezio (Italy)',1,1,0),(2848,0,102155,'Allassac','France','FR','Allassac (France)',1,1,0),(2849,0,102156,'Almodovar','Portugal','PT','Almodovar (Portugal)',1,1,0),(2850,0,102157,'Almoradi','Spain','ES','Almoradi (Spain)',1,1,0),(2851,0,102158,'Al-Salt','Jordan','JO','Al-Salt (Jordan)',1,1,0),(2852,0,102159,'Alsbach-Hahnlein','Germany','DE','Alsbach-Hahnlein (Germany)',1,1,0),(2853,0,102160,'Altun','Russia','RU','Altun (Russia)',1,1,0),(2854,0,102161,'Alweston','United Kingdom','UK','Alweston (United Kingdom)',1,1,0),(2855,0,102162,'Amphoe Phunphin','Thailand','TH','Amphoe Phunphin (Thailand)',1,1,0),(2856,0,102163,'Amroth','United Kingdom','UK','Amroth (United Kingdom)',1,1,0),(2857,0,102164,'Andelska Hora','Czech Republic','CZ','Andelska Hora (Czech Republic)',1,1,0),(2858,0,102165,'Angles-sur-l\'Anglin','France','FR','Angles-sur-l\'Anglin (France)',1,1,0),(2859,0,102167,'Anomabu','Ghana','GH','Anomabu (Ghana)',1,1,0),(2860,0,102168,'Appignano','Italy','IT','Appignano (Italy)',1,1,0),(2861,0,102169,'Arandas','Mexico','MX','Arandas (Mexico)',1,1,0),(2862,0,102170,'Araruama','Brazil','BR','Araruama (Brazil)',1,1,0),(2863,0,102171,'Areia','Brazil','BR','Areia (Brazil)',1,1,0),(2864,0,102172,'Argoules','France','FR','Argoules (France)',1,1,0),(2865,0,102173,'Arlanc','France','FR','Arlanc (France)',1,1,0),(2866,0,102174,'Armentieres','France','FR','Armentieres (France)',1,1,0),(2867,0,102175,'Arneguy','France','FR','Arneguy (France)',1,1,0),(2868,0,102176,'Arta Terme','Italy','IT','Arta Terme (Italy)',1,1,0),(2869,0,102177,'Arxan','China','CN','Arxan (China)',1,1,0),(2870,0,102178,'Ascea Marina','Italy','IT','Ascea Marina (Italy)',1,1,0),(2871,0,102179,'Asparuhovo','Bulgaria','BG','Asparuhovo (Bulgaria)',1,1,0),(2872,0,102180,'Asthall','United Kingdom','UK','Asthall (United Kingdom)',1,1,0),(2873,0,102181,'Astorp','Sweden','SE','Astorp (Sweden)',1,1,0),(2874,0,102182,'Ateptsevo','Russia','RU','Ateptsevo (Russia)',1,1,0),(2875,1797,102183,'Aurland','Norway','NO','Aurland (Norway)',1,1,0),(2876,0,102184,'Auteuil (Yvelines)','France','FR','Auteuil (Yvelines) (France)',1,1,0),(2877,0,102185,'Avanhandava','Brazil','BR','Avanhandava (Brazil)',1,1,0),(2878,1847,102186,'Aversa','Italy','IT','Aversa (Italy)',1,1,0),(2879,0,102187,'Ayer Tawar','Malaysia','MY','Ayer Tawar (Malaysia)',1,1,0),(2880,0,102188,'Aylmerton','United Kingdom','UK','Aylmerton (United Kingdom)',1,1,0),(2881,0,102189,'Azzano San Paolo','Italy','IT','Azzano San Paolo (Italy)',1,1,0),(2882,0,102190,'Ba Ria','Vietnam','VN','Ba Ria (Vietnam)',1,1,0),(2883,0,102191,'Bademli','Turkey','TR','Bademli (Turkey)',1,1,0),(2884,0,102192,'Baia Sprie','Romania','RO','Baia Sprie (Romania)',1,1,0),(2885,0,102193,'Ban Chang','Thailand','TH','Ban Chang (Thailand)',1,1,0),(2886,0,102194,'Banderilla','Mexico','MX','Banderilla (Mexico)',1,1,0),(2887,0,102195,'Bang Rachan','Thailand','TH','Bang Rachan (Thailand)',1,1,0),(2888,0,102196,'Banjarbaru','Indonesia','ID','Banjarbaru (Indonesia)',1,1,0),(2889,0,102197,'Banlung','Cambodia','KH','Banlung (Cambodia)',1,1,0),(2890,0,102198,'Bant','Netherlands','NL','Bant (Netherlands)',1,1,0),(2891,0,102199,'Banyuls-Dels-Aspres','France','FR','Banyuls-Dels-Aspres (France)',1,1,0),(2892,0,102200,'Bareneed','Canada','CA','Bareneed (Canada)',1,1,0),(2893,0,102201,'Barney View','Australia','AU','Barney View (Australia)',1,1,0),(2894,0,102202,'Barrows Green','United Kingdom','UK','Barrows Green (United Kingdom)',1,1,0),(2895,0,102203,'Barysau','Belarus','BY','Barysau (Belarus)',1,1,0),(2896,0,102204,'Barysh','Russia','RU','Barysh (Russia)',1,1,0),(2897,0,102205,'Batiz','Romania','RO','Batiz (Romania)',1,1,0),(2898,0,102206,'Baudinard-sur-Verdon','France','FR','Baudinard-sur-Verdon (France)',1,1,0),(2899,0,102207,'Bauen','Switzerland','CH','Bauen (Switzerland)',1,1,0),(2900,2567,102208,'Bavaro','Dominican Republic','DO','Bavaro (Dominican Republic)',1,1,0),(2901,0,102209,'Bawiti','Egypt','EG','Bawiti (Egypt)',1,1,0),(2902,0,102210,'Baybay City','Philippines','PH','Baybay City (Philippines)',1,1,0),(2903,0,102211,'Beaufort','France','FR','Beaufort (France)',1,1,0),(2904,0,102212,'Beaulieu-en-Argonne','France','FR','Beaulieu-en-Argonne (France)',1,1,0),(2905,0,102214,'Bedizzole','Italy','IT','Bedizzole (Italy)',1,1,0),(2906,0,102215,'Beerwah','Australia','AU','Beerwah (Australia)',1,1,0),(2907,0,102216,'Bohdanec','Czech Republic','CZ','Bohdanec (Czech Republic)',1,1,0),(2908,0,102217,'Bojaca','Colombia','CO','Bojaca (Colombia)',1,1,0),(2909,0,102218,'Bolano','Italy','IT','Bolano (Italy)',1,1,0),(2910,0,102219,'Bolney','United Kingdom','UK','Bolney (United Kingdom)',1,1,0),(2911,0,102220,'Bonavista','Canada','CA','Bonavista (Canada)',1,1,0),(2912,0,102221,'Borgo Priolo','Italy','IT','Borgo Priolo (Italy)',1,1,0),(2913,0,102222,'Borino','Bulgaria','BG','Borino (Bulgaria)',1,1,0),(2914,0,102223,'Eyam','United Kingdom','UK','Eyam (United Kingdom)',1,1,0),(2915,0,102224,'Fa Ham','Thailand','TH','Fa Ham (Thailand)',1,1,0),(2916,0,102225,'Fairfield Heights','Australia','AU','Fairfield Heights (Australia)',1,1,0),(2917,0,102226,'Fatsa','Turkey','TR','Fatsa (Turkey)',1,1,0),(2918,0,102227,'Fedoseyevka','Russia','RU','Fedoseyevka (Russia)',1,1,0),(2919,0,102228,'Feilding','New Zealand','NZ','Feilding (New Zealand)',1,1,0),(2920,0,102229,'Fermignano','Italy','IT','Fermignano (Italy)',1,1,0),(2921,0,102230,'Fischbach','Luxembourg','LU','Fischbach (Luxembourg)',1,1,0),(2922,0,102231,'Fitero','Spain','ES','Fitero (Spain)',1,1,0),(2923,9536,102232,'Floda','Sweden','SE','Floda (Sweden)',1,1,0),(2924,9613,102233,'Fontaine-De-Vaucluse','France','FR','Fontaine-De-Vaucluse (France)',1,1,0),(2925,9699,102234,'Fortin de las Flores','Mexico','MX','Fortin de las Flores (Mexico)',1,1,0),(2926,0,102235,'Fosses-la-Ville','Belgium','BE','Fosses-la-Ville (Belgium)',1,1,0),(2927,0,102236,'Fournels','France','FR','Fournels (France)',1,1,0),(2928,9743,102237,'Frabosa Sottana','Italy','IT','Frabosa Sottana (Italy)',1,1,0),(2929,0,102238,'Fraiburgo','Brazil','BR','Fraiburgo (Brazil)',1,1,0),(2930,0,102239,'Fuendetodos','Spain','ES','Fuendetodos (Spain)',1,1,0),(2931,9959,102240,'Fumone','Italy','IT','Fumone (Italy)',1,1,0),(2932,0,102241,'Funo di Argelato','Italy','IT','Funo di Argelato (Italy)',1,1,0),(2933,0,102242,'Fusio','Switzerland','CH','Fusio (Switzerland)',1,1,0),(2934,0,102243,'Gandesa','Spain','ES','Gandesa (Spain)',1,1,0),(2935,0,102244,'Gandria','Switzerland','CH','Gandria (Switzerland)',1,1,0),(2936,5428,102245,'Castlemaine','Australia','AU','Castlemaine (Australia)',1,1,0),(2937,0,102246,'Cavriana','Italy','IT','Cavriana (Italy)',1,1,0),(2938,0,102247,'Caykara','Turkey','TR','Caykara (Turkey)',1,1,0),(2939,0,102248,'Cejkovice','Czech Republic','CZ','Cejkovice (Czech Republic)',1,1,0),(2940,0,102249,'Cepagatti','Italy','IT','Cepagatti (Italy)',1,1,0),(2941,0,102250,'Cereseto','Italy','IT','Cereseto (Italy)',1,1,0),(2942,0,102251,'Cerizay','France','FR','Cerizay (France)',1,1,0),(2943,0,102252,'Cette-Eygun','France','FR','Cette-Eygun (France)',1,1,0),(2944,0,102253,'Ceuti','Spain','ES','Ceuti (Spain)',1,1,0),(2945,0,102254,'Chajul','Guatemala','GT','Chajul (Guatemala)',1,1,0),(2946,0,102255,'Chala','Peru','PE','Chala (Peru)',1,1,0),(2947,0,102256,'Chalong','Thailand','TH','Chalong (Thailand)',1,1,0),(2948,5739,102257,'Champagne-au-Mont-d\'Or','France','FR','Champagne-au-Mont-d\'Or (France)',1,1,0),(2949,0,102258,'Champforgeuil','France','FR','Champforgeuil (France)',1,1,0),(2950,5774,102260,'Change','France','FR','Change (France)',1,1,0),(2951,0,102261,'Chavagne-en-Paillers','France','FR','Chavagne-en-Paillers (France)',1,1,0),(2952,0,102262,'Chem','Poland','PL','Chem (Poland)',1,1,0),(2953,0,102263,'Cherac','France','FR','Cherac (France)',1,1,0),(2954,0,102264,'Chimbote','Peru','PE','Chimbote (Peru)',1,1,0),(2955,0,102265,'Chinacota','Colombia','CO','Chinacota (Colombia)',1,1,0),(2956,0,102266,'Chis','France','FR','Chis (France)',1,1,0),(2957,0,102267,'Chlapowo','Poland','PL','Chlapowo (Poland)',1,1,0),(2958,0,102268,'Chlumetz an der Zidlina','Czech Republic','CZ','Chlumetz an der Zidlina (Czech Republic)',1,1,0),(2959,0,102269,'Chmelnyzkyj','Ukraine','UA','Chmelnyzkyj (Ukraine)',1,1,0),(2960,0,102270,'Chmielno','Poland','PL','Chmielno (Poland)',1,1,0),(2961,0,102271,'Choix','Mexico','MX','Choix (Mexico)',1,1,0),(2962,0,102272,'Cholmondeley','United Kingdom','UK','Cholmondeley (United Kingdom)',1,1,0),(2963,0,102273,'Chongzuo','China','CN','Chongzuo (China)',1,1,0),(2964,0,102274,'Christopher Lake','Canada','CA','Christopher Lake (Canada)',1,1,0),(2965,0,102275,'Chuan Zhu Si','China','CN','Chuan Zhu Si (China)',1,1,0),(2966,0,102276,'Chui','Brazil','BR','Chui (Brazil)',1,1,0),(2967,0,102277,'Ciudad Cariari','Costa Rica','CR','Ciudad Cariari (Costa Rica)',1,1,0),(2968,6390,102278,'Claremont','Australia','AU','Claremont (Australia)',1,1,0),(2969,0,102279,'Clarencefield','United Kingdom','UK','Clarencefield (United Kingdom)',1,1,0),(2970,0,102280,'Clearview','Australia','AU','Clearview (Australia)',1,1,0),(2971,0,102281,'Cojimies','Ecuador','EC','Cojimies (Ecuador)',1,1,0),(2972,0,102282,'Colyford','United Kingdom','UK','Colyford (United Kingdom)',1,1,0),(2973,0,102283,'Comunanza','Italy','IT','Comunanza (Italy)',1,1,0),(2974,6766,102284,'Concepcion del Uruguay','Argentina','AR','Concepcion del Uruguay (Argentina)',1,1,0),(2975,0,102285,'Concordia','Brazil','BR','Concordia (Brazil)',1,1,0),(2976,6783,102286,'Conde-en-Brie','France','FR','Conde-en-Brie (France)',1,1,0),(2977,0,102288,'Copala','Mexico','MX','Copala (Mexico)',1,1,0),(2978,0,102289,'Coppenbrugge','Germany','DE','Coppenbrugge (Germany)',1,1,0),(2979,0,102290,'Corbara','Italy','IT','Corbara (Italy)',1,1,0),(2980,0,102291,'Corton','United Kingdom','UK','Corton (United Kingdom)',1,1,0),(2981,0,102292,'Cotton Stones','United Kingdom','UK','Cotton Stones (United Kingdom)',1,1,0),(2982,0,102293,'Courlans','France','FR','Courlans (France)',1,1,0),(2983,0,102294,'Cozes','France','FR','Cozes (France)',1,1,0),(2984,0,102295,'Crayfish Creek','Australia','AU','Crayfish Creek (Australia)',1,1,0),(2985,0,102296,'Creetown','United Kingdom','UK','Creetown (United Kingdom)',1,1,0),(2986,0,102297,'Cuatro Cienegas','Mexico','MX','Cuatro Cienegas (Mexico)',1,1,0),(2987,0,102298,'Cubillas de Arbas','Spain','ES','Cubillas de Arbas (Spain)',1,1,0),(2988,0,102299,'Cullar Vega','Spain','ES','Cullar Vega (Spain)',1,1,0),(2989,0,102300,'Curitibanos','Brazil','BR','Curitibanos (Brazil)',1,1,0),(2990,0,102301,'Dabotz','Hungary','HU','Dabotz (Hungary)',1,1,0),(2991,0,102302,'Dalton Piercy','United Kingdom','UK','Dalton Piercy (United Kingdom)',1,1,0),(2992,0,102303,'Dalton-in-Furness','United Kingdom','UK','Dalton-in-Furness (United Kingdom)',1,1,0),(2993,0,102304,'Daocheng','China','CN','Daocheng (China)',1,1,0),(2994,0,102305,'Datong','Taiwan','TW','Datong (Taiwan)',1,1,0),(2995,0,102306,'Deacon','Canada','CA','Deacon (Canada)',1,1,0),(2996,0,102307,'Dedinky','Slovakia','SK','Dedinky (Slovakia)',1,1,0),(2997,0,102308,'Deurle','Belgium','BE','Deurle (Belgium)',1,1,0),(2998,0,102309,'Dhangadhi','Nepal','NP','Dhangadhi (Nepal)',1,1,0),(2999,0,102311,'Dichato','Chile','CL','Dichato (Chile)',1,1,0),(3000,0,102312,'Dobrany','Czech Republic','CZ','Dobrany (Czech Republic)',1,1,0),(3001,0,102313,'Dobrinischte','Bulgaria','BG','Dobrinischte (Bulgaria)',1,1,0),(3002,0,102314,'Doddington','United Kingdom','UK','Doddington (United Kingdom)',1,1,0),(3003,0,102315,'Domacevo','Belarus','BY','Domacevo (Belarus)',1,1,0),(3004,0,102316,'Donje Vlase','Serbia','RS','Donje Vlase (Serbia)',1,1,0),(3005,0,102317,'Donji Kraljevec','Croatia','HR','Donji Kraljevec (Croatia)',1,1,0),(3006,0,102318,'Douvrin','France','FR','Douvrin (France)',1,1,0),(3007,0,102319,'Downderry','United Kingdom','UK','Downderry (United Kingdom)',1,1,0),(3008,0,102320,'Dragoslavele','Romania','RO','Dragoslavele (Romania)',1,1,0),(3009,0,102321,'Dubrovskiy','Russia','RU','Dubrovskiy (Russia)',1,1,0),(3010,0,102322,'Dundee','South Africa','ZA','Dundee (South Africa)',1,1,0),(3011,0,102323,'Dural','Australia','AU','Dural (Australia)',1,1,0),(3012,0,102324,'Dzoraget','Armenia','AM','Dzoraget (Armenia)',1,1,0),(3013,0,102325,'Eardisley',NULL,NULL,'Eardisley ()',1,1,0),(3014,0,102326,'Edwinstowe','United Kingdom','UK','Edwinstowe (United Kingdom)',1,1,0),(3015,0,102328,'Egnyshevka','Russia','RU','Egnyshevka (Russia)',1,1,0),(3016,0,102329,'Ejby Strand','Denmark','DK','Ejby Strand (Denmark)',1,1,0),(3017,0,102330,'El Colegio','Colombia','CO','El Colegio (Colombia)',1,1,0),(3018,0,102331,'El Pescadero','Mexico','MX','El Pescadero (Mexico)',1,1,0),(3019,0,102332,'Elafonisos','Greece','GR','Elafonisos (Greece)',1,1,0),(3020,0,102333,'Bellano','Italy','IT','Bellano (Italy)',1,1,0),(3021,0,102334,'Huacho','Peru','PE','Huacho (Peru)',1,1,0),(3022,0,102335,'Huauchinango','Mexico','MX','Huauchinango (Mexico)',1,1,0),(3023,0,102336,'Hunnebostrand','Sweden','SE','Hunnebostrand (Sweden)',1,1,0),(3024,0,102337,'IIe d\' Houat','France','FR','IIe d\' Houat (France)',1,1,0),(3025,0,102338,'Ilam','United Kingdom','UK','Ilam (United Kingdom)',1,1,0),(3026,0,102339,'Ile aux Nattes','Madagascar','MG','Ile aux Nattes (Madagascar)',1,1,0),(3027,0,102340,'Iloca','Chile','CL','Iloca (Chile)',1,1,0),(3028,0,102341,'Iluka','Australia','AU','Iluka (Australia)',1,1,0),(3029,0,102342,'Imbil','Australia','AU','Imbil (Australia)',1,1,0),(3030,0,102343,'Ingham','United Kingdom','UK','Ingham (United Kingdom)',1,1,0),(3031,0,102344,'Inosemzewo','Russia','RU','Inosemzewo (Russia)',1,1,0),(3032,0,102345,'Ischim','Russia','RU','Ischim (Russia)',1,1,0),(3033,0,102346,'Isesaki','Japan','JP','Isesaki (Japan)',1,1,0),(3034,0,102347,'Iseyin','Nigeria','NG','Iseyin (Nigeria)',1,1,0),(3035,0,102348,'Isla Popa','Panama','PA','Isla Popa (Panama)',1,1,0),(3036,0,102349,'Isle of Eigg','United Kingdom','UK','Isle of Eigg (United Kingdom)',1,1,0),(3037,0,102350,'Isle of Whithorn','United Kingdom','UK','Isle of Whithorn (United Kingdom)',1,1,0),(3038,0,102351,'Isle-et-Bardais','France','FR','Isle-et-Bardais (France)',1,1,0),(3039,0,102352,'Ivy Lea','Canada','CA','Ivy Lea (Canada)',1,1,0),(3040,0,102353,'Ivybridge','United Kingdom','UK','Ivybridge (United Kingdom)',1,1,0),(3041,0,102354,'Jarotschin','Poland','PL','Jarotschin (Poland)',1,1,0),(3042,0,102355,'Jatingaleh','Indonesia','ID','Jatingaleh (Indonesia)',1,1,0),(3043,0,102356,'Jaurrieta','Spain','ES','Jaurrieta (Spain)',1,1,0),(3044,0,102357,'Jelling','Denmark','DK','Jelling (Denmark)',1,1,0),(3045,0,102358,'Jerischmarkt','Romania','RO','Jerischmarkt (Romania)',1,1,0),(3046,13109,102359,'Jesmond','Australia','AU','Jesmond (Australia)',1,1,0),(3047,0,102360,'Jesus Maria','Argentina','AR','Jesus Maria (Argentina)',1,1,0),(3048,0,102361,'Jian','Taiwan','TW','Jian (Taiwan)',1,1,0),(3049,13136,102362,'Jiaozhou','China','CN','Jiaozhou (China)',1,1,0),(3050,0,102363,'Jimera de Libar','Spain','ES','Jimera de Libar (Spain)',1,1,0),(3051,0,102364,'Jossgrund-Lettgenbrunn','Germany','DE','Jossgrund-Lettgenbrunn (Germany)',1,1,0),(3052,0,102365,'Junglinster','Luxembourg','LU','Junglinster (Luxembourg)',1,1,0),(3053,0,102366,'Junliangcheng','China','CN','Junliangcheng (China)',1,1,0),(3054,0,102367,'Elatou','Greece','GR','Elatou (Greece)',1,1,0),(3055,0,102368,'Elmali','Turkey','TR','Elmali (Turkey)',1,1,0),(3056,0,102369,'Embsay','United Kingdom','UK','Embsay (United Kingdom)',1,1,0),(3057,0,102370,'Emen','Bulgaria','BG','Emen (Bulgaria)',1,1,0),(3058,0,102371,'Ensenada Los Muertos','Mexico','MX','Ensenada Los Muertos (Mexico)',1,1,0),(3059,8840,102372,'Epinouze','France','FR','Epinouze (France)',1,1,0),(3060,0,102373,'Epoisses','France','FR','Epoisses (France)',1,1,0),(3061,0,102374,'Erongaricuaro','Mexico','MX','Erongaricuaro (Mexico)',1,1,0),(3062,0,102375,'Escolca','Italy','IT','Escolca (Italy)',1,1,0),(3063,8936,102376,'Eskoriatza','Spain','ES','Eskoriatza (Spain)',1,1,0),(3064,9044,102377,'Euroa','Australia','AU','Euroa (Australia)',1,1,0),(3065,0,102378,'Evandale','Australia','AU','Evandale (Australia)',1,1,0),(3066,0,102379,'Exeter','Australia','AU','Exeter (Australia)',1,1,0),(3067,0,102380,'Exilles','Italy','IT','Exilles (Italy)',1,1,0),(3068,0,102381,'Eynsford','United Kingdom','UK','Eynsford (United Kingdom)',1,1,0),(3069,0,102382,'Facatativa','Colombia','CO','Facatativa (Colombia)',1,1,0),(3070,0,102383,'Fafer','Italy','IT','Fafer (Italy)',1,1,0),(3071,9205,102384,'Fang','Thailand','TH','Fang (Thailand)',1,1,0),(3072,0,102385,'Farjestaden','Sweden','SE','Farjestaden (Sweden)',1,1,0),(3073,0,102386,'Faugeres','France','FR','Faugeres (France)',1,1,0),(3074,0,102387,'Fehraltorf','Switzerland','CH','Fehraltorf (Switzerland)',1,1,0),(3075,0,102388,'Fengjie','China','CN','Fengjie (China)',1,1,0),(3076,0,102389,'Fenyang','China','CN','Fenyang (China)',1,1,0),(3077,0,102390,'Fiambala','Argentina','AR','Fiambala (Argentina)',1,1,0),(3078,9393,102391,'Fidenza','Italy','IT','Fidenza (Italy)',1,1,0),(3079,0,102392,'Fieni','Romania','RO','Fieni (Romania)',1,1,0),(3080,0,102393,'Flawil','Switzerland','CH','Flawil (Switzerland)',1,1,0),(3081,0,102394,'Fomeque','Colombia','CO','Fomeque (Colombia)',1,1,0),(3082,0,102395,'Fontaine','France','FR','Fontaine (France)',1,1,0),(3083,0,102396,'Fontenay-aux-Roses','France','FR','Fontenay-aux-Roses (France)',1,1,0),(3084,9695,102397,'Fort-Coulonge','Canada','CA','Fort-Coulonge (Canada)',1,1,0),(3085,0,102398,'Foumban','Cameroon','CM','Foumban (Cameroon)',1,1,0),(3086,0,102399,'Friedrichsthal','Germany','DE','Friedrichsthal (Germany)',1,1,0),(3087,0,102400,'Frocester','United Kingdom','UK','Frocester (United Kingdom)',1,1,0),(3088,0,102401,'Fukuchiyama','Japan','JP','Fukuchiyama (Japan)',1,1,0),(3089,0,102402,'Fuli','Taiwan','TW','Fuli (Taiwan)',1,1,0),(3090,0,102403,'Galizano','Spain','ES','Galizano (Spain)',1,1,0),(3091,0,102404,'Gallur','Spain','ES','Gallur (Spain)',1,1,0),(3092,0,102405,'Galmaarden','Belgium','BE','Galmaarden (Belgium)',1,1,0),(3093,0,102406,'Galtelli','Italy','IT','Galtelli (Italy)',1,1,0),(3094,0,102407,'Garelochhead','United Kingdom','UK','Garelochhead (United Kingdom)',1,1,0),(3095,0,102408,'Gattschina','Russia','RU','Gattschina (Russia)',1,1,0),(3096,0,102409,'Gerzen','Germany','DE','Gerzen (Germany)',1,1,0),(3097,10404,102410,'Gif-sur-Yvette','France','FR','Gif-sur-Yvette (France)',1,1,0),(3098,0,102411,'Gikondo','Rwanda','RW','Gikondo (Rwanda)',1,1,0),(3099,0,102412,'Ginasservis','France','FR','Ginasservis (France)',1,1,0),(3100,0,102413,'Gingin','Australia','AU','Gingin (Australia)',1,1,0),(3101,0,102414,'Glasow','Russia','RU','Glasow (Russia)',1,1,0),(3102,0,102415,'Glendon Brook','Australia','AU','Glendon Brook (Australia)',1,1,0),(3103,0,102416,'Golitsyno','Russia','RU','Golitsyno (Russia)',1,1,0),(3104,0,102417,'Gondiswil','Switzerland','CH','Gondiswil (Switzerland)',1,1,0),(3105,0,102418,'Grades','Austria','AT','Grades (Austria)',1,1,0),(3106,0,102419,'Gramazie','France','FR','Gramazie (France)',1,1,0),(3107,0,102420,'Grateley','United Kingdom','UK','Grateley (United Kingdom)',1,1,0),(3108,0,102421,'Grindleford','United Kingdom','UK','Grindleford (United Kingdom)',1,1,0),(3109,11031,102422,'Gropparello','Italy','IT','Gropparello (Italy)',1,1,0),(3110,0,102423,'Grubbenvorst','Netherlands','NL','Grubbenvorst (Netherlands)',1,1,0),(3111,0,102424,'Guben','Poland','PL','Guben (Poland)',1,1,0),(3112,0,102425,'Gulgong','Australia','AU','Gulgong (Australia)',1,1,0),(3113,0,102426,'Gyeongbuk','South Korea','KR','Gyeongbuk (South Korea)',1,1,0),(3114,11266,102427,'Haaksbergen','Netherlands','NL','Haaksbergen (Netherlands)',1,1,0),(3115,0,102428,'Hadano','Japan','JP','Hadano (Japan)',1,1,0),(3116,11356,102429,'Hakkari','Turkey','TR','Hakkari (Turkey)',1,1,0),(3117,0,102430,'Hambledon','United Kingdom','UK','Hambledon (United Kingdom)',1,1,0),(3118,0,102431,'Harbiye','Turkey','TR','Harbiye (Turkey)',1,1,0),(3119,0,102432,'Hartenbos','South Africa','ZA','Hartenbos (South Africa)',1,1,0),(3120,0,102433,'Harty','United Kingdom','UK','Harty (United Kingdom)',1,1,0),(3121,0,102434,'Havirov','Czech Republic','CZ','Havirov (Czech Republic)',1,1,0),(3122,0,102435,'Hawirzow','Czech Republic','CZ','Hawirzow (Czech Republic)',1,1,0),(3123,0,102436,'Herrliberg','Switzerland','CH','Herrliberg (Switzerland)',1,1,0),(3124,0,102437,'Hicks Bay','New Zealand','NZ','Hicks Bay (New Zealand)',1,1,0),(3125,11993,102438,'Higashihiroshima','Japan','JP','Higashihiroshima (Japan)',1,1,0),(3126,0,102439,'Hillsborough','United Kingdom','UK','Hillsborough (United Kingdom)',1,1,0),(3127,0,102440,'Hingula','Sri Lanka','LK','Hingula (Sri Lanka)',1,1,0),(3128,0,102441,'Hirado','Japan','JP','Hirado (Japan)',1,1,0),(3129,0,102442,'Hlybokaye','Belarus','BY','Hlybokaye (Belarus)',1,1,0),(3130,0,102443,'Homa Bay','Kenya','KE','Homa Bay (Kenya)',1,1,0),(3131,0,102444,'Hono','Sweden','SE','Hono (Sweden)',1,1,0),(3132,12250,102445,'Hoog Soeren','Netherlands','NL','Hoog Soeren (Netherlands)',1,1,0),(3133,0,102446,'Harjumaa','Estonia','EE','Harjumaa (Estonia)',1,1,0),(3134,0,102447,'Harlev','Denmark','DK','Harlev (Denmark)',1,1,0),(3135,0,102448,'Harpham','United Kingdom','UK','Harpham (United Kingdom)',1,1,0),(3136,0,102449,'Hartshorne','United Kingdom','UK','Hartshorne (United Kingdom)',1,1,0),(3137,0,102450,'Hashimoto','Japan','JP','Hashimoto (Japan)',1,1,0),(3138,0,102451,'Heers','Belgium','BE','Heers (Belgium)',1,1,0),(3139,0,102452,'Hermanmiestetz','Czech Republic','CZ','Hermanmiestetz (Czech Republic)',1,1,0),(3140,0,102453,'Hilborough','United Kingdom','UK','Hilborough (United Kingdom)',1,1,0),(3141,0,102454,'Hillerstorp','Sweden','SE','Hillerstorp (Sweden)',1,1,0),(3142,0,102455,'Eura','Finland','FI','Eura (Finland)',1,1,0),(3143,0,102456,'Everton Park','Australia','AU','Everton Park (Australia)',1,1,0),(3144,0,102457,'Fara Olivana Con Sola','Italy','IT','Fara Olivana Con Sola (Italy)',1,1,0),(3145,0,102459,'Fauville-en-Caux','France','FR','Fauville-en-Caux (France)',1,1,0),(3146,0,102460,'Faxinal dos Guedes','Brazil','BR','Faxinal dos Guedes (Brazil)',1,1,0),(3147,0,102461,'Fengping Village','Taiwan','TW','Fengping Village (Taiwan)',1,1,0),(3148,0,102462,'Fergus','Canada','CA','Fergus (Canada)',1,1,0),(3149,0,102463,'Fertoboz','Hungary','HU','Fertoboz (Hungary)',1,1,0),(3150,0,102464,'Fincken','Germany','DE','Fincken (Germany)',1,1,0),(3151,0,102465,'Fingal Bay','Australia','AU','Fingal Bay (Australia)',1,1,0),(3152,0,102466,'Force','Italy','IT','Force (Italy)',1,1,0),(3153,0,102467,'Foresters Falls','Canada','CA','Foresters Falls (Canada)',1,1,0),(3154,0,102468,'Foros','Ukraine','UA','Foros (Ukraine)',1,1,0),(3155,0,102469,'Frastanz','Austria','AT','Frastanz (Austria)',1,1,0),(3156,0,102470,'Frias','Argentina','AR','Frias (Argentina)',1,1,0),(3157,0,102471,'Frillesas','Sweden','SE','Frillesas (Sweden)',1,1,0),(3158,0,102472,'Fryazino','Russia','RU','Fryazino (Russia)',1,1,0),(3159,0,102473,'Frysava pod Zakovou horou','Czech Republic','CZ','Frysava pod Zakovou horou (Czech Republic)',1,1,0),(3160,0,102474,'Fuxin','China','CN','Fuxin (China)',1,1,0),(3161,10113,102475,'Gaobeidian','China','CN','Gaobeidian (China)',1,1,0),(3162,10119,102476,'Garapan','Northern Mariana Islands','MP','Garapan (Northern Mariana Islands)',1,1,0),(3163,0,102477,'Garzon','Colombia','CO','Garzon (Colombia)',1,1,0),(3164,0,102478,'Gbelce','Slovakia','SK','Gbelce (Slovakia)',1,1,0),(3165,0,102479,'Geraardsbergen','Belgium','BE','Geraardsbergen (Belgium)',1,1,0),(3166,0,102480,'Gieville','France','FR','Gieville (France)',1,1,0),(3167,0,102481,'Giurgiu','Romania','RO','Giurgiu (Romania)',1,1,0),(3168,0,102482,'Gmina Kurow','Poland','PL','Gmina Kurow (Poland)',1,1,0),(3169,0,102483,'Gorjatschi Kljutsch','Russia','RU','Gorjatschi Kljutsch (Russia)',1,1,0),(3170,0,102484,'Gornja Trepca','Serbia','RS','Gornja Trepca (Serbia)',1,1,0),(3171,0,102485,'Gorzno','Poland','PL','Gorzno (Poland)',1,1,0),(3172,0,102487,'Gracanica','Bosnia and Herzegowina','BA','Gracanica (Bosnia and Herzegowina)',1,1,0),(3173,0,102488,'Gradoli','Italy','IT','Gradoli (Italy)',1,1,0),(3174,0,102489,'Grand-Fort-Philippe','France','FR','Grand-Fort-Philippe (France)',1,1,0),(3175,0,102490,'Granges-les-Beaumont','France','FR','Granges-les-Beaumont (France)',1,1,0),(3176,0,102491,'Granja de Rocamora','Spain','ES','Granja de Rocamora (Spain)',1,1,0),(3177,0,102492,'Great Yeldham','United Kingdom','UK','Great Yeldham (United Kingdom)',1,1,0),(3178,0,102493,'Grisignano di Zocco','Italy','IT','Grisignano di Zocco (Italy)',1,1,0),(3179,0,102494,'Grobern','Germany','DE','Grobern (Germany)',1,1,0),(3180,0,102495,'Gro? Billowitz','Czech Republic','CZ','Gro? Billowitz (Czech Republic)',1,1,0),(3181,0,102496,'Grosshochstetten','Switzerland','CH','Grosshochstetten (Switzerland)',1,1,0),(3182,0,102497,'Grumolo delle Abbadesse','Italy','IT','Grumolo delle Abbadesse (Italy)',1,1,0),(3183,0,102498,'Guarne','Colombia','CO','Guarne (Colombia)',1,1,0),(3184,0,102500,'Guyra','Australia','AU','Guyra (Australia)',1,1,0),(3185,0,102501,'Guzelyurt','Turkey','TR','Guzelyurt (Turkey)',1,1,0),(3186,0,102502,'Gwynedd','United Kingdom','UK','Gwynedd (United Kingdom)',1,1,0),(3187,0,102503,'Hajssyn','Ukraine','UA','Hajssyn (Ukraine)',1,1,0),(3188,0,102504,'Halbau','Poland','PL','Halbau (Poland)',1,1,0),(3189,0,102505,'Hanley Swan','United Kingdom','UK','Hanley Swan (United Kingdom)',1,1,0),(3190,0,102506,'Hanyu','Japan','JP','Hanyu (Japan)',1,1,0),(3191,0,102507,'Harkensee','Germany','DE','Harkensee (Germany)',1,1,0),(3192,0,102508,'Harrietville','Australia','AU','Harrietville (Australia)',1,1,0),(3193,0,102509,'Haspra','Ukraine','UA','Haspra (Ukraine)',1,1,0),(3194,0,102510,'Hautefort','France','FR','Hautefort (France)',1,1,0),(3195,0,102511,'Hawarden','New Zealand','NZ','Hawarden (New Zealand)',1,1,0),(3196,0,102513,'Herbignac','France','FR','Herbignac (France)',1,1,0),(3197,0,102514,'Herreruela','Spain','ES','Herreruela (Spain)',1,1,0),(3198,11996,102515,'Higashimurayama','Japan','JP','Higashimurayama (Japan)',1,1,0),(3199,0,102516,'Himbleton','United Kingdom','UK','Himbleton (United Kingdom)',1,1,0),(3200,0,102517,'Holleschau','Czech Republic','CZ','Holleschau (Czech Republic)',1,1,0),(3201,0,102518,'Hollviken','Sweden','SE','Hollviken (Sweden)',1,1,0),(3202,0,102519,'Holsbybrunn','Sweden','SE','Holsbybrunn (Sweden)',1,1,0),(3203,12209,102520,'Holyrood','Canada','CA','Holyrood (Canada)',1,1,0),(3204,0,102521,'Hook Norton','United Kingdom','UK','Hook Norton (United Kingdom)',1,1,0),(3205,0,102522,'Hornachuelos','Spain','ES','Hornachuelos (Spain)',1,1,0),(3206,0,102523,'Huairou','China','CN','Huairou (China)',1,1,0),(3207,0,102524,'Hubova','Slovakia','SK','Hubova (Slovakia)',1,1,0),(3208,0,102525,'Huichapan','Mexico','MX','Huichapan (Mexico)',1,1,0),(3209,0,102526,'Humppila','Finland','FI','Humppila (Finland)',1,1,0),(3210,12510,102527,'Hustopece','Czech Republic','CZ','Hustopece (Czech Republic)',1,1,0),(3211,0,102528,'Ibatiba','Brazil','BR','Ibatiba (Brazil)',1,1,0),(3212,0,102529,'Ibstock','United Kingdom','UK','Ibstock (United Kingdom)',1,1,0),(3213,0,102530,'Icapui','Brazil','BR','Icapui (Brazil)',1,1,0),(3214,12567,102532,'Ichikawa','Japan','JP','Ichikawa (Japan)',1,1,0),(3215,0,102533,'Kaneshie','Ghana','GH','Kaneshie (Ghana)',1,1,0),(3216,0,102534,'Kanne','Belgium','BE','Kanne (Belgium)',1,1,0),(3217,0,102535,'Kapitanovka','Ukraine','UA','Kapitanovka (Ukraine)',1,1,0),(3218,0,102536,'Karacasu','Turkey','TR','Karacasu (Turkey)',1,1,0),(3219,0,102537,'Karakol','Kyrgyzstan','KG','Karakol (Kyrgyzstan)',1,1,0),(3220,0,102538,'Karwin','Czech Republic','CZ','Karwin (Czech Republic)',1,1,0),(3221,0,102539,'Kashiba','Japan','JP','Kashiba (Japan)',1,1,0),(3222,0,102541,'Katyn','Russia','RU','Katyn (Russia)',1,1,0),(3223,0,102542,'Kaw Kwang beach','Thailand','TH','Kaw Kwang beach (Thailand)',1,1,0),(3224,0,102543,'Kawaguchi','Japan','JP','Kawaguchi (Japan)',1,1,0),(3225,0,102544,'Kenten','Indonesia','ID','Kenten (Indonesia)',1,1,0),(3226,0,102546,'Khlong Luang','Thailand','TH','Khlong Luang (Thailand)',1,1,0),(3227,0,102547,'Kilija','Ukraine','UA','Kilija (Ukraine)',1,1,0),(3228,14040,102548,'Kilyos','Turkey','TR','Kilyos (Turkey)',1,1,0),(3229,0,102549,'Kingswood','Australia','AU','Kingswood (Australia)',1,1,0),(3230,0,102550,'Kinlochewe','United Kingdom','UK','Kinlochewe (United Kingdom)',1,1,0),(3231,0,102551,'Kirkby Stephen','United Kingdom','UK','Kirkby Stephen (United Kingdom)',1,1,0),(3232,0,102552,'Kirkland',NULL,NULL,'Kirkland ()',1,1,0),(3233,14148,102553,'Kirklareli','Turkey','TR','Kirklareli (Turkey)',1,1,0),(3234,0,102554,'Kirkowo','Bulgaria','BG','Kirkowo (Bulgaria)',1,1,0),(3235,0,102555,'Kirok','Romania','RO','Kirok (Romania)',1,1,0),(3236,0,102556,'Kirowo-Tschepezk','Russia','RU','Kirowo-Tschepezk (Russia)',1,1,0),(3237,0,102557,'Laroque-d\'Olmes','France','FR','Laroque-d\'Olmes (France)',1,1,0),(3238,15050,102558,'Las Grutas','Argentina','AR','Las Grutas (Argentina)',1,1,0),(3239,0,102559,'Las Lomas','Trinidad and Tobago','TT','Las Lomas (Trinidad and Tobago)',1,1,0),(3240,0,102560,'Lat Krabang','Thailand','TH','Lat Krabang (Thailand)',1,1,0),(3241,0,102561,'Latisana','Italy','IT','Latisana (Italy)',1,1,0),(3242,15145,102562,'Lavoute-Chilhac','France','FR','Lavoute-Chilhac (France)',1,1,0),(3243,0,102563,'Lazarevskoe','Russia','RU','Lazarevskoe (Russia)',1,1,0),(3244,0,102564,'Les Bons Villers','Belgium','BE','Les Bons Villers (Belgium)',1,1,0),(3245,0,102565,'Les Terres-Basses','Saint Martin (French part)','MF','Les Terres-Basses (Saint Martin (French part))',1,1,0),(3246,0,102566,'Leshten','Bulgaria','BG','Leshten (Bulgaria)',1,1,0),(3247,0,102567,'Letur','Spain','ES','Letur (Spain)',1,1,0),(3248,0,102568,'Level','Hungary','HU','Level (Hungary)',1,1,0),(3249,0,102569,'Liangshan','China','CN','Liangshan (China)',1,1,0),(3250,0,102570,'Licciana Nardi','Italy','IT','Licciana Nardi (Italy)',1,1,0),(3251,0,102571,'Liman','Israel','IL','Liman (Israel)',1,1,0),(3252,0,102572,'Lipno','Poland','PL','Lipno (Poland)',1,1,0),(3253,0,102573,'Little Fort','Canada','CA','Little Fort (Canada)',1,1,0),(3254,0,102574,'Litvinov','Czech Republic','CZ','Litvinov (Czech Republic)',1,1,0),(3255,0,102575,'Lladurs','Spain','ES','Lladurs (Spain)',1,1,0),(3256,0,102576,'Llanarthne','United Kingdom','UK','Llanarthne (United Kingdom)',1,1,0),(3257,0,102577,'Lobnja','Russia','RU','Lobnja (Russia)',1,1,0),(3258,0,102578,'Loma Bola','Argentina','AR','Loma Bola (Argentina)',1,1,0),(3259,15849,102579,'Longare','Italy','IT','Longare (Italy)',1,1,0),(3260,0,102580,'Longefoy-sur-Aime','France','FR','Longefoy-sur-Aime (France)',1,1,0),(3261,0,102581,'Louga','Senegal','SN','Louga (Senegal)',1,1,0),(3262,0,102582,'Louvigne de Bais','France','FR','Louvigne de Bais (France)',1,1,0),(3263,0,102583,'Lu\'an','China','CN','Lu\'an (China)',1,1,0),(3264,0,102584,'Luanchuan County','China','CN','Luanchuan County (China)',1,1,0),(3265,0,102585,'Luche-Pringe','France','FR','Luche-Pringe (France)',1,1,0),(3266,0,102586,'Luis Eduardo Magalhaes','Brazil','BR','Luis Eduardo Magalhaes (Brazil)',1,1,0),(3267,0,102587,'Lumajang','Indonesia','ID','Lumajang (Indonesia)',1,1,0),(3268,0,102588,'Lunahuana','Peru','PE','Lunahuana (Peru)',1,1,0),(3269,0,102589,'Luoding','China','CN','Luoding (China)',1,1,0),(3270,0,102590,'Lutzkampen','Germany','DE','Lutzkampen (Germany)',1,1,0),(3271,0,102591,'Luzenac','France','FR','Luzenac (France)',1,1,0),(3272,0,102592,'Luziania','Brazil','BR','Luziania (Brazil)',1,1,0),(3273,0,102593,'Lyaskovets','Bulgaria','BG','Lyaskovets (Bulgaria)',1,1,0),(3274,0,102594,'Lyckeby','Sweden','SE','Lyckeby (Sweden)',1,1,0),(3275,0,102595,'Macachin','Argentina','AR','Macachin (Argentina)',1,1,0),(3276,0,102596,'Mae Salong','Thailand','TH','Mae Salong (Thailand)',1,1,0),(3277,16414,102597,'Maintenon','France','FR','Maintenon (France)',1,1,0),(3278,16420,102598,'Maipu','Argentina','AR','Maipu (Argentina)',1,1,0),(3279,0,102600,'Maliuc','Romania','RO','Maliuc (Romania)',1,1,0),(3280,0,102601,'Maloyaroslavets','Russia','RU','Maloyaroslavets (Russia)',1,1,0),(3281,0,102602,'Manzhou','Taiwan','TW','Manzhou (Taiwan)',1,1,0),(3282,0,102603,'Maravatio','Mexico','MX','Maravatio (Mexico)',1,1,0),(3283,0,102604,'Maremma','Italy','IT','Maremma (Italy)',1,1,0),(3284,0,102605,'Margate','Australia','AU','Margate (Australia)',1,1,0),(3285,0,102606,'Marigot','Haiti','HT','Marigot (Haiti)',1,1,0),(3286,0,102607,'Marina di Altidona','Italy','IT','Marina di Altidona (Italy)',1,1,0),(3287,0,102608,'Martapura','Indonesia','ID','Martapura (Indonesia)',1,1,0),(3288,16962,102609,'Martensville','Canada','CA','Martensville (Canada)',1,1,0),(3289,0,102610,'Masaka','Uganda','UG','Masaka (Uganda)',1,1,0),(3290,0,102611,'Matoury','French Guiana','GF','Matoury (French Guiana)',1,1,0),(3291,0,102612,'Matrakeresztes','Hungary','HU','Matrakeresztes (Hungary)',1,1,0),(3292,0,102613,'Mattawa','Canada','CA','Mattawa (Canada)',1,1,0),(3293,0,102614,'Maubec','France','FR','Maubec (France)',1,1,0),(3294,0,102615,'Maza','Greece','GR','Maza (Greece)',1,1,0),(3295,0,102616,'Mechref','Lebanon','LB','Mechref (Lebanon)',1,1,0),(3296,0,102617,'Mejillones','Chile','CL','Mejillones (Chile)',1,1,0),(3297,0,102618,'Mekhzavod','Russia','RU','Mekhzavod (Russia)',1,1,0),(3298,0,102619,'Mentakab','Malaysia','MY','Mentakab (Malaysia)',1,1,0),(3299,0,102620,'Merindad de Montija','Spain','ES','Merindad de Montija (Spain)',1,1,0),(3300,17541,102621,'Messac','France','FR','Messac (France)',1,1,0),(3301,0,102622,'Metheringham','United Kingdom','UK','Metheringham (United Kingdom)',1,1,0),(3302,0,102623,'Miasino','Italy','IT','Miasino (Italy)',1,1,0),(3303,0,102624,'Middelstum','Netherlands','NL','Middelstum (Netherlands)',1,1,0),(3304,0,102625,'Middleton','Australia','AU','Middleton (Australia)',1,1,0),(3305,0,102626,'Mikolow','Poland','PL','Mikolow (Poland)',1,1,0),(3306,0,102627,'Milton Combe','United Kingdom','UK','Milton Combe (United Kingdom)',1,1,0),(3307,0,102628,'Miltonvale Park','Canada','CA','Miltonvale Park (Canada)',1,1,0),(3308,0,102629,'Minamiaso','Japan','JP','Minamiaso (Japan)',1,1,0),(3309,17800,102630,'Minturno','Italy','IT','Minturno (Italy)',1,1,0),(3310,17808,102631,'Mirabel','Canada','CA','Mirabel (Canada)',1,1,0),(3311,0,102632,'Missour','Morocco','MA','Missour (Morocco)',1,1,0),(3312,0,102633,'Miura','Japan','JP','Miura (Japan)',1,1,0),(3313,0,102634,'Mnisek pod Brdy','Czech Republic','CZ','Mnisek pod Brdy (Czech Republic)',1,1,0),(3314,0,102635,'Modbury','United Kingdom','UK','Modbury (United Kingdom)',1,1,0),(3315,0,102636,'Molinos','France','FR','Molinos (France)',1,1,0),(3316,0,102637,'Mollendo','Peru','PE','Mollendo (Peru)',1,1,0),(3317,0,102638,'Monte Alegre do Sul','Brazil','BR','Monte Alegre do Sul (Brazil)',1,1,0),(3318,0,102639,'Monte Caseros','Argentina','AR','Monte Caseros (Argentina)',1,1,0),(3319,0,102640,'Monte de Caparica','Portugal','PT','Monte de Caparica (Portugal)',1,1,0),(3320,0,102641,'Levidi','Greece','GR','Levidi (Greece)',1,1,0),(3321,0,102642,'Lezajsk','Poland','PL','Lezajsk (Poland)',1,1,0),(3322,0,102643,'L\'Honor-de-Cos','France','FR','L\'Honor-de-Cos (France)',1,1,0),(3323,0,102644,'Libo','China','CN','Libo (China)',1,1,0),(3324,0,102645,'Liloan','Philippines','PH','Liloan (Philippines)',1,1,0),(3325,0,102646,'Limetz-Villez','France','FR','Limetz-Villez (France)',1,1,0),(3326,0,102647,'Lindesberg','Sweden','SE','Lindesberg (Sweden)',1,1,0),(3327,0,102648,'Lingua','Italy','IT','Lingua (Italy)',1,1,0),(3328,0,102649,'Liss','United Kingdom','UK','Liss (United Kingdom)',1,1,0),(3329,0,102650,'Littlehempston','United Kingdom','UK','Littlehempston (United Kingdom)',1,1,0),(3330,0,102651,'Llangattock','United Kingdom','UK','Llangattock (United Kingdom)',1,1,0),(3331,0,102652,'Llantrisant','United Kingdom','UK','Llantrisant (United Kingdom)',1,1,0),(3332,0,102653,'Llanybydder','United Kingdom','UK','Llanybydder (United Kingdom)',1,1,0),(3333,0,102654,'Long Bay','Jamaica','JM','Long Bay (Jamaica)',1,1,0),(3334,0,102655,'Longframlington','United Kingdom','UK','Longframlington (United Kingdom)',1,1,0),(3335,0,102656,'Loreo','Italy','IT','Loreo (Italy)',1,1,0),(3336,15903,102657,'Loria','Italy','IT','Loria (Italy)',1,1,0),(3337,0,102658,'Los Lagos','Chile','CL','Los Lagos (Chile)',1,1,0),(3338,0,102659,'Los Organos','Peru','PE','Los Organos (Peru)',1,1,0),(3339,0,102660,'Louisburgh','Ireland','IE','Louisburgh (Ireland)',1,1,0),(3340,0,102661,'Lower Beeding','United Kingdom','UK','Lower Beeding (United Kingdom)',1,1,0),(3341,0,102662,'Lucena City','Philippines','PH','Lucena City (Philippines)',1,1,0),(3342,0,102663,'Lucena del Puerto','Spain','ES','Lucena del Puerto (Spain)',1,1,0),(3343,0,102664,'Luces en el Mar','Mexico','MX','Luces en el Mar (Mexico)',1,1,0),(3344,0,102665,'Lugar da Estrada','Portugal','PT','Lugar da Estrada (Portugal)',1,1,0),(3345,0,102666,'Lugu',NULL,NULL,'Lugu ()',1,1,0),(3346,0,102667,'Lumbier','Spain','ES','Lumbier (Spain)',1,1,0),(3347,22420,102668,'Quintanaduenas','Spain','ES','Quintanaduenas (Spain)',1,1,0),(3348,0,102669,'Racine','Canada','CA','Racine (Canada)',1,1,0),(3349,22470,102670,'Radisson','Canada','CA','Radisson (Canada)',1,1,0),(3350,0,102671,'Radymno','Poland','PL','Radymno (Poland)',1,1,0),(3351,0,102672,'Rainton','United Kingdom','UK','Rainton (United Kingdom)',1,1,0),(3352,0,102673,'Rakitna','Slovenia','SI','Rakitna (Slovenia)',1,1,0),(3353,0,102674,'Rataje nad Sazavou','Czech Republic','CZ','Rataje nad Sazavou (Czech Republic)',1,1,0),(3354,0,102676,'Rauscha','Poland','PL','Rauscha (Poland)',1,1,0),(3355,0,102677,'Rayfun','Lebanon','LB','Rayfun (Lebanon)',1,1,0),(3356,22655,102678,'Razgrad','Bulgaria','BG','Razgrad (Bulgaria)',1,1,0),(3357,0,102679,'Razvilka','Russia','RU','Razvilka (Russia)',1,1,0),(3358,0,102680,'Redvers','Canada','CA','Redvers (Canada)',1,1,0),(3359,0,102681,'Reftele','Sweden','SE','Reftele (Sweden)',1,1,0),(3360,0,102682,'Rengo','Chile','CL','Rengo (Chile)',1,1,0),(3361,0,102684,'Reps','Romania','RO','Reps (Romania)',1,1,0),(3362,0,102685,'Reut','Germany','DE','Reut (Germany)',1,1,0),(3363,0,102686,'Rez','Czech Republic','CZ','Rez (Czech Republic)',1,1,0),(3364,0,102687,'Rezzo','Italy','IT','Rezzo (Italy)',1,1,0),(3365,0,102688,'Ribera del Fresno','Spain','ES','Ribera del Fresno (Spain)',1,1,0),(3366,0,102689,'Ricobayo','Spain','ES','Ricobayo (Spain)',1,1,0),(3367,0,102690,'Riley Green','United Kingdom','UK','Riley Green (United Kingdom)',1,1,0),(3368,0,102691,'Rio Bonito','Brazil','BR','Rio Bonito (Brazil)',1,1,0),(3369,0,102692,'Rio Celeste','Costa Rica','CR','Rio Celeste (Costa Rica)',1,1,0),(3370,0,102693,'Rio dos Cedros','Brazil','BR','Rio dos Cedros (Brazil)',1,1,0),(3371,0,102694,'Riva Trigoso','Italy','IT','Riva Trigoso (Italy)',1,1,0),(3372,0,102695,'Rivello','Italy','IT','Rivello (Italy)',1,1,0),(3373,0,102696,'Roadwater','United Kingdom','UK','Roadwater (United Kingdom)',1,1,0),(3374,0,102697,'Rock Lake (Alberta)','Canada','CA','Rock Lake (Alberta) (Canada)',1,1,0),(3375,23117,102698,'Rockdale','Australia','AU','Rockdale (Australia)',1,1,0),(3376,0,102699,'Ronde','Denmark','DK','Ronde (Denmark)',1,1,0),(3377,0,102700,'Ronta','Italy','IT','Ronta (Italy)',1,1,0),(3378,0,102701,'Rosans','France','FR','Rosans (France)',1,1,0),(3379,0,102702,'Rosario do Sul','Brazil','BR','Rosario do Sul (Brazil)',1,1,0),(3380,0,102703,'Rossum','Netherlands','NL','Rossum (Netherlands)',1,1,0),(3381,0,102704,'Roydhouse','United Kingdom','UK','Roydhouse (United Kingdom)',1,1,0),(3382,0,102705,'Rozoy sur serre','France','FR','Rozoy sur serre (France)',1,1,0),(3383,0,102706,'Ruaudin','France','FR','Ruaudin (France)',1,1,0),(3384,0,102707,'Ruca - Matignon','France','FR','Ruca - Matignon (France)',1,1,0),(3385,0,102708,'Rudkobing','Denmark','DK','Rudkobing (Denmark)',1,1,0),(3386,0,102709,'Ruisui','Taiwan','TW','Ruisui (Taiwan)',1,1,0),(3387,0,102710,'Runnington','United Kingdom','UK','Runnington (United Kingdom)',1,1,0),(3388,0,102711,'Ruoti','Italy','IT','Ruoti (Italy)',1,1,0),(3389,0,102712,'Rushan','China','CN','Rushan (China)',1,1,0),(3390,0,102713,'Russia','Russia','RU','Russia (Russia)',1,1,0),(3391,0,102714,'Rustington','United Kingdom','UK','Rustington (United Kingdom)',1,1,0),(3392,0,102715,'Sadao','Thailand','TH','Sadao (Thailand)',1,1,0),(3393,23590,102716,'Sado','Japan','JP','Sado (Japan)',1,1,0),(3394,0,102717,'Safety Beach','Australia','AU','Safety Beach (Australia)',1,1,0),(3395,0,102718,'Saint Hostien','France','FR','Saint Hostien (France)',1,1,0),(3396,0,102719,'Saint Thomas Middle Island Parish','St. Kitts and Nevis','KN','Saint Thomas Middle Island Parish (St. Kitts and Nevis)',1,1,0),(3397,0,102720,'Sainte Julie','France','FR','Sainte Julie (France)',1,1,0),(3398,0,102721,'Saint-Firmin','France','FR','Saint-Firmin (France)',1,1,0),(3399,0,102722,'Saint-Gingolph','France','FR','Saint-Gingolph (France)',1,1,0),(3400,0,102723,'Saint-Ignace-de-Stanbridge','Canada','CA','Saint-Ignace-de-Stanbridge (Canada)',1,1,0),(3401,0,102724,'Saint-Jean-aux-Bois','France','FR','Saint-Jean-aux-Bois (France)',1,1,0),(3402,0,102725,'Saint-Marcel-les-Valence','France','FR','Saint-Marcel-les-Valence (France)',1,1,0),(3403,0,102726,'Saint-Remy-les-Chevreuse','France','FR','Saint-Remy-les-Chevreuse (France)',1,1,0),(3404,0,102727,'Saint-Salvy (Lot-et-Garonne)','France','FR','Saint-Salvy (Lot-et-Garonne) (France)',1,1,0),(3405,0,102728,'Saint-Savinien','France','FR','Saint-Savinien (France)',1,1,0),(3406,0,102729,'Ozamis','Philippines','PH','Ozamis (Philippines)',1,1,0),(3407,0,102730,'Pahia Ammos','Greece','GR','Pahia Ammos (Greece)',1,1,0),(3408,0,102731,'Pakembinangun','Indonesia','ID','Pakembinangun (Indonesia)',1,1,0),(3409,20599,102732,'Palagiano','Italy','IT','Palagiano (Italy)',1,1,0),(3410,20679,102733,'Pambula','Australia','AU','Pambula (Australia)',1,1,0),(3411,0,102734,'Pamplona',NULL,NULL,'Pamplona ()',1,1,0),(3412,0,102735,'Papamoa','New Zealand','NZ','Papamoa (New Zealand)',1,1,0),(3413,20751,102736,'Papanoa','Mexico','MX','Papanoa (Mexico)',1,1,0),(3414,0,102737,'Paracatu','Brazil','BR','Paracatu (Brazil)',1,1,0),(3415,20813,102738,'Pargas','Finland','FI','Pargas (Finland)',1,1,0),(3416,20818,102739,'Parigny','France','FR','Parigny (France)',1,1,0),(3417,20859,102740,'Parras de la Fuente','Mexico','MX','Parras de la Fuente (Mexico)',1,1,0),(3418,0,102741,'Passo Oscuro','Italy','IT','Passo Oscuro (Italy)',1,1,0),(3419,0,102742,'Pastorano','Italy','IT','Pastorano (Italy)',1,1,0),(3420,0,102743,'Paterna de Rivera','Spain','ES','Paterna de Rivera (Spain)',1,1,0),(3421,0,102744,'Patnos','Turkey','TR','Patnos (Turkey)',1,1,0),(3422,0,102745,'Pavlohrad','Ukraine','UA','Pavlohrad (Ukraine)',1,1,0),(3423,0,102746,'Pecka','Czech Republic','CZ','Pecka (Czech Republic)',1,1,0),(3424,0,102747,'Pedro Vicente Maldonado','Ecuador','EC','Pedro Vicente Maldonado (Ecuador)',1,1,0),(3425,0,102748,'Penjamo','Mexico','MX','Penjamo (Mexico)',1,1,0),(3426,0,102749,'Penza Oblast','Russia','RU','Penza Oblast (Russia)',1,1,0),(3427,0,102751,'Pereswet','Russia','RU','Pereswet (Russia)',1,1,0),(3428,0,102752,'Perquin','El Salvador','SV','Perquin (El Salvador)',1,1,0),(3429,21187,102753,'Perth-Andover','Canada','CA','Perth-Andover (Canada)',1,1,0),(3430,0,102754,'Pertouli','Greece','GR','Pertouli (Greece)',1,1,0),(3431,0,102755,'Peruwelz','Belgium','BE','Peruwelz (Belgium)',1,1,0),(3432,0,102756,'Pirdop','Bulgaria','BG','Pirdop (Bulgaria)',1,1,0),(3433,0,102757,'Piverone','Italy','IT','Piverone (Italy)',1,1,0),(3434,0,102758,'Playa Carrillo','Costa Rica','CR','Playa Carrillo (Costa Rica)',1,1,0),(3435,0,102759,'Playa Chachalacas','Mexico','MX','Playa Chachalacas (Mexico)',1,1,0),(3436,0,102760,'Playa Cocles','Costa Rica','CR','Playa Cocles (Costa Rica)',1,1,0),(3437,0,102761,'Playa Guiones','Costa Rica','CR','Playa Guiones (Costa Rica)',1,1,0),(3438,0,102762,'Plympton-Wyoming','Canada','CA','Plympton-Wyoming (Canada)',1,1,0),(3439,0,102763,'Poggio Picenze','Italy','IT','Poggio Picenze (Italy)',1,1,0),(3440,0,102764,'Pohorelice','Czech Republic','CZ','Pohorelice (Czech Republic)',1,1,0),(3441,0,102765,'Pom Coong village','Vietnam','VN','Pom Coong village (Vietnam)',1,1,0),(3442,0,102766,'Pont-en-Royans','France','FR','Pont-en-Royans (France)',1,1,0),(3443,0,102767,'Pontrhydfendigaid','United Kingdom','UK','Pontrhydfendigaid (United Kingdom)',1,1,0),(3444,0,102768,'Popowka','Ukraine','UA','Popowka (Ukraine)',1,1,0),(3445,0,102769,'Portreath','United Kingdom','UK','Portreath (United Kingdom)',1,1,0),(3446,0,102770,'Praia de Tairu','Brazil','BR','Praia de Tairu (Brazil)',1,1,0),(3447,0,102771,'Primorsko-Achtarsk','Russia','RU','Primorsko-Achtarsk (Russia)',1,1,0),(3448,0,102772,'Proceno','Italy','IT','Proceno (Italy)',1,1,0),(3449,0,102773,'Prossedi','Italy','IT','Prossedi (Italy)',1,1,0),(3450,0,102774,'Prybrezhnoe','Ukraine','UA','Prybrezhnoe (Ukraine)',1,1,0),(3451,0,102775,'Przylekow','Poland','PL','Przylekow (Poland)',1,1,0),(3452,0,102776,'Pueblo Tapao','Colombia','CO','Pueblo Tapao (Colombia)',1,1,0),(3453,0,102777,'Puerto Narino','Colombia','CO','Puerto Narino (Colombia)',1,1,0),(3454,0,102778,'Puerto Saavedra','Chile','CL','Puerto Saavedra (Chile)',1,1,0),(3455,0,102779,'Puning','China','CN','Puning (China)',1,1,0),(3456,0,102780,'Punta Goleta','Dominican Republic','DO','Punta Goleta (Dominican Republic)',1,1,0),(3457,0,102781,'Pushkinskiye Gory','Russia','RU','Pushkinskiye Gory (Russia)',1,1,0),(3458,0,102782,'Pusing','Malaysia','MY','Pusing (Malaysia)',1,1,0),(3459,0,102783,'Pyin U Lwin','Myanmar','MM','Pyin U Lwin (Myanmar)',1,1,0),(3460,0,102784,'Pythagoreion','Greece','GR','Pythagoreion (Greece)',1,1,0),(3461,0,102785,'Quartucciu','Italy','IT','Quartucciu (Italy)',1,1,0),(3462,0,102786,'Quatsino','Canada','CA','Quatsino (Canada)',1,1,0),(3463,0,102787,'Quirinopolis','Brazil','BR','Quirinopolis (Brazil)',1,1,0),(3464,0,102788,'Raattama','Finland','FI','Raattama (Finland)',1,1,0),(3465,0,102789,'Rabat','Malta','MT','Rabat (Malta)',1,1,0),(3466,0,102790,'Radejov','Czech Republic','CZ','Radejov (Czech Republic)',1,1,0),(3467,0,102791,'Radnevo','Bulgaria','BG','Radnevo (Bulgaria)',1,1,0),(3468,0,102792,'Radziunai','Lithuania','LT','Radziunai (Lithuania)',1,1,0),(3469,0,102793,'Ragama','Sri Lanka','LK','Ragama (Sri Lanka)',1,1,0),(3470,0,102794,'Rainy River','Canada','CA','Rainy River (Canada)',1,1,0),(3471,0,102795,'Ramacca','Italy','IT','Ramacca (Italy)',1,1,0),(3472,0,102796,'Red Rock','Australia','AU','Red Rock (Australia)',1,1,0),(3473,0,102797,'Reichenburg','Switzerland','CH','Reichenburg (Switzerland)',1,1,0),(3474,22791,102798,'Repentigny','Canada','CA','Repentigny (Canada)',1,1,0),(3475,0,102799,'Riebeek West','South Africa','ZA','Riebeek West (South Africa)',1,1,0),(3476,0,102800,'Rilski Manastir','Bulgaria','BG','Rilski Manastir (Bulgaria)',1,1,0),(3477,0,102801,'Riopar','Spain','ES','Riopar (Spain)',1,1,0),(3478,0,102802,'Robin Hood\'s Bay','United Kingdom','UK','Robin Hood\'s Bay (United Kingdom)',1,1,0),(3479,0,102803,'Roccamandolfi','Italy','IT','Roccamandolfi (Italy)',1,1,0),(3480,0,102804,'Roche-les-Clerval','France','FR','Roche-les-Clerval (France)',1,1,0),(3481,0,102805,'Rogatica','Bosnia and Herzegowina','BA','Rogatica (Bosnia and Herzegowina)',1,1,0),(3482,0,102806,'Ronco all\'Adige','Italy','IT','Ronco all\'Adige (Italy)',1,1,0),(3483,0,102807,'Rosebud','Canada','CA','Rosebud (Canada)',1,1,0),(3484,0,102808,'Rougham','United Kingdom','UK','Rougham (United Kingdom)',1,1,0),(3485,0,102809,'Rovolon','Italy','IT','Rovolon (Italy)',1,1,0),(3486,0,102810,'Roznava','Slovakia','SK','Roznava (Slovakia)',1,1,0),(3487,0,102811,'Rubyvale','Australia','AU','Rubyvale (Australia)',1,1,0),(3488,17888,102813,'Miyawaka','Japan','JP','Miyawaka (Japan)',1,1,0),(3489,0,102814,'Mjory','Belarus','BY','Mjory (Belarus)',1,1,0),(3490,0,102815,'Mnichowitz','Czech Republic','CZ','Mnichowitz (Czech Republic)',1,1,0),(3491,0,102816,'Modrava','Czech Republic','CZ','Modrava (Czech Republic)',1,1,0),(3492,0,102817,'Mogosoaia','Romania','RO','Mogosoaia (Romania)',1,1,0),(3493,0,102818,'Mohale\'s Hoek','Lesotho','LS','Mohale\'s Hoek (Lesotho)',1,1,0),(3494,0,102820,'Momigno','Italy','IT','Momigno (Italy)',1,1,0),(3495,0,102821,'Mondonville','France','FR','Mondonville (France)',1,1,0),(3496,0,102822,'Monforte Marina','Italy','IT','Monforte Marina (Italy)',1,1,0),(3497,0,102823,'Monte Porzio','Italy','IT','Monte Porzio (Italy)',1,1,0),(3498,0,102824,'Monte Redondo','Portugal','PT','Monte Redondo (Portugal)',1,1,0),(3499,0,102825,'Monte Siao','Brazil','BR','Monte Siao (Brazil)',1,1,0),(3500,0,102826,'Montecristi','Ecuador','EC','Montecristi (Ecuador)',1,1,0),(3501,0,102827,'Montenegro','Colombia','CO','Montenegro (Colombia)',1,1,0),(3502,0,102828,'Montenegro de Cameros','Spain','ES','Montenegro de Cameros (Spain)',1,1,0),(3503,0,102829,'Monterchi','Italy','IT','Monterchi (Italy)',1,1,0),(3504,0,102830,'Montescudo','Italy','IT','Montescudo (Italy)',1,1,0),(3505,0,102831,'Montevecchia','Italy','IT','Montevecchia (Italy)',1,1,0),(3506,0,102832,'Montoggio','Italy','IT','Montoggio (Italy)',1,1,0),(3507,0,102833,'Moraleja','Spain','ES','Moraleja (Spain)',1,1,0),(3508,0,102835,'Morschyn','Ukraine','UA','Morschyn (Ukraine)',1,1,0),(3509,0,102836,'Morskoe','Ukraine','UA','Morskoe (Ukraine)',1,1,0),(3510,0,102837,'Mosqueiro','Brazil','BR','Mosqueiro (Brazil)',1,1,0),(3511,0,102838,'Mosty bei Jablunkau','Czech Republic','CZ','Mosty bei Jablunkau (Czech Republic)',1,1,0),(3512,0,102839,'Moulton',NULL,NULL,'Moulton ()',1,1,0),(3513,0,102840,'Mount Pearl','Canada','CA','Mount Pearl (Canada)',1,1,0),(3514,0,102841,'Mount Pritchard','Australia','AU','Mount Pritchard (Australia)',1,1,0),(3515,0,102842,'Mount Somers','New Zealand','NZ','Mount Somers (New Zealand)',1,1,0),(3516,0,102843,'Moxi','China','CN','Moxi (China)',1,1,0),(3517,0,102844,'Muang Pakxan','LAOS','LA','Muang Pakxan (LAOS)',1,1,0),(3518,0,102845,'Muara Enim','Indonesia','ID','Muara Enim (Indonesia)',1,1,0),(3519,0,102846,'Mues','Spain','ES','Mues (Spain)',1,1,0),(3520,0,102847,'Muraoka','Japan','JP','Muraoka (Japan)',1,1,0),(3521,0,102848,'Murdoch','Australia','AU','Murdoch (Australia)',1,1,0),(3522,0,102849,'Mykulytschyn','Ukraine','UA','Mykulytschyn (Ukraine)',1,1,0),(3523,0,102850,'Mysliborz','Poland','PL','Mysliborz (Poland)',1,1,0),(3524,0,102851,'Nabiac','Australia','AU','Nabiac (Australia)',1,1,0),(3525,0,102852,'Nam','South Korea','KR','Nam (South Korea)',1,1,0),(3526,0,102853,'Nanjo','Japan','JP','Nanjo (Japan)',1,1,0),(3527,0,102854,'Napajedla','Czech Republic','CZ','Napajedla (Czech Republic)',1,1,0),(3528,0,102855,'Nasbinals','France','FR','Nasbinals (France)',1,1,0),(3529,19076,102856,'Nauta','Peru','PE','Nauta (Peru)',1,1,0),(3530,0,102857,'Naval','Philippines','PH','Naval (Philippines)',1,1,0),(3531,0,102858,'Navas Del Rey','Spain','ES','Navas Del Rey (Spain)',1,1,0),(3532,0,102859,'Nayoro','Japan','JP','Nayoro (Japan)',1,1,0),(3533,0,102860,'Nea Apollonia','Greece','GR','Nea Apollonia (Greece)',1,1,0),(3534,0,102861,'Nebaj','Guatemala','GT','Nebaj (Guatemala)',1,1,0),(3535,0,102862,'Nedelnoye','Russia','RU','Nedelnoye (Russia)',1,1,0),(3536,0,102863,'Neerim South','Australia','AU','Neerim South (Australia)',1,1,0),(3537,0,102864,'Negresti Oas','Romania','RO','Negresti Oas (Romania)',1,1,0),(3538,0,102865,'Neiden','Norway','NO','Neiden (Norway)',1,1,0),(3539,0,102866,'Nekhachevo Village','Belarus','BY','Nekhachevo Village (Belarus)',1,1,0),(3540,0,102868,'Nesvizh','Belarus','BY','Nesvizh (Belarus)',1,1,0),(3541,0,102869,'Neuville-de-Poitou','France','FR','Neuville-de-Poitou (France)',1,1,0),(3542,0,102870,'New Brighton','United Kingdom','UK','New Brighton (United Kingdom)',1,1,0),(3543,0,102871,'Newick','United Kingdom','UK','Newick (United Kingdom)',1,1,0),(3544,0,102872,'Neyagawa','Japan','JP','Neyagawa (Japan)',1,1,0),(3545,0,102873,'Nichinan','Japan','JP','Nichinan (Japan)',1,1,0),(3546,0,102874,'Ningwood','United Kingdom','UK','Ningwood (United Kingdom)',1,1,0),(3547,0,102875,'Nischnekamsk','Russia','RU','Nischnekamsk (Russia)',1,1,0),(3548,0,102876,'N\'Kob','Morocco','MA','N\'Kob (Morocco)',1,1,0),(3549,0,102877,'Noailhac','France','FR','Noailhac (France)',1,1,0),(3550,0,102878,'Nocaima','Colombia','CO','Nocaima (Colombia)',1,1,0),(3551,0,102879,'Nono','Argentina','AR','Nono (Argentina)',1,1,0),(3552,0,102880,'Nordkjosbotn','Norway','NO','Nordkjosbotn (Norway)',1,1,0),(3553,0,102881,'Nordmaling','Sweden','SE','Nordmaling (Sweden)',1,1,0),(3554,0,102882,'North Port','Canada','CA','North Port (Canada)',1,1,0),(3555,0,102883,'Nova Hartz','Brazil','BR','Nova Hartz (Brazil)',1,1,0),(3556,0,102884,'Novoroshchino','Russia','RU','Novoroshchino (Russia)',1,1,0),(3557,0,102885,'Novyi Svet','Ukraine','UA','Novyi Svet (Ukraine)',1,1,0),(3558,0,102886,'Nuaille','France','FR','Nuaille (France)',1,1,0),(3559,0,102887,'Nueva Palmira','Uruguay','UY','Nueva Palmira (Uruguay)',1,1,0),(3560,0,102888,'Numata','Japan','JP','Numata (Japan)',1,1,0),(3561,0,102889,'Ocuituco','Mexico','MX','Ocuituco (Mexico)',1,1,0),(3562,0,102890,'Ollomont','Italy','IT','Ollomont (Italy)',1,1,0),(3563,0,102891,'Ome','Japan','JP','Ome (Japan)',1,1,0),(3564,0,102892,'Onjuku','Japan','JP','Onjuku (Japan)',1,1,0),(3565,0,102893,'Opi','Italy','IT','Opi (Italy)',1,1,0),(3566,0,102894,'Opotschka','Russia','RU','Opotschka (Russia)',1,1,0),(3567,0,102895,'Patrocinio','Brazil','BR','Patrocinio (Brazil)',1,1,0),(3568,0,102896,'Pecica','Romania','RO','Pecica (Romania)',1,1,0),(3569,0,102897,'Peenemunde','Germany','DE','Peenemunde (Germany)',1,1,0),(3570,0,102898,'Pella','Italy','IT','Pella (Italy)',1,1,0),(3571,0,102899,'Pense','Canada','CA','Pense (Canada)',1,1,0),(3572,0,102900,'Petznik','Poland','PL','Petznik (Poland)',1,1,0),(3573,0,102901,'Pianu de Jos','Romania','RO','Pianu de Jos (Romania)',1,1,0),(3574,0,102902,'Pichidegua','Chile','CL','Pichidegua (Chile)',1,1,0),(3575,21365,102903,'Piedras Blancas','Spain','ES','Piedras Blancas (Spain)',1,1,0),(3576,21377,102904,'Pierrefitte-Nestalas','France','FR','Pierrefitte-Nestalas (France)',1,1,0),(3577,0,102905,'Pietramelara','Italy','IT','Pietramelara (Italy)',1,1,0),(3578,0,102906,'Pikajarve','Estonia','EE','Pikajarve (Estonia)',1,1,0),(3579,21477,102907,'Pirque','Chile','CL','Pirque (Chile)',1,1,0),(3580,0,102908,'Pitimbu','Brazil','BR','Pitimbu (Brazil)',1,1,0),(3581,0,102909,'Poilly lez Gien','France','FR','Poilly lez Gien (France)',1,1,0),(3582,0,102910,'Pokrov','Russia','RU','Pokrov (Russia)',1,1,0),(3583,0,102911,'Pollara','Italy','IT','Pollara (Italy)',1,1,0),(3584,0,102912,'Pontes e Lacerda','Brazil','BR','Pontes e Lacerda (Brazil)',1,1,0),(3585,0,102913,'Popovicky','Czech Republic','CZ','Popovicky (Czech Republic)',1,1,0),(3586,0,102914,'Porlock','United Kingdom','UK','Porlock (United Kingdom)',1,1,0),(3587,32515,102915,'Port Carling','Canada','CA','Port Carling (Canada)',1,1,0),(3588,0,102916,'Port-Cogolin','France','FR','Port-Cogolin (France)',1,1,0),(3589,0,102917,'Porto Ferreira','Brazil','BR','Porto Ferreira (Brazil)',1,1,0),(3590,32613,102918,'Porto Levante','Italy','IT','Porto Levante (Italy)',1,1,0),(3591,0,102919,'Potstejn','Czech Republic','CZ','Potstejn (Czech Republic)',1,1,0),(3592,0,102920,'Poveda De La Sierra','Spain','ES','Poveda De La Sierra (Spain)',1,1,0),(3593,0,102921,'Prado','Colombia','CO','Prado (Colombia)',1,1,0),(3594,0,102922,'Predosa','Italy','IT','Predosa (Italy)',1,1,0),(3595,0,102923,'Prestine','Italy','IT','Prestine (Italy)',1,1,0),(3596,22096,102924,'Prevelly','Australia','AU','Prevelly (Australia)',1,1,0),(3597,0,102925,'Primaluna','Italy','IT','Primaluna (Italy)',1,1,0),(3598,0,102926,'Primorsko-Ahtarsk','Russia','RU','Primorsko-Ahtarsk (Russia)',1,1,0),(3599,0,102927,'Princeville','Canada','CA','Princeville (Canada)',1,1,0),(3600,22194,102928,'Puente de Ixtla','Mexico','MX','Puente de Ixtla (Mexico)',1,1,0),(3601,0,102929,'Puerto Aisen','Chile','CL','Puerto Aisen (Chile)',1,1,0),(3602,0,102930,'Pulfero','Italy','IT','Pulfero (Italy)',1,1,0),(3603,0,102931,'Pumsaint','United Kingdom','UK','Pumsaint (United Kingdom)',1,1,0),(3604,0,102932,'Puqueldon','Chile','CL','Puqueldon (Chile)',1,1,0),(3605,0,102933,'Qionglai','China','CN','Qionglai (China)',1,1,0),(3606,0,102934,'Quattro Castella','Italy','IT','Quattro Castella (Italy)',1,1,0),(3607,0,102935,'Quillota','Chile','CL','Quillota (Chile)',1,1,0),(3608,0,102936,'Quilotoa','Ecuador','EC','Quilotoa (Ecuador)',1,1,0),(3609,0,102937,'Quinninup','Australia','AU','Quinninup (Australia)',1,1,0),(3610,0,102938,'Quinto','Switzerland','CH','Quinto (Switzerland)',1,1,0),(3611,0,102939,'Quorrobolong','Australia','AU','Quorrobolong (Australia)',1,1,0),(3612,0,102940,'Raduschny','Russia','RU','Raduschny (Russia)',1,1,0),(3613,0,102943,'Raket','Norway','NO','Raket (Norway)',1,1,0),(3614,0,102944,'Rathgama','Sri Lanka','LK','Rathgama (Sri Lanka)',1,1,0),(3615,0,102945,'Real de Catorce','Mexico','MX','Real de Catorce (Mexico)',1,1,0),(3616,0,102946,'Renai','China','CN','Renai (China)',1,1,0),(3617,0,102947,'Rennes-les-Bains','France','FR','Rennes-les-Bains (France)',1,1,0),(3618,0,102948,'Reserva ecologica Manglares Churute','Ecuador','EC','Reserva ecologica Manglares Churute (Ecuador)',1,1,0),(3619,0,102949,'Reykjanesb?r','Iceland','IS','Reykjanesb?r (Iceland)',1,1,0),(3620,0,102950,'Ribadavia','Spain','ES','Ribadavia (Spain)',1,1,0),(3621,0,102951,'Ribatajadilla','Spain','ES','Ribatajadilla (Spain)',1,1,0),(3622,0,102952,'Ribeirao Grande','Brazil','BR','Ribeirao Grande (Brazil)',1,1,0),(3623,0,102953,'Rieutort-de-Randon','France','FR','Rieutort-de-Randon (France)',1,1,0),(3624,0,102955,'Rio Colorado','Argentina','AR','Rio Colorado (Argentina)',1,1,0),(3625,0,102956,'Riolunato','Italy','IT','Riolunato (Italy)',1,1,0),(3626,0,102957,'Rocca Grimalda','Italy','IT','Rocca Grimalda (Italy)',1,1,0),(3627,0,102958,'Roccamontepiano','Italy','IT','Roccamontepiano (Italy)',1,1,0),(3628,23092,102959,'Roccasecca','Italy','IT','Roccasecca (Italy)',1,1,0),(3629,0,102960,'Romenay','France','FR','Romenay (France)',1,1,0),(3630,23221,102961,'Roncola','Italy','IT','Roncola (Italy)',1,1,0),(3631,0,102962,'Rongcheng','China','CN','Rongcheng (China)',1,1,0),(3632,0,102963,'Roosdaal','Belgium','BE','Roosdaal (Belgium)',1,1,0),(3633,0,102964,'Rostanga','Sweden','SE','Rostanga (Sweden)',1,1,0),(3634,0,102965,'Roveredo','Switzerland','CH','Roveredo (Switzerland)',1,1,0),(3635,0,102966,'Rytro','Poland','PL','Rytro (Poland)',1,1,0),(3636,32772,102967,'Sa Kaeo','Thailand','TH','Sa Kaeo (Thailand)',1,1,0),(3637,0,102968,'Sabaneta','Colombia','CO','Sabaneta (Colombia)',1,1,0),(3638,0,102969,'Sabhar','Bangladesh','BD','Sabhar (Bangladesh)',1,1,0),(3639,0,102970,'Sachica','Colombia','CO','Sachica (Colombia)',1,1,0),(3640,0,102971,'Saint Coutant le Grand','France','FR','Saint Coutant le Grand (France)',1,1,0),(3641,0,102972,'Saint Joseph','Dominica','DM','Saint Joseph (Dominica)',1,1,0),(3642,0,102973,'Saint Nicolas des Eaux','France','FR','Saint Nicolas des Eaux (France)',1,1,0),(3643,0,102974,'Saint-Denis-de-Jouhet','France','FR','Saint-Denis-de-Jouhet (France)',1,1,0),(3644,0,102975,'Saint-Donat','Canada','CA','Saint-Donat (Canada)',1,1,0),(3645,0,102976,'Sainte-Anne-de-Sorel','Canada','CA','Sainte-Anne-de-Sorel (Canada)',1,1,0),(3646,0,102977,'Sainte-Catherine','Canada','CA','Sainte-Catherine (Canada)',1,1,0),(3647,0,102978,'Sainte-Genevieve-les-Gasny','France','FR','Sainte-Genevieve-les-Gasny (France)',1,1,0),(3648,0,102979,'Mokra Gora','Serbia','RS','Mokra Gora (Serbia)',1,1,0),(3649,0,102980,'Moncofa','Spain','ES','Moncofa (Spain)',1,1,0),(3650,0,102981,'Moni','Greece','GR','Moni (Greece)',1,1,0),(3651,0,102982,'Monsegur','France','FR','Monsegur (France)',1,1,0),(3652,0,102983,'Montaimont','France','FR','Montaimont (France)',1,1,0),(3653,0,102984,'Monte Giove','Italy','IT','Monte Giove (Italy)',1,1,0),(3654,18186,102985,'Montegabbione','Italy','IT','Montegabbione (Italy)',1,1,0),(3655,18200,102986,'Montelupone','Italy','IT','Montelupone (Italy)',1,1,0),(3656,0,102987,'Montemor-o-Velho','Portugal','PT','Montemor-o-Velho (Portugal)',1,1,0),(3657,0,102988,'Moonee Beach','Australia','AU','Moonee Beach (Australia)',1,1,0),(3658,18342,102989,'Moonee Ponds','Australia','AU','Moonee Ponds (Australia)',1,1,0),(3659,0,102990,'Morestel','France','FR','Morestel (France)',1,1,0),(3660,18432,102991,'Moriyama','Japan','JP','Moriyama (Japan)',1,1,0),(3661,0,102992,'Morrocoy (National Park)','Venezuela','VE','Morrocoy (National Park) (Venezuela)',1,1,0),(3662,0,102993,'Morrum','Sweden','SE','Morrum (Sweden)',1,1,0),(3663,0,102994,'Moschaisk','Russia','RU','Moschaisk (Russia)',1,1,0),(3664,0,102995,'Mount Eliza','Australia','AU','Mount Eliza (Australia)',1,1,0),(3665,0,102996,'Mount Nesbit','Grenada','GD','Mount Nesbit (Grenada)',1,1,0),(3666,0,102997,'Moura','Australia','AU','Moura (Australia)',1,1,0),(3667,0,102998,'Muhlruti','Switzerland','CH','Muhlruti (Switzerland)',1,1,0),(3668,18652,102999,'Mulazzo','Italy','IT','Mulazzo (Italy)',1,1,0),(3669,0,103000,'Munsingen','Switzerland','CH','Munsingen (Switzerland)',1,1,0),(3670,0,103001,'Munstermaifeld','Germany','DE','Munstermaifeld (Germany)',1,1,0),(3671,0,103002,'Murias de Paredes','Spain','ES','Murias de Paredes (Spain)',1,1,0),(3672,0,103003,'Murighiol','Romania','RO','Murighiol (Romania)',1,1,0),(3673,0,103004,'Myla','Ukraine','UA','Myla (Ukraine)',1,1,0),(3674,0,103005,'Mytishchi','Russia','RU','Mytishchi (Russia)',1,1,0),(3675,0,103006,'Mzcheta','Georgia','GE','Mzcheta (Georgia)',1,1,0),(3676,32069,103007,'Na Thon','Thailand','TH','Na Thon (Thailand)',1,1,0),(3677,0,103008,'Nabari','Japan','JP','Nabari (Japan)',1,1,0),(3678,0,103009,'Namyangju','South Korea','KR','Namyangju (South Korea)',1,1,0),(3679,0,103010,'Navashino','Russia','RU','Navashino (Russia)',1,1,0),(3680,0,103011,'Naxcivan','Azerbaijan','AZ','Naxcivan (Azerbaijan)',1,1,0),(3681,0,103012,'Neckartenzlingen','Germany','DE','Neckartenzlingen (Germany)',1,1,0),(3682,0,103013,'Negrete','Chile','CL','Negrete (Chile)',1,1,0),(3683,0,103014,'Neumittelwalde','Poland','PL','Neumittelwalde (Poland)',1,1,0),(3684,19360,103015,'Newtown','Australia','AU','Newtown (Australia)',1,1,0),(3685,0,103016,'Nieborow','Poland','PL','Nieborow (Poland)',1,1,0),(3686,0,103017,'Niedrzwica Duza','Poland','PL','Niedrzwica Duza (Poland)',1,1,0),(3687,0,103018,'Niemce','Poland','PL','Niemce (Poland)',1,1,0),(3688,0,103019,'Nikisiani','Greece','GR','Nikisiani (Greece)',1,1,0),(3689,0,103020,'Ninghe','China','CN','Ninghe (China)',1,1,0),(3690,0,103021,'Nisovo','Bulgaria','BG','Nisovo (Bulgaria)',1,1,0),(3691,0,103022,'Nizhniy Tagil','Russia','RU','Nizhniy Tagil (Russia)',1,1,0),(3692,0,103023,'Nizhniye Sergi','Russia','RU','Nizhniye Sergi (Russia)',1,1,0),(3693,0,103024,'Njandoma','Russia','RU','Njandoma (Russia)',1,1,0),(3694,0,103025,'No Man\'s Heath (Cheshire)','United Kingdom','UK','No Man\'s Heath (Cheshire) (United Kingdom)',1,1,0),(3695,0,103026,'Nochchiyagama','Sri Lanka','LK','Nochchiyagama (Sri Lanka)',1,1,0),(3696,0,103027,'Nogoli','Argentina','AR','Nogoli (Argentina)',1,1,0),(3697,0,103028,'Noraville','Australia','AU','Noraville (Australia)',1,1,0),(3698,0,103029,'Norrskedika','Sweden','SE','Norrskedika (Sweden)',1,1,0),(3699,0,103030,'North Head','Canada','CA','North Head (Canada)',1,1,0),(3700,0,103031,'North Sunderland','United Kingdom','UK','North Sunderland (United Kingdom)',1,1,0),(3701,0,103032,'Nova Zagora','Bulgaria','BG','Nova Zagora (Bulgaria)',1,1,0),(3702,0,103033,'Novocheboksarsk','Russia','RU','Novocheboksarsk (Russia)',1,1,0),(3703,0,103034,'Novosyanovo','Russia','RU','Novosyanovo (Russia)',1,1,0),(3704,0,103035,'Novovolkovo','Russia','RU','Novovolkovo (Russia)',1,1,0),(3705,0,103036,'Oatlands','Australia','AU','Oatlands (Australia)',1,1,0),(3706,0,103037,'Oberkirch','Switzerland','CH','Oberkirch (Switzerland)',1,1,0),(3707,0,103038,'Ocna Sugatag','Romania','RO','Ocna Sugatag (Romania)',1,1,0),(3708,0,103039,'Ocosuyo','Peru','PE','Ocosuyo (Peru)',1,1,0),(3709,0,103040,'Offagna','Italy','IT','Offagna (Italy)',1,1,0),(3710,19950,103041,'Offida','Italy','IT','Offida (Italy)',1,1,0),(3711,0,103042,'Omodos','Cyprus','CY','Omodos (Cyprus)',1,1,0),(3712,0,103043,'Oostrozebeke','Belgium','BE','Oostrozebeke (Belgium)',1,1,0),(3713,0,103044,'Orechowo-Sujewo','Russia','RU','Orechowo-Sujewo (Russia)',1,1,0),(3714,0,103045,'Oriental Puebla','Mexico','MX','Oriental Puebla (Mexico)',1,1,0),(3715,0,103046,'Orsogna','Italy','IT','Orsogna (Italy)',1,1,0),(3716,0,103047,'Otacilio Costa','Brazil','BR','Otacilio Costa (Brazil)',1,1,0),(3717,0,103048,'Otelu Rosu','Romania','RO','Otelu Rosu (Romania)',1,1,0),(3718,0,103049,'Oteren','Norway','NO','Oteren (Norway)',1,1,0),(3719,0,103050,'Otschakiw','Ukraine','UA','Otschakiw (Ukraine)',1,1,0),(3720,0,103051,'Otur','Spain','ES','Otur (Spain)',1,1,0),(3721,0,103052,'Oudewater','Netherlands','NL','Oudewater (Netherlands)',1,1,0),(3722,0,103053,'Oyama','Japan','JP','Oyama (Japan)',1,1,0),(3723,0,103054,'Ozery','Russia','RU','Ozery (Russia)',1,1,0),(3724,0,103055,'Padang Padang Beach','Indonesia','ID','Padang Padang Beach (Indonesia)',1,1,0),(3725,0,103056,'Padubysis','Lithuania','LT','Padubysis (Lithuania)',1,1,0),(3726,20589,103057,'Pak Chong','Thailand','TH','Pak Chong (Thailand)',1,1,0),(3727,0,103058,'Palazzago','Italy','IT','Palazzago (Italy)',1,1,0),(3728,0,103059,'Pampaneira','Spain','ES','Pampaneira (Spain)',1,1,0),(3729,0,103060,'Panaranda De Duero','Spain','ES','Panaranda De Duero (Spain)',1,1,0),(3730,0,103061,'Par','United Kingdom','UK','Par (United Kingdom)',1,1,0),(3731,0,103062,'Parada de Sil','Spain','ES','Parada de Sil (Spain)',1,1,0),(3732,0,103063,'Paralia Skotinas','Greece','GR','Paralia Skotinas (Greece)',1,1,0),(3733,0,103064,'Playa Avellana','Costa Rica','CR','Playa Avellana (Costa Rica)',1,1,0),(3734,0,103065,'Playa Azul','Mexico','MX','Playa Azul (Mexico)',1,1,0),(3735,0,103066,'Playden','United Kingdom','UK','Playden (United Kingdom)',1,1,0),(3736,0,103067,'Plimmerton','New Zealand','NZ','Plimmerton (New Zealand)',1,1,0),(3737,0,103068,'Pocologan','Canada','CA','Pocologan (Canada)',1,1,0),(3738,0,103069,'Poggiofiorito','Italy','IT','Poggiofiorito (Italy)',1,1,0),(3739,0,103070,'Pola de Somiedo','Spain','ES','Pola de Somiedo (Spain)',1,1,0),(3740,0,103071,'Polny Kesov','Slovakia','SK','Polny Kesov (Slovakia)',1,1,0),(3741,0,103072,'Pomonal','Australia','AU','Pomonal (Australia)',1,1,0),(3742,21822,103073,'Porepunkah','Australia','AU','Porepunkah (Australia)',1,1,0),(3743,32535,103074,'Port Elliot','Australia','AU','Port Elliot (Australia)',1,1,0),(3744,0,103075,'Portobello','Panama','PA','Portobello (Panama)',1,1,0),(3745,0,103076,'Posada De Llanes','Spain','ES','Posada De Llanes (Spain)',1,1,0),(3746,0,103077,'Poyang','China','CN','Poyang (China)',1,1,0),(3747,0,103078,'Praia de Tremembe','Brazil','BR','Praia de Tremembe (Brazil)',1,1,0),(3748,0,103079,'Praid','Romania','RO','Praid (Romania)',1,1,0),(3749,0,103080,'Prijedor','Bosnia and Herzegowina','BA','Prijedor (Bosnia and Herzegowina)',1,1,0),(3750,0,103081,'Prochowice','Poland','PL','Prochowice (Poland)',1,1,0),(3751,0,103082,'Prunelli-di-Fiumorbo','France','FR','Prunelli-di-Fiumorbo (France)',1,1,0),(3752,0,103083,'Pryluky','Ukraine','UA','Pryluky (Ukraine)',1,1,0),(3753,0,103084,'Puebla de Arenoso','Spain','ES','Puebla de Arenoso (Spain)',1,1,0),(3754,0,103085,'Puerto Coyote','Costa Rica','CR','Puerto Coyote (Costa Rica)',1,1,0),(3755,0,103086,'Pylypets','Ukraine','UA','Pylypets (Ukraine)',1,1,0),(3756,0,103087,'Pymble','Australia','AU','Pymble (Australia)',1,1,0),(3757,0,103088,'Pysarivka','Ukraine','UA','Pysarivka (Ukraine)',1,1,0),(3758,0,103089,'Quang Tri','Vietnam','VN','Quang Tri (Vietnam)',1,1,0),(3759,0,103090,'Quicavi','Chile','CL','Quicavi (Chile)',1,1,0),(3760,0,103091,'Quintanilla del Monte en Rioja','Spain','ES','Quintanilla del Monte en Rioja (Spain)',1,1,0),(3761,0,103092,'Quintueles','Spain','ES','Quintueles (Spain)',1,1,0),(3762,0,103093,'Rabigh','Saudi Arabia','SA','Rabigh (Saudi Arabia)',1,1,0),(3763,0,103094,'Racin','Czech Republic','CZ','Racin (Czech Republic)',1,1,0),(3764,0,103095,'Ramsbury','United Kingdom','UK','Ramsbury (United Kingdom)',1,1,0),(3765,0,103096,'Ramsey','United Kingdom','UK','Ramsey (United Kingdom)',1,1,0),(3766,0,103097,'Rantau Prapat','Indonesia','ID','Rantau Prapat (Indonesia)',1,1,0),(3767,0,103098,'Reisjarvi','Finland','FI','Reisjarvi (Finland)',1,1,0),(3768,0,103099,'Rejowiec Fabryczny','Poland','PL','Rejowiec Fabryczny (Poland)',1,1,0),(3769,0,103100,'Ren-ai','Taiwan','TW','Ren-ai (Taiwan)',1,1,0),(3770,0,103101,'Renaze','France','FR','Renaze (France)',1,1,0),(3771,0,103102,'Rinconada','Chile','CL','Rinconada (Chile)',1,1,0),(3772,0,103103,'Rindalskogen','Norway','NO','Rindalskogen (Norway)',1,1,0),(3773,0,103104,'Rio das Pedras','Brazil','BR','Rio das Pedras (Brazil)',1,1,0),(3774,0,103105,'Roana','Italy','IT','Roana (Italy)',1,1,0),(3775,23105,103106,'Rochehaut','Belgium','BE','Rochehaut (Belgium)',1,1,0),(3776,0,103107,'Puyricard','France','FR','Puyricard (France)',1,1,0),(3777,0,103108,'Quarten','Switzerland','CH','Quarten (Switzerland)',1,1,0),(3778,0,103109,'Quedjinup','Australia','AU','Quedjinup (Australia)',1,1,0),(3779,0,103110,'Quesada','Costa Rica','CR','Quesada (Costa Rica)',1,1,0),(3780,0,103111,'Quilpue','Chile','CL','Quilpue (Chile)',1,1,0),(3781,22438,103112,'Raahe','Finland','FI','Raahe (Finland)',1,1,0),(3782,0,103113,'Rahatschou','Belarus','BY','Rahatschou (Belarus)',1,1,0),(3783,0,103114,'Rame Peninsula','United Kingdom','UK','Rame Peninsula (United Kingdom)',1,1,0),(3784,22700,103115,'Redland Bay','Australia','AU','Redland Bay (Australia)',1,1,0),(3785,0,103116,'Reimannshau','Poland','PL','Reimannshau (Poland)',1,1,0),(3786,0,103117,'Reka','Czech Republic','CZ','Reka (Czech Republic)',1,1,0),(3787,0,103118,'Relbia','Australia','AU','Relbia (Australia)',1,1,0),(3788,0,103119,'Reydon','United Kingdom','UK','Reydon (United Kingdom)',1,1,0),(3789,0,103120,'Ricaurte','Colombia','CO','Ricaurte (Colombia)',1,1,0),(3790,0,103121,'Riethoven','Netherlands','NL','Riethoven (Netherlands)',1,1,0),(3791,0,103122,'Rijmenam','Belgium','BE','Rijmenam (Belgium)',1,1,0),(3792,0,103123,'Rimavska Sobota','Slovakia','SK','Rimavska Sobota (Slovakia)',1,1,0),(3793,0,103124,'Ringtail Creek','Australia','AU','Ringtail Creek (Australia)',1,1,0),(3794,0,103125,'Rio Branco do Sul','Brazil','BR','Rio Branco do Sul (Brazil)',1,1,0),(3795,0,103126,'Ristolas','France','FR','Ristolas (France)',1,1,0),(3796,0,103127,'Rivanazzano Terme','Italy','IT','Rivanazzano Terme (Italy)',1,1,0),(3797,0,103128,'Roa','Spain','ES','Roa (Spain)',1,1,0),(3798,0,103129,'Rodding','Denmark','DK','Rodding (Denmark)',1,1,0),(3799,0,103130,'Salmiya','Kuwait','KW','Salmiya (Kuwait)',1,1,0),(3800,0,103131,'Salonta','Romania','RO','Salonta (Romania)',1,1,0),(3801,0,103132,'San Agustin Etla','Mexico','MX','San Agustin Etla (Mexico)',1,1,0),(3802,0,103133,'San Alfonso','Chile','CL','San Alfonso (Chile)',1,1,0),(3803,0,103134,'San Dorligo della Valle','Italy','IT','San Dorligo della Valle (Italy)',1,1,0),(3804,0,103135,'San Fadele Intelvi','Italy','IT','San Fadele Intelvi (Italy)',1,1,0),(3805,0,103136,'San Francisco de Macoris','Dominican Republic','DO','San Francisco de Macoris (Dominican Republic)',1,1,0),(3806,0,103137,'San Giorgio di Perlena','Italy','IT','San Giorgio di Perlena (Italy)',1,1,0),(3807,0,103138,'San Giuseppe Comacchio','Italy','IT','San Giuseppe Comacchio (Italy)',1,1,0),(3808,0,103139,'San Ignacio','Argentina','AR','San Ignacio (Argentina)',1,1,0),(3809,0,103140,'San Jose de David/David','Panama','PA','San Jose de David/David (Panama)',1,1,0),(3810,33047,103141,'San Juan Cosala','Mexico','MX','San Juan Cosala (Mexico)',1,1,0),(3811,0,103142,'San Juan de los Lagos','Mexico','MX','San Juan de los Lagos (Mexico)',1,1,0),(3812,0,103143,'San Juan del Cesar','Colombia','CO','San Juan del Cesar (Colombia)',1,1,0),(3813,0,103144,'San Leonardo','Philippines','PH','San Leonardo (Philippines)',1,1,0),(3814,0,103145,'San Maurizio d\'Opaglio','Italy','IT','San Maurizio d\'Opaglio (Italy)',1,1,0),(3815,0,103146,'San Mauro Cilento','Italy','IT','San Mauro Cilento (Italy)',1,1,0),(3816,0,103147,'San Rafael','Costa Rica','CR','San Rafael (Costa Rica)',1,1,0),(3817,0,103148,'San Roque de Riomiera','Spain','ES','San Roque de Riomiera (Spain)',1,1,0),(3818,0,103149,'Sankt Peter','Germany','DE','Sankt Peter (Germany)',1,1,0),(3819,0,103150,'Santa Lucia','Uruguay','UY','Santa Lucia (Uruguay)',1,1,0),(3820,24239,103151,'Santeramo in Colle','Italy','IT','Santeramo in Colle (Italy)',1,1,0),(3821,0,103152,'Santo Antonio do Pinhal','Brazil','BR','Santo Antonio do Pinhal (Brazil)',1,1,0),(3822,0,103153,'Santo Inacio','Brazil','BR','Santo Inacio (Brazil)',1,1,0),(3823,0,103154,'Sao Jose dos Salgados','Brazil','BR','Sao Jose dos Salgados (Brazil)',1,1,0),(3824,0,103155,'Sapucaia do Sul','Brazil','BR','Sapucaia do Sul (Brazil)',1,1,0),(3825,0,103156,'Sarospatak','Hungary','HU','Sarospatak (Hungary)',1,1,0),(3826,0,103157,'Sarow','Russia','RU','Sarow (Russia)',1,1,0),(3827,0,103158,'Saurier','France','FR','Saurier (France)',1,1,0),(3828,0,103159,'Sauvagnon','France','FR','Sauvagnon (France)',1,1,0),(3829,0,103160,'Sazli','Turkey','TR','Sazli (Turkey)',1,1,0),(3830,0,103161,'Schaslyve','Ukraine','UA','Schaslyve (Ukraine)',1,1,0),(3831,0,103162,'Schebekino','Russia','RU','Schebekino (Russia)',1,1,0),(3832,0,103163,'Schidnyzja','Ukraine','UA','Schidnyzja (Ukraine)',1,1,0),(3833,0,103164,'Schwarzenberg','Switzerland','CH','Schwarzenberg (Switzerland)',1,1,0),(3834,0,103165,'Scurcola Marsicana','Italy','IT','Scurcola Marsicana (Italy)',1,1,0),(3835,0,103166,'Seborga','Italy','IT','Seborga (Italy)',1,1,0),(3836,0,103167,'Seitenberg)','Poland','PL','Seitenberg) (Poland)',1,1,0),(3837,0,103168,'Senov u Noveho Jicina','Czech Republic','CZ','Senov u Noveho Jicina (Czech Republic)',1,1,0),(3838,0,103169,'Servia','Greece','GR','Servia (Greece)',1,1,0),(3839,0,103170,'Seulo','Italy','IT','Seulo (Italy)',1,1,0),(3840,0,103171,'Shayan','Ukraine','UA','Shayan (Ukraine)',1,1,0),(3841,0,103172,'Shepody','Canada','CA','Shepody (Canada)',1,1,0),(3842,25076,103173,'Shimada','Japan','JP','Shimada (Japan)',1,1,0),(3843,0,103174,'Shipham','United Kingdom','UK','Shipham (United Kingdom)',1,1,0),(3844,0,103175,'Shucheng','China','CN','Shucheng (China)',1,1,0),(3845,0,103176,'Shushufindi','Ecuador','EC','Shushufindi (Ecuador)',1,1,0),(3846,0,103177,'Shyan','Ukraine','UA','Shyan (Ukraine)',1,1,0),(3847,0,103178,'Sierpe','Costa Rica','CR','Sierpe (Costa Rica)',1,1,0),(3848,0,103179,'Sipacate','Guatemala','GT','Sipacate (Guatemala)',1,1,0),(3849,0,103181,'Sisophon','Cambodia','KH','Sisophon (Cambodia)',1,1,0),(3850,0,103182,'Sizun','France','FR','Sizun (France)',1,1,0),(3851,0,103183,'Sk?lskor','Denmark','DK','Sk?lskor (Denmark)',1,1,0),(3852,0,103184,'Skala Mistegnon','Greece','GR','Skala Mistegnon (Greece)',1,1,0),(3853,0,103185,'Skerray','United Kingdom','UK','Skerray (United Kingdom)',1,1,0),(3854,0,103186,'Skole','Ukraine','UA','Skole (Ukraine)',1,1,0),(3855,0,103187,'Snowdonia','United Kingdom','UK','Snowdonia (United Kingdom)',1,1,0),(3856,0,103188,'Soledade','Brazil','BR','Soledade (Brazil)',1,1,0),(3857,0,103189,'Somlovasarhely','Hungary','HU','Somlovasarhely (Hungary)',1,1,0),(3858,0,103190,'Sonderho','Denmark','DK','Sonderho (Denmark)',1,1,0),(3859,0,103191,'South Petherton','United Kingdom','UK','South Petherton (United Kingdom)',1,1,0),(3860,0,103192,'South Yunderup','Australia','AU','South Yunderup (Australia)',1,1,0),(3861,0,103193,'Sowetski','Russia','RU','Sowetski (Russia)',1,1,0),(3862,0,103194,'Sperrebotn','Norway','NO','Sperrebotn (Norway)',1,1,0),(3863,0,103195,'Spilsby','United Kingdom','UK','Spilsby (United Kingdom)',1,1,0),(3864,0,103196,'Spinea','Italy','IT','Spinea (Italy)',1,1,0),(3865,0,103197,'Spittal','United Kingdom','UK','Spittal (United Kingdom)',1,1,0),(3866,0,103198,'Srinagar','UK',NULL,'Srinagar (UK)',1,1,0),(3867,33621,103199,'St Leonards','Australia','AU','St Leonards (Australia)',1,1,0),(3868,33670,103200,'St. Albert','Canada','CA','St. Albert (Canada)',1,1,0),(3869,0,103201,'St. Kathrein am Hauenstein','Austria','AT','St. Kathrein am Hauenstein (Austria)',1,1,0),(3870,0,103202,'Stadhampton','United Kingdom','UK','Stadhampton (United Kingdom)',1,1,0),(3871,0,103203,'Stare Hory','Slovakia','SK','Stare Hory (Slovakia)',1,1,0),(3872,0,103204,'Stavros',NULL,NULL,'Stavros ()',1,1,0),(3873,0,103205,'Stazzema','Italy','IT','Stazzema (Italy)',1,1,0),(3874,0,103206,'Stockmannshof','Latvia','LV','Stockmannshof (Latvia)',1,1,0),(3875,0,103207,'Storozhnytsa','Ukraine','UA','Storozhnytsa (Ukraine)',1,1,0),(3876,26217,103208,'Strathfield','Australia','AU','Strathfield (Australia)',1,1,0),(3877,0,103209,'Rushton','United Kingdom','UK','Rushton (United Kingdom)',1,1,0),(3878,23501,103210,'Rusticoville','Canada','CA','Rusticoville (Canada)',1,1,0),(3879,0,103211,'Rutis','Spain','ES','Rutis (Spain)',1,1,0),(3880,0,103212,'Rybatschi','Russia','RU','Rybatschi (Russia)',1,1,0),(3881,0,103213,'Sabaris','Spain','ES','Sabaris (Spain)',1,1,0),(3882,0,103214,'Sabolotiw','Ukraine','UA','Sabolotiw (Ukraine)',1,1,0),(3883,0,103215,'Sacadat','Romania','RO','Sacadat (Romania)',1,1,0),(3884,0,103216,'Rodberg','Norway','NO','Rodberg (Norway)',1,1,0),(3885,0,103218,'Roja','Latvia','LV','Roja (Latvia)',1,1,0),(3886,0,103219,'Rokland','Norway','NO','Rokland (Norway)',1,1,0),(3887,0,103220,'Rosedale','Canada','CA','Rosedale (Canada)',1,1,0),(3888,0,103221,'Rosmuc','Ireland','IE','Rosmuc (Ireland)',1,1,0),(3889,0,103222,'Rossendale','United Kingdom','UK','Rossendale (United Kingdom)',1,1,0),(3890,0,103223,'Rosyth','United Kingdom','UK','Rosyth (United Kingdom)',1,1,0),(3891,0,103224,'Rouzede','France','FR','Rouzede (France)',1,1,0),(3892,0,103225,'Royal Park','Australia','AU','Royal Park (Australia)',1,1,0),(3893,0,103226,'Rustawi','Georgia','GE','Rustawi (Georgia)',1,1,0),(3894,0,103227,'Ryd','Sweden','SE','Ryd (Sweden)',1,1,0),(3895,0,103228,'Rymarov','Czech Republic','CZ','Rymarov (Czech Republic)',1,1,0),(3896,0,103229,'Saiki','Japan','JP','Saiki (Japan)',1,1,0),(3897,0,103230,'Saint Bees','United Kingdom','UK','Saint Bees (United Kingdom)',1,1,0),(3898,0,103231,'Saint-Alban-de-Montbel','France','FR','Saint-Alban-de-Montbel (France)',1,1,0),(3899,0,103232,'Saint-Aubert','Canada','CA','Saint-Aubert (Canada)',1,1,0),(3900,0,103233,'Saint-Avit','France','FR','Saint-Avit (France)',1,1,0),(3901,0,103234,'Saint-Clement-sur-Valsonne','France','FR','Saint-Clement-sur-Valsonne (France)',1,1,0),(3902,0,103235,'Saint-Come','Canada','CA','Saint-Come (Canada)',1,1,0),(3903,0,103236,'Sainte-Croix','France','FR','Sainte-Croix (France)',1,1,0),(3904,0,103237,'Sainte-Croix-aux-Mines','France','FR','Sainte-Croix-aux-Mines (France)',1,1,0),(3905,0,103238,'Sainte-Marie','Canada','CA','Sainte-Marie (Canada)',1,1,0),(3906,0,103239,'Saint-Gabriel-de-Valcartier','Canada','CA','Saint-Gabriel-de-Valcartier (Canada)',1,1,0),(3907,0,103240,'Saint-Julien-Puy-Laveze','France','FR','Saint-Julien-Puy-Laveze (France)',1,1,0),(3908,0,103241,'Saint-Justin','France','FR','Saint-Justin (France)',1,1,0),(3909,0,103242,'Saint-Legier-La Chiesaz','Switzerland','CH','Saint-Legier-La Chiesaz (Switzerland)',1,1,0),(3910,0,103243,'Saint-Nicolas-de-Port','France','FR','Saint-Nicolas-de-Port (France)',1,1,0),(3911,0,103244,'Saint-Ours','Canada','CA','Saint-Ours (Canada)',1,1,0),(3912,0,103245,'Saint-Perdon','France','FR','Saint-Perdon (France)',1,1,0),(3913,0,103246,'Saint-Pey-de-Castets','France','FR','Saint-Pey-de-Castets (France)',1,1,0),(3914,0,103247,'Saint-Sever','France','FR','Saint-Sever (France)',1,1,0),(3915,0,103248,'Saint-Yorre','France','FR','Saint-Yorre (France)',1,1,0),(3916,0,103249,'Saittas','Cyprus','CY','Saittas (Cyprus)',1,1,0),(3917,0,103250,'Sakhyurta','Russia','RU','Sakhyurta (Russia)',1,1,0),(3918,0,103251,'Sakura','Japan','JP','Sakura (Japan)',1,1,0),(3919,0,103252,'Sala Dan','Thailand','TH','Sala Dan (Thailand)',1,1,0),(3920,23973,103253,'Salavas','France','FR','Salavas (France)',1,1,0),(3921,0,103254,'Sales Oliveira','Brazil','BR','Sales Oliveira (Brazil)',1,1,0),(3922,0,103255,'Saltusio','Italy','IT','Saltusio (Italy)',1,1,0),(3923,0,103256,'Sam Son','Vietnam','VN','Sam Son (Vietnam)',1,1,0),(3924,0,103257,'San Antonio de las Minas','Mexico','MX','San Antonio de las Minas (Mexico)',1,1,0),(3925,0,103258,'San Cesareo (Latium)','Italy','IT','San Cesareo (Latium) (Italy)',1,1,0),(3926,0,103259,'Parit Buntar','Malaysia','MY','Parit Buntar (Malaysia)',1,1,0),(3927,0,103260,'Parral','Chile','CL','Parral (Chile)',1,1,0),(3928,0,103261,'Parwomaj','Bulgaria','BG','Parwomaj (Bulgaria)',1,1,0),(3929,0,103262,'Patos','Brazil','BR','Patos (Brazil)',1,1,0),(3930,0,103263,'Pavullo nel Frignano','Italy','IT','Pavullo nel Frignano (Italy)',1,1,0),(3931,0,103264,'Pefferlaw','Canada','CA','Pefferlaw (Canada)',1,1,0),(3932,0,103265,'Pehuajo','Argentina','AR','Pehuajo (Argentina)',1,1,0),(3933,0,103266,'Peliatan','Indonesia','ID','Peliatan (Indonesia)',1,1,0),(3934,0,103267,'Pembroke Dock','United Kingdom','UK','Pembroke Dock (United Kingdom)',1,1,0),(3935,0,103268,'Penhallow','United Kingdom','UK','Penhallow (United Kingdom)',1,1,0),(3936,0,103269,'Pererenan','Indonesia','ID','Pererenan (Indonesia)',1,1,0),(3937,0,103271,'Perla Marina','Dominican Republic','DO','Perla Marina (Dominican Republic)',1,1,0),(3938,0,103272,'Petropavl','Kazakhstan','KZ','Petropavl (Kazakhstan)',1,1,0),(3939,0,103273,'Petty Harbour','Canada','CA','Petty Harbour (Canada)',1,1,0),(3940,0,103274,'Pewsey','United Kingdom','UK','Pewsey (United Kingdom)',1,1,0),(3941,0,103275,'Peyrat-le-Chateau','France','FR','Peyrat-le-Chateau (France)',1,1,0),(3942,0,103276,'Piazza al Serchio','Italy','IT','Piazza al Serchio (Italy)',1,1,0),(3943,21362,103277,'Pie de la Cuesta','Mexico','MX','Pie de la Cuesta (Mexico)',1,1,0),(3944,21368,103278,'Pieksamaki','Finland','FI','Pieksamaki (Finland)',1,1,0),(3945,0,103279,'Pietracorbara','France','FR','Pietracorbara (France)',1,1,0),(3946,0,103280,'Pilis','Hungary','HU','Pilis (Hungary)',1,1,0),(3947,0,103281,'Pinal de Amoles','Mexico','MX','Pinal de Amoles (Mexico)',1,1,0),(3948,21473,103282,'Piriapolis','Uruguay','UY','Piriapolis (Uruguay)',1,1,0),(3949,0,103283,'Pisco Elqui','Chile','CL','Pisco Elqui (Chile)',1,1,0),(3950,0,103284,'Pissotschyn','Ukraine','UA','Pissotschyn (Ukraine)',1,1,0),(3951,0,103285,'Plana nad Luznici','Czech Republic','CZ','Plana nad Luznici (Czech Republic)',1,1,0),(3952,0,103286,'Playa Brasilito','Costa Rica','CR','Playa Brasilito (Costa Rica)',1,1,0),(3953,0,103287,'Plinksiu','Lithuania','LT','Plinksiu (Lithuania)',1,1,0),(3954,0,103288,'Plitra','Greece','GR','Plitra (Greece)',1,1,0),(3955,0,103289,'Plomeur','France','FR','Plomeur (France)',1,1,0),(3956,0,103290,'Ploubalay','France','FR','Ploubalay (France)',1,1,0),(3957,0,103291,'Plouezoc\'h','France','FR','Plouezoc\'h (France)',1,1,0),(3958,0,103292,'Plougrescant','France','FR','Plougrescant (France)',1,1,0),(3959,0,103293,'Pocklington','United Kingdom','UK','Pocklington (United Kingdom)',1,1,0),(3960,0,103294,'Podobovets','Ukraine','UA','Podobovets (Ukraine)',1,1,0),(3961,0,103295,'Point Lonsdale','Australia','AU','Point Lonsdale (Australia)',1,1,0),(3962,0,103296,'Pointe-a-la-Fregate','Canada','CA','Pointe-a-la-Fregate (Canada)',1,1,0),(3963,0,103297,'Pollington','United Kingdom','UK','Pollington (United Kingdom)',1,1,0),(3964,0,103298,'Pont Casse','Dominica','DM','Pont Casse (Dominica)',1,1,0),(3965,0,103299,'Pontinia','Italy','IT','Pontinia (Italy)',1,1,0),(3966,0,103300,'Pont-Rouge','Canada','CA','Pont-Rouge (Canada)',1,1,0),(3967,0,103301,'Popovka','Ukraine','UA','Popovka (Ukraine)',1,1,0),(3968,0,103302,'Poronin','Poland','PL','Poronin (Poland)',1,1,0),(3969,0,103303,'Port Denison','Australia','AU','Port Denison (Australia)',1,1,0),(3970,0,103304,'Port Edward','Canada','CA','Port Edward (Canada)',1,1,0),(3971,0,103305,'Port George','Canada','CA','Port George (Canada)',1,1,0),(3972,32575,103306,'Port Renfrew','Canada','CA','Port Renfrew (Canada)',1,1,0),(3973,0,103307,'Portao','Brazil','BR','Portao (Brazil)',1,1,0),(3974,0,103308,'Porto Martins','Portugal','PT','Porto Martins (Portugal)',1,1,0),(3975,0,103309,'Portocannone','Italy','IT','Portocannone (Italy)',1,1,0),(3976,0,103310,'Port-Saint-Louis-du-Rhone','France','FR','Port-Saint-Louis-du-Rhone (France)',1,1,0),(3977,0,103311,'Posadas','Spain','ES','Posadas (Spain)',1,1,0),(3978,0,103312,'Pouance','France','FR','Pouance (France)',1,1,0),(3979,0,103313,'Povazska Bystrica','Slovakia','SK','Povazska Bystrica (Slovakia)',1,1,0),(3980,0,103314,'Preci','Italy','IT','Preci (Italy)',1,1,0),(3981,0,103315,'Prelog','Croatia','HR','Prelog (Croatia)',1,1,0),(3982,0,103316,'Priiskovy','Russia','RU','Priiskovy (Russia)',1,1,0),(3983,0,103317,'Przysiek','Poland','PL','Przysiek (Poland)',1,1,0),(3984,0,103318,'Pserimos','Greece','GR','Pserimos (Greece)',1,1,0),(3985,0,103319,'Puerto Triunfo','Colombia','CO','Puerto Triunfo (Colombia)',1,1,0),(3986,0,103320,'Pulawy','Poland','PL','Pulawy (Poland)',1,1,0),(3987,0,103321,'Punta Alta','Argentina','AR','Punta Alta (Argentina)',1,1,0),(3988,0,103322,'Punta Banco','Costa Rica','CR','Punta Banco (Costa Rica)',1,1,0),(3989,0,103323,'Pustomyty','Ukraine','UA','Pustomyty (Ukraine)',1,1,0),(3990,0,103324,'Puyloubier','France','FR','Puyloubier (France)',1,1,0),(3991,0,103326,'Saint-Anaclet-de-Lessard','Canada','CA','Saint-Anaclet-de-Lessard (Canada)',1,1,0),(3992,0,103327,'Saint-Antoine-sur-Richelieu','Canada','CA','Saint-Antoine-sur-Richelieu (Canada)',1,1,0),(3993,0,103328,'Saint-Aubin-les-Elbeuf','France','FR','Saint-Aubin-les-Elbeuf (France)',1,1,0),(3994,0,103329,'Saint-Cirgues-en-Montagne','France','FR','Saint-Cirgues-en-Montagne (France)',1,1,0),(3995,0,103330,'Saint-Didier-sous-Aubenas','France','FR','Saint-Didier-sous-Aubenas (France)',1,1,0),(3996,0,103331,'Sainte Vertu','France','FR','Sainte Vertu (France)',1,1,0),(3997,0,103332,'Saint-Izaire','France','FR','Saint-Izaire (France)',1,1,0),(3998,0,103333,'Saint-Laurent-Blangy','France','FR','Saint-Laurent-Blangy (France)',1,1,0),(3999,0,103334,'Saint-Laurent-du-Maroni','French Guiana','GF','Saint-Laurent-du-Maroni (French Guiana)',1,1,0),(4000,0,103335,'Saint-Louis','Guadeloupe','GP','Saint-Louis (Guadeloupe)',1,1,0),(4001,0,103336,'Saint-Mathieu-de-Beloeil','Canada','CA','Saint-Mathieu-de-Beloeil (Canada)',1,1,0),(4002,0,103337,'Saint-Romain-de-Lerps','France','FR','Saint-Romain-de-Lerps (France)',1,1,0),(4003,0,103338,'Saint-Symphorien','France','FR','Saint-Symphorien (France)',1,1,0),(4004,0,103339,'Saint-Thierry','France','FR','Saint-Thierry (France)',1,1,0),(4005,0,103340,'Saint-Zenon','Canada','CA','Saint-Zenon (Canada)',1,1,0),(4006,0,103341,'Salin-de-Giraud','France','FR','Salin-de-Giraud (France)',1,1,0),(4007,0,103342,'Salinopolis','Brazil','BR','Salinopolis (Brazil)',1,1,0),(4008,0,103343,'Salzano','Italy','IT','Salzano (Italy)',1,1,0),(4009,0,103347,'San Agustinillo','Mexico','MX','San Agustinillo (Mexico)',1,1,0),(4010,0,103348,'San Antonio de Benageber','Spain','ES','San Antonio de Benageber (Spain)',1,1,0),(4011,32999,103349,'San Genesio ed Uniti','Italy','IT','San Genesio ed Uniti (Italy)',1,1,0),(4012,24103,103350,'San Ignacio','Honduras','HN','San Ignacio (Honduras)',1,1,0),(4013,0,103351,'San Jose de Chiquitos','Bolivia','BO','San Jose de Chiquitos (Bolivia)',1,1,0),(4014,0,103352,'San Maurizio Canavese','Italy','IT','San Maurizio Canavese (Italy)',1,1,0),(4015,0,103353,'San Miguel de Aras','Spain','ES','San Miguel de Aras (Spain)',1,1,0),(4016,33107,103354,'San Miguel Regla','Mexico','MX','San Miguel Regla (Mexico)',1,1,0),(4017,0,103355,'San Nicolaas','Aruba','AW','San Nicolaas (Aruba)',1,1,0),(4018,0,103356,'San Pablo Villa de Mitla','Mexico','MX','San Pablo Villa de Mitla (Mexico)',1,1,0),(4019,0,103357,'San Piero a Sieve','Italy','IT','San Piero a Sieve (Italy)',1,1,0),(4020,0,103358,'San Salvatore Monferrato','Italy','IT','San Salvatore Monferrato (Italy)',1,1,0),(4021,0,103359,'Sandhurst','United Kingdom','UK','Sandhurst (United Kingdom)',1,1,0),(4022,0,103360,'Sanok','Poland','PL','Sanok (Poland)',1,1,0),(4023,0,103361,'Santa Catarina Palopo','Guatemala','GT','Santa Catarina Palopo (Guatemala)',1,1,0),(4024,0,103362,'Santa Maria Al Bagno','Italy','IT','Santa Maria Al Bagno (Italy)',1,1,0),(4025,0,103363,'Santa Maria de Palautordera','Spain','ES','Santa Maria de Palautordera (Spain)',1,1,0),(4026,0,103364,'Santa Sofia','Italy','IT','Santa Sofia (Italy)',1,1,0),(4027,0,103365,'Santo Stefano d\'Aveto','Italy','IT','Santo Stefano d\'Aveto (Italy)',1,1,0),(4028,0,103366,'Sao Bras do Suacui','Brazil','BR','Sao Bras do Suacui (Brazil)',1,1,0),(4029,0,103367,'Sao Joaquim do Monte','Brazil','BR','Sao Joaquim do Monte (Brazil)',1,1,0),(4030,0,103368,'Sao Raimundo Nonato','Brazil','BR','Sao Raimundo Nonato (Brazil)',1,1,0),(4031,0,103369,'Sao Sebastiao do Paraiso','Brazil','BR','Sao Sebastiao do Paraiso (Brazil)',1,1,0),(4032,0,103370,'Sarapul','Russia','RU','Sarapul (Russia)',1,1,0),(4033,0,103371,'Sarno','Italy','IT','Sarno (Italy)',1,1,0),(4034,0,103372,'Sartilly','France','FR','Sartilly (France)',1,1,0),(4035,0,103373,'Sasolburg','South Africa','ZA','Sasolburg (South Africa)',1,1,0),(4036,0,103374,'Sasovo','Russia','RU','Sasovo (Russia)',1,1,0),(4037,0,103375,'Savignano sul Panaro','Italy','IT','Savignano sul Panaro (Italy)',1,1,0),(4038,24534,103376,'Schindellegi','Switzerland','CH','Schindellegi (Switzerland)',1,1,0),(4039,0,103377,'Sclos-de-Contes','France','FR','Sclos-de-Contes (France)',1,1,0),(4040,0,103378,'Scoreni','Moldova','MD','Scoreni (Moldova)',1,1,0),(4041,0,103379,'Sebes (Muhlbach)','Romania','RO','Sebes (Muhlbach) (Romania)',1,1,0),(4042,0,103380,'Sede Boker','Israel','IL','Sede Boker (Israel)',1,1,0),(4043,0,103381,'Sedletz-Pertschitz','Czech Republic','CZ','Sedletz-Pertschitz (Czech Republic)',1,1,0),(4044,0,103382,'Sees','France','FR','Sees (France)',1,1,0),(4045,24787,103383,'Selonnet','France','FR','Selonnet (France)',1,1,0),(4046,0,103384,'Semei','Kazakhstan','KZ','Semei (Kazakhstan)',1,1,0),(4047,0,103385,'Sen Monourom','Cambodia','KH','Sen Monourom (Cambodia)',1,1,0),(4048,0,103386,'Sennen Cove','United Kingdom','UK','Sennen Cove (United Kingdom)',1,1,0),(4049,0,103387,'Serrone','Italy','IT','Serrone (Italy)',1,1,0),(4050,0,103388,'Shingu','Japan','JP','Shingu (Japan)',1,1,0),(4051,0,103389,'Shinshiro','Japan','JP','Shinshiro (Japan)',1,1,0),(4052,0,103390,'Shtormove','Ukraine','UA','Shtormove (Ukraine)',1,1,0),(4053,0,103391,'Shuanggang','China','CN','Shuanggang (China)',1,1,0),(4054,0,103392,'Sigri','Greece','GR','Sigri (Greece)',1,1,0),(4055,0,103393,'Oppede','France','FR','Oppede (France)',1,1,0),(4056,0,103394,'Oravsky Biely Potok','Slovakia','SK','Oravsky Biely Potok (Slovakia)',1,1,0),(4057,0,103395,'Ordzhonikidze','Ukraine','UA','Ordzhonikidze (Ukraine)',1,1,0),(4058,0,103396,'Oregrund','Sweden','SE','Oregrund (Sweden)',1,1,0),(4059,0,103397,'Oreshak','Bulgaria','BG','Oreshak (Bulgaria)',1,1,0),(4060,0,103398,'Ornano Grande','Italy','IT','Ornano Grande (Italy)',1,1,0),(4061,0,103399,'Oryavchyk','Ukraine','UA','Oryavchyk (Ukraine)',1,1,0),(4062,0,103400,'Orzesche','Poland','PL','Orzesche (Poland)',1,1,0),(4063,0,103401,'Osaki','Japan','JP','Osaki (Japan)',1,1,0),(4064,0,103402,'Otzias','Greece','GR','Otzias (Greece)',1,1,0),(4065,0,103403,'Ouro Branco','Brazil','BR','Ouro Branco (Brazil)',1,1,0),(4066,0,103404,'Overton','United Kingdom','UK','Overton (United Kingdom)',1,1,0),(4067,0,103405,'Owinska','Poland','PL','Owinska (Poland)',1,1,0),(4068,0,103406,'Paks','Hungary','HU','Paks (Hungary)',1,1,0),(4069,0,103407,'Palase','Albania','AL','Palase (Albania)',1,1,0),(4070,0,103408,'Paldiski','Estonia','EE','Paldiski (Estonia)',1,1,0),(4071,0,103409,'Paleokastro',NULL,NULL,'Paleokastro ()',1,1,0),(4072,0,103410,'Palleusieux','Italy','IT','Palleusieux (Italy)',1,1,0),(4073,0,103411,'Panichishte','Bulgaria','BG','Panichishte (Bulgaria)',1,1,0),(4074,0,103412,'Panzano in Chianti','Italy','IT','Panzano in Chianti (Italy)',1,1,0),(4075,0,103413,'Papworth Everard','United Kingdom','UK','Papworth Everard (United Kingdom)',1,1,0),(4076,0,103414,'Paranapiacaba','Brazil','BR','Paranapiacaba (Brazil)',1,1,0),(4077,0,103415,'Paranoa','Brazil','BR','Paranoa (Brazil)',1,1,0),(4078,0,103416,'Parham','Canada','CA','Parham (Canada)',1,1,0),(4079,0,103417,'Partenit','Ukraine','UA','Partenit (Ukraine)',1,1,0),(4080,0,103418,'Pasching','Austria','AT','Pasching (Austria)',1,1,0),(4081,0,103419,'Pato Branco','Brazil','BR','Pato Branco (Brazil)',1,1,0),(4082,0,103420,'Pawlodar','Kazakhstan','KZ','Pawlodar (Kazakhstan)',1,1,0),(4083,0,103421,'Pawlowiczki','Poland','PL','Pawlowiczki (Poland)',1,1,0),(4084,0,103422,'Peki\'in','Israel','IL','Peki\'in (Israel)',1,1,0),(4085,0,103423,'Peno','Russia','RU','Peno (Russia)',1,1,0),(4086,0,103424,'Peresyp','Russia','RU','Peresyp (Russia)',1,1,0),(4087,0,103425,'Perl','Luxembourg','LU','Perl (Luxembourg)',1,1,0),(4088,0,103426,'Pescina','Italy','IT','Pescina (Italy)',1,1,0),(4089,0,103427,'Peshkopia','Albania','AL','Peshkopia (Albania)',1,1,0),(4090,0,103428,'Petrijevci','Croatia','HR','Petrijevci (Croatia)',1,1,0),(4091,0,103429,'Petrovskoye','Russia','RU','Petrovskoye (Russia)',1,1,0),(4092,0,103430,'Phakding','Nepal','NP','Phakding (Nepal)',1,1,0),(4093,0,103431,'Piedecuesta (Metropolregion Bucaramanga)','Colombia','CO','Piedecuesta (Metropolregion Bucaramanga) (Colombia)',1,1,0),(4094,0,103432,'Pillig','Germany','DE','Pillig (Germany)',1,1,0),(4095,0,103433,'Pine Valley','Australia','AU','Pine Valley (Australia)',1,1,0),(4096,0,103434,'Pinos Puente','Spain','ES','Pinos Puente (Spain)',1,1,0),(4097,0,103435,'Planoles','Spain','ES','Planoles (Spain)',1,1,0),(4098,0,103436,'Plataniotissa','Greece','GR','Plataniotissa (Greece)',1,1,0),(4099,0,103437,'Pliska','Bulgaria','BG','Pliska (Bulgaria)',1,1,0),(4100,0,103438,'Pocheon','South Korea','KR','Pocheon (South Korea)',1,1,0),(4101,21657,103439,'Poggiardo','Italy','IT','Poggiardo (Italy)',1,1,0),(4102,0,103440,'Polanczyk','Poland','PL','Polanczyk (Poland)',1,1,0),(4103,0,103441,'Polva','Estonia','EE','Polva (Estonia)',1,1,0),(4104,0,103442,'Pontaix','France','FR','Pontaix (France)',1,1,0),(4105,32493,103443,'Ponte San Marco','Italy','IT','Ponte San Marco (Italy)',1,1,0),(4106,0,103444,'Popina village','Bulgaria','BG','Popina village (Bulgaria)',1,1,0),(4107,0,103445,'Porongurup','Australia','AU','Porongurup (Australia)',1,1,0),(4108,0,103446,'Portaferry','United Kingdom','UK','Portaferry (United Kingdom)',1,1,0),(4109,0,103447,'Port-Salut','Haiti','HT','Port-Salut (Haiti)',1,1,0),(4110,0,103448,'Posterstein','Germany','DE','Posterstein (Germany)',1,1,0),(4111,0,103449,'Potelieres','France','FR','Potelieres (France)',1,1,0),(4112,0,103450,'Pottsville','Australia','AU','Pottsville (Australia)',1,1,0),(4113,0,103451,'Pottuvil','Sri Lanka','LK','Pottuvil (Sri Lanka)',1,1,0),(4114,0,103452,'Poueyferre','France','FR','Poueyferre (France)',1,1,0),(4115,0,103453,'Pozzolo Formigaro','Italy','IT','Pozzolo Formigaro (Italy)',1,1,0),(4116,0,103454,'Prestbury','United Kingdom','UK','Prestbury (United Kingdom)',1,1,0),(4117,0,103455,'Prospect','Barbados','BB','Prospect (Barbados)',1,1,0),(4118,0,103456,'Przykona','Poland','PL','Przykona (Poland)',1,1,0),(4119,0,103457,'Puembo','Ecuador','EC','Puembo (Ecuador)',1,1,0),(4120,0,103458,'Puentedura','Spain','ES','Puentedura (Spain)',1,1,0),(4121,0,103459,'Puerto Conchillas','Uruguay','UY','Puerto Conchillas (Uruguay)',1,1,0),(4122,0,103460,'Puerto de Avila','Spain','ES','Puerto de Avila (Spain)',1,1,0),(4123,0,103461,'Pugerna','Switzerland','CH','Pugerna (Switzerland)',1,1,0),(4124,0,103462,'Puli (Nantou)','Taiwan','TW','Puli (Nantou) (Taiwan)',1,1,0),(4125,0,103463,'Punilla Valley','Argentina','AR','Punilla Valley (Argentina)',1,1,0),(4126,0,103464,'Punta del Diablo','Uruguay','UY','Punta del Diablo (Uruguay)',1,1,0),(4127,0,103465,'Pustevny','Czech Republic','CZ','Pustevny (Czech Republic)',1,1,0),(4128,0,103466,'Puttalam','Sri Lanka','LK','Puttalam (Sri Lanka)',1,1,0),(4129,0,103467,'Pydna-Kolindros','Greece','GR','Pydna-Kolindros (Greece)',1,1,0),(4130,0,103468,'Quedas do Iguacu','Brazil','BR','Quedas do Iguacu (Brazil)',1,1,0),(4131,0,103469,'Qurayyat','Saudi Arabia','SA','Qurayyat (Saudi Arabia)',1,1,0),(4132,0,103470,'Radashkovichy','Belarus','BY','Radashkovichy (Belarus)',1,1,0),(4133,0,103471,'Rafaela','Argentina','AR','Rafaela (Argentina)',1,1,0),(4134,0,103472,'Rajon Werchowyna','Ukraine','UA','Rajon Werchowyna (Ukraine)',1,1,0),(4135,0,103473,'Ramzay','Russia','RU','Ramzay (Russia)',1,1,0),(4136,0,103474,'Rancul','Argentina','AR','Rancul (Argentina)',1,1,0),(4137,0,103475,'Ras El Bar','Egypt','EG','Ras El Bar (Egypt)',1,1,0),(4138,0,103476,'Ravanusa','Italy','IT','Ravanusa (Italy)',1,1,0),(4139,0,103477,'Ravdoucha','Greece','GR','Ravdoucha (Greece)',1,1,0),(4140,22644,103478,'Rawson','Argentina','AR','Rawson (Argentina)',1,1,0),(4141,0,103479,'Reconquista','Argentina','AR','Reconquista (Argentina)',1,1,0),(4142,0,103480,'Sainte-Hedwidge','Canada','CA','Sainte-Hedwidge (Canada)',1,1,0),(4143,0,103481,'Sainte-Luce','Canada','CA','Sainte-Luce (Canada)',1,1,0),(4144,0,103482,'Saint-Ferdinand','Canada','CA','Saint-Ferdinand (Canada)',1,1,0),(4145,0,103483,'Saint-Florent-le-Vieil','France','FR','Saint-Florent-le-Vieil (France)',1,1,0),(4146,0,103484,'Saint-Hilaire-de-Loulay','France','FR','Saint-Hilaire-de-Loulay (France)',1,1,0),(4147,0,103485,'Saint-Honore','Canada','CA','Saint-Honore (Canada)',1,1,0),(4148,0,103486,'Saint-Sulpice-le-Verdon','France','FR','Saint-Sulpice-le-Verdon (France)',1,1,0),(4149,0,103487,'Saint-Zotique','Canada','CA','Saint-Zotique (Canada)',1,1,0),(4150,0,103488,'Sakai',NULL,NULL,'Sakai ()',1,1,0),(4151,0,103489,'Sala Comacina','Italy','IT','Sala Comacina (Italy)',1,1,0),(4152,0,103490,'Salamina','Colombia','CO','Salamina (Colombia)',1,1,0),(4153,0,103492,'Sale','Italy','IT','Sale (Italy)',1,1,0),(4154,0,103493,'Salekhard','Russia','RU','Salekhard (Russia)',1,1,0),(4155,24006,103494,'Salins-les-Bains','France','FR','Salins-les-Bains (France)',1,1,0),(4156,0,103495,'Salto','Brazil','BR','Salto (Brazil)',1,1,0),(4157,0,103496,'Samcheok','South Korea','KR','Samcheok (South Korea)',1,1,0),(4158,0,103497,'San Bartolomeo (Breda di Piave)','Italy','IT','San Bartolomeo (Breda di Piave) (Italy)',1,1,0),(4159,0,103498,'San Benedetto Val di Sambro','Italy','IT','San Benedetto Val di Sambro (Italy)',1,1,0),(4160,0,103499,'San Bernardino Verbano','Italy','IT','San Bernardino Verbano (Italy)',1,1,0),(4161,0,103500,'San Esteban del Molar','Spain','ES','San Esteban del Molar (Spain)',1,1,0),(4162,0,103501,'San Jeronimo','Colombia','CO','San Jeronimo (Colombia)',1,1,0),(4163,0,103502,'San Jose de Isnos','Colombia','CO','San Jose de Isnos (Colombia)',1,1,0),(4164,0,103503,'San Leonardo di Cutro','Italy','IT','San Leonardo di Cutro (Italy)',1,1,0),(4165,0,103504,'San Luis Talpa','El Salvador','SV','San Luis Talpa (El Salvador)',1,1,0),(4166,0,103505,'San Martin','Spain','ES','San Martin (Spain)',1,1,0),(4167,0,103506,'San Pedro de Jujuy','Argentina','AR','San Pedro de Jujuy (Argentina)',1,1,0),(4168,0,103507,'San Ramon','Nicaragua','NI','San Ramon (Nicaragua)',1,1,0),(4169,0,103508,'Sant Marti Vell','Spain','ES','Sant Marti Vell (Spain)',1,1,0),(4170,0,103509,'Santa Clara del Mar','Argentina','AR','Santa Clara del Mar (Argentina)',1,1,0),(4171,0,103510,'Santa Cruz de Cocachacra','Peru','PE','Santa Cruz de Cocachacra (Peru)',1,1,0),(4172,0,103511,'Santa Elena','Ecuador','EC','Santa Elena (Ecuador)',1,1,0),(4173,0,103512,'Santa Eulalia de Riuprimer','Spain','ES','Santa Eulalia de Riuprimer (Spain)',1,1,0),(4174,0,103513,'Santa Fe do Sul','Brazil','BR','Santa Fe do Sul (Brazil)',1,1,0),(4175,0,103514,'Santa Luzia','Brazil','BR','Santa Luzia (Brazil)',1,1,0),(4176,0,103515,'Santa Marianita','Ecuador','EC','Santa Marianita (Ecuador)',1,1,0),(4177,0,103516,'Santa Rosa de Copan','Honduras','HN','Santa Rosa de Copan (Honduras)',1,1,0),(4178,0,103517,'Santa Teresa','Brazil','BR','Santa Teresa (Brazil)',1,1,0),(4179,0,103518,'Santisteban del Puerto','Spain','ES','Santisteban del Puerto (Spain)',1,1,0),(4180,0,103519,'Sanyi','Taiwan','TW','Sanyi (Taiwan)',1,1,0),(4181,0,103520,'Sao Gabriel','Brazil','BR','Sao Gabriel (Brazil)',1,1,0),(4182,33352,103521,'Sao Joao de Meriti','Brazil','BR','Sao Joao de Meriti (Brazil)',1,1,0),(4183,0,103522,'Sapareva Banya','Bulgaria','BG','Sapareva Banya (Bulgaria)',1,1,0),(4184,0,103523,'Sapiranga','Brazil','BR','Sapiranga (Brazil)',1,1,0),(4185,0,103524,'Satila','Sweden','SE','Satila (Sweden)',1,1,0),(4186,0,103525,'Sax','Switzerland','CH','Sax (Switzerland)',1,1,0),(4187,0,103526,'Schreiber','Canada','CA','Schreiber (Canada)',1,1,0),(4188,0,103527,'Seaford','Australia','AU','Seaford (Australia)',1,1,0),(4189,0,103528,'Sedegliano','Italy','IT','Sedegliano (Italy)',1,1,0),(4190,0,103529,'Sekocin Stary','Poland','PL','Sekocin Stary (Poland)',1,1,0),(4191,0,103530,'Sendim','Portugal','PT','Sendim (Portugal)',1,1,0),(4192,0,103531,'Senica','Slovakia','SK','Senica (Slovakia)',1,1,0),(4193,0,103532,'Serina','Italy','IT','Serina (Italy)',1,1,0),(4194,0,103533,'Serra de Sao Bento','Brazil','BR','Serra de Sao Bento (Brazil)',1,1,0),(4195,0,103534,'Shearwater','Australia','AU','Shearwater (Australia)',1,1,0),(4196,0,103535,'Sherburn-in-Elmet','United Kingdom','UK','Sherburn-in-Elmet (United Kingdom)',1,1,0),(4197,25059,103536,'Shibata','Japan','JP','Shibata (Japan)',1,1,0),(4198,0,103537,'Shiogama','Japan','JP','Shiogama (Japan)',1,1,0),(4199,0,103538,'Saint-Augustin-de-Desmaures','Canada','CA','Saint-Augustin-de-Desmaures (Canada)',1,1,0),(4200,0,103539,'San Filippo del Mela','Italy','IT','San Filippo del Mela (Italy)',1,1,0),(4201,0,103540,'San Giorgio a Liri','Italy','IT','San Giorgio a Liri (Italy)',1,1,0),(4202,0,103541,'San Giorgio Lucano','Italy','IT','San Giorgio Lucano (Italy)',1,1,0),(4203,0,103542,'San Lorenzo','Argentina','AR','San Lorenzo (Argentina)',1,1,0),(4204,0,103543,'San Martino in Pensilis','Italy','IT','San Martino in Pensilis (Italy)',1,1,0),(4205,0,103544,'San Massimo','Italy','IT','San Massimo (Italy)',1,1,0),(4206,0,103545,'San Pa Tong','Thailand','TH','San Pa Tong (Thailand)',1,1,0),(4207,0,103546,'San Pablo','Costa Rica','CR','San Pablo (Costa Rica)',1,1,0),(4208,0,103547,'San Pietro al Natisone','Italy','IT','San Pietro al Natisone (Italy)',1,1,0),(4209,0,103548,'San Quirino','Italy','IT','San Quirino (Italy)',1,1,0),(4210,0,103549,'San Ramon','Peru','PE','San Ramon (Peru)',1,1,0),(4211,0,103550,'San Sebastian del Oeste','Mexico','MX','San Sebastian del Oeste (Mexico)',1,1,0),(4212,0,103551,'Sanctuary Point','Australia','AU','Sanctuary Point (Australia)',1,1,0),(4213,0,103552,'Sandikli','Turkey','TR','Sandikli (Turkey)',1,1,0),(4214,0,103553,'Sandy Hollow','Australia','AU','Sandy Hollow (Australia)',1,1,0),(4215,0,103554,'Sanguinetto','Italy','IT','Sanguinetto (Italy)',1,1,0),(4216,0,103555,'Santa Catarina Juquila','Mexico','MX','Santa Catarina Juquila (Mexico)',1,1,0),(4217,0,103556,'Santa Cruz La Laguna','Guatemala','GT','Santa Cruz La Laguna (Guatemala)',1,1,0),(4218,0,103557,'Santa Cruz Verapaz','Guatemala','GT','Santa Cruz Verapaz (Guatemala)',1,1,0),(4219,0,103558,'Santa Veronica','Colombia','CO','Santa Veronica (Colombia)',1,1,0),(4220,0,103559,'Santos Reyes Nopala','Mexico','MX','Santos Reyes Nopala (Mexico)',1,1,0),(4221,0,103560,'Sao Joao da Boa Vista','Brazil','BR','Sao Joao da Boa Vista (Brazil)',1,1,0),(4222,0,103561,'Sao Joaquim da Barra','Brazil','BR','Sao Joaquim da Barra (Brazil)',1,1,0),(4223,0,103562,'Sao Lourenco do Oeste','Brazil','BR','Sao Lourenco do Oeste (Brazil)',1,1,0),(4224,33374,103563,'Sao Pedro da Aldeia','Brazil','BR','Sao Pedro da Aldeia (Brazil)',1,1,0),(4225,0,103564,'Saraphi','Thailand','TH','Saraphi (Thailand)',1,1,0),(4226,0,103565,'Saraycik','Turkey','TR','Saraycik (Turkey)',1,1,0),(4227,0,103566,'Sassello','Italy','IT','Sassello (Italy)',1,1,0),(4228,0,103567,'Sawahlunto','Indonesia','ID','Sawahlunto (Indonesia)',1,1,0),(4229,0,103568,'Scharja','Russia','RU','Scharja (Russia)',1,1,0),(4230,0,103569,'Schaschkiw','Ukraine','UA','Schaschkiw (Ukraine)',1,1,0),(4231,0,103570,'Schdenijewo','Ukraine','UA','Schdenijewo (Ukraine)',1,1,0),(4232,0,103571,'Scotsburn','Canada','CA','Scotsburn (Canada)',1,1,0),(4233,0,103572,'Seaton','Australia','AU','Seaton (Australia)',1,1,0),(4234,0,103573,'Sebaco','Nicaragua','NI','Sebaco (Nicaragua)',1,1,0),(4235,0,103574,'Secondigny','France','FR','Secondigny (France)',1,1,0),(4236,0,103575,'Semey','Kazakhstan','KZ','Semey (Kazakhstan)',1,1,0),(4237,0,103576,'Senador Canedo','Brazil','BR','Senador Canedo (Brazil)',1,1,0),(4238,0,103577,'Sennan','Japan','JP','Sennan (Japan)',1,1,0),(4239,0,103578,'Severnlea','Australia','AU','Severnlea (Australia)',1,1,0),(4240,0,103579,'Shaxi','China','CN','Shaxi (China)',1,1,0),(4241,0,103580,'Shchuchinsk','Kazakhstan','KZ','Shchuchinsk (Kazakhstan)',1,1,0),(4242,0,103581,'Shengze','China','CN','Shengze (China)',1,1,0),(4243,0,103582,'Shennongjia','China','CN','Shennongjia (China)',1,1,0),(4244,0,103583,'Sherkston','Canada','CA','Sherkston (Canada)',1,1,0),(4245,0,103584,'Shinano','Japan','JP','Shinano (Japan)',1,1,0),(4246,0,103585,'Shiojiri','Japan','JP','Shiojiri (Japan)',1,1,0),(4247,0,103586,'Shirako','Japan','JP','Shirako (Japan)',1,1,0),(4248,0,103587,'Shtormovoye','Ukraine','UA','Shtormovoye (Ukraine)',1,1,0),(4249,0,103588,'Sibay','Russia','RU','Sibay (Russia)',1,1,0),(4250,0,103589,'Sidoarjo','Indonesia','ID','Sidoarjo (Indonesia)',1,1,0),(4251,0,103590,'Silichy','Belarus','BY','Silichy (Belarus)',1,1,0),(4252,0,103591,'Sindia','Senegal','SN','Sindia (Senegal)',1,1,0),(4253,0,103592,'Skirmett','United Kingdom','UK','Skirmett (United Kingdom)',1,1,0),(4254,0,103593,'Skrabbo','Finland','FI','Skrabbo (Finland)',1,1,0),(4255,0,103594,'Slavyanka','Russia','RU','Slavyanka (Russia)',1,1,0),(4256,0,103595,'Slawske','Ukraine','UA','Slawske (Ukraine)',1,1,0),(4257,25467,103596,'Smeaton','Australia','AU','Smeaton (Australia)',1,1,0),(4258,0,103597,'Smolensk Oblast','Russia','RU','Smolensk Oblast (Russia)',1,1,0),(4259,0,103598,'Sobradinho','Brazil','BR','Sobradinho (Brazil)',1,1,0),(4260,0,103599,'Socorro','Colombia','CO','Socorro (Colombia)',1,1,0),(4261,0,103600,'Sokakagzi','Turkey','TR','Sokakagzi (Turkey)',1,1,0),(4262,0,103601,'Solagna','Italy','IT','Solagna (Italy)',1,1,0),(4263,0,103602,'Sombrerete','Mexico','MX','Sombrerete (Mexico)',1,1,0),(4264,0,103603,'Somerton','United Kingdom','UK','Somerton (United Kingdom)',1,1,0),(4265,0,103604,'Sondernach','France','FR','Sondernach (France)',1,1,0),(4266,0,103605,'Sonsbeck','Germany','DE','Sonsbeck (Germany)',1,1,0),(4267,0,103606,'Sorel-Tracy','Canada','CA','Sorel-Tracy (Canada)',1,1,0),(4268,0,103607,'South Caicos','Turks & Caicos Islands',NULL,'South Caicos (Turks & Caicos Islands)',1,1,0),(4269,0,103608,'Spino d\'Adda','Italy','IT','Spino d\'Adda (Italy)',1,1,0),(4270,0,103609,'Sri Thanu','Thailand','TH','Sri Thanu (Thailand)',1,1,0),(4271,0,103610,'Sroda Slaska','Poland','PL','Sroda Slaska (Poland)',1,1,0),(4272,0,103611,'Sromowice Nizne','Poland','PL','Sromowice Nizne (Poland)',1,1,0),(4273,0,103612,'St. Michael an der Etsch','Italy','IT','St. Michael an der Etsch (Italy)',1,1,0),(4274,0,103613,'St. Thomas','Jamaica','JM','St. Thomas (Jamaica)',1,1,0),(4275,0,103614,'Stakcin','Slovakia','SK','Stakcin (Slovakia)',1,1,0),(4276,0,103615,'Stechelberg','Switzerland','CH','Stechelberg (Switzerland)',1,1,0),(4277,0,103616,'Steeple Ashton','United Kingdom','UK','Steeple Ashton (United Kingdom)',1,1,0),(4278,0,103617,'Stieglitz','Australia','AU','Stieglitz (Australia)',1,1,0),(4279,0,103618,'Rokytnice','Czech Republic','CZ','Rokytnice (Czech Republic)',1,1,0),(4280,0,103619,'Romankiv','Ukraine','UA','Romankiv (Ukraine)',1,1,0),(4281,0,103620,'Rosario','Uruguay','UY','Rosario (Uruguay)',1,1,0),(4282,0,103621,'Rosishka','Ukraine','UA','Rosishka (Ukraine)',1,1,0),(4283,0,103622,'Rossosch','Russia','RU','Rossosch (Russia)',1,1,0),(4284,0,103623,'Rozenburg','Netherlands','NL','Rozenburg (Netherlands)',1,1,0),(4285,0,103624,'Rudgwick','United Kingdom','UK','Rudgwick (United Kingdom)',1,1,0),(4286,0,103625,'Rudyard','United Kingdom','UK','Rudyard (United Kingdom)',1,1,0),(4287,0,103626,'Rydal','Australia','AU','Rydal (Australia)',1,1,0),(4288,0,103628,'Sachsenburg','Austria','AT','Sachsenburg (Austria)',1,1,0),(4289,0,103629,'Saelices','Spain','ES','Saelices (Spain)',1,1,0),(4290,0,103630,'Saillans','France','FR','Saillans (France)',1,1,0),(4291,0,103631,'Saint-Alban-Leysse','France','FR','Saint-Alban-Leysse (France)',1,1,0),(4292,0,103632,'Saint-Aubin-le-Monial','France','FR','Saint-Aubin-le-Monial (France)',1,1,0),(4293,0,103633,'Saint-Cergue','Switzerland','CH','Saint-Cergue (Switzerland)',1,1,0),(4294,0,103634,'Saint-Cirgues-de-Prades','France','FR','Saint-Cirgues-de-Prades (France)',1,1,0),(4295,0,103635,'Saint-Come-d\'Olt','France','FR','Saint-Come-d\'Olt (France)',1,1,0),(4296,0,103636,'Saint-Denis-sur-Richelieu','Canada','CA','Saint-Denis-sur-Richelieu (Canada)',1,1,0),(4297,0,103637,'Sainte-Croix-en-Jarez','France','FR','Sainte-Croix-en-Jarez (France)',1,1,0),(4298,0,103638,'Sainte-Flavie','Canada','CA','Sainte-Flavie (Canada)',1,1,0),(4299,0,103639,'Sainte-Helene-sur-Isere','France','FR','Sainte-Helene-sur-Isere (France)',1,1,0),(4300,0,103640,'Saint-Etienne de Fursac','France','FR','Saint-Etienne de Fursac (France)',1,1,0),(4301,0,103641,'Saint-Gaultier','France','FR','Saint-Gaultier (France)',1,1,0),(4302,0,103642,'Saint-Julien-en-Champsaur','France','FR','Saint-Julien-en-Champsaur (France)',1,1,0),(4303,0,103643,'Saint-Julien-en-Vercors','France','FR','Saint-Julien-en-Vercors (France)',1,1,0),(4304,0,103644,'Saint-Leonard (Seine-Maritime)','France','FR','Saint-Leonard (Seine-Maritime) (France)',1,1,0),(4305,0,103645,'Ko Lanta Yai','Thailand','TH','Ko Lanta Yai (Thailand)',1,1,0),(4306,0,103646,'Kochchikade','Sri Lanka','LK','Kochchikade (Sri Lanka)',1,1,0),(4307,0,103647,'Koh Rong Sanloem','Cambodia','KH','Koh Rong Sanloem (Cambodia)',1,1,0),(4308,0,103648,'Koh Ta Kiev Island','Cambodia','KH','Koh Ta Kiev Island (Cambodia)',1,1,0),(4309,0,103649,'Komono','Japan','JP','Komono (Japan)',1,1,0),(4310,0,103650,'Kopo','Indonesia','ID','Kopo (Indonesia)',1,1,0),(4311,0,103651,'Koronowo','Poland','PL','Koronowo (Poland)',1,1,0),(4312,0,103652,'Kovin','Serbia','RS','Kovin (Serbia)',1,1,0),(4313,0,103653,'Kozina','Slovenia','SI','Kozina (Slovenia)',1,1,0),(4314,0,103654,'Krasnopartizanskaya','Russia','RU','Krasnopartizanskaya (Russia)',1,1,0),(4315,0,103655,'Krasnye Tkachi','Russia','RU','Krasnye Tkachi (Russia)',1,1,0),(4316,0,103656,'Kulm','Poland','PL','Kulm (Poland)',1,1,0),(4317,0,103657,'Kurtzenhouse','France','FR','Kurtzenhouse (France)',1,1,0),(4318,0,103658,'Kwariati','Georgia','GE','Kwariati (Georgia)',1,1,0),(4319,0,103659,'L’Aldea','Spain','ES','L’Aldea (Spain)',1,1,0),(4320,0,103660,'La Cruz de Huanacaxtle','Mexico','MX','La Cruz de Huanacaxtle (Mexico)',1,1,0),(4321,0,103661,'La Cuba','Spain','ES','La Cuba (Spain)',1,1,0),(4322,0,103662,'La Lechere','France','FR','La Lechere (France)',1,1,0),(4323,0,103663,'La Tebaida','Colombia','CO','La Tebaida (Colombia)',1,1,0),(4324,0,103664,'La Vall d\'Uixo','Spain','ES','La Vall d\'Uixo (Spain)',1,1,0),(4325,0,103665,'La Vaupaliere','France','FR','La Vaupaliere (France)',1,1,0),(4326,0,103666,'La Vega','Dominican Republic','DO','La Vega (Dominican Republic)',1,1,0),(4327,0,103667,'Lac-Bouchette','Canada','CA','Lac-Bouchette (Canada)',1,1,0),(4328,0,103668,'Lage Vuursche','Netherlands','NL','Lage Vuursche (Netherlands)',1,1,0),(4329,0,103669,'Lago Patria','Italy','IT','Lago Patria (Italy)',1,1,0),(4330,0,103670,'Lairg','United Kingdom','UK','Lairg (United Kingdom)',1,1,0),(4331,14804,103671,'Laissac','France','FR','Laissac (France)',1,1,0),(4332,0,103672,'Lalevade-d\'Ardeche','France','FR','Lalevade-d\'Ardeche (France)',1,1,0),(4333,0,103673,'Lanzo Torinese','Italy','IT','Lanzo Torinese (Italy)',1,1,0),(4334,0,103674,'Laranjeiras do Sul','Brazil','BR','Laranjeiras do Sul (Brazil)',1,1,0),(4335,0,103675,'Larche','France','FR','Larche (France)',1,1,0),(4336,0,103676,'Lasarevskoe','Russia','RU','Lasarevskoe (Russia)',1,1,0),(4337,0,103677,'Lavertezzo','Switzerland','CH','Lavertezzo (Switzerland)',1,1,0),(4338,0,103678,'Laverune','France','FR','Laverune (France)',1,1,0),(4339,0,103679,'Le Biot','France','FR','Le Biot (France)',1,1,0),(4340,0,103680,'Le Mas','France','FR','Le Mas (France)',1,1,0),(4341,0,103681,'Le Tampon','Reunion','RE','Le Tampon (Reunion)',1,1,0),(4342,0,103682,'Legian Kaja','Indonesia','ID','Legian Kaja (Indonesia)',1,1,0),(4343,0,103683,'Lekki','Nigeria','NG','Lekki (Nigeria)',1,1,0),(4344,0,103684,'Lelant','United Kingdom','UK','Lelant (United Kingdom)',1,1,0),(4345,0,103685,'Lem St.','Denmark','DK','Lem St. (Denmark)',1,1,0),(4346,0,103686,'Inal','Russia','RU','Inal (Russia)',1,1,0),(4347,0,103687,'Ipala','Mexico','MX','Ipala (Mexico)',1,1,0),(4348,0,103688,'Irati','Brazil','BR','Irati (Brazil)',1,1,0),(4349,0,103689,'Isola del Gran Sasso d’Italia','Italy','IT','Isola del Gran Sasso d’Italia (Italy)',1,1,0),(4350,0,103690,'Ivangorod','Russia','RU','Ivangorod (Russia)',1,1,0),(4351,0,103691,'Jamijarvi','Finland','FI','Jamijarvi (Finland)',1,1,0),(4352,0,103692,'Jamne','Czech Republic','CZ','Jamne (Czech Republic)',1,1,0),(4353,0,103693,'Jarzewo','Russia','RU','Jarzewo (Russia)',1,1,0),(4354,0,103694,'Jataizinho','Brazil','BR','Jataizinho (Brazil)',1,1,0),(4355,0,103695,'Jiquirica','Brazil','BR','Jiquirica (Brazil)',1,1,0),(4356,0,103696,'Jiutepec','Mexico','MX','Jiutepec (Mexico)',1,1,0),(4357,0,103697,'Jodar','Spain','ES','Jodar (Spain)',1,1,0),(4358,0,103698,'John O\'Groats','United Kingdom','UK','John O\'Groats (United Kingdom)',1,1,0),(4359,0,103699,'Johvi','Estonia','EE','Johvi (Estonia)',1,1,0),(4360,13202,103700,'Joinville','France','FR','Joinville (France)',1,1,0),(4361,0,103701,'Juazeiro','Brazil','BR','Juazeiro (Brazil)',1,1,0),(4362,0,103702,'Jugiong','Australia','AU','Jugiong (Australia)',1,1,0),(4363,0,103703,'Kacov','Czech Republic','CZ','Kacov (Czech Republic)',1,1,0),(4364,0,103704,'Kamiich','Japan','JP','Kamiich (Japan)',1,1,0),(4365,0,103705,'Kangarilla','Australia','AU','Kangarilla (Australia)',1,1,0),(4366,0,103706,'Kaniv','Ukraine','UA','Kaniv (Ukraine)',1,1,0),(4367,0,103707,'Kashiwa','Japan','JP','Kashiwa (Japan)',1,1,0),(4368,0,103708,'Kato Pyrgos','Cyprus','CY','Kato Pyrgos (Cyprus)',1,1,0),(4369,0,103709,'Kavaja','Albania','AL','Kavaja (Albania)',1,1,0),(4370,0,103710,'Kelebija','Serbia','RS','Kelebija (Serbia)',1,1,0),(4371,0,103711,'Kelkit','Turkey','TR','Kelkit (Turkey)',1,1,0),(4372,0,103712,'Kesbewa','Sri Lanka','LK','Kesbewa (Sri Lanka)',1,1,0),(4373,0,103713,'Ketama','Morocco','MA','Ketama (Morocco)',1,1,0),(4374,0,103714,'Kimbolton','United Kingdom','UK','Kimbolton (United Kingdom)',1,1,0),(4375,0,103715,'Kingsclear','Canada','CA','Kingsclear (Canada)',1,1,0),(4376,14133,103716,'Kirikkale','Turkey','TR','Kirikkale (Turkey)',1,1,0),(4377,0,103717,'Ko Lan','Thailand','TH','Ko Lan (Thailand)',1,1,0),(4378,0,103718,'Kolback','Sweden','SE','Kolback (Sweden)',1,1,0),(4379,0,103719,'Konakovo','Russia','RU','Konakovo (Russia)',1,1,0),(4380,0,103720,'Koscielna Wies','Poland','PL','Koscielna Wies (Poland)',1,1,0),(4381,0,103721,'Kosicka Bela','Slovakia','SK','Kosicka Bela (Slovakia)',1,1,0),(4382,0,103722,'Kozbunar','Macedonia','MK','Kozbunar (Macedonia)',1,1,0),(4383,0,103723,'Kraczkowa','Poland','PL','Kraczkowa (Poland)',1,1,0),(4384,0,103724,'Kravare','Czech Republic','CZ','Kravare (Czech Republic)',1,1,0),(4385,0,103725,'Krivoklat','Czech Republic','CZ','Krivoklat (Czech Republic)',1,1,0),(4386,0,103726,'Krusovice','Czech Republic','CZ','Krusovice (Czech Republic)',1,1,0),(4387,0,103729,'Kuzmadene','Russia','RU','Kuzmadene (Russia)',1,1,0),(4388,0,103730,'Kyperounta','Cyprus','CY','Kyperounta (Cyprus)',1,1,0),(4389,0,103731,'Kysucke Nove Mesto','Slovakia','SK','Kysucke Nove Mesto (Slovakia)',1,1,0),(4390,0,103732,'La Antigua','Guatemala','GT','La Antigua (Guatemala)',1,1,0),(4391,0,103733,'La Bastide des Jourdans','France','FR','La Bastide des Jourdans (France)',1,1,0),(4392,0,103734,'La Cabrera','Spain','ES','La Cabrera (Spain)',1,1,0),(4393,31256,103735,'La Calera','Colombia','CO','La Calera (Colombia)',1,1,0),(4394,0,103736,'La Destrousse','France','FR','La Destrousse (France)',1,1,0),(4395,0,103737,'La Dorada','Colombia','CO','La Dorada (Colombia)',1,1,0),(4396,0,103738,'La Libertad','Ecuador','EC','La Libertad (Ecuador)',1,1,0),(4397,0,103739,'La Pobleta de Bellvei','Spain','ES','La Pobleta de Bellvei (Spain)',1,1,0),(4398,0,103740,'La Rabita','Spain','ES','La Rabita (Spain)',1,1,0),(4399,0,103741,'La Roque - Esclapon','France','FR','La Roque - Esclapon (France)',1,1,0),(4400,0,103742,'La Tigra','Costa Rica','CR','La Tigra (Costa Rica)',1,1,0),(4401,0,103743,'Labra','Spain','ES','Labra (Spain)',1,1,0),(4402,0,103744,'Lagraulet du Gers','France','FR','Lagraulet du Gers (France)',1,1,0),(4403,0,103745,'Laizhou','China','CN','Laizhou (China)',1,1,0),(4404,0,103746,'Lalang Linggah','Indonesia','ID','Lalang Linggah (Indonesia)',1,1,0),(4405,0,103747,'Lancefield','Australia','AU','Lancefield (Australia)',1,1,0),(4406,0,103748,'Langa','Denmark','DK','Langa (Denmark)',1,1,0),(4407,0,103749,'Langa de Duero','Spain','ES','Langa de Duero (Spain)',1,1,0),(4408,0,103750,'Langaller','United Kingdom','UK','Langaller (United Kingdom)',1,1,0),(4409,0,103752,'Lappe','Sweden','SE','Lappe (Sweden)',1,1,0),(4410,0,103753,'L\'Argentiere-la-Bessee','France','FR','L\'Argentiere-la-Bessee (France)',1,1,0),(4411,15047,103754,'Las Condes','Chile','CL','Las Condes (Chile)',1,1,0),(4412,0,103755,'Las Cruces','Chile','CL','Las Cruces (Chile)',1,1,0),(4413,0,103756,'Las Flores','Argentina','AR','Las Flores (Argentina)',1,1,0),(4414,0,103757,'Las Trancas','Chile','CL','Las Trancas (Chile)',1,1,0),(4415,0,103758,'Laufen','Switzerland','CH','Laufen (Switzerland)',1,1,0),(4416,0,103759,'Launsdorf','Austria','AT','Launsdorf (Austria)',1,1,0),(4417,0,103760,'Lauris','France','FR','Lauris (France)',1,1,0),(4418,0,103761,'Laxa','Sweden','SE','Laxa (Sweden)',1,1,0),(4419,0,103762,'Le Meux','France','FR','Le Meux (France)',1,1,0),(4420,31740,103763,'Le Vesinet','France','FR','Le Vesinet (France)',1,1,0),(4421,0,103764,'Leczna','Poland','PL','Leczna (Poland)',1,1,0),(4422,0,103765,'Lehon','France','FR','Lehon (France)',1,1,0),(4423,0,103766,'Leongatha','Australia','AU','Leongatha (Australia)',1,1,0),(4424,0,103767,'Lermontov','Russia','RU','Lermontov (Russia)',1,1,0),(4425,0,103768,'Les Omergues','France','FR','Les Omergues (France)',1,1,0),(4426,0,103769,'Loslau','Poland','PL','Loslau (Poland)',1,1,0),(4427,0,103770,'Lowicz','Poland','PL','Lowicz (Poland)',1,1,0),(4428,0,103771,'Luis Correia','Brazil','BR','Luis Correia (Brazil)',1,1,0),(4429,0,103772,'Lukow','Poland','PL','Lukow (Poland)',1,1,0),(4430,16182,103773,'Lyndoch','Australia','AU','Lyndoch (Australia)',1,1,0),(4431,0,103774,'Lysice','Czech Republic','CZ','Lysice (Czech Republic)',1,1,0),(4432,0,103775,'Lyubertsy','Russia','RU','Lyubertsy (Russia)',1,1,0),(4433,0,103776,'Macerata Feltria','Italy','IT','Macerata Feltria (Italy)',1,1,0),(4434,16250,103777,'Machida','Japan','JP','Machida (Japan)',1,1,0),(4435,0,103778,'Mae Hi','Thailand','TH','Mae Hi (Thailand)',1,1,0),(4436,0,103779,'Mae Taeng','Thailand','TH','Mae Taeng (Thailand)',1,1,0),(4437,0,103780,'Maha Sarakham','Thailand','TH','Maha Sarakham (Thailand)',1,1,0),(4438,16392,103782,'Mahmudia','Romania','RO','Mahmudia (Romania)',1,1,0),(4439,0,103783,'Majuro','Micronesia','FM','Majuro (Micronesia)',1,1,0),(4440,0,103784,'Maketu','New Zealand','NZ','Maketu (New Zealand)',1,1,0),(4441,0,103785,'Malberg','Germany','DE','Malberg (Germany)',1,1,0),(4442,16507,103786,'Maldonado','Uruguay','UY','Maldonado (Uruguay)',1,1,0),(4443,0,103787,'Malloa','Chile','CL','Malloa (Chile)',1,1,0),(4444,0,103788,'Malmok','Aruba','AW','Malmok (Aruba)',1,1,0),(4445,0,103789,'Manacapuru','Brazil','BR','Manacapuru (Brazil)',1,1,0),(4446,0,103790,'Manase','Samoa','WS','Manase (Samoa)',1,1,0),(4447,0,103791,'Mane (Haute-Garonne)','France','FR','Mane (Haute-Garonne) (France)',1,1,0),(4448,0,103792,'Manglaralto','Ecuador','EC','Manglaralto (Ecuador)',1,1,0),(4449,0,103793,'Manhuacu','Brazil','BR','Manhuacu (Brazil)',1,1,0),(4450,0,103794,'Manscherok','Russia','RU','Manscherok (Russia)',1,1,0),(4451,0,103795,'Marburg','Australia','AU','Marburg (Australia)',1,1,0),(4452,0,103796,'Marengo','Australia','AU','Marengo (Australia)',1,1,0),(4453,0,103797,'Marfino','Russia','RU','Marfino (Russia)',1,1,0),(4454,0,103798,'Maria Chiquita','Panama','PA','Maria Chiquita (Panama)',1,1,0),(4455,0,103799,'Marienwerder','Germany','DE','Marienwerder (Germany)',1,1,0),(4456,31917,103800,'Marina di Ravenna','Italy','IT','Marina di Ravenna (Italy)',1,1,0),(4457,0,103801,'Marlo','Australia','AU','Marlo (Australia)',1,1,0),(4458,16973,103802,'Martinez de la Torre','Mexico','MX','Martinez de la Torre (Mexico)',1,1,0),(4459,0,103803,'Maryport','United Kingdom','UK','Maryport (United Kingdom)',1,1,0),(4460,0,103804,'Maskeliya','Sri Lanka','LK','Maskeliya (Sri Lanka)',1,1,0),(4461,0,103805,'Massat','France','FR','Massat (France)',1,1,0),(4462,0,103806,'Mathiveri','Maldives','MV','Mathiveri (Maldives)',1,1,0),(4463,0,103807,'Matugama','Sri Lanka','LK','Matugama (Sri Lanka)',1,1,0),(4464,0,103808,'Maxwell Coast','Barbados','BB','Maxwell Coast (Barbados)',1,1,0),(4465,17195,103809,'Mayne Island','Canada','CA','Mayne Island (Canada)',1,1,0),(4466,0,103810,'Meuspath','Germany','DE','Meuspath (Germany)',1,1,0),(4467,0,103811,'Mezotne','Latvia','LV','Mezotne (Latvia)',1,1,0),(4468,0,103812,'Michalowice','Poland','PL','Michalowice (Poland)',1,1,0),(4469,0,103813,'Mickleham','Australia','AU','Mickleham (Australia)',1,1,0),(4470,0,103814,'Mickleover','United Kingdom','UK','Mickleover (United Kingdom)',1,1,0),(4471,0,103815,'Migovo','Ukraine','UA','Migovo (Ukraine)',1,1,0),(4472,0,103816,'Milagro','Ecuador','EC','Milagro (Ecuador)',1,1,0),(4473,0,103817,'Millvale','South Africa','ZA','Millvale (South Africa)',1,1,0),(4474,0,103818,'Milopotamos','Greece','GR','Milopotamos (Greece)',1,1,0),(4475,17746,103819,'Mimasaka','Japan','JP','Mimasaka (Japan)',1,1,0),(4476,0,103820,'Minca','Colombia','CO','Minca (Colombia)',1,1,0),(4477,0,103821,'Mineralnyje Wody','Russia','RU','Mineralnyje Wody (Russia)',1,1,0),(4478,0,103822,'Miralago','Switzerland','CH','Miralago (Switzerland)',1,1,0),(4479,0,103823,'Miranda de Arga','Spain','ES','Miranda de Arga (Spain)',1,1,0),(4480,0,103824,'Misefa','Hungary','HU','Misefa (Hungary)',1,1,0),(4481,0,103826,'Moixent','Spain','ES','Moixent (Spain)',1,1,0),(4482,0,103827,'Mojmirovce','Slovakia','SK','Mojmirovce (Slovakia)',1,1,0),(4483,0,103828,'Mola Kaliva','Greece','GR','Mola Kaliva (Greece)',1,1,0),(4484,0,103829,'Molos-Agios Konstantinos','Greece','GR','Molos-Agios Konstantinos (Greece)',1,1,0),(4485,0,103830,'Monasterio','Spain','ES','Monasterio (Spain)',1,1,0),(4486,0,103831,'Moneasa','Romania','RO','Moneasa (Romania)',1,1,0),(4487,35143,103832,'Mongar','Bhutan','BT','Mongar (Bhutan)',1,1,0),(4488,0,103833,'Montese','Italy','IT','Montese (Italy)',1,1,0),(4489,0,103834,'Montespluga','Italy','IT','Montespluga (Italy)',1,1,0),(4490,0,103835,'Moor-Rolofshagen','Germany','DE','Moor-Rolofshagen (Germany)',1,1,0),(4491,0,103836,'Mormant-sur-Vernisson','France','FR','Mormant-sur-Vernisson (France)',1,1,0),(4492,0,103837,'Moschato','Greece','GR','Moschato (Greece)',1,1,0),(4493,0,103838,'Mount Beauty','Australia','AU','Mount Beauty (Australia)',1,1,0),(4494,0,103839,'Mount Moriac','Australia','AU','Mount Moriac (Australia)',1,1,0),(4495,0,103840,'Moustheni','Greece','GR','Moustheni (Greece)',1,1,0),(4496,0,103841,'Moyogalpa','Nicaragua','NI','Moyogalpa (Nicaragua)',1,1,0),(4497,0,103842,'Mozyr','Belarus','BY','Mozyr (Belarus)',1,1,0),(4498,0,103843,'Mucura Island','Colombia','CO','Mucura Island (Colombia)',1,1,0),(4499,0,103844,'Mudan','Taiwan','TW','Mudan (Taiwan)',1,1,0),(4500,0,103845,'Muinos','Spain','ES','Muinos (Spain)',1,1,0),(4501,0,103846,'Mundingburra','Australia','AU','Mundingburra (Australia)',1,1,0),(4502,0,103847,'Mureck','Austria','AT','Mureck (Austria)',1,1,0),(4503,0,103848,'Musile di Piave','Italy','IT','Musile di Piave (Italy)',1,1,0),(4504,0,103849,'Nackenheim','Germany','DE','Nackenheim (Germany)',1,1,0),(4505,0,103850,'Nakhon Nayok City','Thailand','TH','Nakhon Nayok City (Thailand)',1,1,0),(4506,18910,103851,'Nakusp','Canada','CA','Nakusp (Canada)',1,1,0),(4507,0,103852,'Nanzhuang','Taiwan','TW','Nanzhuang (Taiwan)',1,1,0),(4508,18977,103853,'Naousa','Greece','GR','Naousa (Greece)',1,1,0),(4509,19004,103854,'Narbethong','Australia','AU','Narbethong (Australia)',1,1,0),(4510,19111,103855,'Nazelles-Negron','France','FR','Nazelles-Negron (France)',1,1,0),(4511,0,103856,'Laas','Italy','IT','Laas (Italy)',1,1,0),(4512,0,103857,'Lacanja Chansayab','Mexico','MX','Lacanja Chansayab (Mexico)',1,1,0),(4513,0,103858,'Lacuisine','Belgium','BE','Lacuisine (Belgium)',1,1,0),(4514,0,103859,'Laguna de Cameros','Spain','ES','Laguna de Cameros (Spain)',1,1,0),(4515,0,103860,'Lake Cathie','Australia','AU','Lake Cathie (Australia)',1,1,0),(4516,0,103861,'Lake Coleridge','New Zealand','NZ','Lake Coleridge (New Zealand)',1,1,0),(4517,0,103862,'Laki','Bulgaria','BG','Laki (Bulgaria)',1,1,0),(4518,0,103863,'Lama','France','FR','Lama (France)',1,1,0),(4519,0,103864,'Larouche','Canada','CA','Larouche (Canada)',1,1,0),(4520,0,103865,'Las Colorados','Spain','ES','Las Colorados (Spain)',1,1,0),(4521,0,103866,'Las Rozas de Valdearroyo','Spain','ES','Las Rozas de Valdearroyo (Spain)',1,1,0),(4522,0,103867,'Kissos','Greece','GR','Kissos (Greece)',1,1,0),(4523,0,103868,'Kitimat','Canada','CA','Kitimat (Canada)',1,1,0),(4524,0,103869,'Klimovo','Russia','RU','Klimovo (Russia)',1,1,0),(4525,0,103870,'Klin','Russia','RU','Klin (Russia)',1,1,0),(4526,0,103871,'Kmetovtsi','Bulgaria','BG','Kmetovtsi (Bulgaria)',1,1,0),(4527,0,103872,'Knitsley','United Kingdom','UK','Knitsley (United Kingdom)',1,1,0),(4528,0,103873,'Koblewe','Ukraine','UA','Koblewe (Ukraine)',1,1,0),(4529,0,103874,'Kock','Poland','PL','Kock (Poland)',1,1,0),(4530,0,103875,'Kokshetau','Kazakhstan','KZ','Kokshetau (Kazakhstan)',1,1,0),(4531,0,103876,'Kolonowskie','Poland','PL','Kolonowskie (Poland)',1,1,0),(4532,0,103878,'Konigshain','Germany','DE','Konigshain (Germany)',1,1,0),(4533,0,103879,'Korsika','France','FR','Korsika (France)',1,1,0),(4534,0,103880,'Koryazhma','Russia','RU','Koryazhma (Russia)',1,1,0),(4535,0,103881,'Kostrzyn','Poland','PL','Kostrzyn (Poland)',1,1,0),(4536,0,103882,'Kotohira','Japan','JP','Kotohira (Japan)',1,1,0),(4537,0,103883,'Kraiburg am Inn','Germany','DE','Kraiburg am Inn (Germany)',1,1,0),(4538,0,103884,'Kramim','Israel','IL','Kramim (Israel)',1,1,0),(4539,0,103885,'Krentis','Greece','GR','Krentis (Greece)',1,1,0),(4540,0,103886,'Kryzhanivka','Ukraine','UA','Kryzhanivka (Ukraine)',1,1,0),(4541,14568,103887,'Kula','Turkey','TR','Kula (Turkey)',1,1,0),(4542,0,103889,'Kvasy','Ukraine','UA','Kvasy (Ukraine)',1,1,0),(4543,0,103890,'La Ferte-Mace','France','FR','La Ferte-Mace (France)',1,1,0),(4544,0,103891,'La Foret-sur-Sevre','France','FR','La Foret-sur-Sevre (France)',1,1,0),(4545,31417,103892,'La Pedrera','Uruguay','UY','La Pedrera (Uruguay)',1,1,0),(4546,0,103893,'La Pobla de Claramunt','Spain','ES','La Pobla de Claramunt (Spain)',1,1,0),(4547,0,103894,'La Roquebrussanne','France','FR','La Roquebrussanne (France)',1,1,0),(4548,0,103895,'La Roquette-sur-Siagne','France','FR','La Roquette-sur-Siagne (France)',1,1,0),(4549,0,103896,'La Valle','Italy','IT','La Valle (Italy)',1,1,0),(4550,0,103897,'La Vigueta','Mexico','MX','La Vigueta (Mexico)',1,1,0),(4551,0,103898,'Lablachere','France','FR','Lablachere (France)',1,1,0),(4552,0,103899,'Lac-Superieur','Canada','CA','Lac-Superieur (Canada)',1,1,0),(4553,14749,103900,'Laem Chabang','Thailand','TH','Laem Chabang (Thailand)',1,1,0),(4554,14796,103901,'Lai Chau','Vietnam','VN','Lai Chau (Vietnam)',1,1,0),(4555,0,103902,'Lake St. Clair','Australia','AU','Lake St. Clair (Australia)',1,1,0),(4556,0,103903,'Lake St. Peter','Canada','CA','Lake St. Peter (Canada)',1,1,0),(4557,0,103904,'Langnau am Albis','Switzerland','CH','Langnau am Albis (Switzerland)',1,1,0),(4558,0,103905,'Las Caldas del Besaya','Spain','ES','Las Caldas del Besaya (Spain)',1,1,0),(4559,0,103906,'Las Canas','Dominican Republic','DO','Las Canas (Dominican Republic)',1,1,0),(4560,0,103907,'Las Toninas','Argentina','AR','Las Toninas (Argentina)',1,1,0),(4561,0,103908,'Le Chambon-Feugerolles','France','FR','Le Chambon-Feugerolles (France)',1,1,0),(4562,0,103909,'Le Coudray-Macouard','France','FR','Le Coudray-Macouard (France)',1,1,0),(4563,0,103910,'Le Nayrac','France','FR','Le Nayrac (France)',1,1,0),(4564,0,103911,'Lelekovice','Czech Republic','CZ','Lelekovice (Czech Republic)',1,1,0),(4565,0,103912,'Lenkoran','Azerbaijan','AZ','Lenkoran (Azerbaijan)',1,1,0),(4566,0,103913,'Leonding','Austria','AT','Leonding (Austria)',1,1,0),(4567,0,103914,'Leonstein','Austria','AT','Leonstein (Austria)',1,1,0),(4568,0,103915,'Lepin-le-Lac','France','FR','Lepin-le-Lac (France)',1,1,0),(4569,31784,103916,'Les Franqueses del Valles','Spain','ES','Les Franqueses del Valles (Spain)',1,1,0),(4570,0,103917,'Lettland','Latvia','LV','Lettland (Latvia)',1,1,0),(4571,0,103918,'Liepe','Germany','DE','Liepe (Germany)',1,1,0),(4572,0,103919,'Limenas Thasou','Greece','GR','Limenas Thasou (Greece)',1,1,0),(4573,0,103920,'Lindisfarne','Australia','AU','Lindisfarne (Australia)',1,1,0),(4574,0,103921,'Lindoia','Brazil','BR','Lindoia (Brazil)',1,1,0),(4575,0,103922,'Ljubno ob Savinji','Slovenia','SI','Ljubno ob Savinji (Slovenia)',1,1,0),(4576,0,103923,'Llancarfan','United Kingdom','UK','Llancarfan (United Kingdom)',1,1,0),(4577,0,103924,'Llanfair Waterdine','United Kingdom','UK','Llanfair Waterdine (United Kingdom)',1,1,0),(4578,0,103925,'Llanfairfechan','United Kingdom','UK','Llanfairfechan (United Kingdom)',1,1,0),(4579,0,103926,'Loch Shin','United Kingdom','UK','Loch Shin (United Kingdom)',1,1,0),(4580,12949,103927,'Ixmiquilpan','Mexico','MX','Ixmiquilpan (Mexico)',1,1,0),(4581,0,103928,'Jachranka','Poland','PL','Jachranka (Poland)',1,1,0),(4582,0,103929,'Jackson\'s Point','Canada','CA','Jackson\'s Point (Canada)',1,1,0),(4583,0,103930,'Jacutinga','Brazil','BR','Jacutinga (Brazil)',1,1,0),(4584,0,103932,'Jamberoo','Australia','AU','Jamberoo (Australia)',1,1,0),(4585,0,103933,'Jaramijo','Ecuador','EC','Jaramijo (Ecuador)',1,1,0),(4586,0,103934,'Jardim','Brazil','BR','Jardim (Brazil)',1,1,0),(4587,0,103935,'Jaslovske Bohunice','Slovakia','SK','Jaslovske Bohunice (Slovakia)',1,1,0),(4588,0,103936,'Jeju-si','South Korea','KR','Jeju-si (South Korea)',1,1,0),(4589,0,103937,'Jenins','Switzerland','CH','Jenins (Switzerland)',1,1,0),(4590,0,103938,'Ji-Parana','Brazil','BR','Ji-Parana (Brazil)',1,1,0),(4591,0,103939,'Jolly Harbour','Antigua & Barbuda','AG','Jolly Harbour (Antigua & Barbuda)',1,1,0),(4592,0,103940,'Jostedal','Norway','NO','Jostedal (Norway)',1,1,0),(4593,0,103941,'Jotunheimen National Park','Norway','NO','Jotunheimen National Park (Norway)',1,1,0),(4594,0,103942,'Jumeaux','France','FR','Jumeaux (France)',1,1,0),(4595,0,103943,'Kachkanar','Russia','RU','Kachkanar (Russia)',1,1,0),(4596,0,103944,'Kaixian','China','CN','Kaixian (China)',1,1,0),(4597,0,103945,'Kalsdorf bei Graz','Austria','AT','Kalsdorf bei Graz (Austria)',1,1,0),(4598,0,103946,'Kamennomostskiy','Russia','RU','Kamennomostskiy (Russia)',1,1,0),(4599,0,103947,'Kamyk nad Vltavou','Czech Republic','CZ','Kamyk nad Vltavou (Czech Republic)',1,1,0),(4600,0,103948,'Kano','Nigeria','NG','Kano (Nigeria)',1,1,0),(4601,0,103949,'Karczew','Poland','PL','Karczew (Poland)',1,1,0),(4602,0,103951,'Karpaty','Ukraine','UA','Karpaty (Ukraine)',1,1,0),(4603,0,103952,'Kaski','Nepal','NP','Kaski (Nepal)',1,1,0),(4604,0,103953,'Kasnas','Finland','FI','Kasnas (Finland)',1,1,0),(4605,0,103954,'Kavlinge','Sweden','SE','Kavlinge (Sweden)',1,1,0),(4606,0,103955,'Kawaba','Japan','JP','Kawaba (Japan)',1,1,0),(4607,0,103956,'Kayser\'s Beach','South Africa','ZA','Kayser\'s Beach (South Africa)',1,1,0),(4608,0,103957,'Kensington','United Kingdom','UK','Kensington (United Kingdom)',1,1,0),(4609,0,103958,'Kerkwerve','Netherlands','NL','Kerkwerve (Netherlands)',1,1,0),(4610,0,103959,'Keserwan','Lebanon','LB','Keserwan (Lebanon)',1,1,0),(4611,0,103960,'Khe Sanh','Vietnam','VN','Khe Sanh (Vietnam)',1,1,0),(4612,0,103961,'Kickelsee','Poland','PL','Kickelsee (Poland)',1,1,0),(4613,0,103962,'Kidapawan','Philippines','PH','Kidapawan (Philippines)',1,1,0),(4614,0,103963,'Kidd\'s Beach','South Africa','ZA','Kidd\'s Beach (South Africa)',1,1,0),(4615,0,103964,'Kinabatangan','Malaysia','MY','Kinabatangan (Malaysia)',1,1,0),(4616,0,103965,'King Abdullah Economic City','Saudi Arabia','SA','King Abdullah Economic City (Saudi Arabia)',1,1,0),(4617,0,103966,'Kings Beach','Australia','AU','Kings Beach (Australia)',1,1,0),(4618,0,103967,'Kinrooi','Belgium','BE','Kinrooi (Belgium)',1,1,0),(4619,0,103968,'Kirchberg an der Raab','Austria','AT','Kirchberg an der Raab (Austria)',1,1,0),(4620,0,103969,'Kirova','Russia','RU','Kirova (Russia)',1,1,0),(4621,14172,103970,'Kiskunfelegyhaza','Hungary','HU','Kiskunfelegyhaza (Hungary)',1,1,0),(4622,0,103971,'Kistelek','Hungary','HU','Kistelek (Hungary)',1,1,0),(4623,0,103972,'Klimmen','Netherlands','NL','Klimmen (Netherlands)',1,1,0),(4624,0,103973,'Kloof','South Africa','ZA','Kloof (South Africa)',1,1,0),(4625,0,103974,'Klovsjo','Sweden','SE','Klovsjo (Sweden)',1,1,0),(4626,0,103975,'Knodishall','United Kingdom','UK','Knodishall (United Kingdom)',1,1,0),(4627,0,103976,'Lasauvage','Luxembourg','LU','Lasauvage (Luxembourg)',1,1,0),(4628,0,103977,'Laurieton','Australia','AU','Laurieton (Australia)',1,1,0),(4629,0,103978,'Lauwaki','Fiji Islands','FJ','Lauwaki (Fiji Islands)',1,1,0),(4630,0,103979,'Laviolle','France','FR','Laviolle (France)',1,1,0),(4631,0,103980,'Laxton','United Kingdom','UK','Laxton (United Kingdom)',1,1,0),(4632,0,103981,'Laye','France','FR','Laye (France)',1,1,0),(4633,0,103982,'Lazarevskoye Krasnodar','Russia','RU','Lazarevskoye Krasnodar (Russia)',1,1,0),(4634,0,103983,'Le Porge','France','FR','Le Porge (France)',1,1,0),(4635,0,103984,'Le Vigen','France','FR','Le Vigen (France)',1,1,0),(4636,0,103985,'Leandro N. Alem','Argentina','AR','Leandro N. Alem (Argentina)',1,1,0),(4637,0,103986,'Lechwitz','Czech Republic','CZ','Lechwitz (Czech Republic)',1,1,0),(4638,0,103987,'Legana','Australia','AU','Legana (Australia)',1,1,0),(4639,0,103988,'Legazpi','Spain','ES','Legazpi (Spain)',1,1,0),(4640,0,103989,'L\'Eguille','France','FR','L\'Eguille (France)',1,1,0),(4641,0,103990,'Lengau','Austria','AT','Lengau (Austria)',1,1,0),(4642,0,103991,'Lergrav - Farosund','Sweden','SE','Lergrav - Farosund (Sweden)',1,1,0),(4643,0,103992,'Lermontovo','Russia','RU','Lermontovo (Russia)',1,1,0),(4644,0,103993,'L\'Hermitage','France','FR','L\'Hermitage (France)',1,1,0),(4645,0,103994,'Likhoslavl','Russia','RU','Likhoslavl (Russia)',1,1,0),(4646,0,103995,'Lincoln','Argentina','AR','Lincoln (Argentina)',1,1,0),(4647,0,103996,'Lippiano','Italy','IT','Lippiano (Italy)',1,1,0),(4648,0,103997,'Livno','Bosnia and Herzegowina','BA','Livno (Bosnia and Herzegowina)',1,1,0),(4649,0,103998,'Llangurig','United Kingdom','UK','Llangurig (United Kingdom)',1,1,0),(4650,0,103999,'Lo Pagan','Spain','ES','Lo Pagan (Spain)',1,1,0),(4651,0,104000,'Lobanowo','Russia','RU','Lobanowo (Russia)',1,1,0),(4652,0,104001,'Locate di Triulzi','Italy','IT','Locate di Triulzi (Italy)',1,1,0),(4653,0,104002,'Loeches','Spain','ES','Loeches (Spain)',1,1,0),(4654,0,104003,'Losino-Petrovsky','Russia','RU','Losino-Petrovsky (Russia)',1,1,0),(4655,0,104004,'Lotoshino','Russia','RU','Lotoshino (Russia)',1,1,0),(4656,0,104005,'Lottorp','Sweden','SE','Lottorp (Sweden)',1,1,0),(4657,0,104006,'Louny','Czech Republic','CZ','Louny (Czech Republic)',1,1,0),(4658,0,104007,'Loures-Barousse','France','FR','Loures-Barousse (France)',1,1,0),(4659,0,104008,'Lozanne','France','FR','Lozanne (France)',1,1,0),(4660,0,104009,'Ludvikov','Czech Republic','CZ','Ludvikov (Czech Republic)',1,1,0),(4661,0,104010,'Lumshory','Ukraine','UA','Lumshory (Ukraine)',1,1,0),(4662,0,104011,'Lygourio','Greece','GR','Lygourio (Greece)',1,1,0),(4663,0,104012,'Maasin','Philippines','PH','Maasin (Philippines)',1,1,0),(4664,0,104013,'Machali','Chile','CL','Machali (Chile)',1,1,0),(4665,0,104014,'Madzharovo','Bulgaria','BG','Madzharovo (Bulgaria)',1,1,0),(4666,0,104015,'Magas','Russia','RU','Magas (Russia)',1,1,0),(4667,0,104016,'Maiden Gully','Australia','AU','Maiden Gully (Australia)',1,1,0),(4668,0,104017,'Mailly-le-Chateau','France','FR','Mailly-le-Chateau (France)',1,1,0),(4669,0,104018,'Makhamtia','Thailand','TH','Makhamtia (Thailand)',1,1,0),(4670,0,104019,'Makhinjauri','Georgia','GE','Makhinjauri (Georgia)',1,1,0),(4671,0,104020,'Makinohara','Japan','JP','Makinohara (Japan)',1,1,0),(4672,0,104021,'Malham','United Kingdom','UK','Malham (United Kingdom)',1,1,0),(4673,0,104022,'Mali Zvornik','Serbia','RS','Mali Zvornik (Serbia)',1,1,0),(4674,0,104023,'Mangakino','New Zealand','NZ','Mangakino (New Zealand)',1,1,0),(4675,16679,104024,'Manlleu','Spain','ES','Manlleu (Spain)',1,1,0),(4676,0,104025,'Mannar','Sri Lanka','LK','Mannar (Sri Lanka)',1,1,0),(4677,0,104026,'Manuelita','Colombia','CO','Manuelita (Colombia)',1,1,0),(4678,0,104027,'Maralal','Kenya','KE','Maralal (Kenya)',1,1,0),(4679,0,104028,'Marene','Italy','IT','Marene (Italy)',1,1,0),(4680,0,104029,'Mareuil-sur-Lay','France','FR','Mareuil-sur-Lay (France)',1,1,0),(4681,0,104030,'Margonin','Poland','PL','Margonin (Poland)',1,1,0),(4682,0,104031,'Markopoulo','Greece','GR','Markopoulo (Greece)',1,1,0),(4683,0,104032,'Martley','United Kingdom','UK','Martley (United Kingdom)',1,1,0),(4684,0,104033,'Marton',NULL,NULL,'Marton ()',1,1,0),(4685,0,104034,'Marx','Germany','DE','Marx (Germany)',1,1,0),(4686,0,104035,'Marysville','Canada','CA','Marysville (Canada)',1,1,0),(4687,0,104036,'Mazunte','Mexico','MX','Mazunte (Mexico)',1,1,0),(4688,0,104037,'Mazy','Belgium','BE','Mazy (Belgium)',1,1,0),(4689,0,104038,'Mazzano','Italy','IT','Mazzano (Italy)',1,1,0),(4690,0,104039,'McGregor','Canada','CA','McGregor (Canada)',1,1,0),(4691,0,104041,'Meduna di Livenza','Italy','IT','Meduna di Livenza (Italy)',1,1,0),(4692,0,104042,'Mele','Italy','IT','Mele (Italy)',1,1,0),(4693,0,104043,'Melekyne','Ukraine','UA','Melekyne (Ukraine)',1,1,0),(4694,0,104044,'Meleus','Russia','RU','Meleus (Russia)',1,1,0),(4695,17373,104045,'Melilli','Italy','IT','Melilli (Italy)',1,1,0),(4696,0,104046,'Melnik','Bulgaria','BG','Melnik (Bulgaria)',1,1,0),(4697,0,104047,'Metkovic','Croatia','HR','Metkovic (Croatia)',1,1,0),(4698,0,104048,'Meuvaines','France','FR','Meuvaines (France)',1,1,0),(4699,0,104049,'Mezhdurechensk','Russia','RU','Mezhdurechensk (Russia)',1,1,0),(4700,0,104050,'Hlohovec','Slovakia','SK','Hlohovec (Slovakia)',1,1,0),(4701,0,104051,'Hlotse','Lesotho','LS','Hlotse (Lesotho)',1,1,0),(4702,0,104052,'Hockliffe','United Kingdom','UK','Hockliffe (United Kingdom)',1,1,0),(4703,12265,104053,'Hope Town','Bahamas','BS','Hope Town (Bahamas)',1,1,0),(4704,0,104054,'Horsovsky Tyn','Czech Republic','CZ','Horsovsky Tyn (Czech Republic)',1,1,0),(4705,0,104055,'Hoswick','United Kingdom','UK','Hoswick (United Kingdom)',1,1,0),(4706,0,104056,'Hpa An','Myanmar','MM','Hpa An (Myanmar)',1,1,0),(4707,0,104057,'Hrazdan','Armenia','AM','Hrazdan (Armenia)',1,1,0),(4708,0,104058,'Huanuco','Peru','PE','Huanuco (Peru)',1,1,0),(4709,0,104059,'Huarmey','Peru','PE','Huarmey (Peru)',1,1,0),(4710,0,104060,'Huercal-Overa','Spain','ES','Huercal-Overa (Spain)',1,1,0),(4711,0,104061,'Hursuf','Ukraine','UA','Hursuf (Ukraine)',1,1,0),(4712,0,104062,'Ibate','Brazil','BR','Ibate (Brazil)',1,1,0),(4713,0,104063,'Ikoyi','Nigeria','NG','Ikoyi (Nigeria)',1,1,0),(4714,12630,104064,'Ilgaz','Turkey','TR','Ilgaz (Turkey)',1,1,0),(4715,0,104065,'Insel Tierra Bomba','Colombia','CO','Insel Tierra Bomba (Colombia)',1,1,0),(4716,0,104066,'Instow','United Kingdom','UK','Instow (United Kingdom)',1,1,0),(4717,12780,104067,'Inzai','Japan','JP','Inzai (Japan)',1,1,0),(4718,0,104068,'Ipil','Philippines','PH','Ipil (Philippines)',1,1,0),(4719,0,104069,'Irabu','Japan','JP','Irabu (Japan)',1,1,0),(4720,0,104070,'Irece','Brazil','BR','Irece (Brazil)',1,1,0),(4721,0,104071,'Irschawa','Ukraine','UA','Irschawa (Ukraine)',1,1,0),(4722,0,104072,'Isahaya','Japan','JP','Isahaya (Japan)',1,1,0),(4723,0,104073,'Itabirito','Brazil','BR','Itabirito (Brazil)',1,1,0),(4724,0,104074,'Ivanovo','Russia','RU','Ivanovo (Russia)',1,1,0),(4725,0,104075,'Jaboatao dos Guararapes','Brazil','BR','Jaboatao dos Guararapes (Brazil)',1,1,0),(4726,0,104076,'Jaboticabal','Brazil','BR','Jaboticabal (Brazil)',1,1,0),(4727,0,104077,'Jbaa','Lebanon','LB','Jbaa (Lebanon)',1,1,0),(4728,0,104078,'Jedlicze','Poland','PL','Jedlicze (Poland)',1,1,0),(4729,0,104079,'Jesenik nad Odrou','Czech Republic','CZ','Jesenik nad Odrou (Czech Republic)',1,1,0),(4730,0,104080,'Jevany','Czech Republic','CZ','Jevany (Czech Republic)',1,1,0),(4731,0,104081,'Jitra','Malaysia','MY','Jitra (Malaysia)',1,1,0),(4732,0,104082,'Joao Pinheiro','Brazil','BR','Joao Pinheiro (Brazil)',1,1,0),(4733,0,104083,'Jorpeland','Norway','NO','Jorpeland (Norway)',1,1,0),(4734,0,104084,'Jose Pedro Varela','Uruguay','UY','Jose Pedro Varela (Uruguay)',1,1,0),(4735,0,104085,'Joso','Japan','JP','Joso (Japan)',1,1,0),(4736,13242,104086,'Jost Van Dyke','British Virgin Islands','VG','Jost Van Dyke (British Virgin Islands)',1,1,0),(4737,0,104087,'Jurkalne','Latvia','LV','Jurkalne (Latvia)',1,1,0),(4738,0,104088,'Kabardinka','Russia','RU','Kabardinka (Russia)',1,1,0),(4739,0,104089,'Kacha','Ukraine','UA','Kacha (Ukraine)',1,1,0),(4740,0,104090,'Kadnikow','Russia','RU','Kadnikow (Russia)',1,1,0),(4741,0,104091,'Kainan','Japan','JP','Kainan (Japan)',1,1,0),(4742,0,104093,'Kalimna','Australia','AU','Kalimna (Australia)',1,1,0),(4743,0,104094,'Kalofer','Bulgaria','BG','Kalofer (Bulgaria)',1,1,0),(4744,0,104095,'Kamisu','Japan','JP','Kamisu (Japan)',1,1,0),(4745,0,104096,'Kandergrund','Switzerland','CH','Kandergrund (Switzerland)',1,1,0),(4746,13500,104097,'Kangasala','Finland','FI','Kangasala (Finland)',1,1,0),(4747,0,104098,'Kannuskoski','Finland','FI','Kannuskoski (Finland)',1,1,0),(4748,0,104099,'Karang Suraga','Indonesia','ID','Karang Suraga (Indonesia)',1,1,0),(4749,0,104100,'Kauguri parish','Latvia','LV','Kauguri parish (Latvia)',1,1,0),(4750,0,104101,'Kecel','Hungary','HU','Kecel (Hungary)',1,1,0),(4751,0,104102,'Kemptville','Canada','CA','Kemptville (Canada)',1,1,0),(4752,13879,104103,'Keremeos','Canada','CA','Keremeos (Canada)',1,1,0),(4753,0,104104,'Khafji','Saudi Arabia','SA','Khafji (Saudi Arabia)',1,1,0),(4754,0,104105,'Khlong Khut','Thailand','TH','Khlong Khut (Thailand)',1,1,0),(4755,0,104106,'Khuha Sawan','Thailand','TH','Khuha Sawan (Thailand)',1,1,0),(4756,0,104107,'Killarney','Australia','AU','Killarney (Australia)',1,1,0),(4757,0,104108,'Kilsyth South','Australia','AU','Kilsyth South (Australia)',1,1,0),(4758,0,104109,'Kingsville','Canada','CA','Kingsville (Canada)',1,1,0),(4759,0,104110,'Kirchberg','Switzerland','CH','Kirchberg (Switzerland)',1,1,0),(4760,0,104111,'Kitanakagusuku','Japan','JP','Kitanakagusuku (Japan)',1,1,0),(4761,0,104112,'Klabala','Indonesia','ID','Klabala (Indonesia)',1,1,0),(4762,0,104113,'Klaj','Poland','PL','Klaj (Poland)',1,1,0),(4763,0,104114,'Klasterec nad Ohri','Czech Republic','CZ','Klasterec nad Ohri (Czech Republic)',1,1,0),(4764,0,104116,'Knybawa','Poland','PL','Knybawa (Poland)',1,1,0),(4765,0,104117,'Kobbegem','Belgium','BE','Kobbegem (Belgium)',1,1,0),(4766,0,104118,'Kobylany','Poland','PL','Kobylany (Poland)',1,1,0),(4767,0,104119,'Koknese','Latvia','LV','Koknese (Latvia)',1,1,0),(4768,0,104120,'Konavle','Croatia','HR','Konavle (Croatia)',1,1,0),(4769,0,104121,'Kopaonik','Serbia','RS','Kopaonik (Serbia)',1,1,0),(4770,14386,104122,'Koreiz','Ukraine','UA','Koreiz (Ukraine)',1,1,0),(4771,0,104123,'Korolev','Russia','RU','Korolev (Russia)',1,1,0),(4772,0,104124,'Kosjeric','Serbia','RS','Kosjeric (Serbia)',1,1,0),(4773,0,104125,'Kovasna','Romania','RO','Kovasna (Romania)',1,1,0),(4774,0,104126,'Kozakli','Turkey','TR','Kozakli (Turkey)',1,1,0),(4775,0,104127,'Krassyliwka','Ukraine','UA','Krassyliwka (Ukraine)',1,1,0),(4776,0,104128,'Kruglitsa','Belarus','BY','Kruglitsa (Belarus)',1,1,0),(4777,0,104129,'Kruishoutem','Belgium','BE','Kruishoutem (Belgium)',1,1,0),(4778,0,104130,'Kuala Tahan','Malaysia','MY','Kuala Tahan (Malaysia)',1,1,0),(4779,0,104131,'Kumana National Park','Sri Lanka','LK','Kumana National Park (Sri Lanka)',1,1,0),(4780,0,104132,'Kumano (Mie)','Japan','JP','Kumano (Mie) (Japan)',1,1,0),(4781,0,104133,'Kumla','Sweden','SE','Kumla (Sweden)',1,1,0),(4782,0,104134,'Kurortnoe','Ukraine','UA','Kurortnoe (Ukraine)',1,1,0),(4783,0,104135,'La Brigue','France','FR','La Brigue (France)',1,1,0),(4784,0,104136,'La Chapelle-Aubareil','France','FR','La Chapelle-Aubareil (France)',1,1,0),(4785,0,104137,'La Chapelle-en-Vercors','France','FR','La Chapelle-en-Vercors (France)',1,1,0),(4786,0,104138,'La Costa de Buen Hombre','Dominican Republic','DO','La Costa de Buen Hombre (Dominican Republic)',1,1,0),(4787,0,104139,'Loimaa','Finland','FI','Loimaa (Finland)',1,1,0),(4788,0,104140,'Long Crendon','United Kingdom','UK','Long Crendon (United Kingdom)',1,1,0),(4789,0,104141,'Longobardi','Italy','IT','Longobardi (Italy)',1,1,0),(4790,0,104142,'Lorena','Brazil','BR','Lorena (Brazil)',1,1,0),(4791,0,104143,'Los Algodones','Mexico','MX','Los Algodones (Mexico)',1,1,0),(4792,0,104144,'Los Santos','Panama','PA','Los Santos (Panama)',1,1,0),(4793,0,104145,'Luchowizy','Russia','RU','Luchowizy (Russia)',1,1,0),(4794,0,104146,'Lyamutundwe','Uganda','UG','Lyamutundwe (Uganda)',1,1,0),(4795,0,104147,'Lyaskovo','Bulgaria','BG','Lyaskovo (Bulgaria)',1,1,0),(4796,0,104148,'Lyssons','Jamaica','JM','Lyssons (Jamaica)',1,1,0),(4797,0,104149,'Lyudinovo','Russia','RU','Lyudinovo (Russia)',1,1,0),(4798,0,104150,'Mad','Hungary','HU','Mad (Hungary)',1,1,0),(4799,0,104151,'Maker','United Kingdom','UK','Maker (United Kingdom)',1,1,0),(4800,0,104152,'Makow Podhalanski','Poland','PL','Makow Podhalanski (Poland)',1,1,0),(4801,0,104153,'Maladsetschna','Belarus','BY','Maladsetschna (Belarus)',1,1,0),(4802,0,104154,'Malogoszcz','Poland','PL','Malogoszcz (Poland)',1,1,0),(4803,0,104155,'Mambajao','Philippines','PH','Mambajao (Philippines)',1,1,0),(4804,0,104158,'Manzanera','Spain','ES','Manzanera (Spain)',1,1,0),(4805,0,104159,'Marciano della Chiana','Italy','IT','Marciano della Chiana (Italy)',1,1,0),(4806,16803,104160,'Maresias','Brazil','BR','Maresias (Brazil)',1,1,0),(4807,0,104161,'Mareson di Zoldo Alto','Italy','IT','Mareson di Zoldo Alto (Italy)',1,1,0),(4808,0,104162,'Marjanowka','Ukraine','UA','Marjanowka (Ukraine)',1,1,0),(4809,0,104163,'Marmara Ereglisi','Turkey','TR','Marmara Ereglisi (Turkey)',1,1,0),(4810,0,104164,'Masdenverge','Spain','ES','Masdenverge (Spain)',1,1,0),(4811,0,104165,'Masseube','France','FR','Masseube (France)',1,1,0),(4812,0,104166,'Matale','Sri Lanka','LK','Matale (Sri Lanka)',1,1,0),(4813,0,104167,'Matanzas','Chile','CL','Matanzas (Chile)',1,1,0),(4814,0,104168,'Matelandia','Brazil','BR','Matelandia (Brazil)',1,1,0),(4815,0,104169,'Matrafured','Hungary','HU','Matrafured (Hungary)',1,1,0),(4816,0,104170,'Maubourguet','France','FR','Maubourguet (France)',1,1,0),(4817,0,104171,'Mauerkirchen','Austria','AT','Mauerkirchen (Austria)',1,1,0),(4818,0,104172,'Maule','Chile','CL','Maule (Chile)',1,1,0),(4819,0,104173,'Maydena','Australia','AU','Maydena (Australia)',1,1,0),(4820,0,104174,'Mazayes','France','FR','Mazayes (France)',1,1,0),(4821,0,104175,'Mazeyrat-d\'Allier','France','FR','Mazeyrat-d\'Allier (France)',1,1,0),(4822,0,104176,'Medinaceli','Spain','ES','Medinaceli (Spain)',1,1,0),(4823,0,104177,'Mehuin','Chile','CL','Mehuin (Chile)',1,1,0),(4824,0,104178,'Melnitsa','Russia','RU','Melnitsa (Russia)',1,1,0),(4825,0,104179,'Mendexa','Spain','ES','Mendexa (Spain)',1,1,0),(4826,0,104180,'Mendham','United Kingdom','UK','Mendham (United Kingdom)',1,1,0),(4827,0,104181,'Menzingen ZG','Switzerland','CH','Menzingen ZG (Switzerland)',1,1,0),(4828,17497,104182,'Merlischachen','Switzerland','CH','Merlischachen (Switzerland)',1,1,0),(4829,0,104183,'Mersea Island','United Kingdom','UK','Mersea Island (United Kingdom)',1,1,0),(4830,0,104184,'Mezzano','Italy','IT','Mezzano (Italy)',1,1,0),(4831,0,104185,'Mezzolombardo','Italy','IT','Mezzolombardo (Italy)',1,1,0),(4832,0,104186,'Middle Swan','Australia','AU','Middle Swan (Australia)',1,1,0),(4833,0,104187,'Middleton','Canada','CA','Middleton (Canada)',1,1,0),(4834,0,104188,'Miles','Australia','AU','Miles (Australia)',1,1,0),(4835,0,104189,'Millstreet Town','Ireland','IE','Millstreet Town (Ireland)',1,1,0),(4836,17758,104190,'Minas','Uruguay','UY','Minas (Uruguay)',1,1,0),(4837,0,104191,'Minden Hills','Canada','CA','Minden Hills (Canada)',1,1,0),(4838,17771,104192,'Mineral del Monte','Mexico','MX','Mineral del Monte (Mexico)',1,1,0),(4839,0,104193,'Mingguang','China','CN','Mingguang (China)',1,1,0),(4840,0,104194,'Minija','Lithuania','LT','Minija (Lithuania)',1,1,0),(4841,0,104195,'Misano di Gera d\'Adda','Italy','IT','Misano di Gera d\'Adda (Italy)',1,1,0),(4842,0,104196,'Mitterbach am Erlaufsee','Austria','AT','Mitterbach am Erlaufsee (Austria)',1,1,0),(4843,0,104197,'Miyako','Japan','JP','Miyako (Japan)',1,1,0),(4844,0,104198,'Paksane district','LAOS','LA','Paksane district (LAOS)',1,1,0),(4845,0,104199,'Paksong','LAOS','LA','Paksong (LAOS)',1,1,0),(4846,0,104200,'Palaikastron','Greece','GR','Palaikastron (Greece)',1,1,0),(4847,0,104201,'PalaionTsiflikion','Greece','GR','PalaionTsiflikion (Greece)',1,1,0),(4848,0,104202,'Palmwood','Australia','AU','Palmwood (Australia)',1,1,0),(4849,0,104203,'Palo Alto',NULL,NULL,'Palo Alto ()',1,1,0),(4850,0,104204,'Palouet','Spain','ES','Palouet (Spain)',1,1,0),(4851,0,104205,'Panayia','Cyprus','CY','Panayia (Cyprus)',1,1,0),(4852,0,104206,'Papakura','New Zealand','NZ','Papakura (New Zealand)',1,1,0),(4853,0,104207,'Paralia Panteleimonos','Greece','GR','Paralia Panteleimonos (Greece)',1,1,0),(4854,0,104208,'Paramo','Spain','ES','Paramo (Spain)',1,1,0),(4855,20793,104209,'Parap','Australia','AU','Parap (Australia)',1,1,0),(4856,0,104210,'Paterno','Italy','IT','Paterno (Italy)',1,1,0),(4857,20912,104211,'Pathumthani','Thailand','TH','Pathumthani (Thailand)',1,1,0),(4858,0,104212,'Patrica','Italy','IT','Patrica (Italy)',1,1,0),(4859,0,104213,'Paulestii Noi','Romania','RO','Paulestii Noi (Romania)',1,1,0),(4860,0,104214,'Peasenhall','United Kingdom','UK','Peasenhall (United Kingdom)',1,1,0),(4861,0,104215,'Pedra Dourada','Brazil','BR','Pedra Dourada (Brazil)',1,1,0),(4862,0,104216,'Penaguila','Spain','ES','Penaguila (Spain)',1,1,0),(4863,0,104217,'Phaistos','Greece','GR','Phaistos (Greece)',1,1,0),(4864,0,104218,'Philippine','Netherlands','NL','Philippine (Netherlands)',1,1,0),(4865,0,104219,'Pierre-Perthuis','France','FR','Pierre-Perthuis (France)',1,1,0),(4866,21388,104220,'Pietrelcina','Italy','IT','Pietrelcina (Italy)',1,1,0),(4867,0,104221,'Pievebovigliana','Italy','IT','Pievebovigliana (Italy)',1,1,0),(4868,0,104222,'Pirabeiraba','Brazil','BR','Pirabeiraba (Brazil)',1,1,0),(4869,0,104223,'Playa de Punta Arena','Colombia','CO','Playa de Punta Arena (Colombia)',1,1,0),(4870,0,104224,'Playa Manzanillo de Cobano','Costa Rica','CR','Playa Manzanillo de Cobano (Costa Rica)',1,1,0),(4871,0,104225,'Playas','Ecuador','EC','Playas (Ecuador)',1,1,0),(4872,21590,104226,'Plessisville','Canada','CA','Plessisville (Canada)',1,1,0),(4873,0,104227,'Pobiedziska','Poland','PL','Pobiedziska (Poland)',1,1,0),(4874,0,104228,'Mieussy','France','FR','Mieussy (France)',1,1,0),(4875,0,104229,'Milaidhoo','Maldives','MV','Milaidhoo (Maldives)',1,1,0),(4876,0,104230,'Mingachevir','Azerbaijan','AZ','Mingachevir (Azerbaijan)',1,1,0),(4877,0,104231,'Minneriya','Sri Lanka','LK','Minneriya (Sri Lanka)',1,1,0),(4878,0,104232,'Mires','Greece','GR','Mires (Greece)',1,1,0),(4879,0,104233,'Misterton','United Kingdom','UK','Misterton (United Kingdom)',1,1,0),(4880,0,104234,'Mitchelton','Australia','AU','Mitchelton (Australia)',1,1,0),(4881,0,104235,'Miyota','Japan','JP','Miyota (Japan)',1,1,0),(4882,0,104236,'Mlazovice','Czech Republic','CZ','Mlazovice (Czech Republic)',1,1,0),(4883,0,104237,'Moimenta da Beira','Portugal','PT','Moimenta da Beira (Portugal)',1,1,0),(4884,0,104238,'Moissac-Vallee-Francaise','France','FR','Moissac-Vallee-Francaise (France)',1,1,0),(4885,17980,104239,'Molinella','Italy','IT','Molinella (Italy)',1,1,0),(4886,0,104240,'Montaigut sur Save','France','FR','Montaigut sur Save (France)',1,1,0),(4887,0,104241,'Montalbano di Fasano','Italy','IT','Montalbano di Fasano (Italy)',1,1,0),(4888,0,104242,'Mont-Dol','France','FR','Mont-Dol (France)',1,1,0),(4889,0,104243,'Monthureux-sur-Saone','France','FR','Monthureux-sur-Saone (France)',1,1,0),(4890,0,104244,'Mont-ral','Spain','ES','Mont-ral (Spain)',1,1,0),(4891,0,104245,'Monzon de Campos','Spain','ES','Monzon de Campos (Spain)',1,1,0),(4892,0,104246,'Morcone','Italy','IT','Morcone (Italy)',1,1,0),(4893,0,104247,'Moreni','Romania','RO','Moreni (Romania)',1,1,0),(4894,18452,104248,'Morpeth','Australia','AU','Morpeth (Australia)',1,1,0),(4895,0,104249,'Morrinsville','New Zealand','NZ','Morrinsville (New Zealand)',1,1,0),(4896,0,104250,'Mowbray','Australia','AU','Mowbray (Australia)',1,1,0),(4897,0,104251,'Moy','United Kingdom','UK','Moy (United Kingdom)',1,1,0),(4898,0,104252,'Moycullen','Ireland','IE','Moycullen (Ireland)',1,1,0),(4899,18592,104253,'Mrauk U','Myanmar','MM','Mrauk U (Myanmar)',1,1,0),(4900,0,104254,'Muchedent','France','FR','Muchedent (France)',1,1,0),(4901,0,104255,'Muli','Maldives','MV','Muli (Maldives)',1,1,0),(4902,0,104256,'Mulmur','Canada','CA','Mulmur (Canada)',1,1,0),(4903,0,104257,'Munkebo','Denmark','DK','Munkebo (Denmark)',1,1,0),(4904,0,104258,'Murphys Creek','Australia','AU','Murphys Creek (Australia)',1,1,0),(4905,0,104259,'Nagara','Japan','JP','Nagara (Japan)',1,1,0),(4906,0,104261,'Nagornoye','Russia','RU','Nagornoye (Russia)',1,1,0),(4907,0,104262,'Nagyatad','Hungary','HU','Nagyatad (Hungary)',1,1,0),(4908,0,104263,'Nahariyah','Israel','IL','Nahariyah (Israel)',1,1,0),(4909,0,104264,'Nai Mueang','Thailand','TH','Nai Mueang (Thailand)',1,1,0),(4910,0,104265,'Nakhon Phanom','Thailand','TH','Nakhon Phanom (Thailand)',1,1,0),(4911,0,104266,'Naranjito de Aguirre','Costa Rica','CR','Naranjito de Aguirre (Costa Rica)',1,1,0),(4912,0,104267,'Natachtari','Georgia','GE','Natachtari (Georgia)',1,1,0),(4913,0,104268,'Nationalpark Portobelo','Panama','PA','Nationalpark Portobelo (Panama)',1,1,0),(4914,0,104269,'Nea Erythrea','Greece','GR','Nea Erythrea (Greece)',1,1,0),(4915,0,104270,'Neapolis Voion','Greece','GR','Neapolis Voion (Greece)',1,1,0),(4916,0,104271,'Nemchinovka','Russia','RU','Nemchinovka (Russia)',1,1,0),(4917,0,104272,'Nerl','Russia','RU','Nerl (Russia)',1,1,0),(4918,0,104273,'Nestelbach bei Graz','Austria','AT','Nestelbach bei Graz (Austria)',1,1,0),(4919,0,104274,'Nether Stowey','United Kingdom','UK','Nether Stowey (United Kingdom)',1,1,0),(4920,0,104275,'Netretic','Croatia','HR','Netretic (Croatia)',1,1,0),(4921,0,104276,'Newcastleton','United Kingdom','UK','Newcastleton (United Kingdom)',1,1,0),(4922,0,104277,'Nishitsugaru District','Japan','JP','Nishitsugaru District (Japan)',1,1,0),(4923,0,104278,'Nondorf','Austria','AT','Nondorf (Austria)',1,1,0),(4924,0,104279,'Noordgouwe','Netherlands','NL','Noordgouwe (Netherlands)',1,1,0),(4925,0,104280,'Norfolk','United Kingdom','UK','Norfolk (United Kingdom)',1,1,0),(4926,0,104281,'North Haven','Australia','AU','North Haven (Australia)',1,1,0),(4927,0,104282,'Notre-Dame-du-Mont-Carmel','Canada','CA','Notre-Dame-du-Mont-Carmel (Canada)',1,1,0),(4928,0,104283,'Nova Alianca','Brazil','BR','Nova Alianca (Brazil)',1,1,0),(4929,0,104284,'Nova Serrana','Brazil','BR','Nova Serrana (Brazil)',1,1,0),(4930,0,104285,'Novinki','Russia','RU','Novinki (Russia)',1,1,0),(4931,0,104286,'Nowokuibyschewsk','Russia','RU','Nowokuibyschewsk (Russia)',1,1,0),(4932,0,104287,'Nucleo Bandeirante','Belgium','BE','Nucleo Bandeirante (Belgium)',1,1,0),(4933,0,104288,'Numansdorp','Netherlands','NL','Numansdorp (Netherlands)',1,1,0),(4934,0,104289,'Numurkah','Australia','AU','Numurkah (Australia)',1,1,0),(4935,0,104290,'Nysted','Denmark','DK','Nysted (Denmark)',1,1,0),(4936,0,104291,'O Barco De Valdeorras','Spain','ES','O Barco De Valdeorras (Spain)',1,1,0),(4937,0,104292,'Ockelbo','Sweden','SE','Ockelbo (Sweden)',1,1,0),(4938,0,104293,'Ockfen','Germany','DE','Ockfen (Germany)',1,1,0),(4939,0,104294,'Ocotal','Nicaragua','NI','Ocotal (Nicaragua)',1,1,0),(4940,0,104295,'Oeffelt','Netherlands','NL','Oeffelt (Netherlands)',1,1,0),(4941,0,104296,'Olmedilla de Alarcon','Spain','ES','Olmedilla de Alarcon (Spain)',1,1,0),(4942,0,104297,'Omalos','Greece','GR','Omalos (Greece)',1,1,0),(4943,0,104298,'Omonville-la-Petite','France','FR','Omonville-la-Petite (France)',1,1,0),(4944,32361,104299,'One Mile','Australia','AU','One Mile (Australia)',1,1,0),(4945,0,104300,'Oostvleteren','Belgium','BE','Oostvleteren (Belgium)',1,1,0),(4946,0,104301,'Oppido Mamertina','Italy','IT','Oppido Mamertina (Italy)',1,1,0),(4947,0,104302,'Opunake','New Zealand','NZ','Opunake (New Zealand)',1,1,0),(4948,0,104303,'Oronsko','Poland','PL','Oronsko (Poland)',1,1,0),(4949,0,104304,'Orschweiler','France','FR','Orschweiler (France)',1,1,0),(4950,0,104305,'Osch','Kyrgyzstan','KG','Osch (Kyrgyzstan)',1,1,0),(4951,0,104306,'Osoppo','Italy','IT','Osoppo (Italy)',1,1,0),(4952,0,104307,'Lundsbrunn','Sweden','SE','Lundsbrunn (Sweden)',1,1,0),(4953,0,104308,'Lurisia','Italy','IT','Lurisia (Italy)',1,1,0),(4954,0,104309,'Lussan','France','FR','Lussan (France)',1,1,0),(4955,0,104310,'Lutowiska','Poland','PL','Lutowiska (Poland)',1,1,0),(4956,0,104311,'Lutsheni','South Africa','ZA','Lutsheni (South Africa)',1,1,0),(4957,0,104312,'Lydgate','United Kingdom','UK','Lydgate (United Kingdom)',1,1,0),(4958,0,104314,'Madinat al-Aschir min Ramadan','Egypt','EG','Madinat al-Aschir min Ramadan (Egypt)',1,1,0),(4959,0,104315,'Mae Pim','Thailand','TH','Mae Pim (Thailand)',1,1,0),(4960,0,104317,'Maiera','Italy','IT','Maiera (Italy)',1,1,0),(4961,0,104319,'Mako','Hungary','HU','Mako (Hungary)',1,1,0),(4962,0,104320,'Malagon','Spain','ES','Malagon (Spain)',1,1,0),(4963,0,104321,'Malinalco','Mexico','MX','Malinalco (Mexico)',1,1,0),(4964,0,104322,'Mancor de la Vall','Spain','ES','Mancor de la Vall (Spain)',1,1,0),(4965,0,104324,'Marapanim','Brazil','BR','Marapanim (Brazil)',1,1,0),(4966,16762,104325,'Marau','Brazil','BR','Marau (Brazil)',1,1,0),(4967,0,104326,'Margaree Harbour','Canada','CA','Margaree Harbour (Canada)',1,1,0),(4968,0,104327,'Margarida (Planes)','Spain','ES','Margarida (Planes) (Spain)',1,1,0),(4969,0,104328,'Marigny-Saint-Marcel','France','FR','Marigny-Saint-Marcel (France)',1,1,0),(4970,0,104329,'Mariquita','Colombia','CO','Mariquita (Colombia)',1,1,0),(4971,0,104330,'Marjamaa','Estonia','EE','Marjamaa (Estonia)',1,1,0),(4972,0,104331,'Market Rasen','United Kingdom','UK','Market Rasen (United Kingdom)',1,1,0),(4973,0,104332,'Marnand','France','FR','Marnand (France)',1,1,0),(4974,0,104333,'Martletwy','United Kingdom','UK','Martletwy (United Kingdom)',1,1,0),(4975,0,104334,'Marville','France','FR','Marville (France)',1,1,0),(4976,0,104335,'Massa Fiscaglia','Italy','IT','Massa Fiscaglia (Italy)',1,1,0),(4977,0,104336,'Massa Lombarda','Italy','IT','Massa Lombarda (Italy)',1,1,0),(4978,0,104337,'Massow','Poland','PL','Massow (Poland)',1,1,0),(4979,0,104338,'Mauleon-Licharre','France','FR','Mauleon-Licharre (France)',1,1,0),(4980,0,104339,'Mayskiy','Russia','RU','Mayskiy (Russia)',1,1,0),(4981,0,104340,'Meerlo','Netherlands','NL','Meerlo (Netherlands)',1,1,0),(4982,0,104341,'Meeuwen-Gruitrode','Belgium','BE','Meeuwen-Gruitrode (Belgium)',1,1,0),(4983,0,104342,'Melandsjoen','Norway','NO','Melandsjoen (Norway)',1,1,0),(4984,0,104343,'Melturi','Latvia','LV','Melturi (Latvia)',1,1,0),(4985,0,104344,'Menaka','Spain','ES','Menaka (Spain)',1,1,0),(4986,0,104346,'Merin','Czech Republic','CZ','Merin (Czech Republic)',1,1,0),(4987,0,104347,'Meshcherino','Russia','RU','Meshcherino (Russia)',1,1,0),(4988,0,104348,'Milheeze','Netherlands','NL','Milheeze (Netherlands)',1,1,0),(4989,0,104349,'Milicz','Poland','PL','Milicz (Poland)',1,1,0),(4990,0,104350,'Militello Rosmarino','Italy','IT','Militello Rosmarino (Italy)',1,1,0),(4991,0,104351,'Milotice (Milotitz)','Czech Republic','CZ','Milotice (Milotitz) (Czech Republic)',1,1,0),(4992,0,104352,'Minami Alps','Japan','JP','Minami Alps (Japan)',1,1,0),(4993,0,104353,'Mindo','Ecuador','EC','Mindo (Ecuador)',1,1,0),(4994,0,104354,'Mirabella Imbaccari','Italy','IT','Mirabella Imbaccari (Italy)',1,1,0),(4995,0,104355,'Mittelbergheim','France','FR','Mittelbergheim (France)',1,1,0),(4996,17880,104356,'Mitzpe Ramon','Israel','IL','Mitzpe Ramon (Israel)',1,1,0),(4997,0,104357,'Miyakojima','Japan','JP','Miyakojima (Japan)',1,1,0),(4998,0,104358,'Miyoshi','Japan','JP','Miyoshi (Japan)',1,1,0),(4999,0,104359,'Mizhvodne','Ukraine','UA','Mizhvodne (Ukraine)',1,1,0),(5000,0,104360,'Miziara','Lebanon','LB','Miziara (Lebanon)',1,1,0),(5001,0,104361,'Modritz','Czech Republic','CZ','Modritz (Czech Republic)',1,1,0),(5002,0,104362,'Mogoditshane','Botswana','BW','Mogoditshane (Botswana)',1,1,0),(5003,0,104363,'Moira','United Kingdom','UK','Moira (United Kingdom)',1,1,0),(5004,18009,104364,'Mompiche','Ecuador','EC','Mompiche (Ecuador)',1,1,0),(5005,18048,104365,'Mondonedo','Spain','ES','Mondonedo (Spain)',1,1,0),(5006,0,104366,'Monrupino','Italy','IT','Monrupino (Italy)',1,1,0),(5007,0,104367,'Monsuaba','Brazil','BR','Monsuaba (Brazil)',1,1,0),(5008,0,104368,'Nefza','Tunisia','TN','Nefza (Tunisia)',1,1,0),(5009,0,104369,'Nei Poroi','Greece','GR','Nei Poroi (Greece)',1,1,0),(5010,19153,104370,'Neila','Spain','ES','Neila (Spain)',1,1,0),(5011,0,104371,'Neos Pyrgos','Greece','GR','Neos Pyrgos (Greece)',1,1,0),(5012,0,104372,'Neustadt in Oberschlesien','Poland','PL','Neustadt in Oberschlesien (Poland)',1,1,0),(5013,0,104373,'Neuvy-sur-Barangeon','France','FR','Neuvy-sur-Barangeon (France)',1,1,0),(5014,0,104374,'New Taipei City','Taiwan','TW','New Taipei City (Taiwan)',1,1,0),(5015,0,104375,'Newbiggin-on-Lune','United Kingdom','UK','Newbiggin-on-Lune (United Kingdom)',1,1,0),(5016,0,104376,'Ngong Hills','Kenya','KE','Ngong Hills (Kenya)',1,1,0),(5017,0,104377,'Nilandhoo','Maldives','MV','Nilandhoo (Maldives)',1,1,0),(5018,19470,104378,'Nilopolis','Brazil','BR','Nilopolis (Brazil)',1,1,0),(5019,0,104379,'Nirasaki','Japan','JP','Nirasaki (Japan)',1,1,0),(5020,0,104380,'Nismes','Belgium','BE','Nismes (Belgium)',1,1,0),(5021,19494,104381,'Nisyros','Greece','GR','Nisyros (Greece)',1,1,0),(5022,0,104382,'Noblejas','Spain','ES','Noblejas (Spain)',1,1,0),(5023,0,104383,'Noojee','Australia','AU','Noojee (Australia)',1,1,0),(5024,0,104384,'Noorden','Netherlands','NL','Noorden (Netherlands)',1,1,0),(5025,0,104385,'Nova Trento','Brazil','BR','Nova Trento (Brazil)',1,1,0),(5026,0,104386,'Nova Varos','Serbia','RS','Nova Varos (Serbia)',1,1,0),(5027,0,104387,'Novelda','Spain','ES','Novelda (Spain)',1,1,0),(5028,0,104388,'Noviy Svet','Ukraine','UA','Noviy Svet (Ukraine)',1,1,0),(5029,0,104389,'Novoivanovskoye','Russia','RU','Novoivanovskoye (Russia)',1,1,0),(5030,0,104390,'Obermuhlendorf','Romania','RO','Obermuhlendorf (Romania)',1,1,0),(5031,0,104391,'Objat','France','FR','Objat (France)',1,1,0),(5032,0,104392,'Obrochishte','Bulgaria','BG','Obrochishte (Bulgaria)',1,1,0),(5033,0,104393,'Obroshino','Ukraine','UA','Obroshino (Ukraine)',1,1,0),(5034,0,104394,'Ocean City','Barbados','BB','Ocean City (Barbados)',1,1,0),(5035,0,104395,'Ochagavia','Spain','ES','Ochagavia (Spain)',1,1,0),(5036,0,104396,'Oka','Canada','CA','Oka (Canada)',1,1,0),(5037,0,104397,'Olbramovice','Czech Republic','CZ','Olbramovice (Czech Republic)',1,1,0),(5038,0,104398,'Olevano sul Tusciano','Italy','IT','Olevano sul Tusciano (Italy)',1,1,0),(5039,0,104399,'Olfen','Germany','DE','Olfen (Germany)',1,1,0),(5040,0,104400,'Olmue','Chile','CL','Olmue (Chile)',1,1,0),(5041,0,104401,'Olynthos','Greece','GR','Olynthos (Greece)',1,1,0),(5042,0,104402,'Omili','Papua New Guinea','PG','Omili (Papua New Guinea)',1,1,0),(5043,0,104403,'Orgosolo','Italy','IT','Orgosolo (Italy)',1,1,0),(5044,0,104404,'Orlova','Czech Republic','CZ','Orlova (Czech Republic)',1,1,0),(5045,0,104405,'Ornavasso','Italy','IT','Ornavasso (Italy)',1,1,0),(5046,0,104406,'Orroli','Italy','IT','Orroli (Italy)',1,1,0),(5047,0,104407,'Ortignano Raggiolo','Italy','IT','Ortignano Raggiolo (Italy)',1,1,0),(5048,20316,104408,'Oslob','Philippines','PH','Oslob (Philippines)',1,1,0),(5049,0,104409,'Ostana','Italy','IT','Ostana (Italy)',1,1,0),(5050,0,104410,'Ostende','Argentina','AR','Ostende (Argentina)',1,1,0),(5051,0,104411,'Ostrow','Russia','RU','Ostrow (Russia)',1,1,0),(5052,20378,104412,'Otari','Japan','JP','Otari (Japan)',1,1,0),(5053,0,104413,'Otradnoje','Russia','RU','Otradnoje (Russia)',1,1,0),(5054,0,104414,'Otterup','Denmark','DK','Otterup (Denmark)',1,1,0),(5055,0,104415,'Over Haddon','United Kingdom','UK','Over Haddon (United Kingdom)',1,1,0),(5056,0,104416,'Oxkutzcab','Mexico','MX','Oxkutzcab (Mexico)',1,1,0),(5057,0,104417,'Paine','Chile','CL','Paine (Chile)',1,1,0),(5058,0,104418,'Osrblie','Slovakia','SK','Osrblie (Slovakia)',1,1,0),(5059,0,104419,'Ostruzna','Czech Republic','CZ','Ostruzna (Czech Republic)',1,1,0),(5060,0,104420,'Ottana','Italy','IT','Ottana (Italy)',1,1,0),(5061,0,104421,'Ouaouizeght','Morocco','MA','Ouaouizeght (Morocco)',1,1,0),(5062,0,104422,'Ourique','Portugal','PT','Ourique (Portugal)',1,1,0),(5063,0,104423,'Overveen','Netherlands','NL','Overveen (Netherlands)',1,1,0),(5064,0,104424,'Oxapampa','Peru','PE','Oxapampa (Peru)',1,1,0),(5065,0,104425,'La Dore','Canada','CA','La Dore (Canada)',1,1,0),(5066,0,104426,'La Guerche-de-Bretagne','France','FR','La Guerche-de-Bretagne (France)',1,1,0),(5067,0,104427,'La Lantejuela','Spain','ES','La Lantejuela (Spain)',1,1,0),(5068,31385,104428,'La Manzanilla','Mexico','MX','La Manzanilla (Mexico)',1,1,0),(5069,0,104429,'La Puebla','Spain','ES','La Puebla (Spain)',1,1,0),(5070,31439,104430,'La Puebla de Alfinden','Spain','ES','La Puebla de Alfinden (Spain)',1,1,0),(5071,0,104431,'Lacrouzette','France','FR','Lacrouzette (France)',1,1,0),(5072,0,104432,'Lagoa da Prata','Brazil','BR','Lagoa da Prata (Brazil)',1,1,0),(5073,0,104433,'Lagonegro','Italy','IT','Lagonegro (Italy)',1,1,0),(5074,0,104434,'Laguna de Fuquene','Colombia','CO','Laguna de Fuquene (Colombia)',1,1,0),(5075,0,104435,'Laitila','Finland','FI','Laitila (Finland)',1,1,0),(5076,0,104436,'Lajeado','Brazil','BR','Lajeado (Brazil)',1,1,0),(5077,14821,104437,'Lakefield','Canada','CA','Lakefield (Canada)',1,1,0),(5078,0,104438,'Lakhdenpokhya','Russia','RU','Lakhdenpokhya (Russia)',1,1,0),(5079,0,104439,'Lalin','Spain','ES','Lalin (Spain)',1,1,0),(5080,0,104440,'Landrecies','France','FR','Landrecies (France)',1,1,0),(5081,0,104441,'Langenbruck','Switzerland','CH','Langenbruck (Switzerland)',1,1,0),(5082,0,104442,'Lanteira','Spain','ES','Lanteira (Spain)',1,1,0),(5083,0,104443,'Lapoinya','Australia','AU','Lapoinya (Australia)',1,1,0),(5084,0,104444,'Laranjal Paulista','Brazil','BR','Laranjal Paulista (Brazil)',1,1,0),(5085,0,104445,'Larkollen','Norway','NO','Larkollen (Norway)',1,1,0),(5086,0,104446,'Las Heras',NULL,NULL,'Las Heras ()',1,1,0),(5087,0,104447,'Laureana Cilento','Italy','IT','Laureana Cilento (Italy)',1,1,0),(5088,0,104448,'Lazne Kynzvart','Czech Republic','CZ','Lazne Kynzvart (Czech Republic)',1,1,0),(5089,0,104449,'Lazy pod Makytou','Slovakia','SK','Lazy pod Makytou (Slovakia)',1,1,0),(5090,0,104450,'Le Salse','Italy','IT','Le Salse (Italy)',1,1,0),(5091,0,104451,'Leznica Wielka','Poland','PL','Leznica Wielka (Poland)',1,1,0),(5092,0,104452,'Liesek','Slovakia','SK','Liesek (Slovakia)',1,1,0),(5093,0,104453,'Lipki','Russia','RU','Lipki (Russia)',1,1,0),(5094,0,104454,'Littlebury','United Kingdom','UK','Littlebury (United Kingdom)',1,1,0),(5095,0,104455,'Liversedge','United Kingdom','UK','Liversedge (United Kingdom)',1,1,0),(5096,0,104456,'Liyanagemulla','Sri Lanka','LK','Liyanagemulla (Sri Lanka)',1,1,0),(5097,15687,104457,'Ljutomer','Slovenia','SI','Ljutomer (Slovenia)',1,1,0),(5098,0,104458,'Loix','France','FR','Loix (France)',1,1,0),(5099,0,104459,'Longarone','Italy','IT','Longarone (Italy)',1,1,0),(5100,0,104460,'Lopej','Slovakia','SK','Lopej (Slovakia)',1,1,0),(5101,0,104461,'Lopotovo','Russia','RU','Lopotovo (Russia)',1,1,0),(5102,0,104462,'Lo-Reninge','Belgium','BE','Lo-Reninge (Belgium)',1,1,0),(5103,0,104463,'Los Amates (Izabal)','Guatemala','GT','Los Amates (Izabal) (Guatemala)',1,1,0),(5104,0,104464,'Los Molinos','Spain','ES','Los Molinos (Spain)',1,1,0),(5105,0,104465,'Lough Gowna','United Kingdom','UK','Lough Gowna (United Kingdom)',1,1,0),(5106,0,104466,'Lovington','United Kingdom','UK','Lovington (United Kingdom)',1,1,0),(5107,0,104467,'Lower Withington','United Kingdom','UK','Lower Withington (United Kingdom)',1,1,0),(5108,0,104468,'Loyettes','France','FR','Loyettes (France)',1,1,0),(5109,15999,104469,'Luban','Poland','PL','Luban (Poland)',1,1,0),(5110,0,104470,'Lucinges','France','FR','Lucinges (France)',1,1,0),(5111,0,104471,'Lyswa','Russia','RU','Lyswa (Russia)',1,1,0),(5112,0,104472,'Maadhoo','Maldives','MV','Maadhoo (Maldives)',1,1,0),(5113,0,104473,'Madeleine-Centre','Canada','CA','Madeleine-Centre (Canada)',1,1,0),(5114,0,104474,'Magland','France','FR','Magland (France)',1,1,0),(5115,0,104475,'Mahogany Creek','Australia','AU','Mahogany Creek (Australia)',1,1,0),(5116,0,104476,'Makijiwka','Ukraine','UA','Makijiwka (Ukraine)',1,1,0),(5117,0,104477,'Makov','Slovakia','SK','Makov (Slovakia)',1,1,0),(5118,0,104478,'Malpartida de Caceres','Spain','ES','Malpartida de Caceres (Spain)',1,1,0),(5119,0,104479,'Malvern','United Kingdom','UK','Malvern (United Kingdom)',1,1,0),(5120,0,104480,'Malyi Mayak','Ukraine','UA','Malyi Mayak (Ukraine)',1,1,0),(5121,0,104481,'Manantiales','Uruguay','UY','Manantiales (Uruguay)',1,1,0),(5122,0,104483,'Mandurama','Australia','AU','Mandurama (Australia)',1,1,0),(5123,0,104484,'Maracanau','Brazil','BR','Maracanau (Brazil)',1,1,0),(5124,0,104485,'Marges','France','FR','Marges (France)',1,1,0),(5125,0,104486,'Mariano Comense','Italy','IT','Mariano Comense (Italy)',1,1,0),(5126,0,104487,'Marouba','Australia','AU','Marouba (Australia)',1,1,0),(5127,0,104488,'Marzio','Italy','IT','Marzio (Italy)',1,1,0),(5128,0,104489,'Masbate City','Philippines','PH','Masbate City (Philippines)',1,1,0),(5129,0,104490,'Medven','Bulgaria','BG','Medven (Bulgaria)',1,1,0),(5130,0,104491,'Meise','Belgium','BE','Meise (Belgium)',1,1,0),(5131,0,104492,'Melle','Belgium','BE','Melle (Belgium)',1,1,0),(5132,0,104493,'Mello','Italy','IT','Mello (Italy)',1,1,0),(5133,0,104494,'Menilles','France','FR','Menilles (France)',1,1,0),(5134,0,104495,'Mens','France','FR','Mens (France)',1,1,0),(5135,0,104496,'Menzberg','Switzerland','CH','Menzberg (Switzerland)',1,1,0),(5136,0,104497,'Mesnil-Val','France','FR','Mesnil-Val (France)',1,1,0),(5137,0,104498,'Metzerlen-Mariastein','Switzerland','CH','Metzerlen-Mariastein (Switzerland)',1,1,0),(5138,0,104499,'Meximieux','France','FR','Meximieux (France)',1,1,0),(5139,0,104500,'Miedziana Gora','Poland','PL','Miedziana Gora (Poland)',1,1,0),(5140,0,104501,'Milzkalne','Latvia','LV','Milzkalne (Latvia)',1,1,0),(5141,17810,104502,'Miraflores','Peru','PE','Miraflores (Peru)',1,1,0),(5142,0,104503,'Mirfield','United Kingdom','UK','Mirfield (United Kingdom)',1,1,0),(5143,0,104504,'Misantla','Mexico','MX','Misantla (Mexico)',1,1,0),(5144,0,104505,'Na Kluea','Thailand','TH','Na Kluea (Thailand)',1,1,0),(5145,0,104507,'Nakasatsunai','Japan','JP','Nakasatsunai (Japan)',1,1,0),(5146,0,104508,'Nallathanniya','Sri Lanka','LK','Nallathanniya (Sri Lanka)',1,1,0),(5147,0,104510,'Nasielsk','Poland','PL','Nasielsk (Poland)',1,1,0),(5148,19045,104511,'Nasushiobara','Japan','JP','Nasushiobara (Japan)',1,1,0),(5149,0,104512,'Natori','Japan','JP','Natori (Japan)',1,1,0),(5150,0,104513,'Navodari','Romania','RO','Navodari (Romania)',1,1,0),(5151,0,104514,'Nazare Paulista','Brazil','BR','Nazare Paulista (Brazil)',1,1,0),(5152,0,104515,'Nazareth','Belgium','BE','Nazareth (Belgium)',1,1,0),(5153,0,104516,'Nea Karvali','Greece','GR','Nea Karvali (Greece)',1,1,0),(5154,0,104517,'Nea Mesagkala','Greece','GR','Nea Mesagkala (Greece)',1,1,0),(5155,0,104518,'Nedlands','Australia','AU','Nedlands (Australia)',1,1,0),(5156,0,104519,'Neenton','United Kingdom','UK','Neenton (United Kingdom)',1,1,0),(5157,0,104520,'Negrondes','France','FR','Negrondes (France)',1,1,0),(5158,0,104521,'Nekrasovskoye','Russia','RU','Nekrasovskoye (Russia)',1,1,0),(5159,0,104522,'Nepalgunj','Nepal','NP','Nepalgunj (Nepal)',1,1,0),(5160,0,104523,'Nestorio','Greece','GR','Nestorio (Greece)',1,1,0),(5161,0,104524,'Neudrossenfeld','Germany','DE','Neudrossenfeld (Germany)',1,1,0),(5162,0,104525,'Neufeld an der Leitha','Austria','AT','Neufeld an der Leitha (Austria)',1,1,0),(5163,0,104526,'Neukirchen am Walde','Austria','AT','Neukirchen am Walde (Austria)',1,1,0),(5164,0,104527,'Neussargues-Moissac','France','FR','Neussargues-Moissac (France)',1,1,0),(5165,0,104528,'New bagan','Myanmar','MM','New bagan (Myanmar)',1,1,0),(5166,0,104529,'Newtown','United Kingdom','UK','Newtown (United Kingdom)',1,1,0),(5167,0,104530,'Nidrum','Belgium','BE','Nidrum (Belgium)',1,1,0),(5168,0,104532,'Nimptsch','Poland','PL','Nimptsch (Poland)',1,1,0),(5169,0,104533,'Njagan','Russia','RU','Njagan (Russia)',1,1,0),(5170,0,104534,'Nobsa','Colombia','CO','Nobsa (Colombia)',1,1,0),(5171,0,104535,'Noosa Heads','Australia','AU','Noosa Heads (Australia)',1,1,0),(5172,0,104536,'Norddal','Norway','NO','Norddal (Norway)',1,1,0),(5173,0,104538,'North Weald','United Kingdom','UK','North Weald (United Kingdom)',1,1,0),(5174,0,104539,'North Yunderup','Australia','AU','North Yunderup (Australia)',1,1,0),(5175,19636,104540,'Northam','Australia','AU','Northam (Australia)',1,1,0),(5176,0,104541,'Notre-Dame-de-la-Salette','Canada','CA','Notre-Dame-de-la-Salette (Canada)',1,1,0),(5177,0,104542,'Nova Odessa','Brazil','BR','Nova Odessa (Brazil)',1,1,0),(5178,0,104543,'Novoabzakovo','Russia','RU','Novoabzakovo (Russia)',1,1,0),(5179,0,104544,'Novxani','Azerbaijan','AZ','Novxani (Azerbaijan)',1,1,0),(5180,0,104545,'Novy Hrozenkov','Czech Republic','CZ','Novy Hrozenkov (Czech Republic)',1,1,0),(5181,0,104546,'Novye Eltsy','Russia','RU','Novye Eltsy (Russia)',1,1,0),(5182,0,104547,'Nowomichailowski','Russia','RU','Nowomichailowski (Russia)',1,1,0),(5183,0,104548,'Nowowolynsk','Ukraine','UA','Nowowolynsk (Ukraine)',1,1,0),(5184,0,104549,'Nowy Afon','Georgia','GE','Nowy Afon (Georgia)',1,1,0),(5185,0,104550,'Nozeroy','France','FR','Nozeroy (France)',1,1,0),(5186,0,104551,'Nucleo Bandeirante','Brazil','BR','Nucleo Bandeirante (Brazil)',1,1,0),(5187,0,104552,'Nykvarn','Sweden','SE','Nykvarn (Sweden)',1,1,0),(5188,0,104553,'Oattara Thiri','Myanmar','MM','Oattara Thiri (Myanmar)',1,1,0),(5189,0,104554,'Oberried-Ebligen','Switzerland','CH','Oberried-Ebligen (Switzerland)',1,1,0),(5190,0,104555,'Ocean Shores','Australia','AU','Ocean Shores (Australia)',1,1,0),(5191,0,104556,'Octon','France','FR','Octon (France)',1,1,0),(5192,0,104557,'Ohope Beach','New Zealand','NZ','Ohope Beach (New Zealand)',1,1,0),(5193,0,104558,'Okuninka','Poland','PL','Okuninka (Poland)',1,1,0),(5194,0,104559,'Old Gore','United Kingdom','UK','Old Gore (United Kingdom)',1,1,0),(5195,0,104560,'Olney','United Kingdom','UK','Olney (United Kingdom)',1,1,0),(5196,0,104561,'Olon','Ecuador','EC','Olon (Ecuador)',1,1,0),(5197,0,104562,'Olost','Spain','ES','Olost (Spain)',1,1,0),(5198,0,104563,'Omiecourt','France','FR','Omiecourt (France)',1,1,0),(5199,0,104564,'Oncativo','Argentina','AR','Oncativo (Argentina)',1,1,0),(5200,0,104565,'Opotiki','New Zealand','NZ','Opotiki (New Zealand)',1,1,0),(5201,0,104566,'Oravita','Romania','RO','Oravita (Romania)',1,1,0),(5202,0,104567,'Orbaneja del Castillo','Spain','ES','Orbaneja del Castillo (Spain)',1,1,0),(5203,20202,104568,'Orby','Sweden','SE','Orby (Sweden)',1,1,0),(5204,0,104569,'Orfes','Spain','ES','Orfes (Spain)',1,1,0),(5205,0,104570,'Orikum','Albania','AL','Orikum (Albania)',1,1,0),(5206,0,104571,'Oudenbosch','Netherlands','NL','Oudenbosch (Netherlands)',1,1,0),(5207,0,104572,'Ovaro','Italy','IT','Ovaro (Italy)',1,1,0),(5208,0,104573,'Ozd','Hungary','HU','Ozd (Hungary)',1,1,0),(5209,0,104574,'Pacho','Colombia','CO','Pacho (Colombia)',1,1,0),(5210,0,104575,'Padornelo','Spain','ES','Padornelo (Spain)',1,1,0),(5211,0,104576,'Paget','Australia','AU','Paget (Australia)',1,1,0),(5212,20564,104577,'Pagudpud','Philippines','PH','Pagudpud (Philippines)',1,1,0),(5213,0,104578,'Pak Nam Pran','Thailand','TH','Pak Nam Pran (Thailand)',1,1,0),(5214,0,104579,'Palos de la Frontera','Spain','ES','Palos de la Frontera (Spain)',1,1,0),(5215,0,104580,'Palpala','Argentina','AR','Palpala (Argentina)',1,1,0),(5216,0,104581,'Palyanytsya Village','Ukraine','UA','Palyanytsya Village (Ukraine)',1,1,0),(5217,0,104582,'Pampiedra','Spain','ES','Pampiedra (Spain)',1,1,0),(5218,0,104583,'Panayitsa','Greece','GR','Panayitsa (Greece)',1,1,0),(5219,0,104584,'Pannone di Mori','Italy','IT','Pannone di Mori (Italy)',1,1,0),(5220,0,104585,'Pantenburg','Germany','DE','Pantenburg (Germany)',1,1,0),(5221,0,104586,'Para de Minas','Brazil','BR','Para de Minas (Brazil)',1,1,0),(5222,0,104587,'Paralia Skotinis','Greece','GR','Paralia Skotinis (Greece)',1,1,0),(5223,0,104588,'Paranesti','Greece','GR','Paranesti (Greece)',1,1,0),(5224,0,104589,'Parmain','France','FR','Parmain (France)',1,1,0),(5225,0,104590,'Pathio','Thailand','TH','Pathio (Thailand)',1,1,0),(5226,0,104591,'Lazkao','Spain','ES','Lazkao (Spain)',1,1,0),(5227,0,104592,'Le Brignon','France','FR','Le Brignon (France)',1,1,0),(5228,0,104593,'Ledec nad Sazavou','Czech Republic','CZ','Ledec nad Sazavou (Czech Republic)',1,1,0),(5229,0,104594,'Leek','United Kingdom','UK','Leek (United Kingdom)',1,1,0),(5230,0,104595,'Leese','Germany','DE','Leese (Germany)',1,1,0),(5231,0,104596,'Lencois Paulista','Brazil','BR','Lencois Paulista (Brazil)',1,1,0),(5232,0,104597,'Les Cammazes','France','FR','Les Cammazes (France)',1,1,0),(5233,15372,104598,'Leusden','Netherlands','NL','Leusden (Netherlands)',1,1,0),(5234,0,104599,'Leverburgh','United Kingdom','UK','Leverburgh (United Kingdom)',1,1,0),(5235,0,104600,'Lhotka','Czech Republic','CZ','Lhotka (Czech Republic)',1,1,0),(5236,0,104601,'Lican Ray','Chile','CL','Lican Ray (Chile)',1,1,0),(5237,0,104602,'L\'Ile-Rousse','France','FR','L\'Ile-Rousse (France)',1,1,0),(5238,0,104603,'Linbian','Taiwan','TW','Linbian (Taiwan)',1,1,0),(5239,0,104604,'Lingyuan','China','CN','Lingyuan (China)',1,1,0),(5240,0,104605,'Lipa','Philippines','PH','Lipa (Philippines)',1,1,0),(5241,0,104606,'Lisarnya','Ukraine','UA','Lisarnya (Ukraine)',1,1,0),(5242,0,104607,'Llangrove','United Kingdom','UK','Llangrove (United Kingdom)',1,1,0),(5243,0,104608,'Llanon','United Kingdom','UK','Llanon (United Kingdom)',1,1,0),(5244,0,104609,'Llwyngwril','United Kingdom','UK','Llwyngwril (United Kingdom)',1,1,0),(5245,0,104610,'Lobitos','Peru','PE','Lobitos (Peru)',1,1,0),(5246,0,104611,'Lobkovaya Balka','Ukraine','UA','Lobkovaya Balka (Ukraine)',1,1,0),(5247,0,104612,'Lodingen','Norway','NO','Lodingen (Norway)',1,1,0),(5248,0,104613,'Logan Lake','Canada','CA','Logan Lake (Canada)',1,1,0),(5249,0,104614,'Loiza','Puerto Rico','PR','Loiza (Puerto Rico)',1,1,0),(5250,0,104615,'Lomnice nad Luznici','Czech Republic','CZ','Lomnice nad Luznici (Czech Republic)',1,1,0),(5251,0,104616,'Long Sault','Canada','CA','Long Sault (Canada)',1,1,0),(5252,15856,104617,'Longford','Australia','AU','Longford (Australia)',1,1,0),(5253,15867,104618,'Longueau','France','FR','Longueau (France)',1,1,0),(5254,0,104619,'Loo','Russia','RU','Loo (Russia)',1,1,0),(5255,0,104620,'Lorlanges','France','FR','Lorlanges (France)',1,1,0),(5256,0,104621,'Los Azufres','Mexico','MX','Los Azufres (Mexico)',1,1,0),(5257,31845,104622,'Los Barriles','Mexico','MX','Los Barriles (Mexico)',1,1,0),(5258,0,104623,'Los Corrales de Buelna','Spain','ES','Los Corrales de Buelna (Spain)',1,1,0),(5259,0,104624,'Los Naranjos Beach','Colombia','CO','Los Naranjos Beach (Colombia)',1,1,0),(5260,0,104625,'Lostallo','Switzerland','CH','Lostallo (Switzerland)',1,1,0),(5261,0,104626,'Luserna','Italy','IT','Luserna (Italy)',1,1,0),(5262,0,104627,'Luttenbach-pres-Munster','France','FR','Luttenbach-pres-Munster (France)',1,1,0),(5263,0,104628,'Lythrodontas','Cyprus','CY','Lythrodontas (Cyprus)',1,1,0),(5264,0,104629,'Lyubimets','Bulgaria','BG','Lyubimets (Bulgaria)',1,1,0),(5265,0,104630,'Ma Da Gui','Vietnam','VN','Ma Da Gui (Vietnam)',1,1,0),(5266,0,104631,'Macclesfield','Australia','AU','Macclesfield (Australia)',1,1,0),(5267,16240,104632,'Macedon','Australia','AU','Macedon (Australia)',1,1,0),(5268,0,104633,'Maclagan','Australia','AU','Maclagan (Australia)',1,1,0),(5269,16263,104634,'Macomer','Italy','IT','Macomer (Italy)',1,1,0),(5270,0,104635,'Macs Cove','Australia','AU','Macs Cove (Australia)',1,1,0),(5271,0,104636,'Malanje','Angola','AO','Malanje (Angola)',1,1,0),(5272,0,104637,'Malaybalay City','Philippines','PH','Malaybalay City (Philippines)',1,1,0),(5273,0,104638,'Malborough','United Kingdom','UK','Malborough (United Kingdom)',1,1,0),(5274,0,104639,'Bolshaya Rechka','Russia','RU','Bolshaya Rechka (Russia)',1,1,0),(5275,0,104640,'Bolton','Canada','CA','Bolton (Canada)',1,1,0),(5276,0,104641,'Bonansa','Spain','ES','Bonansa (Spain)',1,1,0),(5277,0,104642,'Bonneval (Eure-et-Loir)','France','FR','Bonneval (Eure-et-Loir) (France)',1,1,0),(5278,3673,104643,'Bonyhad','Hungary','HU','Bonyhad (Hungary)',1,1,0),(5279,0,104644,'Boonah','Australia','AU','Boonah (Australia)',1,1,0),(5280,0,104645,'Boreham',NULL,NULL,'Boreham ()',1,1,0),(5281,0,104646,'Bourton-on-the-Water','United Kingdom','UK','Bourton-on-the-Water (United Kingdom)',1,1,0),(5282,0,104647,'Bovolone','Italy','IT','Bovolone (Italy)',1,1,0),(5283,0,104648,'Bowen Mountain','Australia','AU','Bowen Mountain (Australia)',1,1,0),(5284,0,104649,'Bowna','Australia','AU','Bowna (Australia)',1,1,0),(5285,0,104650,'Bozen','Switzerland','CH','Bozen (Switzerland)',1,1,0),(5286,0,104651,'Brengues','France','FR','Brengues (France)',1,1,0),(5287,0,104652,'Briel-sur-Barse','France','FR','Briel-sur-Barse (France)',1,1,0),(5288,0,104653,'Broadford','Australia','AU','Broadford (Australia)',1,1,0),(5289,0,104654,'Brzeszcze','Poland','PL','Brzeszcze (Poland)',1,1,0),(5290,0,104655,'Buchs','Switzerland','CH','Buchs (Switzerland)',1,1,0),(5291,0,104656,'Buia','Italy','IT','Buia (Italy)',1,1,0),(5292,0,104657,'Bukowel','Ukraine','UA','Bukowel (Ukraine)',1,1,0),(5293,0,104658,'Burguillos del Cerro','Spain','ES','Burguillos del Cerro (Spain)',1,1,0),(5294,0,104659,'Buriti Alegre (Goias)','Brazil','BR','Buriti Alegre (Goias) (Brazil)',1,1,0),(5295,0,104660,'Bussoleno','Italy','IT','Bussoleno (Italy)',1,1,0),(5296,0,104661,'Butschwil','Switzerland','CH','Butschwil (Switzerland)',1,1,0),(5297,0,104662,'Buttrio','Italy','IT','Buttrio (Italy)',1,1,0),(5298,0,104663,'Buzancy (Ardennes)','France','FR','Buzancy (Ardennes) (France)',1,1,0),(5299,0,104664,'Caacupe','Paraguay','PY','Caacupe (Paraguay)',1,1,0),(5300,0,104665,'Cachoeira do Sul','Brazil','BR','Cachoeira do Sul (Brazil)',1,1,0),(5301,0,104666,'Cachoeira Paulista','Brazil','BR','Cachoeira Paulista (Brazil)',1,1,0),(5302,0,104667,'Calestano','Italy','IT','Calestano (Italy)',1,1,0),(5303,0,104668,'Calimita','Colombia','CO','Calimita (Colombia)',1,1,0),(5304,4813,104669,'Calvados','France','FR','Calvados (France)',1,1,0),(5305,0,104670,'Camaragibe','Brazil','BR','Camaragibe (Brazil)',1,1,0),(5306,0,104671,'Camburi','Brazil','BR','Camburi (Brazil)',1,1,0),(5307,0,104672,'Campo di Giove','Italy','IT','Campo di Giove (Italy)',1,1,0),(5308,0,104673,'Canaa dos Carajas','Brazil','BR','Canaa dos Carajas (Brazil)',1,1,0),(5309,0,104674,'Cananeia','Brazil','BR','Cananeia (Brazil)',1,1,0),(5310,0,104675,'Cantagrillo','Italy','IT','Cantagrillo (Italy)',1,1,0),(5311,0,104676,'Cantalupo Ligure','Italy','IT','Cantalupo Ligure (Italy)',1,1,0),(5312,0,104677,'Capel',NULL,NULL,'Capel ()',1,1,0),(5313,0,104678,'Capriata d\'Orba','Italy','IT','Capriata d\'Orba (Italy)',1,1,0),(5314,0,104679,'Carlsberg','Germany','DE','Carlsberg (Germany)',1,1,0),(5315,0,104680,'Carool','Australia','AU','Carool (Australia)',1,1,0),(5316,0,104681,'Carpinteria','Argentina','AR','Carpinteria (Argentina)',1,1,0),(5317,0,104682,'Carthew','United Kingdom','UK','Carthew (United Kingdom)',1,1,0),(5318,0,104683,'Casalpusterlengo','Italy','IT','Casalpusterlengo (Italy)',1,1,0),(5319,5299,104684,'Casarano','Italy','IT','Casarano (Italy)',1,1,0),(5320,0,104685,'Cassano delle Murge','Italy','IT','Cassano delle Murge (Italy)',1,1,0),(5321,0,104686,'Cassano Magnago','Italy','IT','Cassano Magnago (Italy)',1,1,0),(5322,0,104687,'Castello Cabiaglio','Italy','IT','Castello Cabiaglio (Italy)',1,1,0),(5323,0,104688,'Castello d\'Argile','Italy','IT','Castello d\'Argile (Italy)',1,1,0),(5324,0,104689,'Castelluccio Superiore','Italy','IT','Castelluccio Superiore (Italy)',1,1,0),(5325,0,104690,'Castillo de Montemar','Spain','ES','Castillo de Montemar (Spain)',1,1,0),(5326,0,104691,'A Laracha','Spain','ES','A Laracha (Spain)',1,1,0),(5327,0,104692,'Aakirkeby','Denmark','DK','Aakirkeby (Denmark)',1,1,0),(5328,0,104693,'Abancay (Region Apurimac)','Peru','PE','Abancay (Region Apurimac) (Peru)',1,1,0),(5329,0,104694,'Abbekas','Sweden','SE','Abbekas (Sweden)',1,1,0),(5330,0,104695,'Abelardo Luz','Brazil','BR','Abelardo Luz (Brazil)',1,1,0),(5331,0,104696,'Aberdeen','Australia','AU','Aberdeen (Australia)',1,1,0),(5332,0,104697,'Achlades','Greece','GR','Achlades (Greece)',1,1,0),(5333,0,104698,'Agnanta','Greece','GR','Agnanta (Greece)',1,1,0),(5334,0,104699,'Agua Buena','Costa Rica','CR','Agua Buena (Costa Rica)',1,1,0),(5335,0,104700,'Akhtubinsk','Russia','RU','Akhtubinsk (Russia)',1,1,0),(5336,0,104701,'Albany','New Zealand','NZ','Albany (New Zealand)',1,1,0),(5337,0,104702,'Albaron','France','FR','Albaron (France)',1,1,0),(5338,0,104703,'Albion','Mauritius','MU','Albion (Mauritius)',1,1,0),(5339,0,104704,'Albion Park','Australia','AU','Albion Park (Australia)',1,1,0),(5340,0,104705,'Alcala del Jucar','Spain','ES','Alcala del Jucar (Spain)',1,1,0),(5341,0,104706,'Alfara de Carles','Spain','ES','Alfara de Carles (Spain)',1,1,0),(5342,0,104707,'Alsgarde','Denmark','DK','Alsgarde (Denmark)',1,1,0),(5343,810,104708,'Altinoluk','Turkey','TR','Altinoluk (Turkey)',1,1,0),(5344,0,104709,'Altos de Cofresi','Dominican Republic','DO','Altos de Cofresi (Dominican Republic)',1,1,0),(5345,0,104710,'Amancey','France','FR','Amancey (France)',1,1,0),(5346,0,104711,'Ambazac','France','FR','Ambazac (France)',1,1,0),(5347,0,104712,'Amerongen','Netherlands','NL','Amerongen (Netherlands)',1,1,0),(5348,0,104713,'Amfissa','Greece','GR','Amfissa (Greece)',1,1,0),(5349,0,104714,'Anafi','Greece','GR','Anafi (Greece)',1,1,0),(5350,1003,104715,'Anasco','Puerto Rico','PR','Anasco (Puerto Rico)',1,1,0),(5351,0,104716,'Andijan','Uzbekistan','UZ','Andijan (Uzbekistan)',1,1,0),(5352,0,104717,'Andreasfeld','Poland','PL','Andreasfeld (Poland)',1,1,0),(5353,0,104718,'Annaka','Japan','JP','Annaka (Japan)',1,1,0),(5354,0,104719,'Anneyron','France','FR','Anneyron (France)',1,1,0),(5355,0,104720,'Antichan-de-Frontignes','France','FR','Antichan-de-Frontignes (France)',1,1,0),(5356,0,104721,'Apaneca','El Salvador','SV','Apaneca (El Salvador)',1,1,0),(5357,1249,104722,'Aquileia','Italy','IT','Aquileia (Italy)',1,1,0),(5358,0,104723,'Aracui','Brazil','BR','Aracui (Brazil)',1,1,0),(5359,0,104725,'Aramil','Russia','RU','Aramil (Russia)',1,1,0),(5360,0,104726,'Arc-et-Senans','France','FR','Arc-et-Senans (France)',1,1,0),(5361,0,104727,'Arda','Bulgaria','BG','Arda (Bulgaria)',1,1,0),(5362,0,104728,'Arida','Japan','JP','Arida (Japan)',1,1,0),(5363,0,104729,'Arisaig','United Kingdom','UK','Arisaig (United Kingdom)',1,1,0),(5364,0,104730,'Arkhipo-Osipovka','Russia','RU','Arkhipo-Osipovka (Russia)',1,1,0),(5365,0,104731,'Arqua Polesine','Italy','IT','Arqua Polesine (Italy)',1,1,0),(5366,0,104732,'Arraia-Maeztu','Spain','ES','Arraia-Maeztu (Spain)',1,1,0),(5367,0,104733,'Artlenburg','Germany','DE','Artlenburg (Germany)',1,1,0),(5368,0,104734,'Aruja','Brazil','BR','Aruja (Brazil)',1,1,0),(5369,0,104735,'Asgaour','Morocco','MA','Asgaour (Morocco)',1,1,0),(5370,0,104736,'Asnieres-la-Giraud','France','FR','Asnieres-la-Giraud (France)',1,1,0),(5371,0,104737,'Ateca','Spain','ES','Ateca (Spain)',1,1,0),(5372,0,104738,'Aubreville','France','FR','Aubreville (France)',1,1,0),(5373,0,104739,'Aushiger','Russia','RU','Aushiger (Russia)',1,1,0),(5374,0,104740,'Australind','Australia','AU','Australind (Australia)',1,1,0),(5375,0,104741,'Avlakia','Greece','GR','Avlakia (Greece)',1,1,0),(5376,1869,104742,'Avoca','Ireland','IE','Avoca (Ireland)',1,1,0),(5377,0,104743,'Avonwick','United Kingdom','UK','Avonwick (United Kingdom)',1,1,0),(5378,0,104745,'Ayse','France','FR','Ayse (France)',1,1,0),(5379,1923,104746,'Aytre','France','FR','Aytre (France)',1,1,0),(5380,0,104747,'Azkoitia','Spain','ES','Azkoitia (Spain)',1,1,0),(5381,0,104748,'Azzano Decimo','Italy','IT','Azzano Decimo (Italy)',1,1,0),(5382,16525,104749,'Malling','Denmark','DK','Malling (Denmark)',1,1,0),(5383,0,104750,'Malorechenskoye','Ukraine','UA','Malorechenskoye (Ukraine)',1,1,0),(5384,0,104751,'Manati','Puerto Rico','PR','Manati (Puerto Rico)',1,1,0),(5385,0,104752,'Manggul','Indonesia','ID','Manggul (Indonesia)',1,1,0),(5386,0,104753,'Mangshi','China','CN','Mangshi (China)',1,1,0),(5387,0,104754,'Manzano','Italy','IT','Manzano (Italy)',1,1,0),(5388,0,104755,'Marchtrenk','Austria','AT','Marchtrenk (Austria)',1,1,0),(5389,0,104756,'Marly-le-Roi','France','FR','Marly-le-Roi (France)',1,1,0),(5390,0,104757,'Masevaux','France','FR','Masevaux (France)',1,1,0),(5391,0,104758,'Matao','Brazil','BR','Matao (Brazil)',1,1,0),(5392,0,104759,'Mauchline','United Kingdom','UK','Mauchline (United Kingdom)',1,1,0),(5393,0,104760,'Mauleon','France','FR','Mauleon (France)',1,1,0),(5394,0,104761,'Mauprevoir','France','FR','Mauprevoir (France)',1,1,0),(5395,17180,104762,'Maxaranguape','Brazil','BR','Maxaranguape (Brazil)',1,1,0),(5396,0,104763,'Meadowbrook','Australia','AU','Meadowbrook (Australia)',1,1,0),(5397,0,104764,'Medvedivka','Ukraine','UA','Medvedivka (Ukraine)',1,1,0),(5398,0,104765,'Melbourne','United Kingdom','UK','Melbourne (United Kingdom)',1,1,0),(5399,0,104766,'Melide','Spain','ES','Melide (Spain)',1,1,0),(5400,17381,104767,'Mellbystrand','Sweden','SE','Mellbystrand (Sweden)',1,1,0),(5401,0,104768,'Melsiripura','Sri Lanka','LK','Melsiripura (Sri Lanka)',1,1,0),(5402,0,104769,'Mestecko','Czech Republic','CZ','Mestecko (Czech Republic)',1,1,0),(5403,0,104770,'Metabetchouan-Lac-a-la-Croix','Canada','CA','Metabetchouan-Lac-a-la-Croix (Canada)',1,1,0),(5404,0,104771,'Mettmach','Austria','AT','Mettmach (Austria)',1,1,0),(5405,17588,104772,'Meyerton','South Africa','ZA','Meyerton (South Africa)',1,1,0),(5406,0,104773,'Mezitli','Turkey','TR','Mezitli (Turkey)',1,1,0),(5407,0,104774,'Michalovce','Slovakia','SK','Michalovce (Slovakia)',1,1,0),(5408,0,104775,'Michnevo','Russia','RU','Michnevo (Russia)',1,1,0),(5409,0,104776,'Midland','Australia','AU','Midland (Australia)',1,1,0),(5410,0,104777,'Mikhaylovsk','Russia','RU','Mikhaylovsk (Russia)',1,1,0),(5411,0,104778,'Millesimo','Italy','IT','Millesimo (Italy)',1,1,0),(5412,0,104779,'Minami Uonuma','Japan','JP','Minami Uonuma (Japan)',1,1,0),(5413,0,104780,'Minamitane','Japan','JP','Minamitane (Japan)',1,1,0),(5414,17796,104781,'Mintaro','Australia','AU','Mintaro (Australia)',1,1,0),(5415,0,104782,'Mirthios','Greece','GR','Mirthios (Greece)',1,1,0),(5416,0,104783,'Misaki','Japan','JP','Misaki (Japan)',1,1,0),(5417,0,104784,'Mizoen','France','FR','Mizoen (France)',1,1,0),(5418,0,104785,'Mlawa','Poland','PL','Mlawa (Poland)',1,1,0),(5419,0,104786,'Mnichovo Hradiste','Czech Republic','CZ','Mnichovo Hradiste (Czech Republic)',1,1,0),(5420,0,104787,'Moirans-en-Montagne','France','FR','Moirans-en-Montagne (France)',1,1,0),(5421,0,104788,'Monte Urano','Italy','IT','Monte Urano (Italy)',1,1,0),(5422,0,104789,'Montegiorgio','Italy','IT','Montegiorgio (Italy)',1,1,0),(5423,0,104790,'Montegrazie','Italy','IT','Montegrazie (Italy)',1,1,0),(5424,0,104791,'Mont-Saint-Guibert','Belgium','BE','Mont-Saint-Guibert (Belgium)',1,1,0),(5425,0,104792,'Mooroolbark','Australia','AU','Mooroolbark (Australia)',1,1,0),(5426,0,104793,'Moquegua','Peru','PE','Moquegua (Peru)',1,1,0),(5427,0,104794,'Moravka','Czech Republic','CZ','Moravka (Czech Republic)',1,1,0),(5428,0,104795,'Moron de la Frontera','Spain','ES','Moron de la Frontera (Spain)',1,1,0),(5429,0,104796,'Morretes','Brazil','BR','Morretes (Brazil)',1,1,0),(5430,0,104797,'Morro d\'Alba','Italy','IT','Morro d\'Alba (Italy)',1,1,0),(5431,0,104798,'Moulis-en-Medoc','France','FR','Moulis-en-Medoc (France)',1,1,0),(5432,0,104799,'Muir of Ord','United Kingdom','UK','Muir of Ord (United Kingdom)',1,1,0),(5433,0,104800,'Mullalyup','Australia','AU','Mullalyup (Australia)',1,1,0),(5434,0,104801,'Myrdal','Norway','NO','Myrdal (Norway)',1,1,0),(5435,0,104802,'Myrhorod','Ukraine','UA','Myrhorod (Ukraine)',1,1,0),(5436,0,104803,'Naga City','Philippines','PH','Naga City (Philippines)',1,1,0),(5437,0,104804,'Nai Meuang','Thailand','TH','Nai Meuang (Thailand)',1,1,0),(5438,18909,104805,'Nakskov','Denmark','DK','Nakskov (Denmark)',1,1,0),(5439,0,104807,'Nava de la Asuncion','Spain','ES','Nava de la Asuncion (Spain)',1,1,0),(5440,0,104808,'Navaconcejo','Spain','ES','Navaconcejo (Spain)',1,1,0),(5441,0,104809,'Navalvillar de Pela','Spain','ES','Navalvillar de Pela (Spain)',1,1,0),(5442,0,104810,'Negreni','Romania','RO','Negreni (Romania)',1,1,0),(5443,0,104811,'Nestani','Greece','GR','Nestani (Greece)',1,1,0),(5444,0,104812,'Netolice','Czech Republic','CZ','Netolice (Czech Republic)',1,1,0),(5445,0,104813,'Neuville Sur Ain','France','FR','Neuville Sur Ain (France)',1,1,0),(5446,19273,104814,'Nevache','France','FR','Nevache (France)',1,1,0),(5447,0,104815,'Newhaven','Australia','AU','Newhaven (Australia)',1,1,0),(5448,0,104816,'Newnham on Severn','United Kingdom','UK','Newnham on Severn (United Kingdom)',1,1,0),(5449,0,104817,'Niederoblarn','Austria','AT','Niederoblarn (Austria)',1,1,0),(5450,19541,104818,'Nogueira de Ramuin','Spain','ES','Nogueira de Ramuin (Spain)',1,1,0),(5451,0,104819,'Nong Pa Khrang','Thailand','TH','Nong Pa Khrang (Thailand)',1,1,0),(5452,0,104820,'Northcliffe','Australia','AU','Northcliffe (Australia)',1,1,0),(5453,0,104821,'Nosund','Sweden','SE','Nosund (Sweden)',1,1,0),(5454,0,104822,'Nove Mesto pod Smrkem','Czech Republic','CZ','Nove Mesto pod Smrkem (Czech Republic)',1,1,0),(5455,0,104823,'Novozybkov','Russia','RU','Novozybkov (Russia)',1,1,0),(5456,0,104824,'Nundah','Australia','AU','Nundah (Australia)',1,1,0),(5457,0,104825,'Nyaung U','Myanmar','MM','Nyaung U (Myanmar)',1,1,0),(5458,0,104826,'Nykarleby','Finland','FI','Nykarleby (Finland)',1,1,0),(5459,0,104827,'Oakura','New Zealand','NZ','Oakura (New Zealand)',1,1,0),(5460,0,104828,'Oberdorf','Switzerland','CH','Oberdorf (Switzerland)',1,1,0),(5461,0,104829,'Odogbolu','Nigeria','NG','Odogbolu (Nigeria)',1,1,0),(5462,0,104830,'Ogrodzieniec','Poland','PL','Ogrodzieniec (Poland)',1,1,0),(5463,0,104831,'Omurtag','Bulgaria','BG','Omurtag (Bulgaria)',1,1,0),(5464,0,104832,'Ontigola','Spain','ES','Ontigola (Spain)',1,1,0),(5465,0,104833,'Opovo','Serbia','RS','Opovo (Serbia)',1,1,0),(5466,0,104834,'Orea','Spain','ES','Orea (Spain)',1,1,0),(5467,0,104835,'Orlandia','Brazil','BR','Orlandia (Brazil)',1,1,0),(5468,0,104836,'Orliaguet','France','FR','Orliaguet (France)',1,1,0),(5469,0,104837,'Ostrzyce','Poland','PL','Ostrzyce (Poland)',1,1,0),(5470,0,104838,'Oulad Teima','Morocco','MA','Oulad Teima (Morocco)',1,1,0),(5471,0,104839,'Oxborough','United Kingdom','UK','Oxborough (United Kingdom)',1,1,0),(5472,0,104840,'Padola','Italy','IT','Padola (Italy)',1,1,0),(5473,0,104841,'Palmdale','Australia','AU','Palmdale (Australia)',1,1,0),(5474,0,104842,'Parada de Arriba','Spain','ES','Parada de Arriba (Spain)',1,1,0),(5475,0,104843,'Paranaque City','Philippines','PH','Paranaque City (Philippines)',1,1,0),(5476,0,104844,'Paringa','Australia','AU','Paringa (Australia)',1,1,0),(5477,0,104845,'Peglio','Italy','IT','Peglio (Italy)',1,1,0),(5478,0,104846,'Pegs Creek','Australia','AU','Pegs Creek (Australia)',1,1,0),(5479,0,104847,'Pemalang','Indonesia','ID','Pemalang (Indonesia)',1,1,0),(5480,0,104848,'Penebel','Indonesia','ID','Penebel (Indonesia)',1,1,0),(5481,0,104849,'Penryn','United Kingdom','UK','Penryn (United Kingdom)',1,1,0),(5482,0,104850,'Pequi','Brazil','BR','Pequi (Brazil)',1,1,0),(5483,0,104851,'Perai','Malaysia','MY','Perai (Malaysia)',1,1,0),(5484,0,104852,'Pereda de Ancares','Spain','ES','Pereda de Ancares (Spain)',1,1,0),(5485,0,104853,'Perevoloki','Russia','RU','Perevoloki (Russia)',1,1,0),(5486,0,104854,'Petit-Saguenay','Canada','CA','Petit-Saguenay (Canada)',1,1,0),(5487,0,104855,'Phong Nha','Vietnam','VN','Phong Nha (Vietnam)',1,1,0),(5488,0,104856,'Piekoszow','Poland','PL','Piekoszow (Poland)',1,1,0),(5489,0,104857,'Pieszyce','Poland','PL','Pieszyce (Poland)',1,1,0),(5490,0,104858,'Pieterlen','Switzerland','CH','Pieterlen (Switzerland)',1,1,0),(5491,0,104859,'Pinarella di Cervia','Italy','IT','Pinarella di Cervia (Italy)',1,1,0),(5492,0,104860,'Boom','Belgium','BE','Boom (Belgium)',1,1,0),(5493,0,104861,'Borensberg','Sweden','SE','Borensberg (Sweden)',1,1,0),(5494,0,104862,'Borsh','Albania','AL','Borsh (Albania)',1,1,0),(5495,0,104863,'Borshchiv','Ukraine','UA','Borshchiv (Ukraine)',1,1,0),(5496,0,104864,'Boryeong','South Korea','KR','Boryeong (South Korea)',1,1,0),(5497,0,104865,'Botou','China','CN','Botou (China)',1,1,0),(5498,3795,104866,'Boulder','Australia','AU','Boulder (Australia)',1,1,0),(5499,0,104867,'Bourget','Canada','CA','Bourget (Canada)',1,1,0),(5500,0,104868,'Boussu-lez-Walcourt','Belgium','BE','Boussu-lez-Walcourt (Belgium)',1,1,0),(5501,3881,104869,'Bozhentsi','Bulgaria','BG','Bozhentsi (Bulgaria)',1,1,0),(5502,0,104870,'Bratsigovo','Bulgaria','BG','Bratsigovo (Bulgaria)',1,1,0),(5503,0,104871,'Braunsberg','Czech Republic','CZ','Braunsberg (Czech Republic)',1,1,0),(5504,0,104872,'Brezoi','Romania','RO','Brezoi (Romania)',1,1,0),(5505,0,104873,'Brieselang','Germany','DE','Brieselang (Germany)',1,1,0),(5506,0,104874,'Brigstock','United Kingdom','UK','Brigstock (United Kingdom)',1,1,0),(5507,0,104875,'Brownsburg','Canada','CA','Brownsburg (Canada)',1,1,0),(5508,0,104876,'Brusno','Slovakia','SK','Brusno (Slovakia)',1,1,0),(5509,0,104877,'Bucht der Begegnung','Australia','AU','Bucht der Begegnung (Australia)',1,1,0),(5510,0,104878,'Bucknell','United Kingdom','UK','Bucknell (United Kingdom)',1,1,0),(5511,0,104879,'Bumi Serpong Damai','Indonesia','ID','Bumi Serpong Damai (Indonesia)',1,1,0),(5512,0,104880,'Buronga','Australia','AU','Buronga (Australia)',1,1,0),(5513,0,104881,'Busca','Italy','IT','Busca (Italy)',1,1,0),(5514,0,104882,'Cabo Blanco','Peru','PE','Cabo Blanco (Peru)',1,1,0),(5515,0,104883,'Cabranes','Spain','ES','Cabranes (Spain)',1,1,0),(5516,4649,104884,'Cadereyta Jimenez','Mexico','MX','Cadereyta Jimenez (Mexico)',1,1,0),(5517,0,104885,'Caines','Italy','IT','Caines (Italy)',1,1,0),(5518,0,104886,'Calarca','Brazil','BR','Calarca (Brazil)',1,1,0),(5519,0,104887,'Calvello','Italy','IT','Calvello (Italy)',1,1,0),(5520,0,104888,'Calvillo','Mexico','MX','Calvillo (Mexico)',1,1,0),(5521,0,104889,'Campagne-sur-Aude','France','FR','Campagne-sur-Aude (France)',1,1,0),(5522,0,104890,'Canada','Canada','CA','Canada (Canada)',1,1,0),(5523,0,104891,'Canales','Spain','ES','Canales (Spain)',1,1,0),(5524,0,104892,'Candangolandia','Brazil','BR','Candangolandia (Brazil)',1,1,0),(5525,0,104893,'Candon','Philippines','PH','Candon (Philippines)',1,1,0),(5526,0,104894,'Canicatti','Italy','IT','Canicatti (Italy)',1,1,0),(5527,5009,104895,'Canning','Canada','CA','Canning (Canada)',1,1,0),(5528,0,104896,'Canoinhas','Brazil','BR','Canoinhas (Brazil)',1,1,0),(5529,0,104897,'Capendu','France','FR','Capendu (France)',1,1,0),(5530,5090,104898,'Capolona','Italy','IT','Capolona (Italy)',1,1,0),(5531,0,104899,'Carlton (Rothwell)','United Kingdom','UK','Carlton (Rothwell) (United Kingdom)',1,1,0),(5532,0,104900,'Carlux','France','FR','Carlux (France)',1,1,0),(5533,0,104901,'Carnduff','Canada','CA','Carnduff (Canada)',1,1,0),(5534,0,104902,'Carrington','Australia','AU','Carrington (Australia)',1,1,0),(5535,0,104903,'Carugate','Italy','IT','Carugate (Italy)',1,1,0),(5536,0,104904,'Cassibile','Italy','IT','Cassibile (Italy)',1,1,0),(5537,0,104905,'Casti-Wergenstein','Switzerland','CH','Casti-Wergenstein (Switzerland)',1,1,0),(5538,0,104906,'Cebolleros','Spain','ES','Cebolleros (Spain)',1,1,0),(5539,0,104907,'Cedrillas','Spain','ES','Cedrillas (Spain)',1,1,0),(5540,0,104908,'Cenon','France','FR','Cenon (France)',1,1,0),(5541,0,104909,'Cerro Veronese','Italy','IT','Cerro Veronese (Italy)',1,1,0),(5542,0,104910,'Cerveny Kostelec','Czech Republic','CZ','Cerveny Kostelec (Czech Republic)',1,1,0),(5543,0,104911,'Chabrillan','France','FR','Chabrillan (France)',1,1,0),(5544,0,104912,'Chalvignac','France','FR','Chalvignac (France)',1,1,0),(5545,0,104913,'Champ-du-Moulin','Switzerland','CH','Champ-du-Moulin (Switzerland)',1,1,0),(5546,0,104914,'Changlun','Malaysia','MY','Changlun (Malaysia)',1,1,0),(5547,5812,104915,'Chapala','Mexico','MX','Chapala (Mexico)',1,1,0),(5548,0,104916,'Charette','France','FR','Charette (France)',1,1,0),(5549,0,104917,'Chateauvert','France','FR','Chateauvert (France)',1,1,0),(5550,0,104918,'Chauvigny','France','FR','Chauvigny (France)',1,1,0),(5551,0,104919,'Chavanod','France','FR','Chavanod (France)',1,1,0),(5552,0,104920,'Cooks Hill','Australia','AU','Cooks Hill (Australia)',1,1,0),(5553,0,104921,'Corbiolo','Italy','IT','Corbiolo (Italy)',1,1,0),(5554,6962,104922,'Corlette','Australia','AU','Corlette (Australia)',1,1,0),(5555,0,104923,'Cosquin','Argentina','AR','Cosquin (Argentina)',1,1,0),(5556,0,104924,'Costa Masnaga','Italy','IT','Costa Masnaga (Italy)',1,1,0),(5557,0,104925,'Cournon-d\'Auvergne','France','FR','Cournon-d\'Auvergne (France)',1,1,0),(5558,7129,104926,'Cox\'s Bazar','Bangladesh','BD','Cox\'s Bazar (Bangladesh)',1,1,0),(5559,0,104927,'Crato','Brazil','BR','Crato (Brazil)',1,1,0),(5560,0,104928,'Cremia','Italy','IT','Cremia (Italy)',1,1,0),(5561,0,104929,'Crevoux','France','FR','Crevoux (France)',1,1,0),(5562,0,104930,'Cuarte de Huerva','Spain','ES','Cuarte de Huerva (Spain)',1,1,0),(5563,0,104931,'Cuatunalco','Mexico','MX','Cuatunalco (Mexico)',1,1,0),(5564,36243,104932,'Curepipe','Mauritius','MU','Curepipe (Mauritius)',1,1,0),(5565,0,104933,'Curvelo','Brazil','BR','Curvelo (Brazil)',1,1,0),(5566,0,104934,'Cuxac-d\'Aude','France','FR','Cuxac-d\'Aude (France)',1,1,0),(5567,0,104935,'Dachegou Village','China','CN','Dachegou Village (China)',1,1,0),(5568,0,104937,'Dadaj','Poland','PL','Dadaj (Poland)',1,1,0),(5569,0,104938,'Dafeng','China','CN','Dafeng (China)',1,1,0),(5570,0,104939,'Damour','Lebanon','LB','Damour (Lebanon)',1,1,0),(5571,0,104940,'Darlings Lake','Canada','CA','Darlings Lake (Canada)',1,1,0),(5572,0,104941,'Davod','Hungary','HU','Davod (Hungary)',1,1,0),(5573,0,104942,'Deanscales','United Kingdom','UK','Deanscales (United Kingdom)',1,1,0),(5574,0,104943,'Dearham','United Kingdom','UK','Dearham (United Kingdom)',1,1,0),(5575,0,104944,'Deil','Netherlands','NL','Deil (Netherlands)',1,1,0),(5576,0,104945,'Desford','United Kingdom','UK','Desford (United Kingdom)',1,1,0),(5577,7861,104947,'Didsbury','Canada','CA','Didsbury (Canada)',1,1,0),(5578,0,104948,'Digos','Philippines','PH','Digos (Philippines)',1,1,0),(5579,0,104949,'Dobra nad Ondavou','Slovakia','SK','Dobra nad Ondavou (Slovakia)',1,1,0),(5580,0,104950,'Dobroszyce','Poland','PL','Dobroszyce (Poland)',1,1,0),(5581,0,104951,'Dombellas','Spain','ES','Dombellas (Spain)',1,1,0),(5582,0,104952,'Domegliara','Italy','IT','Domegliara (Italy)',1,1,0),(5583,8024,104953,'Domingos Martins','Brazil','BR','Domingos Martins (Brazil)',1,1,0),(5584,8027,104954,'Dominican Republic','Dominican Republic','DO','Dominican Republic (Dominican Republic)',1,1,0),(5585,0,104955,'Donggang','Taiwan','TW','Donggang (Taiwan)',1,1,0),(5586,0,104956,'Donnas','Italy','IT','Donnas (Italy)',1,1,0),(5587,0,104957,'Downham Market','United Kingdom','UK','Downham Market (United Kingdom)',1,1,0),(5588,0,104958,'Dresano','Italy','IT','Dresano (Italy)',1,1,0),(5589,0,104959,'Ducos','Martinique','MQ','Ducos (Martinique)',1,1,0),(5590,0,104961,'Duran','Ecuador','EC','Duran (Ecuador)',1,1,0),(5591,0,104962,'Durau','Romania','RO','Durau (Romania)',1,1,0),(5592,0,104963,'Ebolowa','Cameroon','CM','Ebolowa (Cameroon)',1,1,0),(5593,0,104964,'Edinet','Moldova','MD','Edinet (Moldova)',1,1,0),(5594,0,104965,'Eenrum','Netherlands','NL','Eenrum (Netherlands)',1,1,0),(5595,0,104966,'Egersund','Norway','NO','Egersund (Norway)',1,1,0),(5596,0,104967,'Egna','Italy','IT','Egna (Italy)',1,1,0),(5597,0,104968,'Ekibastus','Kazakhstan','KZ','Ekibastus (Kazakhstan)',1,1,0),(5598,0,104969,'El Grado','Spain','ES','El Grado (Spain)',1,1,0),(5599,0,104970,'El Perdigon','Spain','ES','El Perdigon (Spain)',1,1,0),(5600,0,104971,'El Viso','Spain','ES','El Viso (Spain)',1,1,0),(5601,0,104972,'Aager','Italy','IT','Aager (Italy)',1,1,0),(5602,0,104973,'Abinsk','Russia','RU','Abinsk (Russia)',1,1,0),(5603,0,104974,'Abrit','Bulgaria','BG','Abrit (Bulgaria)',1,1,0),(5604,0,104975,'Acacias','Colombia','CO','Acacias (Colombia)',1,1,0),(5605,0,104976,'Acayucan','Mexico','MX','Acayucan (Mexico)',1,1,0),(5606,0,104977,'Achalziche','Georgia','GE','Achalziche (Georgia)',1,1,0),(5607,0,104978,'Acquasanta Terme','Italy','IT','Acquasanta Terme (Italy)',1,1,0),(5608,0,104979,'Adelso','Sweden','SE','Adelso (Sweden)',1,1,0),(5609,0,104980,'Afogados da Ingazeira','Brazil','BR','Afogados da Ingazeira (Brazil)',1,1,0),(5610,269,104981,'Agri','Turkey','TR','Agri (Turkey)',1,1,0),(5611,0,104982,'Agua Buena','Panama','PA','Agua Buena (Panama)',1,1,0),(5612,0,104983,'Aichdorf','Austria','AT','Aichdorf (Austria)',1,1,0),(5613,0,104984,'Akcaabat','Turkey','TR','Akcaabat (Turkey)',1,1,0),(5614,378,104985,'Akcakoca','Turkey','TR','Akcakoca (Turkey)',1,1,0),(5615,397,104986,'Ako','Japan','JP','Ako (Japan)',1,1,0),(5616,0,104987,'Aksai','Russia','RU','Aksai (Russia)',1,1,0),(5617,0,104988,'Alameda de la Sagra','Spain','ES','Alameda de la Sagra (Spain)',1,1,0),(5618,0,104989,'Alfundao','Portugal','PT','Alfundao (Portugal)',1,1,0),(5619,0,104990,'Algonquin Highlands','Canada','CA','Algonquin Highlands (Canada)',1,1,0),(5620,0,104991,'Allansford','Australia','AU','Allansford (Australia)',1,1,0),(5621,0,104992,'Alrewas','United Kingdom','UK','Alrewas (United Kingdom)',1,1,0),(5622,0,104993,'Alveslohe','Germany','DE','Alveslohe (Germany)',1,1,0),(5623,0,104994,'Ambri','Switzerland','CH','Ambri (Switzerland)',1,1,0),(5624,0,104995,'Amedzofe','Ghana','GH','Amedzofe (Ghana)',1,1,0),(5625,0,104996,'Amity','Australia','AU','Amity (Australia)',1,1,0),(5626,0,104997,'Amoltice u Hrenska','Czech Republic','CZ','Amoltice u Hrenska (Czech Republic)',1,1,0),(5627,0,104998,'Anelo','Argentina','AR','Anelo (Argentina)',1,1,0),(5628,0,104999,'Aniane','France','FR','Aniane (France)',1,1,0),(5629,0,105000,'Antraigues','France','FR','Antraigues (France)',1,1,0),(5630,0,105001,'Appingedam','Netherlands','NL','Appingedam (Netherlands)',1,1,0),(5631,0,105002,'Arcos de las Salinas','Spain','ES','Arcos de las Salinas (Spain)',1,1,0),(5632,0,105003,'Ardning','Austria','AT','Ardning (Austria)',1,1,0),(5633,0,105004,'Areponapuchic','Mexico','MX','Areponapuchic (Mexico)',1,1,0),(5634,0,105005,'Arkitsa','Greece','GR','Arkitsa (Greece)',1,1,0),(5635,0,105006,'Asbest','Russia','RU','Asbest (Russia)',1,1,0),(5636,0,105007,'Ashton-under-Lyne','United Kingdom','UK','Ashton-under-Lyne (United Kingdom)',1,1,0),(5637,0,105008,'Assignan','France','FR','Assignan (France)',1,1,0),(5638,1648,105009,'Assos','Turkey','TR','Assos (Turkey)',1,1,0),(5639,0,105010,'Astano','Switzerland','CH','Astano (Switzerland)',1,1,0),(5640,0,105011,'Ateleta','Italy','IT','Ateleta (Italy)',1,1,0),(5641,0,105012,'Aust-Agder','Norway','NO','Aust-Agder (Norway)',1,1,0),(5642,0,105013,'Autzem','Latvia','LV','Autzem (Latvia)',1,1,0),(5643,0,105014,'Avenel','Australia','AU','Avenel (Australia)',1,1,0),(5644,0,105015,'Aves','Portugal','PT','Aves (Portugal)',1,1,0),(5645,0,105016,'Awara','Japan','JP','Awara (Japan)',1,1,0),(5646,0,105017,'Ayancik','Turkey','TR','Ayancik (Turkey)',1,1,0),(5647,0,105018,'Bacoor','Philippines','PH','Bacoor (Philippines)',1,1,0),(5648,0,105019,'Bad Rehburg','Germany','DE','Bad Rehburg (Germany)',1,1,0),(5649,0,105020,'Baffie','France','FR','Baffie (France)',1,1,0),(5650,0,105021,'Bagan Serai','Malaysia','MY','Bagan Serai (Malaysia)',1,1,0),(5651,0,105022,'Bagnolo San Vito','Italy','IT','Bagnolo San Vito (Italy)',1,1,0),(5652,0,105023,'Bald Hills','Australia','AU','Bald Hills (Australia)',1,1,0),(5653,0,105024,'Balthali','Nepal','NP','Balthali (Nepal)',1,1,0),(5654,0,105025,'Ban Thangon','LAOS','LA','Ban Thangon (LAOS)',1,1,0),(5655,0,105026,'Baneres de Mariola','Spain','ES','Baneres de Mariola (Spain)',1,1,0),(5656,0,105027,'Baniocha','Poland','PL','Baniocha (Poland)',1,1,0),(5657,0,105029,'Barentsburg','Norway','NO','Barentsburg (Norway)',1,1,0),(5658,0,105030,'Barichara','Colombia','CO','Barichara (Colombia)',1,1,0),(5659,0,105031,'Barkowino','Kenya','KE','Barkowino (Kenya)',1,1,0),(5660,0,105032,'Bataysk','Russia','RU','Bataysk (Russia)',1,1,0),(5661,0,105033,'Batopilas','Mexico','MX','Batopilas (Mexico)',1,1,0),(5662,0,105034,'Bauge','France','FR','Bauge (France)',1,1,0),(5663,0,105035,'Baunei','Italy','IT','Baunei (Italy)',1,1,0),(5664,2578,105036,'Bayburt','Turkey','TR','Bayburt (Turkey)',1,1,0),(5665,0,105037,'Bedarieux','France','FR','Bedarieux (France)',1,1,0),(5666,0,105038,'Belas','Angola','AO','Belas (Angola)',1,1,0),(5667,0,105039,'Bellavista','Ecuador','EC','Bellavista (Ecuador)',1,1,0),(5668,2861,105040,'Beloeil','Canada','CA','Beloeil (Canada)',1,1,0),(5669,0,105041,'Benetutti','Italy','IT','Benetutti (Italy)',1,1,0),(5670,0,105042,'Berekfurdo','Hungary','HU','Berekfurdo (Hungary)',1,1,0),(5671,0,105043,'Berriew','United Kingdom','UK','Berriew (United Kingdom)',1,1,0),(5672,0,105044,'Bethal','South Africa','ZA','Bethal (South Africa)',1,1,0),(5673,3125,105045,'Bhairahawa','Nepal','NP','Bhairahawa (Nepal)',1,1,0),(5674,0,105047,'Bilhorod-Dnistrowskyj','Ukraine','UA','Bilhorod-Dnistrowskyj (Ukraine)',1,1,0),(5675,0,105048,'Binh Chau','Vietnam','VN','Binh Chau (Vietnam)',1,1,0),(5676,0,105049,'Biri','Norway','NO','Biri (Norway)',1,1,0),(5677,0,105050,'Blaenau Ffestiniog','United Kingdom','UK','Blaenau Ffestiniog (United Kingdom)',1,1,0),(5678,0,105051,'Blausee','Switzerland','CH','Blausee (Switzerland)',1,1,0),(5679,0,105052,'Blind River','Canada','CA','Blind River (Canada)',1,1,0),(5680,0,105053,'Bluefields','Nicaragua','NI','Bluefields (Nicaragua)',1,1,0),(5681,0,105054,'Bluff','Australia','AU','Bluff (Australia)',1,1,0),(5682,0,105055,'Bodio','Switzerland','CH','Bodio (Switzerland)',1,1,0),(5683,0,105056,'Bodland','Poland','PL','Bodland (Poland)',1,1,0),(5684,0,105057,'Boguchwala','Poland','PL','Boguchwala (Poland)',1,1,0),(5685,0,105058,'1770','Australia','AU','1770 (Australia)',1,1,0),(5686,0,105059,'Abbotsbury','United Kingdom','UK','Abbotsbury (United Kingdom)',1,1,0),(5687,0,105060,'Acri','Italy','IT','Acri (Italy)',1,1,0),(5688,172,105061,'Addis Ababa','Ethiopia','ET','Addis Ababa (Ethiopia)',1,1,0),(5689,0,105062,'Ageo','Japan','JP','Ageo (Japan)',1,1,0),(5690,0,105063,'Agios Matthaios','Greece','GR','Agios Matthaios (Greece)',1,1,0),(5691,278,105064,'Aguada','Puerto Rico','PR','Aguada (Puerto Rico)',1,1,0),(5692,0,105065,'Aguas Dulces','Uruguay','UY','Aguas Dulces (Uruguay)',1,1,0),(5693,0,105066,'Aielo de Malferit','Spain','ES','Aielo de Malferit (Spain)',1,1,0),(5694,0,105067,'Aiguilles','France','FR','Aiguilles (France)',1,1,0),(5695,0,105068,'Airvault','France','FR','Airvault (France)',1,1,0),(5696,0,105069,'Aitkenvale','Australia','AU','Aitkenvale (Australia)',1,1,0),(5697,0,105070,'Ajaltun','Lebanon','LB','Ajaltun (Lebanon)',1,1,0),(5698,0,105071,'Ajigasawa','Japan','JP','Ajigasawa (Japan)',1,1,0),(5699,0,105072,'Akcay','Turkey','TR','Akcay (Turkey)',1,1,0),(5700,0,105073,'Ala di Stura','Italy','IT','Ala di Stura (Italy)',1,1,0),(5701,0,105074,'Alausi','Ecuador','EC','Alausi (Ecuador)',1,1,0),(5702,0,105075,'Alawwa','Sri Lanka','LK','Alawwa (Sri Lanka)',1,1,0),(5703,0,105076,'Albareto','Italy','IT','Albareto (Italy)',1,1,0),(5704,0,105077,'Alejandria','Colombia','CO','Alejandria (Colombia)',1,1,0),(5705,0,105078,'Alhama de Almeria','Spain','ES','Alhama de Almeria (Spain)',1,1,0),(5706,0,105079,'Aliaga','Turkey','TR','Aliaga (Turkey)',1,1,0),(5707,0,105080,'Al-Kharj','Saudi Arabia','SA','Al-Kharj (Saudi Arabia)',1,1,0),(5708,0,105081,'Allaippiddi','Sri Lanka','LK','Allaippiddi (Sri Lanka)',1,1,0),(5709,0,105082,'Almetjewsk','Russia','RU','Almetjewsk (Russia)',1,1,0),(5710,0,105083,'Almiruete','Spain','ES','Almiruete (Spain)',1,1,0),(5711,747,105084,'Alpe di Siusi','Italy','IT','Alpe di Siusi (Italy)',1,1,0),(5712,0,105085,'Alsterbro','Sweden','SE','Alsterbro (Sweden)',1,1,0),(5713,805,105086,'Alter do Chao','Brazil','BR','Alter do Chao (Brazil)',1,1,0),(5714,0,105087,'Amandola','Italy','IT','Amandola (Italy)',1,1,0),(5715,0,105088,'Ammanford','United Kingdom','UK','Ammanford (United Kingdom)',1,1,0),(5716,0,105089,'An Hai','Vietnam','VN','An Hai (Vietnam)',1,1,0),(5717,0,105090,'Andreyevka','Russia','RU','Andreyevka (Russia)',1,1,0),(5718,0,105091,'Anduins','Italy','IT','Anduins (Italy)',1,1,0),(5719,0,105092,'Ang Thong','Thailand','TH','Ang Thong (Thailand)',1,1,0),(5720,0,105093,'Aninoasa','Romania','RO','Aninoasa (Romania)',1,1,0),(5721,1171,105094,'Antilly','France','FR','Antilly (France)',1,1,0),(5722,0,105095,'Antrifttal','Germany','DE','Antrifttal (Germany)',1,1,0),(5723,0,105096,'Aousserd','Morocco','MA','Aousserd (Morocco)',1,1,0),(5724,0,105097,'Appleshaw','United Kingdom','UK','Appleshaw (United Kingdom)',1,1,0),(5725,0,105098,'Araukarien','Brazil','BR','Araukarien (Brazil)',1,1,0),(5726,0,105099,'Arbroath','United Kingdom','UK','Arbroath (United Kingdom)',1,1,0),(5727,0,105100,'Arbuniel','Spain','ES','Arbuniel (Spain)',1,1,0),(5728,0,105101,'Archidona','Ecuador','EC','Archidona (Ecuador)',1,1,0),(5729,0,105102,'Ardersier','United Kingdom','UK','Ardersier (United Kingdom)',1,1,0),(5730,1402,105103,'Ariccia','Italy','IT','Ariccia (Italy)',1,1,0),(5731,0,105105,'Arroyo Seco','Argentina','AR','Arroyo Seco (Argentina)',1,1,0),(5732,0,105106,'Arsiero','Italy','IT','Arsiero (Italy)',1,1,0),(5733,0,105107,'As Nogais','Spain','ES','As Nogais (Spain)',1,1,0),(5734,0,105108,'Ashikaga','Japan','JP','Ashikaga (Japan)',1,1,0),(5735,0,105109,'Assenovgrad','Bulgaria','BG','Assenovgrad (Bulgaria)',1,1,0),(5736,0,105110,'Atzeneta del Maestrat','Spain','ES','Atzeneta del Maestrat (Spain)',1,1,0),(5737,0,105111,'Audes','France','FR','Audes (France)',1,1,0),(5738,0,105112,'Aue','Italy','IT','Aue (Italy)',1,1,0),(5739,0,105113,'Aung Ban','Myanmar','MM','Aung Ban (Myanmar)',1,1,0),(5740,0,105114,'Avoch','United Kingdom','UK','Avoch (United Kingdom)',1,1,0),(5741,0,105115,'Avsa Adasi','Turkey','TR','Avsa Adasi (Turkey)',1,1,0),(5742,0,105116,'Aydarovo','Russia','RU','Aydarovo (Russia)',1,1,0),(5743,0,105117,'Bac Giang','Vietnam','VN','Bac Giang (Vietnam)',1,1,0),(5744,0,105118,'Badia Passignano','Italy','IT','Badia Passignano (Italy)',1,1,0),(5745,0,105119,'Baikalsk','Russia','RU','Baikalsk (Russia)',1,1,0),(5746,0,105120,'Bakio','Spain','ES','Bakio (Spain)',1,1,0),(5747,0,105121,'Balachna','Russia','RU','Balachna (Russia)',1,1,0),(5748,0,105122,'Baleal','Portugal','PT','Baleal (Portugal)',1,1,0),(5749,0,105123,'Ballabio','Italy','IT','Ballabio (Italy)',1,1,0),(5750,0,105124,'Ballenita','Ecuador','EC','Ballenita (Ecuador)',1,1,0),(5751,0,105125,'Ban Rai','Thailand','TH','Ban Rai (Thailand)',1,1,0),(5752,0,105126,'Bardon Mill','United Kingdom','UK','Bardon Mill (United Kingdom)',1,1,0),(5753,0,105127,'Barham','Australia','AU','Barham (Australia)',1,1,0),(5754,0,105128,'Barley','United Kingdom','UK','Barley (United Kingdom)',1,1,0),(5755,0,105129,'Barongarook','Australia','AU','Barongarook (Australia)',1,1,0),(5756,0,105130,'Barra de Santo Antonio','Brazil','BR','Barra de Santo Antonio (Brazil)',1,1,0),(5757,0,105131,'Barra Grande','Brazil','BR','Barra Grande (Brazil)',1,1,0),(5758,0,105132,'Barranquitas','Puerto Rico','PR','Barranquitas (Puerto Rico)',1,1,0),(5759,0,105133,'Barrolandia','Brazil','BR','Barrolandia (Brazil)',1,1,0),(5760,0,105134,'Barweiler','Germany','DE','Barweiler (Germany)',1,1,0),(5761,0,105135,'Bas-Mauco','France','FR','Bas-Mauco (France)',1,1,0),(5762,0,105136,'Basovizza','Italy','IT','Basovizza (Italy)',1,1,0),(5763,0,105137,'Batang Kali','Malaysia','MY','Batang Kali (Malaysia)',1,1,0),(5764,0,105138,'Bawley Point','Australia','AU','Bawley Point (Australia)',1,1,0),(5765,0,105139,'Aballe','Spain','ES','Aballe (Spain)',1,1,0),(5766,0,105140,'Abreschviller','France','FR','Abreschviller (France)',1,1,0),(5767,0,105142,'Aceuchal','Spain','ES','Aceuchal (Spain)',1,1,0),(5768,0,105143,'Agencourt','France','FR','Agencourt (France)',1,1,0),(5769,0,105144,'Aieta','Italy','IT','Aieta (Italy)',1,1,0),(5770,0,105145,'Aiguillon (Lot-et-Garonne)','France','FR','Aiguillon (Lot-et-Garonne) (France)',1,1,0),(5771,0,105146,'Aigurande','France','FR','Aigurande (France)',1,1,0),(5772,0,105147,'Akermoud','Morocco','MA','Akermoud (Morocco)',1,1,0),(5773,0,105148,'Akerreta','Spain','ES','Akerreta (Spain)',1,1,0),(5774,0,105149,'Al Wajh','Saudi Arabia','SA','Al Wajh (Saudi Arabia)',1,1,0),(5775,0,105150,'Alghult','Sweden','SE','Alghult (Sweden)',1,1,0),(5776,0,105151,'Allen','Argentina','AR','Allen (Argentina)',1,1,0),(5777,0,105152,'Allhaming','Austria','AT','Allhaming (Austria)',1,1,0),(5778,0,105153,'Alpatyevo','Russia','RU','Alpatyevo (Russia)',1,1,0),(5779,0,105154,'Al-Qalamoun','Lebanon','LB','Al-Qalamoun (Lebanon)',1,1,0),(5780,0,105155,'Amatitlan','Guatemala','GT','Amatitlan (Guatemala)',1,1,0),(5781,0,105156,'Ambasmestas','Spain','ES','Ambasmestas (Spain)',1,1,0),(5782,0,105157,'Ambrolauri','Georgia','GE','Ambrolauri (Georgia)',1,1,0),(5783,0,105158,'Amer','Spain','ES','Amer (Spain)',1,1,0),(5784,0,105161,'Andouille','France','FR','Andouille (France)',1,1,0),(5785,0,105162,'Anna Paulowna','Netherlands','NL','Anna Paulowna (Netherlands)',1,1,0),(5786,1179,105163,'Anton','Panama','PA','Anton (Panama)',1,1,0),(5787,0,105164,'Apatity','Russia','RU','Apatity (Russia)',1,1,0),(5788,0,105165,'Apokoronas','Greece','GR','Apokoronas (Greece)',1,1,0),(5789,0,105166,'Arakli','Turkey','TR','Arakli (Turkey)',1,1,0),(5790,0,105167,'Arbelaez','Colombia','CO','Arbelaez (Colombia)',1,1,0),(5791,0,105168,'Ares del Maestrat','Spain','ES','Ares del Maestrat (Spain)',1,1,0),(5792,0,105169,'Argavand','Armenia','AM','Argavand (Armenia)',1,1,0),(5793,0,105170,'Arogno','Switzerland','CH','Arogno (Switzerland)',1,1,0),(5794,0,105171,'Artjarvi','Finland','FI','Artjarvi (Finland)',1,1,0),(5795,0,105172,'Artres','France','FR','Artres (France)',1,1,0),(5796,0,105173,'As Marinas',NULL,NULL,'As Marinas ()',1,1,0),(5797,0,105174,'Assomada','Cape Verde','CV','Assomada (Cape Verde)',1,1,0),(5798,0,105175,'Atacames','Ecuador','EC','Atacames (Ecuador)',1,1,0),(5799,0,105176,'Atapuerca','Spain','ES','Atapuerca (Spain)',1,1,0),(5800,1676,105177,'Atenas','Costa Rica','CR','Atenas (Costa Rica)',1,1,0),(5801,1707,105179,'Atlantida','Uruguay','UY','Atlantida (Uruguay)',1,1,0),(5802,0,105180,'Aubazines','France','FR','Aubazines (France)',1,1,0),(5803,0,105181,'Auriol','France','FR','Auriol (France)',1,1,0),(5804,1853,105182,'Avezzano','Italy','IT','Avezzano (Italy)',1,1,0),(5805,0,105183,'Aydincik','Turkey','TR','Aydincik (Turkey)',1,1,0),(5806,0,105184,'Ayllon','Spain','ES','Ayllon (Spain)',1,1,0),(5807,0,105185,'Baabdath','Lebanon','LB','Baabdath (Lebanon)',1,1,0),(5808,0,105186,'Bakar','Croatia','HR','Bakar (Croatia)',1,1,0),(5809,0,105187,'Baki','Indonesia','ID','Baki (Indonesia)',1,1,0),(5810,0,105189,'Balloch','United Kingdom','UK','Balloch (United Kingdom)',1,1,0),(5811,0,105190,'Baltiysk','Russia','RU','Baltiysk (Russia)',1,1,0),(5812,0,105191,'Bani','Dominican Republic','DO','Bani (Dominican Republic)',1,1,0),(5813,0,105192,'Banite','Bulgaria','BG','Banite (Bulgaria)',1,1,0),(5814,0,105193,'Banugues','Spain','ES','Banugues (Spain)',1,1,0),(5815,0,105194,'Barcellona Pozzo di Gotto','Italy','IT','Barcellona Pozzo di Gotto (Italy)',1,1,0),(5816,0,105195,'Bardsea','United Kingdom','UK','Bardsea (United Kingdom)',1,1,0),(5817,0,105196,'Borgonya','Spain','ES','Borgonya (Spain)',1,1,0),(5818,0,105197,'Boston Bar','Canada','CA','Boston Bar (Canada)',1,1,0),(5819,0,105198,'Boswinger','United Kingdom','UK','Boswinger (United Kingdom)',1,1,0),(5820,0,105199,'Bourg-de-Thizy','France','FR','Bourg-de-Thizy (France)',1,1,0),(5821,0,105200,'Boutiliers Point','Canada','CA','Boutiliers Point (Canada)',1,1,0),(5822,0,105201,'Boves','Italy','IT','Boves (Italy)',1,1,0),(5823,0,105202,'Bowmanstead','United Kingdom','UK','Bowmanstead (United Kingdom)',1,1,0),(5824,0,105203,'Boykovo','Bulgaria','BG','Boykovo (Bulgaria)',1,1,0),(5825,0,105204,'Braganca','Brazil','BR','Braganca (Brazil)',1,1,0),(5826,0,105205,'Branxton','Australia','AU','Branxton (Australia)',1,1,0),(5827,0,105206,'Braslav','Belarus','BY','Braslav (Belarus)',1,1,0),(5828,3999,105207,'Bredsten','Denmark','DK','Bredsten (Denmark)',1,1,0),(5829,0,105208,'Briagolong','Australia','AU','Briagolong (Australia)',1,1,0),(5830,0,105209,'Broadview','Canada','CA','Broadview (Canada)',1,1,0),(5831,0,105210,'Broederstroom','South Africa','ZA','Broederstroom (South Africa)',1,1,0),(5832,0,105211,'Bruguieres','France','FR','Bruguieres (France)',1,1,0),(5833,0,105212,'Brunswick Heads','Australia','AU','Brunswick Heads (Australia)',1,1,0),(5834,0,105213,'Brzozie','Poland','PL','Brzozie (Poland)',1,1,0),(5835,4369,105214,'Budgewoi','Australia','AU','Budgewoi (Australia)',1,1,0),(5836,0,105215,'Budyonnovsk','Russia','RU','Budyonnovsk (Russia)',1,1,0),(5837,0,105216,'Buggerru','Italy','IT','Buggerru (Italy)',1,1,0),(5838,0,105217,'Buitrago del Lozoya','Spain','ES','Buitrago del Lozoya (Spain)',1,1,0),(5839,0,105218,'Bulancak','Turkey','TR','Bulancak (Turkey)',1,1,0),(5840,0,105219,'Bungay','United Kingdom','UK','Bungay (United Kingdom)',1,1,0),(5841,0,105220,'Bunutan','Indonesia','ID','Bunutan (Indonesia)',1,1,0),(5842,0,105221,'Burg (Dithmarschen)','Germany','DE','Burg (Dithmarschen) (Germany)',1,1,0),(5843,0,105222,'Busau','Czech Republic','CZ','Busau (Czech Republic)',1,1,0),(5844,0,105223,'Buzim','Bosnia and Herzegowina','BA','Buzim (Bosnia and Herzegowina)',1,1,0),(5845,0,105224,'Cadavedo','Spain','ES','Cadavedo (Spain)',1,1,0),(5846,0,105225,'Caerwent','United Kingdom','UK','Caerwent (United Kingdom)',1,1,0),(5847,0,105226,'Caetite','Brazil','BR','Caetite (Brazil)',1,1,0),(5848,0,105227,'Calasparra','Spain','ES','Calasparra (Spain)',1,1,0),(5849,0,105228,'Calatanazor','Spain','ES','Calatanazor (Spain)',1,1,0),(5850,0,105229,'Calvizzano','Italy','IT','Calvizzano (Italy)',1,1,0),(5851,4890,105230,'Campbell Town','Australia','AU','Campbell Town (Australia)',1,1,0),(5852,0,105231,'Canj','Montenegro','ME','Canj (Montenegro)',1,1,0),(5853,0,105232,'Capella','Australia','AU','Capella (Australia)',1,1,0),(5854,0,105233,'Capriva del Friuli','Italy','IT','Capriva del Friuli (Italy)',1,1,0),(5855,0,105234,'Cardrona','New Zealand','NZ','Cardrona (New Zealand)',1,1,0),(5856,0,105235,'Carobbio Degli Angeli','Italy','IT','Carobbio Degli Angeli (Italy)',1,1,0),(5857,0,105236,'Carrocera','Spain','ES','Carrocera (Spain)',1,1,0),(5858,0,105237,'Carrosio','Italy','IT','Carrosio (Italy)',1,1,0),(5859,0,105238,'Carvico','Italy','IT','Carvico (Italy)',1,1,0),(5860,0,105239,'Casalabriva','France','FR','Casalabriva (France)',1,1,0),(5861,0,105240,'Casas-Ibanez','Spain','ES','Casas-Ibanez (Spain)',1,1,0),(5862,0,105241,'Castel Giuliano','Italy','IT','Castel Giuliano (Italy)',1,1,0),(5863,0,105242,'Castelnuovo Parano','Italy','IT','Castelnuovo Parano (Italy)',1,1,0),(5864,0,105243,'Cawston','Canada','CA','Cawston (Canada)',1,1,0),(5865,0,105244,'Cazilhac','France','FR','Cazilhac (France)',1,1,0),(5866,0,105245,'Celorio','Spain','ES','Celorio (Spain)',1,1,0),(5867,5866,105248,'Charlton','Australia','AU','Charlton (Australia)',1,1,0),(5868,0,105249,'Charlton Marshall','United Kingdom','UK','Charlton Marshall (United Kingdom)',1,1,0),(5869,0,105250,'Chateau-Garnier','France','FR','Chateau-Garnier (France)',1,1,0),(5870,0,105251,'Chbar Mon','Cambodia','KH','Chbar Mon (Cambodia)',1,1,0),(5871,5966,105252,'Checheng','Taiwan','TW','Checheng (Taiwan)',1,1,0),(5872,0,105253,'Chelmsko Slaskie','Poland','PL','Chelmsko Slaskie (Poland)',1,1,0),(5873,0,105254,'Chernomorskoe','Ukraine','UA','Chernomorskoe (Ukraine)',1,1,0),(5874,0,105255,'Chiang Khan','Thailand','TH','Chiang Khan (Thailand)',1,1,0),(5875,0,105256,'Chikusei','Japan','JP','Chikusei (Japan)',1,1,0),(5876,0,105257,'Chiny-sur Semois','Belgium','BE','Chiny-sur Semois (Belgium)',1,1,0),(5877,0,105258,'Chkalovsk','Tajikistan','TJ','Chkalovsk (Tajikistan)',1,1,0),(5878,0,105259,'Choachi','Colombia','CO','Choachi (Colombia)',1,1,0),(5879,0,105260,'Chotieborsch','Czech Republic','CZ','Chotieborsch (Czech Republic)',1,1,0),(5880,0,105261,'Chrysoupoli','Greece','GR','Chrysoupoli (Greece)',1,1,0),(5881,0,105262,'Chudschand','Tajikistan','TJ','Chudschand (Tajikistan)',1,1,0),(5882,0,105263,'Cim','Czech Republic','CZ','Cim (Czech Republic)',1,1,0),(5883,0,105264,'Civray-de-Touraine','France','FR','Civray-de-Touraine (France)',1,1,0),(5884,0,105265,'Cley next the Sea','United Kingdom','UK','Cley next the Sea (United Kingdom)',1,1,0),(5885,0,105266,'Cobden','Australia','AU','Cobden (Australia)',1,1,0),(5886,0,105267,'Codigoro','Italy','IT','Codigoro (Italy)',1,1,0),(5887,0,105268,'Codogno','Italy','IT','Codogno (Italy)',1,1,0),(5888,0,105269,'Colbun','Chile','CL','Colbun (Chile)',1,1,0),(5889,0,105270,'Colinas do Sul','Brazil','BR','Colinas do Sul (Brazil)',1,1,0),(5890,0,105271,'Collado Mediano','Spain','ES','Collado Mediano (Spain)',1,1,0),(5891,0,105272,'Colombelles','France','FR','Colombelles (France)',1,1,0),(5892,0,105273,'Compiano','Italy','IT','Compiano (Italy)',1,1,0),(5893,0,105274,'Comuna Alexandru cel Bun','Romania','RO','Comuna Alexandru cel Bun (Romania)',1,1,0),(5894,0,105275,'Conchagua','El Salvador','SV','Conchagua (El Salvador)',1,1,0),(5895,0,105276,'Congonhas','Brazil','BR','Congonhas (Brazil)',1,1,0),(5896,0,105277,'Beaufort','United Kingdom','UK','Beaufort (United Kingdom)',1,1,0),(5897,2636,105278,'Beauharnois','Canada','CA','Beauharnois (Canada)',1,1,0),(5898,2656,105279,'Beauty Point','Australia','AU','Beauty Point (Australia)',1,1,0),(5899,0,105280,'Beckley','United Kingdom','UK','Beckley (United Kingdom)',1,1,0),(5900,0,105281,'Beiseker','Canada','CA','Beiseker (Canada)',1,1,0),(5901,0,105282,'Belen de Escobar','Argentina','AR','Belen de Escobar (Argentina)',1,1,0),(5902,0,105283,'Belford','United Kingdom','UK','Belford (United Kingdom)',1,1,0),(5903,0,105284,'Belmiro Braga','Brazil','BR','Belmiro Braga (Brazil)',1,1,0),(5904,0,105285,'Belvedere','France','FR','Belvedere (France)',1,1,0),(5905,0,105286,'Benatek','Czech Republic','CZ','Benatek (Czech Republic)',1,1,0),(5906,0,105287,'Bengtsfors','Sweden','SE','Bengtsfors (Sweden)',1,1,0),(5907,0,105288,'Bentschen','Poland','PL','Bentschen (Poland)',1,1,0),(5908,0,105289,'Berceto','Italy','IT','Berceto (Italy)',1,1,0),(5909,0,105290,'Berdjansk','Ukraine','UA','Berdjansk (Ukraine)',1,1,0),(5910,0,105291,'Beremend','Uruguay','UY','Beremend (Uruguay)',1,1,0),(5911,0,105292,'Berrueco','Spain','ES','Berrueco (Spain)',1,1,0),(5912,0,105293,'Bettendorf','Luxembourg','LU','Bettendorf (Luxembourg)',1,1,0),(5913,0,105294,'Bezerros','Brazil','BR','Bezerros (Brazil)',1,1,0),(5914,0,105295,'Biassa','Italy','IT','Biassa (Italy)',1,1,0),(5915,0,105296,'Bingham','United Kingdom','UK','Bingham (United Kingdom)',1,1,0),(5916,0,105297,'Bisenz','Czech Republic','CZ','Bisenz (Czech Republic)',1,1,0),(5917,0,105298,'Bjasta','Sweden','SE','Bjasta (Sweden)',1,1,0),(5918,0,105299,'Blairgowrie','Australia','AU','Blairgowrie (Australia)',1,1,0),(5919,0,105300,'Blakesley','United Kingdom','UK','Blakesley (United Kingdom)',1,1,0),(5920,3423,105301,'Blenheim','Canada','CA','Blenheim (Canada)',1,1,0),(5921,0,105302,'Blowitz','Czech Republic','CZ','Blowitz (Czech Republic)',1,1,0),(5922,0,105303,'Blue Bell Hill','United Kingdom','UK','Blue Bell Hill (United Kingdom)',1,1,0),(5923,0,105304,'Boaco','Nicaragua','NI','Boaco (Nicaragua)',1,1,0),(5924,0,105305,'Bobbio Pellice','Italy','IT','Bobbio Pellice (Italy)',1,1,0),(5925,0,105306,'Borne Sulinowo','Poland','PL','Borne Sulinowo (Poland)',1,1,0),(5926,0,105307,'Borrowdale','United Kingdom','UK','Borrowdale (United Kingdom)',1,1,0),(5927,0,105308,'Boscoreale','Italy','IT','Boscoreale (Italy)',1,1,0),(5928,3749,105309,'Boscotrecase','Italy','IT','Boscotrecase (Italy)',1,1,0),(5929,3776,105310,'Bouaye','France','FR','Bouaye (France)',1,1,0),(5930,0,105311,'Bowen Island','Canada','CA','Bowen Island (Canada)',1,1,0),(5931,3870,105312,'Bowser','Canada','CA','Bowser (Canada)',1,1,0),(5932,0,105313,'Boyolali','Indonesia','ID','Boyolali (Indonesia)',1,1,0),(5933,0,105314,'Brallo di Pregola','Italy','IT','Brallo di Pregola (Italy)',1,1,0),(5934,0,105315,'Brandon','Australia','AU','Brandon (Australia)',1,1,0),(5935,0,105316,'Braniv','Ukraine','UA','Braniv (Ukraine)',1,1,0),(5936,0,105317,'Bridge End','Ireland','IE','Bridge End (Ireland)',1,1,0),(5937,0,105318,'Brits','South Africa','ZA','Brits (South Africa)',1,1,0),(5938,0,105319,'Brix','France','FR','Brix (France)',1,1,0),(5939,0,105320,'Brodnica Dolna','Poland','PL','Brodnica Dolna (Poland)',1,1,0),(5940,0,105321,'Broomhill','United Kingdom','UK','Broomhill (United Kingdom)',1,1,0),(5941,0,105322,'Broons','France','FR','Broons (France)',1,1,0),(5942,0,105323,'Browns Plains','Australia','AU','Browns Plains (Australia)',1,1,0),(5943,0,105324,'Brumadinho','Brazil','BR','Brumadinho (Brazil)',1,1,0),(5944,0,105325,'Brunegg','Switzerland','CH','Brunegg (Switzerland)',1,1,0),(5945,0,105326,'Bucovice','Czech Republic','CZ','Bucovice (Czech Republic)',1,1,0),(5946,0,105327,'Burbaguena','Spain','ES','Burbaguena (Spain)',1,1,0),(5947,0,105328,'Busk','Ukraine','UA','Busk (Ukraine)',1,1,0),(5948,0,105329,'Busuluk','Russia','RU','Busuluk (Russia)',1,1,0),(5949,0,105330,'Butscha','Ukraine','UA','Butscha (Ukraine)',1,1,0),(5950,0,105331,'Cabedelo','Brazil','BR','Cabedelo (Brazil)',1,1,0),(5951,0,105332,'Cabrerets','France','FR','Cabrerets (France)',1,1,0),(5952,0,105333,'Cadegliano','Italy','IT','Cadegliano (Italy)',1,1,0),(5953,0,105334,'Caetanopolis','Brazil','BR','Caetanopolis (Brazil)',1,1,0),(5954,0,105335,'Caianello Vecchio','Italy','IT','Caianello Vecchio (Italy)',1,1,0),(5955,0,105336,'Caleao','Spain','ES','Caleao (Spain)',1,1,0),(5956,0,105337,'Calimanesti','Romania','RO','Calimanesti (Romania)',1,1,0),(5957,0,105338,'Calliano','Italy','IT','Calliano (Italy)',1,1,0),(5958,0,105339,'Camlihemsin','Turkey','TR','Camlihemsin (Turkey)',1,1,0),(5959,0,105340,'Campan','France','FR','Campan (France)',1,1,0),(5960,0,105341,'Canoa','Ecuador','EC','Canoa (Ecuador)',1,1,0),(5961,0,105342,'Canove di Roana','Italy','IT','Canove di Roana (Italy)',1,1,0),(5962,0,105343,'Cap Aurora','Romania','RO','Cap Aurora (Romania)',1,1,0),(5963,0,105344,'Carlazzo','Italy','IT','Carlazzo (Italy)',1,1,0),(5964,0,105345,'Carmen de Carupa','Colombia','CO','Carmen de Carupa (Colombia)',1,1,0),(5965,0,105346,'Carrouges','France','FR','Carrouges (France)',1,1,0),(5966,0,105347,'Cartwright Settlement','Bahamas','BS','Cartwright Settlement (Bahamas)',1,1,0),(5967,0,105348,'Casale Corte Cerro','Italy','IT','Casale Corte Cerro (Italy)',1,1,0),(5968,0,105349,'Casamaria','Spain','ES','Casamaria (Spain)',1,1,0),(5969,0,105350,'Casillas de Berlanga','Spain','ES','Casillas de Berlanga (Spain)',1,1,0),(5970,5338,105351,'Cassaro','Italy','IT','Cassaro (Italy)',1,1,0),(5971,0,105352,'Castel Focognano','Italy','IT','Castel Focognano (Italy)',1,1,0),(5972,0,105353,'Castello di Cisterna','Italy','IT','Castello di Cisterna (Italy)',1,1,0),(5973,0,105354,'Castelltersol','Spain','ES','Castelltersol (Spain)',1,1,0),(5974,0,105355,'Castelnuovo Don Bosco','Italy','IT','Castelnuovo Don Bosco (Italy)',1,1,0),(5975,0,105356,'Castelnuvo Di Porto','Italy','IT','Castelnuvo Di Porto (Italy)',1,1,0),(5976,0,105357,'Casula','Australia','AU','Casula (Australia)',1,1,0),(5977,0,105358,'Ceibas','Argentina','AR','Ceibas (Argentina)',1,1,0),(5978,0,105359,'Cela','Portugal','PT','Cela (Portugal)',1,1,0),(5979,0,105360,'Celanova','Spain','ES','Celanova (Spain)',1,1,0),(5980,0,105361,'Ceppo Morelli','Italy','IT','Ceppo Morelli (Italy)',1,1,0),(5981,0,105362,'Cerete','Colombia','CO','Cerete (Colombia)',1,1,0),(5982,0,105363,'Cerezo de Abajo','Spain','ES','Cerezo de Abajo (Spain)',1,1,0),(5983,0,105364,'Cerignola','Italy','IT','Cerignola (Italy)',1,1,0),(5984,0,105365,'Cervaes','Portugal','PT','Cervaes (Portugal)',1,1,0),(5985,0,105366,'Cevio','Switzerland','CH','Cevio (Switzerland)',1,1,0),(5986,0,105367,'Champoton','Mexico','MX','Champoton (Mexico)',1,1,0),(5987,0,105368,'Champs (Puy-de-Dome)','France','FR','Champs (Puy-de-Dome) (France)',1,1,0),(5988,5798,105369,'Chantemerle','France','FR','Chantemerle (France)',1,1,0),(5989,0,105370,'Chantenay-Saint-Imbert','France','FR','Chantenay-Saint-Imbert (France)',1,1,0),(5990,0,105371,'Chardonnay','France','FR','Chardonnay (France)',1,1,0),(5991,0,105373,'Charlwood','Australia','AU','Charlwood (Australia)',1,1,0),(5992,0,105374,'Charron','France','FR','Charron (France)',1,1,0),(5993,0,105375,'Chedgrave','United Kingdom','UK','Chedgrave (United Kingdom)',1,1,0),(5994,0,105376,'Chenimenil','France','FR','Chenimenil (France)',1,1,0),(5995,0,105377,'Cherry Valley','Canada','CA','Cherry Valley (Canada)',1,1,0),(5996,0,105378,'Cherven','Bulgaria','BG','Cherven (Bulgaria)',1,1,0),(5997,0,105379,'Chevillon','France','FR','Chevillon (France)',1,1,0),(5998,0,105380,'Chinderah','Australia','AU','Chinderah (Australia)',1,1,0),(5999,0,105381,'Chmilnyk','Ukraine','UA','Chmilnyk (Ukraine)',1,1,0),(6000,0,105382,'Chuchuligovo','Bulgaria','BG','Chuchuligovo (Bulgaria)',1,1,0),(6001,0,105383,'Chunchi','Ecuador','EC','Chunchi (Ecuador)',1,1,0),(6002,0,105384,'Chvojnica','Slovakia','SK','Chvojnica (Slovakia)',1,1,0),(6003,0,105385,'Cinctorres','Spain','ES','Cinctorres (Spain)',1,1,0),(6004,6554,105386,'Cocagne','Canada','CA','Cocagne (Canada)',1,1,0),(6005,0,105387,'Beachburg','Canada','CA','Beachburg (Canada)',1,1,0),(6006,2701,105388,'Beenleigh','Australia','AU','Beenleigh (Australia)',1,1,0),(6007,0,105389,'Beerse','Belgium','BE','Beerse (Belgium)',1,1,0),(6008,0,105390,'Belashtitsa','Bulgaria','BG','Belashtitsa (Bulgaria)',1,1,0),(6009,0,105391,'Belene','Bulgaria','BG','Belene (Bulgaria)',1,1,0),(6010,0,105392,'Beliatta','Sri Lanka','LK','Beliatta (Sri Lanka)',1,1,0),(6011,2797,105393,'Bellac','France','FR','Bellac (France)',1,1,0),(6012,0,105394,'Belvi','Italy','IT','Belvi (Italy)',1,1,0),(6013,0,105396,'Berjosowski','Russia','RU','Berjosowski (Russia)',1,1,0),(6014,0,105397,'Berneau','Belgium','BE','Berneau (Belgium)',1,1,0),(6015,3086,105398,'Bettembourg','Luxembourg','LU','Bettembourg (Luxembourg)',1,1,0),(6016,0,105399,'Bezannes','France','FR','Bezannes (France)',1,1,0),(6017,0,105401,'Bhimeshwar','Nepal','NP','Bhimeshwar (Nepal)',1,1,0),(6018,0,105402,'Bidache','France','FR','Bidache (France)',1,1,0),(6019,0,105403,'Bila','Czech Republic','CZ','Bila (Czech Republic)',1,1,0),(6020,0,105404,'Bille','Latvia','LV','Bille (Latvia)',1,1,0),(6021,0,105405,'Bironico','Switzerland','CH','Bironico (Switzerland)',1,1,0),(6022,0,105406,'Birstwith','United Kingdom','UK','Birstwith (United Kingdom)',1,1,0),(6023,0,105407,'Birtinya','Australia','AU','Birtinya (Australia)',1,1,0),(6024,0,105408,'Bittern Lake','Canada','CA','Bittern Lake (Canada)',1,1,0),(6025,0,105409,'Blanzy','France','FR','Blanzy (France)',1,1,0),(6026,0,105410,'Blaricum','Netherlands','NL','Blaricum (Netherlands)',1,1,0),(6027,0,105411,'Blenio','Switzerland','CH','Blenio (Switzerland)',1,1,0),(6028,0,105412,'Blsany','Czech Republic','CZ','Blsany (Czech Republic)',1,1,0),(6029,0,105413,'Bobrova','Czech Republic','CZ','Bobrova (Czech Republic)',1,1,0),(6030,0,105414,'Bobrovecka Dolina','Slovakia','SK','Bobrovecka Dolina (Slovakia)',1,1,0),(6031,0,105415,'Bodalla','Australia','AU','Bodalla (Australia)',1,1,0),(6032,0,105416,'Bolanos de Calatrava','Spain','ES','Bolanos de Calatrava (Spain)',1,1,0),(6033,0,105417,'Fabrica di Roma','Italy','IT','Fabrica di Roma (Italy)',1,1,0),(6034,0,105418,'Faido','Switzerland','CH','Faido (Switzerland)',1,1,0),(6035,0,105419,'Faverolles-sur-Cher','France','FR','Faverolles-sur-Cher (France)',1,1,0),(6036,0,105420,'Feas','Spain','ES','Feas (Spain)',1,1,0),(6037,0,105421,'Feketitsch','Serbia','RS','Feketitsch (Serbia)',1,1,0),(6038,0,105422,'Feldebro','Hungary','HU','Feldebro (Hungary)',1,1,0),(6039,0,105423,'Felipe Carrillo Puerto','Mexico','MX','Felipe Carrillo Puerto (Mexico)',1,1,0),(6040,0,105424,'Florenceville-Bristol','Canada','CA','Florenceville-Bristol (Canada)',1,1,0),(6041,0,105425,'Fonolleres','Spain','ES','Fonolleres (Spain)',1,1,0),(6042,9616,105426,'Fontanellato','Italy','IT','Fontanellato (Italy)',1,1,0),(6043,0,105427,'Forcola','Italy','IT','Forcola (Italy)',1,1,0),(6044,0,105428,'Forni Avoltri','Italy','IT','Forni Avoltri (Italy)',1,1,0),(6045,0,105429,'Forno di Zoldo','Italy','IT','Forno di Zoldo (Italy)',1,1,0),(6046,0,105430,'Frangart','Italy','IT','Frangart (Italy)',1,1,0),(6047,0,105431,'Frankenstein in Schlesien','Poland','PL','Frankenstein in Schlesien (Poland)',1,1,0),(6048,0,105432,'Fraserburgh','United Kingdom','UK','Fraserburgh (United Kingdom)',1,1,0),(6049,0,105433,'Frauenburg','Latvia','LV','Frauenburg (Latvia)',1,1,0),(6050,9894,105434,'Frouard','France','FR','Frouard (France)',1,1,0),(6051,9910,105435,'Fuefuki','Japan','JP','Fuefuki (Japan)',1,1,0),(6052,0,105436,'Fujisato','Japan','JP','Fujisato (Japan)',1,1,0),(6053,9993,105437,'Fuzesgyarmat','Hungary','HU','Fuzesgyarmat (Hungary)',1,1,0),(6054,0,105438,'Fyresdal','Norway','NO','Fyresdal (Norway)',1,1,0),(6055,0,105439,'Chateauneuf-en-Auxois','France','FR','Chateauneuf-en-Auxois (France)',1,1,0),(6056,0,105440,'Chavaniac-Lafayette','France','FR','Chavaniac-Lafayette (France)',1,1,0),(6057,6024,105441,'Cherokee Sound','Bahamas','BS','Cherokee Sound (Bahamas)',1,1,0),(6058,0,105442,'Chignahuapan','Mexico','MX','Chignahuapan (Mexico)',1,1,0),(6059,0,105443,'Chikuma','Japan','JP','Chikuma (Japan)',1,1,0),(6060,0,105444,'Chiuro','Italy','IT','Chiuro (Italy)',1,1,0),(6061,0,105445,'Ciftehan','Turkey','TR','Ciftehan (Turkey)',1,1,0),(6062,0,105446,'Coalport','United Kingdom','UK','Coalport (United Kingdom)',1,1,0),(6063,0,105447,'Coana','Spain','ES','Coana (Spain)',1,1,0),(6064,0,105448,'Coe Hill','Canada','CA','Coe Hill (Canada)',1,1,0),(6065,0,105449,'Coex','France','FR','Coex (France)',1,1,0),(6066,0,105450,'Coffin Bay','Australia','AU','Coffin Bay (Australia)',1,1,0),(6067,0,105451,'Collevecchio','Italy','IT','Collevecchio (Italy)',1,1,0),(6068,0,105452,'Collyweston','United Kingdom','UK','Collyweston (United Kingdom)',1,1,0),(6069,0,105453,'Colombo','Brazil','BR','Colombo (Brazil)',1,1,0),(6070,0,105454,'Colyton','United Kingdom','UK','Colyton (United Kingdom)',1,1,0),(6071,6719,105455,'Comala','Mexico','MX','Comala (Mexico)',1,1,0),(6072,6722,105456,'Comano','Italy','IT','Comano (Italy)',1,1,0),(6073,0,105457,'Combressol','France','FR','Combressol (France)',1,1,0),(6074,0,105458,'Comeglians','Italy','IT','Comeglians (Italy)',1,1,0),(6075,0,105459,'Coral Cove','Australia','AU','Coral Cove (Australia)',1,1,0),(6076,0,105460,'Corunca','Romania','RO','Corunca (Romania)',1,1,0),(6077,0,105461,'Coscomatepec de Bravo','Mexico','MX','Coscomatepec de Bravo (Mexico)',1,1,0),(6078,0,105462,'Coudray','France','FR','Coudray (France)',1,1,0),(6079,0,105463,'Coya','Peru','PE','Coya (Peru)',1,1,0),(6080,0,105464,'Cravanzana','Italy','IT','Cravanzana (Italy)',1,1,0),(6081,0,105465,'Creemore','Canada','CA','Creemore (Canada)',1,1,0),(6082,0,105466,'Crespano del Grappa','Italy','IT','Crespano del Grappa (Italy)',1,1,0),(6083,0,105467,'Cristian','Romania','RO','Cristian (Romania)',1,1,0),(6084,0,105468,'Crondall','United Kingdom','UK','Crondall (United Kingdom)',1,1,0),(6085,0,105469,'Cua Dai Beach','Vietnam','VN','Cua Dai Beach (Vietnam)',1,1,0),(6086,0,105470,'Cuetzalan del Progreso','Mexico','MX','Cuetzalan del Progreso (Mexico)',1,1,0),(6087,0,105471,'Cukai','Malaysia','MY','Cukai (Malaysia)',1,1,0),(6088,0,105472,'Curanipe','Chile','CL','Curanipe (Chile)',1,1,0),(6089,0,105473,'Curramore','Australia','AU','Curramore (Australia)',1,1,0),(6090,0,105474,'Dagali','Norway','NO','Dagali (Norway)',1,1,0),(6091,0,105475,'Dankotuwa','Sri Lanka','LK','Dankotuwa (Sri Lanka)',1,1,0),(6092,0,105476,'Danzhou','China','CN','Danzhou (China)',1,1,0),(6093,0,105477,'Delhi','Canada','CA','Delhi (Canada)',1,1,0),(6094,0,105478,'Delph','United Kingdom','UK','Delph (United Kingdom)',1,1,0),(6095,0,105479,'Demjen','Hungary','HU','Demjen (Hungary)',1,1,0),(6096,0,105480,'Denezhnikovo','Russia','RU','Denezhnikovo (Russia)',1,1,0),(6097,0,105481,'Denu','Ghana','GH','Denu (Ghana)',1,1,0),(6098,0,105483,'Desborough','United Kingdom','UK','Desborough (United Kingdom)',1,1,0),(6099,0,105484,'Deutschland','Germany','DE','Deutschland (Germany)',1,1,0),(6100,0,105485,'Dilowe','Ukraine','UA','Dilowe (Ukraine)',1,1,0),(6101,0,105486,'Diourbel','Senegal','SN','Diourbel (Senegal)',1,1,0),(6102,0,105487,'Divnomorskoye','Russia','RU','Divnomorskoye (Russia)',1,1,0),(6103,0,105488,'Dobra','Germany','DE','Dobra (Germany)',1,1,0),(6104,8037,105489,'Donald','Australia','AU','Donald (Australia)',1,1,0),(6105,0,105490,'Dong Village','China','CN','Dong Village (China)',1,1,0),(6106,0,105491,'Donghae','South Korea','KR','Donghae (South Korea)',1,1,0),(6107,0,105492,'Doradal','Colombia','CO','Doradal (Colombia)',1,1,0),(6108,0,105493,'Dosquebradas','Colombia','CO','Dosquebradas (Colombia)',1,1,0),(6109,8128,105494,'Douvaine','France','FR','Douvaine (France)',1,1,0),(6110,0,105495,'Downham','United Kingdom','UK','Downham (United Kingdom)',1,1,0),(6111,0,105496,'Driebergen','Netherlands','NL','Driebergen (Netherlands)',1,1,0),(6112,0,105497,'Dubino','Italy','IT','Dubino (Italy)',1,1,0),(6113,0,105498,'Duddo','United Kingdom','UK','Duddo (United Kingdom)',1,1,0),(6114,0,105499,'Dunhua','China','CN','Dunhua (China)',1,1,0),(6115,0,105500,'Dunmore Town','Bahamas','BS','Dunmore Town (Bahamas)',1,1,0),(6116,0,105501,'Dunvegan','United Kingdom','UK','Dunvegan (United Kingdom)',1,1,0),(6117,0,105502,'Easington','United Kingdom','UK','Easington (United Kingdom)',1,1,0),(6118,0,105503,'Eaton','United Kingdom','UK','Eaton (United Kingdom)',1,1,0),(6119,0,105504,'Ebreuil','France','FR','Ebreuil (France)',1,1,0),(6120,0,105505,'Edern','United Kingdom','UK','Edern (United Kingdom)',1,1,0),(6121,0,105506,'Eeklo','Belgium','BE','Eeklo (Belgium)',1,1,0),(6122,8586,105507,'Eildon','Australia','AU','Eildon (Australia)',1,1,0),(6123,0,105508,'El Cardonal','Mexico','MX','El Cardonal (Mexico)',1,1,0),(6124,0,105509,'El Castillo','Nicaragua','NI','El Castillo (Nicaragua)',1,1,0),(6125,30891,105510,'El Espinar','Spain','ES','El Espinar (Spain)',1,1,0),(6126,0,105511,'El Guabo','Ecuador','EC','El Guabo (Ecuador)',1,1,0),(6127,0,105512,'El Masnou','Spain','ES','El Masnou (Spain)',1,1,0),(6128,0,105513,'El Mollar','Argentina','AR','El Mollar (Argentina)',1,1,0),(6129,0,105514,'El Remate','Guatemala','GT','El Remate (Guatemala)',1,1,0),(6130,8660,105515,'Elkford','Canada','CA','Elkford (Canada)',1,1,0),(6131,0,105516,'Emu Bay','Australia','AU','Emu Bay (Australia)',1,1,0),(6132,0,105517,'Engaru','Japan','JP','Engaru (Japan)',1,1,0),(6133,0,105518,'Ennezat','France','FR','Ennezat (France)',1,1,0),(6134,0,105519,'Erimo','Japan','JP','Erimo (Japan)',1,1,0),(6135,0,105520,'Esperia','Italy','IT','Esperia (Italy)',1,1,0),(6136,0,105521,'Estrablin','France','FR','Estrablin (France)',1,1,0),(6137,0,105522,'Falmouth','Australia','AU','Falmouth (Australia)',1,1,0),(6138,0,105523,'Falstone','United Kingdom','UK','Falstone (United Kingdom)',1,1,0),(6139,0,105524,'Fanlu',NULL,NULL,'Fanlu ()',1,1,0),(6140,0,105525,'Fanzolo di Vedelago','Italy','IT','Fanzolo di Vedelago (Italy)',1,1,0),(6141,9252,105526,'Farroupilha','Brazil','BR','Farroupilha (Brazil)',1,1,0),(6142,0,105527,'Felino','Italy','IT','Felino (Italy)',1,1,0),(6143,0,105528,'Kolpino','Russia','RU','Kolpino (Russia)',1,1,0),(6144,0,105529,'Kose','Estonia','EE','Kose (Estonia)',1,1,0),(6145,0,105530,'Koukos','Greece','GR','Koukos (Greece)',1,1,0),(6146,0,105531,'Kozyn','Ukraine','UA','Kozyn (Ukraine)',1,1,0),(6147,0,105532,'Krakovany','Slovakia','SK','Krakovany (Slovakia)',1,1,0),(6148,0,105533,'Kralova Lehota','Slovakia','SK','Kralova Lehota (Slovakia)',1,1,0),(6149,0,105534,'Kremenchug','Ukraine','UA','Kremenchug (Ukraine)',1,1,0),(6150,0,105535,'Krementschuk','Ukraine','UA','Krementschuk (Ukraine)',1,1,0),(6151,0,105536,'Krutenice','Czech Republic','CZ','Krutenice (Czech Republic)',1,1,0),(6152,0,105537,'Kuala Perlis','Malaysia','MY','Kuala Perlis (Malaysia)',1,1,0),(6153,0,105538,'Kucukkoy','Turkey','TR','Kucukkoy (Turkey)',1,1,0),(6154,0,105539,'Kukes','Albania','AL','Kukes (Albania)',1,1,0),(6155,0,105540,'Kurumoch','Russia','RU','Kurumoch (Russia)',1,1,0),(6156,0,105542,'Kyryliwka','Ukraine','UA','Kyryliwka (Ukraine)',1,1,0),(6157,0,105543,'La Adela','Argentina','AR','La Adela (Argentina)',1,1,0),(6158,0,105544,'La Chapelle-Caro','France','FR','La Chapelle-Caro (France)',1,1,0),(6159,0,105545,'La Garde Adhemar','France','FR','La Garde Adhemar (France)',1,1,0),(6160,0,105546,'La Haye-du-Puits','France','FR','La Haye-du-Puits (France)',1,1,0),(6161,0,105547,'La Pera','Spain','ES','La Pera (Spain)',1,1,0),(6162,0,105548,'La Pointe','Saint Lucia','LC','La Pointe (Saint Lucia)',1,1,0),(6163,31517,105549,'La Verriere','France','FR','La Verriere (France)',1,1,0),(6164,0,105550,'Lagodekhi','Georgia','GE','Lagodekhi (Georgia)',1,1,0),(6165,0,105551,'Lake Leake','Australia','AU','Lake Leake (Australia)',1,1,0),(6166,0,105552,'Lamastre','France','FR','Lamastre (France)',1,1,0),(6167,14933,105553,'Langeac','France','FR','Langeac (France)',1,1,0),(6168,0,105554,'La-ngu','Thailand','TH','La-ngu (Thailand)',1,1,0),(6169,0,105555,'Lanzada','Italy','IT','Lanzada (Italy)',1,1,0),(6170,0,105556,'Las Tablas','Panama','PA','Las Tablas (Panama)',1,1,0),(6171,0,105557,'Laurentian Hills','Canada','CA','Laurentian Hills (Canada)',1,1,0),(6172,0,105558,'Le Bessat','France','FR','Le Bessat (France)',1,1,0),(6173,0,105559,'Le Brugeron','France','FR','Le Brugeron (France)',1,1,0),(6174,0,105560,'Le Precheur','Martinique','MQ','Le Precheur (Martinique)',1,1,0),(6175,0,105561,'Le Roux','France','FR','Le Roux (France)',1,1,0),(6176,0,105562,'Le Tatre','France','FR','Le Tatre (France)',1,1,0),(6177,0,105563,'Le Theil','France','FR','Le Theil (France)',1,1,0),(6178,0,105564,'Lebesby','Norway','NO','Lebesby (Norway)',1,1,0),(6179,0,105565,'Ledbury','United Kingdom','UK','Ledbury (United Kingdom)',1,1,0),(6180,0,105566,'Ledesma','Spain','ES','Ledesma (Spain)',1,1,0),(6181,0,105567,'Leffond','France','FR','Leffond (France)',1,1,0),(6182,0,105568,'Lejre','Denmark','DK','Lejre (Denmark)',1,1,0),(6183,0,105569,'Lemiers','Netherlands','NL','Lemiers (Netherlands)',1,1,0),(6184,0,105570,'Les Eboulements','Canada','CA','Les Eboulements (Canada)',1,1,0),(6185,0,105571,'Les Loges','France','FR','Les Loges (France)',1,1,0),(6186,0,105572,'Lete','Nepal','NP','Lete (Nepal)',1,1,0),(6187,0,105573,'Liebenau','Germany','DE','Liebenau (Germany)',1,1,0),(6188,0,105574,'Liempde','Netherlands','NL','Liempde (Netherlands)',1,1,0),(6189,0,105575,'Lillebonne','France','FR','Lillebonne (France)',1,1,0),(6190,0,105576,'Linarejos','Spain','ES','Linarejos (Spain)',1,1,0),(6191,0,105577,'Lindefjell','Norway','NO','Lindefjell (Norway)',1,1,0),(6192,0,105578,'Linqing','China','CN','Linqing (China)',1,1,0),(6193,0,105579,'L\'Islet','Canada','CA','L\'Islet (Canada)',1,1,0),(6194,0,105580,'Little Coxwell','United Kingdom','UK','Little Coxwell (United Kingdom)',1,1,0),(6195,0,105581,'Little Pond','Canada','CA','Little Pond (Canada)',1,1,0),(6196,0,105582,'Livani','Latvia','LV','Livani (Latvia)',1,1,0),(6197,0,105583,'Livo','Italy','IT','Livo (Italy)',1,1,0),(6198,15689,105584,'Llagostera','Spain','ES','Llagostera (Spain)',1,1,0),(6199,0,105585,'Llangedwyn','United Kingdom','UK','Llangedwyn (United Kingdom)',1,1,0),(6200,0,105586,'Llangynog','United Kingdom','UK','Llangynog (United Kingdom)',1,1,0),(6201,0,105587,'Llanidoes','United Kingdom','UK','Llanidoes (United Kingdom)',1,1,0),(6202,0,105588,'Lobamba','Swaziland','SZ','Lobamba (Swaziland)',1,1,0),(6203,0,105589,'Long Wittenham','United Kingdom','UK','Long Wittenham (United Kingdom)',1,1,0),(6204,0,105590,'Longhope','United Kingdom','UK','Longhope (United Kingdom)',1,1,0),(6205,0,105591,'Loon','Philippines','PH','Loon (Philippines)',1,1,0),(6206,0,105592,'Hungry Head','Australia','AU','Hungry Head (Australia)',1,1,0),(6207,0,105593,'Hurdal','Norway','NO','Hurdal (Norway)',1,1,0),(6208,0,105594,'Hwagae','South Korea','KR','Hwagae (South Korea)',1,1,0),(6209,0,105595,'Hythe','Australia','AU','Hythe (Australia)',1,1,0),(6210,0,105596,'Ibiuna','Brazil','BR','Ibiuna (Brazil)',1,1,0),(6211,0,105597,'Igarape','Brazil','BR','Igarape (Brazil)',1,1,0),(6212,0,105598,'Ikeja','Nigeria','NG','Ikeja (Nigeria)',1,1,0),(6213,0,105599,'Ile Tudy','France','FR','Ile Tudy (France)',1,1,0),(6214,0,105600,'Ilha Comprida','Brazil','BR','Ilha Comprida (Brazil)',1,1,0),(6215,0,105601,'Ingaro - Lillangen','Sweden','SE','Ingaro - Lillangen (Sweden)',1,1,0),(6216,0,105602,'Insel Groix','France','FR','Insel Groix (France)',1,1,0),(6217,0,105603,'Ireshopeburn','United Kingdom','UK','Ireshopeburn (United Kingdom)',1,1,0),(6218,0,105604,'Irpin','Ukraine','UA','Irpin (Ukraine)',1,1,0),(6219,0,105605,'Isehara','Japan','JP','Isehara (Japan)',1,1,0),(6220,0,105606,'Itapoa','Brazil','BR','Itapoa (Brazil)',1,1,0),(6221,0,105607,'Itatiba','Brazil','BR','Itatiba (Brazil)',1,1,0),(6222,0,105608,'Ivoti','Brazil','BR','Ivoti (Brazil)',1,1,0),(6223,12945,105609,'Iwakuni','Japan','JP','Iwakuni (Japan)',1,1,0),(6224,0,105610,'Jackson Bridge','United Kingdom','UK','Jackson Bridge (United Kingdom)',1,1,0),(6225,0,105611,'Jaguarao','Brazil','BR','Jaguarao (Brazil)',1,1,0),(6226,0,105612,'Jakabszallas','Hungary','HU','Jakabszallas (Hungary)',1,1,0),(6227,0,105613,'Jalasjarvi','Finland','FI','Jalasjarvi (Finland)',1,1,0),(6228,0,105615,'Jamsankoski','Finland','FI','Jamsankoski (Finland)',1,1,0),(6229,0,105616,'Jarilla','Spain','ES','Jarilla (Spain)',1,1,0),(6230,13040,105617,'Jaroslaw','Poland','PL','Jaroslaw (Poland)',1,1,0),(6231,0,105619,'Jerez','Mexico','MX','Jerez (Mexico)',1,1,0),(6232,0,105620,'Jerico','Colombia','CO','Jerico (Colombia)',1,1,0),(6233,0,105621,'Jevicko','Czech Republic','CZ','Jevicko (Czech Republic)',1,1,0),(6234,0,105622,'Jeziory Wielkie','Poland','PL','Jeziory Wielkie (Poland)',1,1,0),(6235,0,105623,'Jiquipilas','Mexico','MX','Jiquipilas (Mexico)',1,1,0),(6236,0,105624,'Joal-Fadiout','Senegal','SN','Joal-Fadiout (Senegal)',1,1,0),(6237,0,105625,'Johnstown','Canada','CA','Johnstown (Canada)',1,1,0),(6238,0,105626,'Jucu de Sus','Romania','RO','Jucu de Sus (Romania)',1,1,0),(6239,0,105628,'Kadikoy','Turkey','TR','Kadikoy (Turkey)',1,1,0),(6240,13326,105629,'Kadina','Australia','AU','Kadina (Australia)',1,1,0),(6241,0,105630,'Kalangadoo','Australia','AU','Kalangadoo (Australia)',1,1,0),(6242,0,105631,'Kalaoya','Sri Lanka','LK','Kalaoya (Sri Lanka)',1,1,0),(6243,0,105632,'Kallithea Rhodes','Greece','GR','Kallithea Rhodes (Greece)',1,1,0),(6244,0,105634,'Kamenice-Ladvi','Czech Republic','CZ','Kamenice-Ladvi (Czech Republic)',1,1,0),(6245,0,105635,'Kampong Speu','Cambodia','KH','Kampong Speu (Cambodia)',1,1,0),(6246,0,105636,'Karabunar','Bulgaria','BG','Karabunar (Bulgaria)',1,1,0),(6247,0,105637,'Kardla','Estonia','EE','Kardla (Estonia)',1,1,0),(6248,0,105638,'Kawana Waters','Australia','AU','Kawana Waters (Australia)',1,1,0),(6249,0,105639,'Keewatin','Canada','CA','Keewatin (Canada)',1,1,0),(6250,0,105640,'Belval','France','FR','Belval (France)',1,1,0),(6251,0,105641,'Benesse-Maremne','France','FR','Benesse-Maremne (France)',1,1,0),(6252,0,105642,'Beni Suef','Egypt','EG','Beni Suef (Egypt)',1,1,0),(6253,0,105643,'Berg en Terblijt','Netherlands','NL','Berg en Terblijt (Netherlands)',1,1,0),(6254,0,105644,'Bergeggi','Italy','IT','Bergeggi (Italy)',1,1,0),(6255,0,105645,'Berry Springs','Australia','AU','Berry Springs (Australia)',1,1,0),(6256,0,105646,'Bethlehem','United Kingdom','UK','Bethlehem (United Kingdom)',1,1,0),(6257,0,105647,'Bettola','Italy','IT','Bettola (Italy)',1,1,0),(6258,0,105650,'Bikfaya','Lebanon','LB','Bikfaya (Lebanon)',1,1,0),(6259,0,105651,'Birini','Latvia','LV','Birini (Latvia)',1,1,0),(6260,0,105652,'Birobidzhan','Russia','RU','Birobidzhan (Russia)',1,1,0),(6261,0,105653,'Blackawton','United Kingdom','UK','Blackawton (United Kingdom)',1,1,0),(6262,0,105654,'Blagoweschtschensk','Russia','RU','Blagoweschtschensk (Russia)',1,1,0),(6263,0,105655,'Blonie','Poland','PL','Blonie (Poland)',1,1,0),(6264,0,105656,'Blue Mountain','Canada','CA','Blue Mountain (Canada)',1,1,0),(6265,0,105657,'Boadilla del Camino','Spain','ES','Boadilla del Camino (Spain)',1,1,0),(6266,0,105658,'Bogra','Bangladesh','BD','Bogra (Bangladesh)',1,1,0),(6267,0,105659,'Bolnisi','Georgia','GE','Bolnisi (Georgia)',1,1,0),(6268,0,105660,'Borghetto Di Borbera','Italy','IT','Borghetto Di Borbera (Italy)',1,1,0),(6269,0,105661,'Borghetto Santo Spirito','Italy','IT','Borghetto Santo Spirito (Italy)',1,1,0),(6270,0,105662,'Bosteri','Kyrgyzstan','KG','Bosteri (Kyrgyzstan)',1,1,0),(6271,0,105663,'Boulouris','France','FR','Boulouris (France)',1,1,0),(6272,0,105664,'Bova Marina','Italy','IT','Bova Marina (Italy)',1,1,0),(6273,0,105665,'Bozouls','France','FR','Bozouls (France)',1,1,0),(6274,0,105666,'Branscombe','United Kingdom','UK','Branscombe (United Kingdom)',1,1,0),(6275,3957,105667,'Braojos','Spain','ES','Braojos (Spain)',1,1,0),(6276,0,105668,'Braunsberg','Poland','PL','Braunsberg (Poland)',1,1,0),(6277,0,105669,'Bredaryd','Sweden','SE','Bredaryd (Sweden)',1,1,0),(6278,4020,105670,'Bremer Bay','Australia','AU','Bremer Bay (Australia)',1,1,0),(6279,4082,105671,'Bridgetown','Canada','CA','Bridgetown (Canada)',1,1,0),(6280,0,105672,'Brimpaen','Australia','AU','Brimpaen (Australia)',1,1,0),(6281,0,105673,'Broek in Waterland','Netherlands','NL','Broek in Waterland (Netherlands)',1,1,0),(6282,0,105674,'Bromfield','United Kingdom','UK','Bromfield (United Kingdom)',1,1,0),(6283,0,105675,'Brufut Heights','Gambia','GM','Brufut Heights (Gambia)',1,1,0),(6284,4286,105676,'Brunete','Spain','ES','Brunete (Spain)',1,1,0),(6285,0,105677,'Brzece','Serbia','RS','Brzece (Serbia)',1,1,0),(6286,0,105678,'Bujanda','Spain','ES','Bujanda (Spain)',1,1,0),(6287,0,105679,'Bulgaria','Bulgaria','BG','Bulgaria (Bulgaria)',1,1,0),(6288,0,105680,'Bullingen','Belgium','BE','Bullingen (Belgium)',1,1,0),(6289,0,105681,'Burgaz Adasi','Turkey','TR','Burgaz Adasi (Turkey)',1,1,0),(6290,0,105682,'Burgscheidungen','Germany','DE','Burgscheidungen (Germany)',1,1,0),(6291,0,105683,'Burgschwalbach','Germany','DE','Burgschwalbach (Germany)',1,1,0),(6292,0,105684,'Busot','Spain','ES','Busot (Spain)',1,1,0),(6293,0,105685,'Butwal','Nepal','NP','Butwal (Nepal)',1,1,0),(6294,0,105686,'Buyeo-gun','South Korea','KR','Buyeo-gun (South Korea)',1,1,0),(6295,0,105687,'Byfleet','United Kingdom','UK','Byfleet (United Kingdom)',1,1,0),(6296,0,105688,'Bykovice','Czech Republic','CZ','Bykovice (Czech Republic)',1,1,0),(6297,0,105689,'Cabuya','Costa Rica','CR','Cabuya (Costa Rica)',1,1,0),(6298,0,105690,'Cairu','Brazil','BR','Cairu (Brazil)',1,1,0),(6299,4756,105691,'Caldera','Chile','CL','Caldera (Chile)',1,1,0),(6300,0,105692,'Calvanico','Italy','IT','Calvanico (Italy)',1,1,0),(6301,0,105693,'Camamu','Brazil','BR','Camamu (Brazil)',1,1,0),(6302,0,105694,'Cambutal','Panama','PA','Cambutal (Panama)',1,1,0),(6303,0,105695,'Campbellford','Canada','CA','Campbellford (Canada)',1,1,0),(6304,0,105696,'Campina','Romania','RO','Campina (Romania)',1,1,0),(6305,0,105697,'Campodolcino','Italy','IT','Campodolcino (Italy)',1,1,0),(6306,0,105698,'Camucia','Italy','IT','Camucia (Italy)',1,1,0),(6307,0,105700,'Capao Bonito','Brazil','BR','Capao Bonito (Brazil)',1,1,0),(6308,0,105701,'Capesterre-Belle-Eau','Guadeloupe','GP','Capesterre-Belle-Eau (Guadeloupe)',1,1,0),(6309,0,105702,'Caramagna Piemonte','Italy','IT','Caramagna Piemonte (Italy)',1,1,0),(6310,0,105703,'Carandai','Brazil','BR','Carandai (Brazil)',1,1,0),(6311,0,105704,'Carcoar','Australia','AU','Carcoar (Australia)',1,1,0),(6312,0,105705,'Cardington','United Kingdom','UK','Cardington (United Kingdom)',1,1,0),(6313,0,105706,'Carmignano di Brenta','Italy','IT','Carmignano di Brenta (Italy)',1,1,0),(6314,0,105707,'Carrion de Calatrava','Spain','ES','Carrion de Calatrava (Spain)',1,1,0),(6315,0,105708,'Carrizo de la Ribera','Spain','ES','Carrizo de la Ribera (Spain)',1,1,0),(6316,0,105709,'Carstairs','United Kingdom','UK','Carstairs (United Kingdom)',1,1,0),(6317,0,105710,'Caseres','Spain','ES','Caseres (Spain)',1,1,0),(6318,0,105711,'Castell\'Alfero','Italy','IT','Castell\'Alfero (Italy)',1,1,0),(6319,0,105712,'Castelpetroso','Italy','IT','Castelpetroso (Italy)',1,1,0),(6320,0,105713,'Castelvetro Piacentino','Italy','IT','Castelvetro Piacentino (Italy)',1,1,0),(6321,0,105714,'Castendolo','Italy','IT','Castendolo (Italy)',1,1,0),(6322,0,105715,'Castillazuelo','Spain','ES','Castillazuelo (Spain)',1,1,0),(6323,0,105716,'Cenac','France','FR','Cenac (France)',1,1,0),(6324,0,105717,'Cerea','Italy','IT','Cerea (Italy)',1,1,0),(6325,0,105718,'Ceresole Reale','Italy','IT','Ceresole Reale (Italy)',1,1,0),(6326,0,105719,'Cervieres','France','FR','Cervieres (France)',1,1,0),(6327,0,105720,'Challand-Saint-Anselme','Italy','IT','Challand-Saint-Anselme (Italy)',1,1,0),(6328,0,105722,'Changdao','China','CN','Changdao (China)',1,1,0),(6329,0,105723,'Changmoi','Thailand','TH','Changmoi (Thailand)',1,1,0),(6330,0,105724,'Belomorsk','Russia','RU','Belomorsk (Russia)',1,1,0),(6331,0,105725,'Belvaux','Belgium','BE','Belvaux (Belgium)',1,1,0),(6332,0,105726,'Belwood','Canada','CA','Belwood (Canada)',1,1,0),(6333,0,105727,'Berehove','Ukraine','UA','Berehove (Ukraine)',1,1,0),(6334,0,105728,'Berkovitsa','Bulgaria','BG','Berkovitsa (Bulgaria)',1,1,0),(6335,0,105729,'Beska','Serbia','RS','Beska (Serbia)',1,1,0),(6336,0,105730,'Bessines (Deux-Sevres)','France','FR','Bessines (Deux-Sevres) (France)',1,1,0),(6337,0,105731,'Bettyhill','United Kingdom','UK','Bettyhill (United Kingdom)',1,1,0),(6338,0,105732,'Beuil','France','FR','Beuil (France)',1,1,0),(6339,0,105733,'Bewong','Australia','AU','Bewong (Australia)',1,1,0),(6340,0,105735,'Bianze','Italy','IT','Bianze (Italy)',1,1,0),(6341,0,105737,'Bingil Bay','Australia','AU','Bingil Bay (Australia)',1,1,0),(6342,0,105738,'Binhai','China','CN','Binhai (China)',1,1,0),(6343,0,105739,'Birdham','United Kingdom','UK','Birdham (United Kingdom)',1,1,0),(6344,0,105740,'Biritiba-Mirim','Brazil','BR','Biritiba-Mirim (Brazil)',1,1,0),(6345,0,105741,'Bitozeves','Czech Republic','CZ','Bitozeves (Czech Republic)',1,1,0),(6346,0,105742,'Bizovac','Croatia','HR','Bizovac (Croatia)',1,1,0),(6347,0,105743,'Blatna','Czech Republic','CZ','Blatna (Czech Republic)',1,1,0),(6348,0,105744,'Blayney','Australia','AU','Blayney (Australia)',1,1,0),(6349,0,105745,'Bliesdorf','Germany','DE','Bliesdorf (Germany)',1,1,0),(6350,0,105746,'Blomstermala','Sweden','SE','Blomstermala (Sweden)',1,1,0),(6351,0,105747,'Bogacs','Hungary','HU','Bogacs (Hungary)',1,1,0),(6352,0,105748,'Bohmisch Brod','Czech Republic','CZ','Bohmisch Brod (Czech Republic)',1,1,0),(6353,0,105749,'Boleslawiec (Powiat Wieruszowski)','Poland','PL','Boleslawiec (Powiat Wieruszowski) (Poland)',1,1,0),(6354,0,105750,'Cotignac','France','FR','Cotignac (France)',1,1,0),(6355,0,105751,'Cowaramup','Australia','AU','Cowaramup (Australia)',1,1,0),(6356,0,105752,'Crabbes Creek','Australia','AU','Crabbes Creek (Australia)',1,1,0),(6357,0,105753,'Cranborne','United Kingdom','UK','Cranborne (United Kingdom)',1,1,0),(6358,0,105754,'Cranleigh','United Kingdom','UK','Cranleigh (United Kingdom)',1,1,0),(6359,0,105755,'Craven Arms','United Kingdom','UK','Craven Arms (United Kingdom)',1,1,0),(6360,0,105756,'Cravinhos','Brazil','BR','Cravinhos (Brazil)',1,1,0),(6361,0,105757,'Crescent Head','Australia','AU','Crescent Head (Australia)',1,1,0),(6362,0,105758,'Crevin','France','FR','Crevin (France)',1,1,0),(6363,0,105759,'Crosskeys','United Kingdom','UK','Crosskeys (United Kingdom)',1,1,0),(6364,0,105760,'Crouy','France','FR','Crouy (France)',1,1,0),(6365,0,105761,'Cucunuba','Colombia','CO','Cucunuba (Colombia)',1,1,0),(6366,0,105762,'Curaglia','Switzerland','CH','Curaglia (Switzerland)',1,1,0),(6367,0,105763,'Currency Creek','Australia','AU','Currency Creek (Australia)',1,1,0),(6368,0,105764,'Curugrendeng','Indonesia','ID','Curugrendeng (Indonesia)',1,1,0),(6369,0,105765,'Dabrowa Gornicza','Poland','PL','Dabrowa Gornicza (Poland)',1,1,0),(6370,7489,105766,'Dallikon','Switzerland','CH','Dallikon (Switzerland)',1,1,0),(6371,7514,105767,'Dampier','Australia','AU','Dampier (Australia)',1,1,0),(6372,0,105768,'Danli','Honduras','HN','Danli (Honduras)',1,1,0),(6373,0,105769,'Darnetal','France','FR','Darnetal (France)',1,1,0),(6374,0,105770,'Davoli','Italy','IT','Davoli (Italy)',1,1,0),(6375,0,105771,'Dazhai','China','CN','Dazhai (China)',1,1,0),(6376,0,105772,'Debar','Macedonia','MK','Debar (Macedonia)',1,1,0),(6377,7649,105773,'Debica','Poland','PL','Debica (Poland)',1,1,0),(6378,0,105774,'Dederkoi','Russia','RU','Dederkoi (Russia)',1,1,0),(6379,7702,105775,'Delices','Dominica','DM','Delices (Dominica)',1,1,0),(6380,0,105776,'Demirkapi',NULL,NULL,'Demirkapi ()',1,1,0),(6381,0,105777,'Denholm','United Kingdom','UK','Denholm (United Kingdom)',1,1,0),(6382,0,105778,'Desa Sebatu','Indonesia','ID','Desa Sebatu (Indonesia)',1,1,0),(6383,7875,105780,'Dieren','Netherlands','NL','Dieren (Netherlands)',1,1,0),(6384,0,105781,'Dolna Strehova','Slovakia','SK','Dolna Strehova (Slovakia)',1,1,0),(6385,0,105782,'Dolores','Guatemala','GT','Dolores (Guatemala)',1,1,0),(6386,0,105783,'Dolores','Nicaragua','NI','Dolores (Nicaragua)',1,1,0),(6387,0,105784,'Domodedowo','Russia','RU','Domodedowo (Russia)',1,1,0),(6388,0,105785,'Dongjum','Netherlands','NL','Dongjum (Netherlands)',1,1,0),(6389,0,105786,'Dongtan','South Korea','KR','Dongtan (South Korea)',1,1,0),(6390,0,105787,'Dosso del Liro','Italy','IT','Dosso del Liro (Italy)',1,1,0),(6391,0,105788,'Douma','Lebanon','LB','Douma (Lebanon)',1,1,0),(6392,0,105789,'Dubnica nad Vahom','Slovakia','SK','Dubnica nad Vahom (Slovakia)',1,1,0),(6393,0,105790,'Duitama','Colombia','CO','Duitama (Colombia)',1,1,0),(6394,0,105791,'Dun Les Places','France','FR','Dun Les Places (France)',1,1,0),(6395,0,105792,'Dwikozy','Poland','PL','Dwikozy (Poland)',1,1,0),(6396,0,105793,'Dziarzynsk','Belarus','BY','Dziarzynsk (Belarus)',1,1,0),(6397,8410,105794,'Earlville','Australia','AU','Earlville (Australia)',1,1,0),(6398,0,105795,'Eastman','Canada','CA','Eastman (Canada)',1,1,0),(6399,0,105796,'Edenbridge','United Kingdom','UK','Edenbridge (United Kingdom)',1,1,0),(6400,0,105797,'Edsleskog','Sweden','SE','Edsleskog (Sweden)',1,1,0),(6401,0,105798,'Ehnen','Luxembourg','LU','Ehnen (Luxembourg)',1,1,0),(6402,0,105799,'Ekmul','Mexico','MX','Ekmul (Mexico)',1,1,0),(6403,0,105800,'El Castillo','Costa Rica','CR','El Castillo (Costa Rica)',1,1,0),(6404,0,105801,'El Coacoyul','Mexico','MX','El Coacoyul (Mexico)',1,1,0),(6405,0,105802,'El Pino','Spain','ES','El Pino (Spain)',1,1,0),(6406,0,105803,'Elton','United Kingdom','UK','Elton (United Kingdom)',1,1,0),(6407,0,105804,'Elvington','United Kingdom','UK','Elvington (United Kingdom)',1,1,0),(6408,0,105805,'Elxleben','Germany','DE','Elxleben (Germany)',1,1,0),(6409,0,105806,'Etropole','Bulgaria','BG','Etropole (Bulgaria)',1,1,0),(6410,0,105807,'Gaesti','Romania','RO','Gaesti (Romania)',1,1,0),(6411,0,105808,'Gampaha','Sri Lanka','LK','Gampaha (Sri Lanka)',1,1,0),(6412,0,105809,'Gerroa','Australia','AU','Gerroa (Australia)',1,1,0),(6413,0,105810,'Ghayathi','United Arab Emirates','AE','Ghayathi (United Arab Emirates)',1,1,0),(6414,0,105811,'Gibellina','Italy','IT','Gibellina (Italy)',1,1,0),(6415,0,105812,'Giddeahall','United Kingdom','UK','Giddeahall (United Kingdom)',1,1,0),(6416,0,105813,'Gigondas','France','FR','Gigondas (France)',1,1,0),(6417,0,105814,'Gisors','France','FR','Gisors (France)',1,1,0),(6418,0,105815,'Gitura','Kenya','KE','Gitura (Kenya)',1,1,0),(6419,0,105816,'Giuggianello','Italy','IT','Giuggianello (Italy)',1,1,0),(6420,0,105817,'Gjakova','Serbia','RS','Gjakova (Serbia)',1,1,0),(6421,0,105819,'Gleize','France','FR','Gleize (France)',1,1,0),(6422,0,105820,'Glenaire','Australia','AU','Glenaire (Australia)',1,1,0),(6423,0,105821,'Gloria de Dourados','Brazil','BR','Gloria de Dourados (Brazil)',1,1,0),(6424,0,105822,'Godbout','Canada','CA','Godbout (Canada)',1,1,0),(6425,0,105823,'Gol Gol','Australia','AU','Gol Gol (Australia)',1,1,0),(6426,0,105824,'Grand Bay','Dominica','DM','Grand Bay (Dominica)',1,1,0),(6427,0,105825,'Great Ryburgh','United Kingdom','UK','Great Ryburgh (United Kingdom)',1,1,0),(6428,0,105826,'Great Warley','United Kingdom','UK','Great Warley (United Kingdom)',1,1,0),(6429,0,105827,'Green Head','Australia','AU','Green Head (Australia)',1,1,0),(6430,0,105828,'Greifenstein','Germany','DE','Greifenstein (Germany)',1,1,0),(6431,0,105829,'Gretna','United Kingdom','UK','Gretna (United Kingdom)',1,1,0),(6432,11128,105830,'Guardia Piemontese','Italy','IT','Guardia Piemontese (Italy)',1,1,0),(6433,0,105831,'Gubkin','Russia','RU','Gubkin (Russia)',1,1,0),(6434,0,105833,'Gunjur','Gambia','GM','Gunjur (Gambia)',1,1,0),(6435,0,105834,'Gunthorpe','United Kingdom','UK','Gunthorpe (United Kingdom)',1,1,0),(6436,0,105835,'Guzman','Spain','ES','Guzman (Spain)',1,1,0),(6437,0,105836,'Hajduboszormeny','Hungary','HU','Hajduboszormeny (Hungary)',1,1,0),(6438,0,105837,'Hammar','Sweden','SE','Hammar (Sweden)',1,1,0),(6439,0,105839,'Hanwella','Sri Lanka','LK','Hanwella (Sri Lanka)',1,1,0),(6440,0,105840,'Harcourt','Canada','CA','Harcourt (Canada)',1,1,0),(6441,11527,105841,'Harfleur','France','FR','Harfleur (France)',1,1,0),(6442,0,105842,'Hauterives','France','FR','Hauterives (France)',1,1,0),(6443,11659,105843,'Havelock North','New Zealand','NZ','Havelock North (New Zealand)',1,1,0),(6444,0,105844,'Hedley','Canada','CA','Hedley (Canada)',1,1,0),(6445,11881,105845,'Herblay','France','FR','Herblay (France)',1,1,0),(6446,0,105846,'Heriot Bay','Canada','CA','Heriot Bay (Canada)',1,1,0),(6447,0,105847,'Hermanville','Canada','CA','Hermanville (Canada)',1,1,0),(6448,0,105848,'Heytesbury','United Kingdom','UK','Heytesbury (United Kingdom)',1,1,0),(6449,0,105849,'Hindeloopen','Netherlands','NL','Hindeloopen (Netherlands)',1,1,0),(6450,0,105851,'Hnanice','Czech Republic','CZ','Hnanice (Czech Republic)',1,1,0),(6451,12114,105852,'Hochrindl','Austria','AT','Hochrindl (Austria)',1,1,0),(6452,0,105853,'Hodatsushimizu','Japan','JP','Hodatsushimizu (Japan)',1,1,0),(6453,0,105854,'Hoek van Holland','Netherlands','NL','Hoek van Holland (Netherlands)',1,1,0),(6454,0,105855,'Hofors','Sweden','SE','Hofors (Sweden)',1,1,0),(6455,0,105856,'Hopefield','Barbados','BB','Hopefield (Barbados)',1,1,0),(6456,0,105857,'Hormigos','Spain','ES','Hormigos (Spain)',1,1,0),(6457,0,105858,'Horndon','United Kingdom','UK','Horndon (United Kingdom)',1,1,0),(6458,0,105859,'Hornillos del Camino-Isar','Spain','ES','Hornillos del Camino-Isar (Spain)',1,1,0),(6459,0,105860,'Howlong','Australia','AU','Howlong (Australia)',1,1,0),(6460,0,105861,'Hronov','Czech Republic','CZ','Hronov (Czech Republic)',1,1,0),(6461,0,105862,'Hrubieszow','Poland','PL','Hrubieszow (Poland)',1,1,0),(6462,0,105863,'Huancavelica','Peru','PE','Huancavelica (Peru)',1,1,0),(6463,0,105864,'Huangshan Scenic Area','China','CN','Huangshan Scenic Area (China)',1,1,0),(6464,0,105865,'Hulland Ward','United Kingdom','UK','Hulland Ward (United Kingdom)',1,1,0),(6465,0,105866,'Hulsberg','Netherlands','NL','Hulsberg (Netherlands)',1,1,0),(6466,0,105867,'Humniska','Poland','PL','Humniska (Poland)',1,1,0),(6467,0,105868,'Hvide Sande','Denmark','DK','Hvide Sande (Denmark)',1,1,0),(6468,0,105869,'Hvoyna','Bulgaria','BG','Hvoyna (Bulgaria)',1,1,0),(6469,0,105870,'Igliano','Italy','IT','Igliano (Italy)',1,1,0),(6470,0,105871,'Iiyama','Japan','JP','Iiyama (Japan)',1,1,0),(6471,12618,105872,'Ikeda','Japan','JP','Ikeda (Japan)',1,1,0),(6472,0,105873,'Ile a Vache','Haiti','HT','Ile a Vache (Haiti)',1,1,0),(6473,0,105874,'Iporanga','Brazil','BR','Iporanga (Brazil)',1,1,0),(6474,0,105875,'Ishinomaki','Japan','JP','Ishinomaki (Japan)',1,1,0),(6475,0,105876,'Ismajil','Ukraine','UA','Ismajil (Ukraine)',1,1,0),(6476,0,105877,'Itaguai','Brazil','BR','Itaguai (Brazil)',1,1,0),(6477,0,105878,'Iwonicz-Zdroj','Poland','PL','Iwonicz-Zdroj (Poland)',1,1,0),(6478,12962,105879,'Iznik','Turkey','TR','Iznik (Turkey)',1,1,0),(6479,0,105880,'Jablonne v Podjestedi','Czech Republic','CZ','Jablonne v Podjestedi (Czech Republic)',1,1,0),(6480,0,105881,'Jackeys Marsh','Australia','AU','Jackeys Marsh (Australia)',1,1,0),(6481,0,105882,'Jacobina','Brazil','BR','Jacobina (Brazil)',1,1,0),(6482,0,105883,'Jarnoltowek','Poland','PL','Jarnoltowek (Poland)',1,1,0),(6483,0,105884,'Jedovnice','Czech Republic','CZ','Jedovnice (Czech Republic)',1,1,0),(6484,13210,105886,'Jombang','Indonesia','ID','Jombang (Indonesia)',1,1,0),(6485,0,105887,'Jumurda','Latvia','LV','Jumurda (Latvia)',1,1,0),(6486,0,105888,'Kaisiadorys','Lithuania','LT','Kaisiadorys (Lithuania)',1,1,0),(6487,0,105889,'Kaliste','Czech Republic','CZ','Kaliste (Czech Republic)',1,1,0),(6488,0,105890,'Fittleworth','United Kingdom','UK','Fittleworth (United Kingdom)',1,1,0),(6489,0,105891,'Fleninge','Sweden','SE','Fleninge (Sweden)',1,1,0),(6490,0,105892,'Florencia','Costa Rica','CR','Florencia (Costa Rica)',1,1,0),(6491,0,105893,'Fontaines','France','FR','Fontaines (France)',1,1,0),(6492,0,105894,'Forchia','Italy','IT','Forchia (Italy)',1,1,0),(6493,0,105895,'Forlimpopoli','Italy','IT','Forlimpopoli (Italy)',1,1,0),(6494,0,105897,'Fricovce','Slovakia','SK','Fricovce (Slovakia)',1,1,0),(6495,0,105898,'Frinton-on-Sea','United Kingdom','UK','Frinton-on-Sea (United Kingdom)',1,1,0),(6496,0,105899,'Furudal','Sweden','SE','Furudal (Sweden)',1,1,0),(6497,0,105900,'Gabarret','France','FR','Gabarret (France)',1,1,0),(6498,0,105901,'Gargantilla del Lozoya','Spain','ES','Gargantilla del Lozoya (Spain)',1,1,0),(6499,0,105902,'Garzeno','Italy','IT','Garzeno (Italy)',1,1,0),(6500,0,105903,'Gateshead','Australia','AU','Gateshead (Australia)',1,1,0),(6501,0,105904,'Gavrelle','France','FR','Gavrelle (France)',1,1,0),(6502,0,105905,'Gawler','Australia','AU','Gawler (Australia)',1,1,0),(6503,0,105906,'Gazzaniga (Lombardei)','Italy','IT','Gazzaniga (Lombardei) (Italy)',1,1,0),(6504,0,105907,'General Luna (Cabuntog)','Philippines','PH','General Luna (Cabuntog) (Philippines)',1,1,0),(6505,0,105908,'Genolhac','France','FR','Genolhac (France)',1,1,0),(6506,0,105909,'Gerchiki','Russia','RU','Gerchiki (Russia)',1,1,0),(6507,0,105910,'Gerola Alta','Italy','IT','Gerola Alta (Italy)',1,1,0),(6508,0,105911,'Gili Sudak','Indonesia','ID','Gili Sudak (Indonesia)',1,1,0),(6509,0,105912,'Gogolin','Poland','PL','Gogolin (Poland)',1,1,0),(6510,0,105913,'Goianesia do Para','Brazil','BR','Goianesia do Para (Brazil)',1,1,0),(6511,0,105914,'Goiatuba','Brazil','BR','Goiatuba (Brazil)',1,1,0),(6512,0,105915,'Goldmorawitz','Slovakia','SK','Goldmorawitz (Slovakia)',1,1,0),(6513,0,105916,'Golovinka','Russia','RU','Golovinka (Russia)',1,1,0),(6514,0,105917,'Golubitskaya','Russia','RU','Golubitskaya (Russia)',1,1,0),(6515,0,105918,'Gotene','Sweden','SE','Gotene (Sweden)',1,1,0),(6516,0,105919,'Goudargues','France','FR','Goudargues (France)',1,1,0),(6517,0,105920,'Govedartsi','Bulgaria','BG','Govedartsi (Bulgaria)',1,1,0),(6518,0,105921,'Granity','New Zealand','NZ','Granity (New Zealand)',1,1,0),(6519,0,105922,'Greens Beach','Australia','AU','Greens Beach (Australia)',1,1,0),(6520,0,105923,'Grignasco','Italy','IT','Grignasco (Italy)',1,1,0),(6521,0,105924,'Grigoleti','Georgia','GE','Grigoleti (Georgia)',1,1,0),(6522,0,105925,'Grinaiciai','Lithuania','LT','Grinaiciai (Lithuania)',1,1,0),(6523,0,105926,'Grinzane Cavour','Italy','IT','Grinzane Cavour (Italy)',1,1,0),(6524,0,105927,'Grose Vale','Australia','AU','Grose Vale (Australia)',1,1,0),(6525,0,105928,'Guajiru','Brazil','BR','Guajiru (Brazil)',1,1,0),(6526,0,105929,'Gualaceo','Ecuador','EC','Gualaceo (Ecuador)',1,1,0),(6527,11120,105930,'Guararema','Brazil','BR','Guararema (Brazil)',1,1,0),(6528,0,105931,'Guarene','Italy','IT','Guarene (Italy)',1,1,0),(6529,0,105932,'Guaxupe','Brazil','BR','Guaxupe (Brazil)',1,1,0),(6530,0,105933,'Gunpo','South Korea','KR','Gunpo (South Korea)',1,1,0),(6531,0,105934,'Gura Siriului','Romania','RO','Gura Siriului (Romania)',1,1,0),(6532,0,105935,'Gwelup','Australia','AU','Gwelup (Australia)',1,1,0),(6533,0,105936,'Gyulyovtsa','Bulgaria','BG','Gyulyovtsa (Bulgaria)',1,1,0),(6534,31092,105937,'Ha Tinh','Vietnam','VN','Ha Tinh (Vietnam)',1,1,0),(6535,0,105938,'Haag an der Amper','Germany','DE','Haag an der Amper (Germany)',1,1,0),(6536,0,105939,'Hacksvik','Sweden','SE','Hacksvik (Sweden)',1,1,0),(6537,0,105940,'Hajdunanas','Hungary','HU','Hajdunanas (Hungary)',1,1,0),(6538,0,105941,'Haliday Bay','Australia','AU','Haliday Bay (Australia)',1,1,0),(6539,0,105942,'Hauho','Finland','FI','Hauho (Finland)',1,1,0),(6540,0,105943,'Haute-Goulaine','France','FR','Haute-Goulaine (France)',1,1,0),(6541,11682,105944,'Hawally','Kuwait','KW','Hawally (Kuwait)',1,1,0),(6542,0,105945,'Hawks Nest','Australia','AU','Hawks Nest (Australia)',1,1,0),(6543,0,105946,'Hayange','France','FR','Hayange (France)',1,1,0),(6544,11729,105947,'Hazerswoude-Rijndijk','Netherlands','NL','Hazerswoude-Rijndijk (Netherlands)',1,1,0),(6545,0,105948,'Heffingen','Luxembourg','LU','Heffingen (Luxembourg)',1,1,0),(6546,0,105949,'Hegyeshalom','Hungary','HU','Hegyeshalom (Hungary)',1,1,0),(6547,0,105950,'Heidal','Norway','NO','Heidal (Norway)',1,1,0),(6548,0,105951,'Heiligenkreuz','Slovakia','SK','Heiligenkreuz (Slovakia)',1,1,0),(6549,0,105952,'Henitscheska Hirka','Ukraine','UA','Henitscheska Hirka (Ukraine)',1,1,0),(6550,0,105953,'Higuera la Real','Spain','ES','Higuera la Real (Spain)',1,1,0),(6551,0,105954,'Hinojosa Del Duque','Spain','ES','Hinojosa Del Duque (Spain)',1,1,0),(6552,0,105955,'Hoddesdon','United Kingdom','UK','Hoddesdon (United Kingdom)',1,1,0),(6553,0,105956,'Hodnet','United Kingdom','UK','Hodnet (United Kingdom)',1,1,0),(6554,0,105957,'Honeymoon Bay','Canada','CA','Honeymoon Bay (Canada)',1,1,0),(6555,0,105958,'Hopeman','United Kingdom','UK','Hopeman (United Kingdom)',1,1,0),(6556,0,105959,'Horden','United Kingdom','UK','Horden (United Kingdom)',1,1,0),(6557,0,105960,'Horovice','Czech Republic','CZ','Horovice (Czech Republic)',1,1,0),(6558,0,105961,'Huhdasjarvi','Finland','FI','Huhdasjarvi (Finland)',1,1,0),(6559,0,105962,'Huish Episcopi','United Kingdom','UK','Huish Episcopi (United Kingdom)',1,1,0),(6560,0,105963,'Hyllinge','Sweden','SE','Hyllinge (Sweden)',1,1,0),(6561,0,105964,'Iecava','Latvia','LV','Iecava (Latvia)',1,1,0),(6562,0,105965,'Igatu','Brazil','BR','Igatu (Brazil)',1,1,0),(6563,0,105966,'Ilmajoki','Finland','FI','Ilmajoki (Finland)',1,1,0),(6564,0,105967,'Imbe','Brazil','BR','Imbe (Brazil)',1,1,0),(6565,0,105968,'Immensee','Switzerland','CH','Immensee (Switzerland)',1,1,0),(6566,0,105969,'Inman Valley','Australia','AU','Inman Valley (Australia)',1,1,0),(6567,0,105970,'Isiolo','Kenya','KE','Isiolo (Kenya)',1,1,0),(6568,0,105971,'Isle of Colonsay','United Kingdom','UK','Isle of Colonsay (United Kingdom)',1,1,0),(6569,0,105972,'Fersen im Suganertal','Italy','IT','Fersen im Suganertal (Italy)',1,1,0),(6570,0,105973,'Firminy','France','FR','Firminy (France)',1,1,0),(6571,0,105974,'Fisciano','Italy','IT','Fisciano (Italy)',1,1,0),(6572,0,105975,'Clones','Ireland','IE','Clones (Ireland)',1,1,0),(6573,0,105976,'Clutton','United Kingdom','UK','Clutton (United Kingdom)',1,1,0),(6574,0,105977,'Coccaglio','Italy','IT','Coccaglio (Italy)',1,1,0),(6575,0,105978,'Cockatoo','Australia','AU','Cockatoo (Australia)',1,1,0),(6576,0,105979,'Comitan','Mexico','MX','Comitan (Mexico)',1,1,0),(6577,0,105980,'Concepcion','Peru','PE','Concepcion (Peru)',1,1,0),(6578,0,105981,'Conde','Brazil','BR','Conde (Brazil)',1,1,0),(6579,0,105982,'Coopers Beach','New Zealand','NZ','Coopers Beach (New Zealand)',1,1,0),(6580,0,105983,'Copan Ruinas','Honduras','HN','Copan Ruinas (Honduras)',1,1,0),(6581,0,105984,'Corio','Australia','AU','Corio (Australia)',1,1,0),(6582,0,105985,'Cornedo','Italy','IT','Cornedo (Italy)',1,1,0),(6583,0,105986,'Crodo','Italy','IT','Crodo (Italy)',1,1,0),(6584,0,105987,'Croisy-sur-Eure','France','FR','Croisy-sur-Eure (France)',1,1,0),(6585,0,105988,'Crookham','United Kingdom','UK','Crookham (United Kingdom)',1,1,0),(6586,7327,105989,'Cuautla','Mexico','MX','Cuautla (Mexico)',1,1,0),(6587,0,105990,'Curanilahue','Chile','CL','Curanilahue (Chile)',1,1,0),(6588,0,105991,'Dagomys','Russia','RU','Dagomys (Russia)',1,1,0),(6589,0,105992,'Dalby','Sweden','SE','Dalby (Sweden)',1,1,0),(6590,0,105993,'Dalhem','Sweden','SE','Dalhem (Sweden)',1,1,0),(6591,0,105994,'Damnatz','Germany','DE','Damnatz (Germany)',1,1,0),(6592,0,105995,'Danes','Romania','RO','Danes (Romania)',1,1,0),(6593,0,105996,'Daniel Flores','Costa Rica','CR','Daniel Flores (Costa Rica)',1,1,0),(6594,0,105997,'Danyang','China','CN','Danyang (China)',1,1,0),(6595,0,105999,'Darende','Turkey','TR','Darende (Turkey)',1,1,0),(6596,0,106000,'Daruwar','Croatia','HR','Daruwar (Croatia)',1,1,0),(6597,0,106001,'Dedelstorf','Germany','DE','Dedelstorf (Germany)',1,1,0),(6598,0,106002,'Denguin','France','FR','Denguin (France)',1,1,0),(6599,0,106003,'Denholm','Canada','CA','Denholm (Canada)',1,1,0),(6600,0,106004,'Dereceoren','Turkey','TR','Dereceoren (Turkey)',1,1,0),(6601,0,106005,'Derince','Turkey','TR','Derince (Turkey)',1,1,0),(6602,7841,106007,'Diamantina','Brazil','BR','Diamantina (Brazil)',1,1,0),(6603,0,106008,'Dickoya','Sri Lanka','LK','Dickoya (Sri Lanka)',1,1,0),(6604,0,106009,'Digana','Sri Lanka','LK','Digana (Sri Lanka)',1,1,0),(6605,0,106011,'Divnogorsk','Russia','RU','Divnogorsk (Russia)',1,1,0),(6606,0,106012,'Dlutow','Poland','PL','Dlutow (Poland)',1,1,0),(6607,0,106013,'Docksta','Sweden','SE','Docksta (Sweden)',1,1,0),(6608,0,106014,'Dohm-Lammersdorf','Germany','DE','Dohm-Lammersdorf (Germany)',1,1,0),(6609,0,106015,'Dois Irmaos','Brazil','BR','Dois Irmaos (Brazil)',1,1,0),(6610,0,106016,'Doldersum','Netherlands','NL','Doldersum (Netherlands)',1,1,0),(6611,0,106017,'Dolgesheim','Germany','DE','Dolgesheim (Germany)',1,1,0),(6612,0,106018,'Domarin','France','FR','Domarin (France)',1,1,0),(6613,0,106019,'Dongxing','China','CN','Dongxing (China)',1,1,0),(6614,0,106020,'Dorozhny','Russia','RU','Dorozhny (Russia)',1,1,0),(6615,0,106021,'Dorrington (Shropshire)','United Kingdom','UK','Dorrington (Shropshire) (United Kingdom)',1,1,0),(6616,0,106022,'Dospat','Bulgaria','BG','Dospat (Bulgaria)',1,1,0),(6617,0,106023,'Dragash','Serbia','RS','Dragash (Serbia)',1,1,0),(6618,0,106024,'Drongen','Belgium','BE','Drongen (Belgium)',1,1,0),(6619,0,106025,'Dudzele','Belgium','BE','Dudzele (Belgium)',1,1,0),(6620,0,106026,'Dukhovets','Russia','RU','Dukhovets (Russia)',1,1,0),(6621,0,106027,'Dunajiwzi','Ukraine','UA','Dunajiwzi (Ukraine)',1,1,0),(6622,0,106028,'Dunham','Canada','CA','Dunham (Canada)',1,1,0),(6623,0,106029,'Dunolly','Australia','AU','Dunolly (Australia)',1,1,0),(6624,0,106030,'Dzhubga','Russia','RU','Dzhubga (Russia)',1,1,0),(6625,0,106031,'Eaton Ford','United Kingdom','UK','Eaton Ford (United Kingdom)',1,1,0),(6626,0,106032,'Ecouviez','France','FR','Ecouviez (France)',1,1,0),(6627,0,106033,'Edmundbyers','United Kingdom','UK','Edmundbyers (United Kingdom)',1,1,0),(6628,0,106034,'Eisenbach','Luxembourg','LU','Eisenbach (Luxembourg)',1,1,0),(6629,0,106035,'El Cocuy','Colombia','CO','El Cocuy (Colombia)',1,1,0),(6630,0,106036,'El Eden','Colombia','CO','El Eden (Colombia)',1,1,0),(6631,0,106037,'El Espinal','Colombia','CO','El Espinal (Colombia)',1,1,0),(6632,0,106038,'Elena','Bulgaria','BG','Elena (Bulgaria)',1,1,0),(6633,0,106039,'Ellerby','United Kingdom','UK','Ellerby (United Kingdom)',1,1,0),(6634,0,106040,'Eloise','France','FR','Eloise (France)',1,1,0),(6635,0,106041,'Elsendorp','Netherlands','NL','Elsendorp (Netherlands)',1,1,0),(6636,0,106042,'Eltham','New Zealand','NZ','Eltham (New Zealand)',1,1,0),(6637,0,106043,'Eltisley','United Kingdom','UK','Eltisley (United Kingdom)',1,1,0),(6638,0,106044,'Embleton','United Kingdom','UK','Embleton (United Kingdom)',1,1,0),(6639,0,106045,'Emu Park','Australia','AU','Emu Park (Australia)',1,1,0),(6640,0,106046,'Enchets','Bulgaria','BG','Enchets (Bulgaria)',1,1,0),(6641,0,106047,'Eningen unter Achalm','Germany','DE','Eningen unter Achalm (Germany)',1,1,0),(6642,0,106048,'Entrelacs','Canada','CA','Entrelacs (Canada)',1,1,0),(6643,0,106049,'Ereymentau','Kazakhstan','KZ','Ereymentau (Kazakhstan)',1,1,0),(6644,0,106050,'Erlach','Switzerland','CH','Erlach (Switzerland)',1,1,0),(6645,8943,106051,'Espanola','Canada','CA','Espanola (Canada)',1,1,0),(6646,0,106052,'Estadilla','Spain','ES','Estadilla (Spain)',1,1,0),(6647,0,106053,'Esteli','Nicaragua','NI','Esteli (Nicaragua)',1,1,0),(6648,0,106054,'Eyrecourt','Ireland','IE','Eyrecourt (Ireland)',1,1,0),(6649,0,106055,'Farellones','Chile','CL','Farellones (Chile)',1,1,0),(6650,0,106056,'Felsotarkany','Hungary','HU','Felsotarkany (Hungary)',1,1,0),(6651,0,106057,'Fernandopolis','Brazil','BR','Fernandopolis (Brazil)',1,1,0),(6652,0,106058,'Ferrel','Portugal','PT','Ferrel (Portugal)',1,1,0),(6653,0,106059,'Fiskars','Finland','FI','Fiskars (Finland)',1,1,0),(6654,0,106060,'Fleetwood','United Kingdom','UK','Fleetwood (United Kingdom)',1,1,0),(6655,0,106061,'Fleurier','Switzerland','CH','Fleurier (Switzerland)',1,1,0),(6656,0,106062,'Flores da Cunha','Brazil','BR','Flores da Cunha (Brazil)',1,1,0),(6657,0,106063,'Fossato di Vico','Italy','IT','Fossato di Vico (Italy)',1,1,0),(6658,0,106064,'Foxham','United Kingdom','UK','Foxham (United Kingdom)',1,1,0),(6659,0,106065,'Aansebuerg','Luxembourg','LU','Aansebuerg (Luxembourg)',1,1,0),(6660,0,106066,'Abram','Greece','GR','Abram (Greece)',1,1,0),(6661,0,106067,'Aby','Sweden','SE','Aby (Sweden)',1,1,0),(6662,0,106068,'Acarau','Brazil','BR','Acarau (Brazil)',1,1,0),(6663,0,106069,'Advancetown','Australia','AU','Advancetown (Australia)',1,1,0),(6664,0,106070,'Afienya','Ghana','GH','Afienya (Ghana)',1,1,0),(6665,0,106071,'Agiou Fanouriou','Greece','GR','Agiou Fanouriou (Greece)',1,1,0),(6666,257,106072,'Agliana','Italy','IT','Agliana (Italy)',1,1,0),(6667,0,106073,'Ain','Spain','ES','Ain (Spain)',1,1,0),(6668,374,106074,'Akashi','Japan','JP','Akashi (Japan)',1,1,0),(6669,0,106075,'Alajarvi','Finland','FI','Alajarvi (Finland)',1,1,0),(6670,0,106076,'Alatskivi','Estonia','EE','Alatskivi (Estonia)',1,1,0),(6671,0,106077,'Albanella','Italy','IT','Albanella (Italy)',1,1,0),(6672,0,106078,'Albanien','Albania','AL','Albanien (Albania)',1,1,0),(6673,0,106079,'Alftanes','Iceland','IS','Alftanes (Iceland)',1,1,0),(6674,0,106080,'Algodoal','Brazil','BR','Algodoal (Brazil)',1,1,0),(6675,0,106081,'Algoz','Portugal','PT','Algoz (Portugal)',1,1,0),(6676,0,106082,'Algyo','Hungary','HU','Algyo (Hungary)',1,1,0),(6677,0,106083,'Alishan','Taiwan','TW','Alishan (Taiwan)',1,1,0),(6678,0,106084,'Allington','United Kingdom','UK','Allington (United Kingdom)',1,1,0),(6679,0,106085,'Itapetininga','Brazil','BR','Itapetininga (Brazil)',1,1,0),(6680,0,106086,'Iwakura','Japan','JP','Iwakura (Japan)',1,1,0),(6681,0,106087,'Frattocchie','Italy','IT','Frattocchie (Italy)',1,1,0),(6682,0,106088,'Frederikssund','Denmark','DK','Frederikssund (Denmark)',1,1,0),(6683,0,106089,'Froggatt','United Kingdom','UK','Froggatt (United Kingdom)',1,1,0),(6684,0,106090,'Fry','Greece','GR','Fry (Greece)',1,1,0),(6685,0,106091,'Fuchshofen','Germany','DE','Fuchshofen (Germany)',1,1,0),(6686,0,106092,'Gaddede','Sweden','SE','Gaddede (Sweden)',1,1,0),(6687,0,106093,'Gajahan','Indonesia','ID','Gajahan (Indonesia)',1,1,0),(6688,0,106094,'Galliate','Italy','IT','Galliate (Italy)',1,1,0),(6689,0,106095,'Galliera','Italy','IT','Galliera (Italy)',1,1,0),(6690,0,106096,'Gamleby','Sweden','SE','Gamleby (Sweden)',1,1,0),(6691,0,106097,'Garden Bay','Canada','CA','Garden Bay (Canada)',1,1,0),(6692,0,106098,'Gazzada Schianno','Italy','IT','Gazzada Schianno (Italy)',1,1,0),(6693,0,106099,'Gelibolu','Turkey','TR','Gelibolu (Turkey)',1,1,0),(6694,0,106100,'Gelugor','Malaysia','MY','Gelugor (Malaysia)',1,1,0),(6695,0,106101,'Gemert','Netherlands','NL','Gemert (Netherlands)',1,1,0),(6696,0,106102,'General Pico','Argentina','AR','General Pico (Argentina)',1,1,0),(6697,0,106103,'Gerasdorf bei Wien','Austria','AT','Gerasdorf bei Wien (Austria)',1,1,0),(6698,0,106104,'Getambe','Sri Lanka','LK','Getambe (Sri Lanka)',1,1,0),(6699,0,106105,'Gimpo','South Korea','KR','Gimpo (South Korea)',1,1,0),(6700,0,106107,'Glodeni','Moldova','MD','Glodeni (Moldova)',1,1,0),(6701,0,106108,'Glossop','Australia','AU','Glossop (Australia)',1,1,0),(6702,0,106109,'Godlevo','Bulgaria','BG','Godlevo (Bulgaria)',1,1,0),(6703,0,106110,'Goldenstein','Czech Republic','CZ','Goldenstein (Czech Republic)',1,1,0),(6704,0,106111,'Goodwick','United Kingdom','UK','Goodwick (United Kingdom)',1,1,0),(6705,0,106112,'Gotse Delchev','Bulgaria','BG','Gotse Delchev (Bulgaria)',1,1,0),(6706,0,106113,'Goulais River','Canada','CA','Goulais River (Canada)',1,1,0),(6707,0,106114,'Gouvernement Libanonberg','Lebanon','LB','Gouvernement Libanonberg (Lebanon)',1,1,0),(6708,0,106115,'Gracanica','Serbia','RS','Gracanica (Serbia)',1,1,0),(6709,0,106116,'Gracemere','Australia','AU','Gracemere (Australia)',1,1,0),(6710,0,106117,'Granavollen','Norway','NO','Granavollen (Norway)',1,1,0),(6711,0,106118,'Grodziec','Poland','PL','Grodziec (Poland)',1,1,0),(6712,0,106119,'Gro?langheim','Germany','DE','Gro?langheim (Germany)',1,1,0),(6713,0,106120,'Gro?scheuern','Romania','RO','Gro?scheuern (Romania)',1,1,0),(6714,0,106121,'Guamuchil','Mexico','MX','Guamuchil (Mexico)',1,1,0),(6715,0,106122,'Guaramiranga','Brazil','BR','Guaramiranga (Brazil)',1,1,0),(6716,0,106123,'Guardiagrele','Italy','IT','Guardiagrele (Italy)',1,1,0),(6717,0,106124,'Gubkinski','Russia','RU','Gubkinski (Russia)',1,1,0),(6718,0,106125,'Guemene - Penfao','France','FR','Guemene - Penfao (France)',1,1,0),(6719,0,106126,'Guiglia','Italy','IT','Guiglia (Italy)',1,1,0),(6720,0,106127,'Guigneville-sur-Essonne','France','FR','Guigneville-sur-Essonne (France)',1,1,0),(6721,0,106128,'Guisando','Spain','ES','Guisando (Spain)',1,1,0),(6722,0,106129,'Gujo','Japan','JP','Gujo (Japan)',1,1,0),(6723,0,106130,'Gunnislake','United Kingdom','UK','Gunnislake (United Kingdom)',1,1,0),(6724,0,106132,'Gyongyos','Hungary','HU','Gyongyos (Hungary)',1,1,0),(6725,0,106133,'Habovka','Slovakia','SK','Habovka (Slovakia)',1,1,0),(6726,11309,106134,'Hagersten','Sweden','SE','Hagersten (Sweden)',1,1,0),(6727,0,106135,'Hamat','Lebanon','LB','Hamat (Lebanon)',1,1,0),(6728,11420,106136,'Hambach','France','FR','Hambach (France)',1,1,0),(6729,0,106137,'Hammana','Lebanon','LB','Hammana (Lebanon)',1,1,0),(6730,0,106138,'Hamme','Belgium','BE','Hamme (Belgium)',1,1,0),(6731,0,106139,'Haverud','Sweden','SE','Haverud (Sweden)',1,1,0),(6732,11684,106140,'Hawera','New Zealand','NZ','Hawera (New Zealand)',1,1,0),(6733,0,106141,'Hawkley','United Kingdom','UK','Hawkley (United Kingdom)',1,1,0),(6734,0,106142,'Hayrabolu','Turkey','TR','Hayrabolu (Turkey)',1,1,0),(6735,0,106143,'Heimberg','Switzerland','CH','Heimberg (Switzerland)',1,1,0),(6736,0,106144,'Heino','Netherlands','NL','Heino (Netherlands)',1,1,0),(6737,0,106145,'Heroica Zitacuaro/ Zitacuaro','Mexico','MX','Heroica Zitacuaro/ Zitacuaro (Mexico)',1,1,0),(6738,0,106146,'Herselt','Belgium','BE','Herselt (Belgium)',1,1,0),(6739,0,106147,'Hida','Japan','JP','Hida (Japan)',1,1,0),(6740,0,106148,'Higashimatsushima','Japan','JP','Higashimatsushima (Japan)',1,1,0),(6741,0,106149,'Hillside','United Kingdom','UK','Hillside (United Kingdom)',1,1,0),(6742,0,106150,'Himatangi Beach','New Zealand','NZ','Himatangi Beach (New Zealand)',1,1,0),(6743,0,106151,'Hirakata','Japan','JP','Hirakata (Japan)',1,1,0),(6744,0,106152,'Hokksund','Norway','NO','Hokksund (Norway)',1,1,0),(6745,0,106153,'Holambra','Brazil','BR','Holambra (Brazil)',1,1,0),(6746,0,106154,'Holoubkov','Czech Republic','CZ','Holoubkov (Czech Republic)',1,1,0),(6747,0,106155,'Hongcheon','South Korea','KR','Hongcheon (South Korea)',1,1,0),(6748,0,106156,'Hoogersmilde','Netherlands','NL','Hoogersmilde (Netherlands)',1,1,0),(6749,0,106157,'Horam','United Kingdom','UK','Horam (United Kingdom)',1,1,0),(6750,0,106158,'Horcon','Chile','CL','Horcon (Chile)',1,1,0),(6751,0,106159,'Horni Lomna','Czech Republic','CZ','Horni Lomna (Czech Republic)',1,1,0),(6752,0,106160,'Hospital de Orbigo','Spain','ES','Hospital de Orbigo (Spain)',1,1,0),(6753,0,106161,'Hronsek','Slovakia','SK','Hronsek (Slovakia)',1,1,0),(6754,12425,106162,'Huejutla de Reyes','Mexico','MX','Huejutla de Reyes (Mexico)',1,1,0),(6755,0,106163,'Huisnes-sur-Mer','France','FR','Huisnes-sur-Mer (France)',1,1,0),(6756,0,106164,'Iggelbach','Germany','DE','Iggelbach (Germany)',1,1,0),(6757,0,106165,'Ilha Solteira','Brazil','BR','Ilha Solteira (Brazil)',1,1,0),(6758,0,106166,'Illlichivsk','Ukraine','UA','Illlichivsk (Ukraine)',1,1,0),(6759,0,106167,'Ilorin','Nigeria','NG','Ilorin (Nigeria)',1,1,0),(6760,0,106168,'Juticalpa','Honduras','HN','Juticalpa (Honduras)',1,1,0),(6761,0,106169,'Kalavan','Armenia','AM','Kalavan (Armenia)',1,1,0),(6762,0,106170,'Kalavarda','Greece','GR','Kalavarda (Greece)',1,1,0),(6763,0,106171,'Kalisizo','Uganda','UG','Kalisizo (Uganda)',1,1,0),(6764,0,106172,'Kalkudah','Sri Lanka','LK','Kalkudah (Sri Lanka)',1,1,0),(6765,0,106173,'Kallnach','Switzerland','CH','Kallnach (Switzerland)',1,1,0),(6766,0,106174,'Kamen','Croatia','HR','Kamen (Croatia)',1,1,0),(6767,0,106175,'Kamensk-Uralsky','Russia','RU','Kamensk-Uralsky (Russia)',1,1,0),(6768,0,106176,'Kamifurano','Japan','JP','Kamifurano (Japan)',1,1,0),(6769,0,106177,'Kammern im Liesingtal','Austria','AT','Kammern im Liesingtal (Austria)',1,1,0),(6770,0,106178,'Kampanien','Italy','IT','Kampanien (Italy)',1,1,0),(6771,0,106179,'Kandalakscha','Russia','RU','Kandalakscha (Russia)',1,1,0),(6772,0,106180,'Kang','Botswana','BW','Kang (Botswana)',1,1,0),(6773,0,106181,'Karacabey','Turkey','TR','Karacabey (Turkey)',1,1,0),(6774,0,106183,'Karapazar','Turkey','TR','Karapazar (Turkey)',1,1,0),(6775,0,106184,'Kars','Canada','CA','Kars (Canada)',1,1,0),(6776,0,106185,'Kesennuma','Japan','JP','Kesennuma (Japan)',1,1,0),(6777,0,106187,'Khosta','Russia','RU','Khosta (Russia)',1,1,0),(6778,0,106188,'Kialla','Australia','AU','Kialla (Australia)',1,1,0),(6779,0,106189,'Kimpton','United Kingdom','UK','Kimpton (United Kingdom)',1,1,0),(6780,0,106190,'Klintsy','Russia','RU','Klintsy (Russia)',1,1,0),(6781,0,106191,'Kloster Fischingen','Switzerland','CH','Kloster Fischingen (Switzerland)',1,1,0),(6782,0,106192,'Klutz','Germany','DE','Klutz (Germany)',1,1,0),(6783,14253,106193,'Knin','Croatia','HR','Knin (Croatia)',1,1,0),(6784,0,106194,'Koh Sdach (King Island)','Cambodia','KH','Koh Sdach (King Island) (Cambodia)',1,1,0),(6785,0,106195,'Kokar','Finland','FI','Kokar (Finland)',1,1,0),(6786,0,106196,'Hrvatska Kostajnica','Croatia','HR','Hrvatska Kostajnica (Croatia)',1,1,0),(6787,0,106197,'Huanchaco','Peru','PE','Huanchaco (Peru)',1,1,0),(6788,0,106198,'Huangdao','China','CN','Huangdao (China)',1,1,0),(6789,0,106199,'Huaquillas','Ecuador','EC','Huaquillas (Ecuador)',1,1,0),(6790,0,106200,'Hudlitz','Czech Republic','CZ','Hudlitz (Czech Republic)',1,1,0),(6791,12423,106201,'Huehuetenango','Guatemala','GT','Huehuetenango (Guatemala)',1,1,0),(6792,0,106202,'Huigra','Ecuador','EC','Huigra (Ecuador)',1,1,0),(6793,0,106203,'Hummelo','Netherlands','NL','Hummelo (Netherlands)',1,1,0),(6794,0,106204,'Chateauneuf-sur-Sarthe','France','FR','Chateauneuf-sur-Sarthe (France)',1,1,0),(6795,0,106205,'Chatsworth',NULL,NULL,'Chatsworth ()',1,1,0),(6796,0,106206,'Chaunaca','Bolivia','BO','Chaunaca (Bolivia)',1,1,0),(6797,0,106207,'Chaykovskiy','Russia','RU','Chaykovskiy (Russia)',1,1,0),(6798,0,106209,'Chiflik','Bulgaria','BG','Chiflik (Bulgaria)',1,1,0),(6799,0,106210,'Chinandega','Nicaragua','NI','Chinandega (Nicaragua)',1,1,0),(6800,0,106212,'Chittaway Bay','Australia','AU','Chittaway Bay (Australia)',1,1,0),(6801,0,106213,'Chittlehampton','United Kingdom','UK','Chittlehampton (United Kingdom)',1,1,0),(6802,0,106214,'Choroszcz','Poland','PL','Choroszcz (Poland)',1,1,0),(6803,0,106215,'Chotkowo','Russia','RU','Chotkowo (Russia)',1,1,0),(6804,0,106216,'Christina Lake','Canada','CA','Christina Lake (Canada)',1,1,0),(6805,0,106217,'Chullora','Australia','AU','Chullora (Australia)',1,1,0),(6806,0,106218,'Cistierna','Spain','ES','Cistierna (Spain)',1,1,0),(6807,0,106219,'Ciudad Cortes','Costa Rica','CR','Ciudad Cortes (Costa Rica)',1,1,0),(6808,0,106220,'Ciudad Fernandez','Mexico','MX','Ciudad Fernandez (Mexico)',1,1,0),(6809,0,106221,'Ciudad Perico','Argentina','AR','Ciudad Perico (Argentina)',1,1,0),(6810,0,106222,'Clarac','France','FR','Clarac (France)',1,1,0),(6811,0,106223,'Clayton','Australia','AU','Clayton (Australia)',1,1,0),(6812,0,106224,'Cleden Cap Sizun','France','FR','Cleden Cap Sizun (France)',1,1,0),(6813,0,106225,'Clifton Harbour','St. Vincent & the Grenadines','VC','Clifton Harbour (St. Vincent & the Grenadines)',1,1,0),(6814,6540,106226,'Cobble Hill','Canada','CA','Cobble Hill (Canada)',1,1,0),(6815,0,106227,'Cocachacra','Peru','PE','Cocachacra (Peru)',1,1,0),(6816,0,106228,'Collagna','Italy','IT','Collagna (Italy)',1,1,0),(6817,0,106229,'Collinsvale','Australia','AU','Collinsvale (Australia)',1,1,0),(6818,0,106230,'Colognola ai Colli','Italy','IT','Colognola ai Colli (Italy)',1,1,0),(6819,0,106231,'Constitucion','Chile','CL','Constitucion (Chile)',1,1,0),(6820,0,106232,'Cornebarrieu','France','FR','Cornebarrieu (France)',1,1,0),(6821,0,106233,'Coscojuela de Sobrarbe','Spain','ES','Coscojuela de Sobrarbe (Spain)',1,1,0),(6822,0,106234,'Costa Rica','Costa Rica','CR','Costa Rica (Costa Rica)',1,1,0),(6823,0,106235,'Costa Volpino','Italy','IT','Costa Volpino (Italy)',1,1,0),(6824,0,106236,'Couffe','France','FR','Couffe (France)',1,1,0),(6825,0,106237,'Coussey','France','FR','Coussey (France)',1,1,0),(6826,0,106238,'Covas','Spain','ES','Covas (Spain)',1,1,0),(6827,0,106239,'Coxwold','United Kingdom','UK','Coxwold (United Kingdom)',1,1,0),(6828,0,106240,'Crossfield','Canada','CA','Crossfield (Canada)',1,1,0),(6829,0,106241,'Cua Lap','Vietnam','VN','Cua Lap (Vietnam)',1,1,0),(6830,0,106242,'Cund','Romania','RO','Cund (Romania)',1,1,0),(6831,0,106243,'Czarnowasy','Poland','PL','Czarnowasy (Poland)',1,1,0),(6832,0,106244,'Daisen','Japan','JP','Daisen (Japan)',1,1,0),(6833,0,106245,'Darsham','United Kingdom','UK','Darsham (United Kingdom)',1,1,0),(6834,7587,106246,'Date','Japan','JP','Date (Japan)',1,1,0),(6835,0,106247,'Dawesville','Australia','AU','Dawesville (Australia)',1,1,0),(6836,0,106248,'Dawle','Czech Republic','CZ','Dawle (Czech Republic)',1,1,0),(6837,0,106249,'Deep River','Canada','CA','Deep River (Canada)',1,1,0),(6838,0,106250,'Degerhamn','Sweden','SE','Degerhamn (Sweden)',1,1,0),(6839,0,106251,'Dehiatthakandiya','Sri Lanka','LK','Dehiatthakandiya (Sri Lanka)',1,1,0),(6840,0,106252,'Demak','Indonesia','ID','Demak (Indonesia)',1,1,0),(6841,0,106253,'Denman Island','Canada','CA','Denman Island (Canada)',1,1,0),(6842,0,106254,'Derevnya Pritkino',NULL,NULL,'Derevnya Pritkino ()',1,1,0),(6843,0,106256,'Dharavandhoo','Maldives','MV','Dharavandhoo (Maldives)',1,1,0),(6844,7829,106257,'Dhiffushi','Maldives','MV','Dhiffushi (Maldives)',1,1,0),(6845,7866,106258,'Diego Martin','Trinidad and Tobago','TT','Diego Martin (Trinidad and Tobago)',1,1,0),(6846,0,106259,'Dobczyce','Poland','PL','Dobczyce (Poland)',1,1,0),(6847,0,106260,'Doblen','Latvia','LV','Doblen (Latvia)',1,1,0),(6848,0,106261,'Dobrovo','Slovenia','SI','Dobrovo (Slovenia)',1,1,0),(6849,0,106262,'Dolce','Italy','IT','Dolce (Italy)',1,1,0),(6850,0,106263,'Dolna Banya','Bulgaria','BG','Dolna Banya (Bulgaria)',1,1,0),(6851,0,106264,'Dong Ha','Vietnam','VN','Dong Ha (Vietnam)',1,1,0),(6852,0,106265,'Drienica','Slovakia','SK','Drienica (Slovakia)',1,1,0),(6853,0,106266,'Dromana','Australia','AU','Dromana (Australia)',1,1,0),(6854,0,106267,'Dubna','Russia','RU','Dubna (Russia)',1,1,0),(6855,8251,106268,'Duhok','Iraq','IQ','Duhok (Iraq)',1,1,0),(6856,0,106269,'Durham-Sud','Canada','CA','Durham-Sud (Canada)',1,1,0),(6857,0,106270,'Dwight','Canada','CA','Dwight (Canada)',1,1,0),(6858,0,106271,'Dzaoudzi','Comoros','KM','Dzaoudzi (Comoros)',1,1,0),(6859,0,106272,'Easky','Ireland','IE','Easky (Ireland)',1,1,0),(6860,0,106273,'Egense','Denmark','DK','Egense (Denmark)',1,1,0),(6861,0,106274,'Ehra-Lessien','Germany','DE','Ehra-Lessien (Germany)',1,1,0),(6862,0,106275,'Ekamuthugama','Sri Lanka','LK','Ekamuthugama (Sri Lanka)',1,1,0),(6863,0,106276,'El Jaibalito','Guatemala','GT','El Jaibalito (Guatemala)',1,1,0),(6864,0,106277,'El Soberbio','Argentina','AR','El Soberbio (Argentina)',1,1,0),(6865,0,106278,'El Transito','Nicaragua','NI','El Transito (Nicaragua)',1,1,0),(6866,0,106279,'Elgoibar','Spain','ES','Elgoibar (Spain)',1,1,0),(6867,0,106280,'Elliston','Australia','AU','Elliston (Australia)',1,1,0),(6868,0,106281,'Emu Plains','Australia','AU','Emu Plains (Australia)',1,1,0),(6869,8774,106282,'Enfield','Australia','AU','Enfield (Australia)',1,1,0),(6870,0,106283,'Chavanoz','France','FR','Chavanoz (France)',1,1,0),(6871,0,106284,'Chiampo','Italy','IT','Chiampo (Italy)',1,1,0),(6872,6116,106285,'Childers','Australia','AU','Childers (Australia)',1,1,0),(6873,0,106286,'Chimbarongo','Chile','CL','Chimbarongo (Chile)',1,1,0),(6874,6172,106287,'Chiryu','Japan','JP','Chiryu (Japan)',1,1,0),(6875,0,106288,'Chiusa di Pesio','Italy','IT','Chiusa di Pesio (Italy)',1,1,0),(6876,0,106289,'Choisy-le-Roi','France','FR','Choisy-le-Roi (France)',1,1,0),(6877,0,106290,'Chomelix','France','FR','Chomelix (France)',1,1,0),(6878,6234,106291,'Chos Malal','Argentina','AR','Chos Malal (Argentina)',1,1,0),(6879,6326,106292,'Cinque Terre','Italy','IT','Cinque Terre (Italy)',1,1,0),(6880,6340,106293,'Cisarua','Indonesia','ID','Cisarua (Indonesia)',1,1,0),(6881,0,106294,'Ciudad Guzman','Mexico','MX','Ciudad Guzman (Mexico)',1,1,0),(6882,6388,106295,'Claregalway','Ireland','IE','Claregalway (Ireland)',1,1,0),(6883,0,106296,'Cloyne','Canada','CA','Cloyne (Canada)',1,1,0),(6884,6514,106297,'Clunes','Australia','AU','Clunes (Australia)',1,1,0),(6885,0,106298,'Colorno','Italy','IT','Colorno (Italy)',1,1,0),(6886,0,106299,'Coltishall','United Kingdom','UK','Coltishall (United Kingdom)',1,1,0),(6887,0,106300,'Conception','Paraguay','PY','Conception (Paraguay)',1,1,0),(6888,0,106301,'Connaux','France','FR','Connaux (France)',1,1,0),(6889,0,106302,'Copertino','Italy','IT','Copertino (Italy)',1,1,0),(6890,0,106303,'Corfinio','Italy','IT','Corfinio (Italy)',1,1,0),(6891,0,106304,'Cornelio Procopio','Brazil','BR','Cornelio Procopio (Brazil)',1,1,0),(6892,0,106305,'Coronado','Panama','PA','Coronado (Panama)',1,1,0),(6893,0,106306,'Coronel Freitas','Brazil','BR','Coronel Freitas (Brazil)',1,1,0),(6894,0,106307,'Xiushan','China','CN','Xiushan (China)',1,1,0),(6895,0,106308,'Yacanto de Calamuchita','Argentina','AR','Yacanto de Calamuchita (Argentina)',1,1,0),(6896,0,106309,'Yaizu','Japan','JP','Yaizu (Japan)',1,1,0),(6897,0,106310,'Yelabuga','Russia','RU','Yelabuga (Russia)',1,1,0),(6898,0,106311,'Seven Mile Beach','Cayman Islands','KY','Seven Mile Beach (Cayman Islands)',1,1,0),(6899,0,106312,'Shaqraa','Saudi Arabia','SA','Shaqraa (Saudi Arabia)',1,1,0),(6900,0,106313,'She\'ar Yashuv','Israel','IL','She\'ar Yashuv (Israel)',1,1,0),(6901,0,106314,'Sheguiandah','Canada','CA','Sheguiandah (Canada)',1,1,0),(6902,0,106315,'Shekvetili','Georgia','GE','Shekvetili (Georgia)',1,1,0),(6903,0,106316,'Sherbrooke','Australia','AU','Sherbrooke (Australia)',1,1,0),(6904,0,106318,'Shoreham','Australia','AU','Shoreham (Australia)',1,1,0),(6905,0,106319,'Shoreham-by-Sea','United Kingdom','UK','Shoreham-by-Sea (United Kingdom)',1,1,0),(6906,25175,106320,'Siedlce','Poland','PL','Siedlce (Poland)',1,1,0),(6907,0,106321,'Sieng Ngeum Village','LAOS','LA','Sieng Ngeum Village (LAOS)',1,1,0),(6908,0,106322,'Siggerud','Norway','NO','Siggerud (Norway)',1,1,0),(6909,0,106323,'Simonburn','United Kingdom','UK','Simonburn (United Kingdom)',1,1,0),(6910,0,106324,'Sithonia','Greece','GR','Sithonia (Greece)',1,1,0),(6911,0,106325,'Skala Sykamineas','Greece','GR','Skala Sykamineas (Greece)',1,1,0),(6912,0,106326,'Skriveri','Latvia','LV','Skriveri (Latvia)',1,1,0),(6913,0,106327,'Slobozia','Romania','RO','Slobozia (Romania)',1,1,0),(6914,25455,106328,'Sloten','Netherlands','NL','Sloten (Netherlands)',1,1,0),(6915,0,106329,'Smoky Lane','Canada','CA','Smoky Lane (Canada)',1,1,0),(6916,0,106330,'Smrecany','Slovakia','SK','Smrecany (Slovakia)',1,1,0),(6917,0,106331,'Snaith','United Kingdom','UK','Snaith (United Kingdom)',1,1,0),(6918,0,106332,'Sobotka','Poland','PL','Sobotka (Poland)',1,1,0),(6919,0,106333,'Sosnovka','Russia','RU','Sosnovka (Russia)',1,1,0),(6920,0,106334,'South Warnborough','United Kingdom','UK','South Warnborough (United Kingdom)',1,1,0),(6921,0,106335,'Sowerby Bridge','United Kingdom','UK','Sowerby Bridge (United Kingdom)',1,1,0),(6922,0,106336,'Speinshart','Germany','DE','Speinshart (Germany)',1,1,0),(6923,0,106337,'Sprang-Capelle','Netherlands','NL','Sprang-Capelle (Netherlands)',1,1,0),(6924,0,106338,'Sri Aman','Malaysia','MY','Sri Aman (Malaysia)',1,1,0),(6925,0,106339,'St Combs','United Kingdom','UK','St Combs (United Kingdom)',1,1,0),(6926,0,106340,'St Erth','United Kingdom','UK','St Erth (United Kingdom)',1,1,0),(6927,0,106341,'Stanbury','United Kingdom','UK','Stanbury (United Kingdom)',1,1,0),(6928,0,106342,'Stanford Dingley','United Kingdom','UK','Stanford Dingley (United Kingdom)',1,1,0),(6929,0,106343,'Stara Ves nad Ondrejnici','Czech Republic','CZ','Stara Ves nad Ondrejnici (Czech Republic)',1,1,0),(6930,0,106344,'Staraya Ruza','Russia','RU','Staraya Ruza (Russia)',1,1,0),(6931,0,106345,'Staraya Tabaga','Russia','RU','Staraya Tabaga (Russia)',1,1,0),(6932,0,106346,'Staritsa','Russia','RU','Staritsa (Russia)',1,1,0),(6933,0,106347,'Starosel','Bulgaria','BG','Starosel (Bulgaria)',1,1,0),(6934,0,106348,'Steensel','Netherlands','NL','Steensel (Netherlands)',1,1,0),(6935,0,106349,'Steffisburg','Switzerland','CH','Steffisburg (Switzerland)',1,1,0),(6936,0,106350,'Strath Creek','Australia','AU','Strath Creek (Australia)',1,1,0),(6937,0,106351,'Strathroy-Caradoc','Canada','CA','Strathroy-Caradoc (Canada)',1,1,0),(6938,0,106352,'Stritez','Czech Republic','CZ','Stritez (Czech Republic)',1,1,0),(6939,0,106353,'Strzelce Krajenskie','Poland','PL','Strzelce Krajenskie (Poland)',1,1,0),(6940,0,106354,'Stugudalen','Norway','NO','Stugudalen (Norway)',1,1,0),(6941,0,106355,'Sucha Rudna','Czech Republic','CZ','Sucha Rudna (Czech Republic)',1,1,0),(6942,0,106356,'Suchodol','Russia','RU','Suchodol (Russia)',1,1,0),(6943,0,106357,'Sumartin','Croatia','HR','Sumartin (Croatia)',1,1,0),(6944,0,106358,'Sur (Oman)','Oman','OM','Sur (Oman) (Oman)',1,1,0),(6945,0,106359,'Surville','France','FR','Surville (France)',1,1,0),(6946,0,106360,'Szanda','Hungary','HU','Szanda (Hungary)',1,1,0),(6947,0,106361,'Szydlow','Poland','PL','Szydlow (Poland)',1,1,0),(6948,0,106362,'Tabarja','Lebanon','LB','Tabarja (Lebanon)',1,1,0),(6949,0,106363,'Taean','South Korea','KR','Taean (South Korea)',1,1,0),(6950,0,106364,'Tailem Bend','Australia','AU','Tailem Bend (Australia)',1,1,0),(6951,0,106365,'Taishan','Taiwan','TW','Taishan (Taiwan)',1,1,0),(6952,0,106366,'Talisoara','Romania','RO','Talisoara (Romania)',1,1,0),(6953,0,106367,'Tambun','Malaysia','MY','Tambun (Malaysia)',1,1,0),(6954,0,106368,'Tamedakhte','Morocco','MA','Tamedakhte (Morocco)',1,1,0),(6955,0,106369,'Tangara da Serra','Brazil','BR','Tangara da Serra (Brazil)',1,1,0),(6956,0,106370,'Tapioszentmarton','Hungary','HU','Tapioszentmarton (Hungary)',1,1,0),(6957,0,106371,'Tarcento','Italy','IT','Tarcento (Italy)',1,1,0),(6958,0,106372,'Tarcutta','Australia','AU','Tarcutta (Australia)',1,1,0),(6959,0,106373,'Tarouca','Portugal','PT','Tarouca (Portugal)',1,1,0),(6960,0,106374,'Tau','Norway','NO','Tau (Norway)',1,1,0),(6961,0,106375,'Tau Bistra','Romania','RO','Tau Bistra (Romania)',1,1,0),(6962,0,106376,'Tawonga','Australia','AU','Tawonga (Australia)',1,1,0),(6963,0,106377,'Teakettle Village','Belize','BZ','Teakettle Village (Belize)',1,1,0),(6964,0,106378,'Teglio','Italy','IT','Teglio (Italy)',1,1,0),(6965,0,106379,'Telsiai','Lithuania','LT','Telsiai (Lithuania)',1,1,0),(6966,0,106380,'Tenero-Contra','Switzerland','CH','Tenero-Contra (Switzerland)',1,1,0),(6967,0,106381,'Tengzhou','China','CN','Tengzhou (China)',1,1,0),(6968,0,106382,'Teno','Chile','CL','Teno (Chile)',1,1,0),(6969,27165,106384,'Thessalon','Canada','CA','Thessalon (Canada)',1,1,0),(6970,0,106385,'Thornton','Australia','AU','Thornton (Australia)',1,1,0),(6971,0,106386,'Thu Dau Mot','Vietnam','VN','Thu Dau Mot (Vietnam)',1,1,0),(6972,0,106387,'Thury (Cote-d’Or)','France','FR','Thury (Cote-d’Or) (France)',1,1,0),(6973,0,106388,'Tibana','Colombia','CO','Tibana (Colombia)',1,1,0),(6974,0,106389,'Tibau','Brazil','BR','Tibau (Brazil)',1,1,0),(6975,0,106390,'Tilapa','Mexico','MX','Tilapa (Mexico)',1,1,0),(6976,0,106391,'Timberlea','Canada','CA','Timberlea (Canada)',1,1,0),(6977,0,106392,'Tipchenitsa','Bulgaria','BG','Tipchenitsa (Bulgaria)',1,1,0),(6978,0,106393,'Tirau','New Zealand','NZ','Tirau (New Zealand)',1,1,0),(6979,0,106395,'Tlatlauquitepec','Mexico','MX','Tlatlauquitepec (Mexico)',1,1,0),(6980,0,106396,'Toano','Italy','IT','Toano (Italy)',1,1,0),(6981,0,106397,'Verzegnis','Italy','IT','Verzegnis (Italy)',1,1,0),(6982,0,106398,'Veseli nad Luznici','Czech Republic','CZ','Veseli nad Luznici (Czech Republic)',1,1,0),(6983,0,106399,'Vilalba dels Arcs','Spain','ES','Vilalba dels Arcs (Spain)',1,1,0),(6984,0,106400,'Vilamos','Spain','ES','Vilamos (Spain)',1,1,0),(6985,0,106401,'Vilkaviskis','Lithuania','LT','Vilkaviskis (Lithuania)',1,1,0),(6986,0,106402,'Villa Minozzo','Italy','IT','Villa Minozzo (Italy)',1,1,0),(6987,0,106403,'Villanova sull\'Arda','Italy','IT','Villanova sull\'Arda (Italy)',1,1,0),(6988,0,106404,'Villanueva del Rosario','Spain','ES','Villanueva del Rosario (Spain)',1,1,0),(6989,0,106405,'Villeroy','Canada','CA','Villeroy (Canada)',1,1,0),(6990,28915,106406,'Vinderup','Denmark','DK','Vinderup (Denmark)',1,1,0),(6991,0,106407,'Vinkel','Netherlands','NL','Vinkel (Netherlands)',1,1,0),(6992,0,106408,'Vinne','Slovakia','SK','Vinne (Slovakia)',1,1,0),(6993,0,106409,'Viserbella di Rimini','Italy','IT','Viserbella di Rimini (Italy)',1,1,0),(6994,0,106410,'Visoko','Bosnia and Herzegowina','BA','Visoko (Bosnia and Herzegowina)',1,1,0),(6995,0,106411,'Volkovichi','Belarus','BY','Volkovichi (Belarus)',1,1,0),(6996,0,106412,'Volodarskaya','Russia','RU','Volodarskaya (Russia)',1,1,0),(6997,0,106413,'Volosko','Croatia','HR','Volosko (Croatia)',1,1,0),(6998,29067,106414,'Vossestrand','Norway','NO','Vossestrand (Norway)',1,1,0),(6999,0,106415,'Vothonas','Greece','GR','Vothonas (Greece)',1,1,0),(7000,0,106416,'Voyri','Finland','FI','Voyri (Finland)',1,1,0),(7001,0,106417,'Lake Cowichan','Canada','CA','Lake Cowichan (Canada)',1,1,0),(7002,31576,106418,'Lake Macquarie','Australia','AU','Lake Macquarie (Australia)',1,1,0),(7003,0,106419,'Lama Mocogno','Italy','IT','Lama Mocogno (Italy)',1,1,0),(7004,0,106420,'Lameriana','Greece','GR','Lameriana (Greece)',1,1,0),(7005,0,106421,'Lapczyca','Poland','PL','Lapczyca (Poland)',1,1,0),(7006,0,106422,'L\'Arbresle','France','FR','L\'Arbresle (France)',1,1,0),(7007,0,106423,'Las Escobas del Venado','Panama','PA','Las Escobas del Venado (Panama)',1,1,0),(7008,0,106424,'Latresne','France','FR','Latresne (France)',1,1,0),(7009,0,106425,'Laurino','Italy','IT','Laurino (Italy)',1,1,0),(7010,15142,106426,'Lavington','Australia','AU','Lavington (Australia)',1,1,0),(7011,0,106427,'Le Chatelard','Switzerland','CH','Le Chatelard (Switzerland)',1,1,0),(7012,0,106428,'Le Cheylard','France','FR','Le Cheylard (France)',1,1,0),(7013,0,106429,'Le Grand-Quevilly','France','FR','Le Grand-Quevilly (France)',1,1,0),(7014,0,106430,'Ledenik','Bulgaria','BG','Ledenik (Bulgaria)',1,1,0),(7015,0,106431,'Leeming Bar','United Kingdom','UK','Leeming Bar (United Kingdom)',1,1,0),(7016,0,106432,'Leninogorsk','Russia','RU','Leninogorsk (Russia)',1,1,0),(7017,0,106433,'Lerryn','United Kingdom','UK','Lerryn (United Kingdom)',1,1,0),(7018,31761,106434,'Les Allues','France','FR','Les Allues (France)',1,1,0),(7019,0,106435,'Les Brevieres','France','FR','Les Brevieres (France)',1,1,0),(7020,0,106436,'Les Combes','France','FR','Les Combes (France)',1,1,0),(7021,0,106437,'Letnitsa','Bulgaria','BG','Letnitsa (Bulgaria)',1,1,0),(7022,0,106438,'Leutesdorf','Germany','DE','Leutesdorf (Germany)',1,1,0),(7023,0,106439,'Likely','Canada','CA','Likely (Canada)',1,1,0),(7024,0,106440,'Limpinwood','Australia','AU','Limpinwood (Australia)',1,1,0),(7025,0,106441,'Lincoln','New Zealand','NZ','Lincoln (New Zealand)',1,1,0),(7026,0,106442,'Linneryd','Sweden','SE','Linneryd (Sweden)',1,1,0),(7027,0,106443,'Liping Xian','China','CN','Liping Xian (China)',1,1,0),(7028,0,106444,'L\'Isle-sur-Serein','France','FR','L\'Isle-sur-Serein (France)',1,1,0),(7029,0,106445,'Lisnaskea','United Kingdom','UK','Lisnaskea (United Kingdom)',1,1,0),(7030,0,106446,'Little Hautbois','United Kingdom','UK','Little Hautbois (United Kingdom)',1,1,0),(7031,0,106447,'Livny','Russia','RU','Livny (Russia)',1,1,0),(7032,0,106448,'Ljosland','Norway','NO','Ljosland (Norway)',1,1,0),(7033,0,106449,'Loceri','Italy','IT','Loceri (Italy)',1,1,0),(7034,31832,106450,'Long Jetty','Australia','AU','Long Jetty (Australia)',1,1,0),(7035,0,106452,'Los Ayala','Mexico','MX','Los Ayala (Mexico)',1,1,0),(7036,0,106453,'Los Mogos','Costa Rica','CR','Los Mogos (Costa Rica)',1,1,0),(7037,15919,106454,'Los Vilos','Chile','CL','Los Vilos (Chile)',1,1,0),(7038,0,106455,'Louiseville','Canada','CA','Louiseville (Canada)',1,1,0),(7039,0,106456,'Louresse Rochemenier','France','FR','Louresse Rochemenier (France)',1,1,0),(7040,0,106457,'Lower Oddington','United Kingdom','UK','Lower Oddington (United Kingdom)',1,1,0),(7041,0,106458,'Lower Portland','Australia','AU','Lower Portland (Australia)',1,1,0),(7042,0,106459,'Lucas Heights','Australia','AU','Lucas Heights (Australia)',1,1,0),(7043,0,106460,'Lucoli','Italy','IT','Lucoli (Italy)',1,1,0),(7044,0,106461,'Lumiar','Brazil','BR','Lumiar (Brazil)',1,1,0),(7045,0,106462,'Lunevo','Russia','RU','Lunevo (Russia)',1,1,0),(7046,0,106463,'Luster','Norway','NO','Luster (Norway)',1,1,0),(7047,16154,106464,'Luye','Taiwan','TW','Luye (Taiwan)',1,1,0),(7048,0,106465,'Lydford-on-Fosse','United Kingdom','UK','Lydford-on-Fosse (United Kingdom)',1,1,0),(7049,0,106466,'Machachi','Ecuador','EC','Machachi (Ecuador)',1,1,0),(7050,0,106467,'Maclean','Australia','AU','Maclean (Australia)',1,1,0),(7051,0,106468,'Madawaska Valley','Canada','CA','Madawaska Valley (Canada)',1,1,0),(7052,0,106469,'Maetaguse','Estonia','EE','Maetaguse (Estonia)',1,1,0),(7053,0,106470,'Maida','Italy','IT','Maida (Italy)',1,1,0),(7054,0,106471,'Mala Tsarkva','Bulgaria','BG','Mala Tsarkva (Bulgaria)',1,1,0),(7055,16489,106472,'Malanda','Australia','AU','Malanda (Australia)',1,1,0),(7056,0,106473,'Malpas','United Kingdom','UK','Malpas (United Kingdom)',1,1,0),(7057,16599,106474,'Manarola','Italy','IT','Manarola (Italy)',1,1,0),(7058,0,106475,'Mangawhai','New Zealand','NZ','Mangawhai (New Zealand)',1,1,0),(7059,0,106476,'Manglisi','Georgia','GE','Manglisi (Georgia)',1,1,0),(7060,0,106477,'Mangone','Italy','IT','Mangone (Italy)',1,1,0),(7061,16713,106478,'Manunda','Australia','AU','Manunda (Australia)',1,1,0),(7062,0,106479,'Marano Lagunare','Italy','IT','Marano Lagunare (Italy)',1,1,0),(7063,0,106480,'Maren-Kessel','Netherlands','NL','Maren-Kessel (Netherlands)',1,1,0),(7064,0,106482,'Marieville','Canada','CA','Marieville (Canada)',1,1,0),(7065,0,106483,'Marina di Andora','Italy','IT','Marina di Andora (Italy)',1,1,0),(7066,16954,106484,'Marsta','Sweden','SE','Marsta (Sweden)',1,1,0),(7067,16955,106485,'Marstal','Denmark','DK','Marstal (Denmark)',1,1,0),(7068,0,106486,'Martos','Spain','ES','Martos (Spain)',1,1,0),(7069,0,106487,'Marushkino','Russia','RU','Marushkino (Russia)',1,1,0),(7070,0,106488,'Masai','Malaysia','MY','Masai (Malaysia)',1,1,0),(7071,17051,106489,'Massey','Canada','CA','Massey (Canada)',1,1,0),(7072,0,106490,'Maui Bay','Fiji Islands','FJ','Maui Bay (Fiji Islands)',1,1,0),(7073,17177,106491,'Mawlamyine','Myanmar','MM','Mawlamyine (Myanmar)',1,1,0),(7074,0,106492,'Mayotte','Comoros','KM','Mayotte (Comoros)',1,1,0),(7075,0,106493,'McCreary','Canada','CA','McCreary (Canada)',1,1,0),(7076,0,106494,'Medinya','Spain','ES','Medinya (Spain)',1,1,0),(7077,0,106495,'Medolla','Italy','IT','Medolla (Italy)',1,1,0),(7078,0,106496,'Mequinenza','Spain','ES','Mequinenza (Spain)',1,1,0),(7079,0,106497,'Mere','United Kingdom','UK','Mere (United Kingdom)',1,1,0),(7080,0,106498,'Methana','Greece','GR','Methana (Greece)',1,1,0),(7081,17574,106499,'Metula','Israel','IL','Metula (Israel)',1,1,0),(7082,0,106500,'Meuzac','France','FR','Meuzac (France)',1,1,0),(7083,0,106501,'Miacatlan','Mexico','MX','Miacatlan (Mexico)',1,1,0),(7084,0,106503,'Miena','Australia','AU','Miena (Australia)',1,1,0),(7085,0,106504,'Miglieglia','Switzerland','CH','Miglieglia (Switzerland)',1,1,0),(7086,0,106505,'Milin','Czech Republic','CZ','Milin (Czech Republic)',1,1,0),(7087,0,106506,'Mineral del Chico','Mexico','MX','Mineral del Chico (Mexico)',1,1,0),(7088,0,106507,'Minsk Mazowiecki','Poland','PL','Minsk Mazowiecki (Poland)',1,1,0),(7089,0,106508,'Mirambel','Spain','ES','Mirambel (Spain)',1,1,0),(7090,0,106509,'Miriam Vale','Australia','AU','Miriam Vale (Australia)',1,1,0),(7091,0,106511,'Miroschau','Czech Republic','CZ','Miroschau (Czech Republic)',1,1,0),(7092,0,106512,'Mniow','Poland','PL','Mniow (Poland)',1,1,0),(7093,0,106513,'Moergestel','Netherlands','NL','Moergestel (Netherlands)',1,1,0),(7094,0,106515,'Mohlin','Switzerland','CH','Mohlin (Switzerland)',1,1,0),(7095,0,106516,'Mombetsu','Japan','JP','Mombetsu (Japan)',1,1,0),(7096,0,106517,'Moni-Woloara','Indonesia','ID','Moni-Woloara (Indonesia)',1,1,0),(7097,0,106518,'Montanaro','Italy','IT','Montanaro (Italy)',1,1,0),(7098,0,106519,'Montedoro','Italy','IT','Montedoro (Italy)',1,1,0),(7099,0,106520,'Montefalcione','Italy','IT','Montefalcione (Italy)',1,1,0),(7100,0,106521,'Montegalda','Italy','IT','Montegalda (Italy)',1,1,0),(7101,0,106522,'Montijo (Badajoz)','Spain','ES','Montijo (Badajoz) (Spain)',1,1,0),(7102,18293,106523,'Montornes del Valles','Spain','ES','Montornes del Valles (Spain)',1,1,0),(7103,0,106524,'Montrouis','Haiti','HT','Montrouis (Haiti)',1,1,0),(7104,0,106525,'Mosqueruela','Spain','ES','Mosqueruela (Spain)',1,1,0),(7105,0,106526,'Mostovskoy','Russia','RU','Mostovskoy (Russia)',1,1,0),(7106,0,106527,'Moulins la Marche','France','FR','Moulins la Marche (France)',1,1,0),(7107,32024,106528,'Mount Macedon','Australia','AU','Mount Macedon (Australia)',1,1,0),(7108,0,106529,'Mount Sanqing','China','CN','Mount Sanqing (China)',1,1,0),(7109,0,106530,'Mount View','Australia','AU','Mount View (Australia)',1,1,0),(7110,0,106531,'Moux En Morvan','France','FR','Moux En Morvan (France)',1,1,0),(7111,0,106532,'M\'Rirt','Morocco','MA','M\'Rirt (Morocco)',1,1,0),(7112,0,106533,'Muang Xay','LAOS','LA','Muang Xay (LAOS)',1,1,0),(7113,0,106534,'Mucuge','Brazil','BR','Mucuge (Brazil)',1,1,0),(7114,0,106535,'Myachkovo','Russia','RU','Myachkovo (Russia)',1,1,0),(7115,0,106536,'Nainamadama','Sri Lanka','LK','Nainamadama (Sri Lanka)',1,1,0),(7116,0,106537,'Nantan','Japan','JP','Nantan (Japan)',1,1,0),(7117,0,106538,'Nantun','Taiwan','TW','Nantun (Taiwan)',1,1,0),(7118,18983,106539,'Napier','South Africa','ZA','Napier (South Africa)',1,1,0),(7119,0,106540,'Nerva','Spain','ES','Nerva (Spain)',1,1,0),(7120,0,106541,'Nesna','Norway','NO','Nesna (Norway)',1,1,0),(7121,0,106542,'Nesterenki','Ukraine','UA','Nesterenki (Ukraine)',1,1,0),(7122,0,106543,'Neudorf','Germany','DE','Neudorf (Germany)',1,1,0),(7123,0,106544,'Neuheim','Switzerland','CH','Neuheim (Switzerland)',1,1,0),(7124,0,106545,'Newent','United Kingdom','UK','Newent (United Kingdom)',1,1,0),(7125,19371,106546,'Ngaruawahia','New Zealand','NZ','Ngaruawahia (New Zealand)',1,1,0),(7126,0,106547,'Niikappu','Japan','JP','Niikappu (Japan)',1,1,0),(7127,0,106548,'Niscemi','Italy','IT','Niscemi (Italy)',1,1,0),(7128,0,106549,'Niwy','Poland','PL','Niwy (Poland)',1,1,0),(7129,0,106550,'Noenphra','Thailand','TH','Noenphra (Thailand)',1,1,0),(7130,0,106551,'Noisy-le-Roi','France','FR','Noisy-le-Roi (France)',1,1,0),(7131,0,106552,'Norochcholai','Sri Lanka','LK','Norochcholai (Sri Lanka)',1,1,0),(7132,0,106553,'Norrahamar','Sweden','SE','Norrahamar (Sweden)',1,1,0),(7133,0,106554,'Norsborg','Sweden','SE','Norsborg (Sweden)',1,1,0),(7134,0,106555,'North Lake','Canada','CA','North Lake (Canada)',1,1,0),(7135,0,106557,'Notre Dame de Sanilhac','France','FR','Notre Dame de Sanilhac (France)',1,1,0),(7136,0,106558,'Nova Vicosa','Brazil','BR','Nova Vicosa (Brazil)',1,1,0),(7137,0,106559,'Nove Mesto nad Vahom','Slovakia','SK','Nove Mesto nad Vahom (Slovakia)',1,1,0),(7138,0,106560,'Nueve de Julio','Argentina','AR','Nueve de Julio (Argentina)',1,1,0),(7139,0,106561,'Nysiros','Greece','GR','Nysiros (Greece)',1,1,0),(7140,0,106562,'Ocean Grove','Australia','AU','Ocean Grove (Australia)',1,1,0),(7141,32338,106563,'Odate','Japan','JP','Odate (Japan)',1,1,0),(7142,0,106564,'Old Windsor','United Kingdom','UK','Old Windsor (United Kingdom)',1,1,0),(7143,20111,106565,'Omoa','Honduras','HN','Omoa (Honduras)',1,1,0),(7144,0,106566,'Onna','Japan','JP','Onna (Japan)',1,1,0),(7145,20156,106567,'Oost-Vlieland','Netherlands','NL','Oost-Vlieland (Netherlands)',1,1,0),(7146,0,106568,'Ophir','New Zealand','NZ','Ophir (New Zealand)',1,1,0),(7147,0,106569,'Orechova Poton','Slovakia','SK','Orechova Poton (Slovakia)',1,1,0),(7148,0,106570,'Orellan','Spain','ES','Orellan (Spain)',1,1,0),(7149,0,106571,'Orero','Italy','IT','Orero (Italy)',1,1,0),(7150,0,106572,'Orlicky','Czech Republic','CZ','Orlicky (Czech Republic)',1,1,0),(7151,0,106573,'Orskog','Norway','NO','Orskog (Norway)',1,1,0),(7152,0,106574,'Osa','Russia','RU','Osa (Russia)',1,1,0),(7153,0,106575,'Ostaschkow','Russia','RU','Ostaschkow (Russia)',1,1,0),(7154,0,106576,'Paasloo','Netherlands','NL','Paasloo (Netherlands)',1,1,0),(7155,0,106577,'Paekakariki','New Zealand','NZ','Paekakariki (New Zealand)',1,1,0),(7156,0,106578,'Palmar de Ocoa','Dominican Republic','DO','Palmar de Ocoa (Dominican Republic)',1,1,0),(7157,0,106579,'Palsbole','Finland','FI','Palsbole (Finland)',1,1,0),(7158,0,106581,'Paracambi','Brazil','BR','Paracambi (Brazil)',1,1,0),(7159,0,106582,'Paracuellos de Jarama','Spain','ES','Paracuellos de Jarama (Spain)',1,1,0),(7160,0,106583,'Paraiso','Dominican Republic','DO','Paraiso (Dominican Republic)',1,1,0),(7161,0,106584,'Paris','Canada','CA','Paris (Canada)',1,1,0),(7162,0,106585,'Parona','Italy','IT','Parona (Italy)',1,1,0),(7163,0,106586,'Pateley Bridge','United Kingdom','UK','Pateley Bridge (United Kingdom)',1,1,0),(7164,0,106587,'Paternion','Italy','IT','Paternion (Italy)',1,1,0),(7165,0,106588,'Pati','Indonesia','ID','Pati (Indonesia)',1,1,0),(7166,0,106589,'Patrony','Russia','RU','Patrony (Russia)',1,1,0),(7167,0,106590,'Pau dos Ferros','Brazil','BR','Pau dos Ferros (Brazil)',1,1,0),(7168,20967,106591,'Peachland','Canada','CA','Peachland (Canada)',1,1,0),(7169,0,106592,'Peak Hill','Australia','AU','Peak Hill (Australia)',1,1,0),(7170,0,106593,'Pegsdon','United Kingdom','UK','Pegsdon (United Kingdom)',1,1,0),(7171,0,106594,'Pender Island','Canada','CA','Pender Island (Canada)',1,1,0),(7172,0,106595,'Penetanguishene','Canada','CA','Penetanguishene (Canada)',1,1,0),(7173,0,106596,'Penuktukan','Indonesia','ID','Penuktukan (Indonesia)',1,1,0),(7174,0,106597,'Pergamino','Argentina','AR','Pergamino (Argentina)',1,1,0),(7175,0,106598,'Pescate','Italy','IT','Pescate (Italy)',1,1,0),(7176,0,106599,'Pesochny','Russia','RU','Pesochny (Russia)',1,1,0),(7177,0,106600,'Petersbach','France','FR','Petersbach (France)',1,1,0),(7178,0,106601,'Petit-Rocher','Canada','CA','Petit-Rocher (Canada)',1,1,0),(7179,0,106602,'Petrovice','Czech Republic','CZ','Petrovice (Czech Republic)',1,1,0),(7180,0,106603,'Petrovice u Karvine','Czech Republic','CZ','Petrovice u Karvine (Czech Republic)',1,1,0),(7181,0,106604,'Peyriac Minervois','France','FR','Peyriac Minervois (France)',1,1,0),(7182,0,106605,'Peyrolles en Provence','France','FR','Peyrolles en Provence (France)',1,1,0),(7183,0,106606,'Phlu Ta Luang','Thailand','TH','Phlu Ta Luang (Thailand)',1,1,0),(7184,0,106607,'Phu Ruea','Thailand','TH','Phu Ruea (Thailand)',1,1,0),(7185,0,106608,'Phu Wiang','Thailand','TH','Phu Wiang (Thailand)',1,1,0),(7186,21322,106609,'Pialba','Australia','AU','Pialba (Australia)',1,1,0),(7187,0,106610,'Pichanaki','Peru','PE','Pichanaki (Peru)',1,1,0),(7188,0,106611,'Piedra Pinta','Mexico','MX','Piedra Pinta (Mexico)',1,1,0),(7189,0,106612,'Pierre Percee','France','FR','Pierre Percee (France)',1,1,0),(7190,0,106613,'Pihtla','Estonia','EE','Pihtla (Estonia)',1,1,0),(7191,0,106614,'Pinarbasi','Turkey','TR','Pinarbasi (Turkey)',1,1,0),(7192,21455,106615,'Pinto','Chile','CL','Pinto (Chile)',1,1,0),(7193,0,106616,'Piode','Italy','IT','Piode (Italy)',1,1,0),(7194,0,106617,'Pirenopolis','Brazil','BR','Pirenopolis (Brazil)',1,1,0),(7195,0,106618,'Pitkyaranta','Russia','RU','Pitkyaranta (Russia)',1,1,0),(7196,0,106619,'Piuma','Brazil','BR','Piuma (Brazil)',1,1,0),(7197,0,106620,'Planeil','Italy','IT','Planeil (Italy)',1,1,0),(7198,0,106621,'Plewiska','Poland','PL','Plewiska (Poland)',1,1,0),(7199,0,106622,'Podstolice','Poland','PL','Podstolice (Poland)',1,1,0),(7200,0,106623,'Polistena','Italy','IT','Polistena (Italy)',1,1,0),(7201,0,106624,'Politika','Greece','GR','Politika (Greece)',1,1,0),(7202,21708,106625,'Pollica','Italy','IT','Pollica (Italy)',1,1,0),(7203,0,106626,'Polonezkoy','Turkey','TR','Polonezkoy (Turkey)',1,1,0),(7204,0,106627,'Polverigi','Italy','IT','Polverigi (Italy)',1,1,0),(7205,0,106628,'Pomona','Australia','AU','Pomona (Australia)',1,1,0),(7206,0,106629,'Pomponesco','Italy','IT','Pomponesco (Italy)',1,1,0),(7207,0,106630,'Poncin','France','FR','Poncin (France)',1,1,0),(7208,0,106631,'Pong','Thailand','TH','Pong (Thailand)',1,1,0),(7209,0,106632,'Pooraka','Australia','AU','Pooraka (Australia)',1,1,0),(7210,0,106633,'Port Dalhousie','Canada','CA','Port Dalhousie (Canada)',1,1,0),(7211,0,106634,'Port McNicoll','Canada','CA','Port McNicoll (Canada)',1,1,0),(7212,0,106635,'Port Nolloth','South Africa','ZA','Port Nolloth (South Africa)',1,1,0),(7213,0,106636,'Port-Brillet','France','FR','Port-Brillet (France)',1,1,0),(7214,0,106637,'Postbridge','United Kingdom','UK','Postbridge (United Kingdom)',1,1,0),(7215,0,106638,'Poza de la Sal','Spain','ES','Poza de la Sal (Spain)',1,1,0),(7216,0,106640,'Shuezero','Russia','RU','Shuezero (Russia)',1,1,0),(7217,0,106641,'Shustino','Russia','RU','Shustino (Russia)',1,1,0),(7218,0,106642,'Siebnen','Switzerland','CH','Siebnen (Switzerland)',1,1,0),(7219,0,106643,'Siete Iglesias de Trabancos','Spain','ES','Siete Iglesias de Trabancos (Spain)',1,1,0),(7220,25211,106644,'Siilinjarvi','Finland','FI','Siilinjarvi (Finland)',1,1,0),(7221,0,106645,'Silopi','Turkey','TR','Silopi (Turkey)',1,1,0),(7222,0,106646,'Sincelejo','Colombia','CO','Sincelejo (Colombia)',1,1,0),(7223,0,106647,'Singakerta','Indonesia','ID','Singakerta (Indonesia)',1,1,0),(7224,0,106648,'Singletons Mill','Australia','AU','Singletons Mill (Australia)',1,1,0),(7225,0,106652,'Skomielna Czarna','Poland','PL','Skomielna Czarna (Poland)',1,1,0),(7226,0,106653,'Skultuna','Sweden','SE','Skultuna (Sweden)',1,1,0),(7227,0,106654,'Skummeslovsstrand','Sweden','SE','Skummeslovsstrand (Sweden)',1,1,0),(7228,0,106655,'Smrdaky','Slovakia','SK','Smrdaky (Slovakia)',1,1,0),(7229,0,106656,'Soglio','Switzerland','CH','Soglio (Switzerland)',1,1,0),(7230,0,106657,'Sokilnyky','Ukraine','UA','Sokilnyky (Ukraine)',1,1,0),(7231,0,106658,'Soleto','Italy','IT','Soleto (Italy)',1,1,0),(7232,0,106659,'Sonzacate','El Salvador','SV','Sonzacate (El Salvador)',1,1,0),(7233,0,106660,'Parnac (Indre)','France','FR','Parnac (Indre) (France)',1,1,0),(7234,0,106661,'Paskallavik','Sweden','SE','Paskallavik (Sweden)',1,1,0),(7235,0,106664,'Pattada','Italy','IT','Pattada (Italy)',1,1,0),(7236,0,106665,'Pavel Banya','Bulgaria','BG','Pavel Banya (Bulgaria)',1,1,0),(7237,0,106666,'Paynesville','Australia','AU','Paynesville (Australia)',1,1,0),(7238,0,106667,'Penguin','Australia','AU','Penguin (Australia)',1,1,0),(7239,0,106668,'Penobsquis','Canada','CA','Penobsquis (Canada)',1,1,0),(7240,0,106669,'Perasdorf','Germany','DE','Perasdorf (Germany)',1,1,0),(7241,0,106670,'Perouges','France','FR','Perouges (France)',1,1,0),(7242,21195,106671,'Peruibe','Brazil','BR','Peruibe (Brazil)',1,1,0),(7243,21206,106672,'Pescocostanzo','Italy','IT','Pescocostanzo (Italy)',1,1,0),(7244,0,106673,'Petschory','Russia','RU','Petschory (Russia)',1,1,0),(7245,0,106674,'Peyrat de Bellac','France','FR','Peyrat de Bellac (France)',1,1,0),(7246,0,106675,'Peyrouse','France','FR','Peyrouse (France)',1,1,0),(7247,0,106677,'Pianengo','Italy','IT','Pianengo (Italy)',1,1,0),(7248,0,106678,'Pickering Brook','Australia','AU','Pickering Brook (Australia)',1,1,0),(7249,0,106679,'Pidhirne','Ukraine','UA','Pidhirne (Ukraine)',1,1,0),(7250,21363,106680,'Piedade','Brazil','BR','Piedade (Brazil)',1,1,0),(7251,0,106681,'Pietracamela','Italy','IT','Pietracamela (Italy)',1,1,0),(7252,0,106682,'Pinwatta','Sri Lanka','LK','Pinwatta (Sri Lanka)',1,1,0),(7253,0,106683,'Piranhas','Brazil','BR','Piranhas (Brazil)',1,1,0),(7254,0,106684,'Pisogne','Italy','IT','Pisogne (Italy)',1,1,0),(7255,0,106685,'Plaster Rock','Canada','CA','Plaster Rock (Canada)',1,1,0),(7256,21626,106686,'Plymouth','Trinidad and Tobago','TT','Plymouth (Trinidad and Tobago)',1,1,0),(7257,0,106687,'Polanica (Jaremcze)','Ukraine','UA','Polanica (Jaremcze) (Ukraine)',1,1,0),(7258,0,106688,'Pombeiro da Beira','Portugal','PT','Pombeiro da Beira (Portugal)',1,1,0),(7259,0,106689,'Pont-de-Labeaume','France','FR','Pont-de-Labeaume (France)',1,1,0),(7260,0,106690,'Pontevico','Italy','IT','Pontevico (Italy)',1,1,0),(7261,0,106691,'Porrera','Spain','ES','Porrera (Spain)',1,1,0),(7262,0,106692,'Port Albert','Canada','CA','Port Albert (Canada)',1,1,0),(7263,0,106693,'Port Eynon','United Kingdom','UK','Port Eynon (United Kingdom)',1,1,0),(7264,0,106694,'Port MacDonnell','Australia','AU','Port MacDonnell (Australia)',1,1,0),(7265,0,106695,'Portneuf','Canada','CA','Portneuf (Canada)',1,1,0),(7266,0,106696,'Posse','Brazil','BR','Posse (Brazil)',1,1,0),(7267,0,106697,'Pradorrey','Spain','ES','Pradorrey (Spain)',1,1,0),(7268,0,106698,'Praslavice','Czech Republic','CZ','Praslavice (Czech Republic)',1,1,0),(7269,0,106699,'Prey Veng','Cambodia','KH','Prey Veng (Cambodia)',1,1,0),(7270,0,106700,'Princes Risborough','United Kingdom','UK','Princes Risborough (United Kingdom)',1,1,0),(7271,0,106701,'Privetnoye','Ukraine','UA','Privetnoye (Ukraine)',1,1,0),(7272,0,106702,'Providencia','Chile','CL','Providencia (Chile)',1,1,0),(7273,0,106704,'Puerto Gaitan','Colombia','CO','Puerto Gaitan (Colombia)',1,1,0),(7274,0,106705,'Puerto Lapice','Spain','ES','Puerto Lapice (Spain)',1,1,0),(7275,0,106706,'Punta Ballena','Uruguay','UY','Punta Ballena (Uruguay)',1,1,0),(7276,22249,106707,'Punta Hermosa','Peru','PE','Punta Hermosa (Peru)',1,1,0),(7277,0,106708,'Pursat','Cambodia','KH','Pursat (Cambodia)',1,1,0),(7278,0,106709,'Puyo','Ecuador','EC','Puyo (Ecuador)',1,1,0),(7279,0,106710,'Pyeongtaek','South Korea','KR','Pyeongtaek (South Korea)',1,1,0),(7280,22313,106711,'Pyrmont','Australia','AU','Pyrmont (Australia)',1,1,0),(7281,0,106712,'Qabala','Azerbaijan','AZ','Qabala (Azerbaijan)',1,1,0),(7282,0,106713,'Quan Lan','Vietnam','VN','Quan Lan (Vietnam)',1,1,0),(7283,0,106714,'Quarona','Italy','IT','Quarona (Italy)',1,1,0),(7284,0,106715,'Quend-Plage-les-Pins','France','FR','Quend-Plage-les-Pins (France)',1,1,0),(7285,22406,106716,'Quimbaya','Colombia','CO','Quimbaya (Colombia)',1,1,0),(7286,0,106717,'Quiroga','Mexico','MX','Quiroga (Mexico)',1,1,0),(7287,0,106718,'Ra’anana','Israel','IL','Ra’anana (Israel)',1,1,0),(7288,0,106719,'Ravenstone','United Kingdom','UK','Ravenstone (United Kingdom)',1,1,0),(7289,0,106720,'Rencurel','France','FR','Rencurel (France)',1,1,0),(7290,0,106721,'Rennesoy','Norway','NO','Rennesoy (Norway)',1,1,0),(7291,0,106722,'Resen','Macedonia','MK','Resen (Macedonia)',1,1,0),(7292,0,106723,'Rhemes-Saint-Georges','Italy','IT','Rhemes-Saint-Georges (Italy)',1,1,0),(7293,0,106724,'Rhiconich','United Kingdom','UK','Rhiconich (United Kingdom)',1,1,0),(7294,0,106725,'Ridsdale','United Kingdom','UK','Ridsdale (United Kingdom)',1,1,0),(7295,0,106726,'Rio Casca','Brazil','BR','Rio Casca (Brazil)',1,1,0),(7296,23007,106727,'Rionegro','Colombia','CO','Rionegro (Colombia)',1,1,0),(7297,0,106728,'Risudden','Sweden','SE','Risudden (Sweden)',1,1,0),(7298,0,106729,'River','United Kingdom','UK','River (United Kingdom)',1,1,0),(7299,0,106730,'Rivera','Switzerland','CH','Rivera (Switzerland)',1,1,0),(7300,0,106731,'Roberts Creek','Canada','CA','Roberts Creek (Canada)',1,1,0),(7301,0,106732,'Rocher','France','FR','Rocher (France)',1,1,0),(7302,0,106733,'Rocroi','France','FR','Rocroi (France)',1,1,0),(7303,0,106734,'Rolo','Italy','IT','Rolo (Italy)',1,1,0),(7304,0,106735,'Romang','Argentina','AR','Romang (Argentina)',1,1,0),(7305,0,106736,'Ronnang','Sweden','SE','Ronnang (Sweden)',1,1,0),(7306,0,106737,'Rosedale','Australia','AU','Rosedale (Australia)',1,1,0),(7307,0,106738,'Roseira','Brazil','BR','Roseira (Brazil)',1,1,0),(7308,0,106739,'Rotenbach','Germany','DE','Rotenbach (Germany)',1,1,0),(7309,0,106740,'Rozzano','Italy','IT','Rozzano (Italy)',1,1,0),(7310,0,106741,'Rudnik','Serbia','RS','Rudnik (Serbia)',1,1,0),(7311,0,106742,'Rudozem','Bulgaria','BG','Rudozem (Bulgaria)',1,1,0),(7312,0,106743,'Rusne','Lithuania','LT','Rusne (Lithuania)',1,1,0),(7313,0,106744,'Ryasne Ruske','Ukraine','UA','Ryasne Ruske (Ukraine)',1,1,0),(7314,0,106745,'Rychwald','Poland','PL','Rychwald (Poland)',1,1,0),(7315,0,106746,'Rydal','United Kingdom','UK','Rydal (United Kingdom)',1,1,0),(7316,0,106747,'s Gravenmoer','Netherlands','NL','s Gravenmoer (Netherlands)',1,1,0),(7317,0,106748,'Saint Leonard','Canada','CA','Saint Leonard (Canada)',1,1,0),(7318,0,106749,'Saint Martin de Caralp','France','FR','Saint Martin de Caralp (France)',1,1,0),(7319,0,106750,'Saint-Leu-d\'Esserent','France','FR','Saint-Leu-d\'Esserent (France)',1,1,0),(7320,0,106751,'Saint-Mamet-la-Salvetat','France','FR','Saint-Mamet-la-Salvetat (France)',1,1,0),(7321,0,106752,'Saint-Martin-Terressus','France','FR','Saint-Martin-Terressus (France)',1,1,0),(7322,0,106753,'Saint-Remy','France','FR','Saint-Remy (France)',1,1,0),(7323,0,106754,'Saint-Valere','Canada','CA','Saint-Valere (Canada)',1,1,0),(7324,0,106755,'Sakiai','Lithuania','LT','Sakiai (Lithuania)',1,1,0),(7325,0,106756,'Sakurai','Japan','JP','Sakurai (Japan)',1,1,0),(7326,23968,106757,'Salamander Bay','Australia','AU','Salamander Bay (Australia)',1,1,0),(7327,0,106758,'Salinas','Spain','ES','Salinas (Spain)',1,1,0),(7328,0,106759,'Salisbury','Australia','AU','Salisbury (Australia)',1,1,0),(7329,0,106760,'Samani','Japan','JP','Samani (Japan)',1,1,0),(7330,0,106761,'Samorin','Slovakia','SK','Samorin (Slovakia)',1,1,0),(7331,0,106762,'San Benito','Guatemala','GT','San Benito (Guatemala)',1,1,0),(7332,0,106763,'San Francisco','Colombia','CO','San Francisco (Colombia)',1,1,0),(7333,0,106764,'San Francisco','Mexico','MX','San Francisco (Mexico)',1,1,0),(7334,0,106765,'San Gregorio de Polanco','Uruguay','UY','San Gregorio de Polanco (Uruguay)',1,1,0),(7335,33062,106766,'San Leo','Italy','IT','San Leo (Italy)',1,1,0),(7336,0,106767,'San Martin Texmelucan de Labastida','Mexico','MX','San Martin Texmelucan de Labastida (Mexico)',1,1,0),(7337,0,106768,'San Patricio-Melaque','Mexico','MX','San Patricio-Melaque (Mexico)',1,1,0),(7338,0,106769,'San Pietro Infine','Italy','IT','San Pietro Infine (Italy)',1,1,0),(7339,0,106771,'Sandford','Australia','AU','Sandford (Australia)',1,1,0),(7340,0,106772,'Sanilhac','France','FR','Sanilhac (France)',1,1,0),(7341,0,106773,'Sankt Georgenthal','Czech Republic','CZ','Sankt Georgenthal (Czech Republic)',1,1,0),(7342,0,106774,'Sanluri','Italy','IT','Sanluri (Italy)',1,1,0),(7343,0,106775,'Sannazzaro de\' Burgondi','Italy','IT','Sannazzaro de\' Burgondi (Italy)',1,1,0),(7344,0,106776,'Sant Joan de les Abadesses','Spain','ES','Sant Joan de les Abadesses (Spain)',1,1,0),(7345,0,106777,'Sant Mateu','Spain','ES','Sant Mateu (Spain)',1,1,0),(7346,0,106778,'Santa Veronica','Mexico','MX','Santa Veronica (Mexico)',1,1,0),(7347,0,106779,'Santo Stefano d’Aveto','Italy','IT','Santo Stefano d’Aveto (Italy)',1,1,0),(7348,0,106780,'Sao Borja','Brazil','BR','Sao Borja (Brazil)',1,1,0),(7349,0,106781,'Sao Joao do Polesine','Brazil','BR','Sao Joao do Polesine (Brazil)',1,1,0),(7350,0,106782,'Sao Pedro','Brazil','BR','Sao Pedro (Brazil)',1,1,0),(7351,0,106783,'Sao Thome das Letras','Brazil','BR','Sao Thome das Letras (Brazil)',1,1,0),(7352,0,106784,'Sapzurro','Colombia','CO','Sapzurro (Colombia)',1,1,0),(7353,24326,106785,'Sarikamis','Turkey','TR','Sarikamis (Turkey)',1,1,0),(7354,0,106786,'Sarimsakli','Turkey','TR','Sarimsakli (Turkey)',1,1,0),(7355,0,106787,'Sauze di Cesana','Italy','IT','Sauze di Cesana (Italy)',1,1,0),(7356,24436,106788,'Savignone','Italy','IT','Savignone (Italy)',1,1,0),(7357,0,106789,'Schwarzsee','Switzerland','CH','Schwarzsee (Switzerland)',1,1,0),(7358,0,106790,'Seabra','Brazil','BR','Seabra (Brazil)',1,1,0),(7359,0,106791,'Sehwan','Pakistan','PK','Sehwan (Pakistan)',1,1,0),(7360,24750,106792,'Seillans','France','FR','Seillans (France)',1,1,0),(7361,0,106793,'Sendang','Indonesia','ID','Sendang (Indonesia)',1,1,0),(7362,0,106794,'Sereflikochisar','Turkey','TR','Sereflikochisar (Turkey)',1,1,0),(7363,0,106795,'Seri Manjung','Malaysia','MY','Seri Manjung (Malaysia)',1,1,0),(7364,33404,106796,'Serra Negra','Brazil','BR','Serra Negra (Brazil)',1,1,0),(7365,0,106797,'Serratella','Spain','ES','Serratella (Spain)',1,1,0),(7366,0,106798,'Serravalle di Carda','Italy','IT','Serravalle di Carda (Italy)',1,1,0),(7367,24887,106799,'Sessa Aurunca','Italy','IT','Sessa Aurunca (Italy)',1,1,0),(7368,0,106800,'Sewerobaikalsk','Russia','RU','Sewerobaikalsk (Russia)',1,1,0),(7369,0,106801,'Shirokaya Balka','Russia','RU','Shirokaya Balka (Russia)',1,1,0),(7370,25140,106802,'Shunan','Japan','JP','Shunan (Japan)',1,1,0),(7371,25143,106803,'Shunyi','China','CN','Shunyi (China)',1,1,0),(7372,0,106804,'Streltscha','Bulgaria','BG','Streltscha (Bulgaria)',1,1,0),(7373,26339,106805,'Sukawati','Indonesia','ID','Sukawati (Indonesia)',1,1,0),(7374,0,106806,'Sultandagi','Turkey','TR','Sultandagi (Turkey)',1,1,0),(7375,0,106807,'Sunbury-on-Thames','United Kingdom','UK','Sunbury-on-Thames (United Kingdom)',1,1,0),(7376,0,106808,'Sunshine Beach','Australia','AU','Sunshine Beach (Australia)',1,1,0),(7377,0,106809,'Supino','Italy','IT','Supino (Italy)',1,1,0),(7378,0,106810,'Supsekh','Russia','RU','Supsekh (Russia)',1,1,0),(7379,0,106811,'Sussex Inlet','Australia','AU','Sussex Inlet (Australia)',1,1,0),(7380,26472,106812,'Sutton','Australia','AU','Sutton (Australia)',1,1,0),(7381,0,106813,'Suxian','China','CN','Suxian (China)',1,1,0),(7382,0,106814,'Swetogorsk','Russia','RU','Swetogorsk (Russia)',1,1,0),(7383,0,106815,'Swjatohirsk','Ukraine','UA','Swjatohirsk (Ukraine)',1,1,0),(7384,0,106816,'Szalka','Hungary','HU','Szalka (Hungary)',1,1,0),(7385,0,106817,'Szamotuly','Poland','PL','Szamotuly (Poland)',1,1,0),(7386,0,106818,'Szeleste','Hungary','HU','Szeleste (Hungary)',1,1,0),(7387,0,106819,'Szerencs','Hungary','HU','Szerencs (Hungary)',1,1,0),(7388,0,106820,'Tababela','Ecuador','EC','Tababela (Ecuador)',1,1,0),(7389,0,106821,'Tabogon','Philippines','PH','Tabogon (Philippines)',1,1,0),(7390,0,106822,'Tam Dao','Vietnam','VN','Tam Dao (Vietnam)',1,1,0),(7391,0,106823,'Tamahere','New Zealand','NZ','Tamahere (New Zealand)',1,1,0),(7392,0,106824,'Tamajon','Spain','ES','Tamajon (Spain)',1,1,0),(7393,0,106825,'Tappernoje','Denmark','DK','Tappernoje (Denmark)',1,1,0),(7394,0,106826,'Tarnaveni','Romania','RO','Tarnaveni (Romania)',1,1,0),(7395,0,106827,'Tattenhall','United Kingdom','UK','Tattenhall (United Kingdom)',1,1,0),(7396,33798,106828,'Te Awanga','New Zealand','NZ','Te Awanga (New Zealand)',1,1,0),(7397,0,106829,'Teo','Spain','ES','Teo (Spain)',1,1,0),(7398,0,106830,'Tha Sala','Thailand','TH','Tha Sala (Thailand)',1,1,0),(7399,0,106831,'Tha Yang','Thailand','TH','Tha Yang (Thailand)',1,1,0),(7400,27152,106832,'The Settlement','British Virgin Islands','VG','The Settlement (British Virgin Islands)',1,1,0),(7401,0,106833,'Thiverval-Grignon','France','FR','Thiverval-Grignon (France)',1,1,0),(7402,0,106834,'Thung Song','Thailand','TH','Thung Song (Thailand)',1,1,0),(7403,0,106835,'Ticknall','United Kingdom','UK','Ticknall (United Kingdom)',1,1,0),(7404,0,106836,'Tikhoretsk','Russia','RU','Tikhoretsk (Russia)',1,1,0),(7405,0,106837,'Tisnov','Czech Republic','CZ','Tisnov (Czech Republic)',1,1,0),(7406,0,106838,'Tolon','France','FR','Tolon (France)',1,1,0),(7407,0,106839,'Tomigusuku','Japan','JP','Tomigusuku (Japan)',1,1,0),(7408,0,106840,'Torralba de Aragon','Spain','ES','Torralba de Aragon (Spain)',1,1,0),(7409,0,106841,'Torre Suda','Italy','IT','Torre Suda (Italy)',1,1,0),(7410,0,106842,'Torricella (Magione)','Italy','IT','Torricella (Magione) (Italy)',1,1,0),(7411,0,106843,'Trabada','Spain','ES','Trabada (Spain)',1,1,0),(7412,0,106844,'Trebnitz','Poland','PL','Trebnitz (Poland)',1,1,0),(7413,0,106845,'Tredegar','United Kingdom','UK','Tredegar (United Kingdom)',1,1,0),(7414,0,106846,'Trencianske Bohuslavice','Slovakia','SK','Trencianske Bohuslavice (Slovakia)',1,1,0),(7415,0,106847,'Tribano','Italy','IT','Tribano (Italy)',1,1,0),(7416,0,106848,'Trifylia','Greece','GR','Trifylia (Greece)',1,1,0),(7417,0,106850,'Truppenfeld','Poland','PL','Truppenfeld (Poland)',1,1,0),(7418,0,106851,'Tschechow','Russia','RU','Tschechow (Russia)',1,1,0),(7419,0,106852,'Tsurui','Japan','JP','Tsurui (Japan)',1,1,0),(7420,0,106853,'Tucano','Brazil','BR','Tucano (Brazil)',1,1,0),(7421,27898,106854,'Tuguegarao','Philippines','PH','Tuguegarao (Philippines)',1,1,0),(7422,0,106855,'Tumby Bay','Australia','AU','Tumby Bay (Australia)',1,1,0),(7423,0,106857,'Tuross Head','Australia','AU','Tuross Head (Australia)',1,1,0),(7424,28016,106858,'Tweed','Canada','CA','Tweed (Canada)',1,1,0),(7425,0,106859,'Ubate','Colombia','CO','Ubate (Colombia)',1,1,0),(7426,0,106860,'Ukmerge','Lithuania','LT','Ukmerge (Lithuania)',1,1,0),(7427,0,106861,'Upice (Eipel)','Czech Republic','CZ','Upice (Eipel) (Czech Republic)',1,1,0),(7428,0,106862,'Uppermill','United Kingdom','UK','Uppermill (United Kingdom)',1,1,0),(7429,0,106863,'Urnieta','Spain','ES','Urnieta (Spain)',1,1,0),(7430,0,106864,'Urtenen-Schonbuhl','Switzerland','CH','Urtenen-Schonbuhl (Switzerland)',1,1,0),(7431,0,106865,'Urzulei','Italy','IT','Urzulei (Italy)',1,1,0),(7432,0,106866,'Ussita','Italy','IT','Ussita (Italy)',1,1,0),(7433,0,106867,'Uvaly (Valtice)','Czech Republic','CZ','Uvaly (Valtice) (Czech Republic)',1,1,0),(7434,0,106868,'Valady',NULL,NULL,'Valady ()',1,1,0),(7435,0,106869,'Valdelinares','Spain','ES','Valdelinares (Spain)',1,1,0),(7436,0,106870,'Val-des-Lacs','Canada','CA','Val-des-Lacs (Canada)',1,1,0),(7437,0,106871,'Vale Park','Australia','AU','Vale Park (Australia)',1,1,0),(7438,0,106872,'Valea Calugareasca','Romania','RO','Valea Calugareasca (Romania)',1,1,0),(7439,0,106873,'Valle Vigezzo','Italy','IT','Valle Vigezzo (Italy)',1,1,0),(7440,0,106874,'Valsolda','Italy','IT','Valsolda (Italy)',1,1,0),(7441,0,106875,'Varaklani','Latvia','LV','Varaklani (Latvia)',1,1,0),(7442,0,106876,'Varby','Sweden','SE','Varby (Sweden)',1,1,0),(7443,0,106877,'Vartsila','Finland','FI','Vartsila (Finland)',1,1,0),(7444,0,106878,'Vasanello','Italy','IT','Vasanello (Italy)',1,1,0),(7445,0,106879,'Vatutinki','Russia','RU','Vatutinki (Russia)',1,1,0),(7446,0,106880,'Vauville','France','FR','Vauville (France)',1,1,0),(7447,0,106881,'Vecchiano','Italy','IT','Vecchiano (Italy)',1,1,0),(7448,0,106882,'Veduggio Con Colzano','Italy','IT','Veduggio Con Colzano (Italy)',1,1,0),(7449,0,106883,'Vega de Espinareda','Spain','ES','Vega de Espinareda (Spain)',1,1,0),(7450,0,106884,'Velka Bystrice','Czech Republic','CZ','Velka Bystrice (Czech Republic)',1,1,0),(7451,0,106885,'Ventosilla (Burgos)','Spain','ES','Ventosilla (Burgos) (Spain)',1,1,0),(7452,0,106886,'Veresegyhaz','Hungary','HU','Veresegyhaz (Hungary)',1,1,0),(7453,0,106887,'Versam','Switzerland','CH','Versam (Switzerland)',1,1,0),(7454,0,106888,'Vetren','Bulgaria','BG','Vetren (Bulgaria)',1,1,0),(7455,0,106889,'Veyangoda','Sri Lanka','LK','Veyangoda (Sri Lanka)',1,1,0),(7456,0,106890,'Vicuna','Chile','CL','Vicuna (Chile)',1,1,0),(7457,0,106891,'Videira','Brazil','BR','Videira (Brazil)',1,1,0),(7458,0,106892,'Vignoux-sur-Barangeon','France','FR','Vignoux-sur-Barangeon (France)',1,1,0),(7459,0,106893,'Vigo Rendena','Italy','IT','Vigo Rendena (Italy)',1,1,0),(7460,0,106894,'Viksdalen','Norway','NO','Viksdalen (Norway)',1,1,0),(7461,0,106895,'Silvania','Colombia','CO','Silvania (Colombia)',1,1,0),(7462,0,106896,'Sisian','Armenia','AM','Sisian (Armenia)',1,1,0),(7463,0,106897,'Sistranda','Norway','NO','Sistranda (Norway)',1,1,0),(7464,0,106899,'Skierniewice','Poland','PL','Skierniewice (Poland)',1,1,0),(7465,0,106900,'Slapanice','Czech Republic','CZ','Slapanice (Czech Republic)',1,1,0),(7466,0,106901,'Slawice','Poland','PL','Slawice (Poland)',1,1,0),(7467,0,106902,'Slussfors','Sweden','SE','Slussfors (Sweden)',1,1,0),(7468,0,106903,'Smilyan','Bulgaria','BG','Smilyan (Bulgaria)',1,1,0),(7469,0,106904,'Sobrescobio','Spain','ES','Sobrescobio (Spain)',1,1,0),(7470,0,106905,'Soke','Turkey','TR','Soke (Turkey)',1,1,0),(7471,0,106906,'Solana de Avila','Spain','ES','Solana de Avila (Spain)',1,1,0),(7472,0,106907,'Solotcha','Russia','RU','Solotcha (Russia)',1,1,0),(7473,0,106908,'Somahoz','Spain','ES','Somahoz (Spain)',1,1,0),(7474,0,106909,'Someren','Netherlands','NL','Someren (Netherlands)',1,1,0),(7475,0,106910,'Songming','China','CN','Songming (China)',1,1,0),(7476,0,106911,'Soroca','Moldova','MD','Soroca (Moldova)',1,1,0),(7477,0,106912,'Souflion','Greece','GR','Souflion (Greece)',1,1,0),(7478,0,106913,'Soufriere','Dominica','DM','Soufriere (Dominica)',1,1,0),(7479,0,106914,'Sousa',NULL,NULL,'Sousa ()',1,1,0),(7480,0,106915,'South Hazelton','Canada','CA','South Hazelton (Canada)',1,1,0),(7481,0,106916,'South Hill','Anguilla','AI','South Hill (Anguilla)',1,1,0),(7482,0,106917,'South Kilvington','United Kingdom','UK','South Kilvington (United Kingdom)',1,1,0),(7483,0,106918,'South Marston','United Kingdom','UK','South Marston (United Kingdom)',1,1,0),(7484,0,106919,'Southfield','Jamaica','JM','Southfield (Jamaica)',1,1,0),(7485,0,106920,'Sri Jayewardenepura Kotte/ Kotte','Sri Lanka','LK','Sri Jayewardenepura Kotte/ Kotte (Sri Lanka)',1,1,0),(7486,0,106921,'St Clair','Australia','AU','St Clair (Australia)',1,1,0),(7487,0,106922,'St. Andra im Sausal','Austria','AT','St. Andra im Sausal (Austria)',1,1,0),(7488,0,106923,'St. Bees','United Kingdom','UK','St. Bees (United Kingdom)',1,1,0),(7489,0,106924,'St. Lon les Mines','France','FR','St. Lon les Mines (France)',1,1,0),(7490,0,106925,'Staranzano','Italy','IT','Staranzano (Italy)',1,1,0),(7491,0,106926,'Starobelsk','Ukraine','UA','Starobelsk (Ukraine)',1,1,0),(7492,0,106927,'Stefanesti','Romania','RO','Stefanesti (Romania)',1,1,0),(7493,0,106928,'Stoyanka','Ukraine','UA','Stoyanka (Ukraine)',1,1,0),(7494,0,106929,'Strunino','Russia','RU','Strunino (Russia)',1,1,0),(7495,0,106930,'Sturovo','Slovakia','SK','Sturovo (Slovakia)',1,1,0),(7496,0,106931,'Sungai Jawi','Malaysia','MY','Sungai Jawi (Malaysia)',1,1,0),(7497,26415,106932,'Sunshine','Australia','AU','Sunshine (Australia)',1,1,0),(7498,26466,106933,'Sutherland','Australia','AU','Sutherland (Australia)',1,1,0),(7499,0,106934,'Svinosice','Czech Republic','CZ','Svinosice (Czech Republic)',1,1,0),(7500,0,106935,'Switlowodsk','Ukraine','UA','Switlowodsk (Ukraine)',1,1,0),(7501,0,106936,'Sycow','Poland','PL','Sycow (Poland)',1,1,0),(7502,0,106937,'Syrostan','Russia','RU','Syrostan (Russia)',1,1,0),(7503,0,106938,'Szpegawa','Poland','PL','Szpegawa (Poland)',1,1,0),(7504,0,106939,'Tacambaro de Codallos','Mexico','MX','Tacambaro de Codallos (Mexico)',1,1,0),(7505,0,106940,'Takanini','New Zealand','NZ','Takanini (New Zealand)',1,1,0),(7506,0,106941,'Takikawa','Japan','JP','Takikawa (Japan)',1,1,0),(7507,0,106942,'Taman','Russia','RU','Taman (Russia)',1,1,0),(7508,0,106943,'Tandridge','United Kingdom','UK','Tandridge (United Kingdom)',1,1,0),(7509,0,106944,'Tannay','Switzerland','CH','Tannay (Switzerland)',1,1,0),(7510,0,106945,'Tanvald-Sumburk','Czech Republic','CZ','Tanvald-Sumburk (Czech Republic)',1,1,0),(7511,0,106946,'Tarcoles','Costa Rica','CR','Tarcoles (Costa Rica)',1,1,0),(7512,0,106947,'Tartagal','Argentina','AR','Tartagal (Argentina)',1,1,0),(7513,0,106948,'Tarxien','Malta','MT','Tarxien (Malta)',1,1,0),(7514,0,106949,'Tarzo','Italy','IT','Tarzo (Italy)',1,1,0),(7515,0,106950,'Tatsuno','Japan','JP','Tatsuno (Japan)',1,1,0),(7516,0,106951,'Taumarunui','New Zealand','NZ','Taumarunui (New Zealand)',1,1,0),(7517,0,106952,'Tetcice','Czech Republic','CZ','Tetcice (Czech Republic)',1,1,0),(7518,0,106953,'Thame','Nepal','NP','Thame (Nepal)',1,1,0),(7519,0,106954,'That Phanom','Thailand','TH','That Phanom (Thailand)',1,1,0),(7520,0,106956,'Thornton Curtis','United Kingdom','UK','Thornton Curtis (United Kingdom)',1,1,0),(7521,0,106957,'Thornton Rust','United Kingdom','UK','Thornton Rust (United Kingdom)',1,1,0),(7522,0,106959,'Tillicoultry','United Kingdom','UK','Tillicoultry (United Kingdom)',1,1,0),(7523,0,106960,'Timaschewsk','Russia','RU','Timaschewsk (Russia)',1,1,0),(7524,0,106961,'Tinamba','Australia','AU','Tinamba (Australia)',1,1,0),(7525,0,106962,'Tirli','Italy','IT','Tirli (Italy)',1,1,0),(7526,0,106964,'Tivetshall Saint Margaret','United Kingdom','UK','Tivetshall Saint Margaret (United Kingdom)',1,1,0),(7527,0,106965,'Tlaltizapan','Mexico','MX','Tlaltizapan (Mexico)',1,1,0),(7528,0,106966,'Tokaanu','New Zealand','NZ','Tokaanu (New Zealand)',1,1,0),(7529,0,106967,'Tolla','France','FR','Tolla (France)',1,1,0),(7530,0,106968,'Tome','Chile','CL','Tome (Chile)',1,1,0),(7531,27509,106969,'Torbole','Italy','IT','Torbole (Italy)',1,1,0),(7532,0,106970,'Tordera','Spain','ES','Tordera (Spain)',1,1,0),(7533,0,106971,'Toro Toro','Bolivia','BO','Toro Toro (Bolivia)',1,1,0),(7534,0,106972,'Totanes','Spain','ES','Totanes (Spain)',1,1,0),(7535,27597,106973,'Toucheng','Taiwan','TW','Toucheng (Taiwan)',1,1,0),(7536,0,106974,'Tow Law','United Kingdom','UK','Tow Law (United Kingdom)',1,1,0),(7537,0,106975,'Tower Hill','Belize','BZ','Tower Hill (Belize)',1,1,0),(7538,0,106976,'Trevarrian','United Kingdom','UK','Trevarrian (United Kingdom)',1,1,0),(7539,0,106977,'Tricesimo','Italy','IT','Tricesimo (Italy)',1,1,0),(7540,0,106978,'Redecilla del Camino','Spain','ES','Redecilla del Camino (Spain)',1,1,0),(7541,0,106979,'Remalard','France','FR','Remalard (France)',1,1,0),(7542,0,106980,'Retranchement','Netherlands','NL','Retranchement (Netherlands)',1,1,0),(7543,0,106981,'Reyhanli','Turkey','TR','Reyhanli (Turkey)',1,1,0),(7544,0,106982,'Rians','France','FR','Rians (France)',1,1,0),(7545,0,106983,'Richmond','New Zealand','NZ','Richmond (New Zealand)',1,1,0),(7546,23043,106984,'Rivervale','Australia','AU','Rivervale (Australia)',1,1,0),(7547,0,106985,'Rohatyn','Ukraine','UA','Rohatyn (Ukraine)',1,1,0),(7548,0,106986,'Rolandia','Brazil','BR','Rolandia (Brazil)',1,1,0),(7549,0,106987,'Ronchis','Italy','IT','Ronchis (Italy)',1,1,0),(7550,0,106988,'Rondane','Norway','NO','Rondane (Norway)',1,1,0),(7551,0,106989,'Ronneberg - Eidsdale','Norway','NO','Ronneberg - Eidsdale (Norway)',1,1,0),(7552,0,106990,'Roschen','Bulgaria','BG','Roschen (Bulgaria)',1,1,0),(7553,0,106991,'Rossiyskiy','Russia','RU','Rossiyskiy (Russia)',1,1,0),(7554,0,106992,'Roussillon en Isere','France','FR','Roussillon en Isere (France)',1,1,0),(7555,0,106993,'Rowland\'s Castle','United Kingdom','UK','Rowland\'s Castle (United Kingdom)',1,1,0),(7556,0,106994,'Rybache','Ukraine','UA','Rybache (Ukraine)',1,1,0),(7557,0,106995,'Sa Khu','Thailand','TH','Sa Khu (Thailand)',1,1,0),(7558,0,106996,'Sabara','Brazil','BR','Sabara (Brazil)',1,1,0),(7559,0,106997,'Sacedon','Spain','ES','Sacedon (Spain)',1,1,0),(7560,0,106998,'Sadowie','Poland','PL','Sadowie (Poland)',1,1,0),(7561,0,106999,'Sagor','Poland','PL','Sagor (Poland)',1,1,0),(7562,0,107000,'Sahechores de Rueda','Spain','ES','Sahechores de Rueda (Spain)',1,1,0),(7563,0,107001,'Sainghin-en-Melantois','France','FR','Sainghin-en-Melantois (France)',1,1,0),(7564,0,107002,'Saint Basile-le-Grand','Canada','CA','Saint Basile-le-Grand (Canada)',1,1,0),(7565,0,107003,'Saint Pierre','Martinique','MQ','Saint Pierre (Martinique)',1,1,0),(7566,0,107004,'Saint-Adolphe-d’Howard','Canada','CA','Saint-Adolphe-d’Howard (Canada)',1,1,0),(7567,0,107005,'Saint-Amant-Jartoudeix','France','FR','Saint-Amant-Jartoudeix (France)',1,1,0),(7568,0,107006,'Saint-Bauzille-de-Putois','France','FR','Saint-Bauzille-de-Putois (France)',1,1,0),(7569,0,107007,'Saint-Chely-d\'Apcher','France','FR','Saint-Chely-d\'Apcher (France)',1,1,0),(7570,0,107008,'Saint-Clair-du-Rhone','France','FR','Saint-Clair-du-Rhone (France)',1,1,0),(7571,0,107009,'Sainte-Eulalie','Canada','CA','Sainte-Eulalie (Canada)',1,1,0),(7572,0,107010,'Saint-Hilaire-de-Court','France','FR','Saint-Hilaire-de-Court (France)',1,1,0),(7573,0,107011,'Saint-Jean-de-Ceyrargues','France','FR','Saint-Jean-de-Ceyrargues (France)',1,1,0),(7574,0,107012,'Saint-Leger-en-Yvelines','France','FR','Saint-Leger-en-Yvelines (France)',1,1,0),(7575,0,107013,'Saint-Martin-les-Melle','France','FR','Saint-Martin-les-Melle (France)',1,1,0),(7576,0,107014,'Saint-Philemon','Canada','CA','Saint-Philemon (Canada)',1,1,0),(7577,0,107015,'Saint-Symphorien-de-Marmagne','France','FR','Saint-Symphorien-de-Marmagne (France)',1,1,0),(7578,0,107016,'Saint-Vaast-les-Mello','France','FR','Saint-Vaast-les-Mello (France)',1,1,0),(7579,0,107017,'Samso','Denmark','DK','Samso (Denmark)',1,1,0),(7580,0,107018,'San Andres Huayapam','Mexico','MX','San Andres Huayapam (Mexico)',1,1,0),(7581,32934,107019,'San Blas','Mexico','MX','San Blas (Mexico)',1,1,0),(7582,0,107020,'San Cristobal de Valdueza','Spain','ES','San Cristobal de Valdueza (Spain)',1,1,0),(7583,0,107021,'San Godenzo','Italy','IT','San Godenzo (Italy)',1,1,0),(7584,0,107022,'San Jeronimo Tlacochahuaya','Mexico','MX','San Jeronimo Tlacochahuaya (Mexico)',1,1,0),(7585,0,107023,'San Juan Bautista Tuxtepec','Mexico','MX','San Juan Bautista Tuxtepec (Mexico)',1,1,0),(7586,0,107024,'San Juan de Ortega','Spain','ES','San Juan de Ortega (Spain)',1,1,0),(7587,0,107025,'San Juan La Laguna','Guatemala','GT','San Juan La Laguna (Guatemala)',1,1,0),(7588,0,107026,'San Marcos','Mexico','MX','San Marcos (Mexico)',1,1,0),(7589,0,107027,'San Marcos La Laguna','Guatemala','GT','San Marcos La Laguna (Guatemala)',1,1,0),(7590,0,107028,'San Remigio','Philippines','PH','San Remigio (Philippines)',1,1,0),(7591,0,107029,'San Remo','Australia','AU','San Remo (Australia)',1,1,0),(7592,0,107030,'San Vicente de la Sonsierra','Spain','ES','San Vicente de la Sonsierra (Spain)',1,1,0),(7593,0,107031,'Santa Barbara d’Oeste','Brazil','BR','Santa Barbara d’Oeste (Brazil)',1,1,0),(7594,0,107032,'Santa Clara del Cobre','Mexico','MX','Santa Clara del Cobre (Mexico)',1,1,0),(7595,0,107033,'Santa Cruz del Comercio','Spain','ES','Santa Cruz del Comercio (Spain)',1,1,0),(7596,0,107034,'Santa Maria del Oro','Mexico','MX','Santa Maria del Oro (Mexico)',1,1,0),(7597,0,107035,'Santa Tecla','El Salvador','SV','Santa Tecla (El Salvador)',1,1,0),(7598,24242,107036,'Santiago','Mexico','MX','Santiago (Mexico)',1,1,0),(7599,0,107037,'Santiago Tuxtla','Mexico','MX','Santiago Tuxtla (Mexico)',1,1,0),(7600,33331,107038,'Santo Stefano in Aspromonte','Italy','IT','Santo Stefano in Aspromonte (Italy)',1,1,0),(7601,0,107039,'Sarandi','Brazil','BR','Sarandi (Brazil)',1,1,0),(7602,0,107040,'Sarcenas','France','FR','Sarcenas (France)',1,1,0),(7603,0,107041,'Saroma','Japan','JP','Saroma (Japan)',1,1,0),(7604,0,107042,'Satsumasendai','Japan','JP','Satsumasendai (Japan)',1,1,0),(7605,0,107043,'Sauce Viejo','Argentina','AR','Sauce Viejo (Argentina)',1,1,0),(7606,24407,107044,'Sauraha','Nepal','NP','Sauraha (Nepal)',1,1,0),(7607,0,107045,'Sauxillanges','France','FR','Sauxillanges (France)',1,1,0),(7608,0,107046,'Sawran','Ukraine','UA','Sawran (Ukraine)',1,1,0),(7609,0,107047,'Saxeten','Switzerland','CH','Saxeten (Switzerland)',1,1,0),(7610,0,107048,'Scagglethorpe','United Kingdom','UK','Scagglethorpe (United Kingdom)',1,1,0),(7611,0,107049,'Schonberg','Belgium','BE','Schonberg (Belgium)',1,1,0),(7612,0,107050,'Schowkwa','Ukraine','UA','Schowkwa (Ukraine)',1,1,0),(7613,0,107051,'Seaforth','Australia','AU','Seaforth (Australia)',1,1,0),(7614,0,107052,'Seddon',NULL,NULL,'Seddon ()',1,1,0),(7615,0,107053,'Selimpasa','Turkey','TR','Selimpasa (Turkey)',1,1,0),(7616,0,107054,'Sellano','Spain','ES','Sellano (Spain)',1,1,0),(7617,0,107055,'Sellano','Italy','IT','Sellano (Italy)',1,1,0),(7618,0,107056,'Semoutiers-Montsaon','France','FR','Semoutiers-Montsaon (France)',1,1,0),(7619,0,107057,'Servigliano','Italy','IT','Servigliano (Italy)',1,1,0),(7620,0,107058,'Sorochinsk','Russia','RU','Sorochinsk (Russia)',1,1,0),(7621,0,107059,'Souppes-sur-Loing','France','FR','Souppes-sur-Loing (France)',1,1,0),(7622,0,107060,'South Frontenac','Canada','CA','South Frontenac (Canada)',1,1,0),(7623,0,107061,'Southoe','United Kingdom','UK','Southoe (United Kingdom)',1,1,0),(7624,0,107062,'Springbrook','Australia','AU','Springbrook (Australia)',1,1,0),(7625,0,107063,'St Margaret\'s Hope','United Kingdom','UK','St Margaret\'s Hope (United Kingdom)',1,1,0),(7626,0,107064,'St. Stephan','Switzerland','CH','St. Stephan (Switzerland)',1,1,0),(7627,0,107065,'Staithes','United Kingdom','UK','Staithes (United Kingdom)',1,1,0),(7628,0,107066,'Stanzach','Austria','AT','Stanzach (Austria)',1,1,0),(7629,0,107067,'Steenderen','Netherlands','NL','Steenderen (Netherlands)',1,1,0),(7630,0,107068,'Stenay','France','FR','Stenay (France)',1,1,0),(7631,0,107069,'Steni Dirfyos','Greece','GR','Steni Dirfyos (Greece)',1,1,0),(7632,0,107070,'Sterlitamak','Russia','RU','Sterlitamak (Russia)',1,1,0),(7633,0,107071,'Steytlerville','South Africa','ZA','Steytlerville (South Africa)',1,1,0),(7634,0,107072,'Stigliano','Italy','IT','Stigliano (Italy)',1,1,0),(7635,0,107073,'Stokes Bay','Australia','AU','Stokes Bay (Australia)',1,1,0),(7636,0,107074,'Stone Hut','Australia','AU','Stone Hut (Australia)',1,1,0),(7637,0,107075,'Straza','Slovakia','SK','Straza (Slovakia)',1,1,0),(7638,0,107076,'Strehlen','Poland','PL','Strehlen (Poland)',1,1,0),(7639,0,107077,'Suesca','Colombia','CO','Suesca (Colombia)',1,1,0),(7640,0,107079,'Susono','Japan','JP','Susono (Japan)',1,1,0),(7641,0,107080,'Taddington','United Kingdom','UK','Taddington (United Kingdom)',1,1,0),(7642,0,107081,'Takua Thung','Thailand','TH','Takua Thung (Thailand)',1,1,0),(7643,26692,107082,'Taling Chan','Thailand','TH','Taling Chan (Thailand)',1,1,0),(7644,0,107083,'Tarko-Sale','Russia','RU','Tarko-Sale (Russia)',1,1,0),(7645,0,107084,'Taxisco','Guatemala','GT','Taxisco (Guatemala)',1,1,0),(7646,0,107085,'Tecpan Guatemala','Guatemala','GT','Tecpan Guatemala (Guatemala)',1,1,0),(7647,0,107086,'Tecuci','Romania','RO','Tecuci (Romania)',1,1,0),(7648,0,107087,'Tellaro','Italy','IT','Tellaro (Italy)',1,1,0),(7649,0,107088,'Teluk Nipah','Malaysia','MY','Teluk Nipah (Malaysia)',1,1,0),(7650,0,107089,'Tende','France','FR','Tende (France)',1,1,0),(7651,0,107090,'Terlicko (Tierlitzko)','Czech Republic','CZ','Terlicko (Tierlitzko) (Czech Republic)',1,1,0),(7652,0,107091,'Termas del Dayman','Uruguay','UY','Termas del Dayman (Uruguay)',1,1,0),(7653,33805,107092,'Terme Luigiane','Italy','IT','Terme Luigiane (Italy)',1,1,0),(7654,0,107093,'Terriente','Spain','ES','Terriente (Spain)',1,1,0),(7655,0,107094,'Teuge','Netherlands','NL','Teuge (Netherlands)',1,1,0),(7656,0,107095,'Thirlmere','Australia','AU','Thirlmere (Australia)',1,1,0),(7657,27184,107096,'Thoissey','France','FR','Thoissey (France)',1,1,0),(7658,0,107097,'Thorens-Glieres','France','FR','Thorens-Glieres (France)',1,1,0),(7659,0,107098,'Ticul','Mexico','MX','Ticul (Mexico)',1,1,0),(7660,0,107099,'Tismana','Romania','RO','Tismana (Romania)',1,1,0),(7661,0,107100,'Tlalpujahua','Mexico','MX','Tlalpujahua (Mexico)',1,1,0),(7662,0,107101,'Tolhuin','Argentina','AR','Tolhuin (Argentina)',1,1,0),(7663,0,107102,'Tondabayashi','Japan','JP','Tondabayashi (Japan)',1,1,0),(7664,0,107103,'Tongchuan','China','CN','Tongchuan (China)',1,1,0),(7665,0,107104,'Toodyay','Australia','AU','Toodyay (Australia)',1,1,0),(7666,0,107105,'Topolobampo','Mexico','MX','Topolobampo (Mexico)',1,1,0),(7667,0,107106,'Torpshammar','Sweden','SE','Torpshammar (Sweden)',1,1,0),(7668,0,107107,'Toyako (Toyako-cho)','Japan','JP','Toyako (Toyako-cho) (Japan)',1,1,0),(7669,0,107108,'Tregaron','United Kingdom','UK','Tregaron (United Kingdom)',1,1,0),(7670,0,107109,'Treppo Carnico','Italy','IT','Treppo Carnico (Italy)',1,1,0),(7671,0,107110,'Trescasas','Spain','ES','Trescasas (Spain)',1,1,0),(7672,0,107111,'Trinity','United Kingdom','UK','Trinity (United Kingdom)',1,1,0),(7673,0,107112,'Trnovo','Slovenia','SI','Trnovo (Slovenia)',1,1,0),(7674,0,107113,'Troisvaux','France','FR','Troisvaux (France)',1,1,0),(7675,0,107114,'Trun GR','Switzerland','CH','Trun GR (Switzerland)',1,1,0),(7676,0,107115,'Tschirpan','Bulgaria','BG','Tschirpan (Bulgaria)',1,1,0),(7677,0,107116,'Tscholponata','Kyrgyzstan','KG','Tscholponata (Kyrgyzstan)',1,1,0),(7678,0,107117,'Tuy Phong','Vietnam','VN','Tuy Phong (Vietnam)',1,1,0),(7679,0,107118,'Tyssedal','Norway','NO','Tyssedal (Norway)',1,1,0),(7680,0,107119,'Tyumen','Russia','RU','Tyumen (Russia)',1,1,0),(7681,0,107120,'Tzucacab','Mexico','MX','Tzucacab (Mexico)',1,1,0),(7682,0,107121,'Uiwang','South Korea','KR','Uiwang (South Korea)',1,1,0),(7683,0,107122,'Ust-Koksa','Russia','RU','Ust-Koksa (Russia)',1,1,0),(7684,0,107123,'Uta','Italy','IT','Uta (Italy)',1,1,0),(7685,0,107124,'V?rlose','Denmark','DK','V?rlose (Denmark)',1,1,0),(7686,0,107125,'Vakarel','Bulgaria','BG','Vakarel (Bulgaria)',1,1,0),(7687,0,107126,'Val-d’Isere','France','FR','Val-d’Isere (France)',1,1,0),(7688,0,107127,'Vansbro','Sweden','SE','Vansbro (Sweden)',1,1,0),(7689,0,107128,'Varvara','Bulgaria','BG','Varvara (Bulgaria)',1,1,0),(7690,0,107129,'Varzo','Italy','IT','Varzo (Italy)',1,1,0),(7691,28522,107130,'Vegreville','Canada','CA','Vegreville (Canada)',1,1,0),(7692,0,107131,'Vemyslice','Czech Republic','CZ','Vemyslice (Czech Republic)',1,1,0),(7693,0,107132,'Verkhoshizhemye','Russia','RU','Verkhoshizhemye (Russia)',1,1,0),(7694,0,107134,'Stoughton','Canada','CA','Stoughton (Canada)',1,1,0),(7695,0,107135,'Stradella','Italy','IT','Stradella (Italy)',1,1,0),(7696,0,107136,'Stra?walchen','Austria','AT','Stra?walchen (Austria)',1,1,0),(7697,0,107137,'Strigno','Italy','IT','Strigno (Italy)',1,1,0),(7698,26278,107138,'Stupava','Slovakia','SK','Stupava (Slovakia)',1,1,0),(7699,0,107139,'Subachoque','Colombia','CO','Subachoque (Colombia)',1,1,0),(7700,0,107140,'Sugag-Tau','Romania','RO','Sugag-Tau (Romania)',1,1,0),(7701,0,107141,'Sukamakmur','Indonesia','ID','Sukamakmur (Indonesia)',1,1,0),(7702,0,107142,'Sukko','Russia','RU','Sukko (Russia)',1,1,0),(7703,26367,107143,'Sumida','Japan','JP','Sumida (Japan)',1,1,0),(7704,0,107144,'Sungai Bakap','Malaysia','MY','Sungai Bakap (Malaysia)',1,1,0),(7705,0,107145,'Sutton Bridge','United Kingdom','UK','Sutton Bridge (United Kingdom)',1,1,0),(7706,26499,107146,'Svilengrad','Bulgaria','BG','Svilengrad (Bulgaria)',1,1,0),(7707,0,107147,'Swidnik','Poland','PL','Swidnik (Poland)',1,1,0),(7708,0,107148,'Switjas-See','Ukraine','UA','Switjas-See (Ukraine)',1,1,0),(7709,0,107149,'Switlohirske','Ukraine','UA','Switlohirske (Ukraine)',1,1,0),(7710,0,107150,'Sykia','Greece','GR','Sykia (Greece)',1,1,0),(7711,0,107151,'Tabarre','Haiti','HT','Tabarre (Haiti)',1,1,0),(7712,0,107152,'Tagum','Philippines','PH','Tagum (Philippines)',1,1,0),(7713,0,107153,'Taibao','Taiwan','TW','Taibao (Taiwan)',1,1,0),(7714,0,107154,'Taizhou (Zhejiang)','China','CN','Taizhou (Zhejiang) (China)',1,1,0),(7715,26663,107155,'Takaoka','Japan','JP','Takaoka (Japan)',1,1,0),(7716,0,107156,'Takinoue','Japan','JP','Takinoue (Japan)',1,1,0),(7717,0,107157,'Taluyers','France','FR','Taluyers (France)',1,1,0),(7718,0,107158,'Tamegroute','Morocco','MA','Tamegroute (Morocco)',1,1,0),(7719,0,107159,'Tana Paser','Indonesia','ID','Tana Paser (Indonesia)',1,1,0),(7720,0,107160,'Tannum Sands','Australia','AU','Tannum Sands (Australia)',1,1,0),(7721,26843,107161,'Tarnaby','Sweden','SE','Tarnaby (Sweden)',1,1,0),(7722,0,107162,'Tarsus','Turkey','TR','Tarsus (Turkey)',1,1,0),(7723,0,107163,'Tenero','Switzerland','CH','Tenero (Switzerland)',1,1,0),(7724,0,107164,'Tepeyahualco','Mexico','MX','Tepeyahualco (Mexico)',1,1,0),(7725,0,107165,'Tertenia','Italy','IT','Tertenia (Italy)',1,1,0),(7726,0,107166,'Terzigno','Italy','IT','Terzigno (Italy)',1,1,0),(7727,0,107167,'Thailand','Thailand','TH','Thailand (Thailand)',1,1,0),(7728,0,107168,'Thalawathugoda','Sri Lanka','LK','Thalawathugoda (Sri Lanka)',1,1,0),(7729,0,107169,'Thanh Hoa','Vietnam','VN','Thanh Hoa (Vietnam)',1,1,0),(7730,0,107170,'Thap Sakae','Thailand','TH','Thap Sakae (Thailand)',1,1,0),(7731,0,107171,'Thika','Kenya','KE','Thika (Kenya)',1,1,0),(7732,0,107172,'Thoirette','France','FR','Thoirette (France)',1,1,0),(7733,0,107173,'Tibro','Sweden','SE','Tibro (Sweden)',1,1,0),(7734,0,107174,'Tlayacapan','Mexico','MX','Tlayacapan (Mexico)',1,1,0),(7735,0,107175,'Todolella','Spain','ES','Todolella (Spain)',1,1,0),(7736,0,107176,'Tohaku District','Japan','JP','Tohaku District (Japan)',1,1,0),(7737,0,107177,'Toijala','Finland','FI','Toijala (Finland)',1,1,0),(7738,0,107178,'Tolmin','Slovenia','SI','Tolmin (Slovenia)',1,1,0),(7739,0,107179,'Tonosho','Japan','JP','Tonosho (Japan)',1,1,0),(7740,27494,107180,'Toowoon Bay','Australia','AU','Toowoon Bay (Australia)',1,1,0),(7741,0,107181,'Topolcianky','Slovakia','SK','Topolcianky (Slovakia)',1,1,0),(7742,0,107182,'Torija','Spain','ES','Torija (Spain)',1,1,0),(7743,0,107183,'Toronto','Australia','AU','Toronto (Australia)',1,1,0),(7744,0,107184,'Torraca','Italy','IT','Torraca (Italy)',1,1,0),(7745,0,107185,'Torre Santa Sabina','Italy','IT','Torre Santa Sabina (Italy)',1,1,0),(7746,0,107186,'Torremaggiore','Italy','IT','Torremaggiore (Italy)',1,1,0),(7747,0,107187,'Torrenueva','Grenada','GD','Torrenueva (Grenada)',1,1,0),(7748,0,107188,'Tottubella','Italy','IT','Tottubella (Italy)',1,1,0),(7749,0,107189,'Tower Isle','Jamaica','JM','Tower Isle (Jamaica)',1,1,0),(7750,0,107190,'Tran','Bulgaria','BG','Tran (Bulgaria)',1,1,0),(7751,0,107191,'Trino','Italy','IT','Trino (Italy)',1,1,0),(7752,0,107192,'Trivignano Udinese','Italy','IT','Trivignano Udinese (Italy)',1,1,0),(7753,0,107193,'Tronzano Lago Maggiore','Italy','IT','Tronzano Lago Maggiore (Italy)',1,1,0),(7754,0,107194,'Trud','Bulgaria','BG','Trud (Bulgaria)',1,1,0),(7755,0,107195,'Tuakau','New Zealand','NZ','Tuakau (New Zealand)',1,1,0),(7756,0,107196,'Tucheng','Taiwan','TW','Tucheng (Taiwan)',1,1,0),(7757,0,107197,'Tugu Utara','Indonesia','ID','Tugu Utara (Indonesia)',1,1,0),(7758,0,107198,'Tyinkrysset - Tyin','Norway','NO','Tyinkrysset - Tyin (Norway)',1,1,0),(7759,0,107199,'Tyndale','Australia','AU','Tyndale (Australia)',1,1,0),(7760,0,107200,'Tyulenovo','Bulgaria','BG','Tyulenovo (Bulgaria)',1,1,0),(7761,0,107201,'Ucero','Spain','ES','Ucero (Spain)',1,1,0),(7762,0,107202,'Uijeongbu','South Korea','KR','Uijeongbu (South Korea)',1,1,0),(7763,0,107203,'Ulanow','Poland','PL','Ulanow (Poland)',1,1,0),(7764,0,107204,'Unsleben','Germany','DE','Unsleben (Germany)',1,1,0),(7765,0,107205,'Unterdrauburg','Slovenia','SI','Unterdrauburg (Slovenia)',1,1,0),(7766,0,107206,'Upper Godney','United Kingdom','UK','Upper Godney (United Kingdom)',1,1,0),(7767,0,107207,'Urbisaglia','Italy','IT','Urbisaglia (Italy)',1,1,0),(7768,0,107208,'Uri','Italy','IT','Uri (Italy)',1,1,0),(7769,0,107209,'Urziceni','Romania','RO','Urziceni (Romania)',1,1,0),(7770,0,107211,'Valcebolere','France','FR','Valcebolere (France)',1,1,0),(7771,0,107212,'Valday','Russia','RU','Valday (Russia)',1,1,0),(7772,0,107213,'Valdivienne','France','FR','Valdivienne (France)',1,1,0),(7773,0,107214,'Valle de Guadalupe','Mexico','MX','Valle de Guadalupe (Mexico)',1,1,0),(7774,0,107215,'Vallouise','France','FR','Vallouise (France)',1,1,0),(7775,0,107216,'Vandel','Denmark','DK','Vandel (Denmark)',1,1,0),(7776,0,107217,'Varigotti','Italy','IT','Varigotti (Italy)',1,1,0),(7777,0,107218,'Varzea','Portugal','PT','Varzea (Portugal)',1,1,0),(7778,0,107219,'Si Sa Ket','Thailand','TH','Si Sa Ket (Thailand)',1,1,0),(7779,0,107220,'Sicuani','Peru','PE','Sicuani (Peru)',1,1,0),(7780,0,107221,'Sidi Slimane','Morocco','MA','Sidi Slimane (Morocco)',1,1,0),(7781,0,107222,'Sierra de la Ventana','Argentina','AR','Sierra de la Ventana (Argentina)',1,1,0),(7782,25250,107223,'Simeri Crichi','Italy','IT','Simeri Crichi (Italy)',1,1,0),(7783,0,107224,'Simpang Renggam','Malaysia','MY','Simpang Renggam (Malaysia)',1,1,0),(7784,0,107225,'Sinsacate','Argentina','AR','Sinsacate (Argentina)',1,1,0),(7785,0,107227,'Situbondo','Indonesia','ID','Situbondo (Indonesia)',1,1,0),(7786,0,107228,'Siusi allo Sciliar','Italy','IT','Siusi allo Sciliar (Italy)',1,1,0),(7787,0,107229,'Siverek','Turkey','TR','Siverek (Turkey)',1,1,0),(7788,0,107230,'Siziano','Italy','IT','Siziano (Italy)',1,1,0),(7789,0,107231,'Skarsvag','Norway','NO','Skarsvag (Norway)',1,1,0),(7790,0,107232,'Skarzysko-Kamienna','Poland','PL','Skarzysko-Kamienna (Poland)',1,1,0),(7791,0,107233,'Skydra','Greece','GR','Skydra (Greece)',1,1,0),(7792,0,107234,'Sleman','Indonesia','ID','Sleman (Indonesia)',1,1,0),(7793,0,107235,'Snina','Slovakia','SK','Snina (Slovakia)',1,1,0),(7794,0,107236,'Sobral de Monte Agraco','Portugal','PT','Sobral de Monte Agraco (Portugal)',1,1,0),(7795,0,107237,'Sochumi','Georgia','GE','Sochumi (Georgia)',1,1,0),(7796,0,107238,'Sommaroy','Norway','NO','Sommaroy (Norway)',1,1,0),(7797,0,107239,'Sopetran','Colombia','CO','Sopetran (Colombia)',1,1,0),(7798,0,107240,'Sora','Panama','PA','Sora (Panama)',1,1,0),(7799,0,107241,'Soraker','Sweden','SE','Soraker (Sweden)',1,1,0),(7800,0,107242,'Sorbolo','Italy','IT','Sorbolo (Italy)',1,1,0),(7801,0,107243,'Sornetan','Switzerland','CH','Sornetan (Switzerland)',1,1,0),(7802,0,107244,'South River','Canada','CA','South River (Canada)',1,1,0),(7803,0,107245,'Spanat','Croatia','HR','Spanat (Croatia)',1,1,0),(7804,0,107246,'Speloncato','France','FR','Speloncato (France)',1,1,0),(7805,0,107247,'Sprendlingen','Germany','DE','Sprendlingen (Germany)',1,1,0),(7806,0,107248,'Srebrna Gora','Poland','PL','Srebrna Gora (Poland)',1,1,0),(7807,0,107249,'Sreemangal','Bangladesh','BD','Sreemangal (Bangladesh)',1,1,0),(7808,0,107252,'St. Geertruid','Netherlands','NL','St. Geertruid (Netherlands)',1,1,0),(7809,0,107253,'St. Urschl','Italy','IT','St. Urschl (Italy)',1,1,0),(7810,0,107254,'Stanga','Sweden','SE','Stanga (Sweden)',1,1,0),(7811,0,107255,'Stansbury','Australia','AU','Stansbury (Australia)',1,1,0),(7812,0,107256,'Stefanovo','Bulgaria','BG','Stefanovo (Bulgaria)',1,1,0),(7813,0,107257,'Stehat','Morocco','MA','Stehat (Morocco)',1,1,0),(7814,0,107258,'Sternberk','Czech Republic','CZ','Sternberk (Czech Republic)',1,1,0),(7815,0,107259,'Steti','Czech Republic','CZ','Steti (Czech Republic)',1,1,0),(7816,0,107260,'Stoke-sub-Hamdon','United Kingdom','UK','Stoke-sub-Hamdon (United Kingdom)',1,1,0),(7817,26167,107261,'Storlien','Sweden','SE','Storlien (Sweden)',1,1,0),(7818,0,107262,'Straldzha','Bulgaria','BG','Straldzha (Bulgaria)',1,1,0),(7819,0,107263,'Straz pod Ralskem','Czech Republic','CZ','Straz pod Ralskem (Czech Republic)',1,1,0),(7820,0,107264,'Strezhevoy','Russia','RU','Strezhevoy (Russia)',1,1,0),(7821,0,107265,'Strokestown','Ireland','IE','Strokestown (Ireland)',1,1,0),(7822,0,107266,'Strumyani','Bulgaria','BG','Strumyani (Bulgaria)',1,1,0),(7823,0,107267,'Strzyzow','Poland','PL','Strzyzow (Poland)',1,1,0),(7824,0,107268,'Sua','Ecuador','EC','Sua (Ecuador)',1,1,0),(7825,0,107269,'Sudislawl','Russia','RU','Sudislawl (Russia)',1,1,0),(7826,0,107270,'Sudova Vyshna','Ukraine','UA','Sudova Vyshna (Ukraine)',1,1,0),(7827,0,107271,'Sugdidi','Georgia','GE','Sugdidi (Georgia)',1,1,0),(7828,26354,107272,'Sulzano','Italy','IT','Sulzano (Italy)',1,1,0),(7829,0,107273,'Sulzern','France','FR','Sulzern (France)',1,1,0),(7830,0,107274,'Sundebru','Norway','NO','Sundebru (Norway)',1,1,0),(7831,0,107276,'Surinam','Barbados','BB','Surinam (Barbados)',1,1,0),(7832,0,107277,'Suriyakanda','Sri Lanka','LK','Suriyakanda (Sri Lanka)',1,1,0),(7833,0,107278,'Sutrio','Italy','IT','Sutrio (Italy)',1,1,0),(7834,0,107279,'Sutton on Sea','United Kingdom','UK','Sutton on Sea (United Kingdom)',1,1,0),(7835,0,107280,'Sverdlovo','Russia','RU','Sverdlovo (Russia)',1,1,0),(7836,0,107281,'Sveta Nedelja','Croatia','HR','Sveta Nedelja (Croatia)',1,1,0),(7837,0,107282,'Sveti Stefan (Ohrid)','Macedonia','MK','Sveti Stefan (Ohrid) (Macedonia)',1,1,0),(7838,0,107283,'Svetla nad Sazavou','Czech Republic','CZ','Svetla nad Sazavou (Czech Republic)',1,1,0),(7839,0,107284,'Swieqi','Malta','MT','Swieqi (Malta)',1,1,0),(7840,0,107285,'Synevyr','Ukraine','UA','Synevyr (Ukraine)',1,1,0),(7841,0,107286,'Sysran','Russia','RU','Sysran (Russia)',1,1,0),(7842,0,107287,'Tachov','Czech Republic','CZ','Tachov (Czech Republic)',1,1,0),(7843,0,107288,'Tagajo','Japan','JP','Tagajo (Japan)',1,1,0),(7844,0,107289,'Talizat','France','FR','Talizat (France)',1,1,0),(7845,0,107290,'Tamellalt','Morocco','MA','Tamellalt (Morocco)',1,1,0),(7846,0,107291,'Taohuatan','China','CN','Taohuatan (China)',1,1,0),(7847,0,107292,'Tarashany','Ukraine','UA','Tarashany (Ukraine)',1,1,0),(7848,0,107293,'Tarsia','Italy','IT','Tarsia (Italy)',1,1,0),(7849,0,107294,'Tatariv','Ukraine','UA','Tatariv (Ukraine)',1,1,0),(7850,0,107295,'Tatsugo','Japan','JP','Tatsugo (Japan)',1,1,0),(7851,33800,107296,'Te Puru','New Zealand','NZ','Te Puru (New Zealand)',1,1,0),(7852,0,107297,'Teloes','Portugal','PT','Teloes (Portugal)',1,1,0),(7853,0,107298,'Teluk Bakau','Indonesia','ID','Teluk Bakau (Indonesia)',1,1,0),(7854,0,107299,'Telziutlan','Mexico','MX','Telziutlan (Mexico)',1,1,0),(7855,0,107301,'Tepecoacuilco','Mexico','MX','Tepecoacuilco (Mexico)',1,1,0),(7856,0,107302,'Teply Vrch','Slovakia','SK','Teply Vrch (Slovakia)',1,1,0),(7857,0,107303,'Tesanj','Bosnia and Herzegowina','BA','Tesanj (Bosnia and Herzegowina)',1,1,0),(7858,0,107304,'Thizy','France','FR','Thizy (France)',1,1,0),(7859,0,107305,'Saint-Blancard','France','FR','Saint-Blancard (France)',1,1,0),(7860,0,107307,'Sainte-Catherine-de-Hatley','Canada','CA','Sainte-Catherine-de-Hatley (Canada)',1,1,0),(7861,0,107308,'Sainte-Marie-de-Campan','France','FR','Sainte-Marie-de-Campan (France)',1,1,0),(7862,0,107309,'Sainte-Terre','France','FR','Sainte-Terre (France)',1,1,0),(7863,0,107310,'Saint-Germain-les-Arlay','France','FR','Saint-Germain-les-Arlay (France)',1,1,0),(7864,0,107311,'Saint-Michel-de-Chaillol','France','FR','Saint-Michel-de-Chaillol (France)',1,1,0),(7865,0,107312,'Saint-Nicolas','Italy','IT','Saint-Nicolas (Italy)',1,1,0),(7866,0,107313,'Saint-Norbert-d\'Arthabaska','Canada','CA','Saint-Norbert-d\'Arthabaska (Canada)',1,1,0),(7867,0,107314,'Saint-Paul','Reunion','RE','Saint-Paul (Reunion)',1,1,0),(7868,0,107315,'Saint-Paul-les-Romans','France','FR','Saint-Paul-les-Romans (France)',1,1,0),(7869,0,107316,'Saint-Pierre-de-l\'Ile-d\'Orleans','Canada','CA','Saint-Pierre-de-l\'Ile-d\'Orleans (Canada)',1,1,0),(7870,0,107317,'Saint-Sauveur-sur-Tinee','France','FR','Saint-Sauveur-sur-Tinee (France)',1,1,0),(7871,0,107318,'Saint-Veran','France','FR','Saint-Veran (France)',1,1,0),(7872,0,107319,'Sakaiminato','Japan','JP','Sakaiminato (Japan)',1,1,0),(7873,0,107320,'Saku (Nagano)','Japan','JP','Saku (Nagano) (Japan)',1,1,0),(7874,0,107321,'Salgotarjan','Hungary','HU','Salgotarjan (Hungary)',1,1,0),(7875,0,107322,'Saltsjo-boo','Sweden','SE','Saltsjo-boo (Sweden)',1,1,0),(7876,0,107323,'Saltstraumen','Norway','NO','Saltstraumen (Norway)',1,1,0),(7877,0,107324,'Samotsvet','Russia','RU','Samotsvet (Russia)',1,1,0),(7878,0,107325,'San Andres Tuxtla','Mexico','MX','San Andres Tuxtla (Mexico)',1,1,0),(7879,0,107326,'San Bartolome de las Abiertas','Spain','ES','San Bartolome de las Abiertas (Spain)',1,1,0),(7880,0,107327,'San Francisco de Mostazal','Chile','CL','San Francisco de Mostazal (Chile)',1,1,0),(7881,0,107328,'San Javier','Chile','CL','San Javier (Chile)',1,1,0),(7882,0,107329,'San Jose del Guaviare','Colombia','CO','San Jose del Guaviare (Colombia)',1,1,0),(7883,0,107330,'San Juan de Marcona','Peru','PE','San Juan de Marcona (Peru)',1,1,0),(7884,0,107331,'San Juan Teotihuacan','Mexico','MX','San Juan Teotihuacan (Mexico)',1,1,0),(7885,0,107332,'San Lorenzo','Paraguay','PY','San Lorenzo (Paraguay)',1,1,0),(7886,33081,107333,'San Marcos Sierras','Argentina','AR','San Marcos Sierras (Argentina)',1,1,0),(7887,0,107334,'San Martino Al Tagliament','Italy','IT','San Martino Al Tagliament (Italy)',1,1,0),(7888,0,107335,'San Miguel de Los Bancos','Ecuador','EC','San Miguel de Los Bancos (Ecuador)',1,1,0),(7889,0,107336,'San Miguel del Monte','Argentina','AR','San Miguel del Monte (Argentina)',1,1,0),(7890,0,107337,'San Pedro','Costa Rica','CR','San Pedro (Costa Rica)',1,1,0),(7891,0,107338,'San Pedro Pochutla','Mexico','MX','San Pedro Pochutla (Mexico)',1,1,0),(7892,0,107339,'San Roman','Spain','ES','San Roman (Spain)',1,1,0),(7893,33170,107340,'San Sperate','Italy','IT','San Sperate (Italy)',1,1,0),(7894,0,107341,'Sandgate','United Kingdom','UK','Sandgate (United Kingdom)',1,1,0),(7895,24172,107342,'Sangolqui','Ecuador','EC','Sangolqui (Ecuador)',1,1,0),(7896,0,107343,'Sangonera la Seca','Spain','ES','Sangonera la Seca (Spain)',1,1,0),(7897,0,107344,'Sanhe','China','CN','Sanhe (China)',1,1,0),(7898,0,107345,'Sant’Andrea','Italy','IT','Sant’Andrea (Italy)',1,1,0),(7899,0,107346,'Santa Coloma de Somoza','Spain','ES','Santa Coloma de Somoza (Spain)',1,1,0),(7900,0,107347,'Santa Maria','Costa Rica','CR','Santa Maria (Costa Rica)',1,1,0),(7901,0,107348,'Santa Rita do Sapucai','Brazil','BR','Santa Rita do Sapucai (Brazil)',1,1,0),(7902,0,107349,'Sao Mateus','Portugal','PT','Sao Mateus (Portugal)',1,1,0),(7903,0,107350,'Sao Miguel das Missoes','Brazil','BR','Sao Miguel das Missoes (Brazil)',1,1,0),(7904,0,107351,'Saraisk','Russia','RU','Saraisk (Russia)',1,1,0),(7905,0,107352,'Sarapui','Brazil','BR','Sarapui (Brazil)',1,1,0),(7906,0,107353,'Saretschny (Swerdlowsk)','Russia','RU','Saretschny (Swerdlowsk) (Russia)',1,1,0),(7907,0,107354,'Sarria de Ter','Spain','ES','Sarria de Ter (Spain)',1,1,0),(7908,0,107355,'Satka','Russia','RU','Satka (Russia)',1,1,0),(7909,0,107356,'Schiedlowietz','Poland','PL','Schiedlowietz (Poland)',1,1,0),(7910,0,107357,'Schonlanke','Poland','PL','Schonlanke (Poland)',1,1,0),(7911,0,107358,'Schtscherbinka','Russia','RU','Schtscherbinka (Russia)',1,1,0),(7912,0,107359,'Schydatschiw','Ukraine','UA','Schydatschiw (Ukraine)',1,1,0),(7913,0,107360,'Sebright','Canada','CA','Sebright (Canada)',1,1,0),(7914,0,107361,'See Oyeren','Norway','NO','See Oyeren (Norway)',1,1,0),(7915,0,107362,'Seehausen am Staffelsee','Germany','DE','Seehausen am Staffelsee (Germany)',1,1,0),(7916,0,107363,'Semington','United Kingdom','UK','Semington (United Kingdom)',1,1,0),(7917,0,107364,'Sermersheim','France','FR','Sermersheim (France)',1,1,0),(7918,0,107365,'Serralunga di Crea','Italy','IT','Serralunga di Crea (Italy)',1,1,0),(7919,0,107366,'Sertaozinho','Brazil','BR','Sertaozinho (Brazil)',1,1,0),(7920,0,107367,'Sesta Godano','Italy','IT','Sesta Godano (Italy)',1,1,0),(7921,0,107368,'Settimo Vittone (el Seto Viton)','Italy','IT','Settimo Vittone (el Seto Viton) (Italy)',1,1,0),(7922,0,107369,'Sewerodwinsk','Russia','RU','Sewerodwinsk (Russia)',1,1,0),(7923,0,107370,'Sezze','Italy','IT','Sezze (Italy)',1,1,0),(7924,0,107372,'Shawville','Canada','CA','Shawville (Canada)',1,1,0),(7925,0,107373,'Shere','United Kingdom','UK','Shere (United Kingdom)',1,1,0),(7926,0,107374,'Shinagawa','Japan','JP','Shinagawa (Japan)',1,1,0),(7927,0,107375,'Shinhidaka','Japan','JP','Shinhidaka (Japan)',1,1,0),(7928,0,107376,'Shotts','United Kingdom','UK','Shotts (United Kingdom)',1,1,0),(7929,0,107377,'Shouguang','China','CN','Shouguang (China)',1,1,0),(7930,0,107378,'Sigillo','Italy','IT','Sigillo (Italy)',1,1,0),(7931,0,107379,'Sing Buri','Thailand','TH','Sing Buri (Thailand)',1,1,0),(7932,0,107380,'Skadowsk','Ukraine','UA','Skadowsk (Ukraine)',1,1,0),(7933,0,107381,'Vilamaniscle','Spain','ES','Vilamaniscle (Spain)',1,1,0),(7934,28784,107382,'Vilia','Greece','GR','Vilia (Greece)',1,1,0),(7935,0,107383,'Vilkija','Latvia','LV','Vilkija (Latvia)',1,1,0),(7936,0,107384,'Villa de Las Rosas','Argentina','AR','Villa de Las Rosas (Argentina)',1,1,0),(7937,0,107385,'Villacanas','Spain','ES','Villacanas (Spain)',1,1,0),(7938,0,107386,'Villadossola','Italy','IT','Villadossola (Italy)',1,1,0),(7939,0,107387,'Villalago','Italy','IT','Villalago (Italy)',1,1,0),(7940,0,107388,'Vilminore di Scalve','Italy','IT','Vilminore di Scalve (Italy)',1,1,0),(7941,0,107389,'Vilseck','Germany','DE','Vilseck (Germany)',1,1,0),(7942,0,107392,'Vladimir','Russia','RU','Vladimir (Russia)',1,1,0),(7943,0,107393,'Volkermarkt','Austria','AT','Volkermarkt (Austria)',1,1,0),(7944,0,107394,'Volochayevskoye','Russia','RU','Volochayevskoye (Russia)',1,1,0),(7945,0,107395,'Vsetin','Czech Republic','CZ','Vsetin (Czech Republic)',1,1,0),(7946,29257,107396,'Wang Nam Khieo','Thailand','TH','Wang Nam Khieo (Thailand)',1,1,0),(7947,0,107397,'Weerawila','Sri Lanka','LK','Weerawila (Sri Lanka)',1,1,0),(7948,0,107398,'Westbury','United Kingdom','UK','Westbury (United Kingdom)',1,1,0),(7949,0,107399,'Westgate-on-Sea','United Kingdom','UK','Westgate-on-Sea (United Kingdom)',1,1,0),(7950,0,107400,'Whepstead','United Kingdom','UK','Whepstead (United Kingdom)',1,1,0),(7951,0,107401,'Whittington','United Kingdom','UK','Whittington (United Kingdom)',1,1,0),(7952,0,107402,'Wiang','Thailand','TH','Wiang (Thailand)',1,1,0),(7953,0,107403,'Winforton','United Kingdom','UK','Winforton (United Kingdom)',1,1,0),(7954,29853,107404,'Wingham','Australia','AU','Wingham (Australia)',1,1,0),(7955,0,107405,'Wirksworth','United Kingdom','UK','Wirksworth (United Kingdom)',1,1,0),(7956,0,107406,'Wirrabara','Australia','AU','Wirrabara (Australia)',1,1,0),(7957,0,107407,'Wojcieszow','Poland','PL','Wojcieszow (Poland)',1,1,0),(7958,0,107408,'Woodgate','Australia','AU','Woodgate (Australia)',1,1,0),(7959,0,107409,'Woomargama','Australia','AU','Woomargama (Australia)',1,1,0),(7960,0,107410,'Wosnessensk','Ukraine','UA','Wosnessensk (Ukraine)',1,1,0),(7961,0,107411,'Wsewoloschsk','Russia','RU','Wsewoloschsk (Russia)',1,1,0),(7962,0,107412,'Xianghe','China','CN','Xianghe (China)',1,1,0),(7963,0,107413,'Xincheng','Taiwan','TW','Xincheng (Taiwan)',1,1,0),(7964,0,107414,'Yablunytsya','Ukraine','UA','Yablunytsya (Ukraine)',1,1,0),(7965,0,107415,'Yakovci','Bulgaria','BG','Yakovci (Bulgaria)',1,1,0),(7966,0,107416,'Yankalilla','Australia','AU','Yankalilla (Australia)',1,1,0),(7967,0,107417,'Yarra Junction','Australia','AU','Yarra Junction (Australia)',1,1,0),(7968,0,107418,'Yautepec de Zaragoza','Mexico','MX','Yautepec de Zaragoza (Mexico)',1,1,0),(7969,0,107419,'Yea','Australia','AU','Yea (Australia)',1,1,0),(7970,0,107420,'Yelizovo','Russia','RU','Yelizovo (Russia)',1,1,0),(7971,0,107421,'Yenifoca','Turkey','TR','Yenifoca (Turkey)',1,1,0),(7972,0,107422,'Zaozernoe','Ukraine','UA','Zaozernoe (Ukraine)',1,1,0),(7973,0,107423,'Zapotlan de Juarez','Mexico','MX','Zapotlan de Juarez (Mexico)',1,1,0),(7974,0,107424,'Zbuczyn','Poland','PL','Zbuczyn (Poland)',1,1,0),(7975,0,107425,'Zeijerveen','Netherlands','NL','Zeijerveen (Netherlands)',1,1,0),(7976,0,107426,'Zimber','Italy','IT','Zimber (Italy)',1,1,0),(7977,0,107427,'Zixing','China','CN','Zixing (China)',1,1,0),(7978,0,107428,'Zlatitsa','Bulgaria','BG','Zlatitsa (Bulgaria)',1,1,0),(7979,0,107429,'Zlenice','Czech Republic','CZ','Zlenice (Czech Republic)',1,1,0),(7980,0,107430,'Znam\'yans\'ke','Ukraine','UA','Znam\'yans\'ke (Ukraine)',1,1,0),(7981,0,107431,'Zqaltubo','Georgia','GE','Zqaltubo (Georgia)',1,1,0),(7982,0,107432,'Zwingenberg','Germany','DE','Zwingenberg (Germany)',1,1,0),(7983,0,107433,'Triuggio','Italy','IT','Triuggio (Italy)',1,1,0),(7984,0,107434,'Troizk','Russia','RU','Troizk (Russia)',1,1,0),(7985,0,107435,'Trouhans','France','FR','Trouhans (France)',1,1,0),(7986,0,107436,'Troy','Canada','CA','Troy (Canada)',1,1,0),(7987,0,107437,'Trunch','United Kingdom','UK','Trunch (United Kingdom)',1,1,0),(7988,0,107438,'Tuchomerice','Czech Republic','CZ','Tuchomerice (Czech Republic)',1,1,0),(7989,0,107439,'Tushemisht','Albania','AL','Tushemisht (Albania)',1,1,0),(7990,0,107440,'Twelve Mile Creek','Australia','AU','Twelve Mile Creek (Australia)',1,1,0),(7991,28028,107441,'Tyabb','Australia','AU','Tyabb (Australia)',1,1,0),(7992,0,107442,'Udomlya','Russia','RU','Udomlya (Russia)',1,1,0),(7993,0,107443,'Ulceby','United Kingdom','UK','Ulceby (United Kingdom)',1,1,0),(7994,0,107444,'Umtentweni','South Africa','ZA','Umtentweni (South Africa)',1,1,0),(7995,0,107445,'Umzimkhulu','South Africa','ZA','Umzimkhulu (South Africa)',1,1,0),(7996,0,107446,'Uniao dos Palmares','Brazil','BR','Uniao dos Palmares (Brazil)',1,1,0),(7997,0,107447,'Unquera','Spain','ES','Unquera (Spain)',1,1,0),(7998,0,107448,'Unterschachen','Switzerland','CH','Unterschachen (Switzerland)',1,1,0),(7999,0,107449,'Uppuveli','Sri Lanka','LK','Uppuveli (Sri Lanka)',1,1,0),(8000,0,107450,'Urgnano','Italy','IT','Urgnano (Italy)',1,1,0),(8001,0,107451,'Uribia','Colombia','CO','Uribia (Colombia)',1,1,0),(8002,0,107452,'Uruapan (Uruapan del Progreso)','Mexico','MX','Uruapan (Uruapan del Progreso) (Mexico)',1,1,0),(8003,0,107453,'Ustye','Russia','RU','Ustye (Russia)',1,1,0),(8004,0,107454,'Vaitele','Samoa','WS','Vaitele (Samoa)',1,1,0),(8005,0,107455,'Valle de Oca','Spain','ES','Valle de Oca (Spain)',1,1,0),(8006,0,107456,'Valle de Paravachasca','Argentina','AR','Valle de Paravachasca (Argentina)',1,1,0),(8007,0,107457,'Vallecrosia','Italy','IT','Vallecrosia (Italy)',1,1,0),(8008,0,107458,'Valverde de Jucar','Spain','ES','Valverde de Jucar (Spain)',1,1,0),(8009,0,107459,'Vardane','Russia','RU','Vardane (Russia)',1,1,0),(8010,28455,107460,'Vardo','Norway','NO','Vardo (Norway)',1,1,0),(8011,0,107461,'Vargem Bonita','Brazil','BR','Vargem Bonita (Brazil)',1,1,0),(8012,0,107462,'Varska vald','Estonia','EE','Varska vald (Estonia)',1,1,0),(8013,0,107463,'Vega Alta','Puerto Rico','PR','Vega Alta (Puerto Rico)',1,1,0),(8014,0,107464,'Vejby','Denmark','DK','Vejby (Denmark)',1,1,0),(8015,0,107465,'Veliko Trgovisce','Croatia','HR','Veliko Trgovisce (Croatia)',1,1,0),(8016,0,107466,'Verkhnyaya Sysert','Russia','RU','Verkhnyaya Sysert (Russia)',1,1,0),(8017,0,107467,'Veska','Czech Republic','CZ','Veska (Czech Republic)',1,1,0),(8018,0,107468,'Vetraz-Monthoux','France','FR','Vetraz-Monthoux (France)',1,1,0),(8019,0,107469,'Viadana','Italy','IT','Viadana (Italy)',1,1,0),(8020,0,107470,'Vidiago','Spain','ES','Vidiago (Spain)',1,1,0),(8021,0,107471,'Viglas','Slovakia','SK','Viglas (Slovakia)',1,1,0),(8022,0,107472,'Vilagrassa','Spain','ES','Vilagrassa (Spain)',1,1,0),(8023,0,107473,'Villa Union','Argentina','AR','Villa Union (Argentina)',1,1,0),(8024,0,107474,'Villalangua','Spain','ES','Villalangua (Spain)',1,1,0),(8025,0,107475,'Villarcayo','Spain','ES','Villarcayo (Spain)',1,1,0),(8026,0,107476,'Villavieja del Lozoya','Spain','ES','Villavieja del Lozoya (Spain)',1,1,0),(8027,0,107477,'Villeneuve-d\'Allier','France','FR','Villeneuve-d\'Allier (France)',1,1,0),(8028,0,107478,'Vinadio','Italy','IT','Vinadio (Italy)',1,1,0),(8029,28920,107479,'Vineyard','Australia','AU','Vineyard (Australia)',1,1,0),(8030,0,107480,'Vitez','Bosnia and Herzegowina','BA','Vitez (Bosnia and Herzegowina)',1,1,0),(8031,0,107481,'Vivonne Bay','Australia','AU','Vivonne Bay (Australia)',1,1,0),(8032,0,107482,'Vohburg an der Donau','Germany','DE','Vohburg an der Donau (Germany)',1,1,0),(8033,0,107483,'Voineasa','Romania','RO','Voineasa (Romania)',1,1,0),(8034,0,107484,'Volkesfeld','Germany','DE','Volkesfeld (Germany)',1,1,0),(8035,0,107485,'Volytsya','Ukraine','UA','Volytsya (Ukraine)',1,1,0),(8036,0,107486,'Waga','Sri Lanka','LK','Waga (Sri Lanka)',1,1,0),(8037,0,107487,'Wajima','Japan','JP','Wajima (Japan)',1,1,0),(8038,0,107488,'Walapane','Sri Lanka','LK','Walapane (Sri Lanka)',1,1,0),(8039,0,107489,'Waltensburg/Vuorz','Switzerland','CH','Waltensburg/Vuorz (Switzerland)',1,1,0),(8040,0,107490,'Wamuran','Australia','AU','Wamuran (Australia)',1,1,0),(8041,0,107491,'Wanborough','United Kingdom','UK','Wanborough (United Kingdom)',1,1,0),(8042,29265,107492,'Wanneroo','Australia','AU','Wanneroo (Australia)',1,1,0),(8043,29281,107493,'Warburton','Australia','AU','Warburton (Australia)',1,1,0),(8044,0,107494,'Wasserauen','Switzerland','CH','Wasserauen (Switzerland)',1,1,0),(8045,29402,107495,'Waurn Ponds','Australia','AU','Waurn Ponds (Australia)',1,1,0),(8046,0,107496,'Wehretal','Germany','DE','Wehretal (Germany)',1,1,0),(8047,0,107497,'Weibern','Germany','DE','Weibern (Germany)',1,1,0),(8048,29597,107498,'Westmoreland','Barbados','BB','Westmoreland (Barbados)',1,1,0),(8049,0,107499,'Wezuperbrug','Netherlands','NL','Wezuperbrug (Netherlands)',1,1,0),(8050,0,107500,'Wheatley','Canada','CA','Wheatley (Canada)',1,1,0),(8051,0,107501,'Wiang Pa Pao','Thailand','TH','Wiang Pa Pao (Thailand)',1,1,0),(8052,0,107502,'Wickford','United Kingdom','UK','Wickford (United Kingdom)',1,1,0),(8053,0,107503,'Wickham','Australia','AU','Wickham (Australia)',1,1,0),(8054,0,107504,'Winsum','Netherlands','NL','Winsum (Netherlands)',1,1,0),(8055,0,107505,'Wisznice','Poland','PL','Wisznice (Poland)',1,1,0),(8056,0,107506,'Wolgodonsk','Russia','RU','Wolgodonsk (Russia)',1,1,0),(8057,0,107507,'Wolka Panienska','Poland','PL','Wolka Panienska (Poland)',1,1,0),(8058,0,107508,'Wollongbar','Australia','AU','Wollongbar (Australia)',1,1,0),(8059,0,107509,'Woodside','Australia','AU','Woodside (Australia)',1,1,0),(8060,30004,107510,'Woolgoolga','Australia','AU','Woolgoolga (Australia)',1,1,0),(8061,0,107511,'Worsel','Ukraine','UA','Worsel (Ukraine)',1,1,0),(8062,0,107512,'Wundanyi','Kenya','KE','Wundanyi (Kenya)',1,1,0),(8063,0,107513,'Xiaoyi','China','CN','Xiaoyi (China)',1,1,0),(8064,0,107514,'Xinghua','China','CN','Xinghua (China)',1,1,0),(8065,0,107515,'Vranovska Ves','Czech Republic','CZ','Vranovska Ves (Czech Republic)',1,1,0),(8066,0,107516,'Vrbove','Slovakia','SK','Vrbove (Slovakia)',1,1,0),(8067,0,107517,'Waddinxveen','Netherlands','NL','Waddinxveen (Netherlands)',1,1,0),(8068,0,107518,'Wahnapitae','Canada','CA','Wahnapitae (Canada)',1,1,0),(8069,0,107519,'Waimate','New Zealand','NZ','Waimate (New Zealand)',1,1,0),(8070,0,107520,'Walcote','United Kingdom','UK','Walcote (United Kingdom)',1,1,0),(8071,0,107521,'Wallaga Lake','Australia','AU','Wallaga Lake (Australia)',1,1,0),(8072,0,107522,'Wal-Ruda','Poland','PL','Wal-Ruda (Poland)',1,1,0),(8073,0,107523,'Walton-on-the-Naze','United Kingdom','UK','Walton-on-the-Naze (United Kingdom)',1,1,0),(8074,0,107524,'Warrenpoint','United Kingdom','UK','Warrenpoint (United Kingdom)',1,1,0),(8075,0,107525,'Wassen','Switzerland','CH','Wassen (Switzerland)',1,1,0),(8076,0,107526,'Weliki Ustjug','Russia','RU','Weliki Ustjug (Russia)',1,1,0),(8077,34061,107527,'West End','Australia','AU','West End (Australia)',1,1,0),(8078,0,107528,'West Footscray','Australia','AU','West Footscray (Australia)',1,1,0),(8079,0,107529,'Whitby','Turks & Caicos Islands',NULL,'Whitby (Turks & Caicos Islands)',1,1,0),(8080,0,107530,'Willisau','Switzerland','CH','Willisau (Switzerland)',1,1,0),(8081,0,107531,'Wisen','Switzerland','CH','Wisen (Switzerland)',1,1,0),(8082,0,107532,'Wolodymyr-Wolynskyj','Ukraine','UA','Wolodymyr-Wolynskyj (Ukraine)',1,1,0),(8083,0,107533,'Wolomin','Poland','PL','Wolomin (Poland)',1,1,0),(8084,0,107534,'Won Wron','Australia','AU','Won Wron (Australia)',1,1,0),(8085,0,107535,'Woodhill','United Kingdom','UK','Woodhill (United Kingdom)',1,1,0),(8086,0,107536,'Xacmaz','Azerbaijan','AZ','Xacmaz (Azerbaijan)',1,1,0),(8087,0,107537,'Xicotepec de Juarez','Mexico','MX','Xicotepec de Juarez (Mexico)',1,1,0),(8088,0,107538,'Xin\'gan','China','CN','Xin\'gan (China)',1,1,0),(8089,0,107539,'Xing\'an','China','CN','Xing\'an (China)',1,1,0),(8090,0,107540,'Xintang Town (Canton)','China','CN','Xintang Town (Canton) (China)',1,1,0),(8091,0,107541,'Yagodina','Bulgaria','BG','Yagodina (Bulgaria)',1,1,0),(8092,0,107542,'Yaita','Japan','JP','Yaita (Japan)',1,1,0),(8093,0,107543,'Yakeshi','China','CN','Yakeshi (China)',1,1,0),(8094,0,107544,'Yale','Canada','CA','Yale (Canada)',1,1,0),(8095,0,107545,'Yanggu','China','CN','Yanggu (China)',1,1,0),(8096,0,107546,'Youlgreave','United Kingdom','UK','Youlgreave (United Kingdom)',1,1,0),(8097,0,107547,'Yura','Japan','JP','Yura (Japan)',1,1,0),(8098,0,107548,'Yurihama','Japan','JP','Yurihama (Japan)',1,1,0),(8099,0,107549,'Yuzhnouralsk','Russia','RU','Yuzhnouralsk (Russia)',1,1,0),(8100,0,107550,'Zagosie','Russia','RU','Zagosie (Russia)',1,1,0),(8101,0,107551,'Zaorejas','Spain','ES','Zaorejas (Spain)',1,1,0),(8102,0,107552,'Zaozerne','Ukraine','UA','Zaozerne (Ukraine)',1,1,0),(8103,0,107553,'Zapallar','Chile','CL','Zapallar (Chile)',1,1,0),(8104,0,107554,'Zarewa liwada','Bulgaria','BG','Zarewa liwada (Bulgaria)',1,1,0),(8105,0,107555,'Zashkiv','Ukraine','UA','Zashkiv (Ukraine)',1,1,0),(8106,0,107556,'Zatoka','Ukraine','UA','Zatoka (Ukraine)',1,1,0),(8107,0,107557,'Zemun','Serbia','RS','Zemun (Serbia)',1,1,0),(8108,0,107558,'Zhaoping','China','CN','Zhaoping (China)',1,1,0),(8109,0,107559,'Zhaoyuan','China','CN','Zhaoyuan (China)',1,1,0),(8110,0,107560,'Zheleznogorsk','Russia','RU','Zheleznogorsk (Russia)',1,1,0),(8111,0,107561,'Zhubei','Taiwan','TW','Zhubei (Taiwan)',1,1,0),(8112,0,107562,'Zillerthal','Poland','PL','Zillerthal (Poland)',1,1,0),(8113,0,107563,'Zipaquira','Colombia','CO','Zipaquira (Colombia)',1,1,0),(8114,0,107564,'Zlate Hory','Czech Republic','CZ','Zlate Hory (Czech Republic)',1,1,0),(8115,0,107565,'Vatra','Moldova','MD','Vatra (Moldova)',1,1,0),(8116,0,107566,'Vegacervera','Spain','ES','Vegacervera (Spain)',1,1,0),(8117,0,107567,'Veghel','Netherlands','NL','Veghel (Netherlands)',1,1,0),(8118,0,107568,'Velsk','Russia','RU','Velsk (Russia)',1,1,0),(8119,0,107569,'Venda Nova do Imigrante','Brazil','BR','Venda Nova do Imigrante (Brazil)',1,1,0),(8120,0,107570,'Vergeze','France','FR','Vergeze (France)',1,1,0),(8121,0,107571,'Vesqueville','Belgium','BE','Vesqueville (Belgium)',1,1,0),(8122,0,107572,'Viana do Bolo','Spain','ES','Viana do Bolo (Spain)',1,1,0),(8123,0,107573,'Vichayito','Peru','PE','Vichayito (Peru)',1,1,0),(8124,0,107574,'Villa de Guadalupe','Mexico','MX','Villa de Guadalupe (Mexico)',1,1,0),(8125,0,107575,'Villa Paranacito','Argentina','AR','Villa Paranacito (Argentina)',1,1,0),(8126,0,107576,'Villard Saint Sauveur','France','FR','Villard Saint Sauveur (France)',1,1,0),(8127,0,107577,'Ville-Marie','Canada','CA','Ville-Marie (Canada)',1,1,0),(8128,0,107578,'Vindeln','Sweden','SE','Vindeln (Sweden)',1,1,0),(8129,0,107579,'Vissoie','Switzerland','CH','Vissoie (Switzerland)',1,1,0),(8130,0,107580,'Viviers','France','FR','Viviers (France)',1,1,0),(8131,0,107581,'Vnukovo','Russia','RU','Vnukovo (Russia)',1,1,0),(8132,0,107582,'Voivodinovo','Bulgaria','BG','Voivodinovo (Bulgaria)',1,1,0),(8133,0,107583,'Voneshta Voda','Bulgaria','BG','Voneshta Voda (Bulgaria)',1,1,0),(8134,0,107584,'Vranov nad Dyji','Czech Republic','CZ','Vranov nad Dyji (Czech Republic)',1,1,0),(8135,0,107585,'Vyshegor','Russia','RU','Vyshegor (Russia)',1,1,0),(8136,0,107586,'Vyskov','Czech Republic','CZ','Vyskov (Czech Republic)',1,1,0),(8137,0,107587,'Waeng Nang','Thailand','TH','Waeng Nang (Thailand)',1,1,0),(8138,0,107588,'Wahlenau','Germany','DE','Wahlenau (Germany)',1,1,0),(8139,29156,107589,'Waikanae','New Zealand','NZ','Waikanae (New Zealand)',1,1,0),(8140,0,107590,'Waipu','New Zealand','NZ','Waipu (New Zealand)',1,1,0),(8141,0,107591,'Wallendbeen','Australia','AU','Wallendbeen (Australia)',1,1,0),(8142,0,107592,'Walshoutem','Belgium','BE','Walshoutem (Belgium)',1,1,0),(8143,0,107593,'Washago','Canada','CA','Washago (Canada)',1,1,0),(8144,0,107594,'Wauwil','Switzerland','CH','Wauwil (Switzerland)',1,1,0),(8145,0,107595,'Wehlen','Germany','DE','Wehlen (Germany)',1,1,0),(8146,0,107596,'Wells-next-the-Sea','United Kingdom','UK','Wells-next-the-Sea (United Kingdom)',1,1,0),(8147,0,107597,'Werchowyna','Ukraine','UA','Werchowyna (Ukraine)',1,1,0),(8148,0,107598,'West End','United Kingdom','UK','West End (United Kingdom)',1,1,0),(8149,0,107599,'Wigoltingen','Switzerland','CH','Wigoltingen (Switzerland)',1,1,0),(8150,0,107600,'Wigston','United Kingdom','UK','Wigston (United Kingdom)',1,1,0),(8151,0,107601,'Wilcze','Poland','PL','Wilcze (Poland)',1,1,0),(8152,0,107602,'Winnard\'s Perch','United Kingdom','UK','Winnard\'s Perch (United Kingdom)',1,1,0),(8153,0,107603,'Wollombi','Australia','AU','Wollombi (Australia)',1,1,0),(8154,0,107604,'Wolsingham','United Kingdom','UK','Wolsingham (United Kingdom)',1,1,0),(8155,0,107605,'Wortwell','United Kingdom','UK','Wortwell (United Kingdom)',1,1,0),(8156,0,107606,'Woskrzenice Duze','Poland','PL','Woskrzenice Duze (Poland)',1,1,0),(8157,0,107607,'Wrenbury','United Kingdom','UK','Wrenbury (United Kingdom)',1,1,0),(8158,0,107608,'Wudalianchi','China','CN','Wudalianchi (China)',1,1,0),(8159,0,107609,'Wunnewil-Flamatt','Switzerland','CH','Wunnewil-Flamatt (Switzerland)',1,1,0),(8160,0,107610,'Wynau','Switzerland','CH','Wynau (Switzerland)',1,1,0),(8161,0,107611,'Xcalak','Mexico','MX','Xcalak (Mexico)',1,1,0),(8162,0,107612,'Xieng Khouang','LAOS','LA','Xieng Khouang (LAOS)',1,1,0),(8163,0,107613,'Xinfeng','China','CN','Xinfeng (China)',1,1,0),(8164,0,107614,'Xingyang','China','CN','Xingyang (China)',1,1,0),(8165,0,107615,'Yakornaya Shchel','Russia','RU','Yakornaya Shchel (Russia)',1,1,0),(8166,0,107616,'Yalutorovsk','Russia','RU','Yalutorovsk (Russia)',1,1,0),(8167,0,107617,'Yamatokoriyama','Japan','JP','Yamatokoriyama (Japan)',1,1,0),(8168,30222,107618,'Yatsushiro','Japan','JP','Yatsushiro (Japan)',1,1,0),(8169,0,107619,'Yessentuki','Russia','RU','Yessentuki (Russia)',1,1,0),(8170,0,107620,'Yeste','Spain','ES','Yeste (Spain)',1,1,0),(8171,0,107621,'Ymir','Canada','CA','Ymir (Canada)',1,1,0),(8172,0,107622,'Yomitan','Japan','JP','Yomitan (Japan)',1,1,0),(8173,0,107623,'Yumbel','Chile','CL','Yumbel (Chile)',1,1,0),(8174,0,107624,'Yundum','Gambia','GM','Yundum (Gambia)',1,1,0),(8175,0,107625,'Yurga','Russia','RU','Yurga (Russia)',1,1,0),(8176,0,107626,'Zaliznyy Port','Ukraine','UA','Zaliznyy Port (Ukraine)',1,1,0),(8177,0,107627,'Zavar','Slovakia','SK','Zavar (Slovakia)',1,1,0),(8178,0,107628,'Zavodskiy','Russia','RU','Zavodskiy (Russia)',1,1,0),(8179,0,107629,'Zbyny','Ukraine','UA','Zbyny (Ukraine)',1,1,0),(8180,0,107630,'Zeliv','Czech Republic','CZ','Zeliv (Czech Republic)',1,1,0),(8181,30503,107631,'Zirahuen','Mexico','MX','Zirahuen (Mexico)',1,1,0),(8182,0,107632,'Zolotoye','Ukraine','UA','Zolotoye (Ukraine)',1,1,0),(8183,30540,107633,'Zumaia','Spain','ES','Zumaia (Spain)',1,1,0),(8184,0,107634,'Thornlie','Australia','AU','Thornlie (Australia)',1,1,0),(8185,0,107635,'Tiangua','Brazil','BR','Tiangua (Brazil)',1,1,0),(8186,0,107636,'Tieri','Australia','AU','Tieri (Australia)',1,1,0),(8187,0,107637,'Tierrantona','Spain','ES','Tierrantona (Spain)',1,1,0),(8188,0,107638,'Tillenay','France','FR','Tillenay (France)',1,1,0),(8189,0,107639,'Tiriolo','Italy','IT','Tiriolo (Italy)',1,1,0),(8190,0,107640,'Tito','Italy','IT','Tito (Italy)',1,1,0),(8191,0,107641,'Titschnersdorf','Poland','PL','Titschnersdorf (Poland)',1,1,0),(8192,0,107642,'Tjele Langso','Denmark','DK','Tjele Langso (Denmark)',1,1,0),(8193,27423,107643,'Tokorozawa','Japan','JP','Tokorozawa (Japan)',1,1,0),(8194,0,107644,'Toltestava','Hungary','HU','Toltestava (Hungary)',1,1,0),(8195,0,107645,'Tomice','Poland','PL','Tomice (Poland)',1,1,0),(8196,0,107646,'Tomioka','Japan','JP','Tomioka (Japan)',1,1,0),(8197,0,107647,'Torino di Sangro','Italy','IT','Torino di Sangro (Italy)',1,1,0),(8198,0,107648,'Toulon-sur-Allier','France','FR','Toulon-sur-Allier (France)',1,1,0),(8199,0,107649,'Toxotes','Greece','GR','Toxotes (Greece)',1,1,0),(8200,0,107650,'Tranent','United Kingdom','UK','Tranent (United Kingdom)',1,1,0),(8201,0,107651,'Tres Coroas','Brazil','BR','Tres Coroas (Brazil)',1,1,0),(8202,0,107652,'Troina','Italy','IT','Troina (Italy)',1,1,0),(8203,0,107653,'Tsapatagh','Armenia','AM','Tsapatagh (Armenia)',1,1,0),(8204,27941,107654,'Tuncurry','Australia','AU','Tuncurry (Australia)',1,1,0),(8205,0,107655,'Tupiza','Bolivia','BO','Tupiza (Bolivia)',1,1,0),(8206,0,107656,'Tyuguryuk','Russia','RU','Tyuguryuk (Russia)',1,1,0),(8207,0,107657,'Udawela','Sri Lanka','LK','Udawela (Sri Lanka)',1,1,0),(8208,0,107658,'Uhersky Brod','Czech Republic','CZ','Uhersky Brod (Czech Republic)',1,1,0),(8209,0,107659,'Ulten','Italy','IT','Ulten (Italy)',1,1,0),(8210,0,107660,'Unai','Brazil','BR','Unai (Brazil)',1,1,0),(8211,0,107661,'Urville-Nacqueville','France','FR','Urville-Nacqueville (France)',1,1,0),(8212,0,107662,'Utes','Ukraine','UA','Utes (Ukraine)',1,1,0),(8213,0,107663,'Uusikartano','Finland','FI','Uusikartano (Finland)',1,1,0),(8214,0,107664,'Vacherauville','France','FR','Vacherauville (France)',1,1,0),(8215,0,107665,'Vafes','Greece','GR','Vafes (Greece)',1,1,0),(8216,0,107666,'Vaibla','Estonia','EE','Vaibla (Estonia)',1,1,0),(8217,0,107667,'Vaire','France','FR','Vaire (France)',1,1,0),(8218,33916,107668,'Val Masino','Italy','IT','Val Masino (Italy)',1,1,0),(8219,0,107669,'Valec','Czech Republic','CZ','Valec (Czech Republic)',1,1,0),(8220,0,107670,'Valencia','Philippines','PH','Valencia (Philippines)',1,1,0),(8221,0,107671,'Valeria del Mar','Argentina','AR','Valeria del Mar (Argentina)',1,1,0),(8222,0,107672,'Valganna','Italy','IT','Valganna (Italy)',1,1,0),(8223,33924,107673,'Vall de Gallinera','Spain','ES','Vall de Gallinera (Spain)',1,1,0),(8224,28384,107674,'Valle del Cauca','Colombia','CO','Valle del Cauca (Colombia)',1,1,0),(8225,0,107675,'Valle Hermoso','Argentina','AR','Valle Hermoso (Argentina)',1,1,0),(8226,0,107676,'Valmorea','Italy','IT','Valmorea (Italy)',1,1,0),(8227,0,107677,'Valparaiso','Colombia','CO','Valparaiso (Colombia)',1,1,0),(8228,0,107678,'Valprato Soana','Italy','IT','Valprato Soana (Italy)',1,1,0),(8229,0,107679,'Vannas','Sweden','SE','Vannas (Sweden)',1,1,0),(8230,0,107680,'Varangeville','France','FR','Varangeville (France)',1,1,0),(8231,0,107681,'Vaulruz','Switzerland','CH','Vaulruz (Switzerland)',1,1,0),(8232,0,107682,'Vavuniya','Sri Lanka','LK','Vavuniya (Sri Lanka)',1,1,0),(8233,33951,107683,'Vedra','Spain','ES','Vedra (Spain)',1,1,0),(8234,0,107684,'Velez-Rubio','Spain','ES','Velez-Rubio (Spain)',1,1,0),(8235,0,107685,'Verdelais','France','FR','Verdelais (France)',1,1,0),(8236,0,107686,'Verduno','Italy','IT','Verduno (Italy)',1,1,0),(8237,0,107687,'Vergeletto','Switzerland','CH','Vergeletto (Switzerland)',1,1,0),(8238,0,107688,'Vespasiano','Brazil','BR','Vespasiano (Brazil)',1,1,0),(8239,0,107689,'Vila Nova de Tazem','Portugal','PT','Vila Nova de Tazem (Portugal)',1,1,0),(8240,0,107690,'Vila Velha de Rodao','Portugal','PT','Vila Velha de Rodao (Portugal)',1,1,0),(8241,0,107691,'Vilanova de la Muga','Spain','ES','Vilanova de la Muga (Spain)',1,1,0),(8242,0,107692,'Villa del Mar','Mexico','MX','Villa del Mar (Mexico)',1,1,0),(8243,0,107693,'Villa del Totoral','Argentina','AR','Villa del Totoral (Argentina)',1,1,0),(8244,0,107694,'Villa di Serio','Italy','IT','Villa di Serio (Italy)',1,1,0),(8245,0,107695,'Villa Serrana','Uruguay','UY','Villa Serrana (Uruguay)',1,1,0),(8246,0,107696,'Villafranca de Ebro','Spain','ES','Villafranca de Ebro (Spain)',1,1,0),(8247,0,107697,'Villanueva de Cordoba','Spain','ES','Villanueva de Cordoba (Spain)',1,1,0),(8248,0,107698,'Vrable','Slovakia','SK','Vrable (Slovakia)',1,1,0),(8249,0,107699,'Vyazma','Russia','RU','Vyazma (Russia)',1,1,0),(8250,0,107700,'Vysoke Myto','Czech Republic','CZ','Vysoke Myto (Czech Republic)',1,1,0),(8251,0,107701,'Wabasca','Canada','CA','Wabasca (Canada)',1,1,0),(8252,0,107702,'Waikerie','Australia','AU','Waikerie (Australia)',1,1,0),(8253,0,107704,'Wangford','United Kingdom','UK','Wangford (United Kingdom)',1,1,0),(8254,0,107705,'Warwick','Canada','CA','Warwick (Canada)',1,1,0),(8255,0,107706,'Watrous','Canada','CA','Watrous (Canada)',1,1,0),(8256,0,107707,'Weikersdorf am Steinfelde','Austria','AT','Weikersdorf am Steinfelde (Austria)',1,1,0),(8257,0,107708,'West End Village','Honduras','HN','West End Village (Honduras)',1,1,0),(8258,0,107709,'Westerose','Canada','CA','Westerose (Canada)',1,1,0),(8259,0,107710,'Weston under Penyard','United Kingdom','UK','Weston under Penyard (United Kingdom)',1,1,0),(8260,29771,107711,'William Creek','Australia','AU','William Creek (Australia)',1,1,0),(8261,29794,107712,'Willoughby','Australia','AU','Willoughby (Australia)',1,1,0),(8262,0,107713,'Winterbourne Abbas','United Kingdom','UK','Winterbourne Abbas (United Kingdom)',1,1,0),(8263,0,107714,'Witnica','Poland','PL','Witnica (Poland)',1,1,0),(8264,0,107715,'Woburn Sands','United Kingdom','UK','Woburn Sands (United Kingdom)',1,1,0),(8265,0,107716,'Wola Krzysztoporska','Poland','PL','Wola Krzysztoporska (Poland)',1,1,0),(8266,29969,107717,'Wonga Park','Australia','AU','Wonga Park (Australia)',1,1,0),(8267,0,107718,'Woodbridge','Australia','AU','Woodbridge (Australia)',1,1,0),(8268,0,107719,'Woodford','United Kingdom','UK','Woodford (United Kingdom)',1,1,0),(8269,0,107720,'Woodhurst','United Kingdom','UK','Woodhurst (United Kingdom)',1,1,0),(8270,0,107721,'Skanninge','Sweden','SE','Skanninge (Sweden)',1,1,0),(8271,0,107722,'Skjern','Denmark','DK','Skjern (Denmark)',1,1,0),(8272,25406,107723,'Skogar','Iceland','IS','Skogar (Iceland)',1,1,0),(8273,0,107724,'Slatinice','Czech Republic','CZ','Slatinice (Czech Republic)',1,1,0),(8274,0,107725,'Slupca','Poland','PL','Slupca (Poland)',1,1,0),(8275,0,107726,'Sobron','Spain','ES','Sobron (Spain)',1,1,0),(8276,0,107727,'Solan de Cabras','Spain','ES','Solan de Cabras (Spain)',1,1,0),(8277,0,107728,'Soleilhas','France','FR','Soleilhas (France)',1,1,0),(8278,25580,107729,'Solferino','Italy','IT','Solferino (Italy)',1,1,0),(8279,0,107730,'Solikamsk','Russia','RU','Solikamsk (Russia)',1,1,0),(8280,0,107731,'Soltanovka','Belarus','BY','Soltanovka (Belarus)',1,1,0),(8281,0,107732,'SON HAO','Vietnam','VN','SON HAO (Vietnam)',1,1,0),(8282,0,107733,'Sotiello','Spain','ES','Sotiello (Spain)',1,1,0),(8283,0,107734,'Spences Bridge','Canada','CA','Spences Bridge (Canada)',1,1,0),(8284,0,107735,'Speyerbrunn','Germany','DE','Speyerbrunn (Germany)',1,1,0),(8285,0,107736,'Spili','Greece','GR','Spili (Greece)',1,1,0),(8286,0,107737,'Spinone al Lago','Italy','IT','Spinone al Lago (Italy)',1,1,0),(8287,0,107738,'Spresiano','Italy','IT','Spresiano (Italy)',1,1,0),(8288,0,107739,'Srebrenik','Bosnia and Herzegowina','BA','Srebrenik (Bosnia and Herzegowina)',1,1,0),(8289,0,107740,'St. Martial de Nabirat','France','FR','St. Martial de Nabirat (France)',1,1,0),(8290,0,107741,'St. Petersinsel','Switzerland','CH','St. Petersinsel (Switzerland)',1,1,0),(8291,0,107742,'Staraya Sloboda','Russia','RU','Staraya Sloboda (Russia)',1,1,0),(8292,0,107743,'Starozagorski bani','Bulgaria','BG','Starozagorski bani (Bulgaria)',1,1,0),(8293,0,107744,'Stechlin','Germany','DE','Stechlin (Germany)',1,1,0),(8294,0,107745,'Stiperstones','United Kingdom','UK','Stiperstones (United Kingdom)',1,1,0),(8295,0,107746,'Stockcross','United Kingdom','UK','Stockcross (United Kingdom)',1,1,0),(8296,0,107747,'Stokenchurch','United Kingdom','UK','Stokenchurch (United Kingdom)',1,1,0),(8297,0,107748,'Storo','Italy','IT','Storo (Italy)',1,1,0),(8298,0,107749,'Strykow','Poland','PL','Strykow (Poland)',1,1,0),(8299,0,107750,'Suchedniow','Poland','PL','Suchedniow (Poland)',1,1,0),(8300,0,107751,'Suhaia','Romania','RO','Suhaia (Romania)',1,1,0),(8301,0,107752,'Sumenep','Indonesia','ID','Sumenep (Indonesia)',1,1,0),(8302,0,107753,'Sumqayit','Azerbaijan','AZ','Sumqayit (Azerbaijan)',1,1,0),(8303,0,107755,'Svetlitsa','Russia','RU','Svetlitsa (Russia)',1,1,0),(8304,0,107756,'Swallwell','United Kingdom','UK','Swallwell (United Kingdom)',1,1,0),(8305,0,107757,'Taboadela','Spain','ES','Taboadela (Spain)',1,1,0),(8306,0,107758,'Tadley','United Kingdom','UK','Tadley (United Kingdom)',1,1,0),(8307,26615,107759,'Taganga','Colombia','CO','Taganga (Colombia)',1,1,0),(8308,0,107760,'Tajimi','Japan','JP','Tajimi (Japan)',1,1,0),(8309,0,107761,'Talpa de Allende','Mexico','MX','Talpa de Allende (Mexico)',1,1,0),(8310,26720,107762,'Tamano','Japan','JP','Tamano (Japan)',1,1,0),(8311,0,107763,'Tamasopo','Mexico','MX','Tamasopo (Mexico)',1,1,0),(8312,0,107764,'Tanicuchi','Ecuador','EC','Tanicuchi (Ecuador)',1,1,0),(8313,0,107765,'Tanjungpandan','Indonesia','ID','Tanjungpandan (Indonesia)',1,1,0),(8314,26815,107766,'Tarare','France','FR','Tarare (France)',1,1,0),(8315,0,107767,'Tasucu','Turkey','TR','Tasucu (Turkey)',1,1,0),(8316,0,107768,'Tateyama','Japan','JP','Tateyama (Japan)',1,1,0),(8317,0,107769,'Taverna','Italy','IT','Taverna (Italy)',1,1,0),(8318,26941,107770,'Tecolutla','Mexico','MX','Tecolutla (Mexico)',1,1,0),(8319,0,107771,'Tehualmixtle','Mexico','MX','Tehualmixtle (Mexico)',1,1,0),(8320,0,107772,'Tennevoll','Norway','NO','Tennevoll (Norway)',1,1,0),(8321,27051,107773,'Termas del Arapey','Uruguay','UY','Termas del Arapey (Uruguay)',1,1,0),(8322,0,107774,'Tessenderlo','Belgium','BE','Tessenderlo (Belgium)',1,1,0),(8323,27112,107775,'Texcoco de Mora','Mexico','MX','Texcoco de Mora (Mexico)',1,1,0),(8324,0,107776,'Therme Loipersdorf','Austria','AT','Therme Loipersdorf (Austria)',1,1,0),(8325,0,107777,'Thornham Magna','United Kingdom','UK','Thornham Magna (United Kingdom)',1,1,0),(8326,0,107778,'Tiaro','Australia','AU','Tiaro (Australia)',1,1,0),(8327,0,107779,'Timashevsk','Russia','RU','Timashevsk (Russia)',1,1,0),(8328,0,107780,'Tinaroo','Australia','AU','Tinaroo (Australia)',1,1,0),(8329,0,107781,'Tinjaca','Colombia','CO','Tinjaca (Colombia)',1,1,0),(8330,0,107783,'Tiszaug','Hungary','HU','Tiszaug (Hungary)',1,1,0),(8331,0,107784,'Titchfield','United Kingdom','UK','Titchfield (United Kingdom)',1,1,0),(8332,0,107785,'Tonsupa','Ecuador','EC','Tonsupa (Ecuador)',1,1,0),(8333,0,107786,'Torio','Panama','PA','Torio (Panama)',1,1,0),(8334,0,107787,'Torschok','Russia','RU','Torschok (Russia)',1,1,0),(8335,0,107788,'Trarego Viggiona','Italy','IT','Trarego Viggiona (Italy)',1,1,0),(8336,0,107789,'Traversella','Italy','IT','Traversella (Italy)',1,1,0),(8337,0,107790,'Trebaseleghe','Italy','IT','Trebaseleghe (Italy)',1,1,0),(8338,0,107791,'Trebechovice pod Orebem','Czech Republic','CZ','Trebechovice pod Orebem (Czech Republic)',1,1,0),(8339,0,107792,'Trebisov','Slovakia','SK','Trebisov (Slovakia)',1,1,0),(8340,0,107793,'Trecate','Italy','IT','Trecate (Italy)',1,1,0),(8341,0,107794,'Trivero','Italy','IT','Trivero (Italy)',1,1,0),(8342,0,107795,'Trogen','Germany','DE','Trogen (Germany)',1,1,0),(8343,27848,107796,'Tryphena','New Zealand','NZ','Tryphena (New Zealand)',1,1,0),(8344,0,107797,'Trzebownisko','Poland','PL','Trzebownisko (Poland)',1,1,0),(8345,0,107798,'Tschornomorske','Ukraine','UA','Tschornomorske (Ukraine)',1,1,0),(8346,0,107799,'Tuenno','Italy','IT','Tuenno (Italy)',1,1,0),(8347,0,107800,'Tupaciguara','Brazil','BR','Tupaciguara (Brazil)',1,1,0),(8348,0,107801,'Tuszyn','Poland','PL','Tuszyn (Poland)',1,1,0),(8349,0,107802,'Tvaaker','Sweden','SE','Tvaaker (Sweden)',1,1,0),(8350,28034,107803,'Tyre','Lebanon','LB','Tyre (Lebanon)',1,1,0),(8351,0,107804,'Ulldecona','Spain','ES','Ulldecona (Spain)',1,1,0),(8352,0,107805,'Zagan','Poland','PL','Zagan (Poland)',1,1,0),(8353,0,107806,'Zalioji','Lithuania','LT','Zalioji (Lithuania)',1,1,0),(8354,0,107807,'Zandrypsch','Georgia','GE','Zandrypsch (Georgia)',1,1,0),(8355,0,107808,'Zarechny','Russia','RU','Zarechny (Russia)',1,1,0),(8356,0,107809,'Zelenaya Polyana','Russia','RU','Zelenaya Polyana (Russia)',1,1,0),(8357,0,107810,'Zhalantun','China','CN','Zhalantun (China)',1,1,0),(8358,0,107811,'Zhana Buqtyrma','Kazakhstan','KZ','Zhana Buqtyrma (Kazakhstan)',1,1,0),(8359,0,107812,'Zimapan','Mexico','MX','Zimapan (Mexico)',1,1,0),(8360,0,107813,'Zlate Moravce','Slovakia','SK','Zlate Moravce (Slovakia)',1,1,0),(8361,0,107814,'Zoucheng','China','CN','Zoucheng (China)',1,1,0),(8362,0,107815,'Zundert','Netherlands','NL','Zundert (Netherlands)',1,1,0),(8363,0,107816,'Zvanovice','Czech Republic','CZ','Zvanovice (Czech Republic)',1,1,0),(8364,0,107817,'Tocon De Quentar','Spain','ES','Tocon De Quentar (Spain)',1,1,0),(8365,0,107818,'Tolna','Hungary','HU','Tolna (Hungary)',1,1,0),(8366,27511,107819,'Torce','France','FR','Torce (France)',1,1,0),(8367,0,107820,'Tornquist','Argentina','AR','Tornquist (Argentina)',1,1,0),(8368,0,107821,'Torrebaja','Spain','ES','Torrebaja (Spain)',1,1,0),(8369,0,107822,'Tortora','Italy','IT','Tortora (Italy)',1,1,0),(8370,0,107823,'Tosno','Russia','RU','Tosno (Russia)',1,1,0),(8371,0,107824,'Tovo di Sant\'Agata','Italy','IT','Tovo di Sant\'Agata (Italy)',1,1,0),(8372,27630,107825,'Toyako','Japan','JP','Toyako (Japan)',1,1,0),(8373,0,107826,'Trang Bang','Vietnam','VN','Trang Bang (Vietnam)',1,1,0),(8374,0,107827,'Tres Coracoes','Brazil','BR','Tres Coracoes (Brazil)',1,1,0),(8375,0,107828,'Tresgrandas','Spain','ES','Tresgrandas (Spain)',1,1,0),(8376,0,107829,'Trethurgy','United Kingdom','UK','Trethurgy (United Kingdom)',1,1,0),(8377,0,107830,'Treveneuc','France','FR','Treveneuc (France)',1,1,0),(8378,0,107831,'Trhovy Stepanov','Czech Republic','CZ','Trhovy Stepanov (Czech Republic)',1,1,0),(8379,0,107832,'Trie-sur-Baise','France','FR','Trie-sur-Baise (France)',1,1,0),(8380,0,107833,'Trinidad','Uruguay','UY','Trinidad (Uruguay)',1,1,0),(8381,27808,107834,'Troncones','Mexico','MX','Troncones (Mexico)',1,1,0),(8382,0,107835,'Tschiertschen','Switzerland','CH','Tschiertschen (Switzerland)',1,1,0),(8383,0,107836,'Tubeke','Belgium','BE','Tubeke (Belgium)',1,1,0),(8384,0,107837,'Tukad Abu','Indonesia','ID','Tukad Abu (Indonesia)',1,1,0),(8385,0,107838,'Tully','Australia','AU','Tully (Australia)',1,1,0),(8386,0,107839,'Tzimol','Mexico','MX','Tzimol (Mexico)',1,1,0),(8387,0,107840,'Tzoumerka','Greece','GR','Tzoumerka (Greece)',1,1,0),(8388,0,107841,'Ulmarra','Australia','AU','Ulmarra (Australia)',1,1,0),(8389,0,107842,'Uniondale','South Africa','ZA','Uniondale (South Africa)',1,1,0),(8390,0,107843,'Unionhall','Ireland','IE','Unionhall (Ireland)',1,1,0),(8391,0,107844,'Upper Largo','United Kingdom','UK','Upper Largo (United Kingdom)',1,1,0),(8392,0,107845,'Urakawa','Japan','JP','Urakawa (Japan)',1,1,0),(8393,0,107846,'Ursulo Galvan','Mexico','MX','Ursulo Galvan (Mexico)',1,1,0),(8394,0,107847,'Ustek','Czech Republic','CZ','Ustek (Czech Republic)',1,1,0),(8395,0,107848,'Ust-Ilimsk','Russia','RU','Ust-Ilimsk (Russia)',1,1,0),(8396,28312,107849,'Vagamo','Norway','NO','Vagamo (Norway)',1,1,0),(8397,0,107850,'Vallentuna','Sweden','SE','Vallentuna (Sweden)',1,1,0),(8398,0,107851,'Vallet','France','FR','Vallet (France)',1,1,0),(8399,0,107852,'Vama Veche','Romania','RO','Vama Veche (Romania)',1,1,0),(8400,0,107853,'Vars','Canada','CA','Vars (Canada)',1,1,0),(8401,28477,107854,'Varzea Grande','Brazil','BR','Varzea Grande (Brazil)',1,1,0),(8402,0,107856,'Velddrif','South Africa','ZA','Velddrif (South Africa)',1,1,0),(8403,0,107857,'Velipoja','Albania','AL','Velipoja (Albania)',1,1,0),(8404,0,107858,'Venado Tuerto','Argentina','AR','Venado Tuerto (Argentina)',1,1,0),(8405,0,107859,'Venejan','France','FR','Venejan (France)',1,1,0),(8406,0,107860,'Venissieux','France','FR','Venissieux (France)',1,1,0),(8407,0,107861,'Venticano','Italy','IT','Venticano (Italy)',1,1,0),(8408,0,107862,'Vera','Argentina','AR','Vera (Argentina)',1,1,0),(8409,0,107863,'Vern sur Seiche','France','FR','Vern sur Seiche (France)',1,1,0),(8410,0,107864,'Vernon','France','FR','Vernon (France)',1,1,0),(8411,0,107865,'Vigan City','Philippines','PH','Vigan City (Philippines)',1,1,0),(8412,0,107866,'Viggiano','Italy','IT','Viggiano (Italy)',1,1,0),(8413,0,107867,'Vila de Rei','Portugal','PT','Vila de Rei (Portugal)',1,1,0),(8414,0,107868,'Vilarrodis','Spain','ES','Vilarrodis (Spain)',1,1,0),(8415,0,107869,'Vilassar de Dalt','Spain','ES','Vilassar de Dalt (Spain)',1,1,0),(8416,0,107870,'Villa Dolores','Argentina','AR','Villa Dolores (Argentina)',1,1,0),(8417,0,107871,'Villadecanes','Spain','ES','Villadecanes (Spain)',1,1,0),(8418,0,107872,'Villaroger','France','FR','Villaroger (France)',1,1,0),(8419,0,107873,'Villefranche-de-Lauragais','France','FR','Villefranche-de-Lauragais (France)',1,1,0),(8420,0,107874,'Villeneuve-sous-Dammartin','France','FR','Villeneuve-sous-Dammartin (France)',1,1,0),(8421,0,107875,'Vinchiaturo','Italy','IT','Vinchiaturo (Italy)',1,1,0),(8422,0,107876,'Vinhais','Portugal','PT','Vinhais (Portugal)',1,1,0),(8423,0,107877,'Vir','Czech Republic','CZ','Vir (Czech Republic)',1,1,0),(8424,0,107878,'Visso','Italy','IT','Visso (Italy)',1,1,0),(8425,0,107879,'Vleteren','Belgium','BE','Vleteren (Belgium)',1,1,0),(8426,0,107880,'Vlicho','Greece','GR','Vlicho (Greece)',1,1,0),(8427,0,107881,'Vogtei','Germany','DE','Vogtei (Germany)',1,1,0),(8428,0,107882,'Vormsund','Norway','NO','Vormsund (Norway)',1,1,0),(8429,0,107883,'Vorohta','Ukraine','UA','Vorohta (Ukraine)',1,1,0),(8430,0,107884,'Waiuku','New Zealand','NZ','Waiuku (New Zealand)',1,1,0),(8431,0,107885,'Walbeck','Germany','DE','Walbeck (Germany)',1,1,0),(8432,0,107886,'Walferdange','Luxembourg','LU','Walferdange (Luxembourg)',1,1,0),(8433,0,107888,'Wapnjarka','Ukraine','UA','Wapnjarka (Ukraine)',1,1,0),(8434,29331,107889,'Wasagaming','Canada','CA','Wasagaming (Canada)',1,1,0),(8435,0,107890,'Washford','United Kingdom','UK','Washford (United Kingdom)',1,1,0),(8436,0,107891,'Weinan','China','CN','Weinan (China)',1,1,0),(8437,0,107892,'Weiswampach','Luxembourg','LU','Weiswampach (Luxembourg)',1,1,0),(8438,0,107894,'Westgate','United Kingdom','UK','Westgate (United Kingdom)',1,1,0),(8439,0,107895,'Whitchurch',NULL,NULL,'Whitchurch ()',1,1,0),(8440,0,107896,'Whitley','United Kingdom','UK','Whitley (United Kingdom)',1,1,0),(8441,0,107897,'Whitnell','United Kingdom','UK','Whitnell (United Kingdom)',1,1,0),(8442,0,107898,'Wichenford','United Kingdom','UK','Wichenford (United Kingdom)',1,1,0),(8443,0,107899,'Wildenstein','France','FR','Wildenstein (France)',1,1,0),(8444,0,107900,'Willemstad','Netherlands','NL','Willemstad (Netherlands)',1,1,0),(8445,0,107901,'Wilmcote','United Kingdom','UK','Wilmcote (United Kingdom)',1,1,0),(8446,0,107902,'Wilsons Creek','Australia','AU','Wilsons Creek (Australia)',1,1,0),(8447,0,107903,'Wolsk','Russia','RU','Wolsk (Russia)',1,1,0),(8448,0,107904,'Wooli','Australia','AU','Wooli (Australia)',1,1,0),(8449,30006,107905,'Woollamia','Australia','AU','Woollamia (Australia)',1,1,0),(8450,0,107906,'Woy Woy','Australia','AU','Woy Woy (Australia)',1,1,0),(8451,0,107907,'Wycliffe','Canada','CA','Wycliffe (Canada)',1,1,0),(8452,0,107908,'Wylkowe','Ukraine','UA','Wylkowe (Ukraine)',1,1,0),(8453,0,107909,'Wyschkowo','Ukraine','UA','Wyschkowo (Ukraine)',1,1,0),(8454,0,107910,'Xesteirina','Spain','ES','Xesteirina (Spain)',1,1,0),(8455,0,107911,'Xiahe','China','CN','Xiahe (China)',1,1,0),(8456,0,107912,'xico','Mexico','MX','xico (Mexico)',1,1,0),(8457,0,107913,'Yamanaka-See','Japan','JP','Yamanaka-See (Japan)',1,1,0),(8458,0,107914,'Yeongdeok','South Korea','KR','Yeongdeok (South Korea)',1,1,0),(8459,0,107915,'Yeongheungdo','South Korea','KR','Yeongheungdo (South Korea)',1,1,0),(8460,0,107916,'Yerba Buena','Argentina','AR','Yerba Buena (Argentina)',1,1,0),(8461,0,107917,'Yeruham','Israel','IL','Yeruham (Israel)',1,1,0),(8462,0,107918,'Yurihonjo','Japan','JP','Yurihonjo (Japan)',1,1,0),(8463,0,107919,'Yusufkhona','Uzbekistan','UZ','Yusufkhona (Uzbekistan)',1,1,0),(8464,0,107920,'Zamboanguita','Philippines','PH','Zamboanguita (Philippines)',1,1,0),(8465,0,107921,'Zebegeny','Hungary','HU','Zebegeny (Hungary)',1,1,0),(8466,0,107922,'Zelenohirya','Ukraine','UA','Zelenohirya (Ukraine)',1,1,0),(8467,0,107923,'Zelo Buon Persico','Italy','IT','Zelo Buon Persico (Italy)',1,1,0),(8468,0,107924,'Zhangbei','China','CN','Zhangbei (China)',1,1,0),(8469,0,107925,'Zhuangwei','Taiwan','TW','Zhuangwei (Taiwan)',1,1,0),(8470,0,107926,'Zhuqi','Taiwan','TW','Zhuqi (Taiwan)',1,1,0),(8471,0,107927,'Zhushan','Taiwan','TW','Zhushan (Taiwan)',1,1,0),(8472,0,107928,'Zichenau','Poland','PL','Zichenau (Poland)',1,1,0),(8473,0,107929,'Zlatoust','Russia','RU','Zlatoust (Russia)',1,1,0),(8474,0,107930,'Zurich','Netherlands','NL','Zurich (Netherlands)',1,1,0),(8475,0,107931,'Zutzendorf','France','FR','Zutzendorf (France)',1,1,0),(8476,0,107932,'Ulvohamn','Sweden','SE','Ulvohamn (Sweden)',1,1,0),(8477,0,107933,'Uman','Ukraine','UA','Uman (Ukraine)',1,1,0),(8478,28175,107934,'Uozu','Japan','JP','Uozu (Japan)',1,1,0),(8479,0,107935,'Upper Orara','Australia','AU','Upper Orara (Australia)',1,1,0),(8480,28199,107936,'Urbania','Italy','IT','Urbania (Italy)',1,1,0),(8481,0,107937,'Urtsadzor','Armenia','AM','Urtsadzor (Armenia)',1,1,0),(8482,0,107939,'Ustrzyki Dolne','Poland','PL','Ustrzyki Dolne (Poland)',1,1,0),(8483,0,107940,'Utena','Lithuania','LT','Utena (Lithuania)',1,1,0),(8484,0,107941,'Utjeha','Montenegro','ME','Utjeha (Montenegro)',1,1,0),(8485,0,107942,'Utterson','Canada','CA','Utterson (Canada)',1,1,0),(8486,0,107943,'Uznezya','Russia','RU','Uznezya (Russia)',1,1,0),(8487,0,107945,'Val de San Lorenzo','Spain','ES','Val de San Lorenzo (Spain)',1,1,0),(8488,0,107946,'Valadalen','Sweden','SE','Valadalen (Sweden)',1,1,0),(8489,0,107947,'Valdieri','Italy','IT','Valdieri (Italy)',1,1,0),(8490,0,107948,'Valgamaa','Estonia','EE','Valgamaa (Estonia)',1,1,0),(8491,0,107949,'Vallesaccarda','Italy','IT','Vallesaccarda (Italy)',1,1,0),(8492,0,107950,'Valpovo','Croatia','HR','Valpovo (Croatia)',1,1,0),(8493,0,107951,'Van Reenen','South Africa','ZA','Van Reenen (South Africa)',1,1,0),(8494,0,107952,'Vayk','Armenia','AM','Vayk (Armenia)',1,1,0),(8495,0,107953,'Veitsrodt','Germany','DE','Veitsrodt (Germany)',1,1,0),(8496,0,107954,'Vejbystrand','Sweden','SE','Vejbystrand (Sweden)',1,1,0),(8497,0,107955,'Velchevo','Bulgaria','BG','Velchevo (Bulgaria)',1,1,0),(8498,0,107956,'Venzone','Italy','IT','Venzone (Italy)',1,1,0),(8499,0,107958,'Vernasca','Italy','IT','Vernasca (Italy)',1,1,0),(8500,0,107959,'Verrieres (Aube)','France','FR','Verrieres (Aube) (France)',1,1,0),(8501,0,107960,'Vessem','Netherlands','NL','Vessem (Netherlands)',1,1,0),(8502,0,107961,'Vicosa do Ceara','Brazil','BR','Vicosa do Ceara (Brazil)',1,1,0),(8503,0,107962,'Vigia','Brazil','BR','Vigia (Brazil)',1,1,0),(8504,0,107963,'Vila Nova Sintra','Cape Verde','CV','Vila Nova Sintra (Cape Verde)',1,1,0),(8505,0,107964,'Vilademuls','Spain','ES','Vilademuls (Spain)',1,1,0),(8506,0,107965,'Villa Angela','Argentina','AR','Villa Angela (Argentina)',1,1,0),(8507,0,107966,'Villa Ciudad de America','Argentina','AR','Villa Ciudad de America (Argentina)',1,1,0),(8508,0,107967,'Villa Pehuenia','Argentina','AR','Villa Pehuenia (Argentina)',1,1,0),(8509,0,107968,'Villa Rosa di Martinsicuro','Italy','IT','Villa Rosa di Martinsicuro (Italy)',1,1,0),(8510,0,107969,'Villar del Maestre','Spain','ES','Villar del Maestre (Spain)',1,1,0),(8511,0,107970,'Villeneuve-de-Riviere','France','FR','Villeneuve-de-Riviere (France)',1,1,0),(8512,0,107971,'Villevaude','France','FR','Villevaude (France)',1,1,0),(8513,0,107972,'Villiersdorp','South Africa','ZA','Villiersdorp (South Africa)',1,1,0),(8514,0,107973,'Viso del Marques','Spain','ES','Viso del Marques (Spain)',1,1,0),(8515,0,107974,'Vitemolla','Sweden','SE','Vitemolla (Sweden)',1,1,0),(8516,0,107976,'Vragolija','Serbia','RS','Vragolija (Serbia)',1,1,0),(8517,0,107977,'Vron','France','FR','Vron (France)',1,1,0),(8518,0,107978,'Vyshka','Ukraine','UA','Vyshka (Ukraine)',1,1,0),(8519,0,107979,'Walkringen','Switzerland','CH','Walkringen (Switzerland)',1,1,0),(8520,0,107980,'Wanci','Indonesia','ID','Wanci (Indonesia)',1,1,0),(8521,0,107981,'Wanda','Argentina','AR','Wanda (Argentina)',1,1,0),(8522,0,107982,'Warin Chamrap','Thailand','TH','Warin Chamrap (Thailand)',1,1,0),(8523,0,107983,'Warkworth','United Kingdom','UK','Warkworth (United Kingdom)',1,1,0),(8524,0,107984,'Wartha','Poland','PL','Wartha (Poland)',1,1,0),(8525,0,107985,'Wasilkow','Poland','PL','Wasilkow (Poland)',1,1,0),(8526,0,107986,'Watthegama','Sri Lanka','LK','Watthegama (Sri Lanka)',1,1,0),(8527,0,107987,'Wellingore','United Kingdom','UK','Wellingore (United Kingdom)',1,1,0),(8528,0,107988,'Weston Longville','United Kingdom','UK','Weston Longville (United Kingdom)',1,1,0),(8529,0,107989,'Whitecroft','United Kingdom','UK','Whitecroft (United Kingdom)',1,1,0),(8530,0,107990,'Wimmis','Switzerland','CH','Wimmis (Switzerland)',1,1,0),(8531,0,107991,'Wolborz','Poland','PL','Wolborz (Poland)',1,1,0),(8532,0,107992,'Wolflinswil','Switzerland','CH','Wolflinswil (Switzerland)',1,1,0),(8533,0,107993,'Woszczyce','Poland','PL','Woszczyce (Poland)',1,1,0),(8534,0,107994,'Wraza','Bulgaria','BG','Wraza (Bulgaria)',1,1,0),(8535,0,107995,'Wudang Shan','China','CN','Wudang Shan (China)',1,1,0),(8536,0,107996,'Wukirsari','Indonesia','ID','Wukirsari (Indonesia)',1,1,0),(8537,0,107997,'Wye River','Australia','AU','Wye River (Australia)',1,1,0),(8538,0,107998,'Xuyen Moc','Vietnam','VN','Xuyen Moc (Vietnam)',1,1,0),(8539,0,107999,'Yanagawa','Japan','JP','Yanagawa (Japan)',1,1,0),(8540,0,108000,'Yizhou','China','CN','Yizhou (China)',1,1,0),(8541,0,108001,'Ylojarvi','Finland','FI','Ylojarvi (Finland)',1,1,0),(8542,0,108002,'Yuanshan','Taiwan','TW','Yuanshan (Taiwan)',1,1,0),(8543,30327,108003,'Yuhang','China','CN','Yuhang (China)',1,1,0),(8544,0,108004,'Yura','Peru','PE','Yura (Peru)',1,1,0),(8545,0,108005,'Yuryuzan','Russia','RU','Yuryuzan (Russia)',1,1,0),(8546,0,108006,'Zarza de Granadilla','Spain','ES','Zarza de Granadilla (Spain)',1,1,0),(8547,0,108007,'Zasutowo','Poland','PL','Zasutowo (Poland)',1,1,0),(8548,0,108008,'Zavalla','Argentina','AR','Zavalla (Argentina)',1,1,0),(8549,0,108009,'Zdiretz','Czech Republic','CZ','Zdiretz (Czech Republic)',1,1,0),(8550,0,108010,'Zelechow','Poland','PL','Zelechow (Poland)',1,1,0),(8551,0,108011,'Zerkow','Poland','PL','Zerkow (Poland)',1,1,0),(8552,0,108012,'Zhenyuan','China','CN','Zhenyuan (China)',1,1,0),(8553,0,108013,'Wormer','Netherlands','NL','Wormer (Netherlands)',1,1,0),(8554,0,108014,'Worotynez','Russia','RU','Worotynez (Russia)',1,1,0),(8555,0,108015,'Wrocki','Poland','PL','Wrocki (Poland)',1,1,0),(8556,0,108016,'Wynohradiw','Ukraine','UA','Wynohradiw (Ukraine)',1,1,0),(8557,0,108017,'Wyszkow','Poland','PL','Wyszkow (Poland)',1,1,0),(8558,0,108018,'Xangri-la','Brazil','BR','Xangri-la (Brazil)',1,1,0),(8559,0,108019,'Xiaogan','China','CN','Xiaogan (China)',1,1,0),(8560,0,108020,'Xilitla','Mexico','MX','Xilitla (Mexico)',1,1,0),(8561,0,108021,'Yackandandah','Australia','AU','Yackandandah (Australia)',1,1,0),(8562,0,108022,'Yakty-Kul','Russia','RU','Yakty-Kul (Russia)',1,1,0),(8563,0,108023,'Yanishpole','Russia','RU','Yanishpole (Russia)',1,1,0),(8564,0,108024,'Yatte Yattah','Australia','AU','Yatte Yattah (Australia)',1,1,0),(8565,0,108025,'Yucatan','Mexico','MX','Yucatan (Mexico)',1,1,0),(8566,0,108026,'Yves','France','FR','Yves (France)',1,1,0),(8567,0,108027,'Zacatlan','Mexico','MX','Zacatlan (Mexico)',1,1,0),(8568,0,108028,'Zalamea De La Serena','Spain','ES','Zalamea De La Serena (Spain)',1,1,0),(8569,0,108029,'Zalaszentgrot','Hungary','HU','Zalaszentgrot (Hungary)',1,1,0),(8570,0,108030,'Zalhostice u Litomeric','Czech Republic','CZ','Zalhostice u Litomeric (Czech Republic)',1,1,0),(8571,0,108031,'Zamami','Japan','JP','Zamami (Japan)',1,1,0),(8572,0,108032,'Zbylitowska Gora','Poland','PL','Zbylitowska Gora (Poland)',1,1,0),(8573,0,108033,'Zdanovichi','Belarus','BY','Zdanovichi (Belarus)',1,1,0),(8574,0,108034,'Zebrak','Czech Republic','CZ','Zebrak (Czech Republic)',1,1,0),(8575,30432,108035,'Zeebrugge','Belgium','BE','Zeebrugge (Belgium)',1,1,0),(8576,0,108036,'Zelbio','Italy','IT','Zelbio (Italy)',1,1,0),(8577,0,108037,'Zhuanghe','China','CN','Zhuanghe (China)',1,1,0),(8578,0,108038,'Zhudre','Russia','RU','Zhudre (Russia)',1,1,0),(8579,0,108039,'Zhuravka','Russia','RU','Zhuravka (Russia)',1,1,0),(8580,0,108040,'Zhytomyr','Ukraine','UA','Zhytomyr (Ukraine)',1,1,0),(8581,0,108041,'Zipolite','Mexico','MX','Zipolite (Mexico)',1,1,0),(8582,30538,108042,'Zuidlaren','Netherlands','NL','Zuidlaren (Netherlands)',1,1,0),(8583,0,108043,'Zurich','Canada','CA','Zurich (Canada)',1,1,0),(8584,0,108044,'Zuzwil','Switzerland','CH','Zuzwil (Switzerland)',1,1,0),(8585,2834,108045,'Bellignat','France','FR','Bellignat (France)',1,1,0),(8586,0,108046,'Belokurikha','Russia','RU','Belokurikha (Russia)',1,1,0),(8587,0,108047,'Beloyarsky','Russia','RU','Beloyarsky (Russia)',1,1,0),(8588,0,108048,'Ben Cat','Vietnam','VN','Ben Cat (Vietnam)',1,1,0),(8589,0,108049,'Bereguardo','Italy','IT','Bereguardo (Italy)',1,1,0),(8590,0,108050,'Beringen','Luxembourg','LU','Beringen (Luxembourg)',1,1,0),(8591,0,108051,'Berlanga de Duero','Spain','ES','Berlanga de Duero (Spain)',1,1,0),(8592,0,108052,'Berri','Australia','AU','Berri (Australia)',1,1,0),(8593,0,108053,'Besseges','France','FR','Besseges (France)',1,1,0),(8594,0,108054,'Betio','Kiribati','KI','Betio (Kiribati)',1,1,0),(8595,0,108055,'Beysehir','Turkey','TR','Beysehir (Turkey)',1,1,0),(8596,0,108058,'Biale Blota (Bydgoszcz)','Poland','PL','Biale Blota (Bydgoszcz) (Poland)',1,1,0),(8597,0,108059,'Bignasco','Switzerland','CH','Bignasco (Switzerland)',1,1,0),(8598,0,108060,'Bildeston','United Kingdom','UK','Bildeston (United Kingdom)',1,1,0),(8599,0,108061,'Bileca','Bosnia and Herzegowina','BA','Bileca (Bosnia and Herzegowina)',1,1,0),(8600,0,108062,'Biodola','Italy','IT','Biodola (Italy)',1,1,0),(8601,0,108063,'Birgi','Turkey','TR','Birgi (Turkey)',1,1,0),(8602,0,108064,'Biron','France','FR','Biron (France)',1,1,0),(8603,0,108065,'Bischoffingen','Germany','DE','Bischoffingen (Germany)',1,1,0),(8604,0,108066,'Blein','Italy','IT','Blein (Italy)',1,1,0),(8605,3425,108067,'Blind Bay','Canada','CA','Blind Bay (Canada)',1,1,0),(8606,0,108068,'Bodden Town','Cayman Islands','KY','Bodden Town (Cayman Islands)',1,1,0),(8607,0,108069,'Boffres','France','FR','Boffres (France)',1,1,0),(8608,0,108070,'Bogazkale','Turkey','TR','Bogazkale (Turkey)',1,1,0),(8609,0,108071,'Bogorodsk','Russia','RU','Bogorodsk (Russia)',1,1,0),(8610,0,108072,'Bonbeach','Australia','AU','Bonbeach (Australia)',1,1,0),(8611,0,108073,'Borden-Carleton','Canada','CA','Borden-Carleton (Canada)',1,1,0),(8612,0,108074,'Borgo Val di Taro','Italy','IT','Borgo Val di Taro (Italy)',1,1,0),(8613,0,108075,'Borlena','Spain','ES','Borlena (Spain)',1,1,0),(8614,0,108076,'Borlo','Belgium','BE','Borlo (Belgium)',1,1,0),(8615,3747,108077,'Boscobel','Jamaica','JM','Boscobel (Jamaica)',1,1,0),(8616,0,108078,'Boscombe','United Kingdom','UK','Boscombe (United Kingdom)',1,1,0),(8617,0,108079,'Botevgrad','Bulgaria','BG','Botevgrad (Bulgaria)',1,1,0),(8618,0,108080,'Branesti','Romania','RO','Branesti (Romania)',1,1,0),(8619,0,108081,'Branisovice','Czech Republic','CZ','Branisovice (Czech Republic)',1,1,0),(8620,0,108082,'Breaza','Romania','RO','Breaza (Romania)',1,1,0),(8621,0,108083,'Brecht','Belgium','BE','Brecht (Belgium)',1,1,0),(8622,0,108084,'Bredebro','Denmark','DK','Bredebro (Denmark)',1,1,0),(8623,0,108085,'Brensbach','Germany','DE','Brensbach (Germany)',1,1,0),(8624,0,108086,'Bridge Lake','Canada','CA','Bridge Lake (Canada)',1,1,0),(8625,0,108087,'Brighstone','United Kingdom','UK','Brighstone (United Kingdom)',1,1,0),(8626,0,108088,'Briones','Spain','ES','Briones (Spain)',1,1,0),(8627,0,108089,'Brody','Ukraine','UA','Brody (Ukraine)',1,1,0),(8628,0,108090,'Brzozow','Poland','PL','Brzozow (Poland)',1,1,0),(8629,0,108091,'Budleigh Salterton','United Kingdom','UK','Budleigh Salterton (United Kingdom)',1,1,0),(8630,0,108092,'Bullet Tree Falls','Belize','BZ','Bullet Tree Falls (Belize)',1,1,0),(8631,0,108093,'Bundalong','Australia','AU','Bundalong (Australia)',1,1,0),(8632,0,108094,'Bungo-ono','Japan','JP','Bungo-ono (Japan)',1,1,0),(8633,4464,108095,'Burdur','Turkey','TR','Burdur (Turkey)',1,1,0),(8634,0,108096,'Busseto','Italy','IT','Busseto (Italy)',1,1,0),(8635,0,108097,'Buzias','Romania','RO','Buzias (Romania)',1,1,0),(8636,0,108098,'Cabot Trail','Canada','CA','Cabot Trail (Canada)',1,1,0),(8637,0,108099,'Cajazeiras','Brazil','BR','Cajazeiras (Brazil)',1,1,0),(8638,4761,108100,'Caldiero','Italy','IT','Caldiero (Italy)',1,1,0),(8639,0,108101,'Callala Bay','Australia','AU','Callala Bay (Australia)',1,1,0),(8640,0,108102,'Calliope','Australia','AU','Calliope (Australia)',1,1,0),(8641,0,108103,'Camigliatello Silano','Italy','IT','Camigliatello Silano (Italy)',1,1,0),(8642,0,108104,'Campo Maior','Portugal','PT','Campo Maior (Portugal)',1,1,0),(8643,0,108105,'Candamo','Spain','ES','Candamo (Spain)',1,1,0),(8644,0,108106,'Candelaria','Mexico','MX','Candelaria (Mexico)',1,1,0),(8645,0,108107,'Canosa Sannita','Italy','IT','Canosa Sannita (Italy)',1,1,0),(8646,0,108108,'Capitan Pastene','Chile','CL','Capitan Pastene (Chile)',1,1,0),(8647,0,108109,'Caplan','Canada','CA','Caplan (Canada)',1,1,0),(8648,0,108110,'Cap-Pele','Canada','CA','Cap-Pele (Canada)',1,1,0),(8649,0,108111,'Caprese de Michelanglo','Italy','IT','Caprese de Michelanglo (Italy)',1,1,0),(8650,0,108112,'Capri Leone','Italy','IT','Capri Leone (Italy)',1,1,0),(8651,0,108113,'Caraubas','Brazil','BR','Caraubas (Brazil)',1,1,0),(8652,0,108114,'Carhue','Argentina','AR','Carhue (Argentina)',1,1,0),(8653,0,108115,'Carlsruhe','Australia','AU','Carlsruhe (Australia)',1,1,0),(8654,5226,108116,'Carpineti','Italy','IT','Carpineti (Italy)',1,1,0),(8655,0,108117,'Carpino','Italy','IT','Carpino (Italy)',1,1,0),(8656,0,108118,'Carrum Downs','Australia','AU','Carrum Downs (Australia)',1,1,0),(8657,0,108119,'Castel Frentano','Italy','IT','Castel Frentano (Italy)',1,1,0),(8658,0,108120,'Castelforte','Italy','IT','Castelforte (Italy)',1,1,0),(8659,0,108121,'Castelfranco Emilia','Italy','IT','Castelfranco Emilia (Italy)',1,1,0),(8660,0,108122,'Castello di Annone','Italy','IT','Castello di Annone (Italy)',1,1,0),(8661,0,108123,'Castello Tesino','Italy','IT','Castello Tesino (Italy)',1,1,0),(8662,0,108124,'Castelnuovo Misericordia','Italy','IT','Castelnuovo Misericordia (Italy)',1,1,0),(8663,0,108125,'Castilla La Nueva','Colombia','CO','Castilla La Nueva (Colombia)',1,1,0),(8664,0,108126,'Casto','Italy','IT','Casto (Italy)',1,1,0),(8665,5479,108127,'Causapscal','Canada','CA','Causapscal (Canada)',1,1,0),(8666,5514,108128,'Cayambe','Ecuador','EC','Cayambe (Ecuador)',1,1,0),(8667,0,108129,'Ceilhes-et-Rocozels','France','FR','Ceilhes-et-Rocozels (France)',1,1,0),(8668,0,108130,'Celico','Italy','IT','Celico (Italy)',1,1,0),(8669,5598,108131,'Central Coast','Australia','AU','Central Coast (Australia)',1,1,0),(8670,0,108132,'Ceska Skalice','Czech Republic','CZ','Ceska Skalice (Czech Republic)',1,1,0),(8671,5733,108133,'Chame','Panama','PA','Chame (Panama)',1,1,0),(8672,0,108134,'Chapais','Canada','CA','Chapais (Canada)',1,1,0),(8673,0,108135,'Chapmanslade','United Kingdom','UK','Chapmanslade (United Kingdom)',1,1,0),(8674,5923,108136,'Chatenay-Malabry','France','FR','Chatenay-Malabry (France)',1,1,0),(8675,0,108137,'Chaudeyrac','France','FR','Chaudeyrac (France)',1,1,0),(8676,5951,108138,'Chaux-des-Crotenay','France','FR','Chaux-des-Crotenay (France)',1,1,0),(8677,0,108139,'Checiny','Poland','PL','Checiny (Poland)',1,1,0),(8678,0,108140,'Cheposh','Russia','RU','Cheposh (Russia)',1,1,0),(8679,6079,108142,'Chiaramonte Gulfi','Italy','IT','Chiaramonte Gulfi (Italy)',1,1,0),(8680,0,108143,'Chimay','Belgium','BE','Chimay (Belgium)',1,1,0),(8681,0,108145,'Chiusi della Verna','Italy','IT','Chiusi della Verna (Italy)',1,1,0),(8682,0,108146,'Chongzhou','China','CN','Chongzhou (China)',1,1,0),(8683,0,108147,'Chornoliztsi','Ukraine','UA','Chornoliztsi (Ukraine)',1,1,0),(8684,0,108148,'Cieneguilla','Peru','PE','Cieneguilla (Peru)',1,1,0),(8685,0,108149,'Cimego','Italy','IT','Cimego (Italy)',1,1,0),(8686,6349,108150,'Cittaducale','Italy','IT','Cittaducale (Italy)',1,1,0),(8687,0,108151,'Ciudad Madero','Mexico','MX','Ciudad Madero (Mexico)',1,1,0),(8688,0,108152,'Clifton Upon Teme','United Kingdom','UK','Clifton Upon Teme (United Kingdom)',1,1,0),(8689,6485,108153,'Clinton','Canada','CA','Clinton (Canada)',1,1,0),(8690,0,108154,'Clogher','United Kingdom','UK','Clogher (United Kingdom)',1,1,0),(8691,0,108155,'Cogilo','Switzerland','CH','Cogilo (Switzerland)',1,1,0),(8692,6621,108156,'Colbordolo','Italy','IT','Colbordolo (Italy)',1,1,0),(8693,0,108157,'Collingbourne Ducis','United Kingdom','UK','Collingbourne Ducis (United Kingdom)',1,1,0),(8694,0,108158,'Colonia Suiza','Uruguay','UY','Colonia Suiza (Uruguay)',1,1,0),(8695,0,108159,'Commelle-Vernay','France','FR','Commelle-Vernay (France)',1,1,0),(8696,0,108160,'Concepcion de Buenos Aires','Mexico','MX','Concepcion de Buenos Aires (Mexico)',1,1,0),(8697,0,108161,'Coningsby','United Kingdom','UK','Coningsby (United Kingdom)',1,1,0),(8698,0,108162,'Corindi Beach','Australia','AU','Corindi Beach (Australia)',1,1,0),(8699,0,108163,'Corporario','Spain','ES','Corporario (Spain)',1,1,0),(8700,0,108164,'Corropoli (TE)','Italy','IT','Corropoli (TE) (Italy)',1,1,0),(8701,0,108165,'Court-Saint-Etienne','Belgium','BE','Court-Saint-Etienne (Belgium)',1,1,0),(8702,0,108166,'Couze-et-Saint-Front','France','FR','Couze-et-Saint-Front (France)',1,1,0),(8703,0,108167,'Coyuca de Benitez','Mexico','MX','Coyuca de Benitez (Mexico)',1,1,0),(8704,0,108168,'Crespos','Spain','ES','Crespos (Spain)',1,1,0),(8705,0,108169,'Cretas','Spain','ES','Cretas (Spain)',1,1,0),(8706,0,108170,'Crewkerne','United Kingdom','UK','Crewkerne (United Kingdom)',1,1,0),(8707,0,108171,'Crofton','Canada','CA','Crofton (Canada)',1,1,0),(8708,0,108172,'Crucita','Ecuador','EC','Crucita (Ecuador)',1,1,0),(8709,0,108173,'Crystal Beach','Canada','CA','Crystal Beach (Canada)',1,1,0),(8710,0,108174,'Cua Lo','Vietnam','VN','Cua Lo (Vietnam)',1,1,0),(8711,0,108175,'Cumbaya','Ecuador','EC','Cumbaya (Ecuador)',1,1,0),(8712,0,108176,'Curtarolo','Italy','IT','Curtarolo (Italy)',1,1,0),(8713,0,108177,'Cuzcurrita de Rio Tiron','Spain','ES','Cuzcurrita de Rio Tiron (Spain)',1,1,0),(8714,30741,108178,'Da Nang','Vietnam','VN','Da Nang (Vietnam)',1,1,0),(8715,0,108179,'Dakhovskaya','Russia','RU','Dakhovskaya (Russia)',1,1,0),(8716,0,108180,'Darnius','Spain','ES','Darnius (Spain)',1,1,0),(8717,0,108181,'Dasmarinas','Philippines','PH','Dasmarinas (Philippines)',1,1,0),(8718,0,108182,'Degelis','Canada','CA','Degelis (Canada)',1,1,0),(8719,0,108183,'Dehesa de Cuellar','Spain','ES','Dehesa de Cuellar (Spain)',1,1,0),(8720,0,108184,'Delmiro Gouveia','Brazil','BR','Delmiro Gouveia (Brazil)',1,1,0),(8721,0,108185,'Denman','Australia','AU','Denman (Australia)',1,1,0),(8722,0,108186,'Departement Correze','France','FR','Departement Correze (France)',1,1,0),(8723,0,108187,'D\'Epinay','Mauritius','MU','D\'Epinay (Mauritius)',1,1,0),(8724,0,108188,'Derinkuyu','Turkey','TR','Derinkuyu (Turkey)',1,1,0),(8725,0,108189,'Desa Peken','Indonesia','ID','Desa Peken (Indonesia)',1,1,0),(8726,0,108190,'Descartes','France','FR','Descartes (France)',1,1,0),(8727,0,108191,'Diepenveen','Netherlands','NL','Diepenveen (Netherlands)',1,1,0),(8728,0,108192,'Dimitrowgrad','Bulgaria','BG','Dimitrowgrad (Bulgaria)',1,1,0),(8729,0,108193,'Dniprodserschynsk','Ukraine','UA','Dniprodserschynsk (Ukraine)',1,1,0),(8730,0,108194,'Dobruska','Czech Republic','CZ','Dobruska (Czech Republic)',1,1,0),(8731,7987,108195,'Dodro','Spain','ES','Dodro (Spain)',1,1,0),(8732,0,108196,'Dolbeau-Mistassini','Canada','CA','Dolbeau-Mistassini (Canada)',1,1,0),(8733,0,108197,'Dolholuka','Ukraine','UA','Dolholuka (Ukraine)',1,1,0),(8734,0,108198,'Dolyna','Ukraine','UA','Dolyna (Ukraine)',1,1,0),(8735,0,108199,'Dombai','Russia','RU','Dombai (Russia)',1,1,0),(8736,0,108200,'Don Kaeo','Thailand','TH','Don Kaeo (Thailand)',1,1,0),(8737,0,108201,'Donghai','China','CN','Donghai (China)',1,1,0),(8738,0,108202,'Dongshan Township','Taiwan','TW','Dongshan Township (Taiwan)',1,1,0),(8739,0,108203,'Dorset','Canada','CA','Dorset (Canada)',1,1,0),(8740,0,108204,'Dozule','France','FR','Dozule (France)',1,1,0),(8741,0,108205,'Drobak','Norway','NO','Drobak (Norway)',1,1,0),(8742,0,108206,'Drozdovo','Russia','RU','Drozdovo (Russia)',1,1,0),(8743,0,108207,'Dunchurch','United Kingdom','UK','Dunchurch (United Kingdom)',1,1,0),(8744,0,108208,'Dunham','United Kingdom','UK','Dunham (United Kingdom)',1,1,0),(8745,0,108209,'Dunhampton','United Kingdom','UK','Dunhampton (United Kingdom)',1,1,0),(8746,8343,108210,'Duong Dong','Vietnam','VN','Duong Dong (Vietnam)',1,1,0),(8747,0,108211,'Dussen','Netherlands','NL','Dussen (Netherlands)',1,1,0),(8748,0,108212,'Dymchurch','United Kingdom','UK','Dymchurch (United Kingdom)',1,1,0),(8749,0,108213,'Eastbridge','United Kingdom','UK','Eastbridge (United Kingdom)',1,1,0),(8750,0,108214,'Ebenezer','Australia','AU','Ebenezer (Australia)',1,1,0),(8751,0,108215,'Edington','United Kingdom','UK','Edington (United Kingdom)',1,1,0),(8752,0,108216,'Einruhr','Germany','DE','Einruhr (Germany)',1,1,0),(8753,0,108217,'El Cuervo de Sevilla','Spain','ES','El Cuervo de Sevilla (Spain)',1,1,0),(8754,0,108218,'El-Bawiti','Egypt','EG','El-Bawiti (Egypt)',1,1,0),(8755,0,108219,'Elewijt','Belgium','BE','Elewijt (Belgium)',1,1,0),(8756,0,108220,'El-Tor','Egypt','EG','El-Tor (Egypt)',1,1,0),(8757,0,108221,'Elverdinge','Belgium','BE','Elverdinge (Belgium)',1,1,0),(8758,0,108222,'Ena','Japan','JP','Ena (Japan)',1,1,0),(8759,0,108223,'Enfeh','Lebanon','LB','Enfeh (Lebanon)',1,1,0),(8760,0,108224,'Eniseli','Georgia','GE','Eniseli (Georgia)',1,1,0),(8761,0,108225,'Entracque','Italy','IT','Entracque (Italy)',1,1,0),(8762,0,108226,'Eprave','Belgium','BE','Eprave (Belgium)',1,1,0),(8763,0,108227,'Ereikoussa','Greece','GR','Ereikoussa (Greece)',1,1,0),(8764,0,108228,'Eriste','Spain','ES','Eriste (Spain)',1,1,0),(8765,8895,108229,'Erondegem','Belgium','BE','Erondegem (Belgium)',1,1,0),(8766,0,108230,'Eschenbach in der Oberpfalz','Germany','DE','Eschenbach in der Oberpfalz (Germany)',1,1,0),(8767,0,108231,'Esmans','France','FR','Esmans (France)',1,1,0),(8768,0,108232,'Evisa','France','FR','Evisa (France)',1,1,0),(8769,0,108233,'Exo Gonia','Greece','GR','Exo Gonia (Greece)',1,1,0),(8770,0,108234,'Extremoz','Brazil','BR','Extremoz (Brazil)',1,1,0),(8771,0,108235,'Eynatten','Belgium','BE','Eynatten (Belgium)',1,1,0),(8772,0,108236,'Farhult','Sweden','SE','Farhult (Sweden)',1,1,0),(8773,0,108237,'Fiave','Italy','IT','Fiave (Italy)',1,1,0),(8774,0,108238,'Filicudi','Italy','IT','Filicudi (Italy)',1,1,0),(8775,0,108239,'Filyos','Turkey','TR','Filyos (Turkey)',1,1,0),(8776,0,108240,'Findon','United Kingdom','UK','Findon (United Kingdom)',1,1,0),(8777,0,108241,'Flatow','Poland','PL','Flatow (Poland)',1,1,0),(8778,0,108242,'Florentin-la-Capelle','France','FR','Florentin-la-Capelle (France)',1,1,0),(8779,0,108243,'Fossombrone','Italy','IT','Fossombrone (Italy)',1,1,0),(8780,0,108244,'Foxhol','Netherlands','NL','Foxhol (Netherlands)',1,1,0),(8781,0,108245,'Fuenmayor','Spain','ES','Fuenmayor (Spain)',1,1,0),(8782,0,108246,'Fundacion','Colombia','CO','Fundacion (Colombia)',1,1,0),(8783,0,108247,'Fushe-Kruje','Albania','AL','Fushe-Kruje (Albania)',1,1,0),(8784,0,108248,'Gabriac','France','FR','Gabriac (France)',1,1,0),(8785,10222,108250,'Gavoi','Italy','IT','Gavoi (Italy)',1,1,0),(8786,10246,108251,'Geisei','Japan','JP','Geisei (Japan)',1,1,0),(8787,0,108252,'General Cepeda','Mexico','MX','General Cepeda (Mexico)',1,1,0),(8788,0,108253,'Gherla','Romania','RO','Gherla (Romania)',1,1,0),(8789,0,108254,'Glen Forrest','Australia','AU','Glen Forrest (Australia)',1,1,0),(8790,0,108255,'Gmund-Bahnhof','Czech Republic','CZ','Gmund-Bahnhof (Czech Republic)',1,1,0),(8791,0,108257,'Gobergiske','Lithuania','LT','Gobergiske (Lithuania)',1,1,0),(8792,0,108258,'Goiana','Brazil','BR','Goiana (Brazil)',1,1,0),(8793,0,108259,'Golan Beach','Israel','IL','Golan Beach (Israel)',1,1,0),(8794,0,108260,'Gorna Orjachowiza','Bulgaria','BG','Gorna Orjachowiza (Bulgaria)',1,1,0),(8795,0,108261,'Goro','Italy','IT','Goro (Italy)',1,1,0),(8796,0,108262,'Gosport','United Kingdom','UK','Gosport (United Kingdom)',1,1,0),(8797,0,108263,'Gostingen','Poland','PL','Gostingen (Poland)',1,1,0),(8798,10730,108264,'Gotemba','Japan','JP','Gotemba (Japan)',1,1,0),(8799,0,108266,'Graft-De Rijp','Netherlands','NL','Graft-De Rijp (Netherlands)',1,1,0),(8800,0,108267,'Graiguenamanagh','Ireland','IE','Graiguenamanagh (Ireland)',1,1,0),(8801,0,108268,'Grandvillers','France','FR','Grandvillers (France)',1,1,0),(8802,0,108269,'Gravatal','Brazil','BR','Gravatal (Brazil)',1,1,0),(8803,0,108270,'Grebow','Poland','PL','Grebow (Poland)',1,1,0),(8804,0,108271,'Grenville-sur-la-Rouge','Canada','CA','Grenville-sur-la-Rouge (Canada)',1,1,0),(8805,0,108272,'Grizzana Morandi','Italy','IT','Grizzana Morandi (Italy)',1,1,0),(8806,0,108273,'Grodzisk Wielkopolski','Poland','PL','Grodzisk Wielkopolski (Poland)',1,1,0),(8807,11034,108274,'Grosio','Italy','IT','Grosio (Italy)',1,1,0),(8808,0,108275,'Guaduas','Colombia','CO','Guaduas (Colombia)',1,1,0),(8809,0,108276,'Gudauta','Georgia','GE','Gudauta (Georgia)',1,1,0),(8810,11191,108277,'Guizhou','China','CN','Guizhou (China)',1,1,0),(8811,0,108278,'Gunnarsbyn','Sweden','SE','Gunnarsbyn (Sweden)',1,1,0),(8812,31091,108279,'Ha Tien','Vietnam','VN','Ha Tien (Vietnam)',1,1,0),(8813,0,108280,'Haad Rin','Thailand','TH','Haad Rin (Thailand)',1,1,0),(8814,0,108281,'Haiya','Thailand','TH','Haiya (Thailand)',1,1,0),(8815,0,108282,'Ham Thuan Nam','Vietnam','VN','Ham Thuan Nam (Vietnam)',1,1,0),(8816,0,108283,'Hammanskraal','South Africa','ZA','Hammanskraal (South Africa)',1,1,0),(8817,0,108284,'Hammarstrand','Sweden','SE','Hammarstrand (Sweden)',1,1,0),(8818,0,108285,'Hammenhog','Sweden','SE','Hammenhog (Sweden)',1,1,0),(8819,0,108286,'Handel','Netherlands','NL','Handel (Netherlands)',1,1,0),(8820,11490,108287,'Hanover','Canada','CA','Hanover (Canada)',1,1,0),(8821,0,108288,'Harkingen','Switzerland','CH','Harkingen (Switzerland)',1,1,0),(8822,0,108289,'Hastings Point','Australia','AU','Hastings Point (Australia)',1,1,0),(8823,0,108290,'Hatton','Sri Lanka','LK','Hatton (Sri Lanka)',1,1,0),(8824,0,108291,'Havdhem','Sweden','SE','Havdhem (Sweden)',1,1,0),(8825,0,108292,'Hawkesbury','Australia','AU','Hawkesbury (Australia)',1,1,0),(8826,0,108293,'Higashiomi','Japan','JP','Higashiomi (Japan)',1,1,0),(8827,0,108295,'Hilpankandura','Sri Lanka','LK','Hilpankandura (Sri Lanka)',1,1,0),(8828,0,108296,'Hindas','Sweden','SE','Hindas (Sweden)',1,1,0),(8829,0,108297,'Hinton St Mary','United Kingdom','UK','Hinton St Mary (United Kingdom)',1,1,0),(8830,0,108298,'Hoa Binh','Vietnam','VN','Hoa Binh (Vietnam)',1,1,0),(8831,0,108299,'Hoima','Uganda','UG','Hoima (Uganda)',1,1,0),(8832,0,108300,'Holcikovce','Slovakia','SK','Holcikovce (Slovakia)',1,1,0),(8833,0,108301,'Holeby','Denmark','DK','Holeby (Denmark)',1,1,0),(8834,0,108302,'Honda','Colombia','CO','Honda (Colombia)',1,1,0),(8835,0,108303,'Hope Cove','United Kingdom','UK','Hope Cove (United Kingdom)',1,1,0),(8836,0,108304,'Hora','Ukraine','UA','Hora (Ukraine)',1,1,0),(8837,0,108305,'Horbow-Kolonia','Poland','PL','Horbow-Kolonia (Poland)',1,1,0),(8838,0,108306,'Horodenka','Ukraine','UA','Horodenka (Ukraine)',1,1,0),(8839,0,108307,'Horseman\'s Green','United Kingdom','UK','Horseman\'s Green (United Kingdom)',1,1,0),(8840,0,108308,'Horvatsko','Croatia','HR','Horvatsko (Croatia)',1,1,0),(8841,0,108309,'Horve','Denmark','DK','Horve (Denmark)',1,1,0),(8842,0,108310,'Hostalkova','Czech Republic','CZ','Hostalkova (Czech Republic)',1,1,0),(8843,12389,108311,'Huaian','China','CN','Huaian (China)',1,1,0),(8844,12398,108312,'Huangshan','China','CN','Huangshan (China)',1,1,0),(8845,12424,108313,'Huejotzingo','Mexico','MX','Huejotzingo (Mexico)',1,1,0),(8846,0,108314,'Hvammur','Iceland','IS','Hvammur (Iceland)',1,1,0),(8847,0,108315,'Ikorodu','Nigeria','NG','Ikorodu (Nigeria)',1,1,0),(8848,0,108316,'Ilchester','United Kingdom','UK','Ilchester (United Kingdom)',1,1,0),(8849,0,108317,'Ilha de Boipeba','Brazil','BR','Ilha de Boipeba (Brazil)',1,1,0),(8850,0,108318,'Ilidza','Bosnia and Herzegowina','BA','Ilidza (Bosnia and Herzegowina)',1,1,0),(8851,0,108319,'Illitschiwsk','Ukraine','UA','Illitschiwsk (Ukraine)',1,1,0),(8852,12665,108320,'Imari','Japan','JP','Imari (Japan)',1,1,0),(8853,0,108321,'Imouzzer Kandar','Morocco','MA','Imouzzer Kandar (Morocco)',1,1,0),(8854,12722,108322,'Inglewood','Australia','AU','Inglewood (Australia)',1,1,0),(8855,0,108323,'Insel Poel','Germany','DE','Insel Poel (Germany)',1,1,0),(8856,0,108324,'Ironbridge','United Kingdom','UK','Ironbridge (United Kingdom)',1,1,0),(8857,12823,108325,'Iroquois Falls','Canada','CA','Iroquois Falls (Canada)',1,1,0),(8858,0,108326,'Iscar','Spain','ES','Iscar (Spain)',1,1,0),(8859,0,108327,'Isle of Raasay','United Kingdom','UK','Isle of Raasay (United Kingdom)',1,1,0),(8860,0,108328,'Islikon','Switzerland','CH','Islikon (Switzerland)',1,1,0),(8861,0,108329,'Isone','Switzerland','CH','Isone (Switzerland)',1,1,0),(8862,0,108330,'Itaobim','Brazil','BR','Itaobim (Brazil)',1,1,0),(8863,0,108331,'Itapeva','Brazil','BR','Itapeva (Brazil)',1,1,0),(8864,0,108332,'Itatiaia','Brazil','BR','Itatiaia (Brazil)',1,1,0),(8865,0,108333,'Ixtlan del Rio','Mexico','MX','Ixtlan del Rio (Mexico)',1,1,0),(8866,12977,108334,'Jacarei','Brazil','BR','Jacarei (Brazil)',1,1,0),(8867,0,108335,'Jacarezinho','Brazil','BR','Jacarezinho (Brazil)',1,1,0),(8868,0,108336,'Jama','Ecuador','EC','Jama (Ecuador)',1,1,0),(8869,0,108337,'Jardin','Colombia','CO','Jardin (Colombia)',1,1,0),(8870,0,108338,'Jarnac','France','FR','Jarnac (France)',1,1,0),(8871,0,108339,'Jarvamaa','Estonia','EE','Jarvamaa (Estonia)',1,1,0),(8872,0,108340,'Jattendal','Sweden','SE','Jattendal (Sweden)',1,1,0),(8873,0,108341,'Jelcz-Laskowice','Poland','PL','Jelcz-Laskowice (Poland)',1,1,0),(8874,0,108342,'Jeongseon','South Korea','KR','Jeongseon (South Korea)',1,1,0),(8875,0,108343,'Jeongsun-Kun','South Korea','KR','Jeongsun-Kun (South Korea)',1,1,0),(8876,0,108344,'Jimo','China','CN','Jimo (China)',1,1,0),(8877,0,108345,'Jiquilpan de Juarez','Mexico','MX','Jiquilpan de Juarez (Mexico)',1,1,0),(8878,0,108346,'Judetul Alba','Romania','RO','Judetul Alba (Romania)',1,1,0),(8879,0,108347,'Juigne-sur-Loire','France','FR','Juigne-sur-Loire (France)',1,1,0),(8880,0,108348,'Kadugannawa','Sri Lanka','LK','Kadugannawa (Sri Lanka)',1,1,0),(8881,0,108349,'Kahoku','Japan','JP','Kahoku (Japan)',1,1,0),(8882,0,108350,'Kaina','Estonia','EE','Kaina (Estonia)',1,1,0),(8883,0,108351,'Kaizuka','Japan','JP','Kaizuka (Japan)',1,1,0),(8884,0,108352,'Kalmunai','Sri Lanka','LK','Kalmunai (Sri Lanka)',1,1,0),(8885,0,108353,'Kambja','Estonia','EE','Kambja (Estonia)',1,1,0),(8886,0,108354,'Kamin in Westpreu?en','Poland','PL','Kamin in Westpreu?en (Poland)',1,1,0),(8887,0,108355,'Kamouraska','Canada','CA','Kamouraska (Canada)',1,1,0),(8888,0,108356,'Kampung Gajah','Malaysia','MY','Kampung Gajah (Malaysia)',1,1,0),(8889,13509,108357,'Kaniva','Australia','AU','Kaniva (Australia)',1,1,0),(8890,0,108358,'Kapar','Malaysia','MY','Kapar (Malaysia)',1,1,0),(8891,0,108359,'Karimunjawa','Indonesia','ID','Karimunjawa (Indonesia)',1,1,0),(8892,0,108360,'Karyes','Greece','GR','Karyes (Greece)',1,1,0),(8893,0,108362,'Kato Platres','Cyprus','CY','Kato Platres (Cyprus)',1,1,0),(8894,0,108363,'Kato Poria','Greece','GR','Kato Poria (Greece)',1,1,0),(8895,0,108364,'Kawachinagano','Japan','JP','Kawachinagano (Japan)',1,1,0),(8896,0,108365,'Kayena','Australia','AU','Kayena (Australia)',1,1,0),(8897,0,108366,'Kedisan','Indonesia','ID','Kedisan (Indonesia)',1,1,0),(8898,0,108367,'Kerava','Finland','FI','Kerava (Finland)',1,1,0),(8899,0,108368,'Ketewel','Indonesia','ID','Ketewel (Indonesia)',1,1,0),(8900,0,108370,'Kimmeria','Greece','GR','Kimmeria (Greece)',1,1,0),(8901,0,108371,'Kingsdown','United Kingdom','UK','Kingsdown (United Kingdom)',1,1,0),(8902,0,108372,'Kiribathgoda','Sri Lanka','LK','Kiribathgoda (Sri Lanka)',1,1,0),(8903,0,108373,'Kirillow','Russia','RU','Kirillow (Russia)',1,1,0),(8904,0,108374,'Kirke Saby','Denmark','DK','Kirke Saby (Denmark)',1,1,0),(8905,0,108375,'Kirtlington','United Kingdom','UK','Kirtlington (United Kingdom)',1,1,0),(8906,0,108376,'Kirton in lindsey','United Kingdom','UK','Kirton in lindsey (United Kingdom)',1,1,0),(8907,0,108377,'Kobayat','Lebanon','LB','Kobayat (Lebanon)',1,1,0),(8908,0,108378,'Koh Sarai','Thailand','TH','Koh Sarai (Thailand)',1,1,0),(8909,0,108379,'Kokorin','Czech Republic','CZ','Kokorin (Czech Republic)',1,1,0),(8910,0,108380,'Kokshaysk','Russia','RU','Kokshaysk (Russia)',1,1,0),(8911,0,108381,'Kosai','Japan','JP','Kosai (Japan)',1,1,0),(8912,0,108382,'Kostomukscha','Finland','FI','Kostomukscha (Finland)',1,1,0),(8913,0,108383,'Kostomuksha','Russia','RU','Kostomuksha (Russia)',1,1,0),(8914,0,108384,'Kostryno','Ukraine','UA','Kostryno (Ukraine)',1,1,0),(8915,0,108385,'Kotelniki','Russia','RU','Kotelniki (Russia)',1,1,0),(8916,0,108386,'Krasno','Croatia','HR','Krasno (Croatia)',1,1,0),(8917,0,108387,'Kuala Kangsar','Malaysia','MY','Kuala Kangsar (Malaysia)',1,1,0),(8918,0,108388,'Kuklen','Bulgaria','BG','Kuklen (Bulgaria)',1,1,0),(8919,0,108389,'Kunstat','Czech Republic','CZ','Kunstat (Czech Republic)',1,1,0),(8920,0,108390,'Kuriyama','Japan','JP','Kuriyama (Japan)',1,1,0),(8921,0,108391,'Kuyeda','Russia','RU','Kuyeda (Russia)',1,1,0),(8922,0,108392,'La Bana','Spain','ES','La Bana (Spain)',1,1,0),(8923,0,108393,'La Martre','Canada','CA','La Martre (Canada)',1,1,0),(8924,31433,108394,'La Pocatiere','Canada','CA','La Pocatiere (Canada)',1,1,0),(8925,0,108395,'La Primavera','Colombia','CO','La Primavera (Colombia)',1,1,0),(8926,0,108396,'La Vega',NULL,NULL,'La Vega ()',1,1,0),(8927,0,108397,'La Ventana','Mexico','MX','La Ventana (Mexico)',1,1,0),(8928,0,108398,'Lacombe','Canada','CA','Lacombe (Canada)',1,1,0),(8929,14738,108399,'Ladner','Canada','CA','Ladner (Canada)',1,1,0),(8930,0,108400,'Lago Lanalhue','Chile','CL','Lago Lanalhue (Chile)',1,1,0),(8931,0,108401,'Laguna','Australia','AU','Laguna (Australia)',1,1,0),(8932,0,108402,'Pozarevac','Serbia','RS','Pozarevac (Serbia)',1,1,0),(8933,0,108403,'Prafektur Kagawa','Japan','JP','Prafektur Kagawa (Japan)',1,1,0),(8934,0,108404,'Praia de Mira','Portugal','PT','Praia de Mira (Portugal)',1,1,0),(8935,0,108405,'Prali','Italy','IT','Prali (Italy)',1,1,0),(8936,0,108406,'Praya','Indonesia','ID','Praya (Indonesia)',1,1,0),(8937,0,108407,'Primda','Czech Republic','CZ','Primda (Czech Republic)',1,1,0),(8938,0,108408,'Priolo Gargallo','Italy','IT','Priolo Gargallo (Italy)',1,1,0),(8939,0,108409,'Propiac','France','FR','Propiac (France)',1,1,0),(8940,0,108410,'Pryyatne Svidannya','Ukraine','UA','Pryyatne Svidannya (Ukraine)',1,1,0),(8941,0,108411,'Przemet','Poland','PL','Przemet (Poland)',1,1,0),(8942,0,108412,'Psebai','Russia','RU','Psebai (Russia)',1,1,0),(8943,0,108413,'Puertas','Spain','ES','Puertas (Spain)',1,1,0),(8944,0,108414,'Puerto Lopez','Colombia','CO','Puerto Lopez (Colombia)',1,1,0),(8945,0,108415,'Puerto Salgar','Colombia','CO','Puerto Salgar (Colombia)',1,1,0),(8946,0,108416,'Pushkino','Russia','RU','Pushkino (Russia)',1,1,0),(8947,0,108417,'Puurs','Belgium','BE','Puurs (Belgium)',1,1,0),(8948,0,108418,'Quintanar de la Sierra','Spain','ES','Quintanar de la Sierra (Spain)',1,1,0),(8949,0,108419,'Rada','Sweden','SE','Rada (Sweden)',1,1,0),(8950,0,108420,'Radhime','Albania','AL','Radhime (Albania)',1,1,0),(8951,0,108421,'Rakhiv','Ukraine','UA','Rakhiv (Ukraine)',1,1,0),(8952,0,108422,'Rantau Panjang','Malaysia','MY','Rantau Panjang (Malaysia)',1,1,0),(8953,0,108423,'Ranua','Finland','FI','Ranua (Finland)',1,1,0),(8954,0,108424,'Rasmussen','Australia','AU','Rasmussen (Australia)',1,1,0),(8955,0,108425,'Ravenstonedale','United Kingdom','UK','Ravenstonedale (United Kingdom)',1,1,0),(8956,0,108426,'Ravno Pole','Bulgaria','BG','Ravno Pole (Bulgaria)',1,1,0),(8957,0,108427,'Redhead','Australia','AU','Redhead (Australia)',1,1,0),(8958,0,108428,'Reiderland','Netherlands','NL','Reiderland (Netherlands)',1,1,0),(8959,0,108429,'Repton','Australia','AU','Repton (Australia)',1,1,0),(8960,0,108430,'Resiutta','Italy','IT','Resiutta (Italy)',1,1,0),(8961,0,108431,'Rezovo','Bulgaria','BG','Rezovo (Bulgaria)',1,1,0),(8962,0,108432,'Riisa','Estonia','EE','Riisa (Estonia)',1,1,0),(8963,0,108433,'Rio Lagartos','Mexico','MX','Rio Lagartos (Mexico)',1,1,0),(8964,0,108434,'Rio Segundo','Costa Rica','CR','Rio Segundo (Costa Rica)',1,1,0),(8965,0,108435,'Rissani','Morocco','MA','Rissani (Morocco)',1,1,0),(8966,0,108436,'Rivera','Colombia','CO','Rivera (Colombia)',1,1,0),(8967,0,108437,'Riviere des Anguilles','Mauritius','MU','Riviere des Anguilles (Mauritius)',1,1,0),(8968,0,108438,'Rochester','Australia','AU','Rochester (Australia)',1,1,0),(8969,0,108439,'Rodia','Greece','GR','Rodia (Greece)',1,1,0),(8970,0,108440,'Rodopoli','Greece','GR','Rodopoli (Greece)',1,1,0),(8971,0,108441,'Roge','Portugal','PT','Roge (Portugal)',1,1,0),(8972,0,108442,'Rolvenden','United Kingdom','UK','Rolvenden (United Kingdom)',1,1,0),(8973,0,108443,'Roppenheim','France','FR','Roppenheim (France)',1,1,0),(8974,0,108444,'Rosa Glen','Australia','AU','Rosa Glen (Australia)',1,1,0),(8975,0,108445,'Rosario Islands','Colombia','CO','Rosario Islands (Colombia)',1,1,0),(8976,0,108446,'Rosenau','Slovakia','SK','Rosenau (Slovakia)',1,1,0),(8977,0,108447,'Rosendal','Norway','NO','Rosendal (Norway)',1,1,0),(8978,0,108448,'Roslawl','Russia','RU','Roslawl (Russia)',1,1,0),(8979,0,108449,'Rosporden','France','FR','Rosporden (France)',1,1,0),(8980,0,108450,'Rothesay','United Kingdom','UK','Rothesay (United Kingdom)',1,1,0),(8981,0,108451,'Roxton Falls','Canada','CA','Roxton Falls (Canada)',1,1,0),(8982,0,108452,'Ruardean','United Kingdom','UK','Ruardean (United Kingdom)',1,1,0),(8983,0,108453,'Rudny','Kazakhstan','KZ','Rudny (Kazakhstan)',1,1,0),(8984,0,108454,'Runanga','New Zealand','NZ','Runanga (New Zealand)',1,1,0),(8985,0,108455,'Rupakot','Nepal','NP','Rupakot (Nepal)',1,1,0),(8986,0,108456,'Russenes','Norway','NO','Russenes (Norway)',1,1,0),(8987,23504,108457,'Rusutsu','Japan','JP','Rusutsu (Japan)',1,1,0),(8988,0,108458,'Ruzhou','China','CN','Ruzhou (China)',1,1,0),(8989,0,108459,'Rytwiany','Poland','PL','Rytwiany (Poland)',1,1,0),(8990,0,108460,'Sadove','Ukraine','UA','Sadove (Ukraine)',1,1,0),(8991,23616,108461,'Sagunto','Spain','ES','Sagunto (Spain)',1,1,0),(8992,0,108462,'Sahuayo','Romania','RO','Sahuayo (Romania)',1,1,0),(8993,0,108463,'Saint Andre de Bueges','France','FR','Saint Andre de Bueges (France)',1,1,0),(8994,0,108464,'Saint Stephen','Canada','CA','Saint Stephen (Canada)',1,1,0),(8995,0,108465,'Saint-Benoit-sur-Seine','France','FR','Saint-Benoit-sur-Seine (France)',1,1,0),(8996,0,108466,'Sainte Croix En Plaine','France','FR','Sainte Croix En Plaine (France)',1,1,0),(8997,0,108467,'Sainte-Anne-de-Sabrevois','Canada','CA','Sainte-Anne-de-Sabrevois (Canada)',1,1,0),(8998,23733,108468,'Sainte-Julie','Canada','CA','Sainte-Julie (Canada)',1,1,0),(8999,0,108469,'Saintes','Belgium','BE','Saintes (Belgium)',1,1,0),(9000,0,108470,'Saint-Genis-de-Saintonge','France','FR','Saint-Genis-de-Saintonge (France)',1,1,0),(9001,0,108471,'Saint-Hilarion','Canada','CA','Saint-Hilarion (Canada)',1,1,0),(9002,0,108472,'Saint-Julien-du-Sault','France','FR','Saint-Julien-du-Sault (France)',1,1,0),(9003,23850,108473,'Saint-Martin-d\'Ardeche','France','FR','Saint-Martin-d\'Ardeche (France)',1,1,0),(9004,0,108474,'Saint-Privat-d\'Allier','France','FR','Saint-Privat-d\'Allier (France)',1,1,0),(9005,0,108475,'Salies-du-Salat','France','FR','Salies-du-Salat (France)',1,1,0),(9006,0,108476,'Sampang','Indonesia','ID','Sampang (Indonesia)',1,1,0),(9007,0,108477,'Sampford Peverell','United Kingdom','UK','Sampford Peverell (United Kingdom)',1,1,0),(9008,0,108478,'San Agustin','Colombia','CO','San Agustin (Colombia)',1,1,0),(9009,0,108479,'San Antonio Palopo','Guatemala','GT','San Antonio Palopo (Guatemala)',1,1,0),(9010,0,108480,'San Cristobal de La Laguna','Spain','ES','San Cristobal de La Laguna (Spain)',1,1,0),(9011,0,108481,'San Fedele Intelvi','Italy','IT','San Fedele Intelvi (Italy)',1,1,0),(9012,0,108482,'San Felipe','Chile','CL','San Felipe (Chile)',1,1,0),(9013,32991,108483,'San Fior di Sopra','Italy','IT','San Fior di Sopra (Italy)',1,1,0),(9014,0,108484,'San Gerardo de Rivas','Costa Rica','CR','San Gerardo de Rivas (Costa Rica)',1,1,0),(9015,0,108485,'San Joaquin','Mexico','MX','San Joaquin (Mexico)',1,1,0),(9016,0,108486,'San Jose Pinula','Guatemala','GT','San Jose Pinula (Guatemala)',1,1,0),(9017,0,108487,'San Mamede de Carnota','Spain','ES','San Mamede de Carnota (Spain)',1,1,0),(9018,0,108488,'San Marcos','Nicaragua','NI','San Marcos (Nicaragua)',1,1,0),(9019,0,108489,'San Martin Zapotitlan','Guatemala','GT','San Martin Zapotitlan (Guatemala)',1,1,0),(9020,0,108490,'San Marzano sul Sarno','Italy','IT','San Marzano sul Sarno (Italy)',1,1,0),(9021,0,108491,'San Nicolas de Tolentino','Spain','ES','San Nicolas de Tolentino (Spain)',1,1,0),(9022,0,108492,'San Pedro La Laguna','Guatemala','GT','San Pedro La Laguna (Guatemala)',1,1,0),(9023,0,108493,'San Polo d’Enza','Italy','IT','San Polo d’Enza (Italy)',1,1,0),(9024,0,108494,'Sankt Georgen','Romania','RO','Sankt Georgen (Romania)',1,1,0),(9025,0,108495,'Sant Sadurni d\'Anoia','Spain','ES','Sant Sadurni d\'Anoia (Spain)',1,1,0),(9026,0,108496,'Santa Clara','Costa Rica','CR','Santa Clara (Costa Rica)',1,1,0),(9027,0,108497,'Santa Croce sull\'Arno','Italy','IT','Santa Croce sull\'Arno (Italy)',1,1,0),(9028,0,108498,'Santa Maria de Sacos','Spain','ES','Santa Maria de Sacos (Spain)',1,1,0),(9029,0,108499,'Santa Rosa de Calamuchita','Argentina','AR','Santa Rosa de Calamuchita (Argentina)',1,1,0),(9030,0,108500,'Santaliestra','Spain','ES','Santaliestra (Spain)',1,1,0),(9031,0,108501,'Sant\'Angelo in Vado','Italy','IT','Sant\'Angelo in Vado (Italy)',1,1,0),(9032,24238,108502,'Santenay','France','FR','Santenay (France)',1,1,0),(9033,0,108503,'Santo Domingo de los Tsachilas','Ecuador','EC','Santo Domingo de los Tsachilas (Ecuador)',1,1,0),(9034,0,108504,'Sarnaki','Poland','PL','Sarnaki (Poland)',1,1,0),(9035,0,108505,'Saslauje','Belarus','BY','Saslauje (Belarus)',1,1,0),(9036,0,108506,'Sasnava','Lithuania','LT','Sasnava (Lithuania)',1,1,0),(9037,0,108507,'Save','Sweden','SE','Save (Sweden)',1,1,0),(9038,0,108508,'Savenay','France','FR','Savenay (France)',1,1,0),(9039,0,108509,'Sayabec','Canada','CA','Sayabec (Canada)',1,1,0),(9040,0,108510,'Scerne','Italy','IT','Scerne (Italy)',1,1,0),(9041,0,108511,'Schauren','Germany','DE','Schauren (Germany)',1,1,0),(9042,0,108512,'Schinveld','Netherlands','NL','Schinveld (Netherlands)',1,1,0),(9043,0,108513,'Schlehen','Poland','PL','Schlehen (Poland)',1,1,0),(9044,0,108514,'Schonberg','Poland','PL','Schonberg (Poland)',1,1,0),(9045,0,108515,'Schtscholkine','Ukraine','UA','Schtscholkine (Ukraine)',1,1,0),(9046,0,108516,'Schukowski','Russia','RU','Schukowski (Russia)',1,1,0),(9047,0,108517,'Schwarzenbach am Wald','Germany','DE','Schwarzenbach am Wald (Germany)',1,1,0),(9048,0,108518,'Seal Rocks','Australia','AU','Seal Rocks (Australia)',1,1,0),(9049,24692,108519,'Seberang Jaya','Malaysia','MY','Seberang Jaya (Malaysia)',1,1,0),(9050,0,108520,'Sedlice','Czech Republic','CZ','Sedlice (Czech Republic)',1,1,0),(9051,0,108521,'See Bergsjon','Sweden','SE','See Bergsjon (Sweden)',1,1,0),(9052,0,108522,'Seelands','Australia','AU','Seelands (Australia)',1,1,0),(9053,0,108523,'Segny','France','FR','Segny (France)',1,1,0),(9054,0,108524,'Selca','Croatia','HR','Selca (Croatia)',1,1,0),(9055,0,108525,'Selje','Norway','NO','Selje (Norway)',1,1,0),(9056,0,108526,'Sella Giudicarie','Italy','IT','Sella Giudicarie (Italy)',1,1,0),(9057,0,108527,'Seltschan','Czech Republic','CZ','Seltschan (Czech Republic)',1,1,0),(9058,0,108528,'Sempach','Switzerland','CH','Sempach (Switzerland)',1,1,0),(9059,0,108529,'Sentjanz pri Dravogradu','Slovenia','SI','Sentjanz pri Dravogradu (Slovenia)',1,1,0),(9060,0,108530,'Seririt','Indonesia','ID','Seririt (Indonesia)',1,1,0),(9061,0,108531,'Sevares','Spain','ES','Sevares (Spain)',1,1,0),(9062,0,108533,'Shijiangzhuang','China','CN','Shijiangzhuang (China)',1,1,0),(9063,0,108534,'Shikokuchuo','Japan','JP','Shikokuchuo (Japan)',1,1,0),(9064,0,108535,'Shoalhaven Heads','Australia','AU','Shoalhaven Heads (Australia)',1,1,0),(9065,0,108536,'Shypyntsi','Ukraine','UA','Shypyntsi (Ukraine)',1,1,0),(9066,0,108537,'Sidi Abdallah Ghiat','Morocco','MA','Sidi Abdallah Ghiat (Morocco)',1,1,0),(9067,0,108538,'Sierra de los padres','Argentina','AR','Sierra de los padres (Argentina)',1,1,0),(9068,0,108539,'Sigingstone','United Kingdom','UK','Sigingstone (United Kingdom)',1,1,0),(9069,25214,108540,'Sikao','Thailand','TH','Sikao (Thailand)',1,1,0),(9070,0,108541,'Simonsbath','United Kingdom','UK','Simonsbath (United Kingdom)',1,1,0),(9071,0,108542,'Siping','China','CN','Siping (China)',1,1,0),(9072,0,108543,'Sirmione-Lugana','Italy','IT','Sirmione-Lugana (Italy)',1,1,0),(9073,0,108544,'Sitkowka-Nowiny','Poland','PL','Sitkowka-Nowiny (Poland)',1,1,0),(9074,0,108545,'Skarbimierz','Poland','PL','Skarbimierz (Poland)',1,1,0),(9075,0,108546,'Skarhamn','Sweden','SE','Skarhamn (Sweden)',1,1,0),(9076,0,108547,'Skivarp','Sweden','SE','Skivarp (Sweden)',1,1,0),(9077,0,108548,'Slite','Sweden','SE','Slite (Sweden)',1,1,0),(9078,0,108549,'Smoky Lake','Canada','CA','Smoky Lake (Canada)',1,1,0),(9079,0,108550,'Snamensk','Russia','RU','Snamensk (Russia)',1,1,0),(9080,0,108551,'Snasa','Norway','NO','Snasa (Norway)',1,1,0),(9081,0,108552,'Sointula','Canada','CA','Sointula (Canada)',1,1,0),(9082,0,108553,'Sojuela','Spain','ES','Sojuela (Spain)',1,1,0),(9083,25600,108554,'Solola','Guatemala','GT','Solola (Guatemala)',1,1,0),(9084,0,108555,'Solowezki-Inseln','Russia','RU','Solowezki-Inseln (Russia)',1,1,0),(9085,0,108556,'Somerville','Canada','CA','Somerville (Canada)',1,1,0),(9086,0,108557,'Sor-Fron','Norway','NO','Sor-Fron (Norway)',1,1,0),(9087,0,108558,'Sorreisa','Norway','NO','Sorreisa (Norway)',1,1,0),(9088,0,108559,'Sorrento','Canada','CA','Sorrento (Canada)',1,1,0),(9089,0,108560,'Sorstraumen','Norway','NO','Sorstraumen (Norway)',1,1,0),(9090,0,108561,'Sottomarina di Chioggia','Italy','IT','Sottomarina di Chioggia (Italy)',1,1,0),(9091,0,108562,'Soumagne','Belgium','BE','Soumagne (Belgium)',1,1,0),(9092,0,108563,'South Cockerington','United Kingdom','UK','South Cockerington (United Kingdom)',1,1,0),(9093,0,108564,'Stana de Vale','Romania','RO','Stana de Vale (Romania)',1,1,0),(9094,25985,108565,'Stanhope','Canada','CA','Stanhope (Canada)',1,1,0),(9095,0,108566,'Stary Oskol','Russia','RU','Stary Oskol (Russia)',1,1,0),(9096,0,108567,'Stausee Slapy','Czech Republic','CZ','Stausee Slapy (Czech Republic)',1,1,0),(9097,0,108568,'Stebbing','United Kingdom','UK','Stebbing (United Kingdom)',1,1,0),(9098,0,108569,'Steimbke','Germany','DE','Steimbke (Germany)',1,1,0),(9099,0,108570,'Steinegg','Italy','IT','Steinegg (Italy)',1,1,0),(9100,0,108571,'Stilfser Joch','Italy','IT','Stilfser Joch (Italy)',1,1,0),(9101,0,108573,'Stopnica','Poland','PL','Stopnica (Poland)',1,1,0),(9102,0,108574,'Store Heddinge','Denmark','DK','Store Heddinge (Denmark)',1,1,0),(9103,0,108575,'Strasburg in Westpreu?en','Poland','PL','Strasburg in Westpreu?en (Poland)',1,1,0),(9104,0,108576,'Subic','Philippines','PH','Subic (Philippines)',1,1,0),(9105,0,108577,'Suipacha','Argentina','AR','Suipacha (Argentina)',1,1,0),(9106,0,108578,'Sukoharjo','Indonesia','ID','Sukoharjo (Indonesia)',1,1,0),(9107,0,108579,'Suncheon','South Korea','KR','Suncheon (South Korea)',1,1,0),(9108,0,108580,'Suze - la - Rousse','France','FR','Suze - la - Rousse (France)',1,1,0),(9109,0,108581,'Suzzara','Italy','IT','Suzzara (Italy)',1,1,0),(9110,0,108582,'Svenstrup','Denmark','DK','Svenstrup (Denmark)',1,1,0),(9111,0,108583,'Syrin','Poland','PL','Syrin (Poland)',1,1,0),(9112,0,108584,'Tabio','Colombia','CO','Tabio (Colombia)',1,1,0),(9113,0,108585,'Taboao da Serra','Brazil','BR','Taboao da Serra (Brazil)',1,1,0),(9114,0,108586,'Talayuelas','Spain','ES','Talayuelas (Spain)',1,1,0),(9115,0,108587,'Tam Ky','Vietnam','VN','Tam Ky (Vietnam)',1,1,0),(9116,0,108588,'Tangkou','China','CN','Tangkou (China)',1,1,0),(9117,0,108589,'Tanjung Balai','Indonesia','ID','Tanjung Balai (Indonesia)',1,1,0),(9118,0,108590,'Tankavaara','Finland','FI','Tankavaara (Finland)',1,1,0),(9119,0,108591,'Tan-Tan','Morocco','MA','Tan-Tan (Morocco)',1,1,0),(9120,0,108592,'Tashtagol','Russia','RU','Tashtagol (Russia)',1,1,0),(9121,26897,108593,'Taunggyi','Myanmar','MM','Taunggyi (Myanmar)',1,1,0),(9122,0,108594,'Tauste','Spain','ES','Tauste (Spain)',1,1,0),(9123,26903,108595,'Tavagnacco','Italy','IT','Tavagnacco (Italy)',1,1,0),(9124,0,108596,'Tecoman','Mexico','MX','Tecoman (Mexico)',1,1,0),(9125,0,108597,'Tecozautla','Mexico','MX','Tecozautla (Mexico)',1,1,0),(9126,0,108598,'Tehovec','Czech Republic','CZ','Tehovec (Czech Republic)',1,1,0),(9127,0,108599,'Temirtau','Kazakhstan','KZ','Temirtau (Kazakhstan)',1,1,0),(9128,0,108600,'Temuka','New Zealand','NZ','Temuka (New Zealand)',1,1,0),(9129,0,108601,'Tenggarong','Indonesia','ID','Tenggarong (Indonesia)',1,1,0),(9130,27027,108602,'Tenom','Malaysia','MY','Tenom (Malaysia)',1,1,0),(9131,0,108603,'Termal','Turkey','TR','Termal (Turkey)',1,1,0),(9132,0,108604,'Terralba','Italy','IT','Terralba (Italy)',1,1,0),(9133,0,108605,'The Hok','Indonesia','ID','The Hok (Indonesia)',1,1,0),(9134,0,108606,'The Rock','Australia','AU','The Rock (Australia)',1,1,0),(9135,0,108607,'Thorame-Haute','France','FR','Thorame-Haute (France)',1,1,0),(9136,0,108608,'Tigkaki','Greece','GR','Tigkaki (Greece)',1,1,0),(9137,0,108609,'Tiliktino','Russia','RU','Tiliktino (Russia)',1,1,0),(9138,0,108610,'Timisu de Sus','Romania','RO','Timisu de Sus (Romania)',1,1,0),(9139,0,108611,'Tingstade','Sweden','SE','Tingstade (Sweden)',1,1,0),(9140,0,108612,'Tlapacoyan','Mexico','MX','Tlapacoyan (Mexico)',1,1,0),(9141,0,108613,'Toksovo','Russia','RU','Toksovo (Russia)',1,1,0),(9142,0,108614,'Tomaszow Lubelski','Poland','PL','Tomaszow Lubelski (Poland)',1,1,0),(9143,0,108615,'Tongoy','Chile','CL','Tongoy (Chile)',1,1,0),(9144,0,108616,'Torre Canavese','Italy','IT','Torre Canavese (Italy)',1,1,0),(9145,0,108617,'Torti','Panama','PA','Torti (Panama)',1,1,0),(9146,0,108618,'Toukley','Australia','AU','Toukley (Australia)',1,1,0),(9147,0,108619,'Town of 1770','Australia','AU','Town of 1770 (Australia)',1,1,0),(9148,0,108620,'Toyoura','Japan','JP','Toyoura (Japan)',1,1,0),(9149,0,108621,'Tredaniel - Moncontour','France','FR','Tredaniel - Moncontour (France)',1,1,0),(9150,0,108622,'Treorchy','United Kingdom','UK','Treorchy (United Kingdom)',1,1,0),(9151,0,108623,'Trevone','United Kingdom','UK','Trevone (United Kingdom)',1,1,0),(9152,0,108624,'Trnkov','Slovakia','SK','Trnkov (Slovakia)',1,1,0),(9153,0,108625,'Trumpington','United Kingdom','UK','Trumpington (United Kingdom)',1,1,0),(9154,0,108626,'Tsurugashima','Japan','JP','Tsurugashima (Japan)',1,1,0),(9155,0,108627,'Tulau','Germany','DE','Tulau (Germany)',1,1,0),(9156,27940,108628,'Tunapuna','Trinidad and Tobago','TT','Tunapuna (Trinidad and Tobago)',1,1,0),(9157,0,108629,'Turate','Italy','IT','Turate (Italy)',1,1,0),(9158,0,108630,'Turriers','France','FR','Turriers (France)',1,1,0),(9159,0,108631,'Tutschkowo','Russia','RU','Tutschkowo (Russia)',1,1,0),(9160,0,108632,'Tyros','Greece','GR','Tyros (Greece)',1,1,0),(9161,0,108633,'Ubaira','Brazil','BR','Ubaira (Brazil)',1,1,0),(9162,28061,108634,'Uddeholm','Sweden','SE','Uddeholm (Sweden)',1,1,0),(9163,0,108635,'Uffington','United Kingdom','UK','Uffington (United Kingdom)',1,1,0),(9164,0,108636,'Ukulhas Island','Maldives','MV','Ukulhas Island (Maldives)',1,1,0),(9165,0,108637,'Ulan Majorat','Poland','PL','Ulan Majorat (Poland)',1,1,0),(9166,0,108638,'Ullanger','Sweden','SE','Ullanger (Sweden)',1,1,0),(9167,0,108639,'Ultima','Australia','AU','Ultima (Australia)',1,1,0),(9168,0,108640,'Unterschwaningen','Germany','DE','Unterschwaningen (Germany)',1,1,0),(9169,0,108641,'Unye','Turkey','TR','Unye (Turkey)',1,1,0),(9170,0,108642,'Utica','Colombia','CO','Utica (Colombia)',1,1,0),(9171,0,108643,'Valasske Klobouky','Czech Republic','CZ','Valasske Klobouky (Czech Republic)',1,1,0),(9172,0,108644,'Valgorge','France','FR','Valgorge (France)',1,1,0),(9173,0,108645,'Valinhos','Brazil','BR','Valinhos (Brazil)',1,1,0),(9174,0,108646,'Valleraugue','France','FR','Valleraugue (France)',1,1,0),(9175,0,108647,'Vallermosa','Italy','IT','Vallermosa (Italy)',1,1,0),(9176,0,108648,'Vallo di Nera','Italy','IT','Vallo di Nera (Italy)',1,1,0),(9177,0,108649,'Vals-pres-le-Puy','France','FR','Vals-pres-le-Puy (France)',1,1,0),(9178,0,108650,'Valvestino','Italy','IT','Valvestino (Italy)',1,1,0),(9179,0,108651,'Vanderhoof','Canada','CA','Vanderhoof (Canada)',1,1,0),(9180,0,108652,'Vanze','Italy','IT','Vanze (Italy)',1,1,0),(9181,0,108653,'Varsi','Italy','IT','Varsi (Italy)',1,1,0),(9182,0,108654,'Varsseveld','Netherlands','NL','Varsseveld (Netherlands)',1,1,0),(9183,0,108655,'Vega de Valdetronco','Spain','ES','Vega de Valdetronco (Spain)',1,1,0),(9184,0,108656,'Vergne','France','FR','Vergne (France)',1,1,0),(9185,28622,108657,'Vernante','Italy','IT','Vernante (Italy)',1,1,0),(9186,0,108658,'Vesyegonsk','Russia','RU','Vesyegonsk (Russia)',1,1,0),(9187,0,108659,'Viamao','Brazil','BR','Viamao (Brazil)',1,1,0),(9188,0,108660,'Victot-Pontfol','France','FR','Victot-Pontfol (France)',1,1,0),(9189,0,108661,'Vierschach','Italy','IT','Vierschach (Italy)',1,1,0),(9190,0,108662,'Vigo di Cadore','Italy','IT','Vigo di Cadore (Italy)',1,1,0),(9191,33985,108663,'Vila Pouca de Aguiar','Portugal','PT','Vila Pouca de Aguiar (Portugal)',1,1,0),(9192,0,108664,'Vilanova d’Escornalbou','Spain','ES','Vilanova d’Escornalbou (Spain)',1,1,0),(9193,0,108665,'Vilga','Russia','RU','Vilga (Russia)',1,1,0),(9194,0,108666,'Vilkanastrai','Lithuania','LT','Vilkanastrai (Lithuania)',1,1,0),(9195,0,108667,'Villa Cura Brochero','Argentina','AR','Villa Cura Brochero (Argentina)',1,1,0),(9196,0,108669,'Villablino','Spain','ES','Villablino (Spain)',1,1,0),(9197,0,108670,'Villamor de los Escuderos','Spain','ES','Villamor de los Escuderos (Spain)',1,1,0),(9198,0,108671,'Villapresente','Spain','ES','Villapresente (Spain)',1,1,0),(9199,0,108672,'Vinces','Ecuador','EC','Vinces (Ecuador)',1,1,0),(9200,0,108673,'Vinhedo','Brazil','BR','Vinhedo (Brazil)',1,1,0),(9201,28926,108674,'Vinkovci','Croatia','HR','Vinkovci (Croatia)',1,1,0),(9202,0,108675,'Visconde de Maua','Brazil','BR','Visconde de Maua (Brazil)',1,1,0),(9203,0,108676,'Vollore-Montagne','France','FR','Vollore-Montagne (France)',1,1,0),(9204,0,108677,'Voujeaucourt','France','FR','Voujeaucourt (France)',1,1,0),(9205,0,108678,'Waitara','New Zealand','NZ','Waitara (New Zealand)',1,1,0),(9206,0,108679,'Wakaf Che Yeh','Malaysia','MY','Wakaf Che Yeh (Malaysia)',1,1,0),(9207,0,108680,'Watampone','Indonesia','ID','Watampone (Indonesia)',1,1,0),(9208,0,108682,'Wellington Mill','Australia','AU','Wellington Mill (Australia)',1,1,0),(9209,0,108683,'West Runton','United Kingdom','UK','West Runton (United Kingdom)',1,1,0),(9210,29918,108684,'Wittem','Netherlands','NL','Wittem (Netherlands)',1,1,0),(9211,0,108685,'Woodburn','Australia','AU','Woodburn (Australia)',1,1,0),(9212,0,108686,'Wootton Wawen','United Kingdom','UK','Wootton Wawen (United Kingdom)',1,1,0),(9213,0,108687,'Wschowa','Poland','PL','Wschowa (Poland)',1,1,0),(9214,0,108688,'Wylam','United Kingdom','UK','Wylam (United Kingdom)',1,1,0),(9215,0,108689,'Xanxere','Brazil','BR','Xanxere (Brazil)',1,1,0),(9216,0,108690,'Yakoruda','Bulgaria','BG','Yakoruda (Bulgaria)',1,1,0),(9217,30169,108691,'Yamanakako','Japan','JP','Yamanakako (Japan)',1,1,0),(9218,0,108692,'Yamna','Bulgaria','BG','Yamna (Bulgaria)',1,1,0),(9219,0,108693,'Yan Ta Khao','Thailand','TH','Yan Ta Khao (Thailand)',1,1,0),(9220,0,108694,'Yarram','Australia','AU','Yarram (Australia)',1,1,0),(9221,0,108695,'Yaruqui','Ecuador','EC','Yaruqui (Ecuador)',1,1,0),(9222,0,108696,'Yasinya','Ukraine','UA','Yasinya (Ukraine)',1,1,0),(9223,0,108697,'Yokote','Japan','JP','Yokote (Japan)',1,1,0),(9224,0,108698,'Yuanlin','Taiwan','TW','Yuanlin (Taiwan)',1,1,0),(9225,0,108699,'Zapotitlan de Mendez','Mexico','MX','Zapotitlan de Mendez (Mexico)',1,1,0),(9226,0,108700,'Zefta','Lebanon','LB','Zefta (Lebanon)',1,1,0),(9227,0,108701,'Zhaoxing','China','CN','Zhaoxing (China)',1,1,0),(9228,0,108702,'Zheravna','Bulgaria','BG','Zheravna (Bulgaria)',1,1,0),(9229,0,108703,'Zwischenfluh','Switzerland','CH','Zwischenfluh (Switzerland)',1,1,0),(9230,0,108717,'Hamilton','Australia','AU','Hamilton (Australia)',1,1,0),(9231,13857,108721,'Kensington','Australia','AU','Kensington (Australia)',1,1,0),(9232,6853,108737,'Coogee','Australia','AU','Coogee (Australia)',1,1,0),(9233,6565,108784,'Cochrane','Canada','CA','Cochrane (Canada)',1,1,0),(9234,14086,108793,'Kingston','Australia','AU','Kingston (Australia)',1,1,0),(9235,691,108856,'Alma','Canada','CA','Alma (Canada)',1,1,0),(9236,10488,108866,'Gladstone','Australia','AU','Gladstone (Australia)',1,1,0),(9237,0,108939,'Sorrento','Australia','AU','Sorrento (Australia)',1,1,0),(9238,29990,108986,'Woodstock','Canada','CA','Woodstock (Canada)',1,1,0),(9239,16621,109035,'Mandelieu-La-Napoule','France','FR','Mandelieu-La-Napoule (France)',1,1,0),(9240,30106,109036,'Xcaret','Mexico','MX','Xcaret (Mexico)',1,1,0),(9241,0,109037,'Aprilia Marittima','Italy','IT','Aprilia Marittima (Italy)',1,1,0),(9242,1245,109038,'Aptos','United States of America','US','Aptos (United States of America)',1,1,0),(9243,0,109039,'Aracataca','Colombia','CO','Aracataca (Colombia)',1,1,0),(9244,0,109040,'Aragon','France','FR','Aragon (France)',1,1,0),(9245,1277,109041,'Arapongas','Brazil','BR','Arapongas (Brazil)',1,1,0),(9246,0,109042,'Ararat','United States of America','US','Ararat (United States of America)',1,1,0),(9247,1291,109043,'Arbon','Switzerland','CH','Arbon (Switzerland)',1,1,0),(9248,1296,109044,'Arbus','Italy','IT','Arbus (Italy)',1,1,0),(9249,1300,109045,'Arcachon','France','FR','Arcachon (France)',1,1,0),(9250,1308,109046,'Arc-en-Barrois','France','FR','Arc-en-Barrois (France)',1,1,0),(9251,0,109047,'Arcevia','Italy','IT','Arcevia (Italy)',1,1,0),(9252,1312,109048,'Archangelos','Greece','GR','Archangelos (Greece)',1,1,0),(9253,0,109049,'Arco da Calheta','Portugal','PT','Arco da Calheta (Portugal)',1,1,0),(9254,0,109050,'Arco de Sao Jorge','Portugal','PT','Arco de Sao Jorge (Portugal)',1,1,0),(9255,1321,109051,'Arcola','United States of America','US','Arcola (United States of America)',1,1,0),(9256,0,109052,'Arcs Extreme','France','FR','Arcs Extreme (France)',1,1,0),(9257,1327,109053,'Arcueil','France','FR','Arcueil (France)',1,1,0),(9258,0,109054,'Arcy-sur-Cure','France','FR','Arcy-sur-Cure (France)',1,1,0),(9259,1329,109055,'Ardales','Spain','ES','Ardales (Spain)',1,1,0),(9260,0,109056,'Ardley','United Kingdom','UK','Ardley (United Kingdom)',1,1,0),(9261,1359,109057,'Arembepe','Brazil','BR','Arembepe (Brazil)',1,1,0),(9262,0,109058,'Aren','Spain','ES','Aren (Spain)',1,1,0),(9263,0,109059,'Argaka','Cyprus','CY','Argaka (Cyprus)',1,1,0),(9264,0,109060,'Argamasilla de Calatrava','Spain','ES','Argamasilla de Calatrava (Spain)',1,1,0),(9265,1376,109061,'Argassi','Greece','GR','Argassi (Greece)',1,1,0),(9266,0,109062,'Almarza','Spain','ES','Almarza (Spain)',1,1,0),(9267,0,109063,'Almeirim','Portugal','PT','Almeirim (Portugal)',1,1,0),(9268,0,109064,'Al-Minya','Egypt','EG','Al-Minya (Egypt)',1,1,0),(9269,0,109065,'Almogia','Spain','ES','Almogia (Spain)',1,1,0),(9270,0,109066,'Almonaster la Real','Spain','ES','Almonaster la Real (Spain)',1,1,0),(9271,741,109067,'Alovera','Spain','ES','Alovera (Spain)',1,1,0),(9272,754,109068,'Alpharetta','United States of America','US','Alpharetta (United States of America)',1,1,0),(9273,0,109069,'Alphen aan den Rijn','Netherlands','NL','Alphen aan den Rijn (Netherlands)',1,1,0),(9274,0,109070,'Alpine','United States of America','US','Alpine (United States of America)',1,1,0),(9275,0,109071,'Alpl','Austria','AT','Alpl (Austria)',1,1,0),(9276,762,109072,'Alpnachstad','Switzerland','CH','Alpnachstad (Switzerland)',1,1,0),(9277,0,109073,'Alpujarras','Spain','ES','Alpujarras (Spain)',1,1,0),(9278,0,109074,'Alsopahok','Hungary','HU','Alsopahok (Hungary)',1,1,0),(9279,775,109075,'Alta','Norway','NO','Alta (Norway)',1,1,0),(9280,774,109076,'Alta','United States of America','US','Alta (United States of America)',1,1,0),(9281,784,109077,'Altamont','United States of America','US','Altamont (United States of America)',1,1,0),(9282,786,109078,'Altamura','Italy','IT','Altamura (Italy)',1,1,0),(9283,0,109079,'Alte','Portugal','PT','Alte (Portugal)',1,1,0),(9284,0,109080,'Altefahr','Germany','DE','Altefahr (Germany)',1,1,0),(9285,0,109081,'Altenberge','Germany','DE','Altenberge (Germany)',1,1,0),(9286,0,109082,'Altenkunstadt','Germany','DE','Altenkunstadt (Germany)',1,1,0),(9287,0,109083,'Altenmarkt','Austria','AT','Altenmarkt (Austria)',1,1,0),(9288,804,109084,'Alter do Chao','Portugal','PT','Alter do Chao (Portugal)',1,1,0),(9289,0,109085,'Altfunnixsiel','Germany','DE','Altfunnixsiel (Germany)',1,1,0),(9290,0,109086,'Alto Ongamira','Argentina','AR','Alto Ongamira (Argentina)',1,1,0),(9291,0,109087,'Altomunster','Germany','DE','Altomunster (Germany)',1,1,0),(9292,819,109088,'Alton','United States of America','US','Alton (United States of America)',1,1,0),(9293,830,109089,'Altus','United States of America','US','Altus (United States of America)',1,1,0),(9294,0,109090,'Alvaneu','Switzerland','CH','Alvaneu (Switzerland)',1,1,0),(9295,836,109091,'Alvarado','United States of America','US','Alvarado (United States of America)',1,1,0),(9296,846,109092,'Alvin','United States of America','US','Alvin (United States of America)',1,1,0),(9297,0,109094,'Alyth','United Kingdom','UK','Alyth (United Kingdom)',1,1,0),(9298,881,109095,'Amarillo','United States of America','US','Amarillo (United States of America)',1,1,0),(9299,0,109096,'Amarynthos','Greece','GR','Amarynthos (Greece)',1,1,0),(9300,0,109097,'Amberieu-en-Bugey','France','FR','Amberieu-en-Bugey (France)',1,1,0),(9301,0,109098,'Ambleside','United Kingdom','UK','Ambleside (United Kingdom)',1,1,0),(9302,0,109099,'Amden','Switzerland','CH','Amden (Switzerland)',1,1,0),(9303,0,109100,'Amel','Belgium','BE','Amel (Belgium)',1,1,0),(9304,0,109101,'Amelia Island','United States of America','US','Amelia Island (United States of America)',1,1,0),(9305,915,109102,'Amelie-les-Bains-Palalda','France','FR','Amelie-les-Bains-Palalda (France)',1,1,0),(9306,0,109103,'Amelinghausen','Germany','DE','Amelinghausen (Germany)',1,1,0),(9307,0,109104,'Amenia','United States of America','US','Amenia (United States of America)',1,1,0),(9308,919,109105,'American Canyon','United States of America','US','American Canyon (United States of America)',1,1,0),(9309,922,109106,'Americana','Brazil','BR','Americana (Brazil)',1,1,0),(9310,927,109107,'Ames','United States of America','US','Ames (United States of America)',1,1,0),(9311,0,109108,'Ames','Spain','ES','Ames (Spain)',1,1,0),(9312,0,109109,'Amherst','United States of America','US','Amherst (United States of America)',1,1,0),(9313,0,109110,'Ami\'ad','Israel','IL','Ami\'ad (Israel)',1,1,0),(9314,0,109111,'Amitirigala','Sri Lanka','LK','Amitirigala (Sri Lanka)',1,1,0),(9315,0,109112,'Amli','Norway','NO','Amli (Norway)',1,1,0),(9316,0,109113,'Ammouliani','Greece','GR','Ammouliani (Greece)',1,1,0),(9317,0,109114,'Amnissos','Greece','GR','Amnissos (Greece)',1,1,0),(9318,956,109115,'Amorgos','Greece','GR','Amorgos (Greece)',1,1,0),(9319,0,109116,'Analypsis Ipsos','Greece','GR','Analypsis Ipsos (Greece)',1,1,0),(9320,1002,109117,'Anascaul','Ireland','IE','Anascaul (Ireland)',1,1,0),(9321,0,109118,'Anatoli','Greece','GR','Anatoli (Greece)',1,1,0),(9322,0,109119,'Andong','South Korea','KR','Andong (South Korea)',1,1,0),(9323,0,109120,'Andorf','Austria','AT','Andorf (Austria)',1,1,0),(9324,1039,109121,'Andrews','United States of America','US','Andrews (United States of America)',1,1,0),(9325,1047,109122,'Andujar','Spain','ES','Andujar (Spain)',1,1,0),(9326,0,109123,'Anevo','Bulgaria','BG','Anevo (Bulgaria)',1,1,0),(9327,1056,109124,'Angels Camp','United States of America','US','Angels Camp (United States of America)',1,1,0),(9328,1069,109125,'Anglesea','Australia','AU','Anglesea (Australia)',1,1,0),(9329,0,109126,'Anglin Lake','Canada','CA','Anglin Lake (Canada)',1,1,0),(9330,1075,109127,'Angouleme','France','FR','Angouleme (France)',1,1,0),(9331,1080,109128,'Anguilla','Anguilla','AI','Anguilla (Anguilla)',1,1,0),(9332,1091,109129,'Anji','China','CN','Anji (China)',1,1,0),(9333,1101,109130,'Ankeny','United States of America','US','Ankeny (United States of America)',1,1,0),(9334,0,109131,'Anna Maria Island','United States of America','US','Anna Maria Island (United States of America)',1,1,0),(9335,0,109132,'Annai','Guyana','GY','Annai (Guyana)',1,1,0),(9336,1119,109133,'Annecy','France','FR','Annecy (France)',1,1,0),(9337,0,109134,'Annenheim','Austria','AT','Annenheim (Austria)',1,1,0),(9338,0,109135,'Annweiler am Trifels','Germany','DE','Annweiler am Trifels (Germany)',1,1,0),(9339,0,109136,'Ano Trikala','Greece','GR','Ano Trikala (Greece)',1,1,0),(9340,1129,109137,'Anogia','Greece','GR','Anogia (Greece)',1,1,0),(9341,1138,109138,'Anse La Raie','Mauritius','MU','Anse La Raie (Mauritius)',1,1,0),(9342,0,109139,'Anse Marie-Louise','Seychelles','SC','Anse Marie-Louise (Seychelles)',1,1,0),(9343,0,109140,'Anse Takamaka','Seychelles','SC','Anse Takamaka (Seychelles)',1,1,0),(9344,0,109141,'Antioch','United States of America','US','Antioch (United States of America)',1,1,0),(9345,0,109142,'Antirrio','Greece','GR','Antirrio (Greece)',1,1,0),(9346,0,109143,'Antonina','Brazil','BR','Antonina (Brazil)',1,1,0),(9347,0,109144,'Anzing','Germany','DE','Anzing (Germany)',1,1,0),(9348,1207,109145,'Apache Junction','United States of America','US','Apache Junction (United States of America)',1,1,0),(9349,0,109146,'Aparecida','Brazil','BR','Aparecida (Brazil)',1,1,0),(9350,1221,109147,'Apizaco','Mexico','MX','Apizaco (Mexico)',1,1,0),(9351,1222,109148,'Apodaca','Mexico','MX','Apodaca (Mexico)',1,1,0),(9352,0,109149,'Apolakkia','Greece','GR','Apolakkia (Greece)',1,1,0),(9353,1223,109150,'Apolda','Germany','DE','Apolda (Germany)',1,1,0),(9354,1225,109151,'Apollo Bay','Australia','AU','Apollo Bay (Australia)',1,1,0),(9355,0,109152,'Appleby Parva','United Kingdom','UK','Appleby Parva (United Kingdom)',1,1,0),(9356,1242,109153,'Apricale','Italy','IT','Apricale (Italy)',1,1,0),(9357,0,109154,'Apulit Island','Philippines','PH','Apulit Island (Philippines)',1,1,0),(9358,0,109155,'Aquadilla','Puerto Rico','PR','Aquadilla (Puerto Rico)',1,1,0),(9359,1248,109156,'Aquidauana','Brazil','BR','Aquidauana (Brazil)',1,1,0),(9360,1251,109157,'Arab','United States of America','US','Arab (United States of America)',1,1,0),(9361,0,109158,'Aracaldo','Spain','ES','Aracaldo (Spain)',1,1,0),(9362,0,109159,'Araches-la-Frasse','France','FR','Araches-la-Frasse (France)',1,1,0),(9363,1259,109160,'Arachova','Greece','GR','Arachova (Greece)',1,1,0),(9364,1260,109161,'Arad','Romania','RO','Arad (Romania)',1,1,0),(9365,0,109162,'Arapoti','Brazil','BR','Arapoti (Brazil)',1,1,0),(9366,1287,109163,'Arbatax','Italy','IT','Arbatax (Italy)',1,1,0),(9367,1310,109164,'Archamps','France','FR','Archamps (France)',1,1,0),(9368,0,109165,'Archipel de San Bernardo','Colombia','CO','Archipel de San Bernardo (Colombia)',1,1,0),(9369,1323,109166,'Arcos de Valdevez','Portugal','PT','Arcos de Valdevez (Portugal)',1,1,0),(9370,0,109168,'Ardeer','Australia','AU','Ardeer (Australia)',1,1,0),(9371,0,109169,'Ardena di Brusimpiano','Italy','IT','Ardena di Brusimpiano (Italy)',1,1,0),(9372,0,109170,'Ardmore','United States of America','US','Ardmore (United States of America)',1,1,0),(9373,1356,109171,'Areatza','Spain','ES','Areatza (Spain)',1,1,0),(9374,0,109172,'Areches','France','FR','Areches (France)',1,1,0),(9375,0,109173,'Areia Branca','Brazil','BR','Areia Branca (Brazil)',1,1,0),(9376,772,109174,'Alt Duvenstedt','Germany','DE','Alt Duvenstedt (Germany)',1,1,0),(9377,0,109175,'Alt Jucha','Poland','PL','Alt Jucha (Poland)',1,1,0),(9378,777,109176,'Alta Floresta','Brazil','BR','Alta Floresta (Brazil)',1,1,0),(9379,778,109177,'Alta Gracia','Argentina','AR','Alta Gracia (Argentina)',1,1,0),(9380,0,109178,'Altanca','Switzerland','CH','Altanca (Switzerland)',1,1,0),(9381,795,109179,'Altenahr','Germany','DE','Altenahr (Germany)',1,1,0),(9382,0,109180,'Altenkirchen','Germany','DE','Altenkirchen (Germany)',1,1,0),(9383,0,109181,'Altenmunster','Germany','DE','Altenmunster (Germany)',1,1,0),(9384,0,109182,'Altenstadt (Hessen)','Germany','DE','Altenstadt (Hessen) (Germany)',1,1,0),(9385,0,109183,'Altglashutten','Germany','DE','Altglashutten (Germany)',1,1,0),(9386,0,109184,'Altheim','Austria','AT','Altheim (Austria)',1,1,0),(9387,0,109185,'Althen des Paluds','France','FR','Althen des Paluds (France)',1,1,0),(9388,0,109186,'Althofen','Austria','AT','Althofen (Austria)',1,1,0),(9389,824,109187,'Altoona','United States of America','US','Altoona (United States of America)',1,1,0),(9390,0,109188,'Altos','Paraguay','PY','Altos (Paraguay)',1,1,0),(9391,850,109189,'Alvsjo','Sweden','SE','Alvsjo (Sweden)',1,1,0),(9392,855,109190,'Alzate Brianza','Italy','IT','Alzate Brianza (Italy)',1,1,0),(9393,861,109191,'Amadora','Portugal','PT','Amadora (Portugal)',1,1,0),(9394,0,109192,'Amakhala Game Reserve','South Africa','ZA','Amakhala Game Reserve (South Africa)',1,1,0),(9395,0,109193,'Amble','United Kingdom','UK','Amble (United Kingdom)',1,1,0),(9396,903,109194,'Amboise','France','FR','Amboise (France)',1,1,0),(9397,911,109195,'Ameland','Netherlands','NL','Ameland (Netherlands)',1,1,0),(9398,917,109196,'Ameno','Italy','IT','Ameno (Italy)',1,1,0),(9399,0,109197,'Amiais de Cima','Portugal','PT','Amiais de Cima (Portugal)',1,1,0),(9400,944,109198,'Amman','Jordan','JO','Amman (Jordan)',1,1,0),(9401,0,109199,'Ammoudi','Greece','GR','Ammoudi (Greece)',1,1,0),(9402,951,109200,'Ammoudia','Greece','GR','Ammoudia (Greece)',1,1,0),(9403,957,109201,'Amory','United States of America','US','Amory (United States of America)',1,1,0),(9404,0,109202,'Amou','France','FR','Amou (France)',1,1,0),(9405,976,109203,'Amrum','Germany','DE','Amrum (Germany)',1,1,0),(9406,981,109204,'Anacapri','Italy','IT','Anacapri (Italy)',1,1,0),(9407,984,109205,'Anacortes','United States of America','US','Anacortes (United States of America)',1,1,0),(9408,986,109206,'Anadarko','United States of America','US','Anadarko (United States of America)',1,1,0),(9409,1016,109207,'Andalo','Italy','IT','Andalo (Italy)',1,1,0),(9410,0,109208,'Andasibe','Madagascar','MG','Andasibe (Madagascar)',1,1,0),(9411,1025,109209,'Anderson','United States of America','US','Anderson (United States of America)',1,1,0),(9412,0,109210,'Andiast','Switzerland','CH','Andiast (Switzerland)',1,1,0),(9413,0,109211,'Andria','Italy','IT','Andria (Italy)',1,1,0),(9414,0,109212,'Ange','Sweden','SE','Ange (Sweden)',1,1,0),(9415,0,109213,'Angelbachtal','Germany','DE','Angelbachtal (Germany)',1,1,0),(9416,0,109214,'Angeles City','Philippines','PH','Angeles City (Philippines)',1,1,0),(9417,1057,109215,'Anger','Austria','AT','Anger (Austria)',1,1,0),(9418,0,109216,'Angerberg','Austria','AT','Angerberg (Austria)',1,1,0),(9419,1067,109217,'Anglards-de-Saint-Flour','France','FR','Anglards-de-Saint-Flour (France)',1,1,0),(9420,0,109218,'Angles','Spain','ES','Angles (Spain)',1,1,0),(9421,1071,109219,'Angleton','United States of America','US','Angleton (United States of America)',1,1,0),(9422,1073,109220,'Angola','United States of America','US','Angola (United States of America)',1,1,0),(9423,0,109221,'Anjum','Netherlands','NL','Anjum (Netherlands)',1,1,0),(9424,1116,109222,'Annapolis Royal','Canada','CA','Annapolis Royal (Canada)',1,1,0),(9425,0,109223,'Anniviers','Switzerland','CH','Anniviers (Switzerland)',1,1,0),(9426,0,109224,'Ano Stavros','Greece','GR','Ano Stavros (Greece)',1,1,0),(9427,1130,109225,'Anoka','United States of America','US','Anoka (United States of America)',1,1,0),(9428,0,109226,'Anos Asites','Greece','GR','Anos Asites (Greece)',1,1,0),(9429,0,109227,'Anse Bois de Rose','Seychelles','SC','Anse Bois de Rose (Seychelles)',1,1,0),(9430,0,109228,'Anse des Cayes','St. Barthelemy',NULL,'Anse des Cayes (St. Barthelemy)',1,1,0),(9431,0,109229,'Anse Petite Cour','Seychelles','SC','Anse Petite Cour (Seychelles)',1,1,0),(9432,0,109230,'Anse Reunion','Seychelles','SC','Anse Reunion (Seychelles)',1,1,0),(9433,0,109231,'Anseremme','Belgium','BE','Anseremme (Belgium)',1,1,0),(9434,0,109232,'Antey-Saint-Andre','Italy','IT','Antey-Saint-Andre (Italy)',1,1,0),(9435,0,109233,'Anthousa','Greece','GR','Anthousa (Greece)',1,1,0),(9436,0,109234,'Antigua','Guatemala','GT','Antigua (Guatemala)',1,1,0),(9437,0,109235,'Aourir','Morocco','MA','Aourir (Morocco)',1,1,0),(9438,1217,109236,'Apex','United States of America','US','Apex (United States of America)',1,1,0),(9439,0,109237,'Apriltsi','Bulgaria','BG','Apriltsi (Bulgaria)',1,1,0),(9440,0,109238,'Apt En Provence','France','FR','Apt En Provence (France)',1,1,0),(9441,1246,109239,'Apucarana','Brazil','BR','Apucarana (Brazil)',1,1,0),(9442,0,109240,'Aramda de Duero','Spain','ES','Aramda de Duero (Spain)',1,1,0),(9443,1273,109241,'Aransas Pass','United States of America','US','Aransas Pass (United States of America)',1,1,0),(9444,0,109242,'Aranyaprathet','Thailand','TH','Aranyaprathet (Thailand)',1,1,0),(9445,1279,109243,'Araraquara','Brazil','BR','Araraquara (Brazil)',1,1,0),(9446,1290,109244,'Arbois','France','FR','Arbois (France)',1,1,0),(9447,0,109245,'Arborg','Iceland','IS','Arborg (Iceland)',1,1,0),(9448,1301,109246,'Arcade','Spain','ES','Arcade (Spain)',1,1,0),(9449,1302,109247,'Arcadia','United States of America','US','Arcadia (United States of America)',1,1,0),(9450,1307,109248,'Arcen','Netherlands','NL','Arcen (Netherlands)',1,1,0),(9451,1311,109249,'Archanes','Greece','GR','Archanes (Greece)',1,1,0),(9452,0,109250,'Arcizans-Avant','France','FR','Arcizans-Avant (France)',1,1,0),(9453,1320,109251,'Arcola','Italy','IT','Arcola (Italy)',1,1,0),(9454,1331,109252,'Ardalstangen','Norway','NO','Ardalstangen (Norway)',1,1,0),(9455,0,109253,'Ardamine','Ireland','IE','Ardamine (Ireland)',1,1,0),(9456,0,109254,'Arden Hills','United States of America','US','Arden Hills (United States of America)',1,1,0),(9457,0,109255,'Ardgroom','Ireland','IE','Ardgroom (Ireland)',1,1,0),(9458,0,109256,'Arenas de Cabrales','Spain','ES','Arenas de Cabrales (Spain)',1,1,0),(9459,0,109257,'Arevalo','Spain','ES','Arevalo (Spain)',1,1,0),(9460,0,109258,'Arganil','Portugal','PT','Arganil (Portugal)',1,1,0),(9461,0,109259,'Argeles sur Mer','France','FR','Argeles sur Mer (France)',1,1,0),(9462,0,109260,'Arieseni','Romania','RO','Arieseni (Romania)',1,1,0),(9463,0,109261,'Aristi','Greece','GR','Aristi (Greece)',1,1,0),(9464,1412,109262,'Aritzo','Italy','IT','Aritzo (Italy)',1,1,0),(9465,1414,109263,'Arjang','Sweden','SE','Arjang (Sweden)',1,1,0),(9466,0,109264,'Arlaching','Germany','DE','Arlaching (Germany)',1,1,0),(9467,0,109265,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(9468,0,109266,'Arlington Heights','United States of America','US','Arlington Heights (United States of America)',1,1,0),(9469,1469,109267,'Arnolds Park','United States of America','US','Arnolds Park (United States of America)',1,1,0),(9470,0,109268,'Arnschwang','Germany','DE','Arnschwang (Germany)',1,1,0),(9471,1474,109269,'Arolla','Switzerland','CH','Arolla (Switzerland)',1,1,0),(9472,0,109270,'Arosio','Italy','IT','Arosio (Italy)',1,1,0),(9473,0,109271,'Aroskoping','Denmark','DK','Aroskoping (Denmark)',1,1,0),(9474,1480,109272,'Arouca','Portugal','PT','Arouca (Portugal)',1,1,0),(9475,0,109273,'Arques','France','FR','Arques (France)',1,1,0),(9476,0,109274,'Arrasate','Spain','ES','Arrasate (Spain)',1,1,0),(9477,0,109275,'Arrawarra','Australia','AU','Arrawarra (Australia)',1,1,0),(9478,1506,109276,'Arta','Greece','GR','Arta (Greece)',1,1,0),(9479,0,109277,'Artes','Spain','ES','Artes (Spain)',1,1,0),(9480,1520,109278,'Artigas','Uruguay','UY','Artigas (Uruguay)',1,1,0),(9481,0,109279,'Artyom','Russia','RU','Artyom (Russia)',1,1,0),(9482,1544,109280,'Arzano','Italy','IT','Arzano (Italy)',1,1,0),(9483,1547,109281,'Arzon','France','FR','Arzon (France)',1,1,0),(9484,1548,109282,'As','Belgium','BE','As (Belgium)',1,1,0),(9485,1553,109283,'Asarna','Sweden','SE','Asarna (Sweden)',1,1,0),(9486,0,109284,'Asbestos','Canada','CA','Asbestos (Canada)',1,1,0),(9487,1559,109285,'Aschaffenburg','Germany','DE','Aschaffenburg (Germany)',1,1,0),(9488,0,109286,'Alqueva','Portugal','PT','Alqueva (Portugal)',1,1,0),(9489,767,109287,'Alsasua','Spain','ES','Alsasua (Spain)',1,1,0),(9490,0,109288,'Alston','United Kingdom','UK','Alston (United Kingdom)',1,1,0),(9491,776,109289,'Alta Badia','Italy','IT','Alta Badia (Italy)',1,1,0),(9492,0,109290,'Altavilla Silentina','Italy','IT','Altavilla Silentina (Italy)',1,1,0),(9493,790,109291,'Altay','China','CN','Altay (China)',1,1,0),(9494,0,109292,'Altbach','Germany','DE','Altbach (Germany)',1,1,0),(9495,0,109293,'Altdorf bei Nurnberg','Germany','DE','Altdorf bei Nurnberg (Germany)',1,1,0),(9496,0,109294,'Altedo','Italy','IT','Altedo (Italy)',1,1,0),(9497,0,109295,'Altenfelden','Austria','AT','Altenfelden (Austria)',1,1,0),(9498,0,109296,'Altensalzwedel','Germany','DE','Altensalzwedel (Germany)',1,1,0),(9499,802,109297,'Altensteig','Germany','DE','Altensteig (Germany)',1,1,0),(9500,803,109298,'Altentreptow','Germany','DE','Altentreptow (Germany)',1,1,0),(9501,0,109299,'Altlay','Germany','DE','Altlay (Germany)',1,1,0),(9502,0,109300,'Alton','United States of America','US','Alton (United States of America)',1,1,0),(9503,0,109301,'Altoona','United States of America','US','Altoona (United States of America)',1,1,0),(9504,0,109302,'Altrincham','United Kingdom','UK','Altrincham (United Kingdom)',1,1,0),(9505,829,109303,'Alturas','United States of America','US','Alturas (United States of America)',1,1,0),(9506,0,109304,'Altusried','Germany','DE','Altusried (Germany)',1,1,0),(9507,0,109305,'Aluschta','Ukraine','UA','Aluschta (Ukraine)',1,1,0),(9508,835,109306,'Alvalade','Portugal','PT','Alvalade (Portugal)',1,1,0),(9509,0,109307,'Alytus','Lithuania','LT','Alytus (Lithuania)',1,1,0),(9510,856,109308,'Alzenau','Germany','DE','Alzenau (Germany)',1,1,0),(9511,864,109309,'Amagasaki','Japan','JP','Amagasaki (Japan)',1,1,0),(9512,0,109310,'Amanzimtoti','South Africa','ZA','Amanzimtoti (South Africa)',1,1,0),(9513,0,109311,'Ambach am Starnberger See','Germany','DE','Ambach am Starnberger See (Germany)',1,1,0),(9514,0,109312,'Ambeliona','Greece','GR','Ambeliona (Greece)',1,1,0),(9515,895,109313,'Amberley','New Zealand','NZ','Amberley (New Zealand)',1,1,0),(9516,897,109314,'Ambialet','France','FR','Ambialet (France)',1,1,0),(9517,909,109315,'Amed','Indonesia','ID','Amed (Indonesia)',1,1,0),(9518,912,109316,'Amelia','Italy','IT','Amelia (Italy)',1,1,0),(9519,937,109317,'Amiens','France','FR','Amiens (France)',1,1,0),(9520,0,109318,'Amitie','Seychelles','SC','Amitie (Seychelles)',1,1,0),(9521,0,109319,'Amlapura','Indonesia','ID','Amlapura (Indonesia)',1,1,0),(9522,0,109320,'Ammerbuch','Germany','DE','Ammerbuch (Germany)',1,1,0),(9523,952,109321,'Amneville','France','FR','Amneville (France)',1,1,0),(9524,0,109322,'Amorbach','Germany','DE','Amorbach (Germany)',1,1,0),(9525,0,109323,'Amphoe Mueang Nan','Thailand','TH','Amphoe Mueang Nan (Thailand)',1,1,0),(9526,0,109324,'Amstetten','Austria','AT','Amstetten (Austria)',1,1,0),(9527,0,109325,'Anavissos','Greece','GR','Anavissos (Greece)',1,1,0),(9528,0,109326,'Anaya','Spain','ES','Anaya (Spain)',1,1,0),(9529,0,109327,'Anchieta','Brazil','BR','Anchieta (Brazil)',1,1,0),(9530,1012,109328,'Anchorage','United States of America','US','Anchorage (United States of America)',1,1,0),(9531,0,109329,'Ancient Olympia','Greece','GR','Ancient Olympia (Greece)',1,1,0),(9532,0,109330,'Andernach','Germany','DE','Andernach (Germany)',1,1,0),(9533,0,109331,'Anderslov','Sweden','SE','Anderslov (Sweden)',1,1,0),(9534,0,109332,'Andradina','Brazil','BR','Andradina (Brazil)',1,1,0),(9535,1038,109333,'Andreas','United States of America','US','Andreas (United States of America)',1,1,0),(9536,1048,109334,'Anduze','France','FR','Anduze (France)',1,1,0),(9537,0,109335,'Aneby','Sweden','SE','Aneby (Sweden)',1,1,0),(9538,1070,109336,'Anglet','France','FR','Anglet (France)',1,1,0),(9539,0,109337,'Angleur','Belgium','BE','Angleur (Belgium)',1,1,0),(9540,0,109338,'Angolo Terme','Italy','IT','Angolo Terme (Italy)',1,1,0),(9541,1093,109339,'Anjou','Canada','CA','Anjou (Canada)',1,1,0),(9542,1098,109340,'Ankara','Turkey','TR','Ankara (Turkey)',1,1,0),(9543,1105,109341,'Ann Arbor','United States of America','US','Ann Arbor (United States of America)',1,1,0),(9544,1114,109342,'Annandale','United States of America','US','Annandale (United States of America)',1,1,0),(9545,0,109343,'Annapolis','United States of America','US','Annapolis (United States of America)',1,1,0),(9546,1117,109344,'Annawan','United States of America','US','Annawan (United States of America)',1,1,0),(9547,0,109345,'Anonyme Island','Seychelles','SC','Anonyme Island (Seychelles)',1,1,0),(9548,0,109346,'Anoyira','Cyprus','CY','Anoyira (Cyprus)',1,1,0),(9549,0,109347,'Anse','France','FR','Anse (France)',1,1,0),(9550,0,109348,'Anse aux Anglais','Mauritius','MU','Anse aux Anglais (Mauritius)',1,1,0),(9551,0,109349,'Anse Forbans','Seychelles','SC','Anse Forbans (Seychelles)',1,1,0),(9552,0,109350,'Anse Mitan','Martinique','MQ','Anse Mitan (Martinique)',1,1,0),(9553,1140,109351,'Ansfelden','Austria','AT','Ansfelden (Austria)',1,1,0),(9554,1141,109352,'Anshan','China','CN','Anshan (China)',1,1,0),(9555,0,109353,'Anthony','United States of America','US','Anthony (United States of America)',1,1,0),(9556,0,109354,'Antiguo Cuscatlan','El Salvador','SV','Antiguo Cuscatlan (El Salvador)',1,1,0),(9557,0,109355,'Antikyra','Greece','GR','Antikyra (Greece)',1,1,0),(9558,1180,109356,'Anton Lizardo','Mexico','MX','Anton Lizardo (Mexico)',1,1,0),(9559,0,109357,'Antrim','United Kingdom','UK','Antrim (United Kingdom)',1,1,0),(9560,1189,109358,'Antwerp','Belgium','BE','Antwerp (Belgium)',1,1,0),(9561,1197,109359,'Anzio','Italy','IT','Anzio (Italy)',1,1,0),(9562,0,109360,'Ao Prao Bay','Thailand','TH','Ao Prao Bay (Thailand)',1,1,0),(9563,0,109361,'Apecchio','Italy','IT','Apecchio (Italy)',1,1,0),(9564,0,109362,'Apen','Germany','DE','Apen (Germany)',1,1,0),(9565,0,109363,'Apetlon','Austria','AT','Apetlon (Austria)',1,1,0),(9566,0,109364,'Apfelstadt','Germany','DE','Apfelstadt (Germany)',1,1,0),(9567,0,109365,'Apo Island','Philippines','PH','Apo Island (Philippines)',1,1,0),(9568,0,109366,'Apollonas','Greece','GR','Apollonas (Greece)',1,1,0),(9569,0,109367,'Appelscha','Netherlands','NL','Appelscha (Netherlands)',1,1,0),(9570,1234,109368,'Apple Valley','United States of America','US','Apple Valley (United States of America)',1,1,0),(9571,1238,109369,'Appleton','United States of America','US','Appleton (United States of America)',1,1,0),(9572,1239,109370,'Appoigny','France','FR','Appoigny (France)',1,1,0),(9573,0,109371,'Apraos','Greece','GR','Apraos (Greece)',1,1,0),(9574,0,109372,'Arafo','Spain','ES','Arafo (Spain)',1,1,0),(9575,0,109373,'Aramengo','Italy','IT','Aramengo (Italy)',1,1,0),(9576,1272,109374,'Arans','Andorra','AD','Arans (Andorra)',1,1,0),(9577,0,109375,'Araras','Brazil','BR','Araras (Brazil)',1,1,0),(9578,0,109376,'Aravell','Spain','ES','Aravell (Spain)',1,1,0),(9579,1285,109377,'Arbanasi','Bulgaria','BG','Arbanasi (Bulgaria)',1,1,0),(9580,1292,109378,'Arbonne','France','FR','Arbonne (France)',1,1,0),(9581,0,109379,'Arcas','Spain','ES','Arcas (Spain)',1,1,0),(9582,0,109380,'Archangelsk','Russia','RU','Archangelsk (Russia)',1,1,0),(9583,0,109381,'Arcos de Jalon (Soria)','Spain','ES','Arcos de Jalon (Soria) (Spain)',1,1,0),(9584,1322,109382,'Arcos de la Frontera','Spain','ES','Arcos de la Frontera (Spain)',1,1,0),(9585,0,109383,'Ardagger','Austria','AT','Ardagger (Austria)',1,1,0),(9586,1333,109384,'Ardea','Italy','IT','Ardea (Italy)',1,1,0),(9587,1352,109385,'Ardsley','United States of America','US','Ardsley (United States of America)',1,1,0),(9588,0,109386,'Arenas de Iguna','Spain','ES','Arenas de Iguna (Spain)',1,1,0),(9589,1381,109387,'Argentan','France','FR','Argentan (France)',1,1,0),(9590,0,109388,'Argentia','Canada','CA','Argentia (Canada)',1,1,0),(9591,1390,109389,'Argonay','France','FR','Argonay (France)',1,1,0),(9592,1397,109390,'Arguis','Spain','ES','Arguis (Spain)',1,1,0),(9593,0,109391,'Argyrades','Greece','GR','Argyrades (Greece)',1,1,0),(9594,0,109392,'Ariana','Tunisia','TN','Ariana (Tunisia)',1,1,0),(9595,0,109393,'Ariano nel Polesine','Italy','IT','Ariano nel Polesine (Italy)',1,1,0),(9596,1401,109394,'Arica','Chile','CL','Arica (Chile)',1,1,0),(9597,0,109395,'Arico','Spain','ES','Arico (Spain)',1,1,0),(9598,1404,109396,'Ariel','Israel','IL','Ariel (Israel)',1,1,0),(9599,1413,109397,'Arizkun','Spain','ES','Arizkun (Spain)',1,1,0),(9600,0,109398,'Arjeplog','Sweden','SE','Arjeplog (Sweden)',1,1,0),(9601,0,109399,'Alma','United States of America','US','Alma (United States of America)',1,1,0),(9602,692,109400,'Almada','Portugal','PT','Almada (Portugal)',1,1,0),(9603,0,109401,'Almafuerte','Argentina','AR','Almafuerte (Argentina)',1,1,0),(9604,698,109402,'Almaty','Kazakhstan','KZ','Almaty (Kazakhstan)',1,1,0),(9605,702,109403,'Almeida','Portugal','PT','Almeida (Portugal)',1,1,0),(9606,0,109404,'Almhult','Sweden','SE','Almhult (Sweden)',1,1,0),(9607,0,109405,'Almodovar del Rio','Spain','ES','Almodovar del Rio (Spain)',1,1,0),(9608,718,109406,'Almont','United States of America','US','Almont (United States of America)',1,1,0),(9609,724,109407,'Almussafes','Spain','ES','Almussafes (Spain)',1,1,0),(9610,0,109408,'Alnif','Morocco','MA','Alnif (Morocco)',1,1,0),(9611,0,109409,'Alnwick','United Kingdom','UK','Alnwick (United Kingdom)',1,1,0),(9612,730,109410,'Alomartes','Spain','ES','Alomartes (Spain)',1,1,0),(9613,742,109411,'Aloxe-Corton','France','FR','Aloxe-Corton (France)',1,1,0),(9614,0,109412,'Alpe d\'Huez','France','FR','Alpe d\'Huez (France)',1,1,0),(9615,749,109413,'Alpena','United States of America','US','Alpena (United States of America)',1,1,0),(9616,0,109414,'Alpirsbach-Ehlenbogen','Germany','DE','Alpirsbach-Ehlenbogen (Germany)',1,1,0),(9617,0,109415,'Alquerias del Nino Perdido','Spain','ES','Alquerias del Nino Perdido (Spain)',1,1,0),(9618,0,109416,'Alsager','United Kingdom','UK','Alsager (United Kingdom)',1,1,0),(9619,0,109417,'Alt Ruppin','Germany','DE','Alt Ruppin (Germany)',1,1,0),(9620,779,109418,'Altafulla','Spain','ES','Altafulla (Spain)',1,1,0),(9621,0,109419,'Altavilla','Italy','IT','Altavilla (Italy)',1,1,0),(9622,791,109420,'Altdorf','Switzerland','CH','Altdorf (Switzerland)',1,1,0),(9623,797,109421,'Altenberg','Germany','DE','Altenberg (Germany)',1,1,0),(9624,0,109422,'Altenbrack','Germany','DE','Altenbrack (Germany)',1,1,0),(9625,0,109423,'Altenfeld','Germany','DE','Altenfeld (Germany)',1,1,0),(9626,0,109424,'Altenmedingen','Germany','DE','Altenmedingen (Germany)',1,1,0),(9627,0,109425,'Altensteig-Wart','Germany','DE','Altensteig-Wart (Germany)',1,1,0),(9628,0,109426,'Alto Paraiso de Goias','Brazil','BR','Alto Paraiso de Goias (Brazil)',1,1,0),(9629,0,109427,'Alt-Reddevitz','Germany','DE','Alt-Reddevitz (Germany)',1,1,0),(9630,0,109428,'Altreichenau','Germany','DE','Altreichenau (Germany)',1,1,0),(9631,0,109429,'Alveringem','Belgium','BE','Alveringem (Belgium)',1,1,0),(9632,843,109430,'Alviano','Italy','IT','Alviano (Italy)',1,1,0),(9633,853,109431,'Alykes','Greece','GR','Alykes (Greece)',1,1,0),(9634,0,109432,'Alzenbach','Germany','DE','Alzenbach (Germany)',1,1,0),(9635,858,109433,'Alzira','Spain','ES','Alzira (Spain)',1,1,0),(9636,0,109434,'Amami-Oshima','Japan','JP','Amami-Oshima (Japan)',1,1,0),(9637,904,109435,'Ambon','Indonesia','ID','Ambon (Indonesia)',1,1,0),(9638,0,109436,'Amboula','Greece','GR','Amboula (Greece)',1,1,0),(9639,0,109437,'Amersham','United Kingdom','UK','Amersham (United Kingdom)',1,1,0),(9640,0,109438,'Amesbury','United Kingdom','UK','Amesbury (United Kingdom)',1,1,0),(9641,932,109439,'Amherst','Canada','CA','Amherst (Canada)',1,1,0),(9642,939,109440,'Amirim','Israel','IL','Amirim (Israel)',1,1,0),(9643,0,109441,'Amlwch','United Kingdom','UK','Amlwch (United Kingdom)',1,1,0),(9644,947,109442,'Ammerschwihr','France','FR','Ammerschwihr (France)',1,1,0),(9645,962,109443,'Amouliani Island','Greece','GR','Amouliani Island (Greece)',1,1,0),(9646,0,109444,'Amsterdam','United States of America','US','Amsterdam (United States of America)',1,1,0),(9647,0,109445,'Anakao','Madagascar','MG','Anakao (Madagascar)',1,1,0),(9648,1000,109447,'Anapolis','Brazil','BR','Anapolis (Brazil)',1,1,0),(9649,1017,109448,'Andalsnes','Norway','NO','Andalsnes (Norway)',1,1,0),(9650,0,109449,'Andelsbuch','Austria','AT','Andelsbuch (Austria)',1,1,0),(9651,1023,109450,'Andermatt','Switzerland','CH','Andermatt (Switzerland)',1,1,0),(9652,0,109451,'Andernos les Bains','France','FR','Andernos les Bains (France)',1,1,0),(9653,0,109452,'Anderson','United States of America','US','Anderson (United States of America)',1,1,0),(9654,0,109453,'Anderson','United States of America','US','Anderson (United States of America)',1,1,0),(9655,1033,109454,'Andorra','Spain','ES','Andorra (Spain)',1,1,0),(9656,0,109455,'Andorra La Vella','Andorra','AD','Andorra La Vella (Andorra)',1,1,0),(9657,1045,109456,'Andros','Greece','GR','Andros (Greece)',1,1,0),(9658,1051,109457,'Angaston','Australia','AU','Angaston (Australia)',1,1,0),(9659,1076,109458,'Angoulins','France','FR','Angoulins (France)',1,1,0),(9660,0,109459,'Angvik','Norway','NO','Angvik (Norway)',1,1,0),(9661,1086,109460,'Anif','Austria','AT','Anif (Austria)',1,1,0),(9662,1087,109461,'Anissaras','Greece','GR','Anissaras (Greece)',1,1,0),(9663,0,109462,'Ankkurinkuja','Finland','FI','Ankkurinkuja (Finland)',1,1,0),(9664,0,109463,'Ano Mera','Greece','GR','Ano Mera (Greece)',1,1,0),(9665,1132,109464,'Anqing','China','CN','Anqing (China)',1,1,0),(9666,0,109465,'Anras','Austria','AT','Anras (Austria)',1,1,0),(9667,0,109466,'Ans aux Pins','Seychelles','SC','Ans aux Pins (Seychelles)',1,1,0),(9668,1134,109467,'Ansalonga','Andorra','AD','Ansalonga (Andorra)',1,1,0),(9669,0,109468,'Anse a l\'Ane','Martinique','MQ','Anse a l\'Ane (Martinique)',1,1,0),(9670,0,109469,'Anse Bougainsville','Seychelles','SC','Anse Bougainsville (Seychelles)',1,1,0),(9671,0,109470,'Anse Intendance','Seychelles','SC','Anse Intendance (Seychelles)',1,1,0),(9672,1151,109471,'Antalya','Turkey','TR','Antalya (Turkey)',1,1,0),(9673,0,109472,'Antignano','Italy','IT','Antignano (Italy)',1,1,0),(9674,1160,109473,'Antigo','United States of America','US','Antigo (United States of America)',1,1,0),(9675,1178,109474,'Antofagasta','Chile','CL','Antofagasta (Chile)',1,1,0),(9676,1190,109475,'Anuradhapura','Sri Lanka','LK','Anuradhapura (Sri Lanka)',1,1,0),(9677,1193,109476,'Anyang','China','CN','Anyang (China)',1,1,0),(9678,0,109477,'Anzere','Switzerland','CH','Anzere (Switzerland)',1,1,0),(9679,1201,109478,'Aomori','Japan','JP','Aomori (Japan)',1,1,0),(9680,0,109479,'Aoulouz','Morocco','MA','Aoulouz (Morocco)',1,1,0),(9681,1232,109480,'Appietto','France','FR','Appietto (France)',1,1,0),(9682,1243,109481,'Aprilia','Italy','IT','Aprilia (Italy)',1,1,0),(9683,0,109482,'Aqtau','Kazakhstan','KZ','Aqtau (Kazakhstan)',1,1,0),(9684,0,109483,'Aquebogue','United States of America','US','Aquebogue (United States of America)',1,1,0),(9685,1250,109484,'Aquiraz','Brazil','BR','Aquiraz (Brazil)',1,1,0),(9686,1255,109485,'Aracaju','Brazil','BR','Aracaju (Brazil)',1,1,0),(9687,0,109486,'Aracruz','Brazil','BR','Aracruz (Brazil)',1,1,0),(9688,0,109487,'Araguari','Brazil','BR','Araguari (Brazil)',1,1,0),(9689,0,109488,'Arandelovac','Serbia','RS','Arandelovac (Serbia)',1,1,0),(9690,1286,109489,'Arbanija','Croatia','HR','Arbanija (Croatia)',1,1,0),(9691,0,109490,'Arbouans','France','FR','Arbouans (France)',1,1,0),(9692,0,109491,'Arc 2000','France','FR','Arc 2000 (France)',1,1,0),(9693,0,109492,'Arcadia','United States of America','US','Arcadia (United States of America)',1,1,0),(9694,0,109493,'Arcadia','United States of America','US','Arcadia (United States of America)',1,1,0),(9695,0,109494,'Arcahueja','Spain','ES','Arcahueja (Spain)',1,1,0),(9696,1304,109495,'Arcangues','France','FR','Arcangues (France)',1,1,0),(9697,1305,109496,'Arcata','United States of America','US','Arcata (United States of America)',1,1,0),(9698,1306,109497,'Arce','Italy','IT','Arce (Italy)',1,1,0),(9699,0,109498,'Arcentales','Spain','ES','Arcentales (Spain)',1,1,0),(9700,1317,109499,'Archidona','Spain','ES','Archidona (Spain)',1,1,0),(9701,0,109500,'Arcipresete de Hita','Spain','ES','Arcipresete de Hita (Spain)',1,1,0),(9702,0,109501,'Arcore','Italy','IT','Arcore (Italy)',1,1,0),(9703,0,109502,'Arc-sur-Tille','France','FR','Arc-sur-Tille (France)',1,1,0),(9704,0,109503,'Ardahan','Turkey','TR','Ardahan (Turkey)',1,1,0),(9705,1335,109504,'Arden','United States of America','US','Arden (United States of America)',1,1,0),(9706,0,109505,'Ardgay','United Kingdom','UK','Ardgay (United Kingdom)',1,1,0),(9707,0,109506,'Ardino','Bulgaria','BG','Ardino (Bulgaria)',1,1,0),(9708,0,109507,'Ardlenagh','Ireland','IE','Ardlenagh (Ireland)',1,1,0),(9709,1348,109508,'Ardon','France','FR','Ardon (France)',1,1,0),(9710,1355,109509,'Are','Sweden','SE','Are (Sweden)',1,1,0),(9711,1360,109510,'Arenal','Costa Rica','CR','Arenal (Costa Rica)',1,1,0),(9712,0,109511,'Alfaz','Spain','ES','Alfaz (Spain)',1,1,0),(9713,587,109512,'Alfdorf','Germany','DE','Alfdorf (Germany)',1,1,0),(9714,0,109513,'Alfedena','Italy','IT','Alfedena (Italy)',1,1,0),(9715,0,109514,'Alfreton','United Kingdom','UK','Alfreton (United Kingdom)',1,1,0),(9716,598,109515,'Algajola','France','FR','Algajola (France)',1,1,0),(9717,0,109516,'Algarvia','Portugal','PT','Algarvia (Portugal)',1,1,0),(9718,0,109517,'Algier','Algeria','DZ','Algier (Algeria)',1,1,0),(9719,609,109518,'Algoma','United States of America','US','Algoma (United States of America)',1,1,0),(9720,616,109519,'Alhambra','United States of America','US','Alhambra (United States of America)',1,1,0),(9721,649,109520,'Alkmaar','Netherlands','NL','Alkmaar (Netherlands)',1,1,0),(9722,661,109521,'Alleins','France','FR','Alleins (France)',1,1,0),(9723,663,109522,'Allen','United States of America','US','Allen (United States of America)',1,1,0),(9724,666,109523,'Allensbach','Germany','DE','Allensbach (Germany)',1,1,0),(9725,671,109525,'Allerona','Italy','IT','Allerona (Italy)',1,1,0),(9726,679,109526,'Alleyras','France','FR','Alleyras (France)',1,1,0),(9727,0,109527,'Alliance','United States of America','US','Alliance (United States of America)',1,1,0),(9728,695,109528,'Almancil','Portugal','PT','Almancil (Portugal)',1,1,0),(9729,700,109529,'Almazan','Spain','ES','Almazan (Spain)',1,1,0),(9730,0,109530,'Almazzago','Italy','IT','Almazzago (Italy)',1,1,0),(9731,701,109531,'Almedinilla','Spain','ES','Almedinilla (Spain)',1,1,0),(9732,705,109532,'Almendralejo','Spain','ES','Almendralejo (Spain)',1,1,0),(9733,0,109533,'Almonacid de Toledo','Spain','ES','Almonacid de Toledo (Spain)',1,1,0),(9734,0,109534,'Alojera','Spain','ES','Alojera (Spain)',1,1,0),(9735,0,109535,'Alopronia','Greece','GR','Alopronia (Greece)',1,1,0),(9736,769,109536,'Alsip','United States of America','US','Alsip (United States of America)',1,1,0),(9737,0,109537,'Altastenberg','Germany','DE','Altastenberg (Germany)',1,1,0),(9738,0,109538,'Alto Malcantone','Switzerland','CH','Alto Malcantone (Switzerland)',1,1,0),(9739,0,109539,'Altrip','Germany','DE','Altrip (Germany)',1,1,0),(9740,0,109540,'Altstatten','Switzerland','CH','Altstatten (Switzerland)',1,1,0),(9741,828,109541,'Altura','Portugal','PT','Altura (Portugal)',1,1,0),(9742,832,109542,'Alupka','Ukraine','UA','Alupka (Ukraine)',1,1,0),(9743,0,109543,'Alvados','Portugal','PT','Alvados (Portugal)',1,1,0),(9744,0,109544,'Alverdissen','Germany','DE','Alverdissen (Germany)',1,1,0),(9745,869,109545,'Amakusa','Japan','JP','Amakusa (Japan)',1,1,0),(9746,878,109546,'Amarante','Portugal','PT','Amarante (Portugal)',1,1,0),(9747,0,109547,'Amasra','Turkey','TR','Amasra (Turkey)',1,1,0),(9748,885,109548,'Amasya','Turkey','TR','Amasya (Turkey)',1,1,0),(9749,0,109549,'Amberg on Starnberg Lake','Germany','DE','Amberg on Starnberg Lake (Germany)',1,1,0),(9750,902,109550,'Ambleteuse','France','FR','Ambleteuse (France)',1,1,0),(9751,0,109551,'Amboseli','Kenya','KE','Amboseli (Kenya)',1,1,0),(9752,0,109552,'Ambrieres-les-Vallees','France','FR','Ambrieres-les-Vallees (France)',1,1,0),(9753,0,109553,'Amherst','United States of America','US','Amherst (United States of America)',1,1,0),(9754,940,109554,'Amite','United States of America','US','Amite (United States of America)',1,1,0),(9755,963,109555,'Ampang','Malaysia','MY','Ampang (Malaysia)',1,1,0),(9756,969,109556,'Amposta','Spain','ES','Amposta (Spain)',1,1,0),(9757,978,109557,'Amstelveen','Netherlands','NL','Amstelveen (Netherlands)',1,1,0),(9758,979,109558,'Amsterdam','Netherlands','NL','Amsterdam (Netherlands)',1,1,0),(9759,0,109559,'Amtsberg','Germany','DE','Amtsberg (Germany)',1,1,0),(9760,987,109560,'Anadia','Portugal','PT','Anadia (Portugal)',1,1,0),(9761,989,109561,'Anagni','Italy','IT','Anagni (Italy)',1,1,0),(9762,0,109562,'Analipsis','Greece','GR','Analipsis (Greece)',1,1,0),(9763,998,109563,'Anamur','Turkey','TR','Anamur (Turkey)',1,1,0),(9764,0,109564,'Anderson','United States of America','US','Anderson (United States of America)',1,1,0),(9765,0,109565,'Andorra','Italy','IT','Andorra (Italy)',1,1,0),(9766,0,109566,'Andover','United States of America','US','Andover (United States of America)',1,1,0),(9767,0,109567,'Andoy','Norway','NO','Andoy (Norway)',1,1,0),(9768,0,109568,'Andreze','France','FR','Andreze (France)',1,1,0),(9769,0,109569,'Andrian','Italy','IT','Andrian (Italy)',1,1,0),(9770,1059,109570,'Angera','Italy','IT','Angera (Italy)',1,1,0),(9771,1060,109571,'Angers','France','FR','Angers (France)',1,1,0),(9772,1062,109572,'Angerville','France','FR','Angerville (France)',1,1,0),(9773,0,109573,'Angistron','Greece','GR','Angistron (Greece)',1,1,0),(9774,0,109574,'Angus','Canada','CA','Angus (Canada)',1,1,0),(9775,1084,109575,'Anhee','Belgium','BE','Anhee (Belgium)',1,1,0),(9776,1097,109576,'Ankang','China','CN','Ankang (China)',1,1,0),(9777,0,109577,'Ankaran','Slovenia','SI','Ankaran (Slovenia)',1,1,0),(9778,0,109578,'Ankarana Nationalpark','Madagascar','MG','Ankarana Nationalpark (Madagascar)',1,1,0),(9779,1108,109579,'Annaba','Algeria','DZ','Annaba (Algeria)',1,1,0),(9780,0,109580,'Anora','Spain','ES','Anora (Spain)',1,1,0),(9781,0,109581,'Anse Royal','Seychelles','SC','Anse Royal (Seychelles)',1,1,0),(9782,0,109582,'Anse Volbert','Seychelles','SC','Anse Volbert (Seychelles)',1,1,0),(9783,1149,109583,'Antakya','Turkey','TR','Antakya (Turkey)',1,1,0),(9784,1153,109584,'Antequera','Spain','ES','Antequera (Spain)',1,1,0),(9785,1156,109585,'Anthering','Austria','AT','Anthering (Austria)',1,1,0),(9786,1163,109586,'Antigua','Antigua & Barbuda','AG','Antigua (Antigua & Barbuda)',1,1,0),(9787,0,109587,'Antona','Italy','IT','Antona (Italy)',1,1,0),(9788,1181,109588,'Antonito','United States of America','US','Antonito (United States of America)',1,1,0),(9789,1183,109589,'Antony','France','FR','Antony (France)',1,1,0),(9790,0,109590,'Antrim','United States of America','US','Antrim (United States of America)',1,1,0),(9791,1187,109591,'Antsiranana','Madagascar','MG','Antsiranana (Madagascar)',1,1,0),(9792,1198,109592,'Anzola dell\'Emilia','Italy','IT','Anzola dell\'Emilia (Italy)',1,1,0),(9793,0,109593,'Ao Nang Beach','Thailand','TH','Ao Nang Beach (Thailand)',1,1,0),(9794,1203,109594,'Aosta','Italy','IT','Aosta (Italy)',1,1,0),(9795,0,109595,'Apollonia','Greece','GR','Apollonia (Greece)',1,1,0),(9796,1226,109596,'Apopka','United States of America','US','Apopka (United States of America)',1,1,0),(9797,1231,109597,'Appiano Gentile','Italy','IT','Appiano Gentile (Italy)',1,1,0),(9798,0,109598,'Appleton','United States of America','US','Appleton (United States of America)',1,1,0),(9799,1240,109599,'Appomattox','United States of America','US','Appomattox (United States of America)',1,1,0),(9800,1256,109600,'Aracati','Brazil','BR','Aracati (Brazil)',1,1,0),(9801,1257,109601,'Aracatuba','Brazil','BR','Aracatuba (Brazil)',1,1,0),(9802,1262,109602,'Araguaina','Brazil','BR','Araguaina (Brazil)',1,1,0),(9803,0,109603,'Aran Islands','Ireland','IE','Aran Islands (Ireland)',1,1,0),(9804,1267,109604,'Aranc','France','FR','Aranc (France)',1,1,0),(9805,0,109605,'Arbil','Iraq','IQ','Arbil (Iraq)',1,1,0),(9806,0,109606,'Arc 1600','France','FR','Arc 1600 (France)',1,1,0),(9807,1314,109607,'Archdale','United States of America','US','Archdale (United States of America)',1,1,0),(9808,1315,109608,'Archena','Spain','ES','Archena (Spain)',1,1,0),(9809,0,109609,'Archsum','Germany','DE','Archsum (Germany)',1,1,0),(9810,1319,109610,'Arco','Italy','IT','Arco (Italy)',1,1,0),(9811,0,109611,'Arcos','Portugal','PT','Arcos (Portugal)',1,1,0),(9812,1332,109612,'Ardara','Ireland','IE','Ardara (Ireland)',1,1,0),(9813,0,109613,'Ardfern','United Kingdom','UK','Ardfern (United Kingdom)',1,1,0),(9814,1345,109614,'Ardmore','Ireland','IE','Ardmore (Ireland)',1,1,0),(9815,0,109615,'Ardrishaig','United Kingdom','UK','Ardrishaig (United Kingdom)',1,1,0),(9816,0,109616,'Ardvasar','United Kingdom','UK','Ardvasar (United Kingdom)',1,1,0),(9817,0,109617,'Aremberg','Germany','DE','Aremberg (Germany)',1,1,0),(9818,1362,109618,'Arenas','Spain','ES','Arenas (Spain)',1,1,0),(9819,1364,109619,'Arendsee','Germany','DE','Arendsee (Germany)',1,1,0),(9820,1366,109620,'Arenzano','Italy','IT','Arenzano (Italy)',1,1,0),(9821,0,109621,'Ares','France','FR','Ares (France)',1,1,0),(9822,1379,109622,'Argeles-Gazost','France','FR','Argeles-Gazost (France)',1,1,0),(9823,1385,109623,'Argentiere','France','FR','Argentiere (France)',1,1,0),(9824,0,109624,'Argol','France','FR','Argol (France)',1,1,0),(9825,0,109625,'Argolis','Greece','GR','Argolis (Greece)',1,1,0),(9826,1389,109626,'Argomaniz','Spain','ES','Argomaniz (Spain)',1,1,0),(9827,0,109627,'Ashkam','South Africa','ZA','Ashkam (South Africa)',1,1,0),(9828,1600,109628,'Ashkelon','Israel','IL','Ashkelon (Israel)',1,1,0),(9829,1604,109629,'Ashtabula','United States of America','US','Ashtabula (United States of America)',1,1,0),(9830,0,109630,'Ashton','United Kingdom','UK','Ashton (United Kingdom)',1,1,0),(9831,1610,109631,'Asiago','Italy','IT','Asiago (Italy)',1,1,0),(9832,0,109632,'Asiain','Spain','ES','Asiain (Spain)',1,1,0),(9833,0,109633,'Asmini','Greece','GR','Asmini (Greece)',1,1,0),(9834,0,109634,'Asprangeli','Greece','GR','Asprangeli (Greece)',1,1,0),(9835,1640,109635,'Assenza di Brenzone','Italy','IT','Assenza di Brenzone (Italy)',1,1,0),(9836,0,109636,'Asserac','France','FR','Asserac (France)',1,1,0),(9837,1641,109637,'Assevillers','France','FR','Assevillers (France)',1,1,0),(9838,1642,109638,'Assiniboia','Canada','CA','Assiniboia (Canada)',1,1,0),(9839,1647,109639,'Assos','Greece','GR','Assos (Greece)',1,1,0),(9840,0,109640,'Astbury','United Kingdom','UK','Astbury (United Kingdom)',1,1,0),(9841,1663,109641,'Asuncion','Paraguay','PY','Asuncion (Paraguay)',1,1,0),(9842,1664,109642,'Aswan','Egypt','EG','Aswan (Egypt)',1,1,0),(9843,0,109643,'Athens','United States of America','US','Athens (United States of America)',1,1,0),(9844,0,109644,'Atlin','Canada','CA','Atlin (Canada)',1,1,0),(9845,1712,109645,'Atmore','United States of America','US','Atmore (United States of America)',1,1,0),(9846,1714,109646,'Atoka','United States of America','US','Atoka (United States of America)',1,1,0),(9847,1721,109647,'Attalla','United States of America','US','Attalla (United States of America)',1,1,0),(9848,0,109648,'Aubel','Belgium','BE','Aubel (Belgium)',1,1,0),(9849,0,109649,'Auberives-sur-Vareze','France','FR','Auberives-sur-Vareze (France)',1,1,0),(9850,0,109650,'Aubeterre-sur-Dronne','France','FR','Aubeterre-sur-Dronne (France)',1,1,0),(9851,1745,109651,'Aubigny-sur-Nere','France','FR','Aubigny-sur-Nere (France)',1,1,0),(9852,0,109652,'Auburn Hills','United States of America','US','Auburn Hills (United States of America)',1,1,0),(9853,0,109653,'Auchencrow','United Kingdom','UK','Auchencrow (United Kingdom)',1,1,0),(9854,1751,109654,'Auckland','New Zealand','NZ','Auckland (New Zealand)',1,1,0),(9855,1755,109655,'Audierne','France','FR','Audierne (France)',1,1,0),(9856,0,109656,'Aue','Germany','DE','Aue (Germany)',1,1,0),(9857,0,109657,'Auggen','Germany','DE','Auggen (Germany)',1,1,0),(9858,1774,109658,'Aulendorf','Germany','DE','Aulendorf (Germany)',1,1,0),(9859,0,109659,'Aurach','Austria','AT','Aurach (Austria)',1,1,0),(9860,0,109660,'Aurdal','Norway','NO','Aurdal (Norway)',1,1,0),(9861,1798,109661,'Auron','France','FR','Auron (France)',1,1,0),(9862,1799,109662,'Aurons','France','FR','Aurons (France)',1,1,0),(9863,1800,109663,'Auronzo di Cadore','Italy','IT','Auronzo di Cadore (Italy)',1,1,0),(9864,0,109664,'Aurora','United States of America','US','Aurora (United States of America)',1,1,0),(9865,0,109666,'Autazes','Brazil','BR','Autazes (Brazil)',1,1,0),(9866,1823,109667,'Avallon','France','FR','Avallon (France)',1,1,0),(9867,1837,109668,'Avellino','Italy','IT','Avellino (Italy)',1,1,0),(9868,1849,109669,'Avesta','Sweden','SE','Avesta (Sweden)',1,1,0),(9869,1855,109670,'Aviano','Italy','IT','Aviano (Italy)',1,1,0),(9870,0,109671,'Avik','Norway','NO','Avik (Norway)',1,1,0),(9871,1863,109672,'Aviles','Spain','ES','Aviles (Spain)',1,1,0),(9872,0,109673,'Avise','Italy','IT','Avise (Italy)',1,1,0),(9873,0,109674,'Avoca','Australia','AU','Avoca (Australia)',1,1,0),(9874,0,109675,'Avon','United States of America','US','Avon (United States of America)',1,1,0),(9875,0,109676,'Ayagaures','Spain','ES','Ayagaures (Spain)',1,1,0),(9876,0,109677,'Ayia Napa','Cyprus','CY','Ayia Napa (Cyprus)',1,1,0),(9877,0,109678,'Aystetten','Germany','DE','Aystetten (Germany)',1,1,0),(9878,0,109679,'Ayvacik','Turkey','TR','Ayvacik (Turkey)',1,1,0),(9879,0,109680,'Azanuy-Alins','Spain','ES','Azanuy-Alins (Spain)',1,1,0),(9880,1932,109681,'Azay le Rideau','France','FR','Azay le Rideau (France)',1,1,0),(9881,0,109682,'Baad','Austria','AT','Baad (Austria)',1,1,0),(9882,0,109683,'Babimost','Poland','PL','Babimost (Poland)',1,1,0),(9883,1961,109684,'Babson Park','United States of America','US','Babson Park (United States of America)',1,1,0),(9884,1973,109685,'Bacoli','Italy','IT','Bacoli (Italy)',1,1,0),(9885,1976,109686,'Bad Aibling','Germany','DE','Bad Aibling (Germany)',1,1,0),(9886,0,109687,'Bad Alexandersbad','Germany','DE','Bad Alexandersbad (Germany)',1,1,0),(9887,0,109688,'Bad Bentheim','Germany','DE','Bad Bentheim (Germany)',1,1,0),(9888,0,109689,'Bad Bertrich','Germany','DE','Bad Bertrich (Germany)',1,1,0),(9889,0,109690,'Bad Bibra','Germany','DE','Bad Bibra (Germany)',1,1,0),(9890,0,109691,'Bad Feilnbach','Germany','DE','Bad Feilnbach (Germany)',1,1,0),(9891,0,109692,'Bad Felix','Romania','RO','Bad Felix (Romania)',1,1,0),(9892,0,109693,'Bad Fredeburg','Germany','DE','Bad Fredeburg (Germany)',1,1,0),(9893,0,109694,'Bad Fussing','Germany','DE','Bad Fussing (Germany)',1,1,0),(9894,0,109695,'Bad Goisern','Austria','AT','Bad Goisern (Austria)',1,1,0),(9895,0,109696,'Bad Hersfeld','Germany','DE','Bad Hersfeld (Germany)',1,1,0),(9896,0,109697,'Bad Konig','Germany','DE','Bad Konig (Germany)',1,1,0),(9897,0,109698,'Bad Kosen','Germany','DE','Bad Kosen (Germany)',1,1,0),(9898,0,109699,'Bad Lausick','Germany','DE','Bad Lausick (Germany)',1,1,0),(9899,0,109700,'Bad Mergentheim','Germany','DE','Bad Mergentheim (Germany)',1,1,0),(9900,0,109701,'Bad Mitterndorf','Austria','AT','Bad Mitterndorf (Austria)',1,1,0),(9901,0,109702,'Bad Mondorf','Luxembourg','LU','Bad Mondorf (Luxembourg)',1,1,0),(9902,0,109703,'Bad Neuenahr-Ahrweiler','Germany','DE','Bad Neuenahr-Ahrweiler (Germany)',1,1,0),(9903,0,109704,'Bad Schonborn','Germany','DE','Bad Schonborn (Germany)',1,1,0),(9904,0,109705,'Bad Schwarzsee','Switzerland','CH','Bad Schwarzsee (Switzerland)',1,1,0),(9905,0,109706,'Bad Segeberg','Germany','DE','Bad Segeberg (Germany)',1,1,0),(9906,0,109707,'Bad St. Leonhard im Lavanttal','Austria','AT','Bad St. Leonhard im Lavanttal (Austria)',1,1,0),(9907,0,109708,'Bad Sulza','Germany','DE','Bad Sulza (Germany)',1,1,0),(9908,0,109709,'Bad Uberkingen','Germany','DE','Bad Uberkingen (Germany)',1,1,0),(9909,0,109710,'Bad Vilbel','Germany','DE','Bad Vilbel (Germany)',1,1,0),(9910,0,109711,'Bad Wiessee','Germany','DE','Bad Wiessee (Germany)',1,1,0),(9911,0,109712,'Bad Windsheim','Germany','DE','Bad Windsheim (Germany)',1,1,0),(9912,0,109713,'Bad Wurzach','Germany','DE','Bad Wurzach (Germany)',1,1,0),(9913,0,109714,'Bad Zell','Austria','AT','Bad Zell (Austria)',1,1,0),(9914,0,109715,'Badacsony','Hungary','HU','Badacsony (Hungary)',1,1,0),(9915,1982,109716,'Badalona','Spain','ES','Badalona (Spain)',1,1,0),(9916,1991,109717,'Baden','Switzerland','CH','Baden (Switzerland)',1,1,0),(9917,0,109718,'Bafra','Cyprus','CY','Bafra (Cyprus)',1,1,0),(9918,2013,109719,'Bagergue','Spain','ES','Bagergue (Spain)',1,1,0),(9919,0,109720,'Bagnara di Romagna','Italy','IT','Bagnara di Romagna (Italy)',1,1,0),(9920,2028,109721,'Bagnoles-de-l\'Orne','France','FR','Bagnoles-de-l\'Orne (France)',1,1,0),(9921,2037,109722,'Baguio','Philippines','PH','Baguio (Philippines)',1,1,0),(9922,2051,109723,'Bahrain','Bahrain','BH','Bahrain (Bahrain)',1,1,0),(9923,0,109724,'Bailey\'s Bay','Bermuda','BM','Bailey\'s Bay (Bermuda)',1,1,0),(9924,0,109725,'Baileys Harbor','United States of America','US','Baileys Harbor (United States of America)',1,1,0),(9925,0,109726,'Baindlkirch','Germany','DE','Baindlkirch (Germany)',1,1,0),(9926,2081,109727,'Baishan','China','CN','Baishan (China)',1,1,0),(9927,0,109728,'Balakong','Malaysia','MY','Balakong (Malaysia)',1,1,0),(9928,0,109729,'Balangan','Indonesia','ID','Balangan (Indonesia)',1,1,0),(9929,0,109730,'Balatonkeresztur','Hungary','HU','Balatonkeresztur (Hungary)',1,1,0),(9930,2116,109731,'Balatonszarszo','Hungary','HU','Balatonszarszo (Hungary)',1,1,0),(9931,0,109732,'Balbigny','France','FR','Balbigny (France)',1,1,0),(9932,2123,109733,'Bald Knob','Australia','AU','Bald Knob (Australia)',1,1,0),(9933,0,109734,'Bald Knob','United States of America','US','Bald Knob (United States of America)',1,1,0),(9934,0,109735,'Balje','Germany','DE','Balje (Germany)',1,1,0),(9935,0,109736,'Ballachulish','United Kingdom','UK','Ballachulish (United Kingdom)',1,1,0),(9936,0,109737,'Balleroy','France','FR','Balleroy (France)',1,1,0),(9937,1634,109738,'Asprovalta','Greece','GR','Asprovalta (Greece)',1,1,0),(9938,0,109739,'Assesse','Belgium','BE','Assesse (Belgium)',1,1,0),(9939,0,109740,'Astaffort','France','FR','Astaffort (France)',1,1,0),(9940,0,109741,'Astfeld','Italy','IT','Astfeld (Italy)',1,1,0),(9941,1652,109742,'Asti','Italy','IT','Asti (Italy)',1,1,0),(9942,0,109743,'Astun','Spain','ES','Astun (Spain)',1,1,0),(9943,1666,109744,'Atami','Japan','JP','Atami (Japan)',1,1,0),(9944,0,109745,'Atessa','Italy','IT','Atessa (Italy)',1,1,0),(9945,1679,109746,'Athenry','Ireland','IE','Athenry (Ireland)',1,1,0),(9946,0,109747,'Atienza','Spain','ES','Atienza (Spain)',1,1,0),(9947,0,109748,'Atlanta','United States of America','US','Atlanta (United States of America)',1,1,0),(9948,0,109749,'Atlantic Highlands','United States of America','US','Atlantic Highlands (United States of America)',1,1,0),(9949,0,109750,'Atur','France','FR','Atur (France)',1,1,0),(9950,30571,109751,'Au','Austria','AT','Au (Austria)',1,1,0),(9951,0,109752,'Au in der Hallertau','Germany','DE','Au in der Hallertau (Germany)',1,1,0),(9952,1742,109753,'Aubiere','France','FR','Aubiere (France)',1,1,0),(9953,0,109754,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(9954,0,109755,'Augst','Switzerland','CH','Augst (Switzerland)',1,1,0),(9955,0,109756,'Auland','Austria','AT','Auland (Austria)',1,1,0),(9956,1787,109757,'Aups','France','FR','Aups (France)',1,1,0),(9957,0,109758,'Aurel','France','FR','Aurel (France)',1,1,0),(9958,1802,109759,'Aurora','Canada','CA','Aurora (Canada)',1,1,0),(9959,0,109760,'Aus','Namibia','NA','Aus (Namibia)',1,1,0),(9960,0,109761,'Austin','United States of America','US','Austin (United States of America)',1,1,0),(9961,1811,109762,'Austinburg','United States of America','US','Austinburg (United States of America)',1,1,0),(9962,1816,109763,'Auxerre','France','FR','Auxerre (France)',1,1,0),(9963,1822,109764,'Avaldsnes','Norway','NO','Avaldsnes (Norway)',1,1,0),(9964,0,109765,'Avelgem','Belgium','BE','Avelgem (Belgium)',1,1,0),(9965,1845,109766,'Avermes','France','FR','Avermes (France)',1,1,0),(9966,1856,109767,'Aviatico','Italy','IT','Aviatico (Italy)',1,1,0),(9967,1865,109768,'Avinyonet de Puigventos','Spain','ES','Avinyonet de Puigventos (Spain)',1,1,0),(9968,1880,109769,'Avranches','France','FR','Avranches (France)',1,1,0),(9969,0,109770,'Awka','Nigeria','NG','Awka (Nigeria)',1,1,0),(9970,0,109771,'Axat','France','FR','Axat (France)',1,1,0),(9971,0,109772,'Axbridge','United Kingdom','UK','Axbridge (United Kingdom)',1,1,0),(9972,1897,109773,'Ayacucho','Peru','PE','Ayacucho (Peru)',1,1,0),(9973,1899,109774,'Ayamonte','Spain','ES','Ayamonte (Spain)',1,1,0),(9974,0,109775,'Ayot Saint Lawrence','United Kingdom','UK','Ayot Saint Lawrence (United Kingdom)',1,1,0),(9975,1939,109776,'Azofra','Spain','ES','Azofra (Spain)',1,1,0),(9976,0,109777,'Azolimnos','Greece','GR','Azolimnos (Greece)',1,1,0),(9977,1944,109778,'Azul','Argentina','AR','Azul (Argentina)',1,1,0),(9978,0,109779,'Ba','Fiji Islands','FJ','Ba (Fiji Islands)',1,1,0),(9979,0,109780,'Baalbek','Lebanon','LB','Baalbek (Lebanon)',1,1,0),(9980,0,109781,'Baar (Eifel)','Germany','DE','Baar (Eifel) (Germany)',1,1,0),(9981,0,109782,'Babanango','South Africa','ZA','Babanango (South Africa)',1,1,0),(9982,0,109783,'Babbacombe','United Kingdom','UK','Babbacombe (United Kingdom)',1,1,0),(9983,0,109784,'Bad Abbach','Germany','DE','Bad Abbach (Germany)',1,1,0),(9984,0,109785,'Bad Berka','Germany','DE','Bad Berka (Germany)',1,1,0),(9985,0,109786,'Bad Blankenburg','Germany','DE','Bad Blankenburg (Germany)',1,1,0),(9986,0,109787,'Bad Bocklet','Germany','DE','Bad Bocklet (Germany)',1,1,0),(9987,0,109788,'Bad Bodenteich','Germany','DE','Bad Bodenteich (Germany)',1,1,0),(9988,0,109789,'Bad Bramstedt','Germany','DE','Bad Bramstedt (Germany)',1,1,0),(9989,0,109790,'Bad Elster','Germany','DE','Bad Elster (Germany)',1,1,0),(9990,0,109791,'Bad Endbach','Germany','DE','Bad Endbach (Germany)',1,1,0),(9991,0,109792,'Bad Gastein','Austria','AT','Bad Gastein (Austria)',1,1,0),(9992,0,109793,'Bad Gogging','Germany','DE','Bad Gogging (Germany)',1,1,0),(9993,0,109794,'Bad Hall','Austria','AT','Bad Hall (Austria)',1,1,0),(9994,0,109795,'Bad Harzburg','Germany','DE','Bad Harzburg (Germany)',1,1,0),(9995,0,109796,'Bad Hofgastein','Austria','AT','Bad Hofgastein (Austria)',1,1,0),(9996,0,109797,'Bad Homburg','Germany','DE','Bad Homburg (Germany)',1,1,0),(9997,0,109798,'Bad Honnef','Germany','DE','Bad Honnef (Germany)',1,1,0),(9998,0,109799,'Bad Kreuzen','Austria','AT','Bad Kreuzen (Austria)',1,1,0),(9999,0,109800,'Bad Lauterberg','Germany','DE','Bad Lauterberg (Germany)',1,1,0),(10000,0,109801,'Bad Rippoldsau','Germany','DE','Bad Rippoldsau (Germany)',1,1,0),(10001,0,109802,'Bad Schallerbach','Austria','AT','Bad Schallerbach (Austria)',1,1,0),(10002,0,109803,'Bad Scuol / Scuol/ Schuls','Switzerland','CH','Bad Scuol / Scuol/ Schuls (Switzerland)',1,1,0),(10003,0,109804,'Bad Sooden-Allendorf','Germany','DE','Bad Sooden-Allendorf (Germany)',1,1,0),(10004,0,109805,'Bad Urach','Germany','DE','Bad Urach (Germany)',1,1,0),(10005,0,109806,'Bad Voslau','Austria','AT','Bad Voslau (Austria)',1,1,0),(10006,0,109807,'Bad Waldliesborn','Germany','DE','Bad Waldliesborn (Germany)',1,1,0),(10007,0,109808,'Bad Waltersdorf','Austria','AT','Bad Waltersdorf (Austria)',1,1,0),(10008,0,109809,'Bad Wildungen','Germany','DE','Bad Wildungen (Germany)',1,1,0),(10009,0,109810,'Bad Zwischenahn','Germany','DE','Bad Zwischenahn (Germany)',1,1,0),(10010,1990,109811,'Baden','France','FR','Baden (France)',1,1,0),(10011,1992,109812,'Baden-Baden','Germany','DE','Baden-Baden (Germany)',1,1,0),(10012,0,109813,'Badminton','United Kingdom','UK','Badminton (United Kingdom)',1,1,0),(10013,2018,109815,'Bagheria','Italy','IT','Bagheria (Italy)',1,1,0),(10014,2021,109816,'Bagnatica','Italy','IT','Bagnatica (Italy)',1,1,0),(10015,0,109817,'Bagnol','France','FR','Bagnol (France)',1,1,0),(10016,2032,109818,'Bagnols-sur-Ceze','France','FR','Bagnols-sur-Ceze (France)',1,1,0),(10017,0,109819,'Bahia Feliz','Spain','ES','Bahia Feliz (Spain)',1,1,0),(10018,0,109820,'Baia Sardinia','Italy','IT','Baia Sardinia (Italy)',1,1,0),(10019,0,109821,'Baie du Tombeau','Mauritius','MU','Baie du Tombeau (Mauritius)',1,1,0),(10020,2077,109822,'Bainbridge','United States of America','US','Bainbridge (United States of America)',1,1,0),(10021,2089,109823,'Bajamar','Spain','ES','Bajamar (Spain)',1,1,0),(10022,0,109824,'Bal Harbour/Miami Beach','United States of America','US','Bal Harbour/Miami Beach (United States of America)',1,1,0),(10023,2102,109825,'Balaclava','Mauritius','MU','Balaclava (Mauritius)',1,1,0),(10024,0,109826,'Balashikha','Russia','RU','Balashikha (Russia)',1,1,0),(10025,2112,109827,'Balatonkenese','Hungary','HU','Balatonkenese (Hungary)',1,1,0),(10026,2129,109828,'Baldwin','United States of America','US','Baldwin (United States of America)',1,1,0),(10027,2134,109829,'Balfour','New Zealand','NZ','Balfour (New Zealand)',1,1,0),(10028,0,109830,'Ballrechten-Dottingen','Germany','DE','Ballrechten-Dottingen (Germany)',1,1,0),(10029,0,109831,'Ballum (Ameland)','Netherlands','NL','Ballum (Ameland) (Netherlands)',1,1,0),(10030,0,109832,'Ballyclare','United Kingdom','UK','Ballyclare (United Kingdom)',1,1,0),(10031,2183,109833,'Ballydavid','Ireland','IE','Ballydavid (Ireland)',1,1,0),(10032,0,109834,'Ballyvourney','Ireland','IE','Ballyvourney (Ireland)',1,1,0),(10033,0,109835,'Balule Nature Reserve','South Africa','ZA','Balule Nature Reserve (South Africa)',1,1,0),(10034,2222,109836,'Bamberg','Germany','DE','Bamberg (Germany)',1,1,0),(10035,0,109837,'Banchory','United Kingdom','UK','Banchory (United Kingdom)',1,1,0),(10036,0,109838,'Bangor','France','FR','Bangor (France)',1,1,0),(10037,2280,109839,'Bannockburn','United States of America','US','Bannockburn (United States of America)',1,1,0),(10038,0,109840,'Banska Stiavnica (Schemnitz)','Slovakia','SK','Banska Stiavnica (Schemnitz) (Slovakia)',1,1,0),(10039,2292,109841,'Banyalbufar','Spain','ES','Banyalbufar (Spain)',1,1,0),(10040,0,109842,'Banyuls','France','FR','Banyuls (France)',1,1,0),(10041,2298,109843,'Bao\'an','China','CN','Bao\'an (China)',1,1,0),(10042,2301,109844,'Baoji','China','CN','Baoji (China)',1,1,0),(10043,2314,109845,'Baraga','United States of America','US','Baraga (United States of America)',1,1,0),(10044,0,109846,'Baranzate','Italy','IT','Baranzate (Italy)',1,1,0),(10045,2351,109847,'Barcaldine','Australia','AU','Barcaldine (Australia)',1,1,0),(10046,0,109848,'Argenbuhl-Eglofs','Germany','DE','Argenbuhl-Eglofs (Germany)',1,1,0),(10047,1384,109849,'Argenteuil','France','FR','Argenteuil (France)',1,1,0),(10048,1386,109850,'Argentona','Spain','ES','Argentona (Spain)',1,1,0),(10049,0,109851,'Argenton-l\'Eglise','France','FR','Argenton-l\'Eglise (France)',1,1,0),(10050,0,109852,'Argenton-sur-Creuse','France','FR','Argenton-sur-Creuse (France)',1,1,0),(10051,0,109853,'Argent-sur-Sauldre','France','FR','Argent-sur-Sauldre (France)',1,1,0),(10052,0,109854,'Arguero','Spain','ES','Arguero (Spain)',1,1,0),(10053,1409,109855,'Arinsal','Andorra','AD','Arinsal (Andorra)',1,1,0),(10054,1418,109856,'Arkaroola','Australia','AU','Arkaroola (Australia)',1,1,0),(10055,0,109857,'Arkhangelskoye','Russia','RU','Arkhangelskoye (Russia)',1,1,0),(10056,1422,109858,'Arklow','Ireland','IE','Arklow (Ireland)',1,1,0),(10057,0,109859,'Arkutino','Bulgaria','BG','Arkutino (Bulgaria)',1,1,0),(10058,1424,109860,'Arlanda','Sweden','SE','Arlanda (Sweden)',1,1,0),(10059,0,109861,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(10060,1431,109862,'Arma di Taggia','Italy','IT','Arma di Taggia (Italy)',1,1,0),(10061,1432,109863,'Armacao de Pera','Portugal','PT','Armacao de Pera (Portugal)',1,1,0),(10062,0,109864,'Armadale','United Kingdom','UK','Armadale (United Kingdom)',1,1,0),(10063,0,109865,'Armintza','Spain','ES','Armintza (Spain)',1,1,0),(10064,1462,109866,'Arnesano','Italy','IT','Arnesano (Italy)',1,1,0),(10065,0,109867,'Arnhem','Australia','AU','Arnhem (Australia)',1,1,0),(10066,0,109868,'Arnsbruck','Germany','DE','Arnsbruck (Germany)',1,1,0),(10067,1472,109869,'Arnstadt','Germany','DE','Arnstadt (Germany)',1,1,0),(10068,0,109870,'Arpaillargues-et-Aureillac','France','FR','Arpaillargues-et-Aureillac (France)',1,1,0),(10069,0,109871,'Arpajon sur Cere','France','FR','Arpajon sur Cere (France)',1,1,0),(10070,0,109873,'Arques-la-Bataille','France','FR','Arques-la-Bataille (France)',1,1,0),(10071,0,109874,'Arraial do Cabo','Brazil','BR','Arraial do Cabo (Brazil)',1,1,0),(10072,0,109875,'Arrieta','Spain','ES','Arrieta (Spain)',1,1,0),(10073,1507,109876,'Arta','Spain','ES','Arta (Spain)',1,1,0),(10074,0,109877,'Artemare','France','FR','Artemare (France)',1,1,0),(10075,0,109878,'Artstetten','Austria','AT','Artstetten (Austria)',1,1,0),(10076,0,109879,'Artziniega','Spain','ES','Artziniega (Spain)',1,1,0),(10077,1527,109880,'Aruba','Aruba','AW','Aruba (Aruba)',1,1,0),(10078,0,109881,'Arudy','France','FR','Arudy (France)',1,1,0),(10079,0,109882,'Arugam','Sri Lanka','LK','Arugam (Sri Lanka)',1,1,0),(10080,1539,109883,'Arvidsjaur','Sweden','SE','Arvidsjaur (Sweden)',1,1,0),(10081,0,109884,'Arys','Poland','PL','Arys (Poland)',1,1,0),(10082,0,109885,'Asbach-Sickenberg','Germany','DE','Asbach-Sickenberg (Germany)',1,1,0),(10083,1562,109886,'Aschersleben','Germany','DE','Aschersleben (Germany)',1,1,0),(10084,1565,109887,'Ascochinga','Argentina','AR','Ascochinga (Argentina)',1,1,0),(10085,1568,109888,'Ascot','Australia','AU','Ascot (Australia)',1,1,0),(10086,0,109889,'Asgourou','Greece','GR','Asgourou (Greece)',1,1,0),(10087,1578,109890,'Ashbourne','Ireland','IE','Ashbourne (Ireland)',1,1,0),(10088,1590,109891,'Asheville','United States of America','US','Asheville (United States of America)',1,1,0),(10089,1593,109892,'Ashford','United States of America','US','Ashford (United States of America)',1,1,0),(10090,0,109893,'Ashford-in-the-Water','United Kingdom','UK','Ashford-in-the-Water (United Kingdom)',1,1,0),(10091,1612,109894,'Asker','Norway','NO','Asker (Norway)',1,1,0),(10092,1613,109895,'Askersund','Sweden','SE','Askersund (Sweden)',1,1,0),(10093,1617,109896,'Asnieres','France','FR','Asnieres (France)',1,1,0),(10094,0,109897,'Aspang-Markt','Austria','AT','Aspang-Markt (Austria)',1,1,0),(10095,1624,109898,'Aspen','United States of America','US','Aspen (United States of America)',1,1,0),(10096,0,109899,'Asperen','Netherlands','NL','Asperen (Netherlands)',1,1,0),(10097,1631,109900,'Aspra','Italy','IT','Aspra (Italy)',1,1,0),(10098,1651,109901,'Asten','Netherlands','NL','Asten (Netherlands)',1,1,0),(10099,1669,109902,'Atascadero','United States of America','US','Atascadero (United States of America)',1,1,0),(10100,0,109903,'Atlacomulco de Fabela','Mexico','MX','Atlacomulco de Fabela (Mexico)',1,1,0),(10101,0,109904,'Atlanta','United States of America','US','Atlanta (United States of America)',1,1,0),(10102,0,109905,'Atlantic City','United States of America','US','Atlantic City (United States of America)',1,1,0),(10103,0,109906,'Atripalda','Italy','IT','Atripalda (Italy)',1,1,0),(10104,0,109907,'Atsipopoulos','Greece','GR','Atsipopoulos (Greece)',1,1,0),(10105,0,109908,'Attendorn','Germany','DE','Attendorn (Germany)',1,1,0),(10106,0,109909,'Attersee (Lake Atter)','Austria','AT','Attersee (Lake Atter) (Austria)',1,1,0),(10107,1729,109910,'Attleboro','United States of America','US','Attleboro (United States of America)',1,1,0),(10108,0,109911,'Attleborough','United Kingdom','UK','Attleborough (United Kingdom)',1,1,0),(10109,0,109912,'Attnang-Puchheim','Austria','AT','Attnang-Puchheim (Austria)',1,1,0),(10110,1735,109913,'Atyrau','Kazakhstan','KZ','Atyrau (Kazakhstan)',1,1,0),(10111,0,109914,'Atzelgift','Germany','DE','Atzelgift (Germany)',1,1,0),(10112,0,109915,'Auberville','France','FR','Auberville (France)',1,1,0),(10113,0,109916,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(10114,0,109917,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(10115,1747,109918,'Auburndale','United States of America','US','Auburndale (United States of America)',1,1,0),(10116,1757,109919,'Audubon','United States of America','US','Audubon (United States of America)',1,1,0),(10117,0,109920,'Augne','France','FR','Augne (France)',1,1,0),(10118,1776,109921,'Aulla','Italy','IT','Aulla (Italy)',1,1,0),(10119,1779,109922,'Aulnay-sous-Bois','France','FR','Aulnay-sous-Bois (France)',1,1,0),(10120,0,109923,'Auma','Germany','DE','Auma (Germany)',1,1,0),(10121,1784,109924,'Aumont-Aubrac','France','FR','Aumont-Aubrac (France)',1,1,0),(10122,0,109925,'Auritz/Burguete','Spain','ES','Auritz/Burguete (Spain)',1,1,0),(10123,0,109926,'Aurora','United States of America','US','Aurora (United States of America)',1,1,0),(10124,1814,109927,'Autrans','France','FR','Autrans (France)',1,1,0),(10125,0,109928,'Auxi-le-Chateau','France','FR','Auxi-le-Chateau (France)',1,1,0),(10126,1818,109929,'Auxonne','France','FR','Auxonne (France)',1,1,0),(10127,0,109930,'Avaray','France','FR','Avaray (France)',1,1,0),(10128,0,109931,'Ave-et-Auffe','Belgium','BE','Ave-et-Auffe (Belgium)',1,1,0),(10129,1842,109932,'Avensan','France','FR','Avensan (France)',1,1,0),(10130,1843,109933,'Aventura','United States of America','US','Aventura (United States of America)',1,1,0),(10131,0,109934,'Aviemore','United Kingdom','UK','Aviemore (United Kingdom)',1,1,0),(10132,0,109935,'Avis','Portugal','PT','Avis (Portugal)',1,1,0),(10133,0,109936,'Aye','Belgium','BE','Aye (Belgium)',1,1,0),(10134,0,109937,'Baarland','Netherlands','NL','Baarland (Netherlands)',1,1,0),(10135,0,109938,'Bab Ezzouar','Algeria','DZ','Bab Ezzouar (Algeria)',1,1,0),(10136,0,109939,'Babberich','Netherlands','NL','Babberich (Netherlands)',1,1,0),(10137,0,109940,'Baciu','Romania','RO','Baciu (Romania)',1,1,0),(10138,1974,109941,'Bacolod','Philippines','PH','Bacolod (Philippines)',1,1,0),(10139,0,109942,'Bacva','Croatia','HR','Bacva (Croatia)',1,1,0),(10140,0,109943,'Bad Altheide (Polanica Zdroj)','Poland','PL','Bad Altheide (Polanica Zdroj) (Poland)',1,1,0),(10141,0,109944,'Bad Arolsen','Germany','DE','Bad Arolsen (Germany)',1,1,0),(10142,1978,109945,'Bad Axe','United States of America','US','Bad Axe (United States of America)',1,1,0),(10143,0,109946,'Bad Bayersoien','Germany','DE','Bad Bayersoien (Germany)',1,1,0),(10144,0,109947,'Bad Bellingen','Germany','DE','Bad Bellingen (Germany)',1,1,0),(10145,0,109948,'Bad Belzig','Germany','DE','Bad Belzig (Germany)',1,1,0),(10146,0,109949,'Bad Buchau','Germany','DE','Bad Buchau (Germany)',1,1,0),(10147,0,109950,'Bad Deutsch-Altenburg','Austria','AT','Bad Deutsch-Altenburg (Austria)',1,1,0),(10148,0,109951,'Bad Durkheim','Germany','DE','Bad Durkheim (Germany)',1,1,0),(10149,0,109952,'Bad Ems','Germany','DE','Bad Ems (Germany)',1,1,0),(10150,0,109953,'Bad Emstal','Germany','DE','Bad Emstal (Germany)',1,1,0),(10151,0,109954,'Bad Essen','Germany','DE','Bad Essen (Germany)',1,1,0),(10152,0,109955,'Bad Frankenhausen','Germany','DE','Bad Frankenhausen (Germany)',1,1,0),(10153,0,109956,'Bad Leonfelden','Austria','AT','Bad Leonfelden (Austria)',1,1,0),(10154,1373,109957,'Arezzo','Italy','IT','Arezzo (Italy)',1,1,0),(10155,0,109958,'Argalasti','Greece','GR','Argalasti (Greece)',1,1,0),(10156,1377,109959,'Argegno','Italy','IT','Argegno (Italy)',1,1,0),(10157,0,109960,'Argos','Cyprus','CY','Argos (Cyprus)',1,1,0),(10158,1393,109961,'Argostoli','Greece','GR','Argostoli (Greece)',1,1,0),(10159,0,109962,'Arkassa','Greece','GR','Arkassa (Greece)',1,1,0),(10160,1426,109963,'Arles','France','FR','Arles (France)',1,1,0),(10161,1443,109964,'Armeria','Mexico','MX','Armeria (Mexico)',1,1,0),(10162,1444,109965,'Armidale','Australia','AU','Armidale (Australia)',1,1,0),(10163,0,109966,'Arnheim','Netherlands','NL','Arnheim (Netherlands)',1,1,0),(10164,0,109967,'Arnoia','Spain','ES','Arnoia (Spain)',1,1,0),(10165,0,109968,'Arnoldstein','Austria','AT','Arnoldstein (Austria)',1,1,0),(10166,1470,109969,'Arnprior','Canada','CA','Arnprior (Canada)',1,1,0),(10167,0,109970,'Arnsgereuth','Germany','DE','Arnsgereuth (Germany)',1,1,0),(10168,0,109971,'Aroeira','Portugal','PT','Aroeira (Portugal)',1,1,0),(10169,1475,109972,'Arona','Italy','IT','Arona (Italy)',1,1,0),(10170,0,109974,'Arqueves','France','FR','Arqueves (France)',1,1,0),(10171,1487,109975,'Arraiolos','Portugal','PT','Arraiolos (Portugal)',1,1,0),(10172,0,109976,'Arrochar','United Kingdom','UK','Arrochar (United Kingdom)',1,1,0),(10173,0,109977,'Arroyo Frio','Spain','ES','Arroyo Frio (Spain)',1,1,0),(10174,1503,109978,'Ars-en-Re','France','FR','Ars-en-Re (France)',1,1,0),(10175,0,109979,'Artesia','United States of America','US','Artesia (United States of America)',1,1,0),(10176,1518,109980,'Arthurstown','Ireland','IE','Arthurstown (Ireland)',1,1,0),(10177,0,109981,'Arvert','France','FR','Arvert (France)',1,1,0),(10178,0,109982,'Arzberg','Germany','DE','Arzberg (Germany)',1,1,0),(10179,1550,109983,'Asahikawa','Japan','JP','Asahikawa (Japan)',1,1,0),(10180,1551,109984,'Asakura','Japan','JP','Asakura (Japan)',1,1,0),(10181,0,109985,'Aschau','Austria','AT','Aschau (Austria)',1,1,0),(10182,1564,109986,'Asciano','Italy','IT','Asciano (Italy)',1,1,0),(10183,1574,109987,'Aserri','Costa Rica','CR','Aserri (Costa Rica)',1,1,0),(10184,1575,109988,'Asgardstrand','Norway','NO','Asgardstrand (Norway)',1,1,0),(10185,1588,109989,'Ashdown','United States of America','US','Ashdown (United States of America)',1,1,0),(10186,1594,109990,'Ashford','Ireland','IE','Ashford (Ireland)',1,1,0),(10187,0,109991,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(10188,0,109992,'Ashland City','United States of America','US','Ashland City (United States of America)',1,1,0),(10189,1619,109993,'Asnieres-sur-Seine','France','FR','Asnieres-sur-Seine (France)',1,1,0),(10190,1620,109994,'Aso','Japan','JP','Aso (Japan)',1,1,0),(10191,1628,109995,'Aspin En Lavedan','France','FR','Aspin En Lavedan (France)',1,1,0),(10192,0,109996,'Asselborn','Luxembourg','LU','Asselborn (Luxembourg)',1,1,0),(10193,1637,109997,'Assemini','Italy','IT','Assemini (Italy)',1,1,0),(10194,1656,109998,'Astorga','Spain','ES','Astorga (Spain)',1,1,0),(10195,1657,109999,'Astoria','United States of America','US','Astoria (United States of America)',1,1,0),(10196,1680,110000,'Athens','Greece','GR','Athens (Greece)',1,1,0),(10197,0,110001,'Athens','United States of America','US','Athens (United States of America)',1,1,0),(10198,0,110002,'Atlantic Beach','United States of America','US','Atlantic Beach (United States of America)',1,1,0),(10199,0,110003,'Attergau','Austria','AT','Attergau (Austria)',1,1,0),(10200,30572,110004,'Au Gres','United States of America','US','Au Gres (United States of America)',1,1,0),(10201,1736,110005,'Aubagne','France','FR','Aubagne (France)',1,1,0),(10202,0,110006,'Aubange','Belgium','BE','Aubange (Belgium)',1,1,0),(10203,1739,110007,'Aubenas','France','FR','Aubenas (France)',1,1,0),(10204,0,110008,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(10205,0,110009,'Auerbach/Vogtl.','Germany','DE','Auerbach/Vogtl. (Germany)',1,1,0),(10206,0,110010,'Auersbach','Austria','AT','Auersbach (Austria)',1,1,0),(10207,0,110011,'Aufse?','Germany','DE','Aufse? (Germany)',1,1,0),(10208,1761,110012,'Augerville-la-Riviere','France','FR','Augerville-la-Riviere (France)',1,1,0),(10209,0,110013,'Augusta','United States of America','US','Augusta (United States of America)',1,1,0),(10210,1770,110014,'Augustow','Poland','PL','Augustow (Poland)',1,1,0),(10211,0,110015,'Aulnay','France','FR','Aulnay (France)',1,1,0),(10212,1791,110016,'Auray','France','FR','Auray (France)',1,1,0),(10213,0,110017,'Aurec-sur-Loire','France','FR','Aurec-sur-Loire (France)',1,1,0),(10214,1792,110018,'Aureilhan','France','FR','Aureilhan (France)',1,1,0),(10215,0,110019,'Auris en Oisans','France','FR','Auris en Oisans (France)',1,1,0),(10216,0,110020,'Auschwitz','Poland','PL','Auschwitz (Poland)',1,1,0),(10217,1806,110021,'Aussois','France','FR','Aussois (France)',1,1,0),(10218,1827,110022,'Avanos','Turkey','TR','Avanos (Turkey)',1,1,0),(10219,1831,110023,'Avdou','Greece','GR','Avdou (Greece)',1,1,0),(10220,1833,110024,'Aveiro','Portugal','PT','Aveiro (Portugal)',1,1,0),(10221,1841,110025,'Avenel','United States of America','US','Avenel (United States of America)',1,1,0),(10222,1862,110026,'Avila Beach','United States of America','US','Avila Beach (United States of America)',1,1,0),(10223,1870,110027,'Avoca Beach','Australia','AU','Avoca Beach (Australia)',1,1,0),(10224,0,110028,'Avon by the Sea','United States of America','US','Avon by the Sea (United States of America)',1,1,0),(10225,1879,110029,'Avoriaz','France','FR','Avoriaz (France)',1,1,0),(10226,0,110030,'Axim','Ghana','GH','Axim (Ghana)',1,1,0),(10227,1894,110031,'Ax-les-Thermes','France','FR','Ax-les-Thermes (France)',1,1,0),(10228,0,110032,'Aylesbury','United Kingdom','UK','Aylesbury (United Kingdom)',1,1,0),(10229,0,110033,'Ayr','United Kingdom','UK','Ayr (United Kingdom)',1,1,0),(10230,1926,110034,'Ayutthaya','Thailand','TH','Ayutthaya (Thailand)',1,1,0),(10231,1929,110035,'Aywaille','Belgium','BE','Aywaille (Belgium)',1,1,0),(10232,1931,110036,'Azaruja','Portugal','PT','Azaruja (Portugal)',1,1,0),(10233,0,110037,'Azenhas do Mar','Portugal','PT','Azenhas do Mar (Portugal)',1,1,0),(10234,0,110038,'Aznalcazar','Spain','ES','Aznalcazar (Spain)',1,1,0),(10235,0,110039,'Azoia de Baixo','Portugal','PT','Azoia de Baixo (Portugal)',1,1,0),(10236,0,110040,'Azzano Mella','Italy','IT','Azzano Mella (Italy)',1,1,0),(10237,0,110042,'Baan Grood','Thailand','TH','Baan Grood (Thailand)',1,1,0),(10238,1955,110043,'Baarn','Netherlands','NL','Baarn (Netherlands)',1,1,0),(10239,0,110044,'Babelthuap','Palau','PW','Babelthuap (Palau)',1,1,0),(10240,0,110045,'Babi u Trunova','Czech Republic','CZ','Babi u Trunova (Czech Republic)',1,1,0),(10241,0,110046,'Babice Nowe','Poland','PL','Babice Nowe (Poland)',1,1,0),(10242,0,110047,'Bacabal','Brazil','BR','Bacabal (Brazil)',1,1,0),(10243,1965,110048,'Bacalar','Mexico','MX','Bacalar (Mexico)',1,1,0),(10244,0,110049,'Bad Bederkesa','Germany','DE','Bad Bederkesa (Germany)',1,1,0),(10245,0,110050,'Bad Endorf','Germany','DE','Bad Endorf (Germany)',1,1,0),(10246,0,110051,'Bad Erlach','Austria','AT','Bad Erlach (Austria)',1,1,0),(10247,0,110052,'Bad Fallingbostel','Germany','DE','Bad Fallingbostel (Germany)',1,1,0),(10248,0,110053,'Bad Godesberg','Germany','DE','Bad Godesberg (Germany)',1,1,0),(10249,0,110054,'Bad Griesbach','Germany','DE','Bad Griesbach (Germany)',1,1,0),(10250,0,110055,'Bad Gro?pertholz','Austria','AT','Bad Gro?pertholz (Austria)',1,1,0),(10251,0,110056,'Bad Grund','Germany','DE','Bad Grund (Germany)',1,1,0),(10252,0,110057,'Bad Haring','Austria','AT','Bad Haring (Austria)',1,1,0),(10253,0,110058,'Bad Honningen','Germany','DE','Bad Honningen (Germany)',1,1,0),(10254,0,110059,'Bad Kleinkirchheim','Austria','AT','Bad Kleinkirchheim (Austria)',1,1,0),(10255,0,110060,'Bad Laasphe','Germany','DE','Bad Laasphe (Germany)',1,1,0),(10256,0,110061,'Bad Langensalza','Germany','DE','Bad Langensalza (Germany)',1,1,0),(10257,0,110062,'Bad Munder am Deister','Germany','DE','Bad Munder am Deister (Germany)',1,1,0),(10258,0,110063,'Bad Munster am Stein-Eberburg','Germany','DE','Bad Munster am Stein-Eberburg (Germany)',1,1,0),(10259,0,110064,'Bad Nauheim','Germany','DE','Bad Nauheim (Germany)',1,1,0),(10260,0,110065,'Bad Peterstal-Griesbach','Germany','DE','Bad Peterstal-Griesbach (Germany)',1,1,0),(10261,0,110066,'Bad Radkersburg','Austria','AT','Bad Radkersburg (Austria)',1,1,0),(10262,1566,110067,'Ascoli Piceno','Italy','IT','Ascoli Piceno (Italy)',1,1,0),(10263,1580,110068,'Ashburn','United States of America','US','Ashburn (United States of America)',1,1,0),(10264,0,110069,'Ashburn','United States of America','US','Ashburn (United States of America)',1,1,0),(10265,0,110070,'Askeli','Greece','GR','Askeli (Greece)',1,1,0),(10266,1614,110071,'Askim','Norway','NO','Askim (Norway)',1,1,0),(10267,0,110072,'Askyfos','Greece','GR','Askyfos (Greece)',1,1,0),(10268,0,110073,'Asnelles-sur-Mer','France','FR','Asnelles-sur-Mer (France)',1,1,0),(10269,1643,110074,'Assisi','Italy','IT','Assisi (Italy)',1,1,0),(10270,0,110075,'A?lar','Germany','DE','A?lar (Germany)',1,1,0),(10271,1661,110076,'Astypalaia','Greece','GR','Astypalaia (Greece)',1,1,0),(10272,0,110077,'Atata','Tonga','TO','Atata (Tonga)',1,1,0),(10273,1673,110078,'Atchison','United States of America','US','Atchison (United States of America)',1,1,0),(10274,1678,110079,'Athboy','Ireland','IE','Athboy (Ireland)',1,1,0),(10275,1698,110080,'Atiu','Cook Islands','CK','Atiu (Cook Islands)',1,1,0),(10276,1720,110081,'Atsugi','Japan','JP','Atsugi (Japan)',1,1,0),(10277,0,110082,'Atterwasch','Germany','DE','Atterwasch (Germany)',1,1,0),(10278,1727,110083,'Attica','United States of America','US','Attica (United States of America)',1,1,0),(10279,0,110084,'Atvidaberg','Sweden','SE','Atvidaberg (Sweden)',1,1,0),(10280,1741,110085,'Aubervilliers','France','FR','Aubervilliers (France)',1,1,0),(10281,0,110086,'Auerbach','Austria','AT','Auerbach (Austria)',1,1,0),(10282,0,110087,'Auffach','Austria','AT','Auffach (Austria)',1,1,0),(10283,1762,110088,'Aughrim','Ireland','IE','Aughrim (Ireland)',1,1,0),(10284,1763,110089,'Augny','France','FR','Augny (France)',1,1,0),(10285,0,110090,'Augrabies Falls National Park','South Africa','ZA','Augrabies Falls National Park (South Africa)',1,1,0),(10286,0,110091,'Aukstadvaris','Lithuania','LT','Aukstadvaris (Lithuania)',1,1,0),(10287,0,110092,'Aumuhle','Germany','DE','Aumuhle (Germany)',1,1,0),(10288,1794,110093,'Aurich','Germany','DE','Aurich (Germany)',1,1,0),(10289,0,110094,'Autti','Finland','FI','Autti (Finland)',1,1,0),(10290,0,110095,'Auvillar','France','FR','Auvillar (France)',1,1,0),(10291,0,110096,'Avare','Brazil','BR','Avare (Brazil)',1,1,0),(10292,1852,110097,'Aveze','France','FR','Aveze (France)',1,1,0),(10293,1854,110098,'Avgonima','Greece','GR','Avgonima (Greece)',1,1,0),(10294,1861,110099,'Avila','Spain','ES','Avila (Spain)',1,1,0),(10295,0,110100,'Avlaki','Greece','GR','Avlaki (Greece)',1,1,0),(10296,0,110101,'Avon','United States of America','US','Avon (United States of America)',1,1,0),(10297,0,110102,'Avon (Seine-et-Marne)','France','FR','Avon (Seine-et-Marne) (France)',1,1,0),(10298,1883,110103,'Avrille','France','FR','Avrille (France)',1,1,0),(10299,1892,110104,'Axams','Austria','AT','Axams (Austria)',1,1,0),(10300,0,110105,'Axos','Greece','GR','Axos (Greece)',1,1,0),(10301,1900,110106,'Ayapango','Mexico','MX','Ayapango (Mexico)',1,1,0),(10302,0,110107,'Ayia Marina Chrysochous','Cyprus','CY','Ayia Marina Chrysochous (Cyprus)',1,1,0),(10303,0,110108,'Aying','Germany','DE','Aying (Germany)',1,1,0),(10304,1925,110109,'Ayutla','Mexico','MX','Ayutla (Mexico)',1,1,0),(10305,1937,110110,'Azle','United States of America','US','Azle (United States of America)',1,1,0),(10306,1942,110111,'Azpeitia','Spain','ES','Azpeitia (Spain)',1,1,0),(10307,1948,110112,'Azusa','United States of America','US','Azusa (United States of America)',1,1,0),(10308,0,110113,'Baabe','Germany','DE','Baabe (Germany)',1,1,0),(10309,1953,110114,'Baar','Switzerland','CH','Baar (Switzerland)',1,1,0),(10310,1957,110115,'Babbitt','United States of America','US','Babbitt (United States of America)',1,1,0),(10311,0,110116,'Baboon Islands','Gambia','GM','Baboon Islands (Gambia)',1,1,0),(10312,1966,110117,'Bacau','Romania','RO','Bacau (Romania)',1,1,0),(10313,1968,110118,'Baccarat','France','FR','Baccarat (France)',1,1,0),(10314,0,110119,'Bach','Germany','DE','Bach (Germany)',1,1,0),(10315,0,110120,'Bach im Lechtal','Austria','AT','Bach im Lechtal (Austria)',1,1,0),(10316,0,110121,'Bad Bergzabern','Germany','DE','Bad Bergzabern (Germany)',1,1,0),(10317,0,110122,'Bad Birnbach','Germany','DE','Bad Birnbach (Germany)',1,1,0),(10318,0,110123,'Bad Breisig','Germany','DE','Bad Breisig (Germany)',1,1,0),(10319,0,110124,'Bad Cannstatt','Germany','DE','Bad Cannstatt (Germany)',1,1,0),(10320,0,110125,'Bad Durrenberg','Germany','DE','Bad Durrenberg (Germany)',1,1,0),(10321,0,110126,'Bad Friedrichshall','Germany','DE','Bad Friedrichshall (Germany)',1,1,0),(10322,0,110127,'Bad Gams','Austria','AT','Bad Gams (Austria)',1,1,0),(10323,0,110128,'Bad Gleichenberg','Austria','AT','Bad Gleichenberg (Austria)',1,1,0),(10324,0,110129,'Bad Gronenbach','Germany','DE','Bad Gronenbach (Germany)',1,1,0),(10325,0,110130,'Bad Ischl','Austria','AT','Bad Ischl (Austria)',1,1,0),(10326,0,110131,'Bad Karlshafen','Germany','DE','Bad Karlshafen (Germany)',1,1,0),(10327,0,110132,'Bad Kohlgrub','Germany','DE','Bad Kohlgrub (Germany)',1,1,0),(10328,0,110133,'Bad Konigshofen im Grabfeld','Germany','DE','Bad Konigshofen im Grabfeld (Germany)',1,1,0),(10329,0,110134,'Bad Malente','Germany','DE','Bad Malente (Germany)',1,1,0),(10330,0,110135,'Bad Nenndorf','Germany','DE','Bad Nenndorf (Germany)',1,1,0),(10331,0,110136,'Bad Rappenau','Germany','DE','Bad Rappenau (Germany)',1,1,0),(10332,0,110137,'Bad Schussenried','Germany','DE','Bad Schussenried (Germany)',1,1,0),(10333,0,110138,'Bad Teinach','Germany','DE','Bad Teinach (Germany)',1,1,0),(10334,0,110139,'Bad Valkenburg','Netherlands','NL','Bad Valkenburg (Netherlands)',1,1,0),(10335,0,110140,'Bad Westernkotten','Germany','DE','Bad Westernkotten (Germany)',1,1,0),(10336,0,110141,'Badacsonylabdihegy','Hungary','HU','Badacsonylabdihegy (Hungary)',1,1,0),(10337,0,110142,'Baden by Vienna','Austria','AT','Baden by Vienna (Austria)',1,1,0),(10338,0,110143,'Badolato Marina','Italy','IT','Badolato Marina (Italy)',1,1,0),(10339,2004,110144,'Baerenthal','France','FR','Baerenthal (France)',1,1,0),(10340,0,110145,'Baga','Spain','ES','Baga (Spain)',1,1,0),(10341,0,110146,'Bagamoyo','Tanzania','TZ','Bagamoyo (Tanzania)',1,1,0),(10342,2008,110147,'Bagan','Myanmar','MM','Bagan (Myanmar)',1,1,0),(10343,2023,110148,'Bagneres-de-Luchon','France','FR','Bagneres-de-Luchon (France)',1,1,0),(10344,0,110149,'Bagneux (Marne)','France','FR','Bagneux (Marne) (France)',1,1,0),(10345,0,110150,'Bagno Roselle','Italy','IT','Bagno Roselle (Italy)',1,1,0),(10346,0,110151,'Bahia','Spain','ES','Bahia (Spain)',1,1,0),(10347,2047,110152,'Bahia de Caraquez','Ecuador','EC','Bahia de Caraquez (Ecuador)',1,1,0),(10348,2048,110153,'Bahia Inglesa','Chile','CL','Bahia Inglesa (Chile)',1,1,0),(10349,0,110154,'Bahlingen am Kaiserstuhl','Germany','DE','Bahlingen am Kaiserstuhl (Germany)',1,1,0),(10350,0,110155,'Baia da Traicao','Brazil','BR','Baia da Traicao (Brazil)',1,1,0),(10351,0,110156,'Baiao','Portugal','PT','Baiao (Portugal)',1,1,0),(10352,0,110157,'Baie Lazare','Seychelles','SC','Baie Lazare (Seychelles)',1,1,0),(10353,0,110158,'Baise','China','CN','Baise (China)',1,1,0),(10354,0,110159,'Bakhchisaray','Ukraine','UA','Bakhchisaray (Ukraine)',1,1,0),(10355,0,110160,'Bakkum','Netherlands','NL','Bakkum (Netherlands)',1,1,0),(10356,0,110161,'Balatonszemes','Hungary','HU','Balatonszemes (Hungary)',1,1,0),(10357,0,110162,'Balatonszepeszd','Hungary','HU','Balatonszepeszd (Hungary)',1,1,0),(10358,2117,110163,'Balatonvilagos','Hungary','HU','Balatonvilagos (Hungary)',1,1,0),(10359,2120,110164,'Balch Springs','United States of America','US','Balch Springs (United States of America)',1,1,0),(10360,0,110165,'Baldwin','United States of America','US','Baldwin (United States of America)',1,1,0),(10361,0,110166,'Baldwin Park','United States of America','US','Baldwin Park (United States of America)',1,1,0),(10362,0,110167,'Balf','Hungary','HU','Balf (Hungary)',1,1,0),(10363,2159,110168,'Ballerup','Denmark','DK','Ballerup (Denmark)',1,1,0),(10364,0,110169,'Ballinagare','Ireland','IE','Ballinagare (Ireland)',1,1,0),(10365,2164,110170,'Ballinasloe','Ireland','IE','Ballinasloe (Ireland)',1,1,0),(10366,0,110171,'Ballintleave','Ireland','IE','Ballintleave (Ireland)',1,1,0),(10367,0,110172,'Ballintoy','United Kingdom','UK','Ballintoy (United Kingdom)',1,1,0),(10368,2170,110173,'Ballito','South Africa','ZA','Ballito (South Africa)',1,1,0),(10369,0,110174,'Ballyfoyle','Ireland','IE','Ballyfoyle (Ireland)',1,1,0),(10370,0,110175,'Ballygally','United Kingdom','UK','Ballygally (United Kingdom)',1,1,0),(10371,1365,110176,'Arenys de Mar','Spain','ES','Arenys de Mar (Spain)',1,1,0),(10372,1371,110177,'Arette','France','FR','Arette (France)',1,1,0),(10373,0,110178,'Argamasilla de Alba','Spain','ES','Argamasilla de Alba (Spain)',1,1,0),(10374,0,110179,'Arganda del Rey','Spain','ES','Arganda del Rey (Spain)',1,1,0),(10375,0,110180,'Argentiera','Italy','IT','Argentiera (Italy)',1,1,0),(10376,1388,110181,'Argiroupoli','Greece','GR','Argiroupoli (Greece)',1,1,0),(10377,1392,110182,'Argos','Greece','GR','Argos (Greece)',1,1,0),(10378,0,110183,'Ari Atoll','Maldives','MV','Ari Atoll (Maldives)',1,1,0),(10379,1400,110184,'Ariano Irpino','Italy','IT','Ariano Irpino (Italy)',1,1,0),(10380,0,110185,'Arlate','Italy','IT','Arlate (Italy)',1,1,0),(10381,1427,110186,'Arlesheim','Switzerland','CH','Arlesheim (Switzerland)',1,1,0),(10382,0,110187,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(10383,1429,110188,'Arlon','Belgium','BE','Arlon (Belgium)',1,1,0),(10384,1437,110189,'Armamar','Portugal','PT','Armamar (Portugal)',1,1,0),(10385,1442,110190,'Armeno','Italy','IT','Armeno (Italy)',1,1,0),(10386,1458,110191,'Arnedillo','Spain','ES','Arnedillo (Spain)',1,1,0),(10387,0,110192,'Arniston','United Kingdom','UK','Arniston (United Kingdom)',1,1,0),(10388,1468,110193,'Arnold','United States of America','US','Arnold (United States of America)',1,1,0),(10389,0,110194,'Arolithos','Greece','GR','Arolithos (Greece)',1,1,0),(10390,1479,110195,'Arosa','Switzerland','CH','Arosa (Switzerland)',1,1,0),(10391,1489,110196,'Arras','France','FR','Arras (France)',1,1,0),(10392,0,110197,'Arrowhead','United States of America','US','Arrowhead (United States of America)',1,1,0),(10393,1499,110198,'Arrowtown','New Zealand','NZ','Arrowtown (New Zealand)',1,1,0),(10394,1501,110199,'Arroyo Grande','United States of America','US','Arroyo Grande (United States of America)',1,1,0),(10395,0,110200,'Arruda dos Vinhos','Portugal','PT','Arruda dos Vinhos (Portugal)',1,1,0),(10396,0,110201,'Arsos','Cyprus','CY','Arsos (Cyprus)',1,1,0),(10397,0,110202,'Artenara','Spain','ES','Artenara (Spain)',1,1,0),(10398,1519,110203,'Arties','Spain','ES','Arties (Spain)',1,1,0),(10399,1523,110204,'Artimino','Italy','IT','Artimino (Italy)',1,1,0),(10400,0,110205,'Arundel','United Kingdom','UK','Arundel (United Kingdom)',1,1,0),(10401,1533,110206,'Arusha','Tanzania','TZ','Arusha (Tanzania)',1,1,0),(10402,0,110207,'Arusha National Park','Tanzania','TZ','Arusha National Park (Tanzania)',1,1,0),(10403,1540,110208,'Arvieux','France','FR','Arvieux (France)',1,1,0),(10404,1541,110209,'Arvika','Sweden','SE','Arvika (Sweden)',1,1,0),(10405,0,110210,'Arzbach','Germany','DE','Arzbach (Germany)',1,1,0),(10406,0,110212,'Asbury Park','United States of America','US','Asbury Park (United States of America)',1,1,0),(10407,0,110213,'Asbyrgi','Iceland','IS','Asbyrgi (Iceland)',1,1,0),(10408,0,110214,'Aschach an der Donau','Austria','AT','Aschach an der Donau (Austria)',1,1,0),(10409,0,110215,'Aschau am Inn','Germany','DE','Aschau am Inn (Germany)',1,1,0),(10410,1567,110216,'Ascona','Switzerland','CH','Ascona (Switzerland)',1,1,0),(10411,1581,110217,'Ashburnham','United States of America','US','Ashburnham (United States of America)',1,1,0),(10412,0,110218,'Ashby St Ledgers','United Kingdom','UK','Ashby St Ledgers (United Kingdom)',1,1,0),(10413,0,110219,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(10414,0,110220,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(10415,1611,110221,'Asilah','Morocco','MA','Asilah (Morocco)',1,1,0),(10416,1618,110222,'Asnieres-sur-Nouere','France','FR','Asnieres-sur-Nouere (France)',1,1,0),(10417,0,110223,'Aspach (bei Backnang)','Germany','DE','Aspach (bei Backnang) (Germany)',1,1,0),(10418,0,110224,'Aspen','United States of America','US','Aspen (United States of America)',1,1,0),(10419,0,110225,'Assafora','Portugal','PT','Assafora (Portugal)',1,1,0),(10420,0,110226,'Assat','France','FR','Assat (France)',1,1,0),(10421,1639,110227,'Assens','Denmark','DK','Assens (Denmark)',1,1,0),(10422,0,110228,'Assergi','Italy','IT','Assergi (Italy)',1,1,0),(10423,0,110229,'Assini','Ivory Coast','CI','Assini (Ivory Coast)',1,1,0),(10424,0,110230,'Assling','Austria','AT','Assling (Austria)',1,1,0),(10425,0,110231,'Asteri','Greece','GR','Asteri (Greece)',1,1,0),(10426,0,110232,'Astiraki','Greece','GR','Astiraki (Greece)',1,1,0),(10427,0,110233,'Astrakhan','Russia','RU','Astrakhan (Russia)',1,1,0),(10428,1675,110234,'Atena Lucana','Italy','IT','Atena Lucana (Italy)',1,1,0),(10429,0,110235,'Athens','United States of America','US','Athens (United States of America)',1,1,0),(10430,0,110236,'Atoka','United States of America','US','Atoka (United States of America)',1,1,0),(10431,1717,110237,'Atrani','Italy','IT','Atrani (Italy)',1,1,0),(10432,1722,110238,'Attard','Malta','MT','Attard (Malta)',1,1,0),(10433,0,110239,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(10434,0,110240,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(10435,0,110241,'Aucun','France','FR','Aucun (France)',1,1,0),(10436,0,110242,'Audenge','France','FR','Audenge (France)',1,1,0),(10437,0,110243,'Auen','Germany','DE','Auen (Germany)',1,1,0),(10438,0,110244,'Auerbach in der Oberpfalz','Germany','DE','Auerbach in der Oberpfalz (Germany)',1,1,0),(10439,1760,110245,'Aufkirchen','Germany','DE','Aufkirchen (Germany)',1,1,0),(10440,0,110246,'Augusta','United States of America','US','Augusta (United States of America)',1,1,0),(10441,0,110247,'Auldgirth','United Kingdom','UK','Auldgirth (United Kingdom)',1,1,0),(10442,0,110249,'Aureille','France','FR','Aureille (France)',1,1,0),(10443,1793,110250,'Auribeau-sur-Siagne','France','FR','Auribeau-sur-Siagne (France)',1,1,0),(10444,0,110251,'Avalon','United States of America','US','Avalon (United States of America)',1,1,0),(10445,0,110252,'Averill Park','United States of America','US','Averill Park (United States of America)',1,1,0),(10446,0,110253,'Avigliano Umbro','Italy','IT','Avigliano Umbro (Italy)',1,1,0),(10447,1866,110254,'Aviston','United States of America','US','Aviston (United States of America)',1,1,0),(10448,1868,110255,'Avoca','United States of America','US','Avoca (United States of America)',1,1,0),(10449,1873,110256,'Avola','Italy','IT','Avola (Italy)',1,1,0),(10450,0,110257,'Avon Park','United States of America','US','Avon Park (United States of America)',1,1,0),(10451,1878,110258,'Avord','France','FR','Avord (France)',1,1,0),(10452,0,110259,'Avrieux','France','FR','Avrieux (France)',1,1,0),(10453,0,110260,'Axminster','United Kingdom','UK','Axminster (United Kingdom)',1,1,0),(10454,1901,110261,'Ayas','Italy','IT','Ayas (Italy)',1,1,0),(10455,1909,110262,'Ayers Rock','Australia','AU','Ayers Rock (Australia)',1,1,0),(10456,1935,110263,'Azeitao','Portugal','PT','Azeitao (Portugal)',1,1,0),(10457,0,110264,'Azilal','Morocco','MA','Azilal (Morocco)',1,1,0),(10458,0,110265,'Azur','France','FR','Azur (France)',1,1,0),(10459,0,110266,'Azzano di Mezzegra','Italy','IT','Azzano di Mezzegra (Italy)',1,1,0),(10460,1959,110267,'Babenhausen','Germany','DE','Babenhausen (Germany)',1,1,0),(10461,0,110268,'Babenhausen (Schwaben)','Germany','DE','Babenhausen (Schwaben) (Germany)',1,1,0),(10462,1969,110269,'Bacharach','Germany','DE','Bacharach (Germany)',1,1,0),(10463,0,110270,'Bachfeld','Germany','DE','Bachfeld (Germany)',1,1,0),(10464,1977,110271,'Bad Aussee','Austria','AT','Bad Aussee (Austria)',1,1,0),(10465,0,110272,'Bad Berleburg','Germany','DE','Bad Berleburg (Germany)',1,1,0),(10466,0,110273,'Bad Berneck','Germany','DE','Bad Berneck (Germany)',1,1,0),(10467,0,110274,'Bad Bevensen-Medingen','Germany','DE','Bad Bevensen-Medingen (Germany)',1,1,0),(10468,0,110275,'Bad Bleiberg','Austria','AT','Bad Bleiberg (Austria)',1,1,0),(10469,0,110276,'Bad Brambach','Germany','DE','Bad Brambach (Germany)',1,1,0),(10470,0,110277,'Bad Colberg-Heldburg','Germany','DE','Bad Colberg-Heldburg (Germany)',1,1,0),(10471,0,110278,'Bad Doberan','Germany','DE','Bad Doberan (Germany)',1,1,0),(10472,0,110279,'Bad Eilsen','Germany','DE','Bad Eilsen (Germany)',1,1,0),(10473,0,110280,'Bad Gottleuba','Germany','DE','Bad Gottleuba (Germany)',1,1,0),(10474,0,110281,'Bad Heilbrunn','Germany','DE','Bad Heilbrunn (Germany)',1,1,0),(10475,0,110282,'Bad Klosterlausnitz','Germany','DE','Bad Klosterlausnitz (Germany)',1,1,0),(10476,0,110283,'Bad Krozingen','Germany','DE','Bad Krozingen (Germany)',1,1,0),(10477,0,110284,'Bad Marienberg','Germany','DE','Bad Marienberg (Germany)',1,1,0),(10478,0,110285,'Bad Munstereifel','Germany','DE','Bad Munstereifel (Germany)',1,1,0),(10479,0,110286,'Bad Pyrmont','Germany','DE','Bad Pyrmont (Germany)',1,1,0),(10480,1396,110287,'Arguineguin','Spain','ES','Arguineguin (Spain)',1,1,0),(10481,1403,110288,'Arichat','Canada','CA','Arichat (Canada)',1,1,0),(10482,1417,110289,'Arkansas City','United States of America','US','Arkansas City (United States of America)',1,1,0),(10483,0,110290,'Arla','Sweden','SE','Arla (Sweden)',1,1,0),(10484,0,110291,'Arlington','United States of America','US','Arlington (United States of America)',1,1,0),(10485,1445,110292,'Armilla','Spain','ES','Armilla (Spain)',1,1,0),(10486,0,110293,'Arnad','Italy','IT','Arnad (Italy)',1,1,0),(10487,1457,110294,'Arneburg','Germany','DE','Arneburg (Germany)',1,1,0),(10488,0,110295,'Arniston','South Africa','ZA','Arniston (South Africa)',1,1,0),(10489,0,110296,'Arnold','United States of America','US','Arnold (United States of America)',1,1,0),(10490,0,110297,'Arnos Vale Bay','Trinidad and Tobago','TT','Arnos Vale Bay (Trinidad and Tobago)',1,1,0),(10491,1476,110298,'Arona','Spain','ES','Arona (Spain)',1,1,0),(10492,0,110299,'Arraial d\'Ajuda','Brazil','BR','Arraial d\'Ajuda (Brazil)',1,1,0),(10493,1493,110300,'Arrecife','Spain','ES','Arrecife (Spain)',1,1,0),(10494,0,110301,'Arrecife','Philippines','PH','Arrecife (Philippines)',1,1,0),(10495,0,110302,'Arriach','Austria','AT','Arriach (Austria)',1,1,0),(10496,0,110303,'Arroya de la Costa','Cuba','CU','Arroya de la Costa (Cuba)',1,1,0),(10497,0,110304,'Arsonval','France','FR','Arsonval (France)',1,1,0),(10498,0,110305,'Artemonas','Greece','GR','Artemonas (Greece)',1,1,0),(10499,0,110306,'Artern','Germany','DE','Artern (Germany)',1,1,0),(10500,1522,110307,'Artigues-pres-Bordeaux','France','FR','Artigues-pres-Bordeaux (France)',1,1,0),(10501,0,110308,'Arzfeld','Germany','DE','Arzfeld (Germany)',1,1,0),(10502,0,110309,'Asbach (Westerwald)','Germany','DE','Asbach (Westerwald) (Germany)',1,1,0),(10503,0,110310,'Asbach-Baumenheim','Germany','DE','Asbach-Baumenheim (Germany)',1,1,0),(10504,1557,110311,'Ascain','France','FR','Ascain (France)',1,1,0),(10505,0,110312,'Ascarat','France','FR','Ascarat (France)',1,1,0),(10506,0,110313,'Aschbach','Germany','DE','Aschbach (Germany)',1,1,0),(10507,0,110314,'Aschgabat','Turkmenistan','TM','Aschgabat (Turkmenistan)',1,1,0),(10508,0,110315,'Ascot','United Kingdom','UK','Ascot (United Kingdom)',1,1,0),(10509,0,110316,'Aselage-Herzlake','Germany','DE','Aselage-Herzlake (Germany)',1,1,0),(10510,1586,110317,'Ashcroft','Canada','CA','Ashcroft (Canada)',1,1,0),(10511,0,110318,'Ashford','United States of America','US','Ashford (United States of America)',1,1,0),(10512,0,110319,'Askvoll','Norway','NO','Askvoll (Norway)',1,1,0),(10513,1616,110320,'Asmara','Eritrea','ER','Asmara (Eritrea)',1,1,0),(10514,0,110321,'Asomada','Spain','ES','Asomada (Spain)',1,1,0),(10515,0,110322,'Aspach','Austria','AT','Aspach (Austria)',1,1,0),(10516,1636,110323,'Assago','Italy','IT','Assago (Italy)',1,1,0),(10517,1638,110324,'Assen','Netherlands','NL','Assen (Netherlands)',1,1,0),(10518,0,110325,'Astillero','Spain','ES','Astillero (Spain)',1,1,0),(10519,1655,110326,'Astor','United States of America','US','Astor (United States of America)',1,1,0),(10520,0,110327,'Astris','Greece','GR','Astris (Greece)',1,1,0),(10521,1660,110328,'Asturias','Spain','ES','Asturias (Spain)',1,1,0),(10522,1677,110329,'Athabasca','Canada','CA','Athabasca (Canada)',1,1,0),(10523,0,110330,'Athens','United States of America','US','Athens (United States of America)',1,1,0),(10524,1684,110331,'Atherton','Australia','AU','Atherton (Australia)',1,1,0),(10525,0,110332,'Atkinson','United States of America','US','Atkinson (United States of America)',1,1,0),(10526,0,110333,'Atlantic Beach','United States of America','US','Atlantic Beach (United States of America)',1,1,0),(10527,0,110334,'Atouguia da Baleia','Portugal','PT','Atouguia da Baleia (Portugal)',1,1,0),(10528,1718,110335,'Atri','Italy','IT','Atri (Italy)',1,1,0),(10529,0,110336,'Attert','Belgium','BE','Attert (Belgium)',1,1,0),(10530,1728,110337,'Attigliano','Italy','IT','Attigliano (Italy)',1,1,0),(10531,0,110338,'Attinghausen','Switzerland','CH','Attinghausen (Switzerland)',1,1,0),(10532,1748,110339,'Aubusson','France','FR','Aubusson (France)',1,1,0),(10533,0,110340,'Auch','France','FR','Auch (France)',1,1,0),(10534,0,110341,'Auer','Italy','IT','Auer (Italy)',1,1,0),(10535,0,110342,'Auffargis','France','FR','Auffargis (France)',1,1,0),(10536,0,110343,'Augignac','France','FR','Augignac (France)',1,1,0),(10537,1764,110344,'Augsburg','Germany','DE','Augsburg (Germany)',1,1,0),(10538,1766,110345,'Augusta','United States of America','US','Augusta (United States of America)',1,1,0),(10539,0,110346,'Augustusburg','Germany','DE','Augustusburg (Germany)',1,1,0),(10540,1781,110347,'Ault','France','FR','Ault (France)',1,1,0),(10541,0,110348,'Aultbea','United Kingdom','UK','Aultbea (United Kingdom)',1,1,0),(10542,1815,110350,'Autun','France','FR','Autun (France)',1,1,0),(10543,0,110351,'Auvers St. Georges','France','FR','Auvers St. Georges (France)',1,1,0),(10544,1820,110352,'Ava','United States of America','US','Ava (United States of America)',1,1,0),(10545,0,110353,'Aveley','United Kingdom','UK','Aveley (United Kingdom)',1,1,0),(10546,0,110354,'Avendorf','Germany','DE','Avendorf (Germany)',1,1,0),(10547,0,110355,'Avsallar','Turkey','TR','Avsallar (Turkey)',1,1,0),(10548,0,110356,'Awaradam','Suriname','SR','Awaradam (Suriname)',1,1,0),(10549,0,110357,'Aymavilles','Italy','IT','Aymavilles (Italy)',1,1,0),(10550,1919,110359,'Ayr','Australia','AU','Ayr (Australia)',1,1,0),(10551,0,110360,'Azadinos','Spain','ES','Azadinos (Spain)',1,1,0),(10552,0,110361,'Azille','France','FR','Azille (France)',1,1,0),(10553,0,110362,'Azoia','Portugal','PT','Azoia (Portugal)',1,1,0),(10554,1943,110363,'Aztec','United States of America','US','Aztec (United States of America)',1,1,0),(10555,0,110364,'Azuga','Romania','RO','Azuga (Romania)',1,1,0),(10556,1949,110365,'Azzate','Italy','IT','Azzate (Italy)',1,1,0),(10557,0,110366,'Baarle-Hertog','Belgium','BE','Baarle-Hertog (Belgium)',1,1,0),(10558,1954,110367,'Baarlo','Netherlands','NL','Baarlo (Netherlands)',1,1,0),(10559,0,110368,'Babrujsk','Belarus','BY','Babrujsk (Belarus)',1,1,0),(10560,0,110369,'Babylon','Czech Republic','CZ','Babylon (Czech Republic)',1,1,0),(10561,0,110370,'Bachok','Malaysia','MY','Bachok (Malaysia)',1,1,0),(10562,0,110371,'Bacolet Bay','Trinidad and Tobago','TT','Bacolet Bay (Trinidad and Tobago)',1,1,0),(10563,0,110372,'Bad Ditzenbach','Germany','DE','Bad Ditzenbach (Germany)',1,1,0),(10564,0,110373,'Bad Durrheim','Germany','DE','Bad Durrheim (Germany)',1,1,0),(10565,0,110374,'Bad Freienwalde','Germany','DE','Bad Freienwalde (Germany)',1,1,0),(10566,0,110375,'Bad Hindelang','Germany','DE','Bad Hindelang (Germany)',1,1,0),(10567,0,110376,'Bad Iburg','Germany','DE','Bad Iburg (Germany)',1,1,0),(10568,0,110377,'Bad Kissingen','Germany','DE','Bad Kissingen (Germany)',1,1,0),(10569,0,110378,'Bad Kreuznach','Germany','DE','Bad Kreuznach (Germany)',1,1,0),(10570,0,110379,'Bad Kudowa','Poland','PL','Bad Kudowa (Poland)',1,1,0),(10571,0,110380,'Bad Lauchstadt','Germany','DE','Bad Lauchstadt (Germany)',1,1,0),(10572,0,110381,'Bad Liebenstein','Germany','DE','Bad Liebenstein (Germany)',1,1,0),(10573,0,110382,'Bad Neuenahr','Germany','DE','Bad Neuenahr (Germany)',1,1,0),(10574,0,110383,'Bad Neustadt an der Saale','Germany','DE','Bad Neustadt an der Saale (Germany)',1,1,0),(10575,0,110384,'Bad Oeynhausen','Germany','DE','Bad Oeynhausen (Germany)',1,1,0),(10576,1979,110385,'Bad Ragaz','Switzerland','CH','Bad Ragaz (Switzerland)',1,1,0),(10577,0,110386,'Bad Reinerz','Poland','PL','Bad Reinerz (Poland)',1,1,0),(10578,0,110387,'Bad Soden','Germany','DE','Bad Soden (Germany)',1,1,0),(10579,0,110388,'Bad Steben','Germany','DE','Bad Steben (Germany)',1,1,0),(10580,0,110389,'Bad Tolz','Germany','DE','Bad Tolz (Germany)',1,1,0),(10581,0,110390,'Bad Waldsee','Germany','DE','Bad Waldsee (Germany)',1,1,0),(10582,0,110391,'Bad Wildbad','Germany','DE','Bad Wildbad (Germany)',1,1,0),(10583,0,110392,'Bad Wimpfen','Germany','DE','Bad Wimpfen (Germany)',1,1,0),(10584,0,110393,'Bad Worishofen','Germany','DE','Bad Worishofen (Germany)',1,1,0),(10585,1981,110394,'Badajoz','Spain','ES','Badajoz (Spain)',1,1,0),(10586,0,110395,'Badalucco','Italy','IT','Badalucco (Italy)',1,1,0),(10587,2000,110396,'Badolato','Italy','IT','Badolato (Italy)',1,1,0),(10588,2009,110397,'Bagani','Namibia','NA','Bagani (Namibia)',1,1,0),(10589,0,110398,'Bagdad','Iraq','IQ','Bagdad (Iraq)',1,1,0),(10590,0,110399,'Bagnara Calabra','Italy','IT','Bagnara Calabra (Italy)',1,1,0),(10591,2163,110400,'Ballinamore','Ireland','IE','Ballinamore (Ireland)',1,1,0),(10592,0,110401,'Ballstad','Norway','NO','Ballstad (Norway)',1,1,0),(10593,2182,110402,'Ballycotton','Ireland','IE','Ballycotton (Ireland)',1,1,0),(10594,0,110403,'Ballykippogue','Ireland','IE','Ballykippogue (Ireland)',1,1,0),(10595,0,110404,'Ballyliffin','Ireland','IE','Ballyliffin (Ireland)',1,1,0),(10596,0,110405,'Ballymena','United Kingdom','UK','Ballymena (United Kingdom)',1,1,0),(10597,0,110406,'Ballynahinch','United Kingdom','UK','Ballynahinch (United Kingdom)',1,1,0),(10598,0,110407,'Balmaha','United Kingdom','UK','Balmaha (United Kingdom)',1,1,0),(10599,2202,110408,'Balranald','Australia','AU','Balranald (Australia)',1,1,0),(10600,0,110409,'Balsas','Brazil','BR','Balsas (Brazil)',1,1,0),(10601,0,110410,'Banat','Serbia','RS','Banat (Serbia)',1,1,0),(10602,2242,110411,'Banda Aceh','Indonesia','ID','Banda Aceh (Indonesia)',1,1,0),(10603,2244,110412,'Bandar Baru Bangi','Malaysia','MY','Bandar Baru Bangi (Malaysia)',1,1,0),(10604,2252,110413,'Bandipur','Nepal','NP','Bandipur (Nepal)',1,1,0),(10605,2254,110414,'Bandol','France','FR','Bandol (France)',1,1,0),(10606,2259,110415,'Banff','Canada','CA','Banff (Canada)',1,1,0),(10607,0,110416,'Banff','United Kingdom','UK','Banff (United Kingdom)',1,1,0),(10608,0,110417,'Bang Niang','Thailand','TH','Bang Niang (Thailand)',1,1,0),(10609,2268,110418,'Bangor','United States of America','US','Bangor (United States of America)',1,1,0),(10610,0,110419,'Bangor','United Kingdom','UK','Bangor (United Kingdom)',1,1,0),(10611,0,110420,'Bangsaen','Thailand','TH','Bangsaen (Thailand)',1,1,0),(10612,2278,110421,'Banner Elk','United States of America','US','Banner Elk (United States of America)',1,1,0),(10613,2283,110422,'Banos de la Encina','Spain','ES','Banos de la Encina (Spain)',1,1,0),(10614,0,110423,'Banyuwedang','Indonesia','ID','Banyuwedang (Indonesia)',1,1,0),(10615,2319,110424,'Baralaba','Australia','AU','Baralaba (Australia)',1,1,0),(10616,2335,110426,'Barbentane','France','FR','Barbentane (France)',1,1,0),(10617,0,110427,'Barbezieux-Saint-Hilaire','France','FR','Barbezieux-Saint-Hilaire (France)',1,1,0),(10618,0,110428,'Barbian','Italy','IT','Barbian (Italy)',1,1,0),(10619,0,110429,'Barca d\'Alva','Portugal','PT','Barca d\'Alva (Portugal)',1,1,0),(10620,2353,110430,'Barcelona','Venezuela','VE','Barcelona (Venezuela)',1,1,0),(10621,0,110431,'Barfleur','France','FR','Barfleur (France)',1,1,0),(10622,2379,110432,'Bari','Italy','IT','Bari (Italy)',1,1,0),(10623,2381,110433,'Bariloche','Argentina','AR','Bariloche (Argentina)',1,1,0),(10624,2387,110434,'Bark River','United States of America','US','Bark River (United States of America)',1,1,0),(10625,2396,110435,'Barleben','Germany','DE','Barleben (Germany)',1,1,0),(10626,0,110436,'Barmouth','United Kingdom','UK','Barmouth (United Kingdom)',1,1,0),(10627,0,110437,'Barmstedt','Germany','DE','Barmstedt (Germany)',1,1,0),(10628,0,110438,'Barnas','France','FR','Barnas (France)',1,1,0),(10629,0,110439,'Barra do Garcas','Brazil','BR','Barra do Garcas (Brazil)',1,1,0),(10630,2448,110440,'Barrigada','Guam','GU','Barrigada (Guam)',1,1,0),(10631,0,110441,'Barruera','Spain','ES','Barruera (Spain)',1,1,0),(10632,0,110442,'Bartholomaberg','Austria','AT','Bartholomaberg (Austria)',1,1,0),(10633,2474,110443,'Bartow','United States of America','US','Bartow (United States of America)',1,1,0),(10634,2475,110444,'Barueri','Brazil','BR','Barueri (Brazil)',1,1,0),(10635,2478,110445,'Barwon Heads','Australia','AU','Barwon Heads (Australia)',1,1,0),(10636,2484,110446,'Baschi','Italy','IT','Baschi (Italy)',1,1,0),(10637,0,110447,'Baselga di Pine','Italy','IT','Baselga di Pine (Italy)',1,1,0),(10638,0,110448,'Bassa','Italy','IT','Bassa (Italy)',1,1,0),(10639,2514,110449,'Bastogne','Belgium','BE','Bastogne (Belgium)',1,1,0),(10640,2521,110450,'Batalha','Portugal','PT','Batalha (Portugal)',1,1,0),(10641,0,110451,'Batu Aji','Indonesia','ID','Batu Aji (Indonesia)',1,1,0),(10642,0,110452,'Baud','France','FR','Baud (France)',1,1,0),(10643,2561,110453,'Baumholder','Germany','DE','Baumholder (Germany)',1,1,0),(10644,2565,110454,'Bauska','Latvia','LV','Bauska (Latvia)',1,1,0),(10645,30577,110455,'Bay City','United States of America','US','Bay City (United States of America)',1,1,0),(10646,0,110456,'Bay Horse','United Kingdom','UK','Bay Horse (United Kingdom)',1,1,0),(10647,0,110457,'Bayerisch Gmain','Germany','DE','Bayerisch Gmain (Germany)',1,1,0),(10648,2583,110458,'Bayfield','United States of America','US','Bayfield (United States of America)',1,1,0),(10649,0,110459,'Baza','Spain','ES','Baza (Spain)',1,1,0),(10650,0,110460,'Beachport','Australia','AU','Beachport (Australia)',1,1,0),(10651,0,110461,'Beaconsfield','United Kingdom','UK','Beaconsfield (United Kingdom)',1,1,0),(10652,0,110462,'Beau Vallon','Seychelles','SC','Beau Vallon (Seychelles)',1,1,0),(10653,2631,110463,'Beaudesert','Australia','AU','Beaudesert (Australia)',1,1,0),(10654,2632,110464,'Beaufort','United States of America','US','Beaufort (United States of America)',1,1,0),(10655,2650,110465,'Beaune','France','FR','Beaune (France)',1,1,0),(10656,2654,110466,'Beausejour','Canada','CA','Beausejour (Canada)',1,1,0),(10657,0,110467,'Beaver Creek','United States of America','US','Beaver Creek (United States of America)',1,1,0),(10658,0,110468,'Becici','Montenegro','ME','Becici (Montenegro)',1,1,0),(10659,0,110469,'Bedale','United Kingdom','UK','Bedale (United Kingdom)',1,1,0),(10660,2683,110470,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(10661,2700,110471,'Beekbergen','Netherlands','NL','Beekbergen (Netherlands)',1,1,0),(10662,2709,110472,'Beetzsee','Germany','DE','Beetzsee (Germany)',1,1,0),(10663,0,110473,'Begard','France','FR','Begard (France)',1,1,0),(10664,0,110474,'Behrensdorf (Ostsee)','Germany','DE','Behrensdorf (Ostsee) (Germany)',1,1,0),(10665,0,110475,'Beidenfleth','Germany','DE','Beidenfleth (Germany)',1,1,0),(10666,2724,110476,'Beihai','China','CN','Beihai (China)',1,1,0),(10667,0,110477,'Bela-Bela','South Africa','ZA','Bela-Bela (South Africa)',1,1,0),(10668,0,110478,'Belchatow','Poland','PL','Belchatow (Poland)',1,1,0),(10669,0,110479,'Belfast','United Kingdom','UK','Belfast (United Kingdom)',1,1,0),(10670,0,110480,'Belfort-Danjoutin','France','FR','Belfort-Danjoutin (France)',1,1,0),(10671,0,110481,'Belgrad','Serbia','RS','Belgrad (Serbia)',1,1,0),(10672,2798,110482,'Bellagio','Italy','IT','Bellagio (Italy)',1,1,0),(10673,0,110484,'Belle Plagne','France','FR','Belle Plagne (France)',1,1,0),(10674,2812,110485,'Bellefontaine','United States of America','US','Bellefontaine (United States of America)',1,1,0),(10675,2826,110486,'Belleville','Canada','CA','Belleville (Canada)',1,1,0),(10676,2832,110487,'Belley','France','FR','Belley (France)',1,1,0),(10677,0,110488,'Bellharbour','Ireland','IE','Bellharbour (Ireland)',1,1,0),(10678,2840,110489,'Bellmawr','United States of America','US','Bellmawr (United States of America)',1,1,0),(10679,0,110490,'Belogradtschik','Bulgaria','BG','Belogradtschik (Bulgaria)',1,1,0),(10680,2867,110491,'Belton','United States of America','US','Belton (United States of America)',1,1,0),(10681,2872,110492,'Belvedere','Italy','IT','Belvedere (Italy)',1,1,0),(10682,0,110493,'Bembibre','Spain','ES','Bembibre (Spain)',1,1,0),(10683,0,110494,'Ben Lomond','United States of America','US','Ben Lomond (United States of America)',1,1,0),(10684,0,110495,'Benadalid','Spain','ES','Benadalid (Spain)',1,1,0),(10685,2896,110496,'Bend','United States of America','US','Bend (United States of America)',1,1,0),(10686,2898,110497,'Bendigo','Australia','AU','Bendigo (Australia)',1,1,0),(10687,0,110498,'Beneden-Leeuwen','Netherlands','NL','Beneden-Leeuwen (Netherlands)',1,1,0),(10688,0,110499,'Benicolet','Spain','ES','Benicolet (Spain)',1,1,0),(10689,0,110500,'Benifayo','Spain','ES','Benifayo (Spain)',1,1,0),(10690,0,110501,'Benijos','Spain','ES','Benijos (Spain)',1,1,0),(10691,0,110502,'Benilloba','Spain','ES','Benilloba (Spain)',1,1,0),(10692,0,110503,'Benin City','Nigeria','NG','Benin City (Nigeria)',1,1,0),(10693,2922,110504,'Benissa','Spain','ES','Benissa (Spain)',1,1,0),(10694,0,110505,'Bennettsbridge','Ireland','IE','Bennettsbridge (Ireland)',1,1,0),(10695,0,110506,'Benoa-Beach','Indonesia','ID','Benoa-Beach (Indonesia)',1,1,0),(10696,0,110507,'Benson','United Kingdom','UK','Benson (United Kingdom)',1,1,0),(10697,2963,110508,'Berchtesgaden','Germany','DE','Berchtesgaden (Germany)',1,1,0),(10698,0,110509,'Bereaville','South Africa','ZA','Bereaville (South Africa)',1,1,0),(10699,0,110510,'Berenx','France','FR','Berenx (France)',1,1,0),(10700,2361,110511,'Bardejov','Slovakia','SK','Bardejov (Slovakia)',1,1,0),(10701,2364,110513,'Bardonecchia','Italy','IT','Bardonecchia (Italy)',1,1,0),(10702,2399,110514,'Barmera','Australia','AU','Barmera (Australia)',1,1,0),(10703,0,110515,'Barnet-Cricklewood','United Kingdom','UK','Barnet-Cricklewood (United Kingdom)',1,1,0),(10704,0,110516,'Barnfels','Germany','DE','Barnfels (Germany)',1,1,0),(10705,0,110517,'Barouk','Lebanon','LB','Barouk (Lebanon)',1,1,0),(10706,2453,110518,'Barrow','United States of America','US','Barrow (United States of America)',1,1,0),(10707,0,110519,'Barry','United Kingdom','UK','Barry (United Kingdom)',1,1,0),(10708,2458,110520,'Barryville','United States of America','US','Barryville (United States of America)',1,1,0),(10709,0,110521,'Barsana','Romania','RO','Barsana (Romania)',1,1,0),(10710,0,110522,'Bartholoma','Germany','DE','Bartholoma (Germany)',1,1,0),(10711,0,110523,'Barton-under-Needwood','United Kingdom','UK','Barton-under-Needwood (United Kingdom)',1,1,0),(10712,0,110524,'Barvaux','Belgium','BE','Barvaux (Belgium)',1,1,0),(10713,0,110525,'Bassanega','Italy','IT','Bassanega (Italy)',1,1,0),(10714,2505,110526,'Basseterre','St. Kitts and Nevis','KN','Basseterre (St. Kitts and Nevis)',1,1,0),(10715,2510,110527,'Bastad','Sweden','SE','Bastad (Sweden)',1,1,0),(10716,0,110528,'Bas-Vully','Switzerland','CH','Bas-Vully (Switzerland)',1,1,0),(10717,2520,110529,'Batak','Bulgaria','BG','Batak (Bulgaria)',1,1,0),(10718,0,110530,'Batalie Beach','Dominica','DM','Batalie Beach (Dominica)',1,1,0),(10719,2522,110531,'Batam Island','Indonesia','ID','Batam Island (Indonesia)',1,1,0),(10720,0,110532,'Bath','United Kingdom','UK','Bath (United Kingdom)',1,1,0),(10721,2531,110533,'Bath','United States of America','US','Bath (United States of America)',1,1,0),(10722,2543,110534,'Battambang','Cambodia','KH','Battambang (Cambodia)',1,1,0),(10723,0,110535,'Battle Mountain','United States of America','US','Battle Mountain (United States of America)',1,1,0),(10724,0,110536,'Batu Ferringgi','Malaysia','MY','Batu Ferringgi (Malaysia)',1,1,0),(10725,0,110537,'Batu Gosok','Indonesia','ID','Batu Gosok (Indonesia)',1,1,0),(10726,2557,110538,'Baturiti','Indonesia','ID','Baturiti (Indonesia)',1,1,0),(10727,0,110539,'Baume-les-Dames','France','FR','Baume-les-Dames (France)',1,1,0),(10728,2563,110540,'Baunatal','Germany','DE','Baunatal (Germany)',1,1,0),(10729,30581,110541,'Bay Head','United States of America','US','Bay Head (United States of America)',1,1,0),(10730,0,110542,'Bay Saint Louis','United States of America','US','Bay Saint Louis (United States of America)',1,1,0),(10731,30586,110543,'Bay Shore','United States of America','US','Bay Shore (United States of America)',1,1,0),(10732,0,110544,'Bayamo','Cuba','CU','Bayamo (Cuba)',1,1,0),(10733,2577,110545,'Bayard','United States of America','US','Bayard (United States of America)',1,1,0),(10734,2582,110546,'Bayeux','France','FR','Bayeux (France)',1,1,0),(10735,2592,110547,'Bayrischzell','Germany','DE','Bayrischzell (Germany)',1,1,0),(10736,2597,110548,'Baytown','United States of America','US','Baytown (United States of America)',1,1,0),(10737,0,110549,'Beaminster','United Kingdom','UK','Beaminster (United Kingdom)',1,1,0),(10738,2625,110550,'Beatrice','United States of America','US','Beatrice (United States of America)',1,1,0),(10739,0,110551,'Beau Champ','Mauritius','MU','Beau Champ (Mauritius)',1,1,0),(10740,0,110552,'Beaufort','Luxembourg','LU','Beaufort (Luxembourg)',1,1,0),(10741,2644,110553,'Beaumaris','Australia','AU','Beaumaris (Australia)',1,1,0),(10742,2658,110554,'Beauvoir','France','FR','Beauvoir (France)',1,1,0),(10743,2660,110555,'Beaver','United States of America','US','Beaver (United States of America)',1,1,0),(10744,2669,110556,'Becancour','Canada','CA','Becancour (Canada)',1,1,0),(10745,2677,110557,'Beckley','United States of America','US','Beckley (United States of America)',1,1,0),(10746,2678,110558,'Beckum','Germany','DE','Beckum (Germany)',1,1,0),(10747,0,110559,'Bedburg','Germany','DE','Bedburg (Germany)',1,1,0),(10748,0,110560,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(10749,0,110561,'Bedretto','Switzerland','CH','Bedretto (Switzerland)',1,1,0),(10750,0,110562,'Bedwell River','Canada','CA','Bedwell River (Canada)',1,1,0),(10751,0,110563,'Behoudeniskloof','South Africa','ZA','Behoudeniskloof (South Africa)',1,1,0),(10752,2730,110565,'Beira','Mozambique','MZ','Beira (Mozambique)',1,1,0),(10753,0,110567,'Belavici','Croatia','HR','Belavici (Croatia)',1,1,0),(10754,0,110568,'Belebey','Russia','RU','Belebey (Russia)',1,1,0),(10755,0,110569,'Belesta (Pyrenees-Orientales)','France','FR','Belesta (Pyrenees-Orientales) (France)',1,1,0),(10756,2777,110570,'Belgirate','Italy','IT','Belgirate (Italy)',1,1,0),(10757,0,110571,'Belgium','Belgium','BE','Belgium (Belgium)',1,1,0),(10758,0,110572,'Beli Osum','Bulgaria','BG','Beli Osum (Bulgaria)',1,1,0),(10759,0,110573,'Bell','Germany','DE','Bell (Germany)',1,1,0),(10760,0,110574,'Bella Coola','Canada','CA','Bella Coola (Canada)',1,1,0),(10761,0,110575,'Bellaria-Igea Marina','Italy','IT','Bellaria-Igea Marina (Italy)',1,1,0),(10762,2801,110576,'Bellariva di Rimini','Italy','IT','Bellariva di Rimini (Italy)',1,1,0),(10763,0,110577,'Belle Plaine','United States of America','US','Belle Plaine (United States of America)',1,1,0),(10764,2813,110578,'Bellefontaine','France','FR','Bellefontaine (France)',1,1,0),(10765,2815,110579,'Bellegarde','France','FR','Bellegarde (France)',1,1,0),(10766,2817,110580,'Belleme','France','FR','Belleme (France)',1,1,0),(10767,0,110581,'Belm','Germany','DE','Belm (Germany)',1,1,0),(10768,0,110582,'Belmont','United States of America','US','Belmont (United States of America)',1,1,0),(10769,0,110583,'Belmont','France','FR','Belmont (France)',1,1,0),(10770,0,110584,'Belmont','United States of America','US','Belmont (United States of America)',1,1,0),(10771,2857,110585,'Belmonte','Portugal','PT','Belmonte (Portugal)',1,1,0),(10772,0,110586,'Belmont-sur-Lausanne','Switzerland','CH','Belmont-sur-Lausanne (Switzerland)',1,1,0),(10773,2862,110587,'Beloit','United States of America','US','Beloit (United States of America)',1,1,0),(10774,0,110588,'Beluah','United States of America','US','Beluah (United States of America)',1,1,0),(10775,0,110589,'Benalmadena Pueblo','Spain','ES','Benalmadena Pueblo (Spain)',1,1,0),(10776,0,110590,'Benaojan','Spain','ES','Benaojan (Spain)',1,1,0),(10777,2902,110591,'Benediktbeuern','Germany','DE','Benediktbeuern (Germany)',1,1,0),(10778,0,110592,'Bengasi','Libya',NULL,'Bengasi (Libya)',1,1,0),(10779,2907,110593,'Bengbu','China','CN','Bengbu (China)',1,1,0),(10780,2943,110594,'Bentleyville','United States of America','US','Bentleyville (United States of America)',1,1,0),(10781,2944,110595,'Bento Goncalves','Brazil','BR','Bento Goncalves (Brazil)',1,1,0),(10782,0,110596,'Benton Harbor','United States of America','US','Benton Harbor (United States of America)',1,1,0),(10783,0,110597,'Bentwisch','Germany','DE','Bentwisch (Germany)',1,1,0),(10784,0,110598,'Berchiddeddu','Italy','IT','Berchiddeddu (Italy)',1,1,0),(10785,2964,110599,'Berchules','Spain','ES','Berchules (Spain)',1,1,0),(10786,0,110600,'Bere Island','Ireland','IE','Bere Island (Ireland)',1,1,0),(10787,2970,110601,'Beresford','United States of America','US','Beresford (United States of America)',1,1,0),(10788,0,110602,'Berg (Schussental)','Germany','DE','Berg (Schussental) (Germany)',1,1,0),(10789,2974,110603,'Bergama','Turkey','TR','Bergama (Turkey)',1,1,0),(10790,2976,110604,'Bergamo','Italy','IT','Bergamo (Italy)',1,1,0),(10791,0,110605,'Bergkirchen','Germany','DE','Bergkirchen (Germany)',1,1,0),(10792,0,110606,'Beringen','Switzerland','CH','Beringen (Switzerland)',1,1,0),(10793,0,110607,'Berkhamsted','United Kingdom','UK','Berkhamsted (United Kingdom)',1,1,0),(10794,0,110608,'Bermbach','Germany','DE','Bermbach (Germany)',1,1,0),(10795,0,110609,'Bernbeuren','Germany','DE','Bernbeuren (Germany)',1,1,0),(10796,0,110610,'Berne','Germany','DE','Berne (Germany)',1,1,0),(10797,0,110611,'Bernsdorf','Germany','DE','Bernsdorf (Germany)',1,1,0),(10798,3051,110612,'Berwang','Austria','AT','Berwang (Austria)',1,1,0),(10799,0,110613,'Berwick','United Kingdom','UK','Berwick (United Kingdom)',1,1,0),(10800,3054,110614,'Berwyn','United States of America','US','Berwyn (United States of America)',1,1,0),(10801,3057,110615,'Besalu','Spain','ES','Besalu (Spain)',1,1,0),(10802,0,110616,'Besiny','Czech Republic','CZ','Besiny (Czech Republic)',1,1,0),(10803,3063,110617,'Bessemer','United States of America','US','Bessemer (United States of America)',1,1,0),(10804,0,110619,'Bethany','United States of America','US','Bethany (United States of America)',1,1,0),(10805,3078,110620,'Bethesda','United States of America','US','Bethesda (United States of America)',1,1,0),(10806,0,110621,'Bethesda','United Kingdom','UK','Bethesda (United Kingdom)',1,1,0),(10807,0,110622,'Betim','Brazil','BR','Betim (Brazil)',1,1,0),(10808,0,110623,'Bad Liebenzell','Germany','DE','Bad Liebenzell (Germany)',1,1,0),(10809,0,110624,'Bad Lobenstein','Germany','DE','Bad Lobenstein (Germany)',1,1,0),(10810,0,110625,'Bad Muskau','Germany','DE','Bad Muskau (Germany)',1,1,0),(10811,0,110626,'Bad Oberdorf','Germany','DE','Bad Oberdorf (Germany)',1,1,0),(10812,0,110627,'Bad Oldesloe','Germany','DE','Bad Oldesloe (Germany)',1,1,0),(10813,0,110628,'Bad Orb','Germany','DE','Bad Orb (Germany)',1,1,0),(10814,0,110629,'Bad Polzin','Poland','PL','Bad Polzin (Poland)',1,1,0),(10815,0,110630,'Bad Reichenhall','Germany','DE','Bad Reichenhall (Germany)',1,1,0),(10816,0,110631,'Bad Rodach','Germany','DE','Bad Rodach (Germany)',1,1,0),(10817,0,110632,'Bad Salzdetfurth','Germany','DE','Bad Salzdetfurth (Germany)',1,1,0),(10818,0,110633,'Bad Salzungen','Germany','DE','Bad Salzungen (Germany)',1,1,0),(10819,0,110634,'Bad Schlema','Germany','DE','Bad Schlema (Germany)',1,1,0),(10820,0,110635,'Bad Schmiedeberg','Germany','DE','Bad Schmiedeberg (Germany)',1,1,0),(10821,0,110636,'Bad Teplice','Czech Republic','CZ','Bad Teplice (Czech Republic)',1,1,0),(10822,1997,110637,'Badian','Philippines','PH','Badian (Philippines)',1,1,0),(10823,0,110638,'Badingham','United Kingdom','UK','Badingham (United Kingdom)',1,1,0),(10824,0,110639,'Badlands Nationalpark','United States of America','US','Badlands Nationalpark (United States of America)',1,1,0),(10825,0,110641,'Bagard','France','FR','Bagard (France)',1,1,0),(10826,2022,110642,'Bagneres-de-Bigorre','France','FR','Bagneres-de-Bigorre (France)',1,1,0),(10827,2025,110643,'Bagni di Lucca','Italy','IT','Bagni di Lucca (Italy)',1,1,0),(10828,0,110644,'Bagni di Tabiano','Italy','IT','Bagni di Tabiano (Italy)',1,1,0),(10829,2026,110645,'Bagno a Ripoli','Italy','IT','Bagno a Ripoli (Italy)',1,1,0),(10830,0,110646,'Bagnone','Italy','IT','Bagnone (Italy)',1,1,0),(10831,0,110647,'Bahamas','Bahamas','BS','Bahamas (Bahamas)',1,1,0),(10832,0,110648,'Baie des Flamand','St. Barthelemy',NULL,'Baie des Flamand (St. Barthelemy)',1,1,0),(10833,0,110649,'Baile 1 Mai','Romania','RO','Baile 1 Mai (Romania)',1,1,0),(10834,2067,110650,'Bailen','Spain','ES','Bailen (Spain)',1,1,0),(10835,0,110651,'Bailiff Bridge','United Kingdom','UK','Bailiff Bridge (United Kingdom)',1,1,0),(10836,2071,110652,'Baillargues','France','FR','Baillargues (France)',1,1,0),(10837,2078,110653,'Baiona','Spain','ES','Baiona (Spain)',1,1,0),(10838,2079,110654,'Bairnsdale','Australia','AU','Bairnsdale (Australia)',1,1,0),(10839,0,110655,'Baixo do Pinda','Mozambique','MZ','Baixo do Pinda (Mozambique)',1,1,0),(10840,2092,110656,'Bakau','Gambia','GM','Bakau (Gambia)',1,1,0),(10841,2094,110657,'Baker','United States of America','US','Baker (United States of America)',1,1,0),(10842,0,110658,'Bakewell','United Kingdom','UK','Bakewell (United Kingdom)',1,1,0),(10843,2100,110660,'Bakuriani','Georgia','GE','Bakuriani (Georgia)',1,1,0),(10844,0,110661,'Bala','United Kingdom','UK','Bala (United Kingdom)',1,1,0),(10845,0,110662,'Balangoda','Sri Lanka','LK','Balangoda (Sri Lanka)',1,1,0),(10846,2109,110663,'Balatonfoldvar','Hungary','HU','Balatonfoldvar (Hungary)',1,1,0),(10847,2111,110664,'Balatongyorok','Hungary','HU','Balatongyorok (Hungary)',1,1,0),(10848,0,110665,'Balclutha','New Zealand','NZ','Balclutha (New Zealand)',1,1,0),(10849,0,110666,'Baldramsdorf','Austria','AT','Baldramsdorf (Austria)',1,1,0),(10850,0,110667,'Baldwin','United States of America','US','Baldwin (United States of America)',1,1,0),(10851,2132,110668,'Balestrate','Italy','IT','Balestrate (Italy)',1,1,0),(10852,0,110669,'Balga','Russia','RU','Balga (Russia)',1,1,0),(10853,2136,110670,'Bali','Indonesia','ID','Bali (Indonesia)',1,1,0),(10854,0,110671,'Ballaigues','Switzerland','CH','Ballaigues (Switzerland)',1,1,0),(10855,2152,110672,'Ballarat','Australia','AU','Ballarat (Australia)',1,1,0),(10856,2165,110673,'Ballincollig','Ireland','IE','Ballincollig (Ireland)',1,1,0),(10857,2168,110674,'Ballinskelligs','Ireland','IE','Ballinskelligs (Ireland)',1,1,0),(10858,0,110675,'Ballota','Spain','ES','Ballota (Spain)',1,1,0),(10859,2173,110676,'Ballston Spa','United States of America','US','Ballston Spa (United States of America)',1,1,0),(10860,0,110677,'Ballyroe','Ireland','IE','Ballyroe (Ireland)',1,1,0),(10861,0,110678,'Ballyshannon','Ireland','IE','Ballyshannon (Ireland)',1,1,0),(10862,2195,110679,'Ballyvaughan','Ireland','IE','Ballyvaughan (Ireland)',1,1,0),(10863,0,110680,'Balos','Greece','GR','Balos (Greece)',1,1,0),(10864,2210,110681,'Baltimore','Ireland','IE','Baltimore (Ireland)',1,1,0),(10865,0,110682,'Baltrum Island','Germany','DE','Baltrum Island (Germany)',1,1,0),(10866,2218,110683,'Bamako','Mali','ML','Bamako (Mali)',1,1,0),(10867,2241,110684,'Bancroft','Canada','CA','Bancroft (Canada)',1,1,0),(10868,2248,110685,'Bandera','United States of America','US','Bandera (United States of America)',1,1,0),(10869,0,110686,'Bandiagara','Mali','ML','Bandiagara (Mali)',1,1,0),(10870,2275,110687,'Bankstown','Australia','AU','Bankstown (Australia)',1,1,0),(10871,0,110688,'Banna','Ireland','IE','Banna (Ireland)',1,1,0),(10872,0,110689,'Bannes (Haute Marne)','France','FR','Bannes (Haute Marne) (France)',1,1,0),(10873,2282,110690,'Banos','Ecuador','EC','Banos (Ecuador)',1,1,0),(10874,0,110691,'Banos de Montemayor','Spain','ES','Banos de Montemayor (Spain)',1,1,0),(10875,2284,110692,'Bansin','Germany','DE','Bansin (Germany)',1,1,0),(10876,2286,110693,'Bansko','Bulgaria','BG','Bansko (Bulgaria)',1,1,0),(10877,0,110694,'Bantikow','Germany','DE','Bantikow (Germany)',1,1,0),(10878,2313,110695,'Baracoa','Cuba','CU','Baracoa (Cuba)',1,1,0),(10879,0,110696,'Baranowo k. Poznania','Poland','PL','Baranowo k. Poznania (Poland)',1,1,0),(10880,2329,110697,'Barbarano di Salo','Italy','IT','Barbarano di Salo (Italy)',1,1,0),(10881,0,110698,'Barbarasco','Italy','IT','Barbarasco (Italy)',1,1,0),(10882,0,110699,'Barbat','Croatia','HR','Barbat (Croatia)',1,1,0),(10883,2350,110700,'Barbuda','Antigua & Barbuda','AG','Barbuda (Antigua & Barbuda)',1,1,0),(10884,0,110701,'Barczewo','Poland','PL','Barczewo (Poland)',1,1,0),(10885,0,110702,'Bardineto','Italy','IT','Bardineto (Italy)',1,1,0),(10886,2362,110703,'Bardolino','Italy','IT','Bardolino (Italy)',1,1,0),(10887,0,110704,'Bardolino-Cisano','Italy','IT','Bardolino-Cisano (Italy)',1,1,0),(10888,2377,110705,'Barge','Italy','IT','Barge (Italy)',1,1,0),(10889,0,110706,'Bargni','Italy','IT','Bargni (Italy)',1,1,0),(10890,0,110707,'Bargteheide','Germany','DE','Bargteheide (Germany)',1,1,0),(10891,0,110708,'Barham','United Kingdom','UK','Barham (United Kingdom)',1,1,0),(10892,0,110709,'Barile','Italy','IT','Barile (Italy)',1,1,0),(10893,2386,110710,'Barjac','France','FR','Barjac (France)',1,1,0),(10894,0,110711,'Barjouville','France','FR','Barjouville (France)',1,1,0),(10895,0,110712,'Barnes Bay','Anguilla','AI','Barnes Bay (Anguilla)',1,1,0),(10896,0,110713,'Barneville','France','FR','Barneville (France)',1,1,0),(10897,0,110714,'Barningham','United Kingdom','UK','Barningham (United Kingdom)',1,1,0),(10898,0,110715,'Barnoldswick','United Kingdom','UK','Barnoldswick (United Kingdom)',1,1,0),(10899,2418,110716,'Barnstable','United States of America','US','Barnstable (United States of America)',1,1,0),(10900,2421,110717,'Barnwell','United States of America','US','Barnwell (United States of America)',1,1,0),(10901,2440,110718,'Barranquilla','Colombia','CO','Barranquilla (Colombia)',1,1,0),(10902,2446,110719,'Barrie','Canada','CA','Barrie (Canada)',1,1,0),(10903,2450,110720,'Barrington','Australia','AU','Barrington (Australia)',1,1,0),(10904,0,110721,'Barrio de la Vega','Spain','ES','Barrio de la Vega (Spain)',1,1,0),(10905,0,110722,'Barroselas','Portugal','PT','Barroselas (Portugal)',1,1,0),(10906,0,110723,'Barrow-in-Furness','United Kingdom','UK','Barrow-in-Furness (United Kingdom)',1,1,0),(10907,2460,110724,'Barstow','United States of America','US','Barstow (United States of America)',1,1,0),(10908,2471,110725,'Bartonsville','United States of America','US','Bartonsville (United States of America)',1,1,0),(10909,0,110726,'Barton-upon-Humber','United Kingdom','UK','Barton-upon-Humber (United Kingdom)',1,1,0),(10910,0,110727,'Basse Terre','Guadeloupe','GP','Basse Terre (Guadeloupe)',1,1,0),(10911,0,110728,'Bassenthwaite','United Kingdom','UK','Bassenthwaite (United Kingdom)',1,1,0),(10912,0,110729,'Bastei','Germany','DE','Bastei (Germany)',1,1,0),(10913,2511,110730,'Basthorst','Germany','DE','Basthorst (Germany)',1,1,0),(10914,2518,110731,'Bat Yam','Israel','IL','Bat Yam (Israel)',1,1,0),(10915,0,110732,'Bad Saarow','Germany','DE','Bad Saarow (Germany)',1,1,0),(10916,0,110733,'Bad Sachsa','Germany','DE','Bad Sachsa (Germany)',1,1,0),(10917,0,110734,'Bad Salzig','Germany','DE','Bad Salzig (Germany)',1,1,0),(10918,0,110735,'Bad Salzuflen','Germany','DE','Bad Salzuflen (Germany)',1,1,0),(10919,0,110736,'Bad Schonau','Austria','AT','Bad Schonau (Austria)',1,1,0),(10920,0,110737,'Bad Schwalbach','Germany','DE','Bad Schwalbach (Germany)',1,1,0),(10921,0,110738,'Bad Suderode','Germany','DE','Bad Suderode (Germany)',1,1,0),(10922,0,110739,'Bad Tatzmannsdorf','Austria','AT','Bad Tatzmannsdorf (Austria)',1,1,0),(10923,0,110740,'Badin','United States of America','US','Badin (United States of America)',1,1,0),(10924,0,110741,'Badplaas','South Africa','ZA','Badplaas (South Africa)',1,1,0),(10925,0,110742,'Bagni di Petriolo','Italy','IT','Bagni di Petriolo (Italy)',1,1,0),(10926,0,110743,'Bagnolo in Piano','Italy','IT','Bagnolo in Piano (Italy)',1,1,0),(10927,2043,110744,'Bahariya Oasis','Egypt','EG','Bahariya Oasis (Egypt)',1,1,0),(10928,0,110745,'Bahir Dar','Ethiopia','ET','Bahir Dar (Ethiopia)',1,1,0),(10929,0,110746,'Bahla','Oman','OM','Bahla (Oman)',1,1,0),(10930,0,110747,'Bahratal','Germany','DE','Bahratal (Germany)',1,1,0),(10931,0,110748,'Baie Nettle','Saint Martin (French part)','MF','Baie Nettle (Saint Martin (French part))',1,1,0),(10932,0,110749,'Baie-Saint-Paul','Canada','CA','Baie-Saint-Paul (Canada)',1,1,0),(10933,0,110750,'Baile Herculane','Romania','RO','Baile Herculane (Romania)',1,1,0),(10934,2073,110751,'Bailleul','France','FR','Bailleul (France)',1,1,0),(10935,2082,110752,'Baix','France','FR','Baix (France)',1,1,0),(10936,0,110753,'Baiyin','China','CN','Baiyin (China)',1,1,0),(10937,2096,110754,'Bakersfield','United States of America','US','Bakersfield (United States of America)',1,1,0),(10938,2099,110755,'Baku','Azerbaijan','AZ','Baku (Azerbaijan)',1,1,0),(10939,0,110756,'Balassagyarmat','Hungary','HU','Balassagyarmat (Hungary)',1,1,0),(10940,2110,110757,'Balatonfured','Hungary','HU','Balatonfured (Hungary)',1,1,0),(10941,0,110758,'Balderschwang','Germany','DE','Balderschwang (Germany)',1,1,0),(10942,2125,110759,'Baldersheim','France','FR','Baldersheim (France)',1,1,0),(10943,0,110760,'Bale','Croatia','HR','Bale (Croatia)',1,1,0),(10944,2142,110761,'Balingen','Germany','DE','Balingen (Germany)',1,1,0),(10945,0,110762,'Ballater','United Kingdom','UK','Ballater (United Kingdom)',1,1,0),(10946,0,110763,'Ballinderry','United Kingdom','UK','Ballinderry (United Kingdom)',1,1,0),(10947,2169,110764,'Ballintogher','Ireland','IE','Ballintogher (Ireland)',1,1,0),(10948,2200,110765,'Balneario Camboriu','Brazil','BR','Balneario Camboriu (Brazil)',1,1,0),(10949,0,110766,'Bamburi Beach','Kenya','KE','Bamburi Beach (Kenya)',1,1,0),(10950,0,110767,'Bampton','United Kingdom','UK','Bampton (United Kingdom)',1,1,0),(10951,0,110768,'Banassac','France','FR','Banassac (France)',1,1,0),(10952,2235,110769,'Banaue','Philippines','PH','Banaue (Philippines)',1,1,0),(10953,0,110770,'Banbridge','United Kingdom','UK','Banbridge (United Kingdom)',1,1,0),(10954,0,110771,'Bandama','Spain','ES','Bandama (Spain)',1,1,0),(10955,2246,110772,'Bandar Seri Begawan','Brunei Darussalam','BN','Bandar Seri Begawan (Brunei Darussalam)',1,1,0),(10956,0,110773,'Bandholm','Denmark','DK','Bandholm (Denmark)',1,1,0),(10957,2257,110774,'Bandung','Indonesia','ID','Bandung (Indonesia)',1,1,0),(10958,0,110775,'Banjole','Croatia','HR','Banjole (Croatia)',1,1,0),(10959,0,110776,'Banne','France','FR','Banne (France)',1,1,0),(10960,0,110777,'Bannegon','France','FR','Bannegon (France)',1,1,0),(10961,0,110778,'Banqiao City','Taiwan','TW','Banqiao City (Taiwan)',1,1,0),(10962,2293,110779,'Banyoles','Spain','ES','Banyoles (Spain)',1,1,0),(10963,0,110780,'Baoshan (Shanghai)','China','CN','Baoshan (Shanghai) (China)',1,1,0),(10964,0,110781,'Baoshan',NULL,NULL,'Baoshan ()',1,1,0),(10965,2305,110782,'Baotou','China','CN','Baotou (China)',1,1,0),(10966,0,110783,'Baqueira','Spain','ES','Baqueira (Spain)',1,1,0),(10967,2311,110784,'Baraboo','United States of America','US','Baraboo (United States of America)',1,1,0),(10968,2317,110785,'Barakaldo','Spain','ES','Barakaldo (Spain)',1,1,0),(10969,0,110786,'Barano','Italy','IT','Barano (Italy)',1,1,0),(10970,2331,110787,'Barbastro','Spain','ES','Barbastro (Spain)',1,1,0),(10971,0,110788,'Barbencon','Belgium','BE','Barbencon (Belgium)',1,1,0),(10972,2352,110790,'Barcelona','Spain','ES','Barcelona (Spain)',1,1,0),(10973,2356,110791,'Barchem','Netherlands','NL','Barchem (Netherlands)',1,1,0),(10974,2359,110792,'Bard','Italy','IT','Bard (Italy)',1,1,0),(10975,0,110793,'Bardadalur','Iceland','IS','Bardadalur (Iceland)',1,1,0),(10976,0,110794,'Barisardo','Italy','IT','Barisardo (Italy)',1,1,0),(10977,0,110795,'Bark','Germany','DE','Bark (Germany)',1,1,0),(10978,2393,110796,'Barlad','Romania','RO','Barlad (Romania)',1,1,0),(10979,2403,110797,'Barnard','United States of America','US','Barnard (United States of America)',1,1,0),(10980,0,110798,'Barnet-Finchley','United Kingdom','UK','Barnet-Finchley (United Kingdom)',1,1,0),(10981,0,110799,'Barnham Broom','United Kingdom','UK','Barnham Broom (United Kingdom)',1,1,0),(10982,2441,110800,'Barre','United States of America','US','Barre (United States of America)',1,1,0),(10983,0,110801,'Barre','United States of America','US','Barre (United States of America)',1,1,0),(10984,0,110802,'Barreiros','Spain','ES','Barreiros (Spain)',1,1,0),(10985,0,110803,'Barrydale','South Africa','ZA','Barrydale (South Africa)',1,1,0),(10986,2459,110804,'Barsinghausen','Germany','DE','Barsinghausen (Germany)',1,1,0),(10987,0,110805,'Bar-sur-Seine','France','FR','Bar-sur-Seine (France)',1,1,0),(10988,2483,110806,'Basauri','Spain','ES','Basauri (Spain)',1,1,0),(10989,0,110807,'Baslow','United Kingdom','UK','Baslow (United Kingdom)',1,1,0),(10990,0,110808,'Bassersdorf','Switzerland','CH','Bassersdorf (Switzerland)',1,1,0),(10991,0,110809,'Bastorf','Germany','DE','Bastorf (Germany)',1,1,0),(10992,2516,110810,'Bastrop','United States of America','US','Bastrop (United States of America)',1,1,0),(10993,0,110811,'Bata','Equatorial Guinea','GQ','Bata (Equatorial Guinea)',1,1,0),(10994,2526,110812,'Batavia','United States of America','US','Batavia (United States of America)',1,1,0),(10995,0,110813,'Batu Layar','Indonesia','ID','Batu Layar (Indonesia)',1,1,0),(10996,2558,110814,'Batz sur Mer','France','FR','Batz sur Mer (France)',1,1,0),(10997,2564,110815,'Bauru','Brazil','BR','Bauru (Brazil)',1,1,0),(10998,2574,110816,'Bayahibe','Dominican Republic','DO','Bayahibe (Dominican Republic)',1,1,0),(10999,0,110817,'Bayrisch Eisenstein','Germany','DE','Bayrisch Eisenstein (Germany)',1,1,0),(11000,30593,110818,'Beach Haven','United States of America','US','Beach Haven (United States of America)',1,1,0),(11001,0,110819,'Beadnell','United Kingdom','UK','Beadnell (United Kingdom)',1,1,0),(11002,0,110820,'Beanacre','United Kingdom','UK','Beanacre (United Kingdom)',1,1,0),(11003,2624,110821,'Beatenberg','Switzerland','CH','Beatenberg (Switzerland)',1,1,0),(11004,2627,110822,'Beatty','United States of America','US','Beatty (United States of America)',1,1,0),(11005,2635,110823,'Beaugency','France','FR','Beaugency (France)',1,1,0),(11006,2651,110824,'Beauport','Canada','CA','Beauport (Canada)',1,1,0),(11007,2652,110825,'Beaupre','Canada','CA','Beaupre (Canada)',1,1,0),(11008,0,110826,'Beaupreau','France','FR','Beaupreau (France)',1,1,0),(11009,2666,110827,'Beberibe','Brazil','BR','Beberibe (Brazil)',1,1,0),(11010,2675,110828,'Becker','United States of America','US','Becker (United States of America)',1,1,0),(11011,0,110829,'Bedford','United Kingdom','UK','Bedford (United Kingdom)',1,1,0),(11012,0,110830,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(11013,0,110831,'Bedford Heights','United States of America','US','Bedford Heights (United States of America)',1,1,0),(11014,0,110832,'Bedford Park','United States of America','US','Bedford Park (United States of America)',1,1,0),(11015,0,110833,'Bedzin','Poland','PL','Bedzin (Poland)',1,1,0),(11016,2699,110834,'Beek','Netherlands','NL','Beek (Netherlands)',1,1,0),(11017,2714,110835,'Begues','Spain','ES','Begues (Spain)',1,1,0),(11018,2727,110836,'Beilngries','Germany','DE','Beilngries (Germany)',1,1,0),(11019,2728,110837,'Beilstein','Germany','DE','Beilstein (Germany)',1,1,0),(11020,2739,110838,'Beitou','Taiwan','TW','Beitou (Taiwan)',1,1,0),(11021,0,110839,'Belforte','Italy','IT','Belforte (Italy)',1,1,0),(11022,0,110840,'Belgershain','Germany','DE','Belgershain (Germany)',1,1,0),(11023,2778,110841,'Belgium','United States of America','US','Belgium (United States of America)',1,1,0),(11024,0,110842,'Belihuloya','Sri Lanka','LK','Belihuloya (Sri Lanka)',1,1,0),(11025,2796,110843,'Bella Vista','Paraguay','PY','Bella Vista (Paraguay)',1,1,0),(11026,2191,110844,'Ballylickey','Ireland','IE','Ballylickey (Ireland)',1,1,0),(11027,0,110845,'Ballymore','Ireland','IE','Ballymore (Ireland)',1,1,0),(11028,0,110846,'Balm','Germany','DE','Balm (Germany)',1,1,0),(11029,0,110847,'Balmaseda','Spain','ES','Balmaseda (Spain)',1,1,0),(11030,0,110848,'Balti','Moldova','MD','Balti (Moldova)',1,1,0),(11031,0,110849,'Balvicar','United Kingdom','UK','Balvicar (United Kingdom)',1,1,0),(11032,0,110850,'Ban Harn Beach','Thailand','TH','Ban Harn Beach (Thailand)',1,1,0),(11033,0,110852,'Bandungan','Indonesia','ID','Bandungan (Indonesia)',1,1,0),(11034,0,110854,'Banyeres del Penedes','Spain','ES','Banyeres del Penedes (Spain)',1,1,0),(11035,2324,110856,'Barasoain','Spain','ES','Barasoain (Spain)',1,1,0),(11036,2325,110857,'Baratier','France','FR','Baratier (France)',1,1,0),(11037,0,110858,'Barbarroja','Spain','ES','Barbarroja (Spain)',1,1,0),(11038,2332,110859,'Barbate','Spain','ES','Barbate (Spain)',1,1,0),(11039,0,110860,'Barber','Curaçao','CW','Barber (Curaçao)',1,1,0),(11040,2340,110861,'Barberino di Mugello','Italy','IT','Barberino di Mugello (Italy)',1,1,0),(11041,2348,110862,'Barboursville','United States of America','US','Barboursville (United States of America)',1,1,0),(11042,2355,110863,'Barcelos','Portugal','PT','Barcelos (Portugal)',1,1,0),(11043,2365,110864,'Bardstown','United States of America','US','Bardstown (United States of America)',1,1,0),(11044,2368,110865,'Bareges','France','FR','Bareges (France)',1,1,0),(11045,0,110866,'Barenstein','Germany','DE','Barenstein (Germany)',1,1,0),(11046,2375,110867,'Barga','Italy','IT','Barga (Italy)',1,1,0),(11047,0,110868,'Barnsley','United Kingdom','UK','Barnsley (United Kingdom)',1,1,0),(11048,0,110869,'Barnstorf','Germany','DE','Barnstorf (Germany)',1,1,0),(11049,0,110870,'Barolo','Italy','IT','Barolo (Italy)',1,1,0),(11050,0,110871,'Barossa Valley','Australia','AU','Barossa Valley (Australia)',1,1,0),(11051,0,110872,'Barra do Pirai','Brazil','BR','Barra do Pirai (Brazil)',1,1,0),(11052,0,110873,'Barril','Portugal','PT','Barril (Portugal)',1,1,0),(11053,2449,110874,'Barrington','United States of America','US','Barrington (United States of America)',1,1,0),(11054,0,110875,'Barro de Llanes','Spain','ES','Barro de Llanes (Spain)',1,1,0),(11055,2463,110876,'Barth','Germany','DE','Barth (Germany)',1,1,0),(11056,0,110877,'Baruth','Germany','DE','Baruth (Germany)',1,1,0),(11057,0,110878,'Basra','Iraq','IQ','Basra (Iraq)',1,1,0),(11058,0,110879,'Bassano del Grappa','Italy','IT','Bassano del Grappa (Italy)',1,1,0),(11059,2504,110880,'Basse-Pointe','Martinique','MQ','Basse-Pointe (Martinique)',1,1,0),(11060,0,110881,'Bastrop','United States of America','US','Bastrop (United States of America)',1,1,0),(11061,0,110882,'Batesville','United States of America','US','Batesville (United States of America)',1,1,0),(11062,2534,110883,'Bathurst','Australia','AU','Bathurst (Australia)',1,1,0),(11063,0,110884,'Batley','United Kingdom','UK','Batley (United Kingdom)',1,1,0),(11064,2537,110885,'Batman','Turkey','TR','Batman (Turkey)',1,1,0),(11065,2541,110886,'Batsfjord','Norway','NO','Batsfjord (Norway)',1,1,0),(11066,0,110887,'Batskarsnas','Sweden','SE','Batskarsnas (Sweden)',1,1,0),(11067,0,110888,'Battle','United Kingdom','UK','Battle (United Kingdom)',1,1,0),(11068,0,110889,'Batu Caves','Malaysia','MY','Batu Caves (Malaysia)',1,1,0),(11069,0,110890,'Batu Gajah','Malaysia','MY','Batu Gajah (Malaysia)',1,1,0),(11070,2570,110891,'Baxley','United States of America','US','Baxley (United States of America)',1,1,0),(11071,30579,110892,'Bay Harbor','United States of America','US','Bay Harbor (United States of America)',1,1,0),(11072,30584,110893,'Bay Minette','United States of America','US','Bay Minette (United States of America)',1,1,0),(11073,0,110894,'Bay of Fires','Australia','AU','Bay of Fires (Australia)',1,1,0),(11074,0,110895,'Bayanzhuoer','China','CN','Bayanzhuoer (China)',1,1,0),(11075,2588,110896,'Bayonne','France','FR','Bayonne (France)',1,1,0),(11076,0,110897,'Bazakerettye','Hungary','HU','Bazakerettye (Hungary)',1,1,0),(11077,0,110898,'Bazhong','China','CN','Bazhong (China)',1,1,0),(11078,0,110899,'Bazouges-la-Perouse','France','FR','Bazouges-la-Perouse (France)',1,1,0),(11079,2608,110900,'Beachcomber Island','Fiji Islands','FJ','Beachcomber Island (Fiji Islands)',1,1,0),(11080,0,110901,'Beachlands','New Zealand','NZ','Beachlands (New Zealand)',1,1,0),(11081,0,110902,'Beaconsfield','Australia','AU','Beaconsfield (Australia)',1,1,0),(11082,2634,110903,'Beaufort West','South Africa','ZA','Beaufort West (South Africa)',1,1,0),(11083,0,110904,'Beaujeu-Saint-Vallier-Pierrejux-et-Quitt','France','FR','Beaujeu-Saint-Vallier-Pierrejux-et-Quitt (France)',1,1,0),(11084,2640,110905,'Beaulieu-sur-Mer','France','FR','Beaulieu-sur-Mer (France)',1,1,0),(11085,0,110906,'Beaumont','United States of America','US','Beaumont (United States of America)',1,1,0),(11086,2647,110907,'Beaumont-en-Veron','France','FR','Beaumont-en-Veron (France)',1,1,0),(11087,2657,110908,'Beauvais','France','FR','Beauvais (France)',1,1,0),(11088,0,110909,'Beaver Falls','United States of America','US','Beaver Falls (United States of America)',1,1,0),(11089,0,110910,'Beccol Theux','Belgium','BE','Beccol Theux (Belgium)',1,1,0),(11090,0,110911,'Beceite','Spain','ES','Beceite (Spain)',1,1,0),(11091,0,110912,'Bechhofen','Germany','DE','Bechhofen (Germany)',1,1,0),(11092,2673,110913,'Bechyne','Czech Republic','CZ','Bechyne (Czech Republic)',1,1,0),(11093,2674,110914,'Beckenried','Switzerland','CH','Beckenried (Switzerland)',1,1,0),(11094,0,110915,'Beckov','Czech Republic','CZ','Beckov (Czech Republic)',1,1,0),(11095,0,110916,'Bedburg-Hau','Germany','DE','Bedburg-Hau (Germany)',1,1,0),(11096,0,110917,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(11097,2689,110918,'Bedoin','France','FR','Bedoin (France)',1,1,0),(11098,0,110919,'Beelitz','Germany','DE','Beelitz (Germany)',1,1,0),(11099,0,110920,'Beernem','Belgium','BE','Beernem (Belgium)',1,1,0),(11100,0,110921,'Beg Meil','France','FR','Beg Meil (France)',1,1,0),(11101,2713,110922,'Begles','France','FR','Begles (France)',1,1,0),(11102,2716,110923,'Begur','Spain','ES','Begur (Spain)',1,1,0),(11103,0,110924,'Beichlingen','Germany','DE','Beichlingen (Germany)',1,1,0),(11104,2732,110925,'Beirut','Lebanon','LB','Beirut (Lebanon)',1,1,0),(11105,2738,110926,'Beitostolen','Norway','NO','Beitostolen (Norway)',1,1,0),(11106,0,110927,'Bel Air','United States of America','US','Bel Air (United States of America)',1,1,0),(11107,0,110928,'Bela (Nitriansky kraj)','Slovakia','SK','Bela (Nitriansky kraj) (Slovakia)',1,1,0),(11108,2762,110929,'Belem','Brazil','BR','Belem (Brazil)',1,1,0),(11109,2763,110930,'Belen','United States of America','US','Belen (United States of America)',1,1,0),(11110,2783,110931,'Belgrade','United States of America','US','Belgrade (United States of America)',1,1,0),(11111,0,110932,'Belleek','United Kingdom','UK','Belleek (United Kingdom)',1,1,0),(11112,0,110933,'Bellegarde du Loiret','France','FR','Bellegarde du Loiret (France)',1,1,0),(11113,2819,110934,'Bellemont','United States of America','US','Bellemont (United States of America)',1,1,0),(11114,2823,110935,'Bellevaux','France','FR','Bellevaux (France)',1,1,0),(11115,0,110936,'Belleville-sur-Loire','France','FR','Belleville-sur-Loire (France)',1,1,0),(11116,0,110937,'Belleville-sur-Saone','France','FR','Belleville-sur-Saone (France)',1,1,0),(11117,2830,110938,'Bellevue','Switzerland','CH','Bellevue (Switzerland)',1,1,0),(11118,2828,110939,'Bellevue','United States of America','US','Bellevue (United States of America)',1,1,0),(11119,2847,110940,'Bellport','United States of America','US','Bellport (United States of America)',1,1,0),(11120,0,110941,'Bellpuig','Spain','ES','Bellpuig (Spain)',1,1,0),(11121,0,110942,'Belnem','Bonaire Sint Eustatius and Saba',NULL,'Belnem (Bonaire Sint Eustatius and Saba)',1,1,0),(11122,0,110943,'Belp','Switzerland','CH','Belp (Switzerland)',1,1,0),(11123,0,110944,'Belper','United Kingdom','UK','Belper (United Kingdom)',1,1,0),(11124,2886,110945,'Benahavis','Spain','ES','Benahavis (Spain)',1,1,0),(11125,2887,110946,'Benalla','Australia','AU','Benalla (Australia)',1,1,0),(11126,0,110947,'Benavente','Portugal','PT','Benavente (Portugal)',1,1,0),(11127,2904,110948,'Benevello','Italy','IT','Benevello (Italy)',1,1,0),(11128,2911,110949,'Benguela','Angola','AO','Benguela (Angola)',1,1,0),(11129,2952,110950,'Beqa Island','Fiji Islands','FJ','Beqa Island (Fiji Islands)',1,1,0),(11130,2956,110951,'Berat','Albania','AL','Berat (Albania)',1,1,0),(11131,0,110952,'Berchtesgadener Land','Germany','DE','Berchtesgadener Land (Germany)',1,1,0),(11132,0,110953,'Bergeres-les-Vertus','France','FR','Bergeres-les-Vertus (France)',1,1,0),(11133,0,110954,'Bagnes','Switzerland','CH','Bagnes (Switzerland)',1,1,0),(11134,0,110955,'Bagno di Romagna','Italy','IT','Bagno di Romagna (Italy)',1,1,0),(11135,0,110956,'Bagnols en Foret','France','FR','Bagnols en Foret (France)',1,1,0),(11136,2049,110957,'Bahia Salinas','Costa Rica','CR','Bahia Salinas (Costa Rica)',1,1,0),(11137,0,110958,'Baie de Lorient','St. Barthelemy',NULL,'Baie de Lorient (St. Barthelemy)',1,1,0),(11138,0,110959,'Baie St. Anne','Seychelles','SC','Baie St. Anne (Seychelles)',1,1,0),(11139,2074,110960,'Bailly-Romainvilliers','France','FR','Bailly-Romainvilliers (France)',1,1,0),(11140,0,110961,'Bainbridge Island','United States of America','US','Bainbridge Island (United States of America)',1,1,0),(11141,0,110962,'Bairbach','Austria','AT','Bairbach (Austria)',1,1,0),(11142,0,110963,'Bakenberg','Germany','DE','Bakenberg (Germany)',1,1,0),(11143,0,110964,'Balakan','Azerbaijan','AZ','Balakan (Azerbaijan)',1,1,0),(11144,2105,110965,'Balaruc-le-Vieux','France','FR','Balaruc-le-Vieux (France)',1,1,0),(11145,0,110966,'Balatonboglar','Hungary','HU','Balatonboglar (Hungary)',1,1,0),(11146,2130,110967,'Baldwinsville','United States of America','US','Baldwinsville (United States of America)',1,1,0),(11147,2158,110968,'Ballenstedt','Germany','DE','Ballenstedt (Germany)',1,1,0),(11148,2162,110969,'Ballina','Australia','AU','Ballina (Australia)',1,1,0),(11149,0,110970,'Ballinroke','Ireland','IE','Ballinroke (Ireland)',1,1,0),(11150,2176,110971,'Ballybofey','Ireland','IE','Ballybofey (Ireland)',1,1,0),(11151,2177,110972,'Ballybunion','Ireland','IE','Ballybunion (Ireland)',1,1,0),(11152,0,110973,'Ballycastle','United Kingdom','UK','Ballycastle (United Kingdom)',1,1,0),(11153,2181,110974,'Ballyconnell','Ireland','IE','Ballyconnell (Ireland)',1,1,0),(11154,0,110975,'Ballyfarnon','Ireland','IE','Ballyfarnon (Ireland)',1,1,0),(11155,0,110976,'Ballyneety','Ireland','IE','Ballyneety (Ireland)',1,1,0),(11156,0,110978,'Balsall Common','United Kingdom','UK','Balsall Common (United Kingdom)',1,1,0),(11157,0,110979,'Balsieges','France','FR','Balsieges (France)',1,1,0),(11158,0,110980,'Baltschik','Bulgaria','BG','Baltschik (Bulgaria)',1,1,0),(11159,0,110981,'Ban Krud','Thailand','TH','Ban Krud (Thailand)',1,1,0),(11160,0,110982,'Ban Tai Beach','Thailand','TH','Ban Tai Beach (Thailand)',1,1,0),(11161,0,110983,'Banbury','United Kingdom','UK','Banbury (United Kingdom)',1,1,0),(11162,0,110984,'Banca','France','FR','Banca (France)',1,1,0),(11163,2245,110985,'Bandar Lampung','Indonesia','ID','Bandar Lampung (Indonesia)',1,1,0),(11164,2247,110986,'Bandarawela','Sri Lanka','LK','Bandarawela (Sri Lanka)',1,1,0),(11165,0,110987,'Bang Tao Bay','Thailand','TH','Bang Tao Bay (Thailand)',1,1,0),(11166,0,110988,'Bangka Island','Indonesia','ID','Bangka Island (Indonesia)',1,1,0),(11167,0,110989,'Bangui','Central African Republic','CF','Bangui (Central African Republic)',1,1,0),(11168,0,110990,'Banja Koviljaca','Serbia','RS','Banja Koviljaca (Serbia)',1,1,0),(11169,2273,110991,'Banjul','Gambia','GM','Banjul (Gambia)',1,1,0),(11170,0,110992,'Bann (Pfalz)','Germany','DE','Bann (Pfalz) (Germany)',1,1,0),(11171,0,110993,'Banos y Mendigo','Spain','ES','Banos y Mendigo (Spain)',1,1,0),(11172,2290,110994,'Bantry','Ireland','IE','Bantry (Ireland)',1,1,0),(11173,2300,110995,'Baoding','China','CN','Baoding (China)',1,1,0),(11174,2304,110996,'Baoting','China','CN','Baoting (China)',1,1,0),(11175,0,110997,'Bar','Montenegro','ME','Bar (Montenegro)',1,1,0),(11176,0,110998,'Barban','Croatia','HR','Barban (Croatia)',1,1,0),(11177,2330,110999,'Barbaste','France','FR','Barbaste (France)',1,1,0),(11178,2333,111000,'Barbati','Greece','GR','Barbati (Greece)',1,1,0),(11179,2334,111001,'Barbatre','France','FR','Barbatre (France)',1,1,0),(11180,2336,111002,'Barbera del Valles','Spain','ES','Barbera del Valles (Spain)',1,1,0),(11181,2347,111003,'Barbotan-les-Thermes','France','FR','Barbotan-les-Thermes (France)',1,1,0),(11182,0,111004,'Barby','Germany','DE','Barby (Germany)',1,1,0),(11183,0,111005,'Barcena de Cicero','Spain','ES','Barcena de Cicero (Spain)',1,1,0),(11184,2358,111006,'Barcus','France','FR','Barcus (France)',1,1,0),(11185,0,111007,'Bardallur','Spain','ES','Bardallur (Spain)',1,1,0),(11186,0,111008,'Bardino Vecchio','Italy','IT','Bardino Vecchio (Italy)',1,1,0),(11187,2390,111010,'Barkerville','Canada','CA','Barkerville (Canada)',1,1,0),(11188,0,111011,'Barlborough','United Kingdom','UK','Barlborough (United Kingdom)',1,1,0),(11189,2398,111012,'Barlovento','Spain','ES','Barlovento (Spain)',1,1,0),(11190,0,111013,'Barlt','Germany','DE','Barlt (Germany)',1,1,0),(11191,0,111014,'Barnau','Germany','DE','Barnau (Germany)',1,1,0),(11192,2408,111015,'Barnesville','United States of America','US','Barnesville (United States of America)',1,1,0),(11193,0,111016,'Barnkopf','Austria','AT','Barnkopf (Austria)',1,1,0),(11194,2429,111017,'Barquisimeto','Venezuela','VE','Barquisimeto (Venezuela)',1,1,0),(11195,2434,111018,'Barra de Sao Miguel','Brazil','BR','Barra de Sao Miguel (Brazil)',1,1,0),(11196,0,111019,'Barra Velha','Brazil','BR','Barra Velha (Brazil)',1,1,0),(11197,2436,111020,'Barrancabermeja','Colombia','CO','Barrancabermeja (Colombia)',1,1,0),(11198,0,111021,'Barranco del Mal Nombre','Spain','ES','Barranco del Mal Nombre (Spain)',1,1,0),(11199,0,111022,'Bar?el','Germany','DE','Bar?el (Germany)',1,1,0),(11200,2461,111023,'Bar-sur-Aube','France','FR','Bar-sur-Aube (France)',1,1,0),(11201,0,111024,'Bart','France','FR','Bart (France)',1,1,0),(11202,2467,111025,'Bartlett','United States of America','US','Bartlett (United States of America)',1,1,0),(11203,2469,111026,'Barton','Australia','AU','Barton (Australia)',1,1,0),(11204,2473,111027,'Bartoszyce','Poland','PL','Bartoszyce (Poland)',1,1,0),(11205,0,111029,'Basingstoke','United Kingdom','UK','Basingstoke (United Kingdom)',1,1,0),(11206,0,111030,'Baska Voda','Croatia','HR','Baska Voda (Croatia)',1,1,0),(11207,2495,111031,'Basking Ridge','United States of America','US','Basking Ridge (United States of America)',1,1,0),(11208,0,111032,'Basse-Bodeux','Belgium','BE','Basse-Bodeux (Belgium)',1,1,0),(11209,0,111033,'Bastelica','France','FR','Bastelica (France)',1,1,0),(11210,2525,111034,'Batangas','Philippines','PH','Batangas (Philippines)',1,1,0),(11211,2528,111035,'Bateau Bay','Australia','AU','Bateau Bay (Australia)',1,1,0),(11212,0,111036,'Bathgate','United Kingdom','UK','Bathgate (United Kingdom)',1,1,0),(11213,2535,111037,'Bathurst','Canada','CA','Bathurst (Canada)',1,1,0),(11214,2542,111038,'Batsi','Greece','GR','Batsi (Greece)',1,1,0),(11215,2554,111039,'Batu Pahat','Malaysia','MY','Batu Pahat (Malaysia)',1,1,0),(11216,2556,111040,'Batumi','Georgia','GE','Batumi (Georgia)',1,1,0),(11217,0,111041,'Baudreix','France','FR','Baudreix (France)',1,1,0),(11218,0,111042,'Bauduen','France','FR','Bauduen (France)',1,1,0),(11219,0,111043,'Baulkham Hills','Australia','AU','Baulkham Hills (Australia)',1,1,0),(11220,2566,111044,'Bautzen','Germany','DE','Bautzen (Germany)',1,1,0),(11221,0,111045,'Bawtry','United Kingdom','UK','Bawtry (United Kingdom)',1,1,0),(11222,0,111046,'Bay of Islands / Paihia','New Zealand','NZ','Bay of Islands / Paihia (New Zealand)',1,1,0),(11223,0,111047,'Bay Of Plenty','New Zealand','NZ','Bay Of Plenty (New Zealand)',1,1,0),(11224,2576,111048,'Bayan Nur','China','CN','Bayan Nur (China)',1,1,0),(11225,0,111049,'Bayerbach','Germany','DE','Bayerbach (Germany)',1,1,0),(11226,2591,111050,'Bayreuth','Germany','DE','Bayreuth (Germany)',1,1,0),(11227,0,111051,'Bayton','United Kingdom','UK','Bayton (United Kingdom)',1,1,0),(11228,0,111052,'Bazaruto Island','Mozambique','MZ','Bazaruto Island (Mozambique)',1,1,0),(11229,2604,111053,'Bazeilles','France','FR','Bazeilles (France)',1,1,0),(11230,0,111054,'Bazhou','China','CN','Bazhou (China)',1,1,0),(11231,2609,111055,'Beachwood','United States of America','US','Beachwood (United States of America)',1,1,0),(11232,0,111056,'Beas de Segura','Spain','ES','Beas de Segura (Spain)',1,1,0),(11233,0,111057,'Beasain','Spain','ES','Beasain (Spain)',1,1,0),(11234,2642,111058,'Beaumarches','France','FR','Beaumarches (France)',1,1,0),(11235,0,111059,'Beauraing','Belgium','BE','Beauraing (Belgium)',1,1,0),(11236,2655,111060,'Beausoleil','France','FR','Beausoleil (France)',1,1,0),(11237,0,111061,'Beaver Dam','United States of America','US','Beaver Dam (United States of America)',1,1,0),(11238,2662,111062,'Beavercreek','United States of America','US','Beavercreek (United States of America)',1,1,0),(11239,0,111063,'Bad Rothenfelde','Germany','DE','Bad Rothenfelde (Germany)',1,1,0),(11240,0,111064,'Bad Salzgitter','Germany','DE','Bad Salzgitter (Germany)',1,1,0),(11241,0,111065,'Bad Salzschlirf','Germany','DE','Bad Salzschlirf (Germany)',1,1,0),(11242,0,111066,'Bad Sassendorf','Germany','DE','Bad Sassendorf (Germany)',1,1,0),(11243,0,111067,'Bad Schandau','Germany','DE','Bad Schandau (Germany)',1,1,0),(11244,0,111068,'Bad Stuer','Germany','DE','Bad Stuer (Germany)',1,1,0),(11245,0,111069,'Bad Warmbrunn - Cieplice','Poland','PL','Bad Warmbrunn - Cieplice (Poland)',1,1,0),(11246,0,111070,'Bad Wimsbach-Neydharting','Austria','AT','Bad Wimsbach-Neydharting (Austria)',1,1,0),(11247,0,111071,'Bad Wunnenberg-Bleiwasche','Germany','DE','Bad Wunnenberg-Bleiwasche (Germany)',1,1,0),(11248,0,111072,'Bad Zwesten','Germany','DE','Bad Zwesten (Germany)',1,1,0),(11249,0,111074,'Baddack','Canada','CA','Baddack (Canada)',1,1,0),(11250,1993,111075,'Badenweiler','Germany','DE','Badenweiler (Germany)',1,1,0),(11251,1996,111076,'Badhoevedorp','Netherlands','NL','Badhoevedorp (Netherlands)',1,1,0),(11252,0,111077,'Bagaces','Costa Rica','CR','Bagaces (Costa Rica)',1,1,0),(11253,0,111078,'Bagno Vignoni','Italy','IT','Bagno Vignoni (Italy)',1,1,0),(11254,0,111079,'Bago','Myanmar','MM','Bago (Myanmar)',1,1,0),(11255,0,111080,'Bagshot','United Kingdom','UK','Bagshot (United Kingdom)',1,1,0),(11256,2044,111081,'Bahawalpur','Pakistan','PK','Bahawalpur (Pakistan)',1,1,0),(11257,0,111082,'Bahia Ballena','Costa Rica','CR','Bahia Ballena (Costa Rica)',1,1,0),(11258,2045,111083,'Bahia Blanca','Argentina','AR','Bahia Blanca (Argentina)',1,1,0),(11259,2050,111084,'Bahia Solano','Colombia','CO','Bahia Solano (Colombia)',1,1,0),(11260,0,111085,'Baia Domizia','Italy','IT','Baia Domizia (Italy)',1,1,0),(11261,2056,111086,'Baia Mare','Romania','RO','Baia Mare (Romania)',1,1,0),(11262,0,111087,'Baie-Comeau','Canada','CA','Baie-Comeau (Canada)',1,1,0),(11263,2060,111088,'Baiersbronn','Germany','DE','Baiersbronn (Germany)',1,1,0),(11264,2061,111089,'Baie-Sainte-Catherine','Canada','CA','Baie-Sainte-Catherine (Canada)',1,1,0),(11265,0,111090,'Bainbridge','United Kingdom','UK','Bainbridge (United Kingdom)',1,1,0),(11266,2087,111091,'Baja','Hungary','HU','Baja (Hungary)',1,1,0),(11267,0,111092,'Bajcici','Croatia','HR','Bajcici (Croatia)',1,1,0),(11268,0,111093,'Bajos del Toro','Costa Rica','CR','Bajos del Toro (Costa Rica)',1,1,0),(11269,0,111094,'Baker City','United States of America','US','Baker City (United States of America)',1,1,0),(11270,0,111095,'Bakkeveen','Netherlands','NL','Bakkeveen (Netherlands)',1,1,0),(11271,0,111096,'Balaguer','Spain','ES','Balaguer (Spain)',1,1,0),(11272,2108,111098,'Balatonalmadi','Hungary','HU','Balatonalmadi (Hungary)',1,1,0),(11273,0,111099,'Balatonmariafurdr','Hungary','HU','Balatonmariafurdr (Hungary)',1,1,0),(11274,0,111100,'Balboa','Panama','PA','Balboa (Panama)',1,1,0),(11275,0,111101,'Baldock','United Kingdom','UK','Baldock (United Kingdom)',1,1,0),(11276,2133,111102,'Balestrino','Italy','IT','Balestrino (Italy)',1,1,0),(11277,2140,111103,'Balikesir','Turkey','TR','Balikesir (Turkey)',1,1,0),(11278,2141,111104,'Balikpapan','Indonesia','ID','Balikpapan (Indonesia)',1,1,0),(11279,0,111105,'Balka','Denmark','DK','Balka (Denmark)',1,1,0),(11280,0,111106,'Balkbrug','Netherlands','NL','Balkbrug (Netherlands)',1,1,0),(11281,0,111107,'Ballesteros de la Calatrava','Spain','ES','Ballesteros de la Calatrava (Spain)',1,1,0),(11282,2161,111108,'Ballina','Ireland','IE','Ballina (Ireland)',1,1,0),(11283,0,111109,'Ballinhassig','Ireland','IE','Ballinhassig (Ireland)',1,1,0),(11284,0,111110,'Ballycastle','Ireland','IE','Ballycastle (Ireland)',1,1,0),(11285,2189,111111,'Ballyheigue','Ireland','IE','Ballyheigue (Ireland)',1,1,0),(11286,0,111112,'Ballymoney','United Kingdom','UK','Ballymoney (United Kingdom)',1,1,0),(11287,2196,111113,'Balma','France','FR','Balma (France)',1,1,0),(11288,2197,111114,'Balmaceda','Chile','CL','Balmaceda (Chile)',1,1,0),(11289,2211,111115,'Baltimore','United States of America','US','Baltimore (United States of America)',1,1,0),(11290,0,111116,'Baltinglass','Ireland','IE','Baltinglass (Ireland)',1,1,0),(11291,0,111117,'Ban Tha Ton','Thailand','TH','Ban Tha Ton (Thailand)',1,1,0),(11292,0,111118,'Banaderos','Spain','ES','Banaderos (Spain)',1,1,0),(11293,2238,111119,'Banchette','Italy','IT','Banchette (Italy)',1,1,0),(11294,0,111120,'Bandar Putra','Malaysia','MY','Bandar Putra (Malaysia)',1,1,0),(11295,2253,111122,'Bandirma','Turkey','TR','Bandirma (Turkey)',1,1,0),(11296,2255,111123,'Bandon','United States of America','US','Bandon (United States of America)',1,1,0),(11297,0,111125,'Banglamung','Thailand','TH','Banglamung (Thailand)',1,1,0),(11298,0,111126,'Banja Vrucica','Bosnia and Herzegowina','BA','Banja Vrucica (Bosnia and Herzegowina)',1,1,0),(11299,0,111127,'Banjol','Croatia','HR','Banjol (Croatia)',1,1,0),(11300,2274,111128,'Bank','Hungary','HU','Bank (Hungary)',1,1,0),(11301,2279,111129,'Banning','United States of America','US','Banning (United States of America)',1,1,0),(11302,0,111130,'Baone','Italy','IT','Baone (Italy)',1,1,0),(11303,2309,111131,'Bar Harbor','United States of America','US','Bar Harbor (United States of America)',1,1,0),(11304,0,111132,'Barbadas','Spain','ES','Barbadas (Spain)',1,1,0),(11305,2326,111133,'Barbados','Barbados','BB','Barbados (Barbados)',1,1,0),(11306,0,111134,'Barberey','France','FR','Barberey (France)',1,1,0),(11307,2345,111135,'Barbizon','France','FR','Barbizon (France)',1,1,0),(11308,2349,111136,'Barbourville','United States of America','US','Barbourville (United States of America)',1,1,0),(11309,2354,111137,'Barcelonnette','France','FR','Barcelonnette (France)',1,1,0),(11310,2376,111138,'Bargara','Australia','AU','Bargara (Australia)',1,1,0),(11311,2382,111139,'Barinas','Venezuela','VE','Barinas (Venezuela)',1,1,0),(11312,0,111140,'Barisciano','Italy','IT','Barisciano (Italy)',1,1,0),(11313,0,111141,'Bar-le-Duc','France','FR','Bar-le-Duc (France)',1,1,0),(11314,0,111143,'Barnard Castle','United Kingdom','UK','Barnard Castle (United Kingdom)',1,1,0),(11315,0,111144,'Barnaul','Russia','RU','Barnaul (Russia)',1,1,0),(11316,0,111145,'Barnbach','Austria','AT','Barnbach (Austria)',1,1,0),(11317,2424,111146,'Baronissi','Italy','IT','Baronissi (Italy)',1,1,0),(11318,2443,111147,'Barreirinhas','Brazil','BR','Barreirinhas (Brazil)',1,1,0),(11319,2444,111148,'Barretos','Brazil','BR','Barretos (Brazil)',1,1,0),(11320,2447,111149,'Barriere','Canada','CA','Barriere (Canada)',1,1,0),(11321,0,111150,'Barrow-upon-Humber','United Kingdom','UK','Barrow-upon-Humber (United Kingdom)',1,1,0),(11322,0,111151,'Barsac','France','FR','Barsac (France)',1,1,0),(11323,0,111152,'Bartenheim','France','FR','Bartenheim (France)',1,1,0),(11324,0,111153,'Bartolome Maso','Cuba','CU','Bartolome Maso (Cuba)',1,1,0),(11325,2479,111154,'Barzano','Italy','IT','Barzano (Italy)',1,1,0),(11326,2486,111155,'Basel','Switzerland','CH','Basel (Switzerland)',1,1,0),(11327,2489,111156,'Basiglio','Italy','IT','Basiglio (Italy)',1,1,0),(11328,0,111157,'Basildon','United Kingdom','UK','Basildon (United Kingdom)',1,1,0),(11329,0,111158,'Bassemberg','France','FR','Bassemberg (France)',1,1,0),(11330,0,111159,'Bassum','Germany','DE','Bassum (Germany)',1,1,0),(11331,2509,111160,'Bassussarry','France','FR','Bassussarry (France)',1,1,0),(11332,2513,111161,'Bastia','France','FR','Bastia (France)',1,1,0),(11333,0,111162,'Batesville','United States of America','US','Batesville (United States of America)',1,1,0),(11334,0,111163,'Bath','United States of America','US','Bath (United States of America)',1,1,0),(11335,0,111164,'Bathsheba','Barbados','BB','Bathsheba (Barbados)',1,1,0),(11336,0,111165,'Battenberg (Eder)','Germany','DE','Battenberg (Eder) (Germany)',1,1,0),(11337,2546,111166,'Battipaglia','Italy','IT','Battipaglia (Italy)',1,1,0),(11338,0,111167,'Battle Lake','United States of America','US','Battle Lake (United States of America)',1,1,0),(11339,2553,111168,'Batu','Indonesia','ID','Batu (Indonesia)',1,1,0),(11340,0,111169,'Batuan','Indonesia','ID','Batuan (Indonesia)',1,1,0),(11341,0,111170,'Batubelig','Indonesia','ID','Batubelig (Indonesia)',1,1,0),(11342,0,111171,'Batzendorf','France','FR','Batzendorf (France)',1,1,0),(11343,0,111172,'Berezivka','Ukraine','UA','Berezivka (Ukraine)',1,1,0),(11344,0,111173,'Bergen','Germany','DE','Bergen (Germany)',1,1,0),(11345,0,111174,'Bergen (Vogtland)','Germany','DE','Bergen (Vogtland) (Germany)',1,1,0),(11346,0,111175,'Bergen aan Zee','Netherlands','NL','Bergen aan Zee (Netherlands)',1,1,0),(11347,0,111176,'Beringen','Belgium','BE','Beringen (Belgium)',1,1,0),(11348,0,111177,'Berlstedt','Germany','DE','Berlstedt (Germany)',1,1,0),(11349,0,111178,'Bernau bei Berlin','Germany','DE','Bernau bei Berlin (Germany)',1,1,0),(11350,0,111179,'Berny-Riviere','France','FR','Berny-Riviere (France)',1,1,0),(11351,3032,111180,'Berrien Springs','United States of America','US','Berrien Springs (United States of America)',1,1,0),(11352,0,111181,'Berze-la-Ville','France','FR','Berze-la-Ville (France)',1,1,0),(11353,0,111182,'Bessans','France','FR','Bessans (France)',1,1,0),(11354,0,111183,'Bessay-sur-Allier','France','FR','Bessay-sur-Allier (France)',1,1,0),(11355,0,111184,'Besse - sur - Issole','France','FR','Besse - sur - Issole (France)',1,1,0),(11356,3062,111185,'Besse-et-Saint-Anastaise','France','FR','Besse-et-Saint-Anastaise (France)',1,1,0),(11357,0,111186,'Bestwig','Germany','DE','Bestwig (Germany)',1,1,0),(11358,3077,111187,'Bethel','United States of America','US','Bethel (United States of America)',1,1,0),(11359,3085,111188,'Bettancourt-la-Ferree','France','FR','Bettancourt-la-Ferree (France)',1,1,0),(11360,0,111189,'Betws-y-Coed','United Kingdom','UK','Betws-y-Coed (United Kingdom)',1,1,0),(11361,0,111190,'Betzigau','Germany','DE','Betzigau (Germany)',1,1,0),(11362,3097,111191,'Beulah','United States of America','US','Beulah (United States of America)',1,1,0),(11363,0,111192,'Beuren','Germany','DE','Beuren (Germany)',1,1,0),(11364,0,111193,'Beuzet','Belgium','BE','Beuzet (Belgium)',1,1,0),(11365,0,111194,'Bever','Switzerland','CH','Bever (Switzerland)',1,1,0),(11366,3148,111197,'Bialobrzegi','Poland','PL','Bialobrzegi (Poland)',1,1,0),(11367,3152,111198,'Biar','Spain','ES','Biar (Spain)',1,1,0),(11368,0,111199,'Biberau','Germany','DE','Biberau (Germany)',1,1,0),(11369,3162,111200,'Bibione','Italy','IT','Bibione (Italy)',1,1,0),(11370,0,111201,'Biddinghuizen','Netherlands','NL','Biddinghuizen (Netherlands)',1,1,0),(11371,3177,111202,'Biedenkopf','Germany','DE','Biedenkopf (Germany)',1,1,0),(11372,3178,111203,'Biederbach','Germany','DE','Biederbach (Germany)',1,1,0),(11373,0,111204,'Bierdoirf / Biersdorf am See','Germany','DE','Bierdoirf / Biersdorf am See (Germany)',1,1,0),(11374,3206,111205,'Biguglia','France','FR','Biguglia (France)',1,1,0),(11375,3222,111206,'Billiers','France','FR','Billiers (France)',1,1,0),(11376,3227,111207,'Billum','Denmark','DK','Billum (Denmark)',1,1,0),(11377,3235,111208,'Binasco','Italy','IT','Binasco (Italy)',1,1,0),(11378,0,111209,'Binde','Germany','DE','Binde (Germany)',1,1,0),(11379,0,111210,'Bingley','United Kingdom','UK','Bingley (United Kingdom)',1,1,0),(11380,3250,111211,'Binningen','Switzerland','CH','Binningen (Switzerland)',1,1,0),(11381,3280,111213,'Birmingham','United States of America','US','Birmingham (United States of America)',1,1,0),(11382,0,111214,'Birresborn','Germany','DE','Birresborn (Germany)',1,1,0),(11383,0,111215,'Bischberg','Germany','DE','Bischberg (Germany)',1,1,0),(11384,3296,111217,'Bishop','United States of America','US','Bishop (United States of America)',1,1,0),(11385,0,111218,'Bishop Auckland','United Kingdom','UK','Bishop Auckland (United Kingdom)',1,1,0),(11386,0,111219,'Biskupstungur','Iceland','IS','Biskupstungur (Iceland)',1,1,0),(11387,3322,111220,'Bitti','Italy','IT','Bitti (Italy)',1,1,0),(11388,0,111221,'Bitung','Indonesia','ID','Bitung (Indonesia)',1,1,0),(11389,0,111222,'Bjurvik','Sweden','SE','Bjurvik (Sweden)',1,1,0),(11390,3339,111223,'Black Rock','Trinidad and Tobago','TT','Black Rock (Trinidad and Tobago)',1,1,0),(11391,0,111224,'Blackburn North','Australia','AU','Blackburn North (Australia)',1,1,0),(11392,3357,111225,'Blacksburg','United States of America','US','Blacksburg (United States of America)',1,1,0),(11393,0,111226,'Blaichach','Germany','DE','Blaichach (Germany)',1,1,0),(11394,3373,111227,'Blaine','United States of America','US','Blaine (United States of America)',1,1,0),(11395,0,111228,'Blairgowrie','United Kingdom','UK','Blairgowrie (United Kingdom)',1,1,0),(11396,3389,111229,'Blakely','United States of America','US','Blakely (United States of America)',1,1,0),(11397,0,111230,'Blanchiseuse','Trinidad and Tobago','TT','Blanchiseuse (Trinidad and Tobago)',1,1,0),(11398,3411,111231,'Blatten','Switzerland','CH','Blatten (Switzerland)',1,1,0),(11399,0,111232,'Bleialf','Germany','DE','Bleialf (Germany)',1,1,0),(11400,3419,111233,'Bleibach','Germany','DE','Bleibach (Germany)',1,1,0),(11401,3422,111234,'Blenheim','New Zealand','NZ','Blenheim (New Zealand)',1,1,0),(11402,3428,111235,'Blitar','Indonesia','ID','Blitar (Indonesia)',1,1,0),(11403,0,111236,'Blitterswijck','Netherlands','NL','Blitterswijck (Netherlands)',1,1,0),(11404,3437,111237,'Blonduos','Iceland','IS','Blonduos (Iceland)',1,1,0),(11405,3441,111238,'Bloomfield','United States of America','US','Bloomfield (United States of America)',1,1,0),(11406,3449,111239,'Bloubergstrand','South Africa','ZA','Bloubergstrand (South Africa)',1,1,0),(11407,3453,111240,'Blowing Rock','United States of America','US','Blowing Rock (United States of America)',1,1,0),(11408,0,111241,'Blue Bell','United States of America','US','Blue Bell (United States of America)',1,1,0),(11409,0,111242,'Blue Springs','United States of America','US','Blue Springs (United States of America)',1,1,0),(11410,3461,111243,'Bluefield','United States of America','US','Bluefield (United States of America)',1,1,0),(11411,0,111244,'Blunk','Germany','DE','Blunk (Germany)',1,1,0),(11412,0,111245,'Bobenheim am Berg','Germany','DE','Bobenheim am Berg (Germany)',1,1,0),(11413,0,111246,'Bobrach','Germany','DE','Bobrach (Germany)',1,1,0),(11414,3495,111247,'Boca de Huergano','Spain','ES','Boca de Huergano (Spain)',1,1,0),(11415,0,111248,'Boca de la Vinorama','Mexico','MX','Boca de la Vinorama (Mexico)',1,1,0),(11416,0,111249,'Bodelshausen','Germany','DE','Bodelshausen (Germany)',1,1,0),(11417,0,111250,'Bodenwerder','Germany','DE','Bodenwerder (Germany)',1,1,0),(11418,0,111251,'Bogis-Bossey','Switzerland','CH','Bogis-Bossey (Switzerland)',1,1,0),(11419,0,111252,'Bohorok','Indonesia','ID','Bohorok (Indonesia)',1,1,0),(11420,3560,111253,'Boiling Springs','United States of America','US','Boiling Springs (United States of America)',1,1,0),(11421,0,111254,'Boiro','Spain','ES','Boiro (Spain)',1,1,0),(11422,3566,111255,'Boise','United States of America','US','Boise (United States of America)',1,1,0),(11423,3578,111256,'Bol','Croatia','HR','Bol (Croatia)',1,1,0),(11424,3579,111257,'Bolans','Antigua & Barbuda','AG','Bolans (Antigua & Barbuda)',1,1,0),(11425,3590,111258,'Bolivar','United States of America','US','Bolivar (United States of America)',1,1,0),(11426,3593,111259,'Bollendorf','Germany','DE','Bollendorf (Germany)',1,1,0),(11427,3596,111260,'Bollnas','Sweden','SE','Bollnas (Sweden)',1,1,0),(11428,3607,111261,'Boltenhagen','Germany','DE','Boltenhagen (Germany)',1,1,0),(11429,3609,111262,'Boltigen','Switzerland','CH','Boltigen (Switzerland)',1,1,0),(11430,3620,111263,'Bombinhas','Brazil','BR','Bombinhas (Brazil)',1,1,0),(11431,3630,111265,'Bonaventure','Canada','CA','Bonaventure (Canada)',1,1,0),(11432,0,111266,'Bondalem','Indonesia','ID','Bondalem (Indonesia)',1,1,0),(11433,0,111267,'Bonelli','Italy','IT','Bonelli (Italy)',1,1,0),(11434,3649,111268,'Bonnat','France','FR','Bonnat (France)',1,1,0),(11435,0,111269,'Bonne','France','FR','Bonne (France)',1,1,0),(11436,3653,111270,'Bonner Springs','United States of America','US','Bonner Springs (United States of America)',1,1,0),(11437,3657,111271,'Bonneuil-sur-Marne','France','FR','Bonneuil-sur-Marne (France)',1,1,0),(11438,3660,111272,'Bonnieux','France','FR','Bonnieux (France)',1,1,0),(11439,0,111273,'Bonny-sur-Loire','France','FR','Bonny-sur-Loire (France)',1,1,0),(11440,3666,111274,'Bonsall','United States of America','US','Bonsall (United States of America)',1,1,0),(11441,3672,111275,'Bonville','Australia','AU','Bonville (Australia)',1,1,0),(11442,0,111276,'Boothbay Harbor','United States of America','US','Boothbay Harbor (United States of America)',1,1,0),(11443,0,111277,'Bor','Bulgaria','BG','Bor (Bulgaria)',1,1,0),(11444,3688,111278,'Boras','Sweden','SE','Boras (Sweden)',1,1,0),(11445,0,111279,'Borela','Spain','ES','Borela (Spain)',1,1,0),(11446,0,111280,'Borgagne','Italy','IT','Borgagne (Italy)',1,1,0),(11447,0,111281,'Borgaro Torinese','Italy','IT','Borgaro Torinese (Italy)',1,1,0),(11448,0,111282,'Borgholzhausen','Germany','DE','Borgholzhausen (Germany)',1,1,0),(11449,3096,111283,'Betzendorf','Germany','DE','Betzendorf (Germany)',1,1,0),(11450,3104,111284,'Beverly','United States of America','US','Beverly (United States of America)',1,1,0),(11451,0,111285,'Beverly Hills','United States of America','US','Beverly Hills (United States of America)',1,1,0),(11452,0,111286,'Bewdley','United Kingdom','UK','Bewdley (United Kingdom)',1,1,0),(11453,0,111287,'Bexbach','Germany','DE','Bexbach (Germany)',1,1,0),(11454,0,111288,'Bexhill-on-Sea','United Kingdom','UK','Bexhill-on-Sea (United Kingdom)',1,1,0),(11455,0,111289,'Beypazari','Turkey','TR','Beypazari (Turkey)',1,1,0),(11456,3123,111290,'Bezons','France','FR','Bezons (France)',1,1,0),(11457,3127,111291,'Bhamdoun','Lebanon','LB','Bhamdoun (Lebanon)',1,1,0),(11458,3147,111293,'Bialet Masse','Argentina','AR','Bialet Masse (Argentina)',1,1,0),(11459,0,111294,'Bibury','United Kingdom','UK','Bibury (United Kingdom)',1,1,0),(11460,0,111295,'Bideford','United Kingdom','UK','Bideford (United Kingdom)',1,1,0),(11461,3192,111296,'Biescas','Spain','ES','Biescas (Spain)',1,1,0),(11462,0,111297,'Big Bend National Park','United States of America','US','Big Bend National Park (United States of America)',1,1,0),(11463,0,111298,'Big Rapids','United States of America','US','Big Rapids (United States of America)',1,1,0),(11464,0,111299,'Big Springs','United States of America','US','Big Springs (United States of America)',1,1,0),(11465,0,111300,'Big Timber','United States of America','US','Big Timber (United States of America)',1,1,0),(11466,3197,111301,'Biganos','France','FR','Biganos (France)',1,1,0),(11467,3213,111302,'Bilbao','Spain','ES','Bilbao (Spain)',1,1,0),(11468,3218,111303,'Bilecik','Turkey','TR','Bilecik (Turkey)',1,1,0),(11469,0,111304,'Bill','United States of America','US','Bill (United States of America)',1,1,0),(11470,3223,111305,'Billings','United States of America','US','Billings (United States of America)',1,1,0),(11471,0,111306,'Bilm','Germany','DE','Bilm (Germany)',1,1,0),(11472,0,111307,'Bingen on Rhine','Germany','DE','Bingen on Rhine (Germany)',1,1,0),(11473,0,111308,'Birch Run','United States of America','US','Birch Run (United States of America)',1,1,0),(11474,3265,111309,'Bird in Hand','United States of America','US','Bird in Hand (United States of America)',1,1,0),(11475,3266,111310,'Bird Island','Seychelles','SC','Bird Island (Seychelles)',1,1,0),(11476,0,111311,'Biriwa','Ghana','GH','Biriwa (Ghana)',1,1,0),(11477,0,111312,'Birkfeld','Austria','AT','Birkfeld (Austria)',1,1,0),(11478,0,111313,'Birori','Italy','IT','Birori (Italy)',1,1,0),(11479,3290,111314,'Bischofsgrun','Germany','DE','Bischofsgrun (Germany)',1,1,0),(11480,0,111315,'Bischofswiesen','Germany','DE','Bischofswiesen (Germany)',1,1,0),(11481,0,111316,'Bischofszell','Switzerland','CH','Bischofszell (Switzerland)',1,1,0),(11482,3309,111317,'Bismarck','United States of America','US','Bismarck (United States of America)',1,1,0),(11483,3311,111318,'Bissau','Guinea-Bissau','GW','Bissau (Guinea-Bissau)',1,1,0),(11484,0,111319,'Bitez','Turkey','TR','Bitez (Turkey)',1,1,0),(11485,3325,111320,'Biwabik','United States of America','US','Biwabik (United States of America)',1,1,0),(11486,3328,111321,'Bizerte','Tunisia','TN','Bizerte (Tunisia)',1,1,0),(11487,0,111322,'Black River Falls','United States of America','US','Black River Falls (United States of America)',1,1,0),(11488,0,111323,'Black Torrington','United Kingdom','UK','Black Torrington (United Kingdom)',1,1,0),(11489,3352,111324,'Blackheath','Australia','AU','Blackheath (Australia)',1,1,0),(11490,3366,111325,'Blackwood','United States of America','US','Blackwood (United States of America)',1,1,0),(11491,3370,111326,'Blagnac','France','FR','Blagnac (France)',1,1,0),(11492,0,111327,'Blagoewgrad','Bulgaria','BG','Blagoewgrad (Bulgaria)',1,1,0),(11493,0,111328,'Blajoux','France','FR','Blajoux (France)',1,1,0),(11494,3401,111329,'Blanding','United States of America','US','Blanding (United States of America)',1,1,0),(11495,0,111330,'Blinman','Australia','AU','Blinman (Australia)',1,1,0),(11496,0,111331,'Blitzingen','Switzerland','CH','Blitzingen (Switzerland)',1,1,0),(11497,3429,111332,'Block Island','United States of America','US','Block Island (United States of America)',1,1,0),(11498,3431,111333,'Bloemfontein','South Africa','ZA','Bloemfontein (South Africa)',1,1,0),(11499,0,111334,'Blokhus','Denmark','DK','Blokhus (Denmark)',1,1,0),(11500,3433,111335,'Blokzijl','Netherlands','NL','Blokzijl (Netherlands)',1,1,0),(11501,0,111336,'Blonville','France','FR','Blonville (France)',1,1,0),(11502,0,111337,'Bloomington','United States of America','US','Bloomington (United States of America)',1,1,0),(11503,3445,111338,'Bloomsburg','United States of America','US','Bloomsburg (United States of America)',1,1,0),(11504,3470,111339,'Blythe','United States of America','US','Blythe (United States of America)',1,1,0),(11505,3474,111340,'Bo','Norway','NO','Bo (Norway)',1,1,0),(11506,3476,111341,'Boa Vista','Brazil','BR','Boa Vista (Brazil)',1,1,0),(11507,0,111342,'Boal','Spain','ES','Boal (Spain)',1,1,0),(11508,3479,111343,'Boalsburg','United States of America','US','Boalsburg (United States of America)',1,1,0),(11509,3486,111344,'Boaventura','Portugal','PT','Boaventura (Portugal)',1,1,0),(11510,0,111345,'Bobbin','Germany','DE','Bobbin (Germany)',1,1,0),(11511,0,111346,'Boca St. Michiel','Curaçao','CW','Boca St. Michiel (Curaçao)',1,1,0),(11512,3505,111347,'Bochnia','Poland','PL','Bochnia (Poland)',1,1,0),(11513,3506,111348,'Bocholt','Germany','DE','Bocholt (Germany)',1,1,0),(11514,0,111349,'Bodelwitz','Germany','DE','Bodelwitz (Germany)',1,1,0),(11515,0,111350,'Bodelwyddan','United Kingdom','UK','Bodelwyddan (United Kingdom)',1,1,0),(11516,0,111351,'Bodmin','United Kingdom','UK','Bodmin (United Kingdom)',1,1,0),(11517,3520,111352,'Bodo','Norway','NO','Bodo (Norway)',1,1,0),(11518,0,111353,'Boecillo','Spain','ES','Boecillo (Spain)',1,1,0),(11519,0,111354,'Boek','Germany','DE','Boek (Germany)',1,1,0),(11520,3532,111355,'Boekelo','Netherlands','NL','Boekelo (Netherlands)',1,1,0),(11521,0,111356,'Bogels','Grenada','GD','Bogels (Grenada)',1,1,0),(11522,3542,111357,'Bogliasco','Italy','IT','Bogliasco (Italy)',1,1,0),(11523,0,111358,'Bohmenkirch','Germany','DE','Bohmenkirch (Germany)',1,1,0),(11524,3557,111359,'Boi','Spain','ES','Boi (Spain)',1,1,0),(11525,0,111360,'Bois-de-Villers','Belgium','BE','Bois-de-Villers (Belgium)',1,1,0),(11526,0,111361,'Boisseron','France','FR','Boisseron (France)',1,1,0),(11527,3570,111362,'Boisset','France','FR','Boisset (France)',1,1,0),(11528,0,111363,'Boitzenburg','Germany','DE','Boitzenburg (Germany)',1,1,0),(11529,3576,111365,'Bokong','Lesotho','LS','Bokong (Lesotho)',1,1,0),(11530,3589,111366,'Boliqueime','Portugal','PT','Boliqueime (Portugal)',1,1,0),(11531,0,111367,'Bolivar','United States of America','US','Bolivar (United States of America)',1,1,0),(11532,3602,111368,'Bolognetta','Italy','IT','Bolognetta (Italy)',1,1,0),(11533,3606,111369,'Boltana','Spain','ES','Boltana (Spain)',1,1,0),(11534,0,111370,'Bolzano Vicentino','Italy','IT','Bolzano Vicentino (Italy)',1,1,0),(11535,0,111371,'Boncourt','Switzerland','CH','Boncourt (Switzerland)',1,1,0),(11536,3644,111372,'Bonifay','United States of America','US','Bonifay (United States of America)',1,1,0),(11537,3648,111373,'Bonn','Germany','DE','Bonn (Germany)',1,1,0),(11538,3661,111374,'Bonnya','Hungary','HU','Bonnya (Hungary)',1,1,0),(11539,0,111375,'Bonnyrigg','United Kingdom','UK','Bonnyrigg (United Kingdom)',1,1,0),(11540,3669,111376,'Bontang','Indonesia','ID','Bontang (Indonesia)',1,1,0),(11541,0,111377,'Booby Hill','Bonaire Sint Eustatius and Saba',NULL,'Booby Hill (Bonaire Sint Eustatius and Saba)',1,1,0),(11542,3677,111378,'Booneville','United States of America','US','Booneville (United States of America)',1,1,0),(11543,3693,111379,'Bordighera','Italy','IT','Bordighera (Italy)',1,1,0),(11544,0,111380,'Borgarfjodur','Iceland','IS','Borgarfjodur (Iceland)',1,1,0),(11545,0,111381,'Borgoricco','Italy','IT','Borgoricco (Italy)',1,1,0),(11546,0,111382,'Borjomi','Georgia','GE','Borjomi (Georgia)',1,1,0),(11547,3714,111383,'Borlange','Sweden','SE','Borlange (Sweden)',1,1,0),(11548,0,111384,'Borno','Italy','IT','Borno (Italy)',1,1,0),(11549,3723,111385,'Borobudur','Indonesia','ID','Borobudur (Indonesia)',1,1,0),(11550,0,111386,'Borovez','Bulgaria','BG','Borovez (Bulgaria)',1,1,0),(11551,0,111387,'Borowitschi','Russia','RU','Borowitschi (Russia)',1,1,0),(11552,0,111388,'Borsec','Romania','RO','Borsec (Romania)',1,1,0),(11553,0,111389,'Borstel','Germany','DE','Borstel (Germany)',1,1,0),(11554,0,111390,'Borve','Denmark','DK','Borve (Denmark)',1,1,0),(11555,0,111391,'Bosen am Bostalsee','Germany','DE','Bosen am Bostalsee (Germany)',1,1,0),(11556,3755,111392,'Bossico','Italy','IT','Bossico (Italy)',1,1,0),(11557,0,111393,'Boticas','Portugal','PT','Boticas (Portugal)',1,1,0),(11558,3771,111394,'Bottineau','United States of America','US','Bottineau (United States of America)',1,1,0),(11559,0,111395,'Bottrop-Kirchhellen','Germany','DE','Bottrop-Kirchhellen (Germany)',1,1,0),(11560,0,111396,'Batavia','United States of America','US','Batavia (United States of America)',1,1,0),(11561,2527,111397,'Batchelor','Australia','AU','Batchelor (Australia)',1,1,0),(11562,2538,111398,'Baton Rouge','United States of America','US','Baton Rouge (United States of America)',1,1,0),(11563,2540,111399,'Batroun','Lebanon','LB','Batroun (Lebanon)',1,1,0),(11564,2550,111400,'Battleboro','United States of America','US','Battleboro (United States of America)',1,1,0),(11565,0,111401,'Baturaden','Indonesia','ID','Baturaden (Indonesia)',1,1,0),(11566,0,111402,'Baustert','Germany','DE','Baustert (Germany)',1,1,0),(11567,2568,111403,'Baveno','Italy','IT','Baveno (Italy)',1,1,0),(11568,0,111404,'Bawnboy','Ireland','IE','Bawnboy (Ireland)',1,1,0),(11569,0,111405,'Bay City','United States of America','US','Bay City (United States of America)',1,1,0),(11570,2603,111406,'Bazas','France','FR','Bazas (France)',1,1,0),(11571,2620,111407,'Beardstown','United States of America','US','Beardstown (United States of America)',1,1,0),(11572,2629,111408,'Beaucaire','France','FR','Beaucaire (France)',1,1,0),(11573,0,111409,'Beaulieu-sur-Dordogne','France','FR','Beaulieu-sur-Dordogne (France)',1,1,0),(11574,0,111410,'Beauly','United Kingdom','UK','Beauly (United Kingdom)',1,1,0),(11575,0,111411,'Beaumont','United Kingdom','UK','Beaumont (United Kingdom)',1,1,0),(11576,2648,111412,'Beaumont-le-Roger','France','FR','Beaumont-le-Roger (France)',1,1,0),(11577,0,111413,'Beaurepaire','France','FR','Beaurepaire (France)',1,1,0),(11578,0,111414,'Beckenham','United Kingdom','UK','Beckenham (United Kingdom)',1,1,0),(11579,0,111415,'Beckington','United Kingdom','UK','Beckington (United Kingdom)',1,1,0),(11580,0,111416,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(11581,2694,111417,'Beebe','United States of America','US','Beebe (United States of America)',1,1,0),(11582,0,111418,'Beech Mountain','United States of America','US','Beech Mountain (United States of America)',1,1,0),(11583,2697,111419,'Beechworth','Australia','AU','Beechworth (Australia)',1,1,0),(11584,0,111420,'Be\'er Sheva','Israel','IL','Be\'er Sheva (Israel)',1,1,0),(11585,0,111421,'Beerfelden','Germany','DE','Beerfelden (Germany)',1,1,0),(11586,0,111422,'Behramkale','Turkey','TR','Behramkale (Turkey)',1,1,0),(11587,2746,111423,'Bekasi','Indonesia','ID','Bekasi (Indonesia)',1,1,0),(11588,2748,111424,'Bekescsaba','Hungary','HU','Bekescsaba (Hungary)',1,1,0),(11589,2755,111425,'Belcaire','France','FR','Belcaire (France)',1,1,0),(11590,2761,111426,'Belek','Turkey','TR','Belek (Turkey)',1,1,0),(11591,0,111428,'Beli Manastir','Croatia','HR','Beli Manastir (Croatia)',1,1,0),(11592,2799,111429,'Bellaire','United States of America','US','Bellaire (United States of America)',1,1,0),(11593,0,111430,'Belle Fourche','United States of America','US','Belle Fourche (United States of America)',1,1,0),(11594,2825,111431,'Belleville','United States of America','US','Belleville (United States of America)',1,1,0),(11595,0,111432,'Bellevue','United States of America','US','Bellevue (United States of America)',1,1,0),(11596,2842,111433,'Bellona','Italy','IT','Bellona (Italy)',1,1,0),(11597,2853,111434,'Bellville','United States of America','US','Bellville (United States of America)',1,1,0),(11598,0,111435,'Bellville','South Africa','ZA','Bellville (South Africa)',1,1,0),(11599,0,111436,'Belmonte','Italy','IT','Belmonte (Italy)',1,1,0),(11600,0,111437,'Belmonte','Spain','ES','Belmonte (Spain)',1,1,0),(11601,0,111438,'Belorado','Spain','ES','Belorado (Spain)',1,1,0),(11602,2865,111439,'Belpasso','Italy','IT','Belpasso (Italy)',1,1,0),(11603,0,111441,'Belvedere Marittimo','Italy','IT','Belvedere Marittimo (Italy)',1,1,0),(11604,2882,111442,'Bemposta','Portugal','PT','Bemposta (Portugal)',1,1,0),(11605,2891,111443,'Benasque','Spain','ES','Benasque (Spain)',1,1,0),(11606,2893,111444,'Benavente','Spain','ES','Benavente (Spain)',1,1,0),(11607,0,111445,'Benifallet','Spain','ES','Benifallet (Spain)',1,1,0),(11608,0,111446,'Benimantell','Spain','ES','Benimantell (Spain)',1,1,0),(11609,2926,111447,'Benneckenstein','Germany','DE','Benneckenstein (Germany)',1,1,0),(11610,2928,111448,'Bennettsville','United States of America','US','Bennettsville (United States of America)',1,1,0),(11611,0,111449,'Benoa','Indonesia','ID','Benoa (Indonesia)',1,1,0),(11612,2938,111450,'Bensheim','Germany','DE','Bensheim (Germany)',1,1,0),(11613,2948,111451,'Bentonville','United States of America','US','Bentonville (United States of America)',1,1,0),(11614,2950,111452,'Benxi','China','CN','Benxi (China)',1,1,0),(11615,0,111453,'Berdsk','Russia','RU','Berdsk (Russia)',1,1,0),(11616,2971,111454,'Beresford','Canada','CA','Beresford (Canada)',1,1,0),(11617,0,111455,'Berga/Elster','Germany','DE','Berga/Elster (Germany)',1,1,0),(11618,0,111456,'Bergara','Spain','ES','Bergara (Spain)',1,1,0),(11619,2980,111457,'Bergen','Norway','NO','Bergen (Norway)',1,1,0),(11620,2987,111458,'Bergheim','Austria','AT','Bergheim (Austria)',1,1,0),(11621,0,111459,'Bergisch-Gladbach','Germany','DE','Bergisch-Gladbach (Germany)',1,1,0),(11622,2998,111460,'Berkeley','United States of America','US','Berkeley (United States of America)',1,1,0),(11623,0,111461,'Berkeley Springs','United States of America','US','Berkeley Springs (United States of America)',1,1,0),(11624,0,111462,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(11625,0,111463,'Bermagui','Australia','AU','Bermagui (Australia)',1,1,0),(11626,3017,111464,'Bernau','Germany','DE','Bernau (Germany)',1,1,0),(11627,3018,111465,'Bernay','France','FR','Bernay (France)',1,1,0),(11628,3029,111466,'Beroun','Czech Republic','CZ','Beroun (Czech Republic)',1,1,0),(11629,0,111467,'Bersenbruck','Germany','DE','Bersenbruck (Germany)',1,1,0),(11630,3043,111468,'Bertinoro','Italy','IT','Bertinoro (Italy)',1,1,0),(11631,3052,111469,'Berwick','United States of America','US','Berwick (United States of America)',1,1,0),(11632,0,111470,'Besenyotelek','Hungary','HU','Besenyotelek (Hungary)',1,1,0),(11633,3068,111471,'Best','Netherlands','NL','Best (Netherlands)',1,1,0),(11634,0,111472,'Bethel','United States of America','US','Bethel (United States of America)',1,1,0),(11635,3082,111473,'Bethune','France','FR','Bethune (France)',1,1,0),(11636,0,111474,'Betlan','Spain','ES','Betlan (Spain)',1,1,0),(11637,3090,111475,'Bettolle','Italy','IT','Bettolle (Italy)',1,1,0),(11638,0,111476,'Bettona','Italy','IT','Bettona (Italy)',1,1,0),(11639,0,111477,'Betty\'s Bay','South Africa','ZA','Betty\'s Bay (South Africa)',1,1,0),(11640,0,111478,'Beuda','Spain','ES','Beuda (Spain)',1,1,0),(11641,3101,111479,'Beveren','Belgium','BE','Beveren (Belgium)',1,1,0),(11642,0,111480,'Beverly Hills','United States of America','US','Beverly Hills (United States of America)',1,1,0),(11643,3109,111481,'Bex','Switzerland','CH','Bex (Switzerland)',1,1,0),(11644,0,111482,'Bexley','United Kingdom','UK','Bexley (United Kingdom)',1,1,0),(11645,0,111483,'Bexleyheath','United Kingdom','UK','Bexleyheath (United Kingdom)',1,1,0),(11646,3145,111487,'Biak','Indonesia','ID','Biak (Indonesia)',1,1,0),(11647,3156,111488,'Biasca','Switzerland','CH','Biasca (Switzerland)',1,1,0),(11648,0,111489,'Bibici','Croatia','HR','Bibici (Croatia)',1,1,0),(11649,0,111490,'Bidford-on-Avon','United Kingdom','UK','Bidford-on-Avon (United Kingdom)',1,1,0),(11650,3179,111491,'Biel','Switzerland','CH','Biel (Switzerland)',1,1,0),(11651,0,111492,'Bielatal','Germany','DE','Bielatal (Germany)',1,1,0),(11652,0,111493,'Big Bear City','United States of America','US','Big Bear City (United States of America)',1,1,0),(11653,0,111494,'Big Bear Lake','United States of America','US','Big Bear Lake (United States of America)',1,1,0),(11654,0,111495,'Big Creek','Canada','CA','Big Creek (Canada)',1,1,0),(11655,0,111496,'Big Stone Gap','United States of America','US','Big Stone Gap (United States of America)',1,1,0),(11656,3198,111497,'Bigfork','United States of America','US','Bigfork (United States of America)',1,1,0),(11657,0,111498,'Biggar','United Kingdom','UK','Biggar (United Kingdom)',1,1,0),(11658,0,111500,'Bijela','Montenegro','ME','Bijela (Montenegro)',1,1,0),(11659,0,111501,'Bikal','Hungary','HU','Bikal (Hungary)',1,1,0),(11660,0,111502,'Bilo','Croatia','HR','Bilo (Croatia)',1,1,0),(11661,3230,111503,'Biloxi','United States of America','US','Biloxi (United States of America)',1,1,0),(11662,0,111504,'Bilston','United Kingdom','UK','Bilston (United Kingdom)',1,1,0),(11663,0,111505,'Bilzen','Belgium','BE','Bilzen (Belgium)',1,1,0),(11664,3232,111506,'Bima','Indonesia','ID','Bima (Indonesia)',1,1,0),(11665,0,111507,'Bellamonte','Italy','IT','Bellamonte (Italy)',1,1,0),(11666,0,111508,'Belle Cote','Canada','CA','Belle Cote (Canada)',1,1,0),(11667,2808,111509,'Belle Mare','Mauritius','MU','Belle Mare (Mauritius)',1,1,0),(11668,0,111510,'Belleair Beach','United States of America','US','Belleair Beach (United States of America)',1,1,0),(11669,0,111511,'Belle-Ile-en-Mer','France','FR','Belle-Ile-en-Mer (France)',1,1,0),(11670,0,111512,'Belle-Isle-en-Terre','France','FR','Belle-Isle-en-Terre (France)',1,1,0),(11671,0,111513,'Bellevue','United States of America','US','Bellevue (United States of America)',1,1,0),(11672,2833,111514,'Bellflower','United States of America','US','Bellflower (United States of America)',1,1,0),(11673,0,111515,'Bellin','Germany','DE','Bellin (Germany)',1,1,0),(11674,2854,111516,'Bellvue','United States of America','US','Bellvue (United States of America)',1,1,0),(11675,2855,111517,'Belmar','United States of America','US','Belmar (United States of America)',1,1,0),(11676,0,111518,'Beloit','United States of America','US','Beloit (United States of America)',1,1,0),(11677,2879,111519,'Belz','France','FR','Belz (France)',1,1,0),(11678,2881,111520,'Bemidji','United States of America','US','Bemidji (United States of America)',1,1,0),(11679,0,111521,'Benajarafe','Spain','ES','Benajarafe (Spain)',1,1,0),(11680,2897,111522,'Bendestorf','Germany','DE','Bendestorf (Germany)',1,1,0),(11681,0,111523,'Benecko','Czech Republic','CZ','Benecko (Czech Republic)',1,1,0),(11682,0,111524,'Benedito Novo','Brazil','BR','Benedito Novo (Brazil)',1,1,0),(11683,2903,111525,'Benesov','Czech Republic','CZ','Benesov (Czech Republic)',1,1,0),(11684,0,111526,'Benesova','Slovakia','SK','Benesova (Slovakia)',1,1,0),(11685,0,111527,'Benetusser','Spain','ES','Benetusser (Spain)',1,1,0),(11686,0,111528,'Benitachel','Spain','ES','Benitachel (Spain)',1,1,0),(11687,2929,111529,'Bennington','United States of America','US','Bennington (United States of America)',1,1,0),(11688,0,111530,'Benouville','France','FR','Benouville (France)',1,1,0),(11689,0,111531,'Benson','United States of America','US','Benson (United States of America)',1,1,0),(11690,0,111532,'Benton','United States of America','US','Benton (United States of America)',1,1,0),(11691,0,111533,'Benz','Germany','DE','Benz (Germany)',1,1,0),(11692,2951,111534,'Beppu','Japan','JP','Beppu (Japan)',1,1,0),(11693,0,111535,'Berenice','Egypt','EG','Berenice (Egypt)',1,1,0),(11694,0,111536,'Berggie?hubel','Germany','DE','Berggie?hubel (Germany)',1,1,0),(11695,0,111537,'Berglen','Germany','DE','Berglen (Germany)',1,1,0),(11696,0,111538,'Berikon','Switzerland','CH','Berikon (Switzerland)',1,1,0),(11697,3005,111539,'Berlin','Germany','DE','Berlin (Germany)',1,1,0),(11698,3006,111540,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(11699,0,111541,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(11700,3010,111542,'Bermuda Dunes','United States of America','US','Bermuda Dunes (United States of America)',1,1,0),(11701,3013,111543,'Bernalda','Italy','IT','Bernalda (Italy)',1,1,0),(11702,3026,111544,'Bernkastel-Kues','Germany','DE','Bernkastel-Kues (Germany)',1,1,0),(11703,3031,111545,'Berriedale','Australia','AU','Berriedale (Australia)',1,1,0),(11704,3041,111546,'Berthierville','Canada','CA','Berthierville (Canada)',1,1,0),(11705,0,111547,'Bertingen','Germany','DE','Bertingen (Germany)',1,1,0),(11706,3044,111548,'Bertioga','Brazil','BR','Bertioga (Brazil)',1,1,0),(11707,3050,111549,'Beruwela','Sri Lanka','LK','Beruwela (Sri Lanka)',1,1,0),(11708,3058,111550,'Besancon','France','FR','Besancon (France)',1,1,0),(11709,0,111551,'Besazio','Switzerland','CH','Besazio (Switzerland)',1,1,0),(11710,0,111552,'Besigheim','Germany','DE','Besigheim (Germany)',1,1,0),(11711,0,111553,'Bessilles - Montagnac','France','FR','Bessilles - Montagnac (France)',1,1,0),(11712,3079,111554,'Bethlehem','United States of America','US','Bethlehem (United States of America)',1,1,0),(11713,3080,111555,'Bethlehem','Israel','IL','Bethlehem (Israel)',1,1,0),(11714,3106,111556,'Beverungen','Germany','DE','Beverungen (Germany)',1,1,0),(11715,0,111557,'Beze','France','FR','Beze (France)',1,1,0),(11716,3149,111559,'Bialowieza','Poland','PL','Bialowieza (Poland)',1,1,0),(11717,3150,111560,'Bialystok','Poland','PL','Bialystok (Poland)',1,1,0),(11718,0,111561,'Biberach','Germany','DE','Biberach (Germany)',1,1,0),(11719,3163,111562,'Biboohra','Australia','AU','Biboohra (Australia)',1,1,0),(11720,0,111563,'Bicester','United Kingdom','UK','Bicester (United Kingdom)',1,1,0),(11721,0,111564,'Bidegoian','Spain','ES','Bidegoian (Spain)',1,1,0),(11722,0,111565,'Bielle','France','FR','Bielle (France)',1,1,0),(11723,3186,111566,'Bien Hoa','Vietnam','VN','Bien Hoa (Vietnam)',1,1,0),(11724,0,111567,'Bienenbuttel','Germany','DE','Bienenbuttel (Germany)',1,1,0),(11725,0,111568,'Bierna','Poland','PL','Bierna (Poland)',1,1,0),(11726,3193,111569,'Biesdorf','Germany','DE','Biesdorf (Germany)',1,1,0),(11727,0,111570,'Big Lake','United States of America','US','Big Lake (United States of America)',1,1,0),(11728,0,111571,'Big Sand Bay','St. Vincent & the Grenadines','VC','Big Sand Bay (St. Vincent & the Grenadines)',1,1,0),(11729,0,111572,'Big Water','United States of America','US','Big Water (United States of America)',1,1,0),(11730,0,111573,'Bijilo','Gambia','GM','Bijilo (Gambia)',1,1,0),(11731,3233,111575,'Bimini','Bahamas','BS','Bimini (Bahamas)',1,1,0),(11732,0,111576,'Binalong Bay','Australia','AU','Binalong Bay (Australia)',1,1,0),(11733,3254,111577,'Binz','Germany','DE','Binz (Germany)',1,1,0),(11734,3256,111578,'Binzen','Germany','DE','Binzen (Germany)',1,1,0),(11735,3271,111579,'Birgitz','Austria','AT','Birgitz (Austria)',1,1,0),(11736,3276,111580,'Birkenwerder','Germany','DE','Birkenwerder (Germany)',1,1,0),(11737,3283,111581,'Birsfelden','Switzerland','CH','Birsfelden (Switzerland)',1,1,0),(11738,3284,111582,'Birstonas','Lithuania','LT','Birstonas (Lithuania)',1,1,0),(11739,0,111583,'Biscarosse','France','FR','Biscarosse (France)',1,1,0),(11740,0,111584,'Bischofswerda','Germany','DE','Bischofswerda (Germany)',1,1,0),(11741,0,111585,'Bischwiller','France','FR','Bischwiller (France)',1,1,0),(11742,3292,111586,'Biscoe','United States of America','US','Biscoe (United States of America)',1,1,0),(11743,0,111587,'Bishop','United States of America','US','Bishop (United States of America)',1,1,0),(11744,3316,111588,'Bitburg','Germany','DE','Bitburg (Germany)',1,1,0),(11745,3323,111589,'Bivigliano','Italy','IT','Bivigliano (Italy)',1,1,0),(11746,0,111590,'Bjorkliden','Sweden','SE','Bjorkliden (Sweden)',1,1,0),(11747,0,111591,'Bjursas','Sweden','SE','Bjursas (Sweden)',1,1,0),(11748,0,111592,'Black Mountain','United States of America','US','Black Mountain (United States of America)',1,1,0),(11749,0,111593,'Blackburn','United Kingdom','UK','Blackburn (United Kingdom)',1,1,0),(11750,0,111594,'Blackhall Colliery','United Kingdom','UK','Blackhall Colliery (United Kingdom)',1,1,0),(11751,3358,111595,'Blackshear','United States of America','US','Blackshear (United States of America)',1,1,0),(11752,0,111596,'Blainville sur Mer','France','FR','Blainville sur Mer (France)',1,1,0),(11753,0,111597,'Blaison-Gohier','France','FR','Blaison-Gohier (France)',1,1,0),(11754,0,111598,'Blankenbach','Germany','DE','Blankenbach (Germany)',1,1,0),(11755,0,111599,'Blaubach','Germany','DE','Blaubach (Germany)',1,1,0),(11756,0,111600,'Blavand','Denmark','DK','Blavand (Denmark)',1,1,0),(11757,3416,111601,'Blaye','France','FR','Blaye (France)',1,1,0),(11758,3432,111602,'Blois','France','FR','Blois (France)',1,1,0),(11759,3443,111603,'Bloomingdale','United States of America','US','Bloomingdale (United States of America)',1,1,0),(11760,0,111604,'Bluche Randogne','Switzerland','CH','Bluche Randogne (Switzerland)',1,1,0),(11761,3456,111605,'Blue Ash','United States of America','US','Blue Ash (United States of America)',1,1,0),(11762,3465,111606,'Bluffton','United States of America','US','Bluffton (United States of America)',1,1,0),(11763,0,111607,'Boat of Garten','United Kingdom','UK','Boat of Garten (United Kingdom)',1,1,0),(11764,0,111608,'Boavista','Cape Verde','CV','Boavista (Cape Verde)',1,1,0),(11765,0,111609,'Bobbio','Italy','IT','Bobbio (Italy)',1,1,0),(11766,3498,111610,'Boca Grande','United States of America','US','Boca Grande (United States of America)',1,1,0),(11767,3501,111611,'Bocas del Toro','Panama','PA','Bocas del Toro (Panama)',1,1,0),(11768,0,111612,'Bodega Bay','United States of America','US','Bodega Bay (United States of America)',1,1,0),(11769,0,111613,'Bodenkirchen','Germany','DE','Bodenkirchen (Germany)',1,1,0),(11770,3514,111614,'Bodenmais','Germany','DE','Bodenmais (Germany)',1,1,0),(11771,0,111615,'Boehlen','Germany','DE','Boehlen (Germany)',1,1,0),(11772,3539,111616,'Bogazici','Turkey','TR','Bogazici (Turkey)',1,1,0),(11773,3556,111617,'Bohoyo','Spain','ES','Bohoyo (Spain)',1,1,0),(11774,0,111618,'Boiling Springs','United States of America','US','Boiling Springs (United States of America)',1,1,0),(11775,3567,111619,'Bois-Guillaume','France','FR','Bois-Guillaume (France)',1,1,0),(11776,0,111620,'Beccles','United Kingdom','UK','Beccles (United Kingdom)',1,1,0),(11777,0,111621,'Becej','Serbia','RS','Becej (Serbia)',1,1,0),(11778,0,111622,'Beddgelert','United Kingdom','UK','Beddgelert (United Kingdom)',1,1,0),(11779,0,111623,'Bedmister','United States of America','US','Bedmister (United States of America)',1,1,0),(11780,2692,111624,'Bedugul','Indonesia','ID','Bedugul (Indonesia)',1,1,0),(11781,0,111625,'Beedenbostel','Germany','DE','Beedenbostel (Germany)',1,1,0),(11782,2698,111626,'Beef Island','British Virgin Islands','VG','Beef Island (British Virgin Islands)',1,1,0),(11783,0,111627,'Beemster','Netherlands','NL','Beemster (Netherlands)',1,1,0),(11784,0,111628,'Beesel','Netherlands','NL','Beesel (Netherlands)',1,1,0),(11785,2710,111629,'Beeville','United States of America','US','Beeville (United States of America)',1,1,0),(11786,2711,111630,'Bega','Australia','AU','Bega (Australia)',1,1,0),(11787,0,111631,'Behringersmuhle','Germany','DE','Behringersmuhle (Germany)',1,1,0),(11788,0,111632,'Beiteddine','Lebanon','LB','Beiteddine (Lebanon)',1,1,0),(11789,2741,111633,'Beja','Portugal','PT','Beja (Portugal)',1,1,0),(11790,0,111634,'Bejar','Spain','ES','Bejar (Spain)',1,1,0),(11791,0,111635,'Bel Ombre','Seychelles','SC','Bel Ombre (Seychelles)',1,1,0),(11792,2756,111636,'Belcamp','United States of America','US','Belcamp (United States of America)',1,1,0),(11793,0,111637,'Belchite','Spain','ES','Belchite (Spain)',1,1,0),(11794,0,111638,'Beldorf','Germany','DE','Beldorf (Germany)',1,1,0),(11795,0,111639,'Belgodere','France','FR','Belgodere (France)',1,1,0),(11796,0,111640,'Belgorod','Russia','RU','Belgorod (Russia)',1,1,0),(11797,0,111641,'Belis','Romania','RO','Belis (Romania)',1,1,0),(11798,0,111642,'Bell Gardens','United States of America','US','Bell Gardens (United States of America)',1,1,0),(11799,2800,111643,'Bellaria','Italy','IT','Bellaria (Italy)',1,1,0),(11800,2814,111644,'Bellefonte','United States of America','US','Bellefonte (United States of America)',1,1,0),(11801,2835,111645,'Bellingen','Australia','AU','Bellingen (Australia)',1,1,0),(11802,0,111646,'Bellshill','United Kingdom','UK','Bellshill (United Kingdom)',1,1,0),(11803,0,111647,'Bellwald','Switzerland','CH','Bellwald (Switzerland)',1,1,0),(11804,0,111648,'Belmont','United States of America','US','Belmont (United States of America)',1,1,0),(11805,0,111649,'Belmont','United States of America','US','Belmont (United States of America)',1,1,0),(11806,0,111650,'Belmonte de Miranda','Spain','ES','Belmonte de Miranda (Spain)',1,1,0),(11807,0,111651,'Belton','United States of America','US','Belton (United States of America)',1,1,0),(11808,0,111652,'Belvaux','Luxembourg','LU','Belvaux (Luxembourg)',1,1,0),(11809,0,111653,'Belvedere Grado','Italy','IT','Belvedere Grado (Italy)',1,1,0),(11810,2876,111654,'Belvidere','United States of America','US','Belvidere (United States of America)',1,1,0),(11811,0,111656,'Benbecula','United Kingdom','UK','Benbecula (United Kingdom)',1,1,0),(11812,2895,111657,'Benbrook','United States of America','US','Benbrook (United States of America)',1,1,0),(11813,0,111658,'Benguerra Island','Mozambique','MZ','Benguerra Island (Mozambique)',1,1,0),(11814,2915,111659,'Benicarlo','Spain','ES','Benicarlo (Spain)',1,1,0),(11815,2918,111660,'Benicia','United States of America','US','Benicia (United States of America)',1,1,0),(11816,2919,111661,'Benidorm','Spain','ES','Benidorm (Spain)',1,1,0),(11817,0,111662,'Bennewitz','Germany','DE','Bennewitz (Germany)',1,1,0),(11818,2930,111663,'Benodet','France','FR','Benodet (France)',1,1,0),(11819,2940,111664,'Bentivoglio','Italy','IT','Bentivoglio (Italy)',1,1,0),(11820,0,111665,'Benton','United States of America','US','Benton (United States of America)',1,1,0),(11821,0,111666,'Bercheres-les-Pierres','France','FR','Bercheres-les-Pierres (France)',1,1,0),(11822,0,111667,'Berg im Attergau','Austria','AT','Berg im Attergau (Austria)',1,1,0),(11823,2973,111668,'Berga','Spain','ES','Berga (Spain)',1,1,0),(11824,0,111669,'Bergen','Netherlands','NL','Bergen (Netherlands)',1,1,0),(11825,0,111670,'Bergneustadt','Germany','DE','Bergneustadt (Germany)',1,1,0),(11826,2992,111671,'Bergville','South Africa','ZA','Bergville (South Africa)',1,1,0),(11827,0,111672,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(11828,0,111673,'Berlingen','Switzerland','CH','Berlingen (Switzerland)',1,1,0),(11829,3016,111674,'Bernate Ticino','Italy','IT','Bernate Ticino (Italy)',1,1,0),(11830,3023,111675,'Bernin','France','FR','Bernin (France)',1,1,0),(11831,0,111676,'Bernried','Germany','DE','Bernried (Germany)',1,1,0),(11832,0,111677,'Bernried am Starnberger See','Germany','DE','Bernried am Starnberger See (Germany)',1,1,0),(11833,3027,111678,'Bernshausen','Germany','DE','Bernshausen (Germany)',1,1,0),(11834,0,111679,'Berovo','Macedonia','MK','Berovo (Macedonia)',1,1,0),(11835,3038,111680,'Berry-au-Bac','France','FR','Berry-au-Bac (France)',1,1,0),(11836,0,111681,'Beselich','Germany','DE','Beselich (Germany)',1,1,0),(11837,0,111682,'Besenova','Slovakia','SK','Besenova (Slovakia)',1,1,0),(11838,0,111683,'Bessan','France','FR','Bessan (France)',1,1,0),(11839,0,111684,'Bessenbach - Oberbessenbach','Germany','DE','Bessenbach - Oberbessenbach (Germany)',1,1,0),(11840,0,111685,'Bethlehem','United States of America','US','Bethlehem (United States of America)',1,1,0),(11841,3087,111686,'Bettendorf','United States of America','US','Bettendorf (United States of America)',1,1,0),(11842,0,111687,'Betton','France','FR','Betton (France)',1,1,0),(11843,0,111688,'Beutin','France','FR','Beutin (France)',1,1,0),(11844,0,111689,'Beuzeville','France','FR','Beuzeville (France)',1,1,0),(11845,0,111690,'Beverstedt','Germany','DE','Beverstedt (Germany)',1,1,0),(11846,3116,111691,'Beynat','France','FR','Beynat (France)',1,1,0),(11847,3121,111692,'Bezau','Austria','AT','Bezau (Austria)',1,1,0),(11848,0,111693,'Bezzeca','Italy','IT','Bezzeca (Italy)',1,1,0),(11849,0,111695,'Bicker','United Kingdom','UK','Bicker (United Kingdom)',1,1,0),(11850,3172,111696,'Bidart','France','FR','Bidart (France)',1,1,0),(11851,3182,111697,'Bielefeld','Germany','DE','Bielefeld (Germany)',1,1,0),(11852,3184,111698,'Bielsa','Spain','ES','Bielsa (Spain)',1,1,0),(11853,0,111699,'Big Island','United States of America','US','Big Island (United States of America)',1,1,0),(11854,0,111700,'Big White','Canada','CA','Big White (Canada)',1,1,0),(11855,3204,111701,'Biggs Junction','United States of America','US','Biggs Junction (United States of America)',1,1,0),(11856,0,111702,'Bijelo Polje','Montenegro','ME','Bijelo Polje (Montenegro)',1,1,0),(11857,0,111703,'Bilje','Croatia','HR','Bilje (Croatia)',1,1,0),(11858,0,111704,'Billafingen','Germany','DE','Billafingen (Germany)',1,1,0),(11859,0,111705,'Billericay','United Kingdom','UK','Billericay (United Kingdom)',1,1,0),(11860,0,111706,'Billingshurst','United Kingdom','UK','Billingshurst (United Kingdom)',1,1,0),(11861,3228,111707,'Billund','Denmark','DK','Billund (Denmark)',1,1,0),(11862,0,111708,'Bilton-in-Ainsty','United Kingdom','UK','Bilton-in-Ainsty (United Kingdom)',1,1,0),(11863,3243,111709,'Binghamton','United States of America','US','Binghamton (United States of America)',1,1,0),(11864,3245,111710,'Bingol','Turkey','TR','Bingol (Turkey)',1,1,0),(11865,0,111711,'Binibeca','Spain','ES','Binibeca (Spain)',1,1,0),(11866,0,111712,'Binn','Switzerland','CH','Binn (Switzerland)',1,1,0),(11867,0,111713,'Binzenbach','Germany','DE','Binzenbach (Germany)',1,1,0),(11868,3257,111714,'Binzhou','China','CN','Binzhou (China)',1,1,0),(11869,3258,111715,'Biograd na Moru','Croatia','HR','Biograd na Moru (Croatia)',1,1,0),(11870,0,111716,'Bionaz','Italy','IT','Bionaz (Italy)',1,1,0),(11871,0,111717,'Birchington','United Kingdom','UK','Birchington (United Kingdom)',1,1,0),(11872,0,111718,'Birgisch','Switzerland','CH','Birgisch (Switzerland)',1,1,0),(11873,0,111719,'Birkelbach','Germany','DE','Birkelbach (Germany)',1,1,0),(11874,0,111720,'Birkenfeld','Germany','DE','Birkenfeld (Germany)',1,1,0),(11875,3288,111721,'Biscarrosse','France','FR','Biscarrosse (France)',1,1,0),(11876,0,111722,'Bischofsmais','Germany','DE','Bischofsmais (Germany)',1,1,0),(11877,0,111723,'Biserta','Tunisia','TN','Biserta (Tunisia)',1,1,0),(11878,0,111724,'Bishop\'s Stortford','United Kingdom','UK','Bishop\'s Stortford (United Kingdom)',1,1,0),(11879,0,111725,'Biskupiec','Poland','PL','Biskupiec (Poland)',1,1,0),(11880,3319,111726,'Bitonto','Italy','IT','Bitonto (Italy)',1,1,0),(11881,3330,111727,'Bjerkvik','Norway','NO','Bjerkvik (Norway)',1,1,0),(11882,0,111728,'Black River','Mauritius','MU','Black River (Mauritius)',1,1,0),(11883,3349,111729,'Blackduck','United States of America','US','Blackduck (United States of America)',1,1,0),(11884,0,111730,'Blackfalds','Canada','CA','Blackfalds (Canada)',1,1,0),(11885,3374,111731,'Blainville','Canada','CA','Blainville (Canada)',1,1,0),(11886,0,111732,'Bergfelde','Germany','DE','Bergfelde (Germany)',1,1,0),(11887,0,111733,'Berghaupten','Germany','DE','Berghaupten (Germany)',1,1,0),(11888,2986,111734,'Bergheim','France','FR','Bergheim (France)',1,1,0),(11889,0,111735,'Bergheim','Germany','DE','Bergheim (Germany)',1,1,0),(11890,0,111736,'Bergrheinfeld','Germany','DE','Bergrheinfeld (Germany)',1,1,0),(11891,0,111737,'Bergues','France','FR','Bergues (France)',1,1,0),(11892,0,111738,'Berkel-Enschot','Netherlands','NL','Berkel-Enschot (Netherlands)',1,1,0),(11893,0,111739,'Berkhout','Netherlands','NL','Berkhout (Netherlands)',1,1,0),(11894,0,111740,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(11895,3014,111741,'Bernalillo','United States of America','US','Bernalillo (United States of America)',1,1,0),(11896,3015,111742,'Bernardsville','United States of America','US','Bernardsville (United States of America)',1,1,0),(11897,0,111743,'Berneburg','Germany','DE','Berneburg (Germany)',1,1,0),(11898,3034,111744,'Berrioplano','Spain','ES','Berrioplano (Spain)',1,1,0),(11899,3072,111745,'Betanzos','Spain','ES','Betanzos (Spain)',1,1,0),(11900,0,111746,'Bethany Beach','United States of America','US','Bethany Beach (United States of America)',1,1,0),(11901,0,111747,'Bethlehem','South Africa','ZA','Bethlehem (South Africa)',1,1,0),(11902,3081,111748,'Bethpage','United States of America','US','Bethpage (United States of America)',1,1,0),(11903,0,111750,'Betzenstein','Germany','DE','Betzenstein (Germany)',1,1,0),(11904,0,111751,'Beuningen','Netherlands','NL','Beuningen (Netherlands)',1,1,0),(11905,0,111752,'Beurnevesin','Switzerland','CH','Beurnevesin (Switzerland)',1,1,0),(11906,3100,111753,'Bevaix','Switzerland','CH','Bevaix (Switzerland)',1,1,0),(11907,0,111754,'Beverley','United Kingdom','UK','Beverley (United Kingdom)',1,1,0),(11908,3120,111755,'Bezancourt','France','FR','Bezancourt (France)',1,1,0),(11909,0,111756,'Bialka Tatrzanska','Poland','PL','Bialka Tatrzanska (Poland)',1,1,0),(11910,0,111757,'Bickensohl','Germany','DE','Bickensohl (Germany)',1,1,0),(11911,3171,111758,'Bidarray','France','FR','Bidarray (France)',1,1,0),(11912,0,111759,'Biei','Japan','JP','Biei (Japan)',1,1,0),(11913,3187,111760,'Bientina','Italy','IT','Bientina (Italy)',1,1,0),(11914,0,111761,'Biervliet','Netherlands','NL','Biervliet (Netherlands)',1,1,0),(11915,0,111762,'Bietigheim-Bissingen','Germany','DE','Bietigheim-Bissingen (Germany)',1,1,0),(11916,0,111763,'Big Spring','United States of America','US','Big Spring (United States of America)',1,1,0),(11917,0,111764,'Big Sur','United States of America','US','Big Sur (United States of America)',1,1,0),(11918,3207,111765,'Bihac','Bosnia and Herzegowina','BA','Bihac (Bosnia and Herzegowina)',1,1,0),(11919,0,111766,'Bila Tserkva','Ukraine','UA','Bila Tserkva (Ukraine)',1,1,0),(11920,0,111767,'Bildstein','Austria','AT','Bildstein (Austria)',1,1,0),(11921,0,111768,'Bilene','Mozambique','MZ','Bilene (Mozambique)',1,1,0),(11922,0,111769,'Billigheim-Ingenheim','Germany','DE','Billigheim-Ingenheim (Germany)',1,1,0),(11923,3229,111770,'Biloela','Australia','AU','Biloela (Australia)',1,1,0),(11924,3231,111771,'Bilpin','Australia','AU','Bilpin (Australia)',1,1,0),(11925,0,111772,'Birmingham','United States of America','US','Birmingham (United States of America)',1,1,0),(11926,0,111773,'Birnam','United Kingdom','UK','Birnam (United Kingdom)',1,1,0),(11927,3281,111774,'Birr','Ireland','IE','Birr (Ireland)',1,1,0),(11928,0,111775,'Birx','Germany','DE','Birx (Germany)',1,1,0),(11929,0,111776,'Birzai','Lithuania','LT','Birzai (Lithuania)',1,1,0),(11930,0,111777,'Bisamberg','Austria','AT','Bisamberg (Austria)',1,1,0),(11931,3289,111778,'Bisceglie','Italy','IT','Bisceglie (Italy)',1,1,0),(11932,0,111779,'Bishopston','United Kingdom','UK','Bishopston (United Kingdom)',1,1,0),(11933,0,111780,'Bislee','France','FR','Bislee (France)',1,1,0),(11934,3313,111781,'Bissone','Switzerland','CH','Bissone (Switzerland)',1,1,0),(11935,3321,111782,'Bitterfeld-Wolfen','Germany','DE','Bitterfeld-Wolfen (Germany)',1,1,0),(11936,3327,111783,'Bize-Minervois','France','FR','Bize-Minervois (France)',1,1,0),(11937,0,111784,'Bjelovar','Croatia','HR','Bjelovar (Croatia)',1,1,0),(11938,3332,111785,'Bjuv','Sweden','SE','Bjuv (Sweden)',1,1,0),(11939,3385,111786,'Blaisy-Bas','France','FR','Blaisy-Bas (France)',1,1,0),(11940,0,111787,'Blan','France','FR','Blan (France)',1,1,0),(11941,3403,111788,'Blanes','Spain','ES','Blanes (Spain)',1,1,0),(11942,0,111789,'Blankenrath','Germany','DE','Blankenrath (Germany)',1,1,0),(11943,3413,111790,'Blaustein','Germany','DE','Blaustein (Germany)',1,1,0),(11944,0,111791,'Bleckede','Germany','DE','Bleckede (Germany)',1,1,0),(11945,3424,111792,'Blessington','Ireland','IE','Blessington (Ireland)',1,1,0),(11946,0,111793,'Blevio','Italy','IT','Blevio (Italy)',1,1,0),(11947,0,111794,'Blieskastel','Germany','DE','Blieskastel (Germany)',1,1,0),(11948,0,111795,'Bloemendaal','Netherlands','NL','Bloemendaal (Netherlands)',1,1,0),(11949,0,111796,'Bloomfield','United States of America','US','Bloomfield (United States of America)',1,1,0),(11950,0,111797,'Bloomfield','United States of America','US','Bloomfield (United States of America)',1,1,0),(11951,0,111798,'Bloomfield Hills','United States of America','US','Bloomfield Hills (United States of America)',1,1,0),(11952,0,111799,'Bloudan','Syria',NULL,'Bloudan (Syria)',1,1,0),(11953,0,111800,'Bludenz-Burserberg','Austria','AT','Bludenz-Burserberg (Austria)',1,1,0),(11954,0,111801,'Bluffton','United States of America','US','Bluffton (United States of America)',1,1,0),(11955,3466,111802,'Blumberg','Germany','DE','Blumberg (Germany)',1,1,0),(11956,0,111803,'Blyde River Canyon','South Africa','ZA','Blyde River Canyon (South Africa)',1,1,0),(11957,0,111804,'Boarstall','United Kingdom','UK','Boarstall (United Kingdom)',1,1,0),(11958,0,111805,'Boblitz','Germany','DE','Boblitz (Germany)',1,1,0),(11959,3504,111806,'Bocenago','Italy','IT','Bocenago (Italy)',1,1,0),(11960,0,111807,'Bodenwohr','Germany','DE','Bodenwohr (Germany)',1,1,0),(11961,0,111808,'Bodnegg','Germany','DE','Bodnegg (Germany)',1,1,0),(11962,3528,111809,'Boe','France','FR','Boe (France)',1,1,0),(11963,3536,111810,'Boffalora sopra Ticino','Italy','IT','Boffalora sopra Ticino (Italy)',1,1,0),(11964,0,111811,'Bogarra','Spain','ES','Bogarra (Spain)',1,1,0),(11965,0,111812,'Bogdanikha','Russia','RU','Bogdanikha (Russia)',1,1,0),(11966,3540,111813,'Bogen','Germany','DE','Bogen (Germany)',1,1,0),(11967,0,111814,'Bognanco','Italy','IT','Bognanco (Italy)',1,1,0),(11968,3555,111815,'Bohol','Philippines','PH','Bohol (Philippines)',1,1,0),(11969,3571,111816,'Boissy-Saint-Leger','France','FR','Boissy-Saint-Leger (France)',1,1,0),(11970,0,111817,'Boitin','Germany','DE','Boitin (Germany)',1,1,0),(11971,3577,111818,'Boksburg','South Africa','ZA','Boksburg (South Africa)',1,1,0),(11972,0,111819,'Bolgar','Russia','RU','Bolgar (Russia)',1,1,0),(11973,0,111820,'Bolivar','United States of America','US','Bolivar (United States of America)',1,1,0),(11974,3592,111821,'Bollate','Italy','IT','Bollate (Italy)',1,1,0),(11975,0,111822,'Boltongate','United Kingdom','UK','Boltongate (United Kingdom)',1,1,0),(11976,0,111823,'Bolulla','Spain','ES','Bolulla (Spain)',1,1,0),(11977,0,111824,'Bom Sucesso','Portugal','PT','Bom Sucesso (Portugal)',1,1,0),(11978,0,111825,'Bonaire','Bonaire Sint Eustatius and Saba',NULL,'Bonaire (Bonaire Sint Eustatius and Saba)',1,1,0),(11979,0,111826,'Bonarcado','Italy','IT','Bonarcado (Italy)',1,1,0),(11980,0,111827,'Bongaree','Australia','AU','Bongaree (Australia)',1,1,0),(11981,3678,111828,'Boonville','United States of America','US','Boonville (United States of America)',1,1,0),(11982,0,111829,'Bootle','United Kingdom','UK','Bootle (United Kingdom)',1,1,0),(11983,0,111830,'Bopfingen','Germany','DE','Bopfingen (Germany)',1,1,0),(11984,0,111831,'Bordes de Envalira','Andorra','AD','Bordes de Envalira (Andorra)',1,1,0),(11985,0,111832,'Bordubet','Turkey','TR','Bordubet (Turkey)',1,1,0),(11986,0,111833,'Borgo Bonsignore','Italy','IT','Borgo Bonsignore (Italy)',1,1,0),(11987,0,111834,'Borgo San Dalmazzo','Italy','IT','Borgo San Dalmazzo (Italy)',1,1,0),(11988,0,111835,'Born','Germany','DE','Born (Germany)',1,1,0),(11989,0,111836,'Boron','United States of America','US','Boron (United States of America)',1,1,0),(11990,0,111837,'Boroughbridge','United Kingdom','UK','Boroughbridge (United Kingdom)',1,1,0),(11991,0,111838,'Borsa','Romania','RO','Borsa (Romania)',1,1,0),(11992,0,111839,'Borve','United Kingdom','UK','Borve (United Kingdom)',1,1,0),(11993,3739,111840,'Bosa','Italy','IT','Bosa (Italy)',1,1,0),(11994,3756,111841,'Bossier City','United States of America','US','Bossier City (United States of America)',1,1,0),(11995,3763,111842,'Botarell','Spain','ES','Botarell (Spain)',1,1,0),(11996,3765,111843,'Bothell','United States of America','US','Bothell (United States of America)',1,1,0),(11997,0,111844,'Bouc-Bel-Air','France','FR','Bouc-Bel-Air (France)',1,1,0),(11998,2571,111845,'Baxter','United States of America','US','Baxter (United States of America)',1,1,0),(11999,2575,111846,'Bayamon','Puerto Rico','PR','Bayamon (Puerto Rico)',1,1,0),(12000,0,111847,'Bayan Lepas','Malaysia','MY','Bayan Lepas (Malaysia)',1,1,0),(12001,2594,111848,'Bayside','United States of America','US','Bayside (United States of America)',1,1,0),(12002,0,111849,'Bazora','Austria','AT','Bazora (Austria)',1,1,0),(12003,2619,111850,'Bear','United States of America','US','Bear (United States of America)',1,1,0),(12004,0,111851,'Beaucouze','France','FR','Beaucouze (France)',1,1,0),(12005,0,111852,'Beaulieu','United Kingdom','UK','Beaulieu (United Kingdom)',1,1,0),(12006,0,111853,'Beaumaris','United Kingdom','UK','Beaumaris (United Kingdom)',1,1,0),(12007,0,111854,'Beaumont-du-Perigord','France','FR','Beaumont-du-Perigord (France)',1,1,0),(12008,0,111855,'Beaver','United States of America','US','Beaver (United States of America)',1,1,0),(12009,2661,111856,'Beaver Creek','Canada','CA','Beaver Creek (Canada)',1,1,0),(12010,0,111857,'Beaver Dam','United States of America','US','Beaver Dam (United States of America)',1,1,0),(12011,2664,111858,'Beaverton','United States of America','US','Beaverton (United States of America)',1,1,0),(12012,2668,111859,'Bebra','Germany','DE','Bebra (Germany)',1,1,0),(12013,2671,111860,'Becerril De La Sierra','Spain','ES','Becerril De La Sierra (Spain)',1,1,0),(12014,0,111861,'Beckingen','Germany','DE','Beckingen (Germany)',1,1,0),(12015,0,111862,'Bedford','United States of America','US','Bedford (United States of America)',1,1,0),(12016,2684,111863,'Bedford','Canada','CA','Bedford (Canada)',1,1,0),(12017,2687,111864,'Bedfordview','South Africa','ZA','Bedfordview (South Africa)',1,1,0),(12018,0,111865,'Bedrichov','Czech Republic','CZ','Bedrichov (Czech Republic)',1,1,0),(12019,0,111866,'Beelen','Germany','DE','Beelen (Germany)',1,1,0),(12020,0,111867,'Behnkenhagen','Germany','DE','Behnkenhagen (Germany)',1,1,0),(12021,0,111868,'Beierfeld','Germany','DE','Beierfeld (Germany)',1,1,0),(12022,2729,111869,'Beinasco','Italy','IT','Beinasco (Italy)',1,1,0),(12023,2735,111870,'Beitbridge','Zimbabwe','ZW','Beitbridge (Zimbabwe)',1,1,0),(12024,0,111871,'Beith','United Kingdom','UK','Beith (United Kingdom)',1,1,0),(12025,2750,111872,'Bel Ombre','Mauritius','MU','Bel Ombre (Mauritius)',1,1,0),(12026,0,111873,'Bela Pod Pradedem','Czech Republic','CZ','Bela Pod Pradedem (Czech Republic)',1,1,0),(12027,2767,111874,'Belfast','United States of America','US','Belfast (United States of America)',1,1,0),(12028,2772,111875,'Belfort','France','FR','Belfort (France)',1,1,0),(12029,2775,111876,'Belgern','Germany','DE','Belgern (Germany)',1,1,0),(12030,0,111877,'Belle Glade','United States of America','US','Belle Glade (United States of America)',1,1,0),(12031,0,111878,'Belle Mead','United States of America','US','Belle Mead (United States of America)',1,1,0),(12032,0,111879,'Belle Vernon','United States of America','US','Belle Vernon (United States of America)',1,1,0),(12033,0,111880,'Bellevue','United States of America','US','Bellevue (United States of America)',1,1,0),(12034,0,111881,'Bellevue','United States of America','US','Bellevue (United States of America)',1,1,0),(12035,2837,111882,'Bellingham','United States of America','US','Bellingham (United States of America)',1,1,0),(12036,2839,111883,'Bellinzona','Switzerland','CH','Bellinzona (Switzerland)',1,1,0),(12037,2841,111884,'Bellmead','United States of America','US','Bellmead (United States of America)',1,1,0),(12038,2846,111885,'Bellows Falls','United States of America','US','Bellows Falls (United States of America)',1,1,0),(12039,2848,111886,'Bells','United States of America','US','Bells (United States of America)',1,1,0),(12040,2851,111887,'Belluno','Italy','IT','Belluno (Italy)',1,1,0),(12041,2852,111888,'Bellver de Cerdanya','Spain','ES','Bellver de Cerdanya (Spain)',1,1,0),(12042,2874,111889,'Belves','France','FR','Belves (France)',1,1,0),(12043,0,111890,'Belvianes-et-Cavirac','France','FR','Belvianes-et-Cavirac (France)',1,1,0),(12044,2885,111891,'Benacazon','Spain','ES','Benacazon (Spain)',1,1,0),(12045,0,111892,'Benafilm','Portugal','PT','Benafilm (Portugal)',1,1,0),(12046,0,111893,'Benagil','Portugal','PT','Benagil (Portugal)',1,1,0),(12047,0,111894,'Benalup-Casas Viejas','Spain','ES','Benalup-Casas Viejas (Spain)',1,1,0),(12048,2899,111895,'Bendorf','Germany','DE','Bendorf (Germany)',1,1,0),(12049,0,111896,'Benfeld-Sand','France','FR','Benfeld-Sand (France)',1,1,0),(12050,2909,111897,'Bengkulu','Indonesia','ID','Bengkulu (Indonesia)',1,1,0),(12051,0,111898,'Benimarfull','Spain','ES','Benimarfull (Spain)',1,1,0),(12052,2924,111899,'Benitses','Greece','GR','Benitses (Greece)',1,1,0),(12053,2933,111900,'Benoni','South Africa','ZA','Benoni (South Africa)',1,1,0),(12054,2939,111901,'Benson','United States of America','US','Benson (United States of America)',1,1,0),(12055,2946,111902,'Bentong','Malaysia','MY','Bentong (Malaysia)',1,1,0),(12056,2962,111903,'Berching','Germany','DE','Berching (Germany)',1,1,0),(12057,2965,111904,'Berck','France','FR','Berck (France)',1,1,0),(12058,2967,111905,'Berea','United States of America','US','Berea (United States of America)',1,1,0),(12059,0,111906,'Berg','Sweden','SE','Berg (Sweden)',1,1,0),(12060,0,111907,'Berg im Drautal','Austria','AT','Berg im Drautal (Austria)',1,1,0),(12061,0,111908,'Bergondo','Spain','ES','Bergondo (Spain)',1,1,0),(12062,0,111909,'Berkeley','United Kingdom','UK','Berkeley (United Kingdom)',1,1,0),(12063,0,111910,'Berlin','United States of America','US','Berlin (United States of America)',1,1,0),(12064,0,111911,'Berlingerode','Germany','DE','Berlingerode (Germany)',1,1,0),(12065,3012,111912,'Bern','Switzerland','CH','Bern (Switzerland)',1,1,0),(12066,0,111913,'Bernatice','Czech Republic','CZ','Bernatice (Czech Republic)',1,1,0),(12067,3019,111914,'Bernburg','Germany','DE','Bernburg (Germany)',1,1,0),(12068,0,111915,'Berndorf (Niederosterreich)','Austria','AT','Berndorf (Niederosterreich) (Austria)',1,1,0),(12069,0,111916,'Berthenay','France','FR','Berthenay (France)',1,1,0),(12070,0,111917,'Besenfeld','Germany','DE','Besenfeld (Germany)',1,1,0),(12071,3064,111918,'Bessenay','France','FR','Bessenay (France)',1,1,0),(12072,0,111919,'Bessines-sur-Gartempe','France','FR','Bessines-sur-Gartempe (France)',1,1,0),(12073,3067,111920,'Bessonies','France','FR','Bessonies (France)',1,1,0),(12074,0,111921,'Betchworth','United Kingdom','UK','Betchworth (United Kingdom)',1,1,0),(12075,3074,111922,'Betera','Spain','ES','Betera (Spain)',1,1,0),(12076,0,111923,'Bethel','United States of America','US','Bethel (United States of America)',1,1,0),(12077,0,111924,'Bethel','United States of America','US','Bethel (United States of America)',1,1,0),(12078,0,111925,'Bethersden','United Kingdom','UK','Bethersden (United Kingdom)',1,1,0),(12079,0,111926,'Bettingen','Germany','DE','Bettingen (Germany)',1,1,0),(12080,3089,111927,'Bettmeralp','Switzerland','CH','Bettmeralp (Switzerland)',1,1,0),(12081,3091,111928,'Bettystown','Ireland','IE','Bettystown (Ireland)',1,1,0),(12082,0,111929,'Betzdorf','Germany','DE','Betzdorf (Germany)',1,1,0),(12083,0,111930,'Beuron','Germany','DE','Beuron (Germany)',1,1,0),(12084,3122,111931,'Beziers','France','FR','Beziers (France)',1,1,0),(12085,0,111933,'Biancade','Italy','IT','Biancade (Italy)',1,1,0),(12086,3153,111934,'Biarritz','France','FR','Biarritz (France)',1,1,0),(12087,3155,111935,'Bias','France','FR','Bias (France)',1,1,0),(12088,3160,111936,'Biberach an der Riss','Germany','DE','Biberach an der Riss (Germany)',1,1,0),(12089,0,111937,'Biberbach','Germany','DE','Biberbach (Germany)',1,1,0),(12090,3161,111938,'Biberwier','Austria','AT','Biberwier (Austria)',1,1,0),(12091,0,111939,'Bibinje','Croatia','HR','Bibinje (Croatia)',1,1,0),(12092,0,111940,'Bibione Pineda','Italy','IT','Bibione Pineda (Italy)',1,1,0),(12093,0,111941,'Bibow','Germany','DE','Bibow (Germany)',1,1,0),(12094,3173,111942,'Biddeford','United States of America','US','Biddeford (United States of America)',1,1,0),(12095,0,111943,'Biebesheim am Rhein','Germany','DE','Biebesheim am Rhein (Germany)',1,1,0),(12096,0,111944,'Biel-Benken','Switzerland','CH','Biel-Benken (Switzerland)',1,1,0),(12097,0,111945,'Bielitz-Biala','Poland','PL','Bielitz-Biala (Poland)',1,1,0),(12098,0,111946,'Bielsk Podlaski','Poland','PL','Bielsk Podlaski (Poland)',1,1,0),(12099,0,111947,'Big Sky','United States of America','US','Big Sky (United States of America)',1,1,0),(12100,0,111948,'Bigues I Riells','Spain','ES','Bigues I Riells (Spain)',1,1,0),(12101,0,111950,'Bijeljina','Bosnia and Herzegowina','BA','Bijeljina (Bosnia and Herzegowina)',1,1,0),(12102,0,111951,'Bijie','China','CN','Bijie (China)',1,1,0),(12103,0,111952,'Bilgoraj','Poland','PL','Bilgoraj (Poland)',1,1,0),(12104,3220,111953,'Billerica','United States of America','US','Billerica (United States of America)',1,1,0),(12105,3236,111954,'Bindlach','Germany','DE','Bindlach (Germany)',1,1,0),(12106,3242,111955,'Bingham','United States of America','US','Bingham (United States of America)',1,1,0),(12107,0,111956,'Binibona','Spain','ES','Binibona (Spain)',1,1,0),(12108,3707,111957,'Borgo','France','FR','Borgo (France)',1,1,0),(12109,3710,111958,'Borgomanero','Italy','IT','Borgomanero (Italy)',1,1,0),(12110,3718,111959,'Bormujos','Spain','ES','Bormujos (Spain)',1,1,0),(12111,0,111960,'Borrisokane','Ireland','IE','Borrisokane (Ireland)',1,1,0),(12112,0,111961,'Borso del Grappa','Italy','IT','Borso del Grappa (Italy)',1,1,0),(12113,3734,111962,'Bort-les-Orgues','France','FR','Bort-les-Orgues (France)',1,1,0),(12114,0,111963,'Bosleben-Wullersleben','Germany','DE','Bosleben-Wullersleben (Germany)',1,1,0),(12115,0,111964,'Bosse','Germany','DE','Bosse (Germany)',1,1,0),(12116,3778,111965,'Boucherville','Canada','CA','Boucherville (Canada)',1,1,0),(12117,3785,111966,'Bougival','France','FR','Bougival (France)',1,1,0),(12118,0,111967,'Bourbach-le-Bas','France','FR','Bourbach-le-Bas (France)',1,1,0),(12119,3821,111968,'Bourges','France','FR','Bourges (France)',1,1,0),(12120,3831,111969,'Bourke','Australia','AU','Bourke (Australia)',1,1,0),(12121,0,111970,'Bourron-Marlotte','France','FR','Bourron-Marlotte (France)',1,1,0),(12122,0,111971,'Bouzigues','France','FR','Bouzigues (France)',1,1,0),(12123,3846,111972,'Bovalino','Italy','IT','Bovalino (Italy)',1,1,0),(12124,0,111973,'Bovingdon','United Kingdom','UK','Bovingdon (United Kingdom)',1,1,0),(12125,0,111974,'Bower Hinton','United Kingdom','UK','Bower Hinton (United Kingdom)',1,1,0),(12126,0,111975,'Bolzano','Italy','IT','Bolzano (Italy)',1,1,0),(12127,0,111976,'Brachttal','Germany','DE','Brachttal (Germany)',1,1,0),(12128,0,111977,'Bradenton Beach','United States of America','US','Bradenton Beach (United States of America)',1,1,0),(12129,3939,111978,'Brandenburg','United States of America','US','Brandenburg (United States of America)',1,1,0),(12130,0,111979,'Brastad','Sweden','SE','Brastad (Sweden)',1,1,0),(12131,3981,111980,'Bray','Ireland','IE','Bray (Ireland)',1,1,0),(12132,0,111981,'Bray-et-Lu','France','FR','Bray-et-Lu (France)',1,1,0),(12133,0,111982,'Bray-sur-Seine','France','FR','Bray-sur-Seine (France)',1,1,0),(12134,3985,111983,'Brazil','United States of America','US','Brazil (United States of America)',1,1,0),(12135,0,111984,'Brechin','United Kingdom','UK','Brechin (United Kingdom)',1,1,0),(12136,3994,111985,'Breclav','Czech Republic','CZ','Breclav (Czech Republic)',1,1,0),(12137,0,111986,'Breege','Germany','DE','Breege (Germany)',1,1,0),(12138,0,111987,'Brehal','France','FR','Brehal (France)',1,1,0),(12139,4005,111988,'Brehna','Germany','DE','Brehna (Germany)',1,1,0),(12140,4009,111989,'Breinigsville','United States of America','US','Breinigsville (United States of America)',1,1,0),(12141,0,111990,'Breitenau','Austria','AT','Breitenau (Austria)',1,1,0),(12142,0,111991,'Breitenfelde','Germany','DE','Breitenfelde (Germany)',1,1,0),(12143,4029,111992,'Brentonico','Italy','IT','Brentonico (Italy)',1,1,0),(12144,4030,111993,'Brentwood','United States of America','US','Brentwood (United States of America)',1,1,0),(12145,0,111994,'Brentwood','United Kingdom','UK','Brentwood (United Kingdom)',1,1,0),(12146,0,111995,'Brentwood','United States of America','US','Brentwood (United States of America)',1,1,0),(12147,0,111996,'Brentwood','United States of America','US','Brentwood (United States of America)',1,1,0),(12148,4053,111997,'Brevard','United States of America','US','Brevard (United States of America)',1,1,0),(12149,4057,111998,'Breville-Sur-Mer','France','FR','Breville-Sur-Mer (France)',1,1,0),(12150,4087,111999,'Bridgeville','United States of America','US','Bridgeville (United States of America)',1,1,0),(12151,0,112000,'Bridgnorth','United Kingdom','UK','Bridgnorth (United Kingdom)',1,1,0),(12152,0,112001,'Bridgwater','United Kingdom','UK','Bridgwater (United Kingdom)',1,1,0),(12153,4095,112002,'Brie-Comte-Robert','France','FR','Brie-Comte-Robert (France)',1,1,0),(12154,0,112003,'Brierley Hill','United Kingdom','UK','Brierley Hill (United Kingdom)',1,1,0),(12155,0,112004,'Brighouse','United Kingdom','UK','Brighouse (United Kingdom)',1,1,0),(12156,0,112005,'Brijuni','Croatia','HR','Brijuni (Croatia)',1,1,0),(12157,0,112006,'Brimington','United Kingdom','UK','Brimington (United Kingdom)',1,1,0),(12158,4135,112007,'Brisbane','Australia','AU','Brisbane (Australia)',1,1,0),(12159,4145,112008,'Brissago','Switzerland','CH','Brissago (Switzerland)',1,1,0),(12160,0,112009,'Brist','Croatia','HR','Brist (Croatia)',1,1,0),(12161,0,112010,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(12162,4160,112011,'Broadbeach','Australia','AU','Broadbeach (Australia)',1,1,0),(12163,0,112012,'Broby','Sweden','SE','Broby (Sweden)',1,1,0),(12164,0,112013,'Brockenhurst','United Kingdom','UK','Brockenhurst (United Kingdom)',1,1,0),(12165,4176,112014,'Brockville','Canada','CA','Brockville (Canada)',1,1,0),(12166,0,112015,'Brodenbach','Germany','DE','Brodenbach (Germany)',1,1,0),(12167,0,112016,'Brodick','United Kingdom','UK','Brodick (United Kingdom)',1,1,0),(12168,0,112017,'Broken Bow','United States of America','US','Broken Bow (United States of America)',1,1,0),(12169,4185,112018,'Broken Hill','Australia','AU','Broken Hill (Australia)',1,1,0),(12170,4190,112019,'Bromma','Sweden','SE','Bromma (Sweden)',1,1,0),(12171,0,112020,'Bromyard','United Kingdom','UK','Bromyard (United Kingdom)',1,1,0),(12172,4201,112021,'Bronnoysund','Norway','NO','Bronnoysund (Norway)',1,1,0),(12173,0,112022,'Brooklyn Park','United States of America','US','Brooklyn Park (United States of America)',1,1,0),(12174,4228,112023,'Brookville','United States of America','US','Brookville (United States of America)',1,1,0),(12175,4230,112024,'Broome','Australia','AU','Broome (Australia)',1,1,0),(12176,0,112025,'Brosarp','Sweden','SE','Brosarp (Sweden)',1,1,0),(12177,4237,112026,'Brossard','Canada','CA','Brossard (Canada)',1,1,0),(12178,4247,112027,'Broussard','United States of America','US','Broussard (United States of America)',1,1,0),(12179,0,112028,'Brown Deer','United States of America','US','Brown Deer (United States of America)',1,1,0),(12180,0,112029,'Brsecine','Croatia','HR','Brsecine (Croatia)',1,1,0),(12181,0,112030,'Brtonigla','Croatia','HR','Brtonigla (Croatia)',1,1,0),(12182,0,112031,'Bruchhausen-Vilsen','Germany','DE','Bruchhausen-Vilsen (Germany)',1,1,0),(12183,0,112032,'Bruchkobel','Germany','DE','Bruchkobel (Germany)',1,1,0),(12184,0,112033,'Bruinisse','Netherlands','NL','Bruinisse (Netherlands)',1,1,0),(12185,0,112034,'Bruksvallarna','Sweden','SE','Bruksvallarna (Sweden)',1,1,0),(12186,4296,112035,'Bruny Island','Australia','AU','Bruny Island (Australia)',1,1,0),(12187,4315,112036,'Bryson City','United States of America','US','Bryson City (United States of America)',1,1,0),(12188,0,112037,'Brzeg','Poland','PL','Brzeg (Poland)',1,1,0),(12189,0,112038,'Bubali','Aruba','AW','Bubali (Aruba)',1,1,0),(12190,0,112039,'Buchen (Odenwald)','Germany','DE','Buchen (Odenwald) (Germany)',1,1,0),(12191,4332,112040,'Buchenberg','Germany','DE','Buchenberg (Germany)',1,1,0),(12192,0,112041,'Buchenbeuren','Germany','DE','Buchenbeuren (Germany)',1,1,0),(12193,0,112042,'Buchloe','Germany','DE','Buchloe (Germany)',1,1,0),(12194,4342,112043,'Buckhead','United States of America','US','Buckhead (United States of America)',1,1,0),(12195,4343,112044,'Buckhorn','United States of America','US','Buckhorn (United States of America)',1,1,0),(12196,0,112045,'Buckie','United Kingdom','UK','Buckie (United Kingdom)',1,1,0),(12197,4352,112046,'Buckley','United States of America','US','Buckley (United States of America)',1,1,0),(12198,0,112047,'Budelsdorf','Germany','DE','Budelsdorf (Germany)',1,1,0),(12199,4372,112048,'Budoia','Italy','IT','Budoia (Italy)',1,1,0),(12200,0,112049,'Budva','Montenegro','ME','Budva (Montenegro)',1,1,0),(12201,0,112050,'Buena Vista','United States of America','US','Buena Vista (United States of America)',1,1,0),(12202,0,112051,'Buger','Spain','ES','Buger (Spain)',1,1,0),(12203,4395,112052,'Buggiano','Italy','IT','Buggiano (Italy)',1,1,0),(12204,0,112053,'Buggingen','Germany','DE','Buggingen (Germany)',1,1,0),(12205,4396,112054,'Bugibba','Malta','MT','Bugibba (Malta)',1,1,0),(12206,0,112055,'Buinen','Netherlands','NL','Buinen (Netherlands)',1,1,0),(12207,0,112056,'Bukit Tinggi','Malaysia','MY','Bukit Tinggi (Malaysia)',1,1,0),(12208,0,112057,'Bulgneville','France','FR','Bulgneville (France)',1,1,0),(12209,0,112058,'Bullay','Germany','DE','Bullay (Germany)',1,1,0),(12210,0,112059,'Bunaken Isand','Indonesia','ID','Bunaken Isand (Indonesia)',1,1,0),(12211,4429,112060,'Bunclody','Ireland','IE','Bunclody (Ireland)',1,1,0),(12212,4442,112061,'Bunkie','United States of America','US','Bunkie (United States of America)',1,1,0),(12213,4459,112062,'Buraydah','Saudi Arabia','SA','Buraydah (Saudi Arabia)',1,1,0),(12214,4461,112063,'Burcei','Italy','IT','Burcei (Italy)',1,1,0),(12215,0,112064,'Burg','Germany','DE','Burg (Germany)',1,1,0),(12216,0,112065,'Burg (Mosel)','Germany','DE','Burg (Mosel) (Germany)',1,1,0),(12217,30608,112066,'Burg auf Fehmarn','Germany','DE','Burg auf Fehmarn (Germany)',1,1,0),(12218,4468,112067,'Burgas','Bulgaria','BG','Burgas (Bulgaria)',1,1,0),(12219,0,112068,'Bottstein','Switzerland','CH','Bottstein (Switzerland)',1,1,0),(12220,3774,112069,'Botucatu','Brazil','BR','Botucatu (Brazil)',1,1,0),(12221,3780,112070,'Bouctouche','Canada','CA','Bouctouche (Canada)',1,1,0),(12222,3787,112071,'Bouilland','France','FR','Bouilland (France)',1,1,0),(12223,3792,112072,'Boulazac','France','FR','Boulazac (France)',1,1,0),(12224,3799,112073,'Boulogne-Billancourt','France','FR','Boulogne-Billancourt (France)',1,1,0),(12225,0,112074,'Bourcefranc-le-Chapus','France','FR','Bourcefranc-le-Chapus (France)',1,1,0),(12226,0,112075,'Bourdeaux','France','FR','Bourdeaux (France)',1,1,0),(12227,3813,112076,'Bourdeilles','France','FR','Bourdeilles (France)',1,1,0),(12228,3818,112077,'Bourg-de-Peage','France','FR','Bourg-de-Peage (France)',1,1,0),(12229,0,112078,'Bourguignons','France','FR','Bourguignons (France)',1,1,0),(12230,3832,112079,'Bourne','United States of America','US','Bourne (United States of America)',1,1,0),(12231,3845,112080,'Bouznika','Morocco','MA','Bouznika (Morocco)',1,1,0),(12232,3864,112081,'Bowmanville','Canada','CA','Bowmanville (Canada)',1,1,0),(12233,0,112082,'Boyardville','France','FR','Boyardville (France)',1,1,0),(12234,3880,112083,'Bozeman','United States of America','US','Bozeman (United States of America)',1,1,0),(12235,0,112084,'Braamt','Netherlands','NL','Braamt (Netherlands)',1,1,0),(12236,0,112085,'Brackley','United Kingdom','UK','Brackley (United Kingdom)',1,1,0),(12237,0,112086,'Brancaleone','Italy','IT','Brancaleone (Italy)',1,1,0),(12238,3940,112087,'Brandis','Germany','DE','Brandis (Germany)',1,1,0),(12239,3942,112088,'Brando','Finland','FI','Brando (Finland)',1,1,0),(12240,3944,112089,'Brandon','United States of America','US','Brandon (United States of America)',1,1,0),(12241,3949,112090,'Branford','United States of America','US','Branford (United States of America)',1,1,0),(12242,0,112091,'Branson West','United States of America','US','Branson West (United States of America)',1,1,0),(12243,3955,112092,'Branville','France','FR','Branville (France)',1,1,0),(12244,3963,112093,'Brasov','Romania','RO','Brasov (Romania)',1,1,0),(12245,3964,112094,'Brasparts','France','FR','Brasparts (France)',1,1,0),(12246,3967,112095,'Brastagi','Indonesia','ID','Brastagi (Indonesia)',1,1,0),(12247,0,112096,'Brattvag','Norway','NO','Brattvag (Norway)',1,1,0),(12248,4001,112097,'Breezewood','United States of America','US','Breezewood (United States of America)',1,1,0),(12249,4002,112098,'Breezy Point','United States of America','US','Breezy Point (United States of America)',1,1,0),(12250,0,112099,'Breidalur','Iceland','IS','Breidalur (Iceland)',1,1,0),(12251,0,112100,'Breitenbach','Germany','DE','Breitenbach (Germany)',1,1,0),(12252,0,112101,'Breitenbach am Herzberg','Germany','DE','Breitenbach am Herzberg (Germany)',1,1,0),(12253,4022,112102,'Bremerton','United States of America','US','Bremerton (United States of America)',1,1,0),(12254,0,112103,'Brenner','Italy','IT','Brenner (Italy)',1,1,0),(12255,4027,112104,'Brent','United States of America','US','Brent (United States of America)',1,1,0),(12256,0,112105,'Brenzone','Italy','IT','Brenzone (Italy)',1,1,0),(12257,4033,112106,'Brescello','Italy','IT','Brescello (Italy)',1,1,0),(12258,4046,112107,'Bretteville-sur-Odon','France','FR','Bretteville-sur-Odon (France)',1,1,0),(12259,4047,112108,'Bretton Woods','United States of America','US','Bretton Woods (United States of America)',1,1,0),(12260,4061,112109,'Brewerton','United States of America','US','Brewerton (United States of America)',1,1,0),(12261,0,112110,'Brezzo di Bedero','Italy','IT','Brezzo di Bedero (Italy)',1,1,0),(12262,4069,112111,'Briarcliff Manor','United States of America','US','Briarcliff Manor (United States of America)',1,1,0),(12263,4070,112112,'Briare','France','FR','Briare (France)',1,1,0),(12264,0,112113,'Bridge of Allen','United Kingdom','UK','Bridge of Allen (United Kingdom)',1,1,0),(12265,0,112114,'Bridge of Cally','United Kingdom','UK','Bridge of Cally (United Kingdom)',1,1,0),(12266,0,112115,'Bridgeport','United States of America','US','Bridgeport (United States of America)',1,1,0),(12267,0,112116,'Bridger','United States of America','US','Bridger (United States of America)',1,1,0),(12268,0,112117,'Bridgton','United States of America','US','Bridgton (United States of America)',1,1,0),(12269,0,112118,'Bridport','United Kingdom','UK','Bridport (United Kingdom)',1,1,0),(12270,4096,112119,'Briedern','Germany','DE','Briedern (Germany)',1,1,0),(12271,4099,112120,'Brienz','Switzerland','CH','Brienz (Switzerland)',1,1,0),(12272,0,112121,'Brigachtal','Germany','DE','Brigachtal (Germany)',1,1,0),(12273,4122,112122,'Brindisi','Italy','IT','Brindisi (Italy)',1,1,0),(12274,0,112123,'Brinon-Sur-Sauldre','France','FR','Brinon-Sur-Sauldre (France)',1,1,0),(12275,4184,112124,'Broken Arrow','United States of America','US','Broken Arrow (United States of America)',1,1,0),(12276,0,112125,'Brokind','Sweden','SE','Brokind (Sweden)',1,1,0),(12277,0,112126,'Brombachtal','Germany','DE','Brombachtal (Germany)',1,1,0),(12278,0,112127,'Brome','United Kingdom','UK','Brome (United Kingdom)',1,1,0),(12279,0,112128,'Brookfield','United States of America','US','Brookfield (United States of America)',1,1,0),(12280,4218,112129,'Brookline','United States of America','US','Brookline (United States of America)',1,1,0),(12281,4219,112130,'Brooklyn','United States of America','US','Brooklyn (United States of America)',1,1,0),(12282,4226,112131,'Brooksville','United States of America','US','Brooksville (United States of America)',1,1,0),(12283,0,112132,'Brookville','United States of America','US','Brookville (United States of America)',1,1,0),(12284,0,112133,'Brora','United Kingdom','UK','Brora (United Kingdom)',1,1,0),(12285,0,112134,'Brou','France','FR','Brou (France)',1,1,0),(12286,4245,112135,'Broulee','Australia','AU','Broulee (Australia)',1,1,0),(12287,0,112136,'Broumov','Czech Republic','CZ','Broumov (Czech Republic)',1,1,0),(12288,4253,112137,'Brownwood','United States of America','US','Brownwood (United States of America)',1,1,0),(12289,4258,112138,'Brozas','Spain','ES','Brozas (Spain)',1,1,0),(12290,0,112139,'Bruel','Germany','DE','Bruel (Germany)',1,1,0),(12291,4285,112140,'Brunet','France','FR','Brunet (France)',1,1,0),(12292,4308,112141,'Bryan','United States of America','US','Bryan (United States of America)',1,1,0),(12293,0,112142,'Bryan','United States of America','US','Bryan (United States of America)',1,1,0),(12294,0,112143,'Bryansk','Russia','RU','Bryansk (Russia)',1,1,0),(12295,0,112144,'Bryn Mawr','United States of America','US','Bryn Mawr (United States of America)',1,1,0),(12296,0,112145,'Brzeziny','Poland','PL','Brzeziny (Poland)',1,1,0),(12297,4324,112146,'Bucaramanga','Colombia','CO','Bucaramanga (Colombia)',1,1,0),(12298,4327,112147,'Bucerias','Mexico','MX','Bucerias (Mexico)',1,1,0),(12299,0,112148,'Buchlberg','Germany','DE','Buchlberg (Germany)',1,1,0),(12300,4337,112149,'Buckeburg','Germany','DE','Buckeburg (Germany)',1,1,0),(12301,0,112150,'Budogoshch','Russia','RU','Budogoshch (Russia)',1,1,0),(12302,4381,112151,'Buellton','United States of America','US','Buellton (United States of America)',1,1,0),(12303,0,112152,'Buenavista','Spain','ES','Buenavista (Spain)',1,1,0),(12304,4386,112153,'Buenos Aires','Argentina','AR','Buenos Aires (Argentina)',1,1,0),(12305,0,112154,'Buffalo','United States of America','US','Buffalo (United States of America)',1,1,0),(12306,0,112155,'Buggenhagen','Germany','DE','Buggenhagen (Germany)',1,1,0),(12307,0,112156,'Buhler','Switzerland','CH','Buhler (Switzerland)',1,1,0),(12308,0,112157,'Buici','Croatia','HR','Buici (Croatia)',1,1,0),(12309,0,112158,'Buitan','Indonesia','ID','Buitan (Indonesia)',1,1,0),(12310,4404,112159,'Buje','Croatia','HR','Buje (Croatia)',1,1,0),(12311,0,112160,'Bulkington','United Kingdom','UK','Bulkington (United Kingdom)',1,1,0),(12312,4421,112161,'Bulle','Switzerland','CH','Bulle (Switzerland)',1,1,0),(12313,0,112162,'Bulow','Germany','DE','Bulow (Germany)',1,1,0),(12314,4427,112163,'Bunbeg','Ireland','IE','Bunbeg (Ireland)',1,1,0),(12315,4433,112164,'Bundanoon','Australia','AU','Bundanoon (Australia)',1,1,0),(12316,4439,112165,'Buniel','Spain','ES','Buniel (Spain)',1,1,0),(12317,4458,112166,'Burau Bay','Malaysia','MY','Burau Bay (Malaysia)',1,1,0),(12318,0,112167,'Buren (Ameland)','Netherlands','NL','Buren (Ameland) (Netherlands)',1,1,0),(12319,4470,112168,'Burgau','Germany','DE','Burgau (Germany)',1,1,0),(12320,0,112169,'Burgoberbach','Germany','DE','Burgoberbach (Germany)',1,1,0),(12321,4481,112170,'Burgos','Spain','ES','Burgos (Spain)',1,1,0),(12322,4506,112171,'Burlington','Canada','CA','Burlington (Canada)',1,1,0),(12323,0,112172,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(12324,0,112173,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(12325,0,112174,'Burnet','United States of America','US','Burnet (United States of America)',1,1,0),(12326,0,112175,'Burnside','United States of America','US','Burnside (United States of America)',1,1,0),(12327,4519,112176,'Burnt Pine','Australia','AU','Burnt Pine (Australia)',1,1,0),(12328,0,112177,'Burqin','China','CN','Burqin (China)',1,1,0),(12329,0,112178,'Burzet','France','FR','Burzet (France)',1,1,0),(12330,0,112179,'Buscastell','Spain','ES','Buscastell (Spain)',1,1,0),(12331,0,112180,'Bin el Ouidane','Morocco','MA','Bin el Ouidane (Morocco)',1,1,0),(12332,3237,112181,'Bindslev','Denmark','DK','Bindslev (Denmark)',1,1,0),(12333,3246,112182,'Binic','France','FR','Binic (France)',1,1,0),(12334,0,112183,'Binissafuller','Spain','ES','Binissafuller (Spain)',1,1,0),(12335,3248,112184,'Binissalem','Spain','ES','Binissalem (Spain)',1,1,0),(12336,0,112185,'Bintan Island','Indonesia','ID','Bintan Island (Indonesia)',1,1,0),(12337,3253,112186,'Bintulu','Malaysia','MY','Bintulu (Malaysia)',1,1,0),(12338,0,112187,'Birgel','Germany','DE','Birgel (Germany)',1,1,0),(12339,0,112188,'Birgland','Germany','DE','Birgland (Germany)',1,1,0),(12340,0,112189,'Biriatou','France','FR','Biriatou (France)',1,1,0),(12341,0,112190,'Birzebbuga','Malta','MT','Birzebbuga (Malta)',1,1,0),(12342,3287,112191,'Bisbee','United States of America','US','Bisbee (United States of America)',1,1,0),(12343,3294,112192,'Bishkek','Kyrgyzstan','KG','Bishkek (Kyrgyzstan)',1,1,0),(12344,0,112193,'Bischofshofen','Austria','AT','Bischofshofen (Austria)',1,1,0),(12345,3306,112194,'Bishopville','United States of America','US','Bishopville (United States of America)',1,1,0),(12346,3310,112195,'Bispingen','Germany','DE','Bispingen (Germany)',1,1,0),(12347,3317,112196,'Bitche','France','FR','Bitche (France)',1,1,0),(12348,0,112197,'Bjornevatn','Norway','NO','Bjornevatn (Norway)',1,1,0),(12349,3350,112198,'Blackfoot','United States of America','US','Blackfoot (United States of America)',1,1,0),(12350,3359,112199,'Blackstone','United States of America','US','Blackstone (United States of America)',1,1,0),(12351,3364,112200,'Blackwell','United States of America','US','Blackwell (United States of America)',1,1,0),(12352,0,112201,'Blaibach','Germany','DE','Blaibach (Germany)',1,1,0),(12353,3376,112202,'Blair','United States of America','US','Blair (United States of America)',1,1,0),(12354,0,112203,'Blankenfelde-Mahlow','Germany','DE','Blankenfelde-Mahlow (Germany)',1,1,0),(12355,3409,112204,'Blarney','Ireland','IE','Blarney (Ireland)',1,1,0),(12356,3410,112205,'Blasdell','United States of America','US','Blasdell (United States of America)',1,1,0),(12357,0,112206,'Blegny','Belgium','BE','Blegny (Belgium)',1,1,0),(12358,0,112207,'Blekendorf','Germany','DE','Blekendorf (Germany)',1,1,0),(12359,0,112208,'Blesle','France','FR','Blesle (France)',1,1,0),(12360,3435,112209,'Blommenslyst','Denmark','DK','Blommenslyst (Denmark)',1,1,0),(12361,0,112210,'Blonay','Switzerland','CH','Blonay (Switzerland)',1,1,0),(12362,0,112211,'Bloomington','United States of America','US','Bloomington (United States of America)',1,1,0),(12363,3448,112212,'Blotzheim','France','FR','Blotzheim (France)',1,1,0),(12364,3457,112213,'Blue Bay','Mauritius','MU','Blue Bay (Mauritius)',1,1,0),(12365,3459,112214,'Blue Mountains','Australia','AU','Blue Mountains (Australia)',1,1,0),(12366,3464,112215,'Bluff','United States of America','US','Bluff (United States of America)',1,1,0),(12367,0,112216,'Blyth','United Kingdom','UK','Blyth (United Kingdom)',1,1,0),(12368,3482,112217,'Boardman','United States of America','US','Boardman (United States of America)',1,1,0),(12369,0,112218,'Boat Lagoon','Thailand','TH','Boat Lagoon (Thailand)',1,1,0),(12370,0,112219,'Boca Raton','United States of America','US','Boca Raton (United States of America)',1,1,0),(12371,3502,112220,'Bocca di Magra','Italy','IT','Bocca di Magra (Italy)',1,1,0),(12372,3503,112221,'Boccheggiano','Italy','IT','Boccheggiano (Italy)',1,1,0),(12373,0,112222,'Bodefeld','Germany','DE','Bodefeld (Germany)',1,1,0),(12374,3515,112223,'Bodensdorf','Austria','AT','Bodensdorf (Austria)',1,1,0),(12375,3551,112224,'Bohinjsko Jezero','Slovenia','SI','Bohinjsko Jezero (Slovenia)',1,1,0),(12376,0,112225,'Boischatel','Canada','CA','Boischatel (Canada)',1,1,0),(12377,3565,112226,'Bois-Colombes','France','FR','Bois-Colombes (France)',1,1,0),(12378,0,112227,'Bojkovice','Czech Republic','CZ','Bojkovice (Czech Republic)',1,1,0),(12379,3584,112229,'Bolgheri','Italy','IT','Bolgheri (Italy)',1,1,0),(12380,3618,112230,'Bomaderry','Australia','AU','Bomaderry (Australia)',1,1,0),(12381,0,112231,'Bonagia','Italy','IT','Bonagia (Italy)',1,1,0),(12382,0,112232,'Bondowoso','Indonesia','ID','Bondowoso (Indonesia)',1,1,0),(12383,3651,112233,'Bonne Terre','United States of America','US','Bonne Terre (United States of America)',1,1,0),(12384,0,112234,'Bonnievale','South Africa','ZA','Bonnievale (South Africa)',1,1,0),(12385,0,112235,'Boondall','Australia','AU','Boondall (Australia)',1,1,0),(12386,0,112236,'Bordeira','Portugal','PT','Bordeira (Portugal)',1,1,0),(12387,0,112237,'Bordon','United Kingdom','UK','Bordon (United Kingdom)',1,1,0),(12388,0,112238,'Borehamwood','United Kingdom','UK','Borehamwood (United Kingdom)',1,1,0),(12389,0,112239,'Borganes','Iceland','IS','Borganes (Iceland)',1,1,0),(12390,3701,112240,'Borger','United States of America','US','Borger (United States of America)',1,1,0),(12391,0,112241,'Borgo Tudia','Italy','IT','Borgo Tudia (Italy)',1,1,0),(12392,0,112242,'Borkop','Denmark','DK','Borkop (Denmark)',1,1,0),(12393,3713,112243,'Borkum','Germany','DE','Borkum (Germany)',1,1,0),(12394,0,112244,'Bornhagen','Germany','DE','Bornhagen (Germany)',1,1,0),(12395,0,112245,'Boryspil','Ukraine','UA','Boryspil (Ukraine)',1,1,0),(12396,3759,112246,'Boston','United States of America','US','Boston (United States of America)',1,1,0),(12397,0,112247,'Bostra','Syria',NULL,'Bostra (Syria)',1,1,0),(12398,0,112248,'Botha\'s Hill','South Africa','ZA','Botha\'s Hill (South Africa)',1,1,0),(12399,3766,112249,'Bothwell','Australia','AU','Bothwell (Australia)',1,1,0),(12400,0,112250,'Boucan Canot','Reunion','RE','Boucan Canot (Reunion)',1,1,0),(12401,3794,112251,'Boulder','United States of America','US','Boulder (United States of America)',1,1,0),(12402,0,112252,'Boulder City','United States of America','US','Boulder City (United States of America)',1,1,0),(12403,0,112253,'Boulleville','France','FR','Boulleville (France)',1,1,0),(12404,0,112254,'Boulouparis','New Caledonia','NC','Boulouparis (New Caledonia)',1,1,0),(12405,3806,112255,'Bountiful','United States of America','US','Bountiful (United States of America)',1,1,0),(12406,0,112256,'Bourg Saint Andeol','France','FR','Bourg Saint Andeol (France)',1,1,0),(12407,3820,112257,'Bourg-en-Bresse','France','FR','Bourg-en-Bresse (France)',1,1,0),(12408,0,112258,'Bourg-Madame','France','FR','Bourg-Madame (France)',1,1,0),(12409,3824,112259,'Bourgoin-Jallieu','France','FR','Bourgoin-Jallieu (France)',1,1,0),(12410,3828,112260,'Bourg-Saint-Pierre','Switzerland','CH','Bourg-Saint-Pierre (Switzerland)',1,1,0),(12411,0,112261,'Boutenac-Touvent','France','FR','Boutenac-Touvent (France)',1,1,0),(12412,0,112262,'Bovenkarspel','Netherlands','NL','Bovenkarspel (Netherlands)',1,1,0),(12413,3861,112263,'Bowling Green','United States of America','US','Bowling Green (United States of America)',1,1,0),(12414,3862,112264,'Bowman','United States of America','US','Bowman (United States of America)',1,1,0),(12415,0,112265,'Bozburun','Turkey','TR','Bozburun (Turkey)',1,1,0),(12416,0,112266,'Bozcaada','Turkey','TR','Bozcaada (Turkey)',1,1,0),(12417,3892,112267,'Bracieux','France','FR','Bracieux (France)',1,1,0),(12418,0,112268,'Bracke','Sweden','SE','Bracke (Sweden)',1,1,0),(12419,0,112269,'Bracknell','United Kingdom','UK','Bracknell (United Kingdom)',1,1,0),(12420,0,112270,'Bradford','United Kingdom','UK','Bradford (United Kingdom)',1,1,0),(12421,0,112271,'Bradford on Avon','United Kingdom','UK','Bradford on Avon (United Kingdom)',1,1,0),(12422,0,112273,'Braintree','United Kingdom','UK','Braintree (United Kingdom)',1,1,0),(12423,0,112274,'Braithwaite','United Kingdom','UK','Braithwaite (United Kingdom)',1,1,0),(12424,0,112275,'Brake','Germany','DE','Brake (Germany)',1,1,0),(12425,3932,112276,'Bramsche','Germany','DE','Bramsche (Germany)',1,1,0),(12426,3937,112277,'Brande','Denmark','DK','Brande (Denmark)',1,1,0),(12427,3952,112278,'Branson','United States of America','US','Branson (United States of America)',1,1,0),(12428,3958,112279,'Bras','France','FR','Bras (France)',1,1,0),(12429,3961,112280,'Brasilia','Brazil','BR','Brasilia (Brazil)',1,1,0),(12430,0,112281,'Braunau am Inn','Austria','AT','Braunau am Inn (Austria)',1,1,0),(12431,3979,112282,'Bravone','France','FR','Bravone (France)',1,1,0),(12432,3988,112283,'Brea','United States of America','US','Brea (United States of America)',1,1,0),(12433,3996,112284,'Breda','Netherlands','NL','Breda (Netherlands)',1,1,0),(12434,0,112285,'Bree','Belgium','BE','Bree (Belgium)',1,1,0),(12435,4003,112286,'Bregenz','Austria','AT','Bregenz (Austria)',1,1,0),(12436,4006,112287,'Breiddalsvik','Iceland','IS','Breiddalsvik (Iceland)',1,1,0),(12437,0,112288,'Breitenbrunn','Germany','DE','Breitenbrunn (Germany)',1,1,0),(12438,0,112289,'Breitenwang','Austria','AT','Breitenwang (Austria)',1,1,0),(12439,0,112290,'Breitnau - Hollsteig','Germany','DE','Breitnau - Hollsteig (Germany)',1,1,0),(12440,0,112291,'Breitungen/Werra','Germany','DE','Breitungen/Werra (Germany)',1,1,0),(12441,0,112292,'Boissano Loano','Italy','IT','Boissano Loano (Italy)',1,1,0),(12442,3588,112293,'Bolingbrook','United States of America','US','Bolingbrook (United States of America)',1,1,0),(12443,0,112294,'Bolivia','United States of America','US','Bolivia (United States of America)',1,1,0),(12444,0,112295,'Boljunsko Polje','Croatia','HR','Boljunsko Polje (Croatia)',1,1,0),(12445,0,112296,'Bollendorf-Pont','Luxembourg','LU','Bollendorf-Pont (Luxembourg)',1,1,0),(12446,3595,112297,'Bollezeele','France','FR','Bollezeele (France)',1,1,0),(12447,3600,112298,'Bologna','Italy','IT','Bologna (Italy)',1,1,0),(12448,3604,112299,'Bolquere','France','FR','Bolquere (France)',1,1,0),(12449,0,112300,'Bolshoy Log','Russia','RU','Bolshoy Log (Russia)',1,1,0),(12450,0,112301,'Bolton','United Kingdom','UK','Bolton (United Kingdom)',1,1,0),(12451,3614,112302,'Bolvir','Spain','ES','Bolvir (Spain)',1,1,0),(12452,3619,112303,'Bombarral','Portugal','PT','Bombarral (Portugal)',1,1,0),(12453,3628,112304,'Bonate Sopra','Italy','IT','Bonate Sopra (Italy)',1,1,0),(12454,3631,112305,'Boncelles','Belgium','BE','Boncelles (Belgium)',1,1,0),(12455,3636,112306,'Bondues','France','FR','Bondues (France)',1,1,0),(12456,3637,112307,'Bondville','United States of America','US','Bondville (United States of America)',1,1,0),(12457,3641,112308,'Bonheiden','Belgium','BE','Bonheiden (Belgium)',1,1,0),(12458,0,112309,'Boningen','Switzerland','CH','Boningen (Switzerland)',1,1,0),(12459,3647,112310,'Bonito','Brazil','BR','Bonito (Brazil)',1,1,0),(12460,0,112311,'Bonlieu','France','FR','Bonlieu (France)',1,1,0),(12461,0,112312,'Bordelum','Germany','DE','Bordelum (Germany)',1,1,0),(12462,0,112313,'Boretice','Czech Republic','CZ','Boretice (Czech Republic)',1,1,0),(12463,0,112314,'Borgentreich','Germany','DE','Borgentreich (Germany)',1,1,0),(12464,3702,112315,'Borger','Netherlands','NL','Borger (Netherlands)',1,1,0),(12465,3704,112316,'Borgholm','Sweden','SE','Borgholm (Sweden)',1,1,0),(12466,0,112317,'Borgloon','Belgium','BE','Borgloon (Belgium)',1,1,0),(12467,0,112318,'Borgo Valsugana','Italy','IT','Borgo Valsugana (Italy)',1,1,0),(12468,0,112319,'Borken','Germany','DE','Borken (Germany)',1,1,0),(12469,3716,112320,'Bormes-les-Mimosas','France','FR','Bormes-les-Mimosas (France)',1,1,0),(12470,3719,112321,'Born','Netherlands','NL','Born (Netherlands)',1,1,0),(12471,0,112322,'Borrassa','Spain','ES','Borrassa (Spain)',1,1,0),(12472,0,112323,'Borrenes','Spain','ES','Borrenes (Spain)',1,1,0),(12473,0,112324,'Bosnia and Herzegovina','Bosnia and Herzegowina','BA','Bosnia and Herzegovina (Bosnia and Herzegowina)',1,1,0),(12474,3754,112325,'Bosschenhoofd','Netherlands','NL','Bosschenhoofd (Netherlands)',1,1,0),(12475,0,112326,'Bossolasco','Italy','IT','Bossolasco (Italy)',1,1,0),(12476,0,112327,'Boston','United Kingdom','UK','Boston (United Kingdom)',1,1,0),(12477,0,112328,'Botricello','Italy','IT','Botricello (Italy)',1,1,0),(12478,3770,112329,'Botswana','Botswana','BW','Botswana (Botswana)',1,1,0),(12479,3786,112330,'Bouguenais','France','FR','Bouguenais (France)',1,1,0),(12480,3812,112331,'Bourbonne-les-Bains','France','FR','Bourbonne-les-Bains (France)',1,1,0),(12481,0,112332,'Bourg-Achard','France','FR','Bourg-Achard (France)',1,1,0),(12482,0,112333,'Bourne','United Kingdom','UK','Bourne (United Kingdom)',1,1,0),(12483,0,112334,'Bourtange','Netherlands','NL','Bourtange (Netherlands)',1,1,0),(12484,0,112335,'Bousval','Belgium','BE','Bousval (Belgium)',1,1,0),(12485,3844,112336,'Bouzies','France','FR','Bouzies (France)',1,1,0),(12486,0,112337,'Bowburn','United Kingdom','UK','Bowburn (United Kingdom)',1,1,0),(12487,3859,112338,'Bowie','United States of America','US','Bowie (United States of America)',1,1,0),(12488,0,112339,'Bowie','United States of America','US','Bowie (United States of America)',1,1,0),(12489,3863,112340,'Bowmansville','United States of America','US','Bowmansville (United States of America)',1,1,0),(12490,3878,112341,'Boynton Beach','United States of America','US','Boynton Beach (United States of America)',1,1,0),(12491,0,112342,'Bozava','Croatia','HR','Bozava (Croatia)',1,1,0),(12492,0,112343,'Bozyazi','Turkey','TR','Bozyazi (Turkey)',1,1,0),(12493,0,112344,'Bra','Italy','IT','Bra (Italy)',1,1,0),(12494,0,112345,'Brac Island','Croatia','HR','Brac Island (Croatia)',1,1,0),(12495,3908,112346,'Brady','United States of America','US','Brady (United States of America)',1,1,0),(12496,0,112347,'Braemar','United Kingdom','UK','Braemar (United Kingdom)',1,1,0),(12497,0,112348,'Brakne Hoby','Sweden','SE','Brakne Hoby (Sweden)',1,1,0),(12498,3933,112349,'Bran','Romania','RO','Bran (Romania)',1,1,0),(12499,3934,112350,'Branchburg','United States of America','US','Branchburg (United States of America)',1,1,0),(12500,0,112351,'Brandberg','Namibia','NA','Brandberg (Namibia)',1,1,0),(12501,0,112352,'Brandenberg','Austria','AT','Brandenberg (Austria)',1,1,0),(12502,0,112353,'Brandon','United States of America','US','Brandon (United States of America)',1,1,0),(12503,0,112354,'Brandon','Sweden','SE','Brandon (Sweden)',1,1,0),(12504,3954,112355,'Brantome','France','FR','Brantome (France)',1,1,0),(12505,0,112356,'Brasy','Czech Republic','CZ','Brasy (Czech Republic)',1,1,0),(12506,0,112357,'Bratsk','Russia','RU','Bratsk (Russia)',1,1,0),(12507,0,112358,'Brattholt','Iceland','IS','Brattholt (Iceland)',1,1,0),(12508,0,112359,'Braunlingen-Unterbrand','Germany','DE','Braunlingen-Unterbrand (Germany)',1,1,0),(12509,3974,112360,'Braunsbach','Germany','DE','Braunsbach (Germany)',1,1,0),(12510,0,112361,'Bray','United Kingdom','UK','Bray (United Kingdom)',1,1,0),(12511,0,112362,'Breckerfeld','Germany','DE','Breckerfeld (Germany)',1,1,0),(12512,4004,112363,'Breguzzo','Italy','IT','Breguzzo (Italy)',1,1,0),(12513,0,112364,'Breitenbrunn','Austria','AT','Breitenbrunn (Austria)',1,1,0),(12514,0,112365,'Brent Knoll','United Kingdom','UK','Brent Knoll (United Kingdom)',1,1,0),(12515,0,112366,'Bretenoux','France','FR','Bretenoux (France)',1,1,0),(12516,0,112367,'Bretteville-du-Grand-Caux','France','FR','Bretteville-du-Grand-Caux (France)',1,1,0),(12517,4050,112368,'Breukelen','Netherlands','NL','Breukelen (Netherlands)',1,1,0),(12518,0,112369,'Brezice','Slovenia','SI','Brezice (Slovenia)',1,1,0),(12519,0,112370,'Bribir','Croatia','HR','Bribir (Croatia)',1,1,0),(12520,4088,112371,'Bridgewater','United States of America','US','Bridgewater (United States of America)',1,1,0),(12521,4100,112372,'Brienzer Rothorn','Switzerland','CH','Brienzer Rothorn (Switzerland)',1,1,0),(12522,4108,112373,'Brigham City','United States of America','US','Brigham City (United States of America)',1,1,0),(12523,0,112374,'Brinas','Spain','ES','Brinas (Spain)',1,1,0),(12524,4144,112375,'Brisighella','Italy','IT','Brisighella (Italy)',1,1,0),(12525,0,112376,'Brissac (Herault)','France','FR','Brissac (Herault) (France)',1,1,0),(12526,0,112377,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(12527,0,112378,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(12528,0,112379,'Brn/Brna','Czech Republic','CZ','Brn/Brna (Czech Republic)',1,1,0),(12529,0,112380,'Brna','Croatia','HR','Brna (Croatia)',1,1,0),(12530,0,112381,'Broad Chalke','United Kingdom','UK','Broad Chalke (United Kingdom)',1,1,0),(12531,0,112382,'Broadheath','United Kingdom','UK','Broadheath (United Kingdom)',1,1,0),(12532,4175,112383,'Brockton','United States of America','US','Brockton (United States of America)',1,1,0),(12533,0,112384,'Brodingberg','Austria','AT','Brodingberg (Austria)',1,1,0),(12534,0,112385,'Brome','Germany','DE','Brome (Germany)',1,1,0),(12535,0,112386,'Brompton Regis','United Kingdom','UK','Brompton Regis (United Kingdom)',1,1,0),(12536,4196,112387,'Bronchales','Spain','ES','Bronchales (Spain)',1,1,0),(12537,4203,112388,'Bronshoj','Denmark','DK','Bronshoj (Denmark)',1,1,0),(12538,4207,112389,'Bronxville','United States of America','US','Bronxville (United States of America)',1,1,0),(12539,0,112390,'Brooktondale','United States of America','US','Brooktondale (United States of America)',1,1,0),(12540,0,112391,'Brossac','France','FR','Brossac (France)',1,1,0),(12541,0,112392,'Broughton','United Kingdom','UK','Broughton (United Kingdom)',1,1,0),(12542,4246,112393,'Broumana','Lebanon','LB','Broumana (Lebanon)',1,1,0),(12543,0,112394,'Brownsville','United States of America','US','Brownsville (United States of America)',1,1,0),(12544,0,112395,'Bruckberg (Niederbayern)','Germany','DE','Bruckberg (Niederbayern) (Germany)',1,1,0),(12545,0,112396,'Bruckmuhl','Germany','DE','Bruckmuhl (Germany)',1,1,0),(12546,4266,112397,'Brucoli','Italy','IT','Brucoli (Italy)',1,1,0),(12547,4274,112398,'Bruggen','Germany','DE','Bruggen (Germany)',1,1,0),(12548,0,112399,'Brulon','France','FR','Brulon (France)',1,1,0),(12549,0,112400,'Brunn im Felde','Austria','AT','Brunn im Felde (Austria)',1,1,0),(12550,0,112401,'Blair Atholl','United Kingdom','UK','Blair Atholl (United Kingdom)',1,1,0),(12551,3380,112402,'Blairmore','Canada','CA','Blairmore (Canada)',1,1,0),(12552,3404,112403,'Blankenberge','Belgium','BE','Blankenberge (Belgium)',1,1,0),(12553,0,112404,'Blankenburg','Germany','DE','Blankenburg (Germany)',1,1,0),(12554,0,112405,'Blanquefort-sur-Briolance','France','FR','Blanquefort-sur-Briolance (France)',1,1,0),(12555,0,112406,'Blansko','Czech Republic','CZ','Blansko (Czech Republic)',1,1,0),(12556,3408,112407,'Blantyre','Malawi','MW','Blantyre (Malawi)',1,1,0),(12557,0,112408,'Blaufelden','Germany','DE','Blaufelden (Germany)',1,1,0),(12558,0,112409,'Bleckhausen','Germany','DE','Bleckhausen (Germany)',1,1,0),(12559,3420,112410,'Bleiburg','Austria','AT','Bleiburg (Austria)',1,1,0),(12560,0,112411,'Blentarp','Sweden','SE','Blentarp (Sweden)',1,1,0),(12561,0,112412,'Blockley','United Kingdom','UK','Blockley (United Kingdom)',1,1,0),(12562,3434,112413,'Blomberg','Germany','DE','Blomberg (Germany)',1,1,0),(12563,0,112414,'Blubberhouses','United Kingdom','UK','Blubberhouses (United Kingdom)',1,1,0),(12564,0,112415,'Bluefields','Jamaica','JM','Bluefields (Jamaica)',1,1,0),(12565,0,112416,'Bluff Point','United States of America','US','Bluff Point (United States of America)',1,1,0),(12566,0,112417,'Bluffton','United States of America','US','Bluffton (United States of America)',1,1,0),(12567,3467,112418,'Blumenau','Brazil','BR','Blumenau (Brazil)',1,1,0),(12568,0,112419,'Bluntisham','United Kingdom','UK','Bluntisham (United Kingdom)',1,1,0),(12569,3471,112420,'Blytheville','United States of America','US','Blytheville (United States of America)',1,1,0),(12570,3472,112421,'Blythewood','United States of America','US','Blythewood (United States of America)',1,1,0),(12571,0,112422,'Boa Viagem','Brazil','BR','Boa Viagem (Brazil)',1,1,0),(12572,3478,112423,'Boadilla del Monte','Spain','ES','Boadilla del Monte (Spain)',1,1,0),(12573,0,112424,'Boardman','United States of America','US','Boardman (United States of America)',1,1,0),(12574,3487,112425,'Boaz','United States of America','US','Boaz (United States of America)',1,1,0),(12575,0,112426,'Bobing','Germany','DE','Bobing (Germany)',1,1,0),(12576,0,112427,'Boblingen','Germany','DE','Boblingen (Germany)',1,1,0),(12577,0,112428,'Boca Chica','Panama','PA','Boca Chica (Panama)',1,1,0),(12578,0,112429,'Bocagrande','Colombia','CO','Bocagrande (Colombia)',1,1,0),(12579,3508,112430,'Bockenem','Germany','DE','Bockenem (Germany)',1,1,0),(12580,3511,112431,'Bodegraven','Netherlands','NL','Bodegraven (Netherlands)',1,1,0),(12581,3513,112432,'Boden','Sweden','SE','Boden (Sweden)',1,1,0),(12582,0,112433,'Bodental','Austria','AT','Bodental (Austria)',1,1,0),(12583,0,112434,'Bodman - Ludwigshafen','Germany','DE','Bodman - Ludwigshafen (Germany)',1,1,0),(12584,0,112435,'Boeun','South Korea','KR','Boeun (South Korea)',1,1,0),(12585,3543,112436,'Bogno','Switzerland','CH','Bogno (Switzerland)',1,1,0),(12586,3545,112437,'Bogor','Indonesia','ID','Bogor (Indonesia)',1,1,0),(12587,3547,112438,'Bogota','Colombia','CO','Bogota (Colombia)',1,1,0),(12588,3553,112439,'Bohmstedt','Germany','DE','Bohmstedt (Germany)',1,1,0),(12589,0,112440,'Bojnice','Slovakia','SK','Bojnice (Slovakia)',1,1,0),(12590,3573,112441,'Bokel','Germany','DE','Bokel (Germany)',1,1,0),(12591,3574,112442,'Bokissa Island','Vanuatu','VU','Bokissa Island (Vanuatu)',1,1,0),(12592,3580,112443,'Bolbec','France','FR','Bolbec (France)',1,1,0),(12593,0,112444,'Boldixum','Germany','DE','Boldixum (Germany)',1,1,0),(12594,0,112445,'Bolgatanga','Ghana','GH','Bolgatanga (Ghana)',1,1,0),(12595,0,112446,'Bolkow','Poland','PL','Bolkow (Poland)',1,1,0),(12596,3598,112447,'Bollwiller','France','FR','Bollwiller (France)',1,1,0),(12597,0,112448,'Bolton Valley','United States of America','US','Bolton Valley (United States of America)',1,1,0),(12598,0,112449,'Bondi Beach','Australia','AU','Bondi Beach (Australia)',1,1,0),(12599,3645,112450,'Bonigen','Switzerland','CH','Bonigen (Switzerland)',1,1,0),(12600,0,112451,'Bonita Springs','United States of America','US','Bonita Springs (United States of America)',1,1,0),(12601,3663,112452,'Bonnyville','Canada','CA','Bonnyville (Canada)',1,1,0),(12602,0,112453,'Boofzheim','France','FR','Boofzheim (France)',1,1,0),(12603,3684,112454,'Boqueron','Puerto Rico','PR','Boqueron (Puerto Rico)',1,1,0),(12604,3685,112455,'Boquete','Panama','PA','Boquete (Panama)',1,1,0),(12605,3686,112456,'Bora Bora','French Polynesia','PF','Bora Bora (French Polynesia)',1,1,0),(12606,0,112457,'Borba','Portugal','PT','Borba (Portugal)',1,1,0),(12607,0,112458,'Borca di Cardore','Italy','IT','Borca di Cardore (Italy)',1,1,0),(12608,3691,112459,'Bordentown','United States of America','US','Bordentown (United States of America)',1,1,0),(12609,0,112460,'Bordertown','Australia','AU','Bordertown (Australia)',1,1,0),(12610,0,112461,'Boren','Germany','DE','Boren (Germany)',1,1,0),(12611,0,112462,'Borgerende','Germany','DE','Borgerende (Germany)',1,1,0),(12612,0,112463,'Borja','Spain','ES','Borja (Spain)',1,1,0),(12613,0,112464,'Borkheide','Germany','DE','Borkheide (Germany)',1,1,0),(12614,3717,112465,'Bormio','Italy','IT','Bormio (Italy)',1,1,0),(12615,0,112466,'Borna','Germany','DE','Borna (Germany)',1,1,0),(12616,0,112467,'Bornem','Belgium','BE','Bornem (Belgium)',1,1,0),(12617,0,112468,'Boro River','Botswana','BW','Boro River (Botswana)',1,1,0),(12618,3737,112469,'Borzonasca','Italy','IT','Borzonasca (Italy)',1,1,0),(12619,0,112470,'Bosdorf','Germany','DE','Bosdorf (Germany)',1,1,0),(12620,0,112471,'Bothkamp','Germany','DE','Bothkamp (Germany)',1,1,0),(12621,0,112472,'Botrivier','South Africa','ZA','Botrivier (South Africa)',1,1,0),(12622,0,112473,'Bouin Vendee','France','FR','Bouin Vendee (France)',1,1,0),(12623,3790,112474,'Boukari','Greece','GR','Boukari (Greece)',1,1,0),(12624,3800,112475,'Boulogne-sur-Mer','France','FR','Boulogne-sur-Mer (France)',1,1,0),(12625,3809,112476,'Bourbon-Lancy','France','FR','Bourbon-Lancy (France)',1,1,0),(12626,0,112477,'Bourbon-l\'Archambault','France','FR','Bourbon-l\'Archambault (France)',1,1,0),(12627,3811,112478,'Bourbonnais','United States of America','US','Bourbonnais (United States of America)',1,1,0),(12628,0,112479,'Bourbourg','France','FR','Bourbourg (France)',1,1,0),(12629,0,112480,'Bourg St. Maurice','France','FR','Bourg St. Maurice (France)',1,1,0),(12630,3830,112481,'Bourgueil','France','FR','Bourgueil (France)',1,1,0),(12631,0,112482,'Bournemouth','United Kingdom','UK','Bournemouth (United Kingdom)',1,1,0),(12632,0,112483,'Boutte','United States of America','US','Boutte (United States of America)',1,1,0),(12633,0,112484,'Bovigny','Belgium','BE','Bovigny (Belgium)',1,1,0),(12634,3872,112485,'Boxborough','United States of America','US','Boxborough (United States of America)',1,1,0),(12635,0,112486,'Boxdorf near Drescen','Germany','DE','Boxdorf near Drescen (Germany)',1,1,0),(12636,0,112487,'Boxmeer','Netherlands','NL','Boxmeer (Netherlands)',1,1,0),(12637,3889,112488,'Bracebridge','Canada','CA','Bracebridge (Canada)',1,1,0),(12638,3896,112489,'Brackenheim','Germany','DE','Brackenheim (Germany)',1,1,0),(12639,3901,112490,'Bradenton','United States of America','US','Bradenton (United States of America)',1,1,0),(12640,3902,112491,'Bradford','United States of America','US','Bradford (United States of America)',1,1,0),(12641,0,112492,'Bradu','Romania','RO','Bradu (Romania)',1,1,0),(12642,0,112493,'Brail','Switzerland','CH','Brail (Switzerland)',1,1,0),(12643,3938,112494,'Brandenburg','Germany','DE','Brandenburg (Germany)',1,1,0),(12644,0,112495,'Brandon','United States of America','US','Brandon (United States of America)',1,1,0),(12645,0,112496,'Bransford','United Kingdom','UK','Bransford (United Kingdom)',1,1,0),(12646,3973,112497,'Braunlage','Germany','DE','Braunlage (Germany)',1,1,0),(12647,3980,112498,'Brawley','United States of America','US','Brawley (United States of America)',1,1,0),(12648,3987,112499,'Brcko','Bosnia and Herzegowina','BA','Brcko (Bosnia and Herzegowina)',1,1,0),(12649,3989,112500,'Breaux Bridge','United States of America','US','Breaux Bridge (United States of America)',1,1,0),(12650,0,112501,'Brecon','United Kingdom','UK','Brecon (United Kingdom)',1,1,0),(12651,0,112502,'Breisach am Rhein','Germany','DE','Breisach am Rhein (Germany)',1,1,0),(12652,0,112503,'Breitbrunn am Chiemsee','Germany','DE','Breitbrunn am Chiemsee (Germany)',1,1,0),(12653,0,112504,'Breitenbach','Austria','AT','Breitenbach (Austria)',1,1,0),(12654,0,112505,'Breitenbach','Switzerland','CH','Breitenbach (Switzerland)',1,1,0),(12655,0,112506,'Breitenthal','Germany','DE','Breitenthal (Germany)',1,1,0),(12656,0,112507,'Brejos','Portugal','PT','Brejos (Portugal)',1,1,0),(12657,0,112508,'Brekstad','Norway','NO','Brekstad (Norway)',1,1,0),(12658,4032,112509,'Brentwood Bay','Canada','CA','Brentwood Bay (Canada)',1,1,0),(12659,0,112510,'Brenzone-Castelletto','Italy','IT','Brenzone-Castelletto (Italy)',1,1,0),(12660,4043,112511,'Bretigny-sur-Orge','France','FR','Bretigny-sur-Orge (France)',1,1,0),(12661,0,112512,'Boudry','Switzerland','CH','Boudry (Switzerland)',1,1,0),(12662,0,112513,'Bouesse','France','FR','Bouesse (France)',1,1,0),(12663,3788,112514,'Bouillante','Guadeloupe','GP','Bouillante (Guadeloupe)',1,1,0),(12664,3796,112515,'Boulevard','United States of America','US','Boulevard (United States of America)',1,1,0),(12665,3798,112516,'Bouliac','France','FR','Bouliac (France)',1,1,0),(12666,0,112517,'Bourg-Sainte-Marie','France','FR','Bourg-Sainte-Marie (France)',1,1,0),(12667,3836,112518,'Bourscheid','Luxembourg','LU','Bourscheid (Luxembourg)',1,1,0),(12668,0,112519,'Bous (Saar)','Germany','DE','Bous (Saar) (Germany)',1,1,0),(12669,0,112520,'Boverdalen','Norway','NO','Boverdalen (Norway)',1,1,0),(12670,0,112521,'Bovey Tracey','United Kingdom','UK','Bovey Tracey (United Kingdom)',1,1,0),(12671,3858,112522,'Bowen','Australia','AU','Bowen (Australia)',1,1,0),(12672,0,112523,'Bowling Green','United States of America','US','Bowling Green (United States of America)',1,1,0),(12673,0,112524,'Boxholm','Sweden','SE','Boxholm (Sweden)',1,1,0),(12674,0,112525,'Boxtel','Netherlands','NL','Boxtel (Netherlands)',1,1,0),(12675,0,112526,'Boyaca','Colombia','CO','Boyaca (Colombia)',1,1,0),(12676,3882,112527,'Bozhou','China','CN','Bozhou (China)',1,1,0),(12677,3890,112528,'Bracey','United States of America','US','Bracey (United States of America)',1,1,0),(12678,0,112529,'Br?dstrup','Denmark','DK','Br?dstrup (Denmark)',1,1,0),(12679,3913,112530,'Braganca','Portugal','PT','Braganca (Portugal)',1,1,0),(12680,3916,112531,'Braila','Romania','RO','Braila (Romania)',1,1,0),(12681,3917,112532,'Brainerd','United States of America','US','Brainerd (United States of America)',1,1,0),(12682,3920,112533,'Braintree','United States of America','US','Braintree (United States of America)',1,1,0),(12683,3925,112534,'Bramans','France','FR','Bramans (France)',1,1,0),(12684,0,112535,'Bramberg am Wildkogel','Austria','AT','Bramberg am Wildkogel (Austria)',1,1,0),(12685,0,112536,'Brandon','United States of America','US','Brandon (United States of America)',1,1,0),(12686,0,112537,'Brandys nad Labem-Stara Boleslav','Czech Republic','CZ','Brandys nad Labem-Stara Boleslav (Czech Republic)',1,1,0),(12687,3950,112538,'Brannenburg','Germany','DE','Brannenburg (Germany)',1,1,0),(12688,0,112539,'Brant Beach','United States of America','US','Brant Beach (United States of America)',1,1,0),(12689,3968,112540,'Bratislava','Slovakia','SK','Bratislava (Slovakia)',1,1,0),(12690,3972,112541,'Braubach','Germany','DE','Braubach (Germany)',1,1,0),(12691,0,112542,'Bray-Dunes','France','FR','Bray-Dunes (France)',1,1,0),(12692,0,112543,'Braz','Austria','AT','Braz (Austria)',1,1,0),(12693,3986,112544,'Brazzaville','Congo','CG','Brazzaville (Congo)',1,1,0),(12694,0,112545,'Brbinj','Croatia','HR','Brbinj (Croatia)',1,1,0),(12695,0,112546,'Breckenridge','United States of America','US','Breckenridge (United States of America)',1,1,0),(12696,0,112547,'Bredasdorp','South Africa','ZA','Bredasdorp (South Africa)',1,1,0),(12697,3998,112548,'Bredene','Belgium','BE','Bredene (Belgium)',1,1,0),(12698,0,112549,'Bredstedt','Germany','DE','Bredstedt (Germany)',1,1,0),(12699,0,112550,'Breiholz','Germany','DE','Breiholz (Germany)',1,1,0),(12700,0,112551,'Breiten bie Morel','Switzerland','CH','Breiten bie Morel (Switzerland)',1,1,0),(12701,0,112552,'Breitenbach','France','FR','Breitenbach (France)',1,1,0),(12702,0,112553,'Breitenberg','Germany','DE','Breitenberg (Germany)',1,1,0),(12703,0,112554,'Breitenfeld an der Rittschein','Austria','AT','Breitenfeld an der Rittschein (Austria)',1,1,0),(12704,4018,112555,'Bremen','Germany','DE','Bremen (Germany)',1,1,0),(12705,0,112556,'Brenas','France','FR','Brenas (France)',1,1,0),(12706,4025,112557,'Brenham','United States of America','US','Brenham (United States of America)',1,1,0),(12707,4034,112558,'Brescia','Italy','IT','Brescia (Italy)',1,1,0),(12708,0,112559,'Breskens','Netherlands','NL','Breskens (Netherlands)',1,1,0),(12709,4063,112560,'Brewton','United States of America','US','Brewton (United States of America)',1,1,0),(12710,4089,112561,'Bridgewater','Canada','CA','Bridgewater (Canada)',1,1,0),(12711,4104,112562,'Briey','France','FR','Briey (France)',1,1,0),(12712,0,112563,'Brigg','United Kingdom','UK','Brigg (United Kingdom)',1,1,0),(12713,0,112564,'Brighton','United States of America','US','Brighton (United States of America)',1,1,0),(12714,0,112565,'Brillion','United States of America','US','Brillion (United States of America)',1,1,0),(12715,0,112566,'Bringhausen Am Edersee','Germany','DE','Bringhausen Am Edersee (Germany)',1,1,0),(12716,4125,112567,'Brinkum','Germany','DE','Brinkum (Germany)',1,1,0),(12717,4134,112568,'Brioude','France','FR','Brioude (France)',1,1,0),(12718,0,112569,'Brissac-Quince','France','FR','Brissac-Quince (France)',1,1,0),(12719,0,112570,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(12720,4171,112571,'Brocas','France','FR','Brocas (France)',1,1,0),(12721,0,112572,'Brodarica','Croatia','HR','Brodarica (Croatia)',1,1,0),(12722,0,112573,'Broke','Australia','AU','Broke (Australia)',1,1,0),(12723,0,112574,'Broken Bow','United States of America','US','Broken Bow (United States of America)',1,1,0),(12724,0,112575,'Brompton-on-Swale','United Kingdom','UK','Brompton-on-Swale (United Kingdom)',1,1,0),(12725,0,112576,'Bromskirchen','Germany','DE','Bromskirchen (Germany)',1,1,0),(12726,4195,112577,'Bron','France','FR','Bron (France)',1,1,0),(12727,4200,112578,'Broni','Italy','IT','Broni (Italy)',1,1,0),(12728,0,112579,'Bronkhorstspruit','South Africa','ZA','Bronkhorstspruit (South Africa)',1,1,0),(12729,4217,112580,'Brooklin','United States of America','US','Brooklin (United States of America)',1,1,0),(12730,0,112581,'Brooksville','United States of America','US','Brooksville (United States of America)',1,1,0),(12731,4235,112582,'Brorup','Denmark','DK','Brorup (Denmark)',1,1,0),(12732,0,112583,'Brownsville','United States of America','US','Brownsville (United States of America)',1,1,0),(12733,4262,112584,'Bruce','United States of America','US','Bruce (United States of America)',1,1,0),(12734,0,112585,'Bruch','Germany','DE','Bruch (Germany)',1,1,0),(12735,0,112586,'Bruck','Germany','DE','Bruck (Germany)',1,1,0),(12736,0,112587,'Bruck in der Oberpfalz','Germany','DE','Bruck in der Oberpfalz (Germany)',1,1,0),(12737,4272,112588,'Bruges','Belgium','BE','Bruges (Belgium)',1,1,0),(12738,4276,112589,'Bruhl','Germany','DE','Bruhl (Germany)',1,1,0),(12739,4289,112590,'Brunn am Gebirge','Austria','AT','Brunn am Gebirge (Austria)',1,1,0),(12740,4305,112591,'Brusson','Italy','IT','Brusson (Italy)',1,1,0),(12741,0,112592,'Bubbio','Italy','IT','Bubbio (Italy)',1,1,0),(12742,0,112593,'Bubendorf','Switzerland','CH','Bubendorf (Switzerland)',1,1,0),(12743,4323,112594,'Bucaco','Portugal','PT','Bucaco (Portugal)',1,1,0),(12744,0,112595,'Buchenbach','Germany','DE','Buchenbach (Germany)',1,1,0),(12745,0,112596,'Buchholz (Westerwald)','Germany','DE','Buchholz (Westerwald) (Germany)',1,1,0),(12746,0,112597,'Buckfastleigh','United Kingdom','UK','Buckfastleigh (United Kingdom)',1,1,0),(12747,0,112598,'Buckingham','United Kingdom','UK','Buckingham (United Kingdom)',1,1,0),(12748,4362,112599,'Budardalur','Iceland','IS','Budardalur (Iceland)',1,1,0),(12749,0,112600,'Buen Paso','Spain','ES','Buen Paso (Spain)',1,1,0),(12750,0,112601,'Buena Park','United States of America','US','Buena Park (United States of America)',1,1,0),(12751,0,112602,'Buena Vista','Mexico','MX','Buena Vista (Mexico)',1,1,0),(12752,0,112603,'Buhlertal','Germany','DE','Buhlertal (Germany)',1,1,0),(12753,4409,112604,'Bukfurdo','Hungary','HU','Bukfurdo (Hungary)',1,1,0),(12754,4415,112605,'Bulahdelah','Australia','AU','Bulahdelah (Australia)',1,1,0),(12755,4418,112606,'Bulawayo','Zimbabwe','ZW','Bulawayo (Zimbabwe)',1,1,0),(12756,0,112607,'Bullet','Switzerland','CH','Bullet (Switzerland)',1,1,0),(12757,4443,112608,'Bunnell','United States of America','US','Bunnell (United States of America)',1,1,0),(12758,4444,112609,'Bunnik','Netherlands','NL','Bunnik (Netherlands)',1,1,0),(12759,4465,112610,'Bures-Sur-Yvette','France','FR','Bures-Sur-Yvette (France)',1,1,0),(12760,0,112611,'Burgberg','Germany','DE','Burgberg (Germany)',1,1,0),(12761,4472,112612,'Burgdorf','Switzerland','CH','Burgdorf (Switzerland)',1,1,0),(12762,4471,112613,'Burgdorf','Germany','DE','Burgdorf (Germany)',1,1,0),(12763,0,112614,'Burgeis','Italy','IT','Burgeis (Italy)',1,1,0),(12764,0,112615,'Burgellern','Germany','DE','Burgellern (Germany)',1,1,0),(12765,0,112616,'Burgkunstadt','Germany','DE','Burgkunstadt (Germany)',1,1,0),(12766,4483,112617,'Burgstadt','Germany','DE','Burgstadt (Germany)',1,1,0),(12767,0,112618,'Burgwallbach','Germany','DE','Burgwallbach (Germany)',1,1,0),(12768,0,112619,'Buriano','Italy','IT','Buriano (Italy)',1,1,0),(12769,3259,112620,'Biot','France','FR','Biot (France)',1,1,0),(12770,0,112621,'Bira','Indonesia','ID','Bira (Indonesia)',1,1,0),(12771,0,112622,'Birch Bay','United States of America','US','Birch Bay (United States of America)',1,1,0),(12772,0,112623,'Birkenwald','France','FR','Birkenwald (France)',1,1,0),(12773,0,112624,'Birmingham','United Kingdom','UK','Birmingham (United Kingdom)',1,1,0),(12774,0,112625,'Birnbaum','Austria','AT','Birnbaum (Austria)',1,1,0),(12775,0,112626,'Bischoffen','Germany','DE','Bischoffen (Germany)',1,1,0),(12776,0,112627,'Bischofsheim an der Rhon','Germany','DE','Bischofsheim an der Rhon (Germany)',1,1,0),(12777,0,112628,'Bishopton','United Kingdom','UK','Bishopton (United Kingdom)',1,1,0),(12778,3318,112629,'Bitlis','Turkey','TR','Bitlis (Turkey)',1,1,0),(12779,0,112630,'Bitritto','Italy','IT','Bitritto (Italy)',1,1,0),(12780,3360,112631,'Blacktown','Australia','AU','Blacktown (Australia)',1,1,0),(12781,0,112632,'Blagaj','Bosnia and Herzegowina','BA','Blagaj (Bosnia and Herzegowina)',1,1,0),(12782,0,112633,'Blaine','United States of America','US','Blaine (United States of America)',1,1,0),(12783,3384,112634,'Blairsville','United States of America','US','Blairsville (United States of America)',1,1,0),(12784,0,112635,'Blandford Forum','United Kingdom','UK','Blandford Forum (United Kingdom)',1,1,0),(12785,3412,112636,'Blaubeuren','Germany','DE','Blaubeuren (Germany)',1,1,0),(12786,0,112637,'Blauenthal','Germany','DE','Blauenthal (Germany)',1,1,0),(12787,0,112638,'Blue Mountains','Jamaica','JM','Blue Mountains (Jamaica)',1,1,0),(12788,0,112639,'Blue Ridge','United States of America','US','Blue Ridge (United States of America)',1,1,0),(12789,3494,112640,'Boca Chica','Dominican Republic','DO','Boca Chica (Dominican Republic)',1,1,0),(12790,3507,112641,'Bochum','Germany','DE','Bochum (Germany)',1,1,0),(12791,3509,112642,'Bockhorn','Germany','DE','Bockhorn (Germany)',1,1,0),(12792,0,112644,'Boel','Germany','DE','Boel (Germany)',1,1,0),(12793,0,112645,'Boencourt-Behen','France','FR','Boencourt-Behen (France)',1,1,0),(12794,3535,112646,'Boerne','United States of America','US','Boerne (United States of America)',1,1,0),(12795,0,112647,'Bogazkent','Turkey','TR','Bogazkent (Turkey)',1,1,0),(12796,3541,112648,'Bogense','Denmark','DK','Bogense (Denmark)',1,1,0),(12797,0,112650,'Bognor Regis','United Kingdom','UK','Bognor Regis (United Kingdom)',1,1,0),(12798,3548,112651,'Bohemia','United States of America','US','Bohemia (United States of America)',1,1,0),(12799,3549,112652,'Bohinj','Slovenia','SI','Bohinj (Slovenia)',1,1,0),(12800,0,112653,'Bohinjska Bistrica','Slovenia','SI','Bohinjska Bistrica (Slovenia)',1,1,0),(12801,0,112654,'Bois-D\'Amont','France','FR','Bois-D\'Amont (France)',1,1,0),(12802,3568,112655,'Boismorand','France','FR','Boismorand (France)',1,1,0),(12803,0,112656,'Boitzenburger Land','Germany','DE','Boitzenburger Land (Germany)',1,1,0),(12804,0,112657,'Bokeelia','United States of America','US','Bokeelia (United States of America)',1,1,0),(12805,0,112658,'Bollschweil','Germany','DE','Bollschweil (Germany)',1,1,0),(12806,3605,112659,'Bolsena','Italy','IT','Bolsena (Italy)',1,1,0),(12807,0,112660,'Bolsward','Netherlands','NL','Bolsward (Netherlands)',1,1,0),(12808,3608,112661,'Boltiere','Italy','IT','Boltiere (Italy)',1,1,0),(12809,0,112662,'Bom Jardim da Serra','Brazil','BR','Bom Jardim da Serra (Brazil)',1,1,0),(12810,0,112663,'Bomal-sur-Ourthe','Belgium','BE','Bomal-sur-Ourthe (Belgium)',1,1,0),(12811,0,112664,'Bomlo','Norway','NO','Bomlo (Norway)',1,1,0),(12812,0,112665,'Bon Encontre','France','FR','Bon Encontre (France)',1,1,0),(12813,3627,112666,'Bonassola','Italy','IT','Bonassola (Italy)',1,1,0),(12814,3632,112667,'Bonchamp-les-Laval','France','FR','Bonchamp-les-Laval (France)',1,1,0),(12815,3640,112668,'Bonham','United States of America','US','Bonham (United States of America)',1,1,0),(12816,0,112669,'Bonneville','France','FR','Bonneville (France)',1,1,0),(12817,0,112670,'Bonnigheim','Germany','DE','Bonnigheim (Germany)',1,1,0),(12818,3676,112671,'Boone','United States of America','US','Boone (United States of America)',1,1,0),(12819,0,112672,'Boos (Eifel)','Germany','DE','Boos (Eifel) (Germany)',1,1,0),(12820,0,112673,'Boracay Island','Philippines','PH','Boracay Island (Philippines)',1,1,0),(12821,0,112674,'Borchen','Germany','DE','Borchen (Germany)',1,1,0),(12822,0,112675,'Bordils','Spain','ES','Bordils (Spain)',1,1,0),(12823,3697,112676,'Borg El Arab','Egypt','EG','Borg El Arab (Egypt)',1,1,0),(12824,0,112677,'Borghetto di Vara','Italy','IT','Borghetto di Vara (Italy)',1,1,0),(12825,0,112678,'Borgio Verezzi','Italy','IT','Borgio Verezzi (Italy)',1,1,0),(12826,0,112679,'Borgo a Buggiano','Italy','IT','Borgo a Buggiano (Italy)',1,1,0),(12827,0,112680,'Borgo San Lorenzo','Italy','IT','Borgo San Lorenzo (Italy)',1,1,0),(12828,3709,112681,'Borgomale','Italy','IT','Borgomale (Italy)',1,1,0),(12829,0,112682,'Borkowo','Poland','PL','Borkowo (Poland)',1,1,0),(12830,3721,112683,'Bornheim','Germany','DE','Bornheim (Germany)',1,1,0),(12831,3728,112684,'Borrego Springs','United States of America','US','Borrego Springs (United States of America)',1,1,0),(12832,0,112685,'Bosanska Dubica','Bosnia and Herzegowina','BA','Bosanska Dubica (Bosnia and Herzegowina)',1,1,0),(12833,3744,112686,'Bosco','Italy','IT','Bosco (Italy)',1,1,0),(12834,0,112687,'Bosco Verde','Italy','IT','Bosco Verde (Italy)',1,1,0),(12835,0,112688,'Botik Island','Indonesia','ID','Botik Island (Indonesia)',1,1,0),(12836,3769,112689,'Botosani','Romania','RO','Botosani (Romania)',1,1,0),(12837,3789,112690,'Bouillon','Belgium','BE','Bouillon (Belgium)',1,1,0),(12838,3793,112691,'Boulbon','France','FR','Boulbon (France)',1,1,0),(12839,0,112692,'Bouley Bay','United Kingdom','UK','Bouley Bay (United Kingdom)',1,1,0),(12840,3807,112693,'Bourail','New Caledonia','NC','Bourail (New Caledonia)',1,1,0),(12841,0,112694,'Bourg La Reine','France','FR','Bourg La Reine (France)',1,1,0),(12842,3822,112695,'Bourg-les-Valence','France','FR','Bourg-les-Valence (France)',1,1,0),(12843,0,112696,'Bourre','France','FR','Bourre (France)',1,1,0),(12844,0,112697,'Boutiogny-sur-Essonne','France','FR','Boutiogny-sur-Essonne (France)',1,1,0),(12845,0,112698,'Bouxieres-aux-Dames','France','FR','Bouxieres-aux-Dames (France)',1,1,0),(12846,0,112699,'Bowland Bridge','United Kingdom','UK','Bowland Bridge (United Kingdom)',1,1,0),(12847,3869,112700,'Bowral','Australia','AU','Bowral (Australia)',1,1,0),(12848,0,112701,'Brackley Beach','Canada','CA','Brackley Beach (Canada)',1,1,0),(12849,3906,112702,'Bradley','United States of America','US','Bradley (United States of America)',1,1,0),(12850,3912,112703,'Braga','Portugal','PT','Braga (Portugal)',1,1,0),(12851,0,112704,'Braine-le-Chateau','Belgium','BE','Braine-le-Chateau (Belgium)',1,1,0),(12852,3918,112705,'Brain-sur-Allonnes','France','FR','Brain-sur-Allonnes (France)',1,1,0),(12853,0,112706,'Brajkovici','Croatia','HR','Brajkovici (Croatia)',1,1,0),(12854,0,112707,'Brakel - Bellersen','Germany','DE','Brakel - Bellersen (Germany)',1,1,0),(12855,3931,112708,'Brampton','Canada','CA','Brampton (Canada)',1,1,0),(12856,0,112709,'Brampton','United Kingdom','UK','Brampton (United Kingdom)',1,1,0),(12857,0,112710,'Brampton Island','Australia','AU','Brampton Island (Australia)',1,1,0),(12858,0,112711,'Brand','Germany','DE','Brand (Germany)',1,1,0),(12859,0,112712,'Brand Erbisdorf','Germany','DE','Brand Erbisdorf (Germany)',1,1,0),(12860,0,112713,'Brandberg','Austria','AT','Brandberg (Austria)',1,1,0),(12861,3970,112714,'Brattleboro','United States of America','US','Brattleboro (United States of America)',1,1,0),(12862,0,112715,'Bratulici','Croatia','HR','Bratulici (Croatia)',1,1,0),(12863,0,112716,'Braunfels','Germany','DE','Braunfels (Germany)',1,1,0),(12864,0,112717,'Braunton','United Kingdom','UK','Braunton (United Kingdom)',1,1,0),(12865,3978,112718,'Braunwald','Switzerland','CH','Braunwald (Switzerland)',1,1,0),(12866,0,112719,'Brazil','Brazil','BR','Brazil (Brazil)',1,1,0),(12867,0,112720,'Bredenfelde','Germany','DE','Bredenfelde (Germany)',1,1,0),(12868,4013,112721,'Brekke','Norway','NO','Brekke (Norway)',1,1,0),(12869,4014,112722,'Brela','Croatia','HR','Brela (Croatia)',1,1,0),(12870,4017,112723,'Bremen','United States of America','US','Bremen (United States of America)',1,1,0),(12871,0,112724,'Brena Alta / Brenja Alta','Spain','ES','Brena Alta / Brenja Alta (Spain)',1,1,0),(12872,0,112725,'Brenna','Poland','PL','Brenna (Poland)',1,1,0),(12873,0,112726,'Brest','Belarus','BY','Brest (Belarus)',1,1,0),(12874,4042,112727,'Bretignolles-sur-Mer','France','FR','Bretignolles-sur-Mer (France)',1,1,0),(12875,0,112728,'Burgbernheim','Germany','DE','Burgbernheim (Germany)',1,1,0),(12876,0,112729,'Burgbrohl','Germany','DE','Burgbrohl (Germany)',1,1,0),(12877,0,112730,'Burgersfort','South Africa','ZA','Burgersfort (South Africa)',1,1,0),(12878,0,112731,'Burkardroth','Germany','DE','Burkardroth (Germany)',1,1,0),(12879,0,112732,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(12880,0,112733,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(12881,0,112734,'Burnham-on-Crouch','United Kingdom','UK','Burnham-on-Crouch (United Kingdom)',1,1,0),(12882,0,112735,'Burntisland','United Kingdom','UK','Burntisland (United Kingdom)',1,1,0),(12883,4527,112736,'Bursa','Turkey','TR','Bursa (Turkey)',1,1,0),(12884,0,112737,'Burtenbach','Germany','DE','Burtenbach (Germany)',1,1,0),(12885,0,112738,'Burunchel','Spain','ES','Burunchel (Spain)',1,1,0),(12886,0,112739,'Bury','United Kingdom','UK','Bury (United Kingdom)',1,1,0),(12887,0,112740,'Busko-Zdroj','Poland','PL','Busko-Zdroj (Poland)',1,1,0),(12888,4558,112741,'Bussum','Netherlands','NL','Bussum (Netherlands)',1,1,0),(12889,4562,112742,'Busto Arsizio','Italy','IT','Busto Arsizio (Italy)',1,1,0),(12890,4563,112743,'Busua','Ghana','GH','Busua (Ghana)',1,1,0),(12891,0,112744,'Busumer Deichhausen','Germany','DE','Busumer Deichhausen (Germany)',1,1,0),(12892,4570,112745,'Butler','United States of America','US','Butler (United States of America)',1,1,0),(12893,0,112746,'Butzbach','Germany','DE','Butzbach (Germany)',1,1,0),(12894,0,112747,'Byhalia','United States of America','US','Byhalia (United States of America)',1,1,0),(12895,4591,112748,'Byram','United States of America','US','Byram (United States of America)',1,1,0),(12896,0,112749,'Byske','Sweden','SE','Byske (Sweden)',1,1,0),(12897,0,112750,'Cabanas','Spain','ES','Cabanas (Spain)',1,1,0),(12898,0,112751,'Cabrieres - d\' Avignon','France','FR','Cabrieres - d\' Avignon (France)',1,1,0),(12899,0,112752,'Cacador','Brazil','BR','Cacador (Brazil)',1,1,0),(12900,0,112753,'Cacak','Serbia','RS','Cacak (Serbia)',1,1,0),(12901,0,112754,'Cadca-Rakova','Slovakia','SK','Cadca-Rakova (Slovakia)',1,1,0),(12902,4646,112755,'Cadenabbia','Italy','IT','Cadenabbia (Italy)',1,1,0),(12903,4652,112756,'Cadillac','United States of America','US','Cadillac (United States of America)',1,1,0),(12904,0,112757,'Cadmore End','United Kingdom','UK','Cadmore End (United Kingdom)',1,1,0),(12905,0,112758,'Caerano di San Marco','Italy','IT','Caerano di San Marco (Italy)',1,1,0),(12906,0,112759,'Caerleon','United Kingdom','UK','Caerleon (United Kingdom)',1,1,0),(12907,0,112760,'Caernarfon','United Kingdom','UK','Caernarfon (United Kingdom)',1,1,0),(12908,0,112761,'Caersws','United Kingdom','UK','Caersws (United Kingdom)',1,1,0),(12909,4666,112762,'Cafayate','Argentina','AR','Cafayate (Argentina)',1,1,0),(12910,4675,112763,'Cagraray Island','Philippines','PH','Cagraray Island (Philippines)',1,1,0),(12911,4678,112764,'Caherdaniel','Ireland','IE','Caherdaniel (Ireland)',1,1,0),(12912,4689,112765,'Caineville','United States of America','US','Caineville (United States of America)',1,1,0),(12913,4700,112766,'Cairo','United States of America','US','Cairo (United States of America)',1,1,0),(12914,0,112767,'Cala Gondone','Italy','IT','Cala Gondone (Italy)',1,1,0),(12915,0,112768,'Cala Llombards','Spain','ES','Cala Llombards (Spain)',1,1,0),(12916,30648,112769,'Cala Vinas','Spain','ES','Cala Vinas (Spain)',1,1,0),(12917,4709,112770,'Calabasas','United States of America','US','Calabasas (United States of America)',1,1,0),(12918,4712,112771,'Calabogie','Canada','CA','Calabogie (Canada)',1,1,0),(12919,4728,112772,'Calamocha','Spain','ES','Calamocha (Spain)',1,1,0),(12920,0,112773,'Cala\'n Forcat','Spain','ES','Cala\'n Forcat (Spain)',1,1,0),(12921,0,112774,'Cala\'n Porter','Spain','ES','Cala\'n Porter (Spain)',1,1,0),(12922,0,112775,'Caldine','Italy','IT','Caldine (Italy)',1,1,0),(12923,0,112776,'Caledonia','Canada','CA','Caledonia (Canada)',1,1,0),(12924,4772,112777,'Caleta de Fuste','Spain','ES','Caleta de Fuste (Spain)',1,1,0),(12925,0,112778,'Caleta del Sebo','Spain','ES','Caleta del Sebo (Spain)',1,1,0),(12926,4776,112779,'Calhan','United States of America','US','Calhan (United States of America)',1,1,0),(12927,4779,112780,'Calhoun','United States of America','US','Calhoun (United States of America)',1,1,0),(12928,4780,112781,'Cali','Colombia','CO','Cali (Colombia)',1,1,0),(12929,0,112782,'California City','United States of America','US','California City (United States of America)',1,1,0),(12930,0,112783,'Callander','United Kingdom','UK','Callander (United Kingdom)',1,1,0),(12931,4793,112784,'Callao','Peru','PE','Callao (Peru)',1,1,0),(12932,0,112785,'Caltignaga','Italy','IT','Caltignaga (Italy)',1,1,0),(12933,0,112786,'Caluire','France','FR','Caluire (France)',1,1,0),(12934,4819,112787,'Calvia','Spain','ES','Calvia (Spain)',1,1,0),(12935,0,112788,'Camaldoli','Italy','IT','Camaldoli (Italy)',1,1,0),(12936,0,112789,'Camaqua','Brazil','BR','Camaqua (Brazil)',1,1,0),(12937,0,112790,'Camaret','France','FR','Camaret (France)',1,1,0),(12938,4844,112791,'Cambiano','Italy','IT','Cambiano (Italy)',1,1,0),(12939,4846,112792,'Cambrai','France','FR','Cambrai (France)',1,1,0),(12940,4850,112793,'Cambridge','United States of America','US','Cambridge (United States of America)',1,1,0),(12941,0,112794,'Camelford','United Kingdom','UK','Camelford (United Kingdom)',1,1,0),(12942,0,112795,'Camerano Casasco','Italy','IT','Camerano Casasco (Italy)',1,1,0),(12943,0,112796,'Cameron','United States of America','US','Cameron (United States of America)',1,1,0),(12944,4873,112797,'Caminha','Portugal','PT','Caminha (Portugal)',1,1,0),(12945,4878,112798,'Camocim','Brazil','BR','Camocim (Brazil)',1,1,0),(12946,0,112799,'Campagnac (Aveyron)','France','FR','Campagnac (Aveyron) (France)',1,1,0),(12947,0,112800,'Campaspero','Spain','ES','Campaspero (Spain)',1,1,0),(12948,0,112801,'Campiglia Marittima','Italy','IT','Campiglia Marittima (Italy)',1,1,0),(12949,4910,112802,'Campinas','Brazil','BR','Campinas (Brazil)',1,1,0),(12950,4911,112803,'Campione','Italy','IT','Campione (Italy)',1,1,0),(12951,0,112804,'Campo Grande','Brazil','BR','Campo Grande (Brazil)',1,1,0),(12952,0,112805,'Campo nell\'Elba','Italy','IT','Campo nell\'Elba (Italy)',1,1,0),(12953,0,112806,'Campobello di Mazara','Italy','IT','Campobello di Mazara (Italy)',1,1,0),(12954,4923,112807,'Campos','Spain','ES','Campos (Spain)',1,1,0),(12955,4928,112808,'Camps Bay','South Africa','ZA','Camps Bay (South Africa)',1,1,0),(12956,4934,112809,'Camrose','Canada','CA','Camrose (Canada)',1,1,0),(12957,4937,112810,'Camyuva','Turkey','TR','Camyuva (Turkey)',1,1,0),(12958,30656,112811,'Can Pastilla','Spain','ES','Can Pastilla (Spain)',1,1,0),(12959,4938,112812,'Can Tho','Vietnam','VN','Can Tho (Vietnam)',1,1,0),(12960,4941,112813,'Canach','Luxembourg','LU','Canach (Luxembourg)',1,1,0),(12961,0,112814,'Canaima Nationalpark','Venezuela','VE','Canaima Nationalpark (Venezuela)',1,1,0),(12962,0,112815,'Cananea','Mexico','MX','Cananea (Mexico)',1,1,0),(12963,4961,112816,'Canby','United States of America','US','Canby (United States of America)',1,1,0),(12964,4968,112817,'Candelario','Spain','ES','Candelario (Spain)',1,1,0),(12965,4971,112818,'Cande-sur-Beuvron','France','FR','Cande-sur-Beuvron (France)',1,1,0),(12966,0,112819,'Canet en Roussillon','France','FR','Canet en Roussillon (France)',1,1,0),(12967,0,112820,'Canet-de-Salars','France','FR','Canet-de-Salars (France)',1,1,0),(12968,0,112821,'Cangas del Narcea','Spain','ES','Cangas del Narcea (Spain)',1,1,0),(12969,4993,112822,'Canggu','Indonesia','ID','Canggu (Indonesia)',1,1,0),(12970,0,112823,'Canneto sull\'Oglio','Italy','IT','Canneto sull\'Oglio (Italy)',1,1,0),(12971,0,112824,'Cano Negro','Costa Rica','CR','Cano Negro (Costa Rica)',1,1,0),(12972,11108,112825,'Guangzhou','China','CN','Guangzhou (China)',1,1,0),(12973,0,112826,'Cap Ferret','France','FR','Cap Ferret (France)',1,1,0),(12974,5051,112827,'Capaccio','Italy','IT','Capaccio (Italy)',1,1,0),(12975,0,112828,'Cape Bridgewater','Australia','AU','Cape Bridgewater (Australia)',1,1,0),(12976,0,112829,'Cape Point','Gambia','GM','Cape Point (Gambia)',1,1,0),(12977,0,112830,'Capo Coda Cavallo','Italy','IT','Capo Coda Cavallo (Italy)',1,1,0),(12978,5091,112831,'Capon Bridge','United States of America','US','Capon Bridge (United States of America)',1,1,0),(12979,5097,112832,'Capraia e Limite','Italy','IT','Capraia e Limite (Italy)',1,1,0),(12980,0,112833,'Caprarola','Italy','IT','Caprarola (Italy)',1,1,0),(12981,0,112834,'Capri','Italy','IT','Capri (Italy)',1,1,0),(12982,4552,112835,'Busselton','Australia','AU','Busselton (Australia)',1,1,0),(12983,0,112836,'Bussy St. Georges','France','FR','Bussy St. Georges (France)',1,1,0),(12984,0,112837,'Busteni','Romania','RO','Busteni (Romania)',1,1,0),(12985,0,112838,'Buttenheim','Germany','DE','Buttenheim (Germany)',1,1,0),(12986,0,112839,'Butuceni','Moldova','MD','Butuceni (Moldova)',1,1,0),(12987,4578,112840,'Buxy','France','FR','Buxy (France)',1,1,0),(12988,0,112841,'Bwabwata Nationalpark','Namibia','NA','Bwabwata Nationalpark (Namibia)',1,1,0),(12989,4586,112842,'Byblos','Lebanon','LB','Byblos (Lebanon)',1,1,0),(12990,0,112843,'Byfield','Australia','AU','Byfield (Australia)',1,1,0),(12991,4594,112844,'Byron Bay','Australia','AU','Byron Bay (Australia)',1,1,0),(12992,0,112845,'Bytow','Poland','PL','Bytow (Poland)',1,1,0),(12993,4598,112846,'Cabanaconde','Peru','PE','Cabanaconde (Peru)',1,1,0),(12994,4600,112847,'Cabanatuan','Philippines','PH','Cabanatuan (Philippines)',1,1,0),(12995,4603,112848,'Cabarete','Dominican Republic','DO','Cabarete (Dominican Republic)',1,1,0),(12996,0,112849,'Cabezon de Liebana','Spain','ES','Cabezon de Liebana (Spain)',1,1,0),(12997,4616,112850,'Cable Beach','Australia','AU','Cable Beach (Australia)',1,1,0),(12998,4618,112851,'Cabo Rojo','Puerto Rico','PR','Cabo Rojo (Puerto Rico)',1,1,0),(12999,4624,112852,'Cabrera','Dominican Republic','DO','Cabrera (Dominican Republic)',1,1,0),(13000,4627,112853,'Cabries','France','FR','Cabries (France)',1,1,0),(13001,4640,112854,'Cadalso','Spain','ES','Cadalso (Spain)',1,1,0),(13002,4653,112855,'Cadillac','France','FR','Cadillac (France)',1,1,0),(13003,4677,112856,'Cahagnes','France','FR','Cahagnes (France)',1,1,0),(13004,4680,112857,'Cahir','Ireland','IE','Cahir (Ireland)',1,1,0),(13005,4682,112858,'Cahokia','United States of America','US','Cahokia (United States of America)',1,1,0),(13006,4684,112859,'Cahuita','Costa Rica','CR','Cahuita (Costa Rica)',1,1,0),(13007,30614,112860,'Cala Blanca','Spain','ES','Cala Blanca (Spain)',1,1,0),(13008,30629,112861,'Cala Llenya','Spain','ES','Cala Llenya (Spain)',1,1,0),(13009,30630,112862,'Cala Llonga','Spain','ES','Cala Llonga (Spain)',1,1,0),(13010,30637,112863,'Cala Mondrago','Spain','ES','Cala Mondrago (Spain)',1,1,0),(13011,0,112864,'Cala Morell','Spain','ES','Cala Morell (Spain)',1,1,0),(13012,30641,112865,'Cala Ratjada','Spain','ES','Cala Ratjada (Spain)',1,1,0),(13013,0,112866,'Cala Santany','Spain','ES','Cala Santany (Spain)',1,1,0),(13014,4726,112867,'Calamba','Philippines','PH','Calamba (Philippines)',1,1,0),(13015,4754,112869,'Caldas Novas','Brazil','BR','Caldas Novas (Brazil)',1,1,0),(13016,4758,112870,'Calderara di Reno','Italy','IT','Calderara di Reno (Italy)',1,1,0),(13017,0,112871,'Caldonazzo','Italy','IT','Caldonazzo (Italy)',1,1,0),(13018,4769,112872,'Calera','United States of America','US','Calera (United States of America)',1,1,0),(13019,0,112873,'Calhoun','United States of America','US','Calhoun (United States of America)',1,1,0),(13020,4787,112874,'Calitri','Italy','IT','Calitri (Italy)',1,1,0),(13021,0,112875,'Callenberg','Germany','DE','Callenberg (Germany)',1,1,0),(13022,0,112876,'Calviac-en-Perigord','France','FR','Calviac-en-Perigord (France)',1,1,0),(13023,0,112877,'Camacan','Brazil','BR','Camacan (Brazil)',1,1,0),(13024,4829,112878,'Camano Island','United States of America','US','Camano Island (United States of America)',1,1,0),(13025,4851,112879,'Cambridge','Canada','CA','Cambridge (Canada)',1,1,0),(13026,0,112880,'Cambridge','United States of America','US','Cambridge (United States of America)',1,1,0),(13027,4879,112881,'Camogli','Italy','IT','Camogli (Italy)',1,1,0),(13028,4889,112882,'Campbell River','Canada','CA','Campbell River (Canada)',1,1,0),(13029,4893,112883,'Campbellsville','United States of America','US','Campbellsville (United States of America)',1,1,0),(13030,4897,112884,'Campbellville','Canada','CA','Campbellville (Canada)',1,1,0),(13031,0,112885,'Campo','Spain','ES','Campo (Spain)',1,1,0),(13032,0,112886,'Campo de Golf','Spain','ES','Campo de Golf (Spain)',1,1,0),(13033,4916,112887,'Campobasso','Italy','IT','Campobasso (Italy)',1,1,0),(13034,4924,112888,'Campos do Jordao','Brazil','BR','Campos do Jordao (Brazil)',1,1,0),(13035,0,112889,'Campos dos Goytacazes','Brazil','BR','Campos dos Goytacazes (Brazil)',1,1,0),(13036,4927,112890,'Camprodon','Spain','ES','Camprodon (Spain)',1,1,0),(13037,4945,112891,'Canadian','United States of America','US','Canadian (United States of America)',1,1,0),(13038,0,112892,'Canalicchio','Italy','IT','Canalicchio (Italy)',1,1,0),(13039,4952,112893,'Canamares','Spain','ES','Canamares (Spain)',1,1,0),(13040,0,112894,'Canazei','Italy','IT','Canazei (Italy)',1,1,0),(13041,4972,112895,'Candi Dasa','Indonesia','ID','Candi Dasa (Indonesia)',1,1,0),(13042,4976,112896,'Candiolo','Italy','IT','Candiolo (Italy)',1,1,0),(13043,0,112897,'Canet','Spain','ES','Canet (Spain)',1,1,0),(13044,4996,112898,'Canicada','Portugal','PT','Canicada (Portugal)',1,1,0),(13045,0,112900,'Canouan','St. Vincent & the Grenadines','VC','Canouan (St. Vincent & the Grenadines)',1,1,0),(13046,0,112901,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13047,0,112902,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13048,5045,112903,'Canyonville','United States of America','US','Canyonville (United States of America)',1,1,0),(13049,5064,112904,'Cape Coast','Ghana','GH','Cape Coast (Ghana)',1,1,0),(13050,0,112905,'Cape Cod','United States of America','US','Cape Cod (United States of America)',1,1,0),(13051,0,112906,'Cape Elizabeth','United States of America','US','Cape Elizabeth (United States of America)',1,1,0),(13052,0,112907,'Cape May','United States of America','US','Cape May (United States of America)',1,1,0),(13053,0,112908,'Capilla del Senor','Argentina','AR','Capilla del Senor (Argentina)',1,1,0),(13054,0,112909,'Capriasca','Switzerland','CH','Capriasca (Switzerland)',1,1,0),(13055,0,112910,'Caprivi','Namibia','NA','Caprivi (Namibia)',1,1,0),(13056,0,112911,'Capurgana','Colombia','CO','Capurgana (Colombia)',1,1,0),(13057,5119,112912,'Caramulo','Portugal','PT','Caramulo (Portugal)',1,1,0),(13058,5129,112914,'Caravelas','Brazil','BR','Caravelas (Brazil)',1,1,0),(13059,5134,112915,'Carboneras','Spain','ES','Carboneras (Spain)',1,1,0),(13060,5154,112916,'Carentan','France','FR','Carentan (France)',1,1,0),(13061,5166,112917,'Carisolo','Italy','IT','Carisolo (Italy)',1,1,0),(13062,0,112918,'Carlibaba','Romania','RO','Carlibaba (Romania)',1,1,0),(13063,0,112919,'Carlisle Bay','Antigua & Barbuda','AG','Carlisle Bay (Antigua & Barbuda)',1,1,0),(13064,0,112920,'Carluke','United Kingdom','UK','Carluke (United Kingdom)',1,1,0),(13065,0,112921,'Carmarthen','United Kingdom','UK','Carmarthen (United Kingdom)',1,1,0),(13066,0,112922,'Carmaux','France','FR','Carmaux (France)',1,1,0),(13067,0,112923,'Carmo do Rio Claro','Brazil','BR','Carmo do Rio Claro (Brazil)',1,1,0),(13068,5197,112924,'Carna','Ireland','IE','Carna (Ireland)',1,1,0),(13069,0,112925,'Carnoux','France','FR','Carnoux (France)',1,1,0),(13070,5219,112926,'Carouge','Switzerland','CH','Carouge (Switzerland)',1,1,0),(13071,5224,112927,'Carpentras','France','FR','Carpentras (France)',1,1,0),(13072,5225,112928,'Carpi','Italy','IT','Carpi (Italy)',1,1,0),(13073,5227,112929,'Carpinteria','United States of America','US','Carpinteria (United States of America)',1,1,0),(13074,0,112930,'Carreno','Spain','ES','Carreno (Spain)',1,1,0),(13075,0,112931,'Carrickfergus','United Kingdom','UK','Carrickfergus (United Kingdom)',1,1,0),(13076,5241,112932,'Carrickmacross','Ireland','IE','Carrickmacross (Ireland)',1,1,0),(13077,5246,112933,'Carrigaline','Ireland','IE','Carrigaline (Ireland)',1,1,0),(13078,5254,112934,'Carroll','United States of America','US','Carroll (United States of America)',1,1,0),(13079,0,112935,'Carroll Valley','United States of America','US','Carroll Valley (United States of America)',1,1,0),(13080,5255,112936,'Carrollton','United States of America','US','Carrollton (United States of America)',1,1,0),(13081,5266,112937,'Cartago','Costa Rica','CR','Cartago (Costa Rica)',1,1,0),(13082,5272,112938,'Carthage','United States of America','US','Carthage (United States of America)',1,1,0),(13083,5277,112939,'Caruthersville','United States of America','US','Caruthersville (United States of America)',1,1,0),(13084,5278,112940,'Carvin','France','FR','Carvin (France)',1,1,0),(13085,0,112941,'Casabermeja','Spain','ES','Casabermeja (Spain)',1,1,0),(13086,0,112942,'Casale Marittimo','Italy','IT','Casale Marittimo (Italy)',1,1,0),(13087,0,112943,'Casamarina di Lucoli','Italy','IT','Casamarina di Lucoli (Italy)',1,1,0),(13088,5297,112944,'Casapulla','Italy','IT','Casapulla (Italy)',1,1,0),(13089,0,112945,'Brem','France','FR','Brem (France)',1,1,0),(13090,4021,112946,'Bremerhaven','Germany','DE','Bremerhaven (Germany)',1,1,0),(13091,0,112947,'Bremervorde','Germany','DE','Bremervorde (Germany)',1,1,0),(13092,0,112948,'Brena Baja','Spain','ES','Brena Baja (Spain)',1,1,0),(13093,0,112949,'Brettin','Germany','DE','Brettin (Germany)',1,1,0),(13094,4062,112950,'Brewster','United States of America','US','Brewster (United States of America)',1,1,0),(13095,0,112951,'Brez','Italy','IT','Brez (Italy)',1,1,0),(13096,4065,112952,'Brian Head','United States of America','US','Brian Head (United States of America)',1,1,0),(13097,4084,112953,'Bridgetown','Australia','AU','Bridgetown (Australia)',1,1,0),(13098,0,112954,'Bridlington','United Kingdom','UK','Bridlington (United Kingdom)',1,1,0),(13099,4094,112955,'Bridport','Australia','AU','Bridport (Australia)',1,1,0),(13100,4116,112956,'Brignoles','France','FR','Brignoles (France)',1,1,0),(13101,4136,112957,'Brisbane','United States of America','US','Brisbane (United States of America)',1,1,0),(13102,0,112958,'Bristol','United Kingdom','UK','Bristol (United Kingdom)',1,1,0),(13103,0,112959,'Brittas Bay','Ireland','IE','Brittas Bay (Ireland)',1,1,0),(13104,4151,112960,'Brive-la-Gaillarde','France','FR','Brive-la-Gaillarde (France)',1,1,0),(13105,0,112961,'Brixham','United Kingdom','UK','Brixham (United Kingdom)',1,1,0),(13106,0,112962,'Broc','Switzerland','CH','Broc (Switzerland)',1,1,0),(13107,4174,112963,'Brockport','United States of America','US','Brockport (United States of America)',1,1,0),(13108,0,112964,'Brodnica Gorna','Poland','PL','Brodnica Gorna (Poland)',1,1,0),(13109,4191,112965,'Bromont','Canada','CA','Bromont (Canada)',1,1,0),(13110,4199,112966,'Bronderslev','Denmark','DK','Bronderslev (Denmark)',1,1,0),(13111,4204,112967,'Bronte','Italy','IT','Bronte (Italy)',1,1,0),(13112,4205,112968,'Bronte Park','Australia','AU','Bronte Park (Australia)',1,1,0),(13113,4211,112969,'Brookings','United States of America','US','Brookings (United States of America)',1,1,0),(13114,4215,112970,'Brooklawn','United States of America','US','Brooklawn (United States of America)',1,1,0),(13115,4240,112971,'Brotterode','Germany','DE','Brotterode (Germany)',1,1,0),(13116,0,112972,'Broughty Ferry','United Kingdom','UK','Broughty Ferry (United Kingdom)',1,1,0),(13117,0,112973,'Broxted','United Kingdom','UK','Broxted (United Kingdom)',1,1,0),(13118,4263,112974,'Bruce Bay','New Zealand','NZ','Bruce Bay (New Zealand)',1,1,0),(13119,0,112975,'Bruck an der Mur','Austria','AT','Bruck an der Mur (Austria)',1,1,0),(13120,4273,112976,'Brugg','Switzerland','CH','Brugg (Switzerland)',1,1,0),(13121,0,112977,'Brugherio','Italy','IT','Brugherio (Italy)',1,1,0),(13122,0,112978,'Brugnato','Italy','IT','Brugnato (Italy)',1,1,0),(13123,0,112979,'Brunello','Italy','IT','Brunello (Italy)',1,1,0),(13124,0,112980,'Brunsbuttel','Germany','DE','Brunsbuttel (Germany)',1,1,0),(13125,0,112981,'Brunswick','United States of America','US','Brunswick (United States of America)',1,1,0),(13126,0,112982,'Brusio','Switzerland','CH','Brusio (Switzerland)',1,1,0),(13127,0,112983,'Bryanston','South Africa','ZA','Bryanston (South Africa)',1,1,0),(13128,0,112984,'Bryrup','Denmark','DK','Bryrup (Denmark)',1,1,0),(13129,0,112985,'Buarcos','Portugal','PT','Buarcos (Portugal)',1,1,0),(13130,0,112986,'Buccoo','Trinidad and Tobago','TT','Buccoo (Trinidad and Tobago)',1,1,0),(13131,0,112987,'Buch am Buchrain','Germany','DE','Buch am Buchrain (Germany)',1,1,0),(13132,4334,112988,'Bucheres','France','FR','Bucheres (France)',1,1,0),(13133,0,112989,'Buchholz (Pritzwalk)','Germany','DE','Buchholz (Pritzwalk) (Germany)',1,1,0),(13134,0,112990,'Buchholz in der Nordheide','Germany','DE','Buchholz in der Nordheide (Germany)',1,1,0),(13135,0,112991,'Bucken','Germany','DE','Bucken (Germany)',1,1,0),(13136,4338,112992,'Buckeye','United States of America','US','Buckeye (United States of America)',1,1,0),(13137,4356,112993,'Bucksport','United States of America','US','Bucksport (United States of America)',1,1,0),(13138,4363,112994,'Budd Lake','United States of America','US','Budd Lake (United States of America)',1,1,0),(13139,0,112995,'Buffalo','United States of America','US','Buffalo (United States of America)',1,1,0),(13140,0,112996,'Buffalo','United States of America','US','Buffalo (United States of America)',1,1,0),(13141,0,112997,'Bukit Lawang','Indonesia','ID','Bukit Lawang (Indonesia)',1,1,0),(13142,0,112998,'Bukovany u Kyjova','Czech Republic','CZ','Bukovany u Kyjova (Czech Republic)',1,1,0),(13143,4424,112999,'Bulls Gap','United States of America','US','Bulls Gap (United States of America)',1,1,0),(13144,0,113000,'Bulstringen','Germany','DE','Bulstringen (Germany)',1,1,0),(13145,0,113001,'Bulwer','South Africa','ZA','Bulwer (South Africa)',1,1,0),(13146,4431,113002,'Bundaberg','Australia','AU','Bundaberg (Australia)',1,1,0),(13147,0,113003,'Bunzlau','Poland','PL','Bunzlau (Poland)',1,1,0),(13148,4453,113004,'Burago di Molgora','Italy','IT','Burago di Molgora (Italy)',1,1,0),(13149,4480,113005,'Burgohondo','Spain','ES','Burgohondo (Spain)',1,1,0),(13150,4487,113006,'Burhaniye','Turkey','TR','Burhaniye (Turkey)',1,1,0),(13151,4490,113007,'Burien','United States of America','US','Burien (United States of America)',1,1,0),(13152,4493,113008,'Burjassot','Spain','ES','Burjassot (Spain)',1,1,0),(13153,0,113009,'Burkhardtsdorf','Germany','DE','Burkhardtsdorf (Germany)',1,1,0),(13154,4503,113010,'Burley','United States of America','US','Burley (United States of America)',1,1,0),(13155,4504,113011,'Burlingame','United States of America','US','Burlingame (United States of America)',1,1,0),(13156,0,113012,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(13157,4507,113013,'Burnaby','Canada','CA','Burnaby (Canada)',1,1,0),(13158,0,113014,'Burney','United States of America','US','Burney (United States of America)',1,1,0),(13159,4515,113015,'Burns Lake','Canada','CA','Burns Lake (Canada)',1,1,0),(13160,0,113016,'Burren','Ireland','IE','Burren (Ireland)',1,1,0),(13161,4535,113017,'Burwash Landing','Canada','CA','Burwash Landing (Canada)',1,1,0),(13162,4537,113018,'Burwood','Australia','AU','Burwood (Australia)',1,1,0),(13163,4547,113019,'Bushnell','United States of America','US','Bushnell (United States of America)',1,1,0),(13164,4565,113020,'Busum','Germany','DE','Busum (Germany)',1,1,0),(13165,0,113021,'Butare','Rwanda','RW','Butare (Rwanda)',1,1,0),(13166,0,113022,'Buttelborn','Germany','DE','Buttelborn (Germany)',1,1,0),(13167,0,113023,'Butternut','United States of America','US','Butternut (United States of America)',1,1,0),(13168,4580,113024,'Buyukeceli','Turkey','TR','Buyukeceli (Turkey)',1,1,0),(13169,4593,113025,'Byron','United States of America','US','Byron (United States of America)',1,1,0),(13170,4609,113026,'Cabezuela del Valle','Spain','ES','Cabezuela del Valle (Spain)',1,1,0),(13171,4614,113027,'Cable Bay','New Zealand','NZ','Cable Bay (New Zealand)',1,1,0),(13172,0,113028,'Cabo de Santo Agostinho','Brazil','BR','Cabo de Santo Agostinho (Brazil)',1,1,0),(13173,0,113029,'Cabo Roig','Spain','ES','Cabo Roig (Spain)',1,1,0),(13174,0,113030,'Cabrales','Spain','ES','Cabrales (Spain)',1,1,0),(13175,4626,113031,'Cabrieres','France','FR','Cabrieres (France)',1,1,0),(13176,4636,113032,'Cachan','France','FR','Cachan (France)',1,1,0),(13177,0,113033,'Cachoeira','Brazil','BR','Cachoeira (Brazil)',1,1,0),(13178,4639,113034,'Cachoeiro de Itapemirim','Brazil','BR','Cachoeiro de Itapemirim (Brazil)',1,1,0),(13179,4655,113035,'Cadiz','United States of America','US','Cadiz (United States of America)',1,1,0),(13180,0,113036,'Cadzand-Bad','Netherlands','NL','Cadzand-Bad (Netherlands)',1,1,0),(13181,4665,113037,'Caesarea','Israel','IL','Caesarea (Israel)',1,1,0),(13182,0,113038,'Cagnes-Sur Mer','France','FR','Cagnes-Sur Mer (France)',1,1,0),(13183,0,113039,'Cai Be','Vietnam','VN','Cai Be (Vietnam)',1,1,0),(13184,0,113040,'Cain de Valdeon','Spain','ES','Cain de Valdeon (Spain)',1,1,0),(13185,4704,113041,'Cajamarca','Peru','PE','Cajamarca (Peru)',1,1,0),(13186,0,113042,'Cala Capra','Italy','IT','Cala Capra (Italy)',1,1,0),(13187,0,113043,'Cala Fornells','Spain','ES','Cala Fornells (Spain)',1,1,0),(13188,30627,113044,'Cala Galdana','Spain','ES','Cala Galdana (Spain)',1,1,0),(13189,30642,113045,'Cala Romantica','Spain','ES','Cala Romantica (Spain)',1,1,0),(13190,4720,113046,'Calahorra','Spain','ES','Calahorra (Spain)',1,1,0),(13191,4722,113047,'Calais','France','FR','Calais (France)',1,1,0),(13192,4734,113048,'Calas de Mallorca','Spain','ES','Calas de Mallorca (Spain)',1,1,0),(13193,4736,113049,'Calasetta','Italy','IT','Calasetta (Italy)',1,1,0),(13194,4763,113050,'Caldwell','United States of America','US','Caldwell (United States of America)',1,1,0),(13195,4766,113051,'Caledonia','United States of America','US','Caledonia (United States of America)',1,1,0),(13196,4778,113052,'Calheta','Portugal','PT','Calheta (Portugal)',1,1,0),(13197,4781,113053,'Calibishie','Dominica','DM','Calibishie (Dominica)',1,1,0),(13198,0,113054,'Calne','United Kingdom','UK','Calne (United Kingdom)',1,1,0),(13199,4804,113055,'Caloundra','Australia','AU','Caloundra (Australia)',1,1,0),(13200,4290,113056,'Brunnen','Switzerland','CH','Brunnen (Switzerland)',1,1,0),(13201,0,113057,'Brunswick (Braunschweig)','Germany','DE','Brunswick (Braunschweig) (Germany)',1,1,0),(13202,4300,113058,'Brush','United States of America','US','Brush (United States of America)',1,1,0),(13203,0,113059,'Brusino Arsizio','Switzerland','CH','Brusino Arsizio (Switzerland)',1,1,0),(13204,4304,113060,'Brussels','Belgium','BE','Brussels (Belgium)',1,1,0),(13205,0,113061,'Bubani','Croatia','HR','Bubani (Croatia)',1,1,0),(13206,0,113062,'Bucheon','South Korea','KR','Bucheon (South Korea)',1,1,0),(13207,0,113063,'Buchet','Germany','DE','Buchet (Germany)',1,1,0),(13208,0,113064,'Buchholz (Dithmarschen)','Germany','DE','Buchholz (Dithmarschen) (Germany)',1,1,0),(13209,0,113065,'Buching','Germany','DE','Buching (Germany)',1,1,0),(13210,4341,113066,'Buckhannon','United States of America','US','Buckhannon (United States of America)',1,1,0),(13211,4360,113067,'Budaors','Hungary','HU','Budaors (Hungary)',1,1,0),(13212,4361,113068,'Budapest','Hungary','HU','Budapest (Hungary)',1,1,0),(13213,0,113069,'Budenheim','Germany','DE','Budenheim (Germany)',1,1,0),(13214,0,113070,'Budens - Salema','Portugal','PT','Budens - Salema (Portugal)',1,1,0),(13215,0,113071,'Budingen','Germany','DE','Budingen (Germany)',1,1,0),(13216,4373,113072,'Budoni','Italy','IT','Budoni (Italy)',1,1,0),(13217,0,113073,'Bue','France','FR','Bue (France)',1,1,0),(13218,0,113074,'Buffalo','United States of America','US','Buffalo (United States of America)',1,1,0),(13219,4393,113075,'Buford','United States of America','US','Buford (United States of America)',1,1,0),(13220,0,113076,'Bugok','South Korea','KR','Bugok (South Korea)',1,1,0),(13221,4413,113077,'Bukittinggi','Indonesia','ID','Bukittinggi (Indonesia)',1,1,0),(13222,0,113078,'Bulach','Switzerland','CH','Bulach (Switzerland)',1,1,0),(13223,4422,113079,'Bullfrog','United States of America','US','Bullfrog (United States of America)',1,1,0),(13224,35142,113080,'Bumthang','Bhutan','BT','Bumthang (Bhutan)',1,1,0),(13225,0,113082,'Bunessan','United Kingdom','UK','Bunessan (United Kingdom)',1,1,0),(13226,4445,113083,'Bunratty','Ireland','IE','Bunratty (Ireland)',1,1,0),(13227,4448,113084,'Buochs','Switzerland','CH','Buochs (Switzerland)',1,1,0),(13228,4460,113085,'Burbank','United States of America','US','Burbank (United States of America)',1,1,0),(13229,0,113086,'Burg Stargard','Germany','DE','Burg Stargard (Germany)',1,1,0),(13230,0,113087,'Burgio','Italy','IT','Burgio (Italy)',1,1,0),(13231,0,113088,'Burgstall','Italy','IT','Burgstall (Italy)',1,1,0),(13232,0,113089,'Burgthann','Germany','DE','Burgthann (Germany)',1,1,0),(13233,0,113090,'Burgwedel','Germany','DE','Burgwedel (Germany)',1,1,0),(13234,4495,113091,'Burkesville','United States of America','US','Burkesville (United States of America)',1,1,0),(13235,4497,113092,'Burkeville','United States of America','US','Burkeville (United States of America)',1,1,0),(13236,4500,113093,'Burleigh Heads','Australia','AU','Burleigh Heads (Australia)',1,1,0),(13237,4512,113094,'Burnie','Australia','AU','Burnie (Australia)',1,1,0),(13238,4518,113095,'Burnsville','United States of America','US','Burnsville (United States of America)',1,1,0),(13239,0,113096,'Burriana','Spain','ES','Burriana (Spain)',1,1,0),(13240,0,113097,'Burserberg','Austria','AT','Burserberg (Austria)',1,1,0),(13241,0,113098,'Burton','United Kingdom','UK','Burton (United Kingdom)',1,1,0),(13242,0,113099,'Buschvitz','Germany','DE','Buschvitz (Germany)',1,1,0),(13243,0,113100,'Buxton','United Kingdom','UK','Buxton (United Kingdom)',1,1,0),(13244,0,113101,'Buzancais','France','FR','Buzancais (France)',1,1,0),(13245,4582,113102,'Buzau','Romania','RO','Buzau (Romania)',1,1,0),(13246,0,113103,'Buzet','Croatia','HR','Buzet (Croatia)',1,1,0),(13247,4583,113104,'Buzios','Brazil','BR','Buzios (Brazil)',1,1,0),(13248,0,113105,'Cabeco de Vide','Portugal','PT','Cabeco de Vide (Portugal)',1,1,0),(13249,4615,113106,'Cable Beach','Bahamas','BS','Cable Beach (Bahamas)',1,1,0),(13250,0,113107,'Cabo de Gata','Spain','ES','Cabo de Gata (Spain)',1,1,0),(13251,4643,113108,'Cadelbosco di Sopra','Italy','IT','Cadelbosco di Sopra (Italy)',1,1,0),(13252,4654,113109,'Cadiz','Spain','ES','Cadiz (Spain)',1,1,0),(13253,4667,113110,'Cagayan de Oro','Philippines','PH','Cagayan de Oro (Philippines)',1,1,0),(13254,4676,113111,'Caguas','Puerto Rico','PR','Caguas (Puerto Rico)',1,1,0),(13255,4683,113112,'Cahors','France','FR','Cahors (France)',1,1,0),(13256,4686,113113,'Cahuzac-sur-Vere','France','FR','Cahuzac-sur-Vere (France)',1,1,0),(13257,4687,113114,'Caimari','Spain','ES','Caimari (Spain)',1,1,0),(13258,4693,113115,'Cairns','Australia','AU','Cairns (Australia)',1,1,0),(13259,4701,113116,'Cairo','Egypt','EG','Cairo (Egypt)',1,1,0),(13260,30616,113117,'Cala Bona','Spain','ES','Cala Bona (Spain)',1,1,0),(13261,30617,113118,'Cala Canutells','Spain','ES','Cala Canutells (Spain)',1,1,0),(13262,0,113119,'Cala Ginepro','Italy','IT','Cala Ginepro (Italy)',1,1,0),(13263,0,113120,'Cala Mayor','Spain','ES','Cala Mayor (Spain)',1,1,0),(13264,30643,113121,'Cala San Vicente','Spain','ES','Cala San Vicente (Spain)',1,1,0),(13265,0,113122,'Cala Vadella','Spain','ES','Cala Vadella (Spain)',1,1,0),(13266,0,113123,'Calaceite','Spain','ES','Calaceite (Spain)',1,1,0),(13267,4731,113124,'Cala\'n Blanes','Spain','ES','Cala\'n Blanes (Spain)',1,1,0),(13268,4732,113125,'Calapan','Philippines','PH','Calapan (Philippines)',1,1,0),(13269,4740,113126,'Calatayud','Spain','ES','Calatayud (Spain)',1,1,0),(13270,4746,113127,'Calcinaia','Italy','IT','Calcinaia (Italy)',1,1,0),(13271,0,113129,'Caldas da Rainha','Portugal','PT','Caldas da Rainha (Portugal)',1,1,0),(13272,0,113130,'Caldes de Malavella','Spain','ES','Caldes de Malavella (Spain)',1,1,0),(13273,0,113131,'Caldes De Montbui','Spain','ES','Caldes De Montbui (Spain)',1,1,0),(13274,4762,113132,'Caldogno','Italy','IT','Caldogno (Italy)',1,1,0),(13275,0,113133,'Caldwell','United States of America','US','Caldwell (United States of America)',1,1,0),(13276,4774,113134,'Calexico','United States of America','US','Calexico (United States of America)',1,1,0),(13277,4775,113135,'Calgary','Canada','CA','Calgary (Canada)',1,1,0),(13278,4784,113136,'Calimesa','United States of America','US','Calimesa (United States of America)',1,1,0),(13279,4802,113137,'Calonge','Spain','ES','Calonge (Spain)',1,1,0),(13280,4809,113138,'Caltanissetta','Italy','IT','Caltanissetta (Italy)',1,1,0),(13281,4811,113139,'Calumet','United States of America','US','Calumet (United States of America)',1,1,0),(13282,4827,113140,'Camaiore','Italy','IT','Camaiore (Italy)',1,1,0),(13283,4830,113141,'Camara de Lobos','Portugal','PT','Camara de Lobos (Portugal)',1,1,0),(13284,0,113142,'Camares','France','FR','Camares (France)',1,1,0),(13285,0,113143,'Camber','United Kingdom','UK','Camber (United Kingdom)',1,1,0),(13286,4843,113144,'Cambiago','Italy','IT','Cambiago (Italy)',1,1,0),(13287,0,113145,'Cambridge','United States of America','US','Cambridge (United States of America)',1,1,0),(13288,0,113146,'Camden','United States of America','US','Camden (United States of America)',1,1,0),(13289,4864,113147,'Cameron','United States of America','US','Cameron (United States of America)',1,1,0),(13290,0,113148,'Cameron','United States of America','US','Cameron (United States of America)',1,1,0),(13291,30649,113149,'Camp de Mar','Spain','ES','Camp de Mar (Spain)',1,1,0),(13292,0,113150,'Campagna Lupia','Italy','IT','Campagna Lupia (Italy)',1,1,0),(13293,0,113151,'Campagnano','Italy','IT','Campagnano (Italy)',1,1,0),(13294,4881,113152,'Campagnano di Roma','Italy','IT','Campagnano di Roma (Italy)',1,1,0),(13295,0,113153,'Campbeltown','United Kingdom','UK','Campbeltown (United Kingdom)',1,1,0),(13296,4900,113154,'Campegine','Italy','IT','Campegine (Italy)',1,1,0),(13297,0,113155,'Campo de Baixo','Portugal','PT','Campo de Baixo (Portugal)',1,1,0),(13298,0,113156,'Campo International','Spain','ES','Campo International (Spain)',1,1,0),(13299,4918,113157,'Campodarsego','Italy','IT','Campodarsego (Italy)',1,1,0),(13300,0,113158,'Campofelice','Italy','IT','Campofelice (Italy)',1,1,0),(13301,0,113159,'Campora San Giovanni','Italy','IT','Campora San Giovanni (Italy)',1,1,0),(13302,0,113161,'Canby','United States of America','US','Canby (United States of America)',1,1,0),(13303,4963,113162,'Cancun','Mexico','MX','Cancun (Mexico)',1,1,0),(13304,4969,113163,'Candeleda','Spain','ES','Candeleda (Spain)',1,1,0),(13305,4982,113164,'Canelli','Italy','IT','Canelli (Italy)',1,1,0),(13306,5000,113165,'Canistota','United States of America','US','Canistota (United States of America)',1,1,0),(13307,0,113166,'Cannetto','Italy','IT','Cannetto (Italy)',1,1,0),(13308,0,113167,'Canonica','Italy','IT','Canonica (Italy)',1,1,0),(13309,4054,113168,'Breviandes','France','FR','Breviandes (France)',1,1,0),(13310,0,113169,'Brezova u Karlovych Var','Czech Republic','CZ','Brezova u Karlovych Var (Czech Republic)',1,1,0),(13311,4073,113170,'Bricquebec','France','FR','Bricquebec (France)',1,1,0),(13312,0,113171,'Brides- Les- Bains','France','FR','Brides- Les- Bains (France)',1,1,0),(13313,0,113172,'Bridgeport','United States of America','US','Bridgeport (United States of America)',1,1,0),(13314,4086,113173,'Bridgeview','United States of America','US','Bridgeview (United States of America)',1,1,0),(13315,4117,113174,'Brilon','Germany','DE','Brilon (Germany)',1,1,0),(13316,4124,113175,'Brinkley','United States of America','US','Brinkley (United States of America)',1,1,0),(13317,4127,113176,'Briollay','France','FR','Briollay (France)',1,1,0),(13318,4129,113177,'Brion','Spain','ES','Brion (Spain)',1,1,0),(13319,4148,113178,'British Columbia','Canada','CA','British Columbia (Canada)',1,1,0),(13320,0,113179,'Broby-Brobyv?rk','Denmark','DK','Broby-Brobyv?rk (Denmark)',1,1,0),(13321,0,113180,'Broderstorf','Germany','DE','Broderstorf (Germany)',1,1,0),(13322,0,113181,'Bromley','United Kingdom','UK','Bromley (United Kingdom)',1,1,0),(13323,0,113182,'Bromolla','Sweden','SE','Bromolla (Sweden)',1,1,0),(13324,0,113183,'Bromsgrove','United Kingdom','UK','Bromsgrove (United Kingdom)',1,1,0),(13325,30607,113184,'Brook Park','United States of America','US','Brook Park (United States of America)',1,1,0),(13326,4210,113185,'Brookhaven','United States of America','US','Brookhaven (United States of America)',1,1,0),(13327,0,113186,'Brooklyn','United States of America','US','Brooklyn (United States of America)',1,1,0),(13328,4224,113187,'Brookshire','United States of America','US','Brookshire (United States of America)',1,1,0),(13329,4231,113188,'Broomfield','United States of America','US','Broomfield (United States of America)',1,1,0),(13330,4248,113189,'Brovst','Denmark','DK','Brovst (Denmark)',1,1,0),(13331,0,113190,'Browning','United States of America','US','Browning (United States of America)',1,1,0),(13332,0,113191,'Bruck an der Leitha','Austria','AT','Bruck an der Leitha (Austria)',1,1,0),(13333,0,113192,'Brumath','France','FR','Brumath (France)',1,1,0),(13334,0,113193,'Brunswick','United States of America','US','Brunswick (United States of America)',1,1,0),(13335,0,113194,'Bruyeres-et-Montberault','France','FR','Bruyeres-et-Montberault (France)',1,1,0),(13336,4317,113195,'Bsalim','Lebanon','LB','Bsalim (Lebanon)',1,1,0),(13337,4318,113196,'Bsharri','Lebanon','LB','Bsharri (Lebanon)',1,1,0),(13338,0,113197,'Bubenreuth','Germany','DE','Bubenreuth (Germany)',1,1,0),(13339,0,113198,'Bubesheim','Germany','DE','Bubesheim (Germany)',1,1,0),(13340,0,113199,'Buch','Germany','DE','Buch (Germany)',1,1,0),(13341,4329,113200,'Bucharest','Romania','RO','Bucharest (Romania)',1,1,0),(13342,4335,113201,'Bucine','Italy','IT','Bucine (Italy)',1,1,0),(13343,0,113202,'Buckeye Lake','United States of America','US','Buckeye Lake (United States of America)',1,1,0),(13344,4344,113203,'Buckhorn','Canada','CA','Buckhorn (Canada)',1,1,0),(13345,0,113204,'Bucklin','United States of America','US','Bucklin (United States of America)',1,1,0),(13346,0,113205,'Bucksburn','United Kingdom','UK','Bucksburn (United Kingdom)',1,1,0),(13347,4357,113206,'Bucyrus','United States of America','US','Bucyrus (United States of America)',1,1,0),(13348,4358,113207,'Buda','United States of America','US','Buda (United States of America)',1,1,0),(13349,0,113208,'Budduso','Italy','IT','Budduso (Italy)',1,1,0),(13350,0,113209,'Bude','United Kingdom','UK','Bude (United Kingdom)',1,1,0),(13351,0,113210,'Budweis','Czech Republic','CZ','Budweis (Czech Republic)',1,1,0),(13352,4382,113211,'Buena','United States of America','US','Buena (United States of America)',1,1,0),(13353,4389,113212,'Bueu','Spain','ES','Bueu (Spain)',1,1,0),(13354,4394,113213,'Buga','Colombia','CO','Buga (Colombia)',1,1,0),(13355,0,113214,'Bukowina Tatrzanska','Poland','PL','Bukowina Tatrzanska (Poland)',1,1,0),(13356,0,113215,'Bulago Island','Uganda','UG','Bulago Island (Uganda)',1,1,0),(13357,0,113216,'Bullas','Spain','ES','Bullas (Spain)',1,1,0),(13358,4423,113217,'Bullhead City','United States of America','US','Bullhead City (United States of America)',1,1,0),(13359,0,113218,'Bunsdorf','Germany','DE','Bunsdorf (Germany)',1,1,0),(13360,0,113219,'Bunyonyi See','Uganda','UG','Bunyonyi See (Uganda)',1,1,0),(13361,0,113220,'Burbach','Germany','DE','Burbach (Germany)',1,1,0),(13362,0,113221,'Burela','Spain','ES','Burela (Spain)',1,1,0),(13363,0,113222,'Burford','United Kingdom','UK','Burford (United Kingdom)',1,1,0),(13364,4469,113223,'Burgau','Portugal','PT','Burgau (Portugal)',1,1,0),(13365,0,113224,'Burgen','Germany','DE','Burgen (Germany)',1,1,0),(13366,4476,113225,'Burghaslach','Germany','DE','Burghaslach (Germany)',1,1,0),(13367,4477,113226,'Burghausen','Germany','DE','Burghausen (Germany)',1,1,0),(13368,0,113227,'Burghclere','United Kingdom','UK','Burghclere (United Kingdom)',1,1,0),(13369,0,113228,'Burgh-Haamstede','Netherlands','NL','Burgh-Haamstede (Netherlands)',1,1,0),(13370,4494,113229,'Burkburnett','United States of America','US','Burkburnett (United States of America)',1,1,0),(13371,0,113230,'Burladingen','Germany','DE','Burladingen (Germany)',1,1,0),(13372,0,113231,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(13373,0,113232,'Burnham-on-Sea','United Kingdom','UK','Burnham-on-Sea (United Kingdom)',1,1,0),(13374,0,113233,'Burnhaupt-le-Haut','France','FR','Burnhaupt-le-Haut (France)',1,1,0),(13375,4523,113234,'Burr Ridge','United States of America','US','Burr Ridge (United States of America)',1,1,0),(13376,0,113235,'Burrington','United Kingdom','UK','Burrington (United Kingdom)',1,1,0),(13377,0,113236,'Burrowbridge','United Kingdom','UK','Burrowbridge (United Kingdom)',1,1,0),(13378,0,113237,'Burton upon Trent','United Kingdom','UK','Burton upon Trent (United Kingdom)',1,1,0),(13379,0,113238,'Buxheim','Germany','DE','Buxheim (Germany)',1,1,0),(13380,4575,113239,'Buxtehude','Germany','DE','Buxtehude (Germany)',1,1,0),(13381,0,113240,'Bystrzyca Klodzka','Poland','PL','Bystrzyca Klodzka (Poland)',1,1,0),(13382,4605,113241,'Cabazon','United States of America','US','Cabazon (United States of America)',1,1,0),(13383,4607,113242,'Cabeceiras de Basto','Portugal','PT','Cabeceiras de Basto (Portugal)',1,1,0),(13384,0,113243,'Cabo Regana','Spain','ES','Cabo Regana (Spain)',1,1,0),(13385,4619,113244,'Cabo San Lucas','Mexico','MX','Cabo San Lucas (Mexico)',1,1,0),(13386,0,113245,'Cabrela','Portugal','PT','Cabrela (Portugal)',1,1,0),(13387,4629,113246,'Cabris','France','FR','Cabris (France)',1,1,0),(13388,0,113247,'Cacabelos','Spain','ES','Cacabelos (Spain)',1,1,0),(13389,4641,113248,'Cadaques','Spain','ES','Cadaques (Spain)',1,1,0),(13390,4648,113249,'Cadeo','Italy','IT','Cadeo (Italy)',1,1,0),(13391,0,113250,'Cadiar','Spain','ES','Cadiar (Spain)',1,1,0),(13392,0,113251,'Cadrete','Spain','ES','Cadrete (Spain)',1,1,0),(13393,0,113252,'Caerphilly','United Kingdom','UK','Caerphilly (United Kingdom)',1,1,0),(13394,4685,113253,'Cahul','Moldova','MD','Cahul (Moldova)',1,1,0),(13395,4705,113254,'Cajar','Spain','ES','Cajar (Spain)',1,1,0),(13396,30628,113255,'Cala Gracio','Spain','ES','Cala Gracio (Spain)',1,1,0),(13397,30636,113256,'Cala Millor','Spain','ES','Cala Millor (Spain)',1,1,0),(13398,30638,113257,'Cala Murada','Spain','ES','Cala Murada (Spain)',1,1,0),(13399,0,113258,'Cala Saona','Spain','ES','Cala Saona (Spain)',1,1,0),(13400,30647,113259,'Cala Tarida','Spain','ES','Cala Tarida (Spain)',1,1,0),(13401,0,113260,'Calahonda','Spain','ES','Calahonda (Spain)',1,1,0),(13402,0,113261,'Calceranica','Italy','IT','Calceranica (Italy)',1,1,0),(13403,0,113262,'Caldes d\'Estrac','Spain','ES','Caldes d\'Estrac (Spain)',1,1,0),(13404,4768,113263,'Calenzano','Italy','IT','Calenzano (Italy)',1,1,0),(13405,0,113264,'Calera','United States of America','US','Calera (United States of America)',1,1,0),(13406,4786,113265,'Calistoga','United States of America','US','Calistoga (United States of America)',1,1,0),(13407,0,113266,'Calvinet','France','FR','Calvinet (France)',1,1,0),(13408,4824,113267,'Camacari','Brazil','BR','Camacari (Brazil)',1,1,0),(13409,0,113268,'Camaleno','Spain','ES','Camaleno (Spain)',1,1,0),(13410,0,113269,'Camarena De La Sierra','Spain','ES','Camarena De La Sierra (Spain)',1,1,0),(13411,4847,113270,'Cambremer','France','FR','Cambremer (France)',1,1,0),(13412,4849,113271,'Cambridge','New Zealand','NZ','Cambridge (New Zealand)',1,1,0),(13413,0,113272,'Cammarata','Italy','IT','Cammarata (Italy)',1,1,0),(13414,30651,113273,'Camp Hill','United States of America','US','Camp Hill (United States of America)',1,1,0),(13415,30652,113274,'Camp Point','United States of America','US','Camp Point (United States of America)',1,1,0),(13416,4883,113275,'Campalto','Italy','IT','Campalto (Italy)',1,1,0),(13417,4892,113276,'Campbellsburg','United States of America','US','Campbellsburg (United States of America)',1,1,0),(13418,0,113277,'Campdevanol','Spain','ES','Campdevanol (Spain)',1,1,0),(13419,4902,113278,'Campello sul Clitunno','Italy','IT','Campello sul Clitunno (Italy)',1,1,0),(13420,0,113279,'Burniston','United Kingdom','UK','Burniston (United Kingdom)',1,1,0),(13421,4514,113280,'Burns','United States of America','US','Burns (United States of America)',1,1,0),(13422,0,113281,'Burra','Australia','AU','Burra (Australia)',1,1,0),(13423,0,113282,'Burscheid','Germany','DE','Burscheid (Germany)',1,1,0),(13424,0,113283,'Busta','United Kingdom','UK','Busta (United Kingdom)',1,1,0),(13425,4569,113284,'Butjadingen','Germany','DE','Butjadingen (Germany)',1,1,0),(13426,0,113285,'Butte','United States of America','US','Butte (United States of America)',1,1,0),(13427,4573,113286,'Butuan','Philippines','PH','Butuan (Philippines)',1,1,0),(13428,0,113287,'Buxted','United Kingdom','UK','Buxted (United Kingdom)',1,1,0),(13429,0,113288,'Ca Savio Treporti','Italy','IT','Ca Savio Treporti (Italy)',1,1,0),(13430,0,113289,'Cabezon de la Sal','Spain','ES','Cabezon de la Sal (Spain)',1,1,0),(13431,4613,113290,'Cable','United States of America','US','Cable (United States of America)',1,1,0),(13432,4617,113291,'Cabo Blanco','Spain','ES','Cabo Blanco (Spain)',1,1,0),(13433,0,113292,'Cabo Rojo','Venezuela','VE','Cabo Rojo (Venezuela)',1,1,0),(13434,4623,113293,'Cabras','Italy','IT','Cabras (Italy)',1,1,0),(13435,0,113294,'Cabreuva','Brazil','BR','Cabreuva (Brazil)',1,1,0),(13436,0,113295,'Caceres','Brazil','BR','Caceres (Brazil)',1,1,0),(13437,0,113296,'Cachoeiras','Portugal','PT','Cachoeiras (Portugal)',1,1,0),(13438,0,113297,'Caciulata','Romania','RO','Caciulata (Romania)',1,1,0),(13439,0,113298,'Cadnam','United Kingdom','UK','Cadnam (United Kingdom)',1,1,0),(13440,4679,113299,'Cahersiveen','Ireland','IE','Cahersiveen (Ireland)',1,1,0),(13441,0,113300,'Cala Codolar','Spain','ES','Cala Codolar (Spain)',1,1,0),(13442,30635,113301,'Cala Mesquida','Spain','ES','Cala Mesquida (Spain)',1,1,0),(13443,0,113302,'Cala Santandria','Spain','ES','Cala Santandria (Spain)',1,1,0),(13444,4708,113303,'Calabar','Nigeria','NG','Calabar (Nigeria)',1,1,0),(13445,0,113304,'Calabardina','Spain','ES','Calabardina (Spain)',1,1,0),(13446,4713,113305,'Calabozo','Venezuela','VE','Calabozo (Venezuela)',1,1,0),(13447,4723,113306,'Calalzo di Cadore','Italy','IT','Calalzo di Cadore (Italy)',1,1,0),(13448,4733,113307,'Calarasi','Romania','RO','Calarasi (Romania)',1,1,0),(13449,4741,113308,'Calatorao','Spain','ES','Calatorao (Spain)',1,1,0),(13450,0,113309,'Caldas de Reis','Spain','ES','Caldas de Reis (Spain)',1,1,0),(13451,0,113310,'Calden','Germany','DE','Calden (Germany)',1,1,0),(13452,0,113311,'Calder Bridge','United Kingdom','UK','Calder Bridge (United Kingdom)',1,1,0),(13453,4760,113312,'Caldes de Boi','Spain','ES','Caldes de Boi (Spain)',1,1,0),(13454,4767,113313,'Calella','Spain','ES','Calella (Spain)',1,1,0),(13455,4792,113314,'Callantsoog','Netherlands','NL','Callantsoog (Netherlands)',1,1,0),(13456,4794,113315,'Callao Salvaje','Spain','ES','Callao Salvaje (Spain)',1,1,0),(13457,4797,113316,'Callian','France','FR','Callian (France)',1,1,0),(13458,4798,113317,'Callicoon','United States of America','US','Callicoon (United States of America)',1,1,0),(13459,4812,113318,'Caluso','Italy','IT','Caluso (Italy)',1,1,0),(13460,0,113319,'Calvert City','United States of America','US','Calvert City (United States of America)',1,1,0),(13461,4825,113320,'Camacha','Portugal','PT','Camacha (Portugal)',1,1,0),(13462,0,113321,'Camarinas','Spain','ES','Camarinas (Spain)',1,1,0),(13463,0,113322,'Camberley','United Kingdom','UK','Camberley (United Kingdom)',1,1,0),(13464,0,113323,'Cambo-les-Bains','France','FR','Cambo-les-Bains (France)',1,1,0),(13465,4848,113324,'Cambria','United States of America','US','Cambria (United States of America)',1,1,0),(13466,0,113325,'Cambridge','United Kingdom','UK','Cambridge (United Kingdom)',1,1,0),(13467,4853,113326,'Cambridge','Australia','AU','Cambridge (Australia)',1,1,0),(13468,0,113327,'Camden','United States of America','US','Camden (United States of America)',1,1,0),(13469,4862,113328,'Camerano','Italy','IT','Camerano (Italy)',1,1,0),(13470,4867,113329,'Camiers','France','FR','Camiers (France)',1,1,0),(13471,4871,113330,'Camilla','United States of America','US','Camilla (United States of America)',1,1,0),(13472,0,113331,'Camos','Spain','ES','Camos (Spain)',1,1,0),(13473,4885,113332,'Campanet','Spain','ES','Campanet (Spain)',1,1,0),(13474,4888,113333,'Campbell','United States of America','US','Campbell (United States of America)',1,1,0),(13475,4903,113334,'Camperdown','Australia','AU','Camperdown (Australia)',1,1,0),(13476,4925,113335,'Camposampiero','Italy','IT','Camposampiero (Italy)',1,1,0),(13477,4932,113336,'Campton','United States of America','US','Campton (United States of America)',1,1,0),(13478,4935,113337,'Cams Wharf','Australia','AU','Cams Wharf (Australia)',1,1,0),(13479,30657,113338,'Can Picafort','Spain','ES','Can Picafort (Spain)',1,1,0),(13480,0,113339,'Canale (Piemont)','Italy','IT','Canale (Piemont) (Italy)',1,1,0),(13481,4970,113340,'Candeli','Italy','IT','Candeli (Italy)',1,1,0),(13482,4978,113341,'Candler','United States of America','US','Candler (United States of America)',1,1,0),(13483,4988,113342,'Caneva','Italy','IT','Caneva (Italy)',1,1,0),(13484,5003,113343,'Cannara','Italy','IT','Cannara (Italy)',1,1,0),(13485,0,113344,'Cannes la Bocca','France','FR','Cannes la Bocca (France)',1,1,0),(13486,0,113345,'Canneto Pavese','Italy','IT','Canneto Pavese (Italy)',1,1,0),(13487,5014,113346,'Cannon Beach','United States of America','US','Cannon Beach (United States of America)',1,1,0),(13488,5039,113348,'Cantu','Italy','IT','Cantu (Italy)',1,1,0),(13489,0,113349,'Cap Cana','Dominican Republic','DO','Cap Cana (Dominican Republic)',1,1,0),(13490,0,113350,'Cap Esterel','France','FR','Cap Esterel (France)',1,1,0),(13491,5049,113351,'Cap Malheureux','Mauritius','MU','Cap Malheureux (Mauritius)',1,1,0),(13492,0,113352,'Cape Breton Highlands National Park','Canada','CA','Cape Breton Highlands National Park (Canada)',1,1,0),(13493,0,113353,'Cape Canaveral','United States of America','US','Cape Canaveral (United States of America)',1,1,0),(13494,0,113354,'Cape Girardeau','United States of America','US','Cape Girardeau (United States of America)',1,1,0),(13495,5068,113355,'Cape Panwa','Thailand','TH','Cape Panwa (Thailand)',1,1,0),(13496,0,113356,'Cape Skirring','Senegal','SN','Cape Skirring (Senegal)',1,1,0),(13497,0,113357,'Cape Yamu','Thailand','TH','Cape Yamu (Thailand)',1,1,0),(13498,5072,113358,'Capelas','Portugal','PT','Capelas (Portugal)',1,1,0),(13499,5080,113359,'Capistrano Beach','United States of America','US','Capistrano Beach (United States of America)',1,1,0),(13500,0,113360,'Capo Rizzuto','Italy','IT','Capo Rizzuto (Italy)',1,1,0),(13501,0,113361,'Capo Vaticano','Italy','IT','Capo Vaticano (Italy)',1,1,0),(13502,5103,113362,'Captain Cook','United States of America','US','Captain Cook (United States of America)',1,1,0),(13503,5107,113363,'Capvern','France','FR','Capvern (France)',1,1,0),(13504,5114,113364,'Carabias','Spain','ES','Carabias (Spain)',1,1,0),(13505,0,113365,'Caracal','Romania','RO','Caracal (Romania)',1,1,0),(13506,5124,113366,'Caraquet','Canada','CA','Caraquet (Canada)',1,1,0),(13507,5131,113367,'Carballo','Spain','ES','Carballo (Spain)',1,1,0),(13508,5138,113368,'Carchuna','Spain','ES','Carchuna (Spain)',1,1,0),(13509,5142,113369,'Cardano al Campo','Italy','IT','Cardano al Campo (Italy)',1,1,0),(13510,5143,113370,'Cardedeu','Spain','ES','Cardedeu (Spain)',1,1,0),(13511,0,113371,'Carennac','France','FR','Carennac (France)',1,1,0),(13512,5160,113372,'Carimate','Italy','IT','Carimate (Italy)',1,1,0),(13513,0,113373,'Carita Beach','Indonesia','ID','Carita Beach (Indonesia)',1,1,0),(13514,0,113374,'Carlsbad','United States of America','US','Carlsbad (United States of America)',1,1,0),(13515,0,113375,'Carlton','United States of America','US','Carlton (United States of America)',1,1,0),(13516,0,113376,'Carlyle','Canada','CA','Carlyle (Canada)',1,1,0),(13517,5191,113377,'Carmel','United States of America','US','Carmel (United States of America)',1,1,0),(13518,5196,113378,'Carmona','Spain','ES','Carmona (Spain)',1,1,0),(13519,0,113379,'Carnikava','Latvia','LV','Carnikava (Latvia)',1,1,0),(13520,0,113380,'Carona','Italy','IT','Carona (Italy)',1,1,0),(13521,0,113381,'Caronia','Italy','IT','Caronia (Italy)',1,1,0),(13522,5220,113382,'Carovigno','Italy','IT','Carovigno (Italy)',1,1,0),(13523,5235,113383,'Carratraca','Spain','ES','Carratraca (Spain)',1,1,0),(13524,0,113384,'Carreco','Portugal','PT','Carreco (Portugal)',1,1,0),(13525,0,113385,'Carriacou','Grenada','GD','Carriacou (Grenada)',1,1,0),(13526,0,113386,'Carrollton','United States of America','US','Carrollton (United States of America)',1,1,0),(13527,0,113387,'Bretzfeld','Germany','DE','Bretzfeld (Germany)',1,1,0),(13528,4051,113388,'Breuna','Germany','DE','Breuna (Germany)',1,1,0),(13529,0,113389,'Breze','Croatia','HR','Breze (Croatia)',1,1,0),(13530,0,113390,'Breznice','Czech Republic','CZ','Breznice (Czech Republic)',1,1,0),(13531,4066,113391,'Briancon','France','FR','Briancon (France)',1,1,0),(13532,0,113392,'Bridgend','United Kingdom','UK','Bridgend (United Kingdom)',1,1,0),(13533,4097,113393,'Brielle','Netherlands','NL','Brielle (Netherlands)',1,1,0),(13534,4105,113394,'Brig','Switzerland','CH','Brig (Switzerland)',1,1,0),(13535,0,113395,'Brighton','Canada','CA','Brighton (Canada)',1,1,0),(13536,0,113396,'Brikell','United States of America','US','Brikell (United States of America)',1,1,0),(13537,4130,113397,'Brione','Switzerland','CH','Brione (Switzerland)',1,1,0),(13538,0,113398,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(13539,0,113399,'Brixen (Bressanone)','Italy','IT','Brixen (Bressanone) (Italy)',1,1,0),(13540,0,113400,'Bro Beach','Denmark','DK','Bro Beach (Denmark)',1,1,0),(13541,0,113401,'Broadmayne','United Kingdom','UK','Broadmayne (United Kingdom)',1,1,0),(13542,0,113402,'Brockel','Germany','DE','Brockel (Germany)',1,1,0),(13543,0,113403,'Broekhuizenvorst','Netherlands','NL','Broekhuizenvorst (Netherlands)',1,1,0),(13544,0,113404,'Brojce','Poland','PL','Brojce (Poland)',1,1,0),(13545,4186,113405,'Brolo','Italy','IT','Brolo (Italy)',1,1,0),(13546,0,113406,'Bromborough','United Kingdom','UK','Bromborough (United Kingdom)',1,1,0),(13547,0,113407,'Brookings','United States of America','US','Brookings (United States of America)',1,1,0),(13548,0,113408,'Brooklyn','United States of America','US','Brooklyn (United States of America)',1,1,0),(13549,0,113409,'Brooklyn Center','United States of America','US','Brooklyn Center (United States of America)',1,1,0),(13550,4222,113410,'Brooks','Canada','CA','Brooks (Canada)',1,1,0),(13551,0,113411,'Brooksville','United States of America','US','Brooksville (United States of America)',1,1,0),(13552,4238,113412,'Brotas','Brazil','BR','Brotas (Brazil)',1,1,0),(13553,4239,113413,'Broto','Spain','ES','Broto (Spain)',1,1,0),(13554,4249,113414,'Brownfield','United States of America','US','Brownfield (United States of America)',1,1,0),(13555,4260,113415,'Bruay-La-Buissiere','France','FR','Bruay-La-Buissiere (France)',1,1,0),(13556,4264,113416,'Bruchsal','Germany','DE','Bruchsal (Germany)',1,1,0),(13557,0,113417,'Bruck am Ziller','Austria','AT','Bruck am Ziller (Austria)',1,1,0),(13558,0,113418,'Bruckless','Ireland','IE','Bruckless (Ireland)',1,1,0),(13559,0,113419,'Brulisau','Switzerland','CH','Brulisau (Switzerland)',1,1,0),(13560,0,113420,'Bruneck','Italy','IT','Bruneck (Italy)',1,1,0),(13561,0,113421,'Brunssum','Netherlands','NL','Brunssum (Netherlands)',1,1,0),(13562,0,113422,'Brunstatt','France','FR','Brunstatt (France)',1,1,0),(13563,0,113423,'Brunswick','United States of America','US','Brunswick (United States of America)',1,1,0),(13564,0,113424,'Bruntal','Czech Republic','CZ','Bruntal (Czech Republic)',1,1,0),(13565,4302,113425,'Brusque','Brazil','BR','Brusque (Brazil)',1,1,0),(13566,4307,113426,'Bruz','France','FR','Bruz (France)',1,1,0),(13567,4311,113427,'Bryce Canyon','United States of America','US','Bryce Canyon (United States of America)',1,1,0),(13568,4313,113428,'Bryne','Norway','NO','Bryne (Norway)',1,1,0),(13569,4321,113429,'Bubion','Spain','ES','Bubion (Spain)',1,1,0),(13570,4322,113430,'Buc','France','FR','Buc (France)',1,1,0),(13571,0,113431,'Buch bei Jenbach','Austria','AT','Buch bei Jenbach (Austria)',1,1,0),(13572,0,113432,'Bucha','Germany','DE','Bucha (Germany)',1,1,0),(13573,0,113433,'Buchlovice','Czech Republic','CZ','Buchlovice (Czech Republic)',1,1,0),(13574,4353,113434,'Buckow','Germany','DE','Buckow (Germany)',1,1,0),(13575,4359,113435,'Budakeszi','Hungary','HU','Budakeszi (Hungary)',1,1,0),(13576,4383,113436,'Buenaventura','Colombia','CO','Buenaventura (Colombia)',1,1,0),(13577,0,113437,'Bufali','Spain','ES','Bufali (Spain)',1,1,0),(13578,0,113438,'Buffon','France','FR','Buffon (France)',1,1,0),(13579,4399,113439,'Buhl','Germany','DE','Buhl (Germany)',1,1,0),(13580,0,113440,'Buis - les - Baronnies','France','FR','Buis - les - Baronnies (France)',1,1,0),(13581,4405,113441,'Bujumbura','Burundi','BI','Bujumbura (Burundi)',1,1,0),(13582,4410,113442,'Bukhara','Uzbekistan','UZ','Bukhara (Uzbekistan)',1,1,0),(13583,0,113443,'Bukit Mertajam','Malaysia','MY','Bukit Mertajam (Malaysia)',1,1,0),(13584,0,113444,'Bulada','Croatia','HR','Bulada (Croatia)',1,1,0),(13585,4430,113445,'Buncrana','Ireland','IE','Buncrana (Ireland)',1,1,0),(13586,4436,113446,'Bundoran','Ireland','IE','Bundoran (Ireland)',1,1,0),(13587,0,113447,'Bunol','Spain','ES','Bunol (Spain)',1,1,0),(13588,0,113448,'Burbank','United States of America','US','Burbank (United States of America)',1,1,0),(13589,4462,113449,'Burchen','Switzerland','CH','Burchen (Switzerland)',1,1,0),(13590,0,113450,'Bure','Belgium','BE','Bure (Belgium)',1,1,0),(13591,0,113451,'Buren','Germany','DE','Buren (Germany)',1,1,0),(13592,0,113452,'Burgauberg-Neudauberg','Austria','AT','Burgauberg-Neudauberg (Austria)',1,1,0),(13593,0,113453,'Burgomillodo','Spain','ES','Burgomillodo (Spain)',1,1,0);
INSERT INTO `tb_master_geo_city_new` VALUES (13594,0,113454,'Burgsinn','Germany','DE','Burgsinn (Germany)',1,1,0),(13595,0,113455,'Burgund','France','FR','Burgund (France)',1,1,0),(13596,0,113456,'Burhave','Germany','DE','Burhave (Germany)',1,1,0),(13597,0,113457,'Buriram','Thailand','TH','Buriram (Thailand)',1,1,0),(13598,4501,113458,'Burleson','United States of America','US','Burleson (United States of America)',1,1,0),(13599,0,113459,'Burley','United Kingdom','UK','Burley (United Kingdom)',1,1,0),(13600,0,113460,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(13601,0,113461,'Burnham Market','United Kingdom','UK','Burnham Market (United Kingdom)',1,1,0),(13602,0,113462,'Burry Port','United Kingdom','UK','Burry Port (United Kingdom)',1,1,0),(13603,4530,113463,'Burstadt','Germany','DE','Burstadt (Germany)',1,1,0),(13604,4542,113464,'Buscate','Italy','IT','Buscate (Italy)',1,1,0),(13605,4543,113465,'Buseto Palizzolo','Italy','IT','Buseto Palizzolo (Italy)',1,1,0),(13606,0,113466,'Busnes','France','FR','Busnes (France)',1,1,0),(13607,4551,113467,'Bussang','France','FR','Bussang (France)',1,1,0),(13608,4553,113468,'Busset','France','FR','Busset (France)',1,1,0),(13609,4555,113469,'Bussigny','Switzerland','CH','Bussigny (Switzerland)',1,1,0),(13610,4557,113470,'Bussolengo','Italy','IT','Bussolengo (Italy)',1,1,0),(13611,4568,113471,'Butera','Italy','IT','Butera (Italy)',1,1,0),(13612,0,113472,'Butgenbach','Belgium','BE','Butgenbach (Belgium)',1,1,0),(13613,0,113473,'Buti','Italy','IT','Buti (Italy)',1,1,0),(13614,4572,113474,'Buttonwillow','United States of America','US','Buttonwillow (United States of America)',1,1,0),(13615,0,113475,'Bwejuu','Tanzania','TZ','Bwejuu (Tanzania)',1,1,0),(13616,0,113476,'Byram Township','United States of America','US','Byram Township (United States of America)',1,1,0),(13617,4595,113477,'Byxelkrok','Sweden','SE','Byxelkrok (Sweden)',1,1,0),(13618,0,113478,'Ca\' Noghera','Italy','IT','Ca\' Noghera (Italy)',1,1,0),(13619,0,113479,'Caapucu','Paraguay','PY','Caapucu (Paraguay)',1,1,0),(13620,4604,113480,'Cabarita Beach','Australia','AU','Cabarita Beach (Australia)',1,1,0),(13621,4608,113481,'Cabestany','France','FR','Cabestany (France)',1,1,0),(13622,0,113482,'Cabins','United States of America','US','Cabins (United States of America)',1,1,0),(13623,0,113483,'Caboolture','Australia','AU','Caboolture (Australia)',1,1,0),(13624,4621,113484,'Cabot','United States of America','US','Cabot (United States of America)',1,1,0),(13625,4628,113485,'Cabrils','Spain','ES','Cabrils (Spain)',1,1,0),(13626,4637,113486,'Cache Creek','Canada','CA','Cache Creek (Canada)',1,1,0),(13627,4638,113487,'Cachi','Argentina','AR','Cachi (Argentina)',1,1,0),(13628,0,113488,'Cachoeiras de Macacu','Brazil','BR','Cachoeiras de Macacu (Brazil)',1,1,0),(13629,4642,113489,'Caddo Valley','United States of America','US','Caddo Valley (United States of America)',1,1,0),(13630,0,113490,'Cadrezzate','Italy','IT','Cadrezzate (Italy)',1,1,0),(13631,4661,113491,'Caen','France','FR','Caen (France)',1,1,0),(13632,4672,113492,'Cagnano Varano','Italy','IT','Cagnano Varano (Italy)',1,1,0),(13633,0,113493,'Cahirciveen','Ireland','IE','Cahirciveen (Ireland)',1,1,0),(13634,0,113494,'Caiano','Italy','IT','Caiano (Italy)',1,1,0),(13635,0,113495,'Cainta','Philippines','PH','Cainta (Philippines)',1,1,0),(13636,4702,113496,'Caissargues','France','FR','Caissargues (France)',1,1,0),(13637,4706,113497,'Cajarc','France','FR','Cajarc (France)',1,1,0),(13638,30615,113498,'Cala Blava','Spain','ES','Cala Blava (Spain)',1,1,0),(13639,30621,113499,'Cala d\'Or','Spain','ES','Cala d\'Or (Spain)',1,1,0),(13640,30626,113500,'Cala Figuera','Spain','ES','Cala Figuera (Spain)',1,1,0),(13641,0,113501,'Caprioli','Italy','IT','Caprioli (Italy)',1,1,0),(13642,0,113502,'Capriolo','Italy','IT','Capriolo (Italy)',1,1,0),(13643,5106,113503,'Caputh','Germany','DE','Caputh (Germany)',1,1,0),(13644,5115,113504,'Caracas','Venezuela','VE','Caracas (Venezuela)',1,1,0),(13645,0,113505,'Carana Beach','Seychelles','SC','Carana Beach (Seychelles)',1,1,0),(13646,5125,113506,'Carara','Costa Rica','CR','Carara (Costa Rica)',1,1,0),(13647,0,113507,'Carcans-Maubuisson','France','FR','Carcans-Maubuisson (France)',1,1,0),(13648,0,113508,'Carcheles','Spain','ES','Carcheles (Spain)',1,1,0),(13649,0,113509,'Cardiff','United Kingdom','UK','Cardiff (United Kingdom)',1,1,0),(13650,5162,113510,'Carinena','Spain','ES','Carinena (Spain)',1,1,0),(13651,0,113511,'Carino','Spain','ES','Carino (Spain)',1,1,0),(13652,0,113512,'Caripe','Venezuela','VE','Caripe (Venezuela)',1,1,0),(13653,0,113513,'Carlentini','Italy','IT','Carlentini (Italy)',1,1,0),(13654,5172,113514,'Carlingford','Ireland','IE','Carlingford (Ireland)',1,1,0),(13655,5173,113515,'Carlinville','United States of America','US','Carlinville (United States of America)',1,1,0),(13656,5177,113516,'Carloforte','Italy','IT','Carloforte (Italy)',1,1,0),(13657,5183,113517,'Carlton','Australia','AU','Carlton (Australia)',1,1,0),(13658,0,113518,'Carmen De Areco','Argentina','AR','Carmen De Areco (Argentina)',1,1,0),(13659,0,113519,'Carnago','Italy','IT','Carnago (Italy)',1,1,0),(13660,0,113520,'Carol Stream','United States of America','US','Carol Stream (United States of America)',1,1,0),(13661,5215,113521,'Carolina','Puerto Rico','PR','Carolina (Puerto Rico)',1,1,0),(13662,5217,113522,'Caroline Springs','Australia','AU','Caroline Springs (Australia)',1,1,0),(13663,0,113523,'Carpugnino','Italy','IT','Carpugnino (Italy)',1,1,0),(13664,0,113524,'Carrazeda de Ansiaes','Portugal','PT','Carrazeda de Ansiaes (Portugal)',1,1,0),(13665,5244,113525,'Carrieres-sous-Poissy','France','FR','Carrieres-sous-Poissy (France)',1,1,0),(13666,0,113526,'Carrollton','United States of America','US','Carrollton (United States of America)',1,1,0),(13667,5271,113527,'Cartersville','United States of America','US','Cartersville (United States of America)',1,1,0),(13668,5273,113528,'Carthage','Tunisia','TN','Carthage (Tunisia)',1,1,0),(13669,0,113529,'Carthage','United States of America','US','Carthage (United States of America)',1,1,0),(13670,5280,113530,'Cary','United States of America','US','Cary (United States of America)',1,1,0),(13671,0,113531,'C\'as Catala','Spain','ES','C\'as Catala (Spain)',1,1,0),(13672,0,113532,'Casalino','Italy','IT','Casalino (Italy)',1,1,0),(13673,5298,113533,'Casarabonela','Spain','ES','Casarabonela (Spain)',1,1,0),(13674,5302,113534,'Casarza Ligure','Italy','IT','Casarza Ligure (Italy)',1,1,0),(13675,0,113535,'Casez di Sanzeno','Italy','IT','Casez di Sanzeno (Italy)',1,1,0),(13676,0,113536,'Cashel Bay','Ireland','IE','Cashel Bay (Ireland)',1,1,0),(13677,0,113537,'Casier','Italy','IT','Casier (Italy)',1,1,0),(13678,5337,113538,'Cassano allo Ionio','Italy','IT','Cassano allo Ionio (Italy)',1,1,0),(13679,0,113539,'Castagneto','Italy','IT','Castagneto (Italy)',1,1,0),(13680,5361,113540,'Castelbuono','Italy','IT','Castelbuono (Italy)',1,1,0),(13681,5362,113541,'Castelculier','France','FR','Castelculier (France)',1,1,0),(13682,0,113542,'Castelfranco Veneto','Italy','IT','Castelfranco Veneto (Italy)',1,1,0),(13683,5370,113543,'Castellaneta Marina','Italy','IT','Castellaneta Marina (Italy)',1,1,0),(13684,0,113544,'Castellanza','Italy','IT','Castellanza (Italy)',1,1,0),(13685,0,113545,'Castelletto Sopra Ticino','Italy','IT','Castelletto Sopra Ticino (Italy)',1,1,0),(13686,0,113546,'Castello d\'Agogna','Italy','IT','Castello d\'Agogna (Italy)',1,1,0),(13687,5382,113547,'Castellon','Spain','ES','Castellon (Spain)',1,1,0),(13688,5393,113548,'Castelo Branco','Portugal','PT','Castelo Branco (Portugal)',1,1,0),(13689,5394,113549,'Castelraimondo','Italy','IT','Castelraimondo (Italy)',1,1,0),(13690,0,113550,'Castiglion Fiorentino','Italy','IT','Castiglion Fiorentino (Italy)',1,1,0),(13691,5406,113551,'Castiglioncello','Italy','IT','Castiglioncello (Italy)',1,1,0),(13692,0,113552,'Castiglione di Garfagana','Italy','IT','Castiglione di Garfagana (Italy)',1,1,0),(13693,0,113553,'Castiglione di Sicilia','Italy','IT','Castiglione di Sicilia (Italy)',1,1,0),(13694,5409,113554,'Castilleja de la Cuesta','Spain','ES','Castilleja de la Cuesta (Spain)',1,1,0),(13695,0,113555,'Castilleja de Talhara','Spain','ES','Castilleja de Talhara (Spain)',1,1,0),(13696,0,113556,'Castillon-la-Bataille','France','FR','Castillon-la-Bataille (France)',1,1,0),(13697,5412,113557,'Castine','United States of America','US','Castine (United States of America)',1,1,0),(13698,0,113558,'Castleisland','Ireland','IE','Castleisland (Ireland)',1,1,0),(13699,0,113559,'Castro de Ouro','Spain','ES','Castro de Ouro (Spain)',1,1,0),(13700,0,113560,'Castropignano','Italy','IT','Castropignano (Italy)',1,1,0),(13701,0,113561,'Castropol','Spain','ES','Castropol (Spain)',1,1,0),(13702,0,113562,'Cat Island','Bahamas','BS','Cat Island (Bahamas)',1,1,0),(13703,0,113563,'Catanduva','Brazil','BR','Catanduva (Brazil)',1,1,0),(13704,0,113564,'Catanzaro','Italy','IT','Catanzaro (Italy)',1,1,0),(13705,0,113565,'Catterick','United Kingdom','UK','Catterick (United Kingdom)',1,1,0),(13706,5486,113567,'Cavaillon','France','FR','Cavaillon (France)',1,1,0),(13707,5497,113568,'Cavedago','Italy','IT','Cavedago (Italy)',1,1,0),(13708,5503,113569,'Cavendish','United States of America','US','Cavendish (United States of America)',1,1,0),(13709,0,113570,'Cavertitz','Germany','DE','Cavertitz (Germany)',1,1,0),(13710,0,113571,'Caves Beach','Australia','AU','Caves Beach (Australia)',1,1,0),(13711,5506,113572,'Caviahue','Argentina','AR','Caviahue (Argentina)',1,1,0),(13712,5507,113573,'Cavite','Philippines','PH','Cavite (Philippines)',1,1,0),(13713,5509,113574,'Cavriglia','Italy','IT','Cavriglia (Italy)',1,1,0),(13714,5523,113575,'Cayo Coco','Cuba','CU','Cayo Coco (Cuba)',1,1,0),(13715,5548,113576,'Cedarburg','United States of America','US','Cedarburg (United States of America)',1,1,0),(13716,5573,113577,'Cellarengo','Italy','IT','Cellarengo (Italy)',1,1,0),(13717,5575,113578,'Celle','Germany','DE','Celle (Germany)',1,1,0),(13718,0,113579,'Celle Sul Rigo','Italy','IT','Celle Sul Rigo (Italy)',1,1,0),(13719,5582,113580,'Cenes de la Vega','Spain','ES','Cenes de la Vega (Spain)',1,1,0),(13720,0,113581,'Center Ossipee','United States of America','US','Center Ossipee (United States of America)',1,1,0),(13721,30702,113582,'Center Valley','United States of America','US','Center Valley (United States of America)',1,1,0),(13722,0,113583,'Central Point','United States of America','US','Central Point (United States of America)',1,1,0),(13723,5604,113584,'Centralia','United States of America','US','Centralia (United States of America)',1,1,0),(13724,0,113585,'Cercal do Alentejo','Portugal','PT','Cercal do Alentejo (Portugal)',1,1,0),(13725,0,113586,'Cerdanyola Del Valles','Spain','ES','Cerdanyola Del Valles (Spain)',1,1,0),(13726,5627,113587,'Cerklje na Gorenjskem','Slovenia','SI','Cerklje na Gorenjskem (Slovenia)',1,1,0),(13727,5632,113588,'Cernusco sul Naviglio','Italy','IT','Cernusco sul Naviglio (Italy)',1,1,0),(13728,0,113589,'Cerro Chapelco','Argentina','AR','Cerro Chapelco (Argentina)',1,1,0),(13729,5650,113590,'Cerveteri','Italy','IT','Cerveteri (Italy)',1,1,0),(13730,0,113591,'Cesme-Alacati','Turkey','TR','Cesme-Alacati (Turkey)',1,1,0),(13731,0,113592,'Cesme-Ilica','Turkey','TR','Cesme-Ilica (Turkey)',1,1,0),(13732,5663,113593,'Cesson-Sevigne','France','FR','Cesson-Sevigne (France)',1,1,0),(13733,0,113594,'Chabeuil','France','FR','Chabeuil (France)',1,1,0),(13734,0,113595,'Chale Island','Kenya','KE','Chale Island (Kenya)',1,1,0),(13735,0,113596,'Chalfont Saint Giles','United Kingdom','UK','Chalfont Saint Giles (United Kingdom)',1,1,0),(13736,0,113597,'Chalki','Greece','GR','Chalki (Greece)',1,1,0),(13737,0,113598,'Cham','Switzerland','CH','Cham (Switzerland)',1,1,0),(13738,5724,113599,'Chambersburg','United States of America','US','Chambersburg (United States of America)',1,1,0),(13739,0,113600,'Chambonas','France','FR','Chambonas (France)',1,1,0),(13740,0,113601,'Chambon-sur-Dolore','France','FR','Chambon-sur-Dolore (France)',1,1,0),(13741,0,113602,'Chamela','Mexico','MX','Chamela (Mexico)',1,1,0),(13742,5735,113603,'Chamonix','France','FR','Chamonix (France)',1,1,0),(13743,0,113604,'Champagnac-le-Vieux','France','FR','Champagnac-le-Vieux (France)',1,1,0),(13744,0,113605,'Cascade Locks','United States of America','US','Cascade Locks (United States of America)',1,1,0),(13745,5318,113606,'Caseyville','United States of America','US','Caseyville (United States of America)',1,1,0),(13746,5320,113607,'Cashiers','United States of America','US','Cashiers (United States of America)',1,1,0),(13747,0,113608,'Casole d\'Elsa','Italy','IT','Casole d\'Elsa (Italy)',1,1,0),(13748,0,113609,'Caspe','Spain','ES','Caspe (Spain)',1,1,0),(13749,5333,113610,'Casper','United States of America','US','Casper (United States of America)',1,1,0),(13750,0,113611,'Cassa de la Selva','Spain','ES','Cassa de la Selva (Spain)',1,1,0),(13751,0,113612,'Castagneto Po','Italy','IT','Castagneto Po (Italy)',1,1,0),(13752,5351,113613,'Castagnito','Italy','IT','Castagnito (Italy)',1,1,0),(13753,30671,113614,'Castel d\'Azzano','Italy','IT','Castel d\'Azzano (Italy)',1,1,0),(13754,30674,113615,'Castel di Sangro','Italy','IT','Castel di Sangro (Italy)',1,1,0),(13755,5363,113616,'Casteldaccia','Italy','IT','Casteldaccia (Italy)',1,1,0),(13756,0,113617,'Castell de Castells','Spain','ES','Castell de Castells (Spain)',1,1,0),(13757,5372,113618,'Castellaro','Italy','IT','Castellaro (Italy)',1,1,0),(13758,0,113619,'Castell\'Azzara','Italy','IT','Castell\'Azzara (Italy)',1,1,0),(13759,5383,113620,'Castellote','Spain','ES','Castellote (Spain)',1,1,0),(13760,5391,113621,'Castelnovo di Sotto','Italy','IT','Castelnovo di Sotto (Italy)',1,1,0),(13761,5392,113622,'Castelnuovo Berardenga','Italy','IT','Castelnuovo Berardenga (Italy)',1,1,0),(13762,5397,113623,'Castelsardo','Italy','IT','Castelsardo (Italy)',1,1,0),(13763,5401,113624,'Castelvetro di Modena','Italy','IT','Castelvetro di Modena (Italy)',1,1,0),(13764,5402,113625,'Castenaso','Italy','IT','Castenaso (Italy)',1,1,0),(13765,0,113626,'Castiglione dei Pepoli','Italy','IT','Castiglione dei Pepoli (Italy)',1,1,0),(13766,0,113627,'Castiglione Tinella','Italy','IT','Castiglione Tinella (Italy)',1,1,0),(13767,0,113628,'Castle Combe','United Kingdom','UK','Castle Combe (United Kingdom)',1,1,0),(13768,5419,113629,'Castlebar','Ireland','IE','Castlebar (Ireland)',1,1,0),(13769,5421,113630,'Castlebridge','Ireland','IE','Castlebridge (Ireland)',1,1,0),(13770,0,113631,'Castril','Spain','ES','Castril (Spain)',1,1,0),(13771,5440,113632,'Castrillon','Spain','ES','Castrillon (Spain)',1,1,0),(13772,0,113633,'Castro','Chile','CL','Castro (Chile)',1,1,0),(13773,0,113634,'Castro','Italy','IT','Castro (Italy)',1,1,0),(13774,0,113635,'Castro Marina','Italy','IT','Castro Marina (Italy)',1,1,0),(13775,0,113636,'Catrnja','Croatia','HR','Catrnja (Croatia)',1,1,0),(13776,5468,113637,'Catskill','United States of America','US','Catskill (United States of America)',1,1,0),(13777,5474,113638,'Caudebec-en-Caux','France','FR','Caudebec-en-Caux (France)',1,1,0),(13778,0,113639,'Caulonia Marina','Italy','IT','Caulonia Marina (Italy)',1,1,0),(13779,0,113640,'Causse-et-Diege','France','FR','Causse-et-Diege (France)',1,1,0),(13780,5490,113641,'Cavalese','Italy','IT','Cavalese (Italy)',1,1,0),(13781,5491,113642,'Cavallino','Italy','IT','Cavallino (Italy)',1,1,0),(13782,0,113643,'Cavle','Croatia','HR','Cavle (Croatia)',1,1,0),(13783,5508,113644,'Cavoli','Italy','IT','Cavoli (Italy)',1,1,0),(13784,0,113645,'Cavusin','Turkey','TR','Cavusin (Turkey)',1,1,0),(13785,5515,113646,'Cayce','United States of America','US','Cayce (United States of America)',1,1,0),(13786,5517,113647,'Cayeux-sur-Mer','France','FR','Cayeux-sur-Mer (France)',1,1,0),(13787,0,113648,'Cayo Largo','Cuba','CU','Cayo Largo (Cuba)',1,1,0),(13788,5525,113649,'Cayucos','United States of America','US','Cayucos (United States of America)',1,1,0),(13789,5535,113650,'Ceaux','France','FR','Ceaux (France)',1,1,0),(13790,0,113651,'Cebu Island','Philippines','PH','Cebu Island (Philippines)',1,1,0),(13791,0,113652,'Cedanj','Croatia','HR','Cedanj (Croatia)',1,1,0),(13792,0,113653,'Cedar Key','United States of America','US','Cedar Key (United States of America)',1,1,0),(13793,0,113654,'Cedar Park','United States of America','US','Cedar Park (United States of America)',1,1,0),(13794,5560,113655,'Ceillac','France','FR','Ceillac (France)',1,1,0),(13795,5562,113656,'Celano','Italy','IT','Celano (Italy)',1,1,0),(13796,5566,113657,'Celerina','Switzerland','CH','Celerina (Switzerland)',1,1,0),(13797,0,113658,'Celles-sur-Durolle','France','FR','Celles-sur-Durolle (France)',1,1,0),(13798,0,113659,'Celles-sur-Plaine','France','FR','Celles-sur-Plaine (France)',1,1,0),(13799,5581,113660,'Cenerente','Italy','IT','Cenerente (Italy)',1,1,0),(13800,0,113661,'Central City','United States of America','US','Central City (United States of America)',1,1,0),(13801,0,113662,'Central City','United States of America','US','Central City (United States of America)',1,1,0),(13802,0,113663,'Central Valley','United States of America','US','Central Valley (United States of America)',1,1,0),(13803,0,113664,'Ceprano','Italy','IT','Ceprano (Italy)',1,1,0),(13804,0,113665,'Cercedilla','Spain','ES','Cercedilla (Spain)',1,1,0),(13805,0,113666,'Cerkno','Slovenia','SI','Cerkno (Slovenia)',1,1,0),(13806,0,113667,'Cerna v. Posumavi','Czech Republic','CZ','Cerna v. Posumavi (Czech Republic)',1,1,0),(13807,0,113668,'Cernay','France','FR','Cernay (France)',1,1,0),(13808,5643,113669,'Certaldo','Italy','IT','Certaldo (Italy)',1,1,0),(13809,5651,113670,'Cervia','Italy','IT','Cervia (Italy)',1,1,0),(13810,0,113671,'Cesiomaggiore','Italy','IT','Cesiomaggiore (Italy)',1,1,0),(13811,5661,113672,'Cessnock','Australia','AU','Cessnock (Australia)',1,1,0),(13812,0,113673,'Chace','France','FR','Chace (France)',1,1,0),(13813,0,113674,'Chadderton','United Kingdom','UK','Chadderton (United Kingdom)',1,1,0),(13814,0,113676,'Chalkhill','United States of America','US','Chalkhill (United States of America)',1,1,0),(13815,5703,113677,'Chalkidona','Greece','GR','Chalkidona (Greece)',1,1,0),(13816,5706,113678,'Challain-la-Potherie','France','FR','Challain-la-Potherie (France)',1,1,0),(13817,5708,113679,'Challes-les-Eaux','France','FR','Challes-les-Eaux (France)',1,1,0),(13818,0,113680,'Chambord','Canada','CA','Chambord (Canada)',1,1,0),(13819,5731,113681,'Chambray-les-Tours','France','FR','Chambray-les-Tours (France)',1,1,0),(13820,0,113682,'Chang Lang Beach','Thailand','TH','Chang Lang Beach (Thailand)',1,1,0),(13821,5782,113684,'Changshu','China','CN','Changshu (China)',1,1,0),(13822,0,113685,'Channahon','United States of America','US','Channahon (United States of America)',1,1,0),(13823,5797,113686,'Chanteloup-en-Brie','France','FR','Chanteloup-en-Brie (France)',1,1,0),(13824,5807,113687,'Chaohu','China','CN','Chaohu (China)',1,1,0),(13825,0,113688,'Chapel Brampton','United Kingdom','UK','Chapel Brampton (United Kingdom)',1,1,0),(13826,5829,113689,'Chardonne','Switzerland','CH','Chardonne (Switzerland)',1,1,0),(13827,5859,113690,'Charlotte','United States of America','US','Charlotte (United States of America)',1,1,0),(13828,5868,113691,'Charmes','France','FR','Charmes (France)',1,1,0),(13829,0,113692,'Chassey-le-Camp','France','FR','Chassey-le-Camp (France)',1,1,0),(13830,5889,113693,'Chatan','Japan','JP','Chatan (Japan)',1,1,0),(13831,5895,113694,'Chateaubourg','France','FR','Chateaubourg (France)',1,1,0),(13832,0,113695,'Chateauneuf-du-Pape','France','FR','Chateauneuf-du-Pape (France)',1,1,0),(13833,0,113696,'Chateauneuf-la-Foret','France','FR','Chateauneuf-la-Foret (France)',1,1,0),(13834,0,113697,'Chatillon-en-Diois','France','FR','Chatillon-en-Diois (France)',1,1,0),(13835,5936,113698,'Chattanooga','United States of America','US','Chattanooga (United States of America)',1,1,0),(13836,0,113699,'Chauny','France','FR','Chauny (France)',1,1,0),(13837,0,113700,'Chaux-Neuve','France','FR','Chaux-Neuve (France)',1,1,0),(13838,0,113701,'Chauzon','France','FR','Chauzon (France)',1,1,0),(13839,0,113702,'Chavagnac','France','FR','Chavagnac (France)',1,1,0),(13840,5958,113703,'Chaville','France','FR','Chaville (France)',1,1,0),(13841,0,113704,'Chayofa','Spain','ES','Chayofa (Spain)',1,1,0),(13842,5973,113705,'Cheia','Romania','RO','Cheia (Romania)',1,1,0),(13843,0,113706,'Chelmsford','United Kingdom','UK','Chelmsford (United Kingdom)',1,1,0),(13844,0,113707,'Chelmza','Poland','PL','Chelmza (Poland)',1,1,0),(13845,0,113708,'Chenas','France','FR','Chenas (France)',1,1,0),(13846,0,113709,'Cheongju','South Korea','KR','Cheongju (South Korea)',1,1,0),(13847,0,113710,'Chernomorets','Bulgaria','BG','Chernomorets (Bulgaria)',1,1,0),(13848,0,113711,'Cherry Valley','United States of America','US','Cherry Valley (United States of America)',1,1,0),(13849,4805,113712,'Caloura','Portugal','PT','Caloura (Portugal)',1,1,0),(13850,4806,113713,'Calpe','Spain','ES','Calpe (Spain)',1,1,0),(13851,0,113714,'Calumet Park','United States of America','US','Calumet Park (United States of America)',1,1,0),(13852,0,113715,'Calvagese dell Riviera','Italy','IT','Calvagese dell Riviera (Italy)',1,1,0),(13853,4818,113716,'Calvi','France','FR','Calvi (France)',1,1,0),(13854,0,113717,'Calviac','France','FR','Calviac (France)',1,1,0),(13855,0,113718,'Calvinia','South Africa','ZA','Calvinia (South Africa)',1,1,0),(13856,4826,113719,'Camaguey','Cuba','CU','Camaguey (Cuba)',1,1,0),(13857,4831,113720,'Camargo','Spain','ES','Camargo (Spain)',1,1,0),(13858,4832,113721,'Camarillo','United States of America','US','Camarillo (United States of America)',1,1,0),(13859,4835,113722,'Camas','Spain','ES','Camas (Spain)',1,1,0),(13860,0,113723,'Cambrige','United States of America','US','Cambrige (United States of America)',1,1,0),(13861,0,113724,'Camden','United States of America','US','Camden (United States of America)',1,1,0),(13862,0,113725,'Cameron','United States of America','US','Cameron (United States of America)',1,1,0),(13863,4865,113726,'Cameron Highlands','Malaysia','MY','Cameron Highlands (Malaysia)',1,1,0),(13864,4880,113727,'Campagna','Italy','IT','Campagna (Italy)',1,1,0),(13865,4895,113728,'Campbelltown','Australia','AU','Campbelltown (Australia)',1,1,0),(13866,4899,113729,'Campeche','Mexico','MX','Campeche (Mexico)',1,1,0),(13867,0,113730,'Campitello','Italy','IT','Campitello (Italy)',1,1,0),(13868,0,113731,'Campobello di Licata','Italy','IT','Campobello di Licata (Italy)',1,1,0),(13869,0,113732,'Campolongo Arraba','Italy','IT','Campolongo Arraba (Italy)',1,1,0),(13870,0,113733,'Campomarino Lido','Italy','IT','Campomarino Lido (Italy)',1,1,0),(13871,0,113734,'Canasvieiras','Brazil','BR','Canasvieiras (Brazil)',1,1,0),(13872,4989,113735,'Canfield','United States of America','US','Canfield (United States of America)',1,1,0),(13873,0,113736,'Cangas de Onis','Spain','ES','Cangas de Onis (Spain)',1,1,0),(13874,0,113737,'Canical','Portugal','PT','Canical (Portugal)',1,1,0),(13875,4997,113738,'Canico','Portugal','PT','Canico (Portugal)',1,1,0),(13876,0,113739,'Canillas de Albaida','Spain','ES','Canillas de Albaida (Spain)',1,1,0),(13877,5004,113740,'Cannero Riviera','Italy','IT','Cannero Riviera (Italy)',1,1,0),(13878,5006,113741,'Cannes-Ecluse','France','FR','Cannes-Ecluse (France)',1,1,0),(13879,0,113742,'Cannock','United Kingdom','UK','Cannock (United Kingdom)',1,1,0),(13880,5017,113743,'Canoas','Brazil','BR','Canoas (Brazil)',1,1,0),(13881,5018,113744,'Canoga Park','United States of America','US','Canoga Park (United States of America)',1,1,0),(13882,0,113745,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13883,0,113746,'Canyon de Chelly','United States of America','US','Canyon de Chelly (United States of America)',1,1,0),(13884,0,113747,'Cap Benat','France','FR','Cap Benat (France)',1,1,0),(13885,30667,113748,'Cap d\'Ail','France','FR','Cap d\'Ail (France)',1,1,0),(13886,5052,113749,'Capafonts','Spain','ES','Capafonts (Spain)',1,1,0),(13887,5056,113750,'Capannori','Italy','IT','Capannori (Italy)',1,1,0),(13888,0,113751,'Cape Hatteras','United States of America','US','Cape Hatteras (United States of America)',1,1,0),(13889,0,113752,'Cape Jervis','Australia','AU','Cape Jervis (Australia)',1,1,0),(13890,0,113753,'Cape Schanck','Australia','AU','Cape Schanck (Australia)',1,1,0),(13891,5079,113754,'Capilla del Monte','Argentina','AR','Capilla del Monte (Argentina)',1,1,0),(13892,5084,113755,'Capitola','United States of America','US','Capitola (United States of America)',1,1,0),(13893,0,113756,'Capo d\'Orlando','Italy','IT','Capo d\'Orlando (Italy)',1,1,0),(13894,0,113757,'Capoterra','Italy','IT','Capoterra (Italy)',1,1,0),(13895,0,113758,'Captiva Island','United States of America','US','Captiva Island (United States of America)',1,1,0),(13896,5116,113759,'Caraguatatuba','Brazil','BR','Caraguatatuba (Brazil)',1,1,0),(13897,5148,113760,'Cardona','Spain','ES','Cardona (Spain)',1,1,0),(13898,0,113761,'Careggine','Italy','IT','Careggine (Italy)',1,1,0),(13899,0,113762,'Cargese','France','FR','Cargese (France)',1,1,0),(13900,5156,113763,'Cariati','Italy','IT','Cariati (Italy)',1,1,0),(13901,0,113764,'Carloway','United Kingdom','UK','Carloway (United Kingdom)',1,1,0),(13902,5181,113765,'Carlstadt','United States of America','US','Carlstadt (United States of America)',1,1,0),(13903,5186,113766,'Carmacks','Canada','CA','Carmacks (Canada)',1,1,0),(13904,0,113767,'Carmango','Spain','ES','Carmango (Spain)',1,1,0),(13905,5193,113768,'Carmelo','Uruguay','UY','Carmelo (Uruguay)',1,1,0),(13906,5202,113769,'Carnegie','United States of America','US','Carnegie (United States of America)',1,1,0),(13907,0,113770,'Carolles','France','FR','Carolles (France)',1,1,0),(13908,0,113771,'Carpeneto','Italy','IT','Carpeneto (Italy)',1,1,0),(13909,5228,113772,'Carquefou','France','FR','Carquefou (France)',1,1,0),(13910,5229,113773,'Carqueiranne','France','FR','Carqueiranne (France)',1,1,0),(13911,0,113774,'Carros','France','FR','Carros (France)',1,1,0),(13912,5263,113775,'Carson','United States of America','US','Carson (United States of America)',1,1,0),(13913,5265,113776,'Cartagena','Colombia','CO','Cartagena (Colombia)',1,1,0),(13914,5269,113777,'Cartaxo','Portugal','PT','Cartaxo (Portugal)',1,1,0),(13915,5270,113778,'Cartaya','Spain','ES','Cartaya (Spain)',1,1,0),(13916,0,113779,'Carthage','United States of America','US','Carthage (United States of America)',1,1,0),(13917,0,113780,'Carthage','United States of America','US','Carthage (United States of America)',1,1,0),(13918,5275,113781,'Caruaru','Brazil','BR','Caruaru (Brazil)',1,1,0),(13919,30668,113782,'Cas Concos','Spain','ES','Cas Concos (Spain)',1,1,0),(13920,5288,113783,'Casalarreina','Spain','ES','Casalarreina (Spain)',1,1,0),(13921,0,113784,'Casalbordino','Italy','IT','Casalbordino (Italy)',1,1,0),(13922,5300,113785,'Casares','Spain','ES','Casares (Spain)',1,1,0),(13923,0,113786,'Casnate','Italy','IT','Casnate (Italy)',1,1,0),(13924,0,113787,'Cassagnabere-Tournas','France','FR','Cassagnabere-Tournas (France)',1,1,0),(13925,5339,113788,'Casselberry','United States of America','US','Casselberry (United States of America)',1,1,0),(13926,5342,113789,'Cassine','Italy','IT','Cassine (Italy)',1,1,0),(13927,0,113790,'Castaneda','Spain','ES','Castaneda (Spain)',1,1,0),(13928,30677,113791,'Castel Giorgio','Italy','IT','Castel Giorgio (Italy)',1,1,0),(13929,30684,113792,'Castel San Pietro Romano','Italy','IT','Castel San Pietro Romano (Italy)',1,1,0),(13930,30685,113793,'Castel San Pietro Terme','Italy','IT','Castel San Pietro Terme (Italy)',1,1,0),(13931,0,113794,'Castellalto','Italy','IT','Castellalto (Italy)',1,1,0),(13932,0,113795,'Castelluccio (Norcia)','Italy','IT','Castelluccio (Norcia) (Italy)',1,1,0),(13933,5384,113796,'Castelluzzo','Italy','IT','Castelluzzo (Italy)',1,1,0),(13934,5388,113797,'Castelnau le Lez','France','FR','Castelnau le Lez (France)',1,1,0),(13935,0,113798,'Castelnau-de-Mandailles','France','FR','Castelnau-de-Mandailles (France)',1,1,0),(13936,0,113799,'Castelnuovo','Italy','IT','Castelnuovo (Italy)',1,1,0),(13937,0,113800,'Castidas','Italy','IT','Castidas (Italy)',1,1,0),(13938,0,113801,'Castiglion Fibocchi','Italy','IT','Castiglion Fibocchi (Italy)',1,1,0),(13939,5407,113802,'Castiglione del Lago','Italy','IT','Castiglione del Lago (Italy)',1,1,0),(13940,0,113803,'Castiglione della Pescaia','Italy','IT','Castiglione della Pescaia (Italy)',1,1,0),(13941,0,113804,'Castiglione D\'Orcia','Italy','IT','Castiglione D\'Orcia (Italy)',1,1,0),(13942,0,113805,'Castillo de las Guardas','Spain','ES','Castillo de las Guardas (Spain)',1,1,0),(13943,0,113806,'Castle Douglas','United Kingdom','UK','Castle Douglas (United Kingdom)',1,1,0),(13944,0,113807,'Castlebellingham','Ireland','IE','Castlebellingham (Ireland)',1,1,0),(13945,5435,113808,'Castletownbere','Ireland','IE','Castletownbere (Ireland)',1,1,0),(13946,5439,113809,'Castries','France','FR','Castries (France)',1,1,0),(13947,0,113810,'Castro Daire','Portugal','PT','Castro Daire (Portugal)',1,1,0),(13948,0,113811,'Castrocielo','Italy','IT','Castrocielo (Italy)',1,1,0),(13949,0,113812,'Castrojeriz','Spain','ES','Castrojeriz (Spain)',1,1,0),(13950,0,113813,'Catalkoy','Cyprus','CY','Catalkoy (Cyprus)',1,1,0),(13951,0,113814,'Catignano','Italy','IT','Catignano (Italy)',1,1,0),(13952,5466,113815,'Catral','Spain','ES','Catral (Spain)',1,1,0),(13953,5493,113816,'Cavan','Ireland','IE','Cavan (Ireland)',1,1,0),(13954,0,113817,'Cawood','United Kingdom','UK','Cawood (United Kingdom)',1,1,0),(13955,5035,113818,'Cantello','Italy','IT','Cantello (Italy)',1,1,0),(13956,0,113819,'Canterbury','United Kingdom','UK','Canterbury (United Kingdom)',1,1,0),(13957,0,113820,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13958,0,113821,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13959,0,113822,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(13960,0,113823,'Canyelles','Spain','ES','Canyelles (Spain)',1,1,0),(13961,30660,113824,'Canyon Lake','United States of America','US','Canyon Lake (United States of America)',1,1,0),(13962,5046,113825,'Caorle','Italy','IT','Caorle (Italy)',1,1,0),(13963,5055,113826,'Capannoli','Italy','IT','Capannoli (Italy)',1,1,0),(13964,5059,113827,'Capcanes','Spain','ES','Capcanes (Spain)',1,1,0),(13965,0,113828,'Cape Charles','United States of America','US','Cape Charles (United States of America)',1,1,0),(13966,0,113829,'Cape Estate','Saint Lucia','LC','Cape Estate (Saint Lucia)',1,1,0),(13967,0,113830,'Cape Otway','Australia','AU','Cape Otway (Australia)',1,1,0),(13968,5073,113831,'Capellades','Spain','ES','Capellades (Spain)',1,1,0),(13969,0,113832,'Cap-Haitien','Haiti','HT','Cap-Haitien (Haiti)',1,1,0),(13970,0,113833,'Capitol Heights','United States of America','US','Capitol Heights (United States of America)',1,1,0),(13971,5086,113834,'Capljina','Bosnia and Herzegowina','BA','Capljina (Bosnia and Herzegowina)',1,1,0),(13972,0,113835,'Carabana','Spain','ES','Carabana (Spain)',1,1,0),(13973,0,113836,'Carabelas','Argentina','AR','Carabelas (Argentina)',1,1,0),(13974,5121,113837,'Carano','Italy','IT','Carano (Italy)',1,1,0),(13975,0,113838,'Caravia','Spain','ES','Caravia (Spain)',1,1,0),(13976,0,113839,'Carballino','Spain','ES','Carballino (Spain)',1,1,0),(13977,0,113840,'Carbognano','Italy','IT','Carbognano (Italy)',1,1,0),(13978,0,113841,'Carbondale','United States of America','US','Carbondale (United States of America)',1,1,0),(13979,5140,113842,'Carcross','Canada','CA','Carcross (Canada)',1,1,0),(13980,0,113843,'Cardiff by the Sea','United States of America','US','Cardiff by the Sea (United States of America)',1,1,0),(13981,0,113844,'Cariboo Country','Canada','CA','Cariboo Country (Canada)',1,1,0),(13982,5174,113845,'Carlisle','United States of America','US','Carlisle (United States of America)',1,1,0),(13983,0,113846,'Carlisle','United States of America','US','Carlisle (United States of America)',1,1,0),(13984,0,113847,'Carlsbad by the Sea','United States of America','US','Carlsbad by the Sea (United States of America)',1,1,0),(13985,5182,113848,'Carlton','United States of America','US','Carlton (United States of America)',1,1,0),(13986,0,113849,'Carmel Valley','United States of America','US','Carmel Valley (United States of America)',1,1,0),(13987,5195,113850,'Carmignano','Italy','IT','Carmignano (Italy)',1,1,0),(13988,5198,113851,'Carnac','France','FR','Carnac (France)',1,1,0),(13989,5199,113852,'Carnarvon','Australia','AU','Carnarvon (Australia)',1,1,0),(13990,5203,113853,'Carnelian Bay','United States of America','US','Carnelian Bay (United States of America)',1,1,0),(13991,5209,113854,'Carnon','France','FR','Carnon (France)',1,1,0),(13992,5216,113855,'Carolina Beach','United States of America','US','Carolina Beach (United States of America)',1,1,0),(13993,5218,113856,'Carona','Switzerland','CH','Carona (Switzerland)',1,1,0),(13994,0,113857,'Carradale','United Kingdom','UK','Carradale (United Kingdom)',1,1,0),(13995,5232,113858,'Carrara','Italy','IT','Carrara (Italy)',1,1,0),(13996,0,113859,'Carrion de los Condes','Spain','ES','Carrion de los Condes (Spain)',1,1,0),(13997,0,113860,'Carrollton','United States of America','US','Carrollton (United States of America)',1,1,0),(13998,0,113861,'Carrollton','United States of America','US','Carrollton (United States of America)',1,1,0),(13999,5260,113862,'Carry-le-Rouet','France','FR','Carry-le-Rouet (France)',1,1,0),(14000,0,113863,'Cartavio','Spain','ES','Cartavio (Spain)',1,1,0),(14001,0,113864,'Carter Lake','United States of America','US','Carter Lake (United States of America)',1,1,0),(14002,0,113865,'Cartisoara','Romania','RO','Cartisoara (Romania)',1,1,0),(14003,0,113866,'Cartmel','United Kingdom','UK','Cartmel (United Kingdom)',1,1,0),(14004,0,113867,'Casa Marliana','Italy','IT','Casa Marliana (Italy)',1,1,0),(14005,0,113868,'Casale sul Sile','Italy','IT','Casale sul Sile (Italy)',1,1,0),(14006,5291,113869,'Casalmaggiore','Italy','IT','Casalmaggiore (Italy)',1,1,0),(14007,5301,113870,'Casarsa Della Delizia','Italy','IT','Casarsa Della Delizia (Italy)',1,1,0),(14008,5303,113871,'Cascade','United States of America','US','Cascade (United States of America)',1,1,0),(14009,5305,113872,'Cascastel-des-Corbieres','France','FR','Cascastel-des-Corbieres (France)',1,1,0),(14010,5306,113873,'Cascavel','Brazil','BR','Cascavel (Brazil)',1,1,0),(14011,0,113874,'Casciago','Italy','IT','Casciago (Italy)',1,1,0),(14012,5309,113875,'Casciano','Italy','IT','Casciano (Italy)',1,1,0),(14013,5310,113876,'Cascina','Italy','IT','Cascina (Italy)',1,1,0),(14014,5321,113877,'Cashmere','United States of America','US','Cashmere (United States of America)',1,1,0),(14015,5327,113878,'Caslano','Switzerland','CH','Caslano (Switzerland)',1,1,0),(14016,0,113879,'Cassington (Oxfordshire)','United Kingdom','UK','Cassington (Oxfordshire) (United Kingdom)',1,1,0),(14017,5344,113880,'Cassino','Italy','IT','Cassino (Italy)',1,1,0),(14018,5345,113881,'Cassis','France','FR','Cassis (France)',1,1,0),(14019,5348,113882,'Cassville','United States of America','US','Cassville (United States of America)',1,1,0),(14020,30669,113883,'Castel D\'ario','Italy','IT','Castel D\'ario (Italy)',1,1,0),(14021,30672,113884,'Castel del Piano','Italy','IT','Castel del Piano (Italy)',1,1,0),(14022,30678,113885,'Castel Guelfo di Bologna','Italy','IT','Castel Guelfo di Bologna (Italy)',1,1,0),(14023,0,113886,'Castelfidardo','Italy','IT','Castelfidardo (Italy)',1,1,0),(14024,5367,113887,'Castellabate','Italy','IT','Castellabate (Italy)',1,1,0),(14025,5368,113888,'Castellammare del Golfo','Italy','IT','Castellammare del Golfo (Italy)',1,1,0),(14026,0,113889,'Castellammare di Stabia','Italy','IT','Castellammare di Stabia (Italy)',1,1,0),(14027,0,113890,'Castellana Sicula (Provinz Palermo)','Italy','IT','Castellana Sicula (Provinz Palermo) (Italy)',1,1,0),(14028,0,113891,'Castellaro Lagusello','Italy','IT','Castellaro Lagusello (Italy)',1,1,0),(14029,5374,113892,'Castelldefels','Spain','ES','Castelldefels (Spain)',1,1,0),(14030,0,113893,'Castello di Godego','Italy','IT','Castello di Godego (Italy)',1,1,0),(14031,5386,113894,'Castelmola','Italy','IT','Castelmola (Italy)',1,1,0),(14032,0,113895,'Castelnaud-la-Chapelle','France','FR','Castelnaud-la-Chapelle (France)',1,1,0),(14033,0,113896,'Castelo de Bode','Portugal','PT','Castelo de Bode (Portugal)',1,1,0),(14034,0,113897,'Castelvetere sul Calore','Italy','IT','Castelvetere sul Calore (Italy)',1,1,0),(14035,0,113898,'Castiglione di Ravello','Italy','IT','Castiglione di Ravello (Italy)',1,1,0),(14036,0,113899,'Castione della Presolana','Italy','IT','Castione della Presolana (Italy)',1,1,0),(14037,0,113900,'Castle Donington','United Kingdom','UK','Castle Donington (United Kingdom)',1,1,0),(14038,5414,113901,'Castle Hill','Australia','AU','Castle Hill (Australia)',1,1,0),(14039,5422,113902,'Castleconnell','Ireland','IE','Castleconnell (Ireland)',1,1,0),(14040,0,113903,'Castleford','United Kingdom','UK','Castleford (United Kingdom)',1,1,0),(14041,5437,113904,'Castres','France','FR','Castres (France)',1,1,0),(14042,0,113905,'Castro','Switzerland','CH','Castro (Switzerland)',1,1,0),(14043,0,113906,'Castro Verde','Portugal','PT','Castro Verde (Portugal)',1,1,0),(14044,0,113907,'Cat Spring','United States of America','US','Cat Spring (United States of America)',1,1,0),(14045,5451,113908,'Catania','Italy','IT','Catania (Italy)',1,1,0),(14046,0,113909,'CATARROJA','Spain','ES','CATARROJA (Spain)',1,1,0),(14047,0,113910,'Catba Island','Vietnam','VN','Catba Island (Vietnam)',1,1,0),(14048,5456,113911,'Catemaco','Mexico','MX','Catemaco (Mexico)',1,1,0),(14049,0,113912,'Caterham','United Kingdom','UK','Caterham (United Kingdom)',1,1,0),(14050,0,113913,'Catez','Slovenia','SI','Catez (Slovenia)',1,1,0),(14051,5458,113914,'Cathedral City','United States of America','US','Cathedral City (United States of America)',1,1,0),(14052,5459,113915,'Cathlamet','United States of America','US','Cathlamet (United States of America)',1,1,0),(14053,5460,113916,'Catia La Mar','Venezuela','VE','Catia La Mar (Venezuela)',1,1,0),(14054,5462,113917,'Catlettsburg','United States of America','US','Catlettsburg (United States of America)',1,1,0),(14055,5465,113918,'Catoosa','United States of America','US','Catoosa (United States of America)',1,1,0),(14056,5502,113919,'Cavendish','Canada','CA','Cavendish (Canada)',1,1,0),(14057,0,113920,'Cavia','Spain','ES','Cavia (Spain)',1,1,0),(14058,0,113921,'Cavo','Italy','IT','Cavo (Italy)',1,1,0),(14059,0,113922,'Cayo Ensenachos','Cuba','CU','Cayo Ensenachos (Cuba)',1,1,0),(14060,0,113923,'Campestrin','Italy','IT','Campestrin (Italy)',1,1,0),(14061,4908,113924,'Campillo de Arenas','Spain','ES','Campillo de Arenas (Spain)',1,1,0),(14062,4909,113925,'Campina Grande','Brazil','BR','Campina Grande (Brazil)',1,1,0),(14063,4922,113926,'Campomarino','Italy','IT','Campomarino (Italy)',1,1,0),(14064,0,113927,'Campulung','Romania','RO','Campulung (Romania)',1,1,0),(14065,4933,113928,'Campulung Moldovenesc','Romania','RO','Campulung Moldovenesc (Romania)',1,1,0),(14066,0,113929,'Camurac','France','FR','Camurac (France)',1,1,0),(14067,0,113930,'Cana','United States of America','US','Cana (United States of America)',1,1,0),(14068,4953,113931,'Canandaigua','United States of America','US','Canandaigua (United States of America)',1,1,0),(14069,4956,113932,'Canas de Senhorim','Portugal','PT','Canas de Senhorim (Portugal)',1,1,0),(14070,4964,113933,'Candanchu','Spain','ES','Candanchu (Spain)',1,1,0),(14071,4967,113934,'Candelaria','Spain','ES','Candelaria (Spain)',1,1,0),(14072,4981,113935,'Canela','Brazil','BR','Canela (Brazil)',1,1,0),(14073,0,113936,'Canelos','Ecuador','EC','Canelos (Ecuador)',1,1,0),(14074,4987,113937,'Canet-Plage','France','FR','Canet-Plage (France)',1,1,0),(14075,4990,113938,'Canfranc','Spain','ES','Canfranc (Spain)',1,1,0),(14076,5002,113939,'Canmore','Canada','CA','Canmore (Canada)',1,1,0),(14077,5008,113940,'Cannigione','Italy','IT','Cannigione (Italy)',1,1,0),(14078,5028,113941,'Cantabria','Spain','ES','Cantabria (Spain)',1,1,0),(14079,5034,113942,'Cantarana','Italy','IT','Cantarana (Italy)',1,1,0),(14080,0,113943,'Cantavieja','Spain','ES','Cantavieja (Spain)',1,1,0),(14081,5038,113944,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(14082,0,113945,'Canuelas','Argentina','AR','Canuelas (Argentina)',1,1,0),(14083,5054,113946,'Capalbio','Italy','IT','Capalbio (Italy)',1,1,0),(14084,0,113947,'Cap-Chat','Canada','CA','Cap-Chat (Canada)',1,1,0),(14085,0,113948,'Cape Vincent','United States of America','US','Cape Vincent (United States of America)',1,1,0),(14086,0,113949,'Capestang','France','FR','Capestang (France)',1,1,0),(14087,0,113950,'Capolago','Switzerland','CH','Capolago (Switzerland)',1,1,0),(14088,0,113951,'Caprie','Italy','IT','Caprie (Italy)',1,1,0),(14089,5101,113952,'Caprino Veronese','Italy','IT','Caprino Veronese (Italy)',1,1,0),(14090,5105,113953,'Capua','Italy','IT','Capua (Italy)',1,1,0),(14091,0,113954,'Capurso','Italy','IT','Capurso (Italy)',1,1,0),(14092,5118,113955,'Caramanico Terme','Italy','IT','Caramanico Terme (Italy)',1,1,0),(14093,0,113956,'Carazinho','Brazil','BR','Carazinho (Brazil)',1,1,0),(14094,0,113957,'Carbonia','Italy','IT','Carbonia (Italy)',1,1,0),(14095,0,113958,'Cardigan','United Kingdom','UK','Cardigan (United Kingdom)',1,1,0),(14096,5152,113959,'Carefree','United States of America','US','Carefree (United States of America)',1,1,0),(14097,5158,113960,'Caribou','United States of America','US','Caribou (United States of America)',1,1,0),(14098,5171,113961,'Carlin','United States of America','US','Carlin (United States of America)',1,1,0),(14099,0,113962,'Carlisle','United States of America','US','Carlisle (United States of America)',1,1,0),(14100,5178,113963,'Carlow','Ireland','IE','Carlow (Ireland)',1,1,0),(14101,5185,113964,'Carlyle','United States of America','US','Carlyle (United States of America)',1,1,0),(14102,5205,113965,'Carneys Point','United States of America','US','Carneys Point (United States of America)',1,1,0),(14103,0,113966,'Caroline','Canada','CA','Caroline (Canada)',1,1,0),(14104,0,113967,'Carpiano','Italy','IT','Carpiano (Italy)',1,1,0),(14105,0,113968,'Carrick-on-Suir','Ireland','IE','Carrick-on-Suir (Ireland)',1,1,0),(14106,0,113969,'Carrig on Bannow','Ireland','IE','Carrig on Bannow (Ireland)',1,1,0),(14107,5249,113970,'Carrillo','Costa Rica','CR','Carrillo (Costa Rica)',1,1,0),(14108,0,113971,'Carro','France','FR','Carro (France)',1,1,0),(14109,0,113972,'Carro','Italy','IT','Carro (Italy)',1,1,0),(14110,0,113973,'Carsethorn','United Kingdom','UK','Carsethorn (United Kingdom)',1,1,0),(14111,5268,113974,'Cartama','Spain','ES','Cartama (Spain)',1,1,0),(14112,5276,113975,'Carupano','Venezuela','VE','Carupano (Venezuela)',1,1,0),(14113,0,113976,'Carzago di Calvagese','Italy','IT','Carzago di Calvagese (Italy)',1,1,0),(14114,0,113977,'Casal di Pari','Italy','IT','Casal di Pari (Italy)',1,1,0),(14115,0,113978,'Casal Velino','Italy','IT','Casal Velino (Italy)',1,1,0),(14116,0,113979,'Casamicciola','Italy','IT','Casamicciola (Italy)',1,1,0),(14117,0,113980,'Casar de Palomero','Spain','ES','Casar de Palomero (Spain)',1,1,0),(14118,0,113981,'Casau','Spain','ES','Casau (Spain)',1,1,0),(14119,5308,113982,'Casciana Terme','Italy','IT','Casciana Terme (Italy)',1,1,0),(14120,5311,113983,'Casekow','Germany','DE','Casekow (Germany)',1,1,0),(14121,5319,113984,'Cashel','Ireland','IE','Cashel (Ireland)',1,1,0),(14122,0,113985,'Casillas','Spain','ES','Casillas (Spain)',1,1,0),(14123,0,113986,'Casino di Terra','Italy','IT','Casino di Terra (Italy)',1,1,0),(14124,0,113987,'Cass','United States of America','US','Cass (United States of America)',1,1,0),(14125,5352,113988,'Castagnole delle Lanze','Italy','IT','Castagnole delle Lanze (Italy)',1,1,0),(14126,5354,113989,'Castalla','Spain','ES','Castalla (Spain)',1,1,0),(14127,0,113990,'Castanares de Rioja','Spain','ES','Castanares de Rioja (Spain)',1,1,0),(14128,0,113991,'Castara','Trinidad and Tobago','TT','Castara (Trinidad and Tobago)',1,1,0),(14129,5358,113992,'Castegnato','Italy','IT','Castegnato (Italy)',1,1,0),(14130,0,113993,'CASTEJON DE SOS','Spain','ES','CASTEJON DE SOS (Spain)',1,1,0),(14131,0,113994,'Castel del Rio','Italy','IT','Castel del Rio (Italy)',1,1,0),(14132,30673,113995,'Castel di Lama','Italy','IT','Castel di Lama (Italy)',1,1,0),(14133,30675,113996,'Castel di Tusa','Italy','IT','Castel di Tusa (Italy)',1,1,0),(14134,30676,113997,'Castel Gandolfo','Italy','IT','Castel Gandolfo (Italy)',1,1,0),(14135,30688,113998,'Castel Volturno','Italy','IT','Castel Volturno (Italy)',1,1,0),(14136,5365,113999,'Castelfranco di Sopra','Italy','IT','Castelfranco di Sopra (Italy)',1,1,0),(14137,5366,114000,'Casteljaloux','France','FR','Casteljaloux (France)',1,1,0),(14138,0,114001,'Castellane','France','FR','Castellane (France)',1,1,0),(14139,0,114002,'Castellare di Casinca','France','FR','Castellare di Casinca (France)',1,1,0),(14140,0,114003,'Castell\'Arquato','Italy','IT','Castell\'Arquato (Italy)',1,1,0),(14141,0,114004,'Castellina Marittima','Italy','IT','Castellina Marittima (Italy)',1,1,0),(14142,0,114005,'Castello de Vide','Portugal','PT','Castello de Vide (Portugal)',1,1,0),(14143,0,114006,'Castello D\'Empuries','Spain','ES','Castello D\'Empuries (Spain)',1,1,0),(14144,0,114007,'Castelnaudary','France','FR','Castelnaudary (France)',1,1,0),(14145,0,114008,'Castelnuovo (Assisi)','Italy','IT','Castelnuovo (Assisi) (Italy)',1,1,0),(14146,0,114009,'Castelnuovo Belbo','Italy','IT','Castelnuovo Belbo (Italy)',1,1,0),(14147,0,114010,'Castelveccana','Italy','IT','Castelveccana (Italy)',1,1,0),(14148,0,114011,'Castelvecchio di Compito','Italy','IT','Castelvecchio di Compito (Italy)',1,1,0),(14149,5404,114012,'Castets','France','FR','Castets (France)',1,1,0),(14150,0,114013,'Castiglione delle Stiviere','Italy','IT','Castiglione delle Stiviere (Italy)',1,1,0),(14151,0,114014,'Castle Rock','United States of America','US','Castle Rock (United States of America)',1,1,0),(14152,0,114015,'Castlemaine','Ireland','IE','Castlemaine (Ireland)',1,1,0),(14153,5438,114016,'Castries','Saint Lucia','LC','Castries (Saint Lucia)',1,1,0),(14154,0,114017,'Castro Laboreiro','Portugal','PT','Castro Laboreiro (Portugal)',1,1,0),(14155,0,114018,'Castro Urdiales','Spain','ES','Castro Urdiales (Spain)',1,1,0),(14156,5444,114019,'Castrop-Rauxel','Germany','DE','Castrop-Rauxel (Germany)',1,1,0),(14157,0,114020,'Castrovillari','Italy','IT','Castrovillari (Italy)',1,1,0),(14158,5450,114021,'Catamarca','Argentina','AR','Catamarca (Argentina)',1,1,0),(14159,5471,114022,'Caucaia','Brazil','BR','Caucaia (Brazil)',1,1,0),(14160,0,114023,'Caunes Minervois','France','FR','Caunes Minervois (France)',1,1,0),(14161,0,114024,'Caussade','France','FR','Caussade (France)',1,1,0),(14162,5482,114025,'Cauterets','France','FR','Cauterets (France)',1,1,0),(14163,5483,114026,'Caux','Switzerland','CH','Caux (Switzerland)',1,1,0),(14164,0,114027,'Cava De\' Tirreni','Italy','IT','Cava De\' Tirreni (Italy)',1,1,0),(14165,5489,114028,'Cavalcante','Brazil','BR','Cavalcante (Brazil)',1,1,0),(14166,0,114029,'Carson City','United States of America','US','Carson City (United States of America)',1,1,0),(14167,0,114030,'Carteret','United States of America','US','Carteret (United States of America)',1,1,0),(14168,0,114031,'Cas Ariba','Aruba','AW','Cas Ariba (Aruba)',1,1,0),(14169,5285,114032,'Casablanca','Morocco','MA','Casablanca (Morocco)',1,1,0),(14170,5290,114033,'Casalecchio di Reno','Italy','IT','Casalecchio di Reno (Italy)',1,1,0),(14171,0,114034,'Casalfiumanese','Italy','IT','Casalfiumanese (Italy)',1,1,0),(14172,0,114035,'Casarejos','Spain','ES','Casarejos (Spain)',1,1,0),(14173,0,114036,'Casarile','Italy','IT','Casarile (Italy)',1,1,0),(14174,0,114037,'Casas Del Monte','Spain','ES','Casas Del Monte (Spain)',1,1,0),(14175,0,114038,'Cascade','United States of America','US','Cascade (United States of America)',1,1,0),(14176,5304,114039,'Cascais','Portugal','PT','Cascais (Portugal)',1,1,0),(14177,5307,114040,'Cascia','Italy','IT','Cascia (Italy)',1,1,0),(14178,0,114041,'Case Noyale','Mauritius','MU','Case Noyale (Mauritius)',1,1,0),(14179,0,114042,'Caselle Torinese','Italy','IT','Caselle Torinese (Italy)',1,1,0),(14180,0,114043,'Cassagnes-Begonhes','France','FR','Cassagnes-Begonhes (France)',1,1,0),(14181,5357,114044,'Casteau','Belgium','BE','Casteau (Belgium)',1,1,0),(14182,30681,114045,'Castel Rigone','Italy','IT','Castel Rigone (Italy)',1,1,0),(14183,0,114046,'Castellaneta','Italy','IT','Castellaneta (Italy)',1,1,0),(14184,0,114047,'Castelletto Molina','Italy','IT','Castelletto Molina (Italy)',1,1,0),(14185,0,114048,'Castellina','Italy','IT','Castellina (Italy)',1,1,0),(14186,0,114049,'Castello Di Fiemme','Italy','IT','Castello Di Fiemme (Italy)',1,1,0),(14187,0,114050,'Castelnuovo del Garda','Italy','IT','Castelnuovo del Garda (Italy)',1,1,0),(14188,0,114051,'Castelnuovo d\'Elsa','Italy','IT','Castelnuovo d\'Elsa (Italy)',1,1,0),(14189,0,114052,'Castelnuovo Val di Cecina','Italy','IT','Castelnuovo Val di Cecina (Italy)',1,1,0),(14190,0,114053,'Castelo de Paiva','Portugal','PT','Castelo de Paiva (Portugal)',1,1,0),(14191,5400,114054,'Castelvetrano','Italy','IT','Castelvetrano (Italy)',1,1,0),(14192,0,114055,'Castiglione Messer Raimondo','Italy','IT','Castiglione Messer Raimondo (Italy)',1,1,0),(14193,0,114056,'Castillon-en-Couserans','France','FR','Castillon-en-Couserans (France)',1,1,0),(14194,0,114057,'Castle Cary','United Kingdom','UK','Castle Cary (United Kingdom)',1,1,0),(14195,0,114058,'Castlepollard','Ireland','IE','Castlepollard (Ireland)',1,1,0),(14196,0,114059,'Castletown Geoghegan','Ireland','IE','Castletown Geoghegan (Ireland)',1,1,0),(14197,0,114060,'Castro Caldelas','Spain','ES','Castro Caldelas (Spain)',1,1,0),(14198,5442,114061,'Castro Valley','United States of America','US','Castro Valley (United States of America)',1,1,0),(14199,0,114062,'Castronovo di Sicilia','Italy','IT','Castronovo di Sicilia (Italy)',1,1,0),(14200,0,114063,'Caudry','France','FR','Caudry (France)',1,1,0),(14201,5484,114064,'Cavaglia','Italy','IT','Cavaglia (Italy)',1,1,0),(14202,0,114065,'Cave City','United States of America','US','Cave City (United States of America)',1,1,0),(14203,0,114066,'Cavenago di Brianza','Italy','IT','Cavenago di Brianza (Italy)',1,1,0),(14204,0,114067,'Cavigliano','Switzerland','CH','Cavigliano (Switzerland)',1,1,0),(14205,5513,114068,'Caxias do Sul','Brazil','BR','Caxias do Sul (Brazil)',1,1,0),(14206,0,114069,'Caye Caulker','Belize','BZ','Caye Caulker (Belize)',1,1,0),(14207,0,114070,'Cayo Las Brujas','Cuba','CU','Cayo Las Brujas (Cuba)',1,1,0),(14208,0,114071,'Cazeres-sur-l\'Adour','France','FR','Cazeres-sur-l\'Adour (France)',1,1,0),(14209,0,114072,'Ceccano','Italy','IT','Ceccano (Italy)',1,1,0),(14210,0,114073,'Cedria Beach','Tunisia','TN','Cedria Beach (Tunisia)',1,1,0),(14211,5554,114074,'Cee','Spain','ES','Cee (Spain)',1,1,0),(14212,5571,114075,'Celista','Canada','CA','Celista (Canada)',1,1,0),(14213,0,114076,'Cellettes','France','FR','Cellettes (France)',1,1,0),(14214,5579,114077,'Celorico Da Beira','Portugal','PT','Celorico Da Beira (Portugal)',1,1,0),(14215,0,114078,'Celorico de Basto','Portugal','PT','Celorico de Basto (Portugal)',1,1,0),(14216,0,114079,'Cemaes Bay','United Kingdom','UK','Cemaes Bay (United Kingdom)',1,1,0),(14217,0,114080,'Cenicero','Spain','ES','Cenicero (Spain)',1,1,0),(14218,0,114081,'Cenkovice','Czech Republic','CZ','Cenkovice (Czech Republic)',1,1,0),(14219,0,114082,'Centerville','United States of America','US','Centerville (United States of America)',1,1,0),(14220,5605,114083,'Centre','United States of America','US','Centre (United States of America)',1,1,0),(14221,5613,114084,'Cerbere','France','FR','Cerbere (France)',1,1,0),(14222,5619,114085,'Ceres','South Africa','ZA','Ceres (South Africa)',1,1,0),(14223,0,114086,'Cerny Dul','Czech Republic','CZ','Cerny Dul (Czech Republic)',1,1,0),(14224,0,114087,'Cerro Punta','Panama','PA','Cerro Punta (Panama)',1,1,0),(14225,0,114088,'Cervesina','Italy','IT','Cervesina (Italy)',1,1,0),(14226,0,114089,'Cervia Pinarella','Italy','IT','Cervia Pinarella (Italy)',1,1,0),(14227,0,114090,'Ceska Trebova','Czech Republic','CZ','Ceska Trebova (Czech Republic)',1,1,0),(14228,0,114091,'Cesky Tesin','Czech Republic','CZ','Cesky Tesin (Czech Republic)',1,1,0),(14229,0,114092,'Cevoli di Lari','Italy','IT','Cevoli di Lari (Italy)',1,1,0),(14230,0,114093,'Chabanais','France','FR','Chabanais (France)',1,1,0),(14231,5707,114094,'Challans','France','FR','Challans (France)',1,1,0),(14232,0,114095,'Chalong Bay','Thailand','TH','Chalong Bay (Thailand)',1,1,0),(14233,13934,114096,'KHAMIS MUSHAIT','Saudi Arabia','SA','KHAMIS MUSHAIT (Saudi Arabia)',1,1,0),(14234,5734,114097,'Chamois','Italy','IT','Chamois (Italy)',1,1,0),(14235,5737,114098,'Chamouille','France','FR','Chamouille (France)',1,1,0),(14236,5738,114099,'Champagnac-de-Belair','France','FR','Champagnac-de-Belair (France)',1,1,0),(14237,0,114100,'Champagney (Haute-Saone)','France','FR','Champagney (Haute-Saone) (France)',1,1,0),(14238,0,114101,'Champagny en Vanoise','France','FR','Champagny en Vanoise (France)',1,1,0),(14239,5743,114102,'Champaign','United States of America','US','Champaign (United States of America)',1,1,0),(14240,0,114103,'Champanges','France','FR','Champanges (France)',1,1,0),(14241,5749,114104,'Champillon','France','FR','Champillon (France)',1,1,0),(14242,0,114105,'Champorcher','Italy','IT','Champorcher (Italy)',1,1,0),(14243,0,114106,'Chanac','France','FR','Chanac (France)',1,1,0),(14244,0,114108,'Changle','China','CN','Changle (China)',1,1,0),(14245,5781,114109,'Changsha','China','CN','Changsha (China)',1,1,0),(14246,5787,114110,'Changzhou','China','CN','Changzhou (China)',1,1,0),(14247,5808,114111,'Chaource','France','FR','Chaource (France)',1,1,0),(14248,5815,114112,'Chapeco','Brazil','BR','Chapeco (Brazil)',1,1,0),(14249,0,114113,'Chapel Hill','United States of America','US','Chapel Hill (United States of America)',1,1,0),(14250,0,114114,'Chapelle Montligeon','France','FR','Chapelle Montligeon (France)',1,1,0),(14251,5826,114115,'Chappaqua','United States of America','US','Chappaqua (United States of America)',1,1,0),(14252,5835,114116,'Charette-Varennes','France','FR','Charette-Varennes (France)',1,1,0),(14253,5846,114118,'Charleston','United States of America','US','Charleston (United States of America)',1,1,0),(14254,5852,114119,'Charlestown','St. Kitts and Nevis','KN','Charlestown (St. Kitts and Nevis)',1,1,0),(14255,5853,114120,'Charleville','Ireland','IE','Charleville (Ireland)',1,1,0),(14256,0,114121,'Charlieu','France','FR','Charlieu (France)',1,1,0),(14257,0,114122,'Charlotte Harbor','United States of America','US','Charlotte Harbor (United States of America)',1,1,0),(14258,5869,114123,'Charmey','Switzerland','CH','Charmey (Switzerland)',1,1,0),(14259,5878,114124,'Chartres-de-Bretagne','France','FR','Chartres-de-Bretagne (France)',1,1,0),(14260,0,114125,'Chateau d\' Olonne','France','FR','Chateau d\' Olonne (France)',1,1,0),(14261,0,114126,'Chateau d\'Oex','Switzerland','CH','Chateau d\'Oex (Switzerland)',1,1,0),(14262,0,114127,'Chateauneuf-de-Gadagne','France','FR','Chateauneuf-de-Gadagne (France)',1,1,0),(14263,0,114128,'Chateaurenard','France','FR','Chateaurenard (France)',1,1,0),(14264,5917,114129,'Chatelaillon-Plage','France','FR','Chatelaillon-Plage (France)',1,1,0),(14265,0,114130,'Cala Liberotto','Italy','IT','Cala Liberotto (Italy)',1,1,0),(14266,0,114131,'Cala Pi - San Estanol','Spain','ES','Cala Pi - San Estanol (Spain)',1,1,0),(14267,0,114132,'Cala Sinzias','Italy','IT','Cala Sinzias (Italy)',1,1,0),(14268,4719,114133,'Calafell','Spain','ES','Calafell (Spain)',1,1,0),(14269,4724,114134,'Calama','Chile','CL','Calama (Chile)',1,1,0),(14270,4727,114135,'Calambrone','Italy','IT','Calambrone (Italy)',1,1,0),(14271,0,114136,'Calcatoggio','France','FR','Calcatoggio (France)',1,1,0),(14272,4745,114137,'Calci','Italy','IT','Calci (Italy)',1,1,0),(14273,4750,114138,'Caldana','Italy','IT','Caldana (Italy)',1,1,0),(14274,4759,114139,'Calders','Spain','ES','Calders (Spain)',1,1,0),(14275,4765,114140,'Caledon','South Africa','ZA','Caledon (South Africa)',1,1,0),(14276,0,114141,'Calella de Palafrugell','Spain','ES','Calella de Palafrugell (Spain)',1,1,0),(14277,4783,114142,'California','United States of America','US','California (United States of America)',1,1,0),(14278,4796,114143,'Callas','France','FR','Callas (France)',1,1,0),(14279,0,114144,'Calpine','United States of America','US','Calpine (United States of America)',1,1,0),(14280,4808,114145,'Caltagirone','Italy','IT','Caltagirone (Italy)',1,1,0),(14281,0,114146,'Calulo','Angola','AO','Calulo (Angola)',1,1,0),(14282,0,114147,'Calumet City','United States of America','US','Calumet City (United States of America)',1,1,0),(14283,4837,114148,'Camasobres','Spain','ES','Camasobres (Spain)',1,1,0),(14284,0,114149,'Cambados (Pontevedra)','Spain','ES','Cambados (Pontevedra) (Spain)',1,1,0),(14285,4839,114150,'Cambara do Sul','Brazil','BR','Cambara do Sul (Brazil)',1,1,0),(14286,0,114151,'Camborne','United Kingdom','UK','Camborne (United Kingdom)',1,1,0),(14287,0,114152,'Cambridge','United States of America','US','Cambridge (United States of America)',1,1,0),(14288,0,114153,'Camden','United States of America','US','Camden (United States of America)',1,1,0),(14289,0,114154,'Camoel','France','FR','Camoel (France)',1,1,0),(14290,0,114155,'Campagne','France','FR','Campagne (France)',1,1,0),(14291,4940,114156,'Canaan','United States of America','US','Canaan (United States of America)',1,1,0),(14292,4948,114157,'Canakkale','Turkey','TR','Canakkale (Turkey)',1,1,0),(14293,0,114158,'Canale Monterano','Italy','IT','Canale Monterano (Italy)',1,1,0),(14294,0,114159,'Canapville','France','FR','Canapville (France)',1,1,0),(14295,0,114160,'Canari','France','FR','Canari (France)',1,1,0),(14296,4957,114161,'Canastota','United States of America','US','Canastota (United States of America)',1,1,0),(14297,0,114162,'Canavieiras','Brazil','BR','Canavieiras (Brazil)',1,1,0),(14298,4959,114163,'Canberra','Australia','AU','Canberra (Australia)',1,1,0),(14299,4966,114164,'Candas','Spain','ES','Candas (Spain)',1,1,0),(14300,0,114165,'Canet de Mar','Spain','ES','Canet de Mar (Spain)',1,1,0),(14301,4992,114166,'Cangey','France','FR','Cangey (France)',1,1,0),(14302,5001,114167,'Cankiri','Turkey','TR','Cankiri (Turkey)',1,1,0),(14303,5005,114168,'Cannes','France','FR','Cannes (France)',1,1,0),(14304,0,114169,'Cannich','United Kingdom','UK','Cannich (United Kingdom)',1,1,0),(14305,5012,114170,'Cannobio','Italy','IT','Cannobio (Italy)',1,1,0),(14306,0,114171,'Cannon Falls','United States of America','US','Cannon Falls (United States of America)',1,1,0),(14307,5016,114172,'Canoa Quebrada','Brazil','BR','Canoa Quebrada (Brazil)',1,1,0),(14308,5019,114173,'Canon City','United States of America','US','Canon City (United States of America)',1,1,0),(14309,5024,114174,'Canosa di Puglia','Italy','IT','Canosa di Puglia (Italy)',1,1,0),(14310,0,114175,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(14311,0,114176,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(14312,30661,114177,'Canyon Point','United States of America','US','Canyon Point (United States of America)',1,1,0),(14313,0,114178,'Cap Sani','Greece','GR','Cap Sani (Greece)',1,1,0),(14314,5058,114179,'Capbreton','France','FR','Capbreton (France)',1,1,0),(14315,5062,114180,'Capdenac','France','FR','Capdenac (France)',1,1,0),(14316,0,114181,'Cape Anguille','Canada','CA','Cape Anguille (Canada)',1,1,0),(14317,0,114182,'Cape Coral','United States of America','US','Cape Coral (United States of America)',1,1,0),(14318,0,114183,'Cape Haze','United States of America','US','Cape Haze (United States of America)',1,1,0),(14319,0,114184,'Cape Leveque','Australia','AU','Cape Leveque (Australia)',1,1,0),(14320,0,114185,'Capelle aan den IJssel','Netherlands','NL','Capelle aan den IJssel (Netherlands)',1,1,0),(14321,5078,114186,'Capileira','Spain','ES','Capileira (Spain)',1,1,0),(14322,0,114187,'Capim Branco','Brazil','BR','Capim Branco (Brazil)',1,1,0),(14323,5095,114188,'Cappella Maggiore','Italy','IT','Cappella Maggiore (Italy)',1,1,0),(14324,0,114189,'Cappoquin','Ireland','IE','Cappoquin (Ireland)',1,1,0),(14325,0,114190,'Capriana','Italy','IT','Capriana (Italy)',1,1,0),(14326,0,114191,'Capu Piscului (Godeni)','Romania','RO','Capu Piscului (Godeni) (Romania)',1,1,0),(14327,5123,114192,'Carantec','France','FR','Carantec (France)',1,1,0),(14328,5137,114193,'Carcavelos','Portugal','PT','Carcavelos (Portugal)',1,1,0),(14329,0,114194,'Careiro','Brazil','BR','Careiro (Brazil)',1,1,0),(14330,0,114195,'Cariati Marina','Italy','IT','Cariati Marina (Italy)',1,1,0),(14331,5187,114196,'Carmagnola','Italy','IT','Carmagnola (Italy)',1,1,0),(14332,0,114197,'Carndonagh','Ireland','IE','Carndonagh (Ireland)',1,1,0),(14333,0,114198,'Carnforth','United Kingdom','UK','Carnforth (United Kingdom)',1,1,0),(14334,0,114199,'Carnlough','United Kingdom','UK','Carnlough (United Kingdom)',1,1,0),(14335,0,114200,'Carolinensiel','Germany','DE','Carolinensiel (Germany)',1,1,0),(14336,0,114201,'Carpignano Salentino','Italy','IT','Carpignano Salentino (Italy)',1,1,0),(14337,5242,114202,'Carrick-on-Shannon','Ireland','IE','Carrick-on-Shannon (Ireland)',1,1,0),(14338,5248,114203,'Carrigart','Ireland','IE','Carrigart (Ireland)',1,1,0),(14339,5261,114204,'Carsac-Aillac','France','FR','Carsac-Aillac (France)',1,1,0),(14340,0,114205,'Carson','United States of America','US','Carson (United States of America)',1,1,0),(14341,0,114206,'Cartago','Colombia','CO','Cartago (Colombia)',1,1,0),(14342,5267,114207,'Cartajima','Spain','ES','Cartajima (Spain)',1,1,0),(14343,5279,114208,'Carvoeiro','Portugal','PT','Carvoeiro (Portugal)',1,1,0),(14344,5281,114209,'Caryville','United States of America','US','Caryville (United States of America)',1,1,0),(14345,5283,114210,'Casa Grande','United States of America','US','Casa Grande (United States of America)',1,1,0),(14346,0,114211,'Casabianca','Italy','IT','Casabianca (Italy)',1,1,0),(14347,0,114212,'Casalborgone','Italy','IT','Casalborgone (Italy)',1,1,0),(14348,5289,114213,'Casale Monferrato','Italy','IT','Casale Monferrato (Italy)',1,1,0),(14349,5292,114214,'Casalnuovo di Napoli','Italy','IT','Casalnuovo di Napoli (Italy)',1,1,0),(14350,5293,114215,'Casamassima','Italy','IT','Casamassima (Italy)',1,1,0),(14351,0,114216,'Casas de los Pinos','Spain','ES','Casas de los Pinos (Spain)',1,1,0),(14352,0,114217,'Casas de Santa Cruz','Spain','ES','Casas de Santa Cruz (Spain)',1,1,0),(14353,5317,114218,'Casey','United States of America','US','Casey (United States of America)',1,1,0),(14354,5332,114219,'Casoria','Italy','IT','Casoria (Italy)',1,1,0),(14355,0,114220,'Caspoggio','Italy','IT','Caspoggio (Italy)',1,1,0),(14356,5353,114221,'Castaic','United States of America','US','Castaic (United States of America)',1,1,0),(14357,5356,114222,'Castaway Island','Fiji Islands','FJ','Castaway Island (Fiji Islands)',1,1,0),(14358,0,114223,'Casteil','France','FR','Casteil (France)',1,1,0),(14359,30680,114224,'Castel Maggiore','Italy','IT','Castel Maggiore (Italy)',1,1,0),(14360,30682,114225,'Castel San Giovanni','Italy','IT','Castel San Giovanni (Italy)',1,1,0),(14361,0,114226,'Castelfalfi','Italy','IT','Castelfalfi (Italy)',1,1,0),(14362,5364,114227,'Castelfiorentino','Italy','IT','Castelfiorentino (Italy)',1,1,0),(14363,0,114228,'Casteljau','France','FR','Casteljau (France)',1,1,0),(14364,5369,114229,'Castellana Grotte','Italy','IT','Castellana Grotte (Italy)',1,1,0),(14365,0,114230,'Castellinaldo','Italy','IT','Castellinaldo (Italy)',1,1,0),(14366,5389,114231,'Castelnau-de-Montmiral','France','FR','Castelnau-de-Montmiral (France)',1,1,0),(14367,0,114232,'Castelnuovo Calcea','Italy','IT','Castelnuovo Calcea (Italy)',1,1,0),(14368,0,114233,'Castelnuovo di Garfagnana','Italy','IT','Castelnuovo di Garfagnana (Italy)',1,1,0),(14369,5399,114234,'Castelvecchio Pascoli','Italy','IT','Castelvecchio Pascoli (Italy)',1,1,0),(14370,0,114235,'Champeaux','France','FR','Champeaux (France)',1,1,0),(14371,0,114236,'Champtoce-sur-Loire','France','FR','Champtoce-sur-Loire (France)',1,1,0),(14372,5761,114237,'Chamrousse','France','FR','Chamrousse (France)',1,1,0),(14373,0,114238,'Chanchamayo','Peru','PE','Chanchamayo (Peru)',1,1,0),(14374,5772,114239,'Changde','China','CN','Changde (China)',1,1,0),(14375,5786,114240,'Changzhi','China','CN','Changzhi (China)',1,1,0),(14376,5790,114241,'Chania','Greece','GR','Chania (Greece)',1,1,0),(14377,0,114242,'Chanty-Mansijsk','Russia','RU','Chanty-Mansijsk (Russia)',1,1,0),(14378,5834,114243,'Charenton-le-Pont','France','FR','Charenton-le-Pont (France)',1,1,0),(14379,0,114244,'Charleston','New Zealand','NZ','Charleston (New Zealand)',1,1,0),(14380,5877,114245,'Chartres','France','FR','Chartres (France)',1,1,0),(14381,0,114246,'Charzykowy','Poland','PL','Charzykowy (Poland)',1,1,0),(14382,0,114247,'Chateau Richer','Canada','CA','Chateau Richer (Canada)',1,1,0),(14383,5894,114248,'Chateaubernard','France','FR','Chateaubernard (France)',1,1,0),(14384,0,114249,'Chaumont-sur-Loire','France','FR','Chaumont-sur-Loire (France)',1,1,0),(14385,0,114250,'Chaunay','France','FR','Chaunay (France)',1,1,0),(14386,5950,114251,'Chautauqua','United States of America','US','Chautauqua (United States of America)',1,1,0),(14387,5965,114252,'Cheboygan','United States of America','US','Cheboygan (United States of America)',1,1,0),(14388,5978,114253,'Chelmsford','United States of America','US','Chelmsford (United States of America)',1,1,0),(14389,5982,114254,'Chelsea','United States of America','US','Chelsea (United States of America)',1,1,0),(14390,6001,114255,'Chenoa','United States of America','US','Chenoa (United States of America)',1,1,0),(14391,6004,114256,'Chenzhou','China','CN','Chenzhou (China)',1,1,0),(14392,6012,114257,'Cherating','Malaysia','MY','Cherating (Malaysia)',1,1,0),(14393,6014,114258,'Cherbourg','France','FR','Cherbourg (France)',1,1,0),(14394,6031,114259,'Chesaning','United States of America','US','Chesaning (United States of America)',1,1,0),(14395,0,114260,'Chesapeake City','United States of America','US','Chesapeake City (United States of America)',1,1,0),(14396,6036,114261,'Cheshire','United States of America','US','Cheshire (United States of America)',1,1,0),(14397,6052,114262,'Chetek','United States of America','US','Chetek (United States of America)',1,1,0),(14398,0,114263,'Chevilly','France','FR','Chevilly (France)',1,1,0),(14399,0,114264,'Chiang Khong','Thailand','TH','Chiang Khong (Thailand)',1,1,0),(14400,0,114265,'Chiarano','Italy','IT','Chiarano (Italy)',1,1,0),(14401,6097,114266,'Chiclayo','Peru','PE','Chiclayo (Peru)',1,1,0),(14402,0,114267,'Chico','United States of America','US','Chico (United States of America)',1,1,0),(14403,6106,114268,'Chiesa in Valmalenco','Italy','IT','Chiesa in Valmalenco (Italy)',1,1,0),(14404,6107,114269,'Chieti','Italy','IT','Chieti (Italy)',1,1,0),(14405,6115,114270,'Chilches','Spain','ES','Chilches (Spain)',1,1,0),(14406,0,114271,'Chile Chico','Chile','CL','Chile Chico (Chile)',1,1,0),(14407,6196,114273,'Chiusanico','Italy','IT','Chiusanico (Italy)',1,1,0),(14408,6200,114274,'Chivasso','Italy','IT','Chivasso (Italy)',1,1,0),(14409,0,114275,'Chobe River','Botswana','BW','Chobe River (Botswana)',1,1,0),(14410,6212,114276,'Cholet','France','FR','Cholet (France)',1,1,0),(14411,0,114277,'Choppington','United Kingdom','UK','Choppington (United Kingdom)',1,1,0),(14412,6229,114278,'Chorin','Germany','DE','Chorin (Germany)',1,1,0),(14413,0,114279,'Chrastava','Czech Republic','CZ','Chrastava (Czech Republic)',1,1,0),(14414,0,114280,'Chuini Ruins/Bububu','Tanzania','TZ','Chuini Ruins/Bububu (Tanzania)',1,1,0),(14415,0,114281,'Churston Ferrers','United Kingdom','UK','Churston Ferrers (United Kingdom)',1,1,0),(14416,0,114282,'Chynowie','Poland','PL','Chynowie (Poland)',1,1,0),(14417,0,114283,'Cianorte','Brazil','BR','Cianorte (Brazil)',1,1,0),(14418,0,114284,'Ciater','Indonesia','ID','Ciater (Indonesia)',1,1,0),(14419,6318,114285,'Cincinnati','United States of America','US','Cincinnati (United States of America)',1,1,0),(14420,6325,114286,'Cinquale','Italy','IT','Cinquale (Italy)',1,1,0),(14421,0,114287,'Cioccaro di Penango','Italy','IT','Cioccaro di Penango (Italy)',1,1,0),(14422,6334,114288,'Circleville','United States of America','US','Circleville (United States of America)',1,1,0),(14423,6341,114289,'Cisco','United States of America','US','Cisco (United States of America)',1,1,0),(14424,0,114290,'Ciudad de la Costa','Uruguay','UY','Ciudad de la Costa (Uruguay)',1,1,0),(14425,0,114291,'Ciudad Juarez','Mexico','MX','Ciudad Juarez (Mexico)',1,1,0),(14426,0,114292,'Ciudad Obregon','Mexico','MX','Ciudad Obregon (Mexico)',1,1,0),(14427,0,114293,'Ciudad Ojeda','Venezuela','VE','Ciudad Ojeda (Venezuela)',1,1,0),(14428,0,114294,'Civitella d\'Agliano','Italy','IT','Civitella d\'Agliano (Italy)',1,1,0),(14429,0,114295,'Clapham','United Kingdom','UK','Clapham (United Kingdom)',1,1,0),(14430,0,114296,'Claremont','United States of America','US','Claremont (United States of America)',1,1,0),(14431,0,114297,'Claremont','United States of America','US','Claremont (United States of America)',1,1,0),(14432,6393,114298,'Clarence','United States of America','US','Clarence (United States of America)',1,1,0),(14433,6399,114299,'Clarens','Switzerland','CH','Clarens (Switzerland)',1,1,0),(14434,6408,114300,'Clarkesville','United States of America','US','Clarkesville (United States of America)',1,1,0),(14435,6411,114301,'Clarksdale','United States of America','US','Clarksdale (United States of America)',1,1,0),(14436,6417,114302,'Clausthal-Zellerfeld','Germany','DE','Clausthal-Zellerfeld (Germany)',1,1,0),(14437,6421,114303,'Claviere','Italy','IT','Claviere (Italy)',1,1,0),(14438,6425,114304,'Claxton','United States of America','US','Claxton (United States of America)',1,1,0),(14439,6430,114305,'Claymont','United States of America','US','Claymont (United States of America)',1,1,0),(14440,6442,114306,'Clearlake','United States of America','US','Clearlake (United States of America)',1,1,0),(14441,0,114307,'Cleckheaton','United Kingdom','UK','Cleckheaton (United Kingdom)',1,1,0),(14442,6455,114308,'Clelles','France','FR','Clelles (France)',1,1,0),(14443,6457,114309,'Clemson','United States of America','US','Clemson (United States of America)',1,1,0),(14444,0,114310,'Clevedon','United Kingdom','UK','Clevedon (United Kingdom)',1,1,0),(14445,0,114311,'Cleveland','United States of America','US','Cleveland (United States of America)',1,1,0),(14446,0,114312,'Cleveland','United States of America','US','Cleveland (United States of America)',1,1,0),(14447,6476,114313,'Clifden','Ireland','IE','Clifden (Ireland)',1,1,0),(14448,0,114314,'Clifton','United States of America','US','Clifton (United States of America)',1,1,0),(14449,0,114315,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14450,0,114316,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14451,0,114317,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14452,0,114318,'Clinton B.C.','Canada','CA','Clinton B.C. (Canada)',1,1,0),(14453,6500,114319,'Cloquet','United States of America','US','Cloquet (United States of America)',1,1,0),(14454,0,114320,'Clough','Ireland','IE','Clough (Ireland)',1,1,0),(14455,0,114321,'Cluj Napoca','Romania','RO','Cluj Napoca (Romania)',1,1,0),(14456,0,114322,'Cluses','France','FR','Cluses (France)',1,1,0),(14457,6530,114323,'Coarsegold','United States of America','US','Coarsegold (United States of America)',1,1,0),(14458,0,114324,'Coburg North','Australia','AU','Coburg North (Australia)',1,1,0),(14459,0,114325,'Cochamo','Chile','CL','Cochamo (Chile)',1,1,0),(14460,6592,114327,'Coffs Harbour','Australia','AU','Coffs Harbour (Australia)',1,1,0),(14461,6601,114328,'Cogollos','Spain','ES','Cogollos (Spain)',1,1,0),(14462,6604,114329,'Cohasset','United States of America','US','Cohasset (United States of America)',1,1,0),(14463,0,114330,'Coi di Zoldo Alto','Italy','IT','Coi di Zoldo Alto (Italy)',1,1,0),(14464,6631,114331,'Coldwater','United States of America','US','Coldwater (United States of America)',1,1,0),(14465,6636,114332,'Coleman','United States of America','US','Coleman (United States of America)',1,1,0),(14466,6641,114333,'Colfax','United States of America','US','Colfax (United States of America)',1,1,0),(14467,6659,114334,'Colleville-sur-Mer','France','FR','Colleville-sur-Mer (France)',1,1,0),(14468,6674,114335,'Collooney','Ireland','IE','Collooney (Ireland)',1,1,0),(14469,0,114336,'Colognora','Italy','IT','Colognora (Italy)',1,1,0),(14470,6691,114337,'Colon','Argentina','AR','Colon (Argentina)',1,1,0),(14471,6699,114338,'Colonial Beach','United States of America','US','Colonial Beach (United States of America)',1,1,0),(14472,0,114339,'Colonie','United States of America','US','Colonie (United States of America)',1,1,0),(14473,0,114340,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(14474,0,114341,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(14475,6709,114342,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(14476,0,114343,'Cherry Valley','United States of America','US','Cherry Valley (United States of America)',1,1,0),(14477,0,114344,'Cherson','Ukraine','UA','Cherson (Ukraine)',1,1,0),(14478,0,114345,'Chesapeake Beach','United States of America','US','Chesapeake Beach (United States of America)',1,1,0),(14479,0,114346,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(14480,0,114347,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(14481,6047,114348,'Chestertown','United States of America','US','Chestertown (United States of America)',1,1,0),(14482,6068,114349,'Chezard-Saint-Martin','Switzerland','CH','Chezard-Saint-Martin (Switzerland)',1,1,0),(14483,0,114350,'Chez-le-Bart','Switzerland','CH','Chez-le-Bart (Switzerland)',1,1,0),(14484,0,114351,'Chiajna','Romania','RO','Chiajna (Romania)',1,1,0),(14485,0,114352,'Chiang Saen','Thailand','TH','Chiang Saen (Thailand)',1,1,0),(14486,0,114353,'Chibi','China','CN','Chibi (China)',1,1,0),(14487,6088,114354,'Chichen Itza','Mexico','MX','Chichen Itza (Mexico)',1,1,0),(14488,6112,114355,'Chihuahua','Mexico','MX','Chihuahua (Mexico)',1,1,0),(14489,6122,114356,'Chillan','Chile','CL','Chillan (Chile)',1,1,0),(14490,6150,114358,'Chino','Japan','JP','Chino (Japan)',1,1,0),(14491,0,114359,'Chinon','France','FR','Chinon (France)',1,1,0),(14492,6160,114360,'Chipley','United States of America','US','Chipley (United States of America)',1,1,0),(14493,0,114361,'Chippenham','United Kingdom','UK','Chippenham (United Kingdom)',1,1,0),(14494,0,114362,'Chirocastello','Greece','GR','Chirocastello (Greece)',1,1,0),(14495,6197,114363,'Chiusdino','Italy','IT','Chiusdino (Italy)',1,1,0),(14496,6202,114364,'Chizhou','China','CN','Chizhou (China)',1,1,0),(14497,0,114365,'Choma','Zambia','ZM','Choma (Zambia)',1,1,0),(14498,0,114366,'Choshi','Japan','JP','Choshi (Japan)',1,1,0),(14499,6240,114367,'Chowchilla','United States of America','US','Chowchilla (United States of America)',1,1,0),(14500,0,114368,'Chrissi Ammoudia / Golden Beach','Greece','GR','Chrissi Ammoudia / Golden Beach (Greece)',1,1,0),(14501,0,114369,'Christes','Germany','DE','Christes (Germany)',1,1,0),(14502,0,114370,'Chubinskoe','Ukraine','UA','Chubinskoe (Ukraine)',1,1,0),(14503,0,114371,'Churt','United Kingdom','UK','Churt (United Kingdom)',1,1,0),(14504,6292,114372,'Cibiana di Cadore','Italy','IT','Cibiana di Cadore (Italy)',1,1,0),(14505,0,114373,'Cillorigo de Liebana','Spain','ES','Cillorigo de Liebana (Spain)',1,1,0),(14506,0,114374,'Cirella','Italy','IT','Cirella (Italy)',1,1,0),(14507,0,114375,'Citrusdal','South Africa','ZA','Citrusdal (South Africa)',1,1,0),(14508,0,114376,'Ciudad Constitucion','Mexico','MX','Ciudad Constitucion (Mexico)',1,1,0),(14509,0,114377,'Clacton-on-Sea','United Kingdom','UK','Clacton-on-Sea (United Kingdom)',1,1,0),(14510,6373,114378,'Clairmont','Canada','CA','Clairmont (Canada)',1,1,0),(14511,0,114379,'Clairton','United States of America','US','Clairton (United States of America)',1,1,0),(14512,6374,114380,'Claix','France','FR','Claix (France)',1,1,0),(14513,6385,114381,'Clare','United States of America','US','Clare (United States of America)',1,1,0),(14514,6410,114382,'Clarksburg','United States of America','US','Clarksburg (United States of America)',1,1,0),(14515,6414,114383,'Clarksville','United States of America','US','Clarksville (United States of America)',1,1,0),(14516,6426,114384,'Claxton Bay','Trinidad and Tobago','TT','Claxton Bay (Trinidad and Tobago)',1,1,0),(14517,6431,114385,'Claypool Hill','United States of America','US','Claypool Hill (United States of America)',1,1,0),(14518,6433,114386,'Clayton','United States of America','US','Clayton (United States of America)',1,1,0),(14519,6437,114387,'Clear Lake','United States of America','US','Clear Lake (United States of America)',1,1,0),(14520,6440,114388,'Clearbrook','Canada','CA','Clearbrook (Canada)',1,1,0),(14521,0,114389,'Cleator','United Kingdom','UK','Cleator (United Kingdom)',1,1,0),(14522,6450,114390,'Clecy','France','FR','Clecy (France)',1,1,0),(14523,0,114391,'Clifton','United Kingdom','UK','Clifton (United Kingdom)',1,1,0),(14524,0,114392,'Clifton Park','United States of America','US','Clifton Park (United States of America)',1,1,0),(14525,0,114393,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14526,0,114394,'Clitheroe','United Kingdom','UK','Clitheroe (United Kingdom)',1,1,0),(14527,0,114395,'Clogheen','Ireland','IE','Clogheen (Ireland)',1,1,0),(14528,6493,114396,'Clonakilty','Ireland','IE','Clonakilty (Ireland)',1,1,0),(14529,6505,114397,'Cloverdale','United States of America','US','Cloverdale (United States of America)',1,1,0),(14530,0,114398,'Coatbridge','United Kingdom','UK','Coatbridge (United Kingdom)',1,1,0),(14531,0,114399,'Cobbenrode','Germany','DE','Cobbenrode (Germany)',1,1,0),(14532,6551,114400,'Coburg','Germany','DE','Coburg (Germany)',1,1,0),(14533,6556,114401,'Cochabamba','Bolivia','BO','Cochabamba (Bolivia)',1,1,0),(14534,6560,114402,'Cochem','Germany','DE','Cochem (Germany)',1,1,0),(14535,0,114403,'Cockermouth','United Kingdom','UK','Cockermouth (United Kingdom)',1,1,0),(14536,6570,114404,'Cockeysville','United States of America','US','Cockeysville (United States of America)',1,1,0),(14537,6575,114405,'Cocoa','United States of America','US','Cocoa (United States of America)',1,1,0),(14538,0,114406,'Coconut Beach','Aruba','AW','Coconut Beach (Aruba)',1,1,0),(14539,0,114407,'Coesfeld','Germany','DE','Coesfeld (Germany)',1,1,0),(14540,6611,114408,'Coin','Spain','ES','Coin (Spain)',1,1,0),(14541,0,114409,'Coings','France','FR','Coings (France)',1,1,0),(14542,0,114410,'Cointrin','Switzerland','CH','Cointrin (Switzerland)',1,1,0),(14543,0,114411,'Coleshill','United Kingdom','UK','Coleshill (United Kingdom)',1,1,0),(14544,6642,114412,'Colico','Italy','IT','Colico (Italy)',1,1,0),(14545,0,114413,'College Park','United States of America','US','College Park (United States of America)',1,1,0),(14546,6653,114414,'Collegien','France','FR','Collegien (France)',1,1,0),(14547,0,114415,'Colleoli','Italy','IT','Colleoli (Italy)',1,1,0),(14548,0,114416,'Colleretto Giacosa','Italy','IT','Colleretto Giacosa (Italy)',1,1,0),(14549,0,114417,'Collie','Australia','AU','Collie (Australia)',1,1,0),(14550,6665,114418,'Collinas','Italy','IT','Collinas (Italy)',1,1,0),(14551,0,114419,'Colombier NE','Switzerland','CH','Colombier NE (Switzerland)',1,1,0),(14552,0,114420,'Colonia (Yap)','Micronesia','FM','Colonia (Yap) (Micronesia)',1,1,0),(14553,0,114421,'Colonia del Sacramento','Uruguay','UY','Colonia del Sacramento (Uruguay)',1,1,0),(14554,0,114422,'Colonia Sant Jordi','Spain','ES','Colonia Sant Jordi (Spain)',1,1,0),(14555,0,114423,'Colonnella','Italy','IT','Colonnella (Italy)',1,1,0),(14556,0,114424,'Colroy-la-Roche','France','FR','Colroy-la-Roche (France)',1,1,0),(14557,0,114425,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(14558,6712,114426,'Colville','United States of America','US','Colville (United States of America)',1,1,0),(14559,6716,114427,'Coly','France','FR','Coly (France)',1,1,0),(14560,0,114428,'Comano','Switzerland','CH','Comano (Switzerland)',1,1,0),(14561,0,114429,'Comano Terme','Italy','IT','Comano Terme (Italy)',1,1,0),(14562,6723,114430,'Comares','Spain','ES','Comares (Spain)',1,1,0),(14563,0,114431,'Combarro','Spain','ES','Combarro (Spain)',1,1,0),(14564,6728,114432,'Combloux','France','FR','Combloux (France)',1,1,0),(14565,6740,114433,'Commerce','United States of America','US','Commerce (United States of America)',1,1,0),(14566,0,114434,'Conca dei Marini','Italy','IT','Conca dei Marini (Italy)',1,1,0),(14567,0,114435,'Conca Verde','Italy','IT','Conca Verde (Italy)',1,1,0),(14568,6770,114436,'Concon','Chile','CL','Concon (Chile)',1,1,0),(14569,6771,114437,'Concord','United States of America','US','Concord (United States of America)',1,1,0),(14570,6810,114438,'Connelles','France','FR','Connelles (France)',1,1,0),(14571,6813,114439,'Connemara','Ireland','IE','Connemara (Ireland)',1,1,0),(14572,6824,114440,'Conshohocken','United States of America','US','Conshohocken (United States of America)',1,1,0),(14573,0,114441,'Contes','France','FR','Contes (France)',1,1,0),(14574,6843,114442,'Contrexeville','France','FR','Contrexeville (France)',1,1,0),(14575,0,114443,'Conway','United States of America','US','Conway (United States of America)',1,1,0),(14576,6851,114444,'Coober Pedy','Australia','AU','Coober Pedy (Australia)',1,1,0),(14577,6856,114445,'Cookeville','United States of America','US','Cookeville (United States of America)',1,1,0),(14578,0,114446,'Cooks Beach','New Zealand','NZ','Cooks Beach (New Zealand)',1,1,0),(14579,0,114447,'Coolaney','Ireland','IE','Coolaney (Ireland)',1,1,0),(14580,0,114448,'Coopernook','Australia','AU','Coopernook (Australia)',1,1,0),(14581,6876,114449,'Cooperstown','United States of America','US','Cooperstown (United States of America)',1,1,0),(14582,6888,114450,'Copanello','Italy','IT','Copanello (Italy)',1,1,0),(14583,0,114451,'Copey De Dota','Costa Rica','CR','Copey De Dota (Costa Rica)',1,1,0),(14584,6900,114452,'Coppet','Switzerland','CH','Coppet (Switzerland)',1,1,0),(14585,5516,114453,'Cayenne','French Guiana','GF','Cayenne (French Guiana)',1,1,0),(14586,5530,114454,'Cazaubon','France','FR','Cazaubon (France)',1,1,0),(14587,0,114455,'Cedar Lake','United States of America','US','Cedar Lake (United States of America)',1,1,0),(14588,5569,114456,'Celigny','Switzerland','CH','Celigny (Switzerland)',1,1,0),(14589,0,114457,'Centallo','Italy','IT','Centallo (Italy)',1,1,0),(14590,5583,114458,'Centennial','United States of America','US','Centennial (United States of America)',1,1,0),(14591,5586,114459,'Centerville','United States of America','US','Centerville (United States of America)',1,1,0),(14592,0,114460,'Centerville','United States of America','US','Centerville (United States of America)',1,1,0),(14593,0,114461,'Central Islip','United States of America','US','Central Islip (United States of America)',1,1,0),(14594,5615,114462,'Cercola','Italy','IT','Cercola (Italy)',1,1,0),(14595,5620,114463,'Ceret','France','FR','Ceret (France)',1,1,0),(14596,5623,114464,'Ceriale','Italy','IT','Ceriale (Italy)',1,1,0),(14597,0,114465,'Cerilly','France','FR','Cerilly (France)',1,1,0),(14598,5628,114466,'Cerler','Spain','ES','Cerler (Spain)',1,1,0),(14599,5639,114467,'Cerritos','United States of America','US','Cerritos (United States of America)',1,1,0),(14600,0,114468,'Cervar-Porat','Croatia','HR','Cervar-Porat (Croatia)',1,1,0),(14601,0,114469,'Cervinia','Italy','IT','Cervinia (Italy)',1,1,0),(14602,5654,114470,'Cesario Lange','Brazil','BR','Cesario Lange (Brazil)',1,1,0),(14603,0,114471,'Cesmealti','Turkey','TR','Cesmealti (Turkey)',1,1,0),(14604,5667,114472,'Cetona','Italy','IT','Cetona (Italy)',1,1,0),(14605,0,114473,'Ceva','Italy','IT','Ceva (Italy)',1,1,0),(14606,5683,114474,'Chadds Ford','United States of America','US','Chadds Ford (United States of America)',1,1,0),(14607,5685,114475,'Chadron','United States of America','US','Chadron (United States of America)',1,1,0),(14608,5694,114476,'Chaintre','France','FR','Chaintre (France)',1,1,0),(14609,0,114477,'Chalais','France','FR','Chalais (France)',1,1,0),(14610,0,114478,'Chamalieres-sur-Loire','France','FR','Chamalieres-sur-Loire (France)',1,1,0),(14611,5723,114479,'Chambers','United States of America','US','Chambers (United States of America)',1,1,0),(14612,0,114480,'Chambon-sur-Lac','France','FR','Chambon-sur-Lac (France)',1,1,0),(14613,5746,114481,'Champigne','France','FR','Champigne (France)',1,1,0),(14614,5751,114482,'Champions Gate','United States of America','US','Champions Gate (United States of America)',1,1,0),(14615,0,114483,'Champlive','France','FR','Champlive (France)',1,1,0),(14616,5754,114484,'Champniers','France','FR','Champniers (France)',1,1,0),(14617,5755,114485,'Champoluc','Italy','IT','Champoluc (Italy)',1,1,0),(14618,5757,114486,'Champs-sur-Marne','France','FR','Champs-sur-Marne (France)',1,1,0),(14619,5771,114487,'Changchun','China','CN','Changchun (China)',1,1,0),(14620,0,114488,'Changuu Island','Tanzania','TZ','Changuu Island (Tanzania)',1,1,0),(14621,0,114489,'Chantada','Spain','ES','Chantada (Spain)',1,1,0),(14622,5801,114490,'Chanthaburi','Thailand','TH','Chanthaburi (Thailand)',1,1,0),(14623,5803,114491,'Chantilly','France','FR','Chantilly (France)',1,1,0),(14624,5802,114492,'Chantilly','United States of America','US','Chantilly (United States of America)',1,1,0),(14625,0,114493,'Chapada Diamantina Nationalpark','Brazil','BR','Chapada Diamantina Nationalpark (Brazil)',1,1,0),(14626,5833,114494,'Charente-Maritime','France','FR','Charente-Maritime (France)',1,1,0),(14627,5844,114495,'Charleroi','Belgium','BE','Charleroi (Belgium)',1,1,0),(14628,0,114496,'Charles City','United States of America','US','Charles City (United States of America)',1,1,0),(14629,5855,114497,'Charleville-Mezieres','France','FR','Charleville-Mezieres (France)',1,1,0),(14630,5864,114498,'Charlottetown','Canada','CA','Charlottetown (Canada)',1,1,0),(14631,0,114499,'Charlton','United Kingdom','UK','Charlton (United Kingdom)',1,1,0),(14632,0,114500,'Charmouth','United Kingdom','UK','Charmouth (United Kingdom)',1,1,0),(14633,5873,114501,'Charolles','France','FR','Charolles (France)',1,1,0),(14634,0,114502,'Chartham','United Kingdom','UK','Chartham (United Kingdom)',1,1,0),(14635,0,114503,'Chaspuzac','France','FR','Chaspuzac (France)',1,1,0),(14636,5892,114504,'Chateau-Arnoux-Saint-Auban','France','FR','Chateau-Arnoux-Saint-Auban (France)',1,1,0),(14637,5897,114505,'Chateau-Chinon','France','FR','Chateau-Chinon (France)',1,1,0),(14638,0,114506,'Chateaugay','France','FR','Chateaugay (France)',1,1,0),(14639,5901,114507,'Chateaugiron','France','FR','Chateaugiron (France)',1,1,0),(14640,0,114508,'Chateauneuf du Faou','France','FR','Chateauneuf du Faou (France)',1,1,0),(14641,0,114509,'Chatellerault','France','FR','Chatellerault (France)',1,1,0),(14642,0,114510,'Chatenois','France','FR','Chatenois (France)',1,1,0),(14643,5924,114511,'Chatfield','United States of America','US','Chatfield (United States of America)',1,1,0),(14644,5925,114512,'Chatham','United States of America','US','Chatham (United States of America)',1,1,0),(14645,5929,114513,'Chatillon','France','FR','Chatillon (France)',1,1,0),(14646,5939,114514,'Chau Doc','Vietnam','VN','Chau Doc (Vietnam)',1,1,0),(14647,0,114515,'Cheadle','United Kingdom','UK','Cheadle (United Kingdom)',1,1,0),(14648,5969,114516,'Cheektowaga','United States of America','US','Cheektowaga (United States of America)',1,1,0),(14649,0,114517,'Chef-Boutonne','France','FR','Chef-Boutonne (France)',1,1,0),(14650,0,114518,'Cheju-Do','South Korea','KR','Cheju-Do (South Korea)',1,1,0),(14651,5987,114519,'Chemainus','Canada','CA','Chemainus (Canada)',1,1,0),(14652,0,114520,'Chemal','Russia','RU','Chemal (Russia)',1,1,0),(14653,5996,114521,'Cheney','United States of America','US','Cheney (United States of America)',1,1,0),(14654,0,114522,'Chengjiang','China','CN','Chengjiang (China)',1,1,0),(14655,0,114524,'Cheshunt','United Kingdom','UK','Cheshunt (United Kingdom)',1,1,0),(14656,0,114525,'Chester','United Kingdom','UK','Chester (United Kingdom)',1,1,0),(14657,6055,114526,'Chetwynd','Canada','CA','Chetwynd (Canada)',1,1,0),(14658,6059,114527,'Cheverny','France','FR','Cheverny (France)',1,1,0),(14659,0,114528,'Chevetogne','Belgium','BE','Chevetogne (Belgium)',1,1,0),(14660,6066,114529,'Chexbres','Switzerland','CH','Chexbres (Switzerland)',1,1,0),(14661,0,114530,'Cheyneyville','United States of America','US','Cheyneyville (United States of America)',1,1,0),(14662,6073,114531,'Chianciano Terme','Italy','IT','Chianciano Terme (Italy)',1,1,0),(14663,6085,114532,'Chiba','Japan','JP','Chiba (Japan)',1,1,0),(14664,6100,114533,'Chicopee','United States of America','US','Chicopee (United States of America)',1,1,0),(14665,6121,114534,'Chillagoe','Australia','AU','Chillagoe (Australia)',1,1,0),(14666,0,114535,'Chilpancingo','Mexico','MX','Chilpancingo (Mexico)',1,1,0),(14667,6141,114536,'Chinauta','Colombia','CO','Chinauta (Colombia)',1,1,0),(14668,6142,114537,'Chincha Alta','Peru','PE','Chincha Alta (Peru)',1,1,0),(14669,6145,114538,'Chincoteague','United States of America','US','Chincoteague (United States of America)',1,1,0),(14670,0,114539,'Chintheche','Malawi','MW','Chintheche (Malawi)',1,1,0),(14671,0,114540,'Chisago','United States of America','US','Chisago (United States of America)',1,1,0),(14672,6183,114541,'Chitenay','France','FR','Chitenay (France)',1,1,0),(14673,0,114542,'Chivato','Mexico','MX','Chivato (Mexico)',1,1,0),(14674,0,114543,'Chocerady','Czech Republic','CZ','Chocerady (Czech Republic)',1,1,0),(14675,0,114544,'Choctaw','United States of America','US','Choctaw (United States of America)',1,1,0),(14676,0,114545,'Choeng Mon Beach','Thailand','TH','Choeng Mon Beach (Thailand)',1,1,0),(14677,6222,114546,'Chonburi','Thailand','TH','Chonburi (Thailand)',1,1,0),(14678,6227,114547,'Chorafakia','Greece','GR','Chorafakia (Greece)',1,1,0),(14679,6228,114548,'Chorges','France','FR','Chorges (France)',1,1,0),(14680,0,114549,'Chromonastiri','Greece','GR','Chromonastiri (Greece)',1,1,0),(14681,6253,114550,'Chtaura','Lebanon','LB','Chtaura (Lebanon)',1,1,0),(14682,0,114551,'Chubu','Japan','JP','Chubu (Japan)',1,1,0),(14683,0,114552,'Chulmleigh','United Kingdom','UK','Chulmleigh (United Kingdom)',1,1,0),(14684,6282,114553,'Chur','Switzerland','CH','Chur (Switzerland)',1,1,0),(14685,6293,114555,'Ciboure','France','FR','Ciboure (France)',1,1,0),(14686,0,114556,'Cide','Turkey','TR','Cide (Turkey)',1,1,0),(14687,6308,114557,'Cihuatlan','Mexico','MX','Cihuatlan (Mexico)',1,1,0),(14688,6309,114558,'Cikarang','Indonesia','ID','Cikarang (Indonesia)',1,1,0),(14689,6311,114559,'Cilaos','Reunion','RE','Cilaos (Reunion)',1,1,0),(14690,6313,114560,'Cilegon','Indonesia','ID','Cilegon (Indonesia)',1,1,0),(14691,6322,114561,'Cinisello Balsamo','Italy','IT','Cinisello Balsamo (Italy)',1,1,0),(14692,5492,114562,'Cavallino-Treporti','Italy','IT','Cavallino-Treporti (Italy)',1,1,0),(14693,5495,114563,'Cavareno','Italy','IT','Cavareno (Italy)',1,1,0),(14694,0,114564,'Cave','Italy','IT','Cave (Italy)',1,1,0),(14695,0,114565,'Cave Creek','United States of America','US','Cave Creek (United States of America)',1,1,0),(14696,0,114567,'Cayasta','Argentina','AR','Cayasta (Argentina)',1,1,0),(14697,0,114568,'Cazeres-sur-l\'Adour',NULL,NULL,'Cazeres-sur-l\'Adour ()',1,1,0),(14698,5537,114569,'CEBREROS','Spain','ES','CEBREROS (Spain)',1,1,0),(14699,0,114570,'Cebu City','Philippines','PH','Cebu City (Philippines)',1,1,0),(14700,0,114571,'Cecina Mare','Italy','IT','Cecina Mare (Italy)',1,1,0),(14701,0,114572,'Cedar City','United States of America','US','Cedar City (United States of America)',1,1,0),(14702,0,114573,'Cedar Falls','United States of America','US','Cedar Falls (United States of America)',1,1,0),(14703,5551,114574,'Cedartown','United States of America','US','Cedartown (United States of America)',1,1,0),(14704,0,114575,'Cederberg','South Africa','ZA','Cederberg (South Africa)',1,1,0),(14705,5555,114576,'Cefalu','Italy','IT','Cefalu (Italy)',1,1,0),(14706,5557,114577,'Cegled','Hungary','HU','Cegled (Hungary)',1,1,0),(14707,5564,114578,'Celbridge','Ireland','IE','Celbridge (Ireland)',1,1,0),(14708,5565,114579,'Celebration','United States of America','US','Celebration (United States of America)',1,1,0),(14709,0,114580,'Celle Ligure','Italy','IT','Celle Ligure (Italy)',1,1,0),(14710,0,114581,'Ceningan Island','Indonesia','ID','Ceningan Island (Indonesia)',1,1,0),(14711,0,114582,'Centerville','United States of America','US','Centerville (United States of America)',1,1,0),(14712,5607,114583,'Centreville','United States of America','US','Centreville (United States of America)',1,1,0),(14713,0,114584,'Ceraso','Italy','IT','Ceraso (Italy)',1,1,0),(14714,0,114585,'Ceresara','Italy','IT','Ceresara (Italy)',1,1,0),(14715,5621,114586,'Cerf Island','Seychelles','SC','Cerf Island (Seychelles)',1,1,0),(14716,5626,114587,'Cerkezkoy','Turkey','TR','Cerkezkoy (Turkey)',1,1,0),(14717,0,114588,'Cerna Hora','Czech Republic','CZ','Cerna Hora (Czech Republic)',1,1,0),(14718,0,114589,'Cerreto Guidi','Italy','IT','Cerreto Guidi (Italy)',1,1,0),(14719,5642,114590,'Cerro Maggiore','Italy','IT','Cerro Maggiore (Italy)',1,1,0),(14720,5647,114591,'Cervantes','Australia','AU','Cervantes (Australia)',1,1,0),(14721,0,114592,'Cervione','France','FR','Cervione (France)',1,1,0),(14722,0,114593,'Cervo','Spain','ES','Cervo (Spain)',1,1,0),(14723,5653,114594,'Cesano Boscone','Italy','IT','Cesano Boscone (Italy)',1,1,0),(14724,5655,114595,'Cesena','Italy','IT','Cesena (Italy)',1,1,0),(14725,5656,114596,'Cesenatico','Italy','IT','Cesenatico (Italy)',1,1,0),(14726,0,114597,'Ceska Kamenice','Czech Republic','CZ','Ceska Kamenice (Czech Republic)',1,1,0),(14727,0,114598,'Cesvaine','Latvia','LV','Cesvaine (Latvia)',1,1,0),(14728,5668,114599,'Cetraro','Italy','IT','Cetraro (Italy)',1,1,0),(14729,5674,114600,'Chablis','France','FR','Chablis (France)',1,1,0),(14730,0,114602,'Chalkidiki/Khalkidhiki','Greece','GR','Chalkidiki/Khalkidhiki (Greece)',1,1,0),(14731,5717,114603,'Chamalieres','France','FR','Chamalieres (France)',1,1,0),(14732,5728,114604,'Chamblee','United States of America','US','Chamblee (United States of America)',1,1,0),(14733,5729,114605,'Chambolle-Musigny','France','FR','Chambolle-Musigny (France)',1,1,0),(14734,0,114606,'Chambon-sur-Voueize','France','FR','Chambon-sur-Voueize (France)',1,1,0),(14735,5740,114607,'Champagnole','France','FR','Champagnole (France)',1,1,0),(14736,0,114608,'Champasak','LAOS','LA','Champasak (LAOS)',1,1,0),(14737,5756,114609,'Champoussin','Switzerland','CH','Champoussin (Switzerland)',1,1,0),(14738,5813,114610,'Chapareillan','France','FR','Chapareillan (France)',1,1,0),(14739,0,114611,'Chard','United Kingdom','UK','Chard (United Kingdom)',1,1,0),(14740,0,114612,'Charleston','United States of America','US','Charleston (United States of America)',1,1,0),(14741,5851,114613,'Charlestown','Ireland','IE','Charlestown (Ireland)',1,1,0),(14742,5857,114614,'Charlevoix','United States of America','US','Charlevoix (United States of America)',1,1,0),(14743,0,114615,'Charlotte Amalie','U.S. Virgin Islands',NULL,'Charlotte Amalie (U.S. Virgin Islands)',1,1,0),(14744,5861,114616,'Charlottenberg','Sweden','SE','Charlottenberg (Sweden)',1,1,0),(14745,5863,114617,'Charlottesville','United States of America','US','Charlottesville (United States of America)',1,1,0),(14746,0,114618,'Charneca da Caparica','Portugal','PT','Charneca da Caparica (Portugal)',1,1,0),(14747,0,114619,'Charny','France','FR','Charny (France)',1,1,0),(14748,0,114620,'Charters Towers','Australia','AU','Charters Towers (Australia)',1,1,0),(14749,5881,114621,'Chase','Canada','CA','Chase (Canada)',1,1,0),(14750,0,114622,'Chassagne-Montrachet','France','FR','Chassagne-Montrachet (France)',1,1,0),(14751,5886,114623,'Chasseneuil-du-Poitou','France','FR','Chasseneuil-du-Poitou (France)',1,1,0),(14752,0,114624,'Chassey-les-Montbozon','France','FR','Chassey-les-Montbozon (France)',1,1,0),(14753,0,114625,'Chassignelles','France','FR','Chassignelles (France)',1,1,0),(14754,5896,114626,'Chateaubriant','France','FR','Chateaubriant (France)',1,1,0),(14755,0,114627,'Chateaulin','France','FR','Chateaulin (France)',1,1,0),(14756,5913,114628,'Chateauroux','France','FR','Chateauroux (France)',1,1,0),(14757,5914,114629,'Chateau-Thierry','France','FR','Chateau-Thierry (France)',1,1,0),(14758,0,114630,'Chatel','France','FR','Chatel (France)',1,1,0),(14759,5922,114631,'Chatel-Saint-Denis','Switzerland','CH','Chatel-Saint-Denis (Switzerland)',1,1,0),(14760,0,114632,'Chatham','United Kingdom','UK','Chatham (United Kingdom)',1,1,0),(14761,5933,114633,'Chatsworth','United States of America','US','Chatsworth (United States of America)',1,1,0),(14762,0,114634,'Chatsworth','United States of America','US','Chatsworth (United States of America)',1,1,0),(14763,0,114635,'Chauffayer','France','FR','Chauffayer (France)',1,1,0),(14764,0,114636,'Chaungtha','Myanmar','MM','Chaungtha (Myanmar)',1,1,0),(14765,0,114637,'Chaweng Beach','Thailand','TH','Chaweng Beach (Thailand)',1,1,0),(14766,0,114638,'Chazemais','France','FR','Chazemais (France)',1,1,0),(14767,5967,114639,'Checotah','United States of America','US','Checotah (United States of America)',1,1,0),(14768,5990,114640,'Chemnitz','Germany','DE','Chemnitz (Germany)',1,1,0),(14769,0,114641,'Chenehutte-les-Tuffeaux','France','FR','Chenehutte-les-Tuffeaux (France)',1,1,0),(14770,6040,114642,'Chessy','France','FR','Chessy (France)',1,1,0),(14771,6044,114643,'Chesterfield','United States of America','US','Chesterfield (United States of America)',1,1,0),(14772,0,114644,'Chester-le-Street','United Kingdom','UK','Chester-le-Street (United Kingdom)',1,1,0),(14773,6046,114645,'Chesterton','United States of America','US','Chesterton (United States of America)',1,1,0),(14774,6058,114646,'Cheverly','United States of America','US','Cheverly (United States of America)',1,1,0),(14775,0,114647,'Chevigny-Saint-Sauveur','France','FR','Chevigny-Saint-Sauveur (France)',1,1,0),(14776,6060,114648,'Chevilly-Larue','France','FR','Chevilly-Larue (France)',1,1,0),(14777,6067,114649,'Cheyenne','United States of America','US','Cheyenne (United States of America)',1,1,0),(14778,6077,114650,'Chiapa de Corzo','Mexico','MX','Chiapa de Corzo (Mexico)',1,1,0),(14779,6081,114651,'Chiavari','Italy','IT','Chiavari (Italy)',1,1,0),(14780,0,114652,'Chiavenna','Italy','IT','Chiavenna (Italy)',1,1,0),(14781,6087,114653,'Chicago','United States of America','US','Chicago (United States of America)',1,1,0),(14782,0,114654,'Chichibu','Japan','JP','Chichibu (Japan)',1,1,0),(14783,6101,114655,'Chicoutimi','Canada','CA','Chicoutimi (Canada)',1,1,0),(14784,0,114656,'Chieming','Germany','DE','Chieming (Germany)',1,1,0),(14785,0,114657,'Chikushino','Japan','JP','Chikushino (Japan)',1,1,0),(14786,0,114658,'Chiliadou','Greece','GR','Chiliadou (Greece)',1,1,0),(14787,6126,114659,'Chillicothe','United States of America','US','Chillicothe (United States of America)',1,1,0),(14788,0,114661,'Chino Hills','United States of America','US','Chino Hills (United States of America)',1,1,0),(14789,0,114662,'Chintsa Bay','South Africa','ZA','Chintsa Bay (South Africa)',1,1,0),(14790,0,114663,'Chio','Spain','ES','Chio (Spain)',1,1,0),(14791,0,114664,'Chirnside','United Kingdom','UK','Chirnside (United Kingdom)',1,1,0),(14792,6190,114665,'Chittenden','United States of America','US','Chittenden (United States of America)',1,1,0),(14793,0,114666,'Chlorakas','Cyprus','CY','Chlorakas (Cyprus)',1,1,0),(14794,6205,114667,'Chocorua','United States of America','US','Chocorua (United States of America)',1,1,0),(14795,6210,114668,'Choisey','France','FR','Choisey (France)',1,1,0),(14796,5528,114669,'Cazalla de la Sierra','Spain','ES','Cazalla de la Sierra (Spain)',1,1,0),(14797,0,114670,'Cazouls-les-Beziers','France','FR','Cazouls-les-Beziers (France)',1,1,0),(14798,0,114671,'Cazzago','Italy','IT','Cazzago (Italy)',1,1,0),(14799,5549,114672,'Cedaredge','United States of America','US','Cedaredge (United States of America)',1,1,0),(14800,0,114673,'Cedeira','Spain','ES','Cedeira (Spain)',1,1,0),(14801,0,114674,'Ceglie Messapica','Italy','IT','Ceglie Messapica (Italy)',1,1,0),(14802,0,114675,'Cela','Angola','AO','Cela (Angola)',1,1,0),(14803,5563,114676,'Celaya','Mexico','MX','Celaya (Mexico)',1,1,0),(14804,5568,114677,'Celestun','Mexico','MX','Celestun (Mexico)',1,1,0),(14805,5572,114678,'Celje','Slovenia','SI','Celje (Slovenia)',1,1,0),(14806,5577,114679,'Cellers','Spain','ES','Cellers (Spain)',1,1,0),(14807,0,114680,'Cely-en-Biere','France','FR','Cely-en-Biere (France)',1,1,0),(14808,5585,114681,'Centerport','United States of America','US','Centerport (United States of America)',1,1,0),(14809,5589,114682,'Centola','Italy','IT','Centola (Italy)',1,1,0),(14810,0,114683,'Cepic','Croatia','HR','Cepic (Croatia)',1,1,0),(14811,0,114684,'Cerano Laghetto','Italy','IT','Cerano Laghetto (Italy)',1,1,0),(14812,0,114685,'Cerese di Virgilio','Italy','IT','Cerese di Virgilio (Italy)',1,1,0),(14813,5630,114686,'Cernay-la-Ville','France','FR','Cernay-la-Ville (France)',1,1,0),(14814,5633,114687,'Cerocahui','Mexico','MX','Cerocahui (Mexico)',1,1,0),(14815,0,114688,'Cerquiglino','Italy','IT','Cerquiglino (Italy)',1,1,0),(14816,5638,114689,'Cerrillos','United States of America','US','Cerrillos (United States of America)',1,1,0),(14817,5641,114690,'Cerro Colorado','Uruguay','UY','Cerro Colorado (Uruguay)',1,1,0),(14818,0,114691,'Cervello','Spain','ES','Cervello (Spain)',1,1,0),(14819,0,114692,'Cervignano Del Friuli','Italy','IT','Cervignano Del Friuli (Italy)',1,1,0),(14820,0,114693,'Cesano Maderno','Italy','IT','Cesano Maderno (Italy)',1,1,0),(14821,5664,114694,'Cestas','France','FR','Cestas (France)',1,1,0),(14822,0,114695,'Cetinje','Montenegro','ME','Cetinje (Montenegro)',1,1,0),(14823,5669,114696,'Ceuta','Spain','ES','Ceuta (Spain)',1,1,0),(14824,5671,114697,'Cha Am','Thailand','TH','Cha Am (Thailand)',1,1,0),(14825,0,114698,'Chachapoyas','Peru','PE','Chachapoyas (Peru)',1,1,0),(14826,0,114699,'Chagford','United Kingdom','UK','Chagford (United Kingdom)',1,1,0),(14827,5689,114700,'Chagny','France','FR','Chagny (France)',1,1,0),(14828,0,114701,'Chalfont St Peter','United Kingdom','UK','Chalfont St Peter (United Kingdom)',1,1,0),(14829,0,114702,'Chalkida','Greece','GR','Chalkida (Greece)',1,1,0),(14830,0,114704,'Chamouilley','France','FR','Chamouilley (France)',1,1,0),(14831,5744,114705,'Champery','Switzerland','CH','Champery (Switzerland)',1,1,0),(14832,5748,114706,'Champigny-sur-Marne','France','FR','Champigny-sur-Marne (France)',1,1,0),(14833,0,114707,'Chanioti','Greece','GR','Chanioti (Greece)',1,1,0),(14834,5795,114708,'Channelview','United States of America','US','Channelview (United States of America)',1,1,0),(14835,5799,114709,'Chantemerle-les-Grignan','France','FR','Chantemerle-les-Grignan (France)',1,1,0),(14836,5811,114710,'Chaozhou','China','CN','Chaozhou (China)',1,1,0),(14837,0,114711,'Chapeltown','United Kingdom','UK','Chapeltown (United Kingdom)',1,1,0),(14838,5824,114712,'Chaponnay','France','FR','Chaponnay (France)',1,1,0),(14839,0,114713,'Charing','United Kingdom','UK','Charing (United Kingdom)',1,1,0),(14840,0,114714,'Charkia','Greece','GR','Charkia (Greece)',1,1,0),(14841,0,114715,'Charles Town','United States of America','US','Charles Town (United States of America)',1,1,0),(14842,0,114716,'Charleston','United States of America','US','Charleston (United States of America)',1,1,0),(14843,5849,114717,'Charlestown','United States of America','US','Charlestown (United States of America)',1,1,0),(14844,0,114718,'Charlotte','United States of America','US','Charlotte (United States of America)',1,1,0),(14845,5888,114719,'Chassieu','France','FR','Chassieu (France)',1,1,0),(14846,0,114720,'Chastanier','France','FR','Chastanier (France)',1,1,0),(14847,5910,114721,'Chateauneuf-le-Rouge','France','FR','Chateauneuf-le-Rouge (France)',1,1,0),(14848,0,114722,'Chatel Guyon','France','FR','Chatel Guyon (France)',1,1,0),(14849,0,114723,'Chathill','United Kingdom','UK','Chathill (United Kingdom)',1,1,0),(14850,5931,114724,'Chatou','France','FR','Chatou (France)',1,1,0),(14851,0,114725,'Chattanooga','United States of America','US','Chattanooga (United States of America)',1,1,0),(14852,0,114726,'Chauchina','Spain','ES','Chauchina (Spain)',1,1,0),(14853,5940,114727,'Chaudes-Aigues','France','FR','Chaudes-Aigues (France)',1,1,0),(14854,5941,114728,'Chaudfontaine','Belgium','BE','Chaudfontaine (Belgium)',1,1,0),(14855,5949,114729,'Chaussin','France','FR','Chaussin (France)',1,1,0),(14856,5953,114730,'Chavannes-de-Bogis','Switzerland','CH','Chavannes-de-Bogis (Switzerland)',1,1,0),(14857,5955,114731,'Chavelot','France','FR','Chavelot (France)',1,1,0),(14858,0,114732,'Chazelles-sur-Lyon','France','FR','Chazelles-sur-Lyon (France)',1,1,0),(14859,0,114733,'Chelsea','United States of America','US','Chelsea (United States of America)',1,1,0),(14860,0,114734,'Chenceleiros','Portugal','PT','Chenceleiros (Portugal)',1,1,0),(14861,6013,114735,'Cheraw','United States of America','US','Cheraw (United States of America)',1,1,0),(14862,0,114736,'Cherepovets','Russia','RU','Cherepovets (Russia)',1,1,0),(14863,0,114737,'Cherry Hill','United States of America','US','Cherry Hill (United States of America)',1,1,0),(14864,0,114738,'Cheshire','United Kingdom','UK','Cheshire (United Kingdom)',1,1,0),(14865,6041,114739,'Cheste','Spain','ES','Cheste (Spain)',1,1,0),(14866,0,114740,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(14867,0,114741,'Chesterfield','United Kingdom','UK','Chesterfield (United Kingdom)',1,1,0),(14868,0,114742,'Cheval Blanc','France','FR','Cheval Blanc (France)',1,1,0),(14869,0,114743,'Cheville','France','FR','Cheville (France)',1,1,0),(14870,0,114744,'Chevroux','Switzerland','CH','Chevroux (Switzerland)',1,1,0),(14871,6091,114745,'Chichiriviche','Venezuela','VE','Chichiriviche (Venezuela)',1,1,0),(14872,0,114746,'Chilaw','Sri Lanka','LK','Chilaw (Sri Lanka)',1,1,0),(14873,6117,114747,'Childersburg','United States of America','US','Childersburg (United States of America)',1,1,0),(14874,0,114748,'Chilecito','Argentina','AR','Chilecito (Argentina)',1,1,0),(14875,0,114749,'Chillicothe','United States of America','US','Chillicothe (United States of America)',1,1,0),(14876,0,114750,'Chillicothe','United States of America','US','Chillicothe (United States of America)',1,1,0),(14877,6130,114751,'Chiloquin','United States of America','US','Chiloquin (United States of America)',1,1,0),(14878,6165,114752,'Chippewa Falls','United States of America','US','Chippewa Falls (United States of America)',1,1,0),(14879,0,114753,'Chitina','United States of America','US','Chitina (United States of America)',1,1,0),(14880,6188,114754,'Chittagong','Bangladesh','BD','Chittagong (Bangladesh)',1,1,0),(14881,0,114755,'Chitwan Nationalpark','Nepal','NP','Chitwan Nationalpark (Nepal)',1,1,0),(14882,0,114756,'Chocen','Czech Republic','CZ','Chocen (Czech Republic)',1,1,0),(14883,0,114757,'Chociwel','Poland','PL','Chociwel (Poland)',1,1,0),(14884,6218,114759,'Chomutov','Czech Republic','CZ','Chomutov (Czech Republic)',1,1,0),(14885,0,114760,'Choroni','Venezuela','VE','Choroni (Venezuela)',1,1,0),(14886,0,114761,'Choulakia','Greece','GR','Choulakia (Greece)',1,1,0),(14887,6246,114762,'Christiana','South Africa','ZA','Christiana (South Africa)',1,1,0),(14888,0,114763,'Chungking (Chongqing)','China','CN','Chungking (Chongqing) (China)',1,1,0),(14889,6280,114764,'Chuo-ku','Japan','JP','Chuo-ku (Japan)',1,1,0),(14890,0,114765,'Church Stretton','United Kingdom','UK','Church Stretton (United Kingdom)',1,1,0),(14891,0,114766,'Chust','Ukraine','UA','Chust (Ukraine)',1,1,0),(14892,6289,114767,'Chuzhou','China','CN','Chuzhou (China)',1,1,0),(14893,6291,114768,'Ciampino','Italy','IT','Ciampino (Italy)',1,1,0),(14894,0,114769,'Ciche','Poland','PL','Ciche (Poland)',1,1,0),(14895,6299,114770,'Ciechocinek','Poland','PL','Ciechocinek (Poland)',1,1,0),(14896,6304,114771,'Cierpice','Poland','PL','Cierpice (Poland)',1,1,0),(14897,0,114772,'Cisterna d\'Asti','Italy','IT','Cisterna d\'Asti (Italy)',1,1,0),(14898,0,114773,'Citta Sant\'Angelo','Italy','IT','Citta Sant\'Angelo (Italy)',1,1,0),(14899,0,114774,'Civate','Italy','IT','Civate (Italy)',1,1,0),(14900,6364,114775,'Civitavecchia','Italy','IT','Civitavecchia (Italy)',1,1,0),(14901,0,114776,'Civitella del Lago','Italy','IT','Civitella del Lago (Italy)',1,1,0),(14902,0,114777,'Clairvaux-les-Lacs','France','FR','Clairvaux-les-Lacs (France)',1,1,0),(14903,0,114778,'Chatillon-en-Bazois','France','FR','Chatillon-en-Bazois (France)',1,1,0),(14904,0,114779,'Chatillon-en-Michaille','France','FR','Chatillon-en-Michaille (France)',1,1,0),(14905,0,114780,'Chaumont-le-Bourg','France','FR','Chaumont-le-Bourg (France)',1,1,0),(14906,0,114781,'Chaumont-sur-Tharonne','France','FR','Chaumont-sur-Tharonne (France)',1,1,0),(14907,5970,114782,'Chefchaouen','Morocco','MA','Chefchaouen (Morocco)',1,1,0),(14908,0,114783,'Chemor','Malaysia','MY','Chemor (Malaysia)',1,1,0),(14909,5998,114784,'Chengdu','China','CN','Chengdu (China)',1,1,0),(14910,6002,114785,'Chenonceaux','France','FR','Chenonceaux (France)',1,1,0),(14911,0,114786,'Cherry Grove','United States of America','US','Cherry Grove (United States of America)',1,1,0),(14912,0,114787,'Chertsey','United Kingdom','UK','Chertsey (United Kingdom)',1,1,0),(14913,6053,114788,'Cheticamp','Canada','CA','Cheticamp (Canada)',1,1,0),(14914,6064,114789,'Chevy Chase','United States of America','US','Chevy Chase (United States of America)',1,1,0),(14915,0,114790,'Chiaverano D\'Ivrea','Italy','IT','Chiaverano D\'Ivrea (Italy)',1,1,0),(14916,0,114791,'Chicanna','Mexico','MX','Chicanna (Mexico)',1,1,0),(14917,0,114792,'Chichester','United Kingdom','UK','Chichester (United Kingdom)',1,1,0),(14918,6109,114794,'Chifeng','China','CN','Chifeng (China)',1,1,0),(14919,0,114795,'Chilamate','Costa Rica','CR','Chilamate (Costa Rica)',1,1,0),(14920,6118,114796,'Childress','United States of America','US','Childress (United States of America)',1,1,0),(14921,6131,114797,'Chilton','United States of America','US','Chilton (United States of America)',1,1,0),(14922,6133,114798,'Chimayo','United States of America','US','Chimayo (United States of America)',1,1,0),(14923,0,114799,'Chinchilla','Australia','AU','Chinchilla (Australia)',1,1,0),(14924,6151,114800,'Chino','United States of America','US','Chino (United States of America)',1,1,0),(14925,0,114802,'Chipping Campden','United Kingdom','UK','Chipping Campden (United Kingdom)',1,1,0),(14926,0,114805,'Chiusi Scalo','Italy','IT','Chiusi Scalo (Italy)',1,1,0),(14927,6201,114806,'Chivay','Peru','PE','Chivay (Peru)',1,1,0),(14928,0,114807,'Chivirico','Cuba','CU','Chivirico (Cuba)',1,1,0),(14929,0,114808,'Chiwa/Khiva','Uzbekistan','UZ','Chiwa/Khiva (Uzbekistan)',1,1,0),(14930,0,114809,'Choczewo','Poland','PL','Choczewo (Poland)',1,1,0),(14931,0,114810,'Chodova Plana','Czech Republic','CZ','Chodova Plana (Czech Republic)',1,1,0),(14932,6233,114812,'Chorzow','Poland','PL','Chorzow (Poland)',1,1,0),(14933,0,114813,'Chotesov','Czech Republic','CZ','Chotesov (Czech Republic)',1,1,0),(14934,0,114814,'Chotoviny','Czech Republic','CZ','Chotoviny (Czech Republic)',1,1,0),(14935,0,114815,'Chott Meriem','Tunisia','TN','Chott Meriem (Tunisia)',1,1,0),(14936,0,114816,'Choudetsi','Greece','GR','Choudetsi (Greece)',1,1,0),(14937,6242,114818,'Christ Church','Barbados','BB','Christ Church (Barbados)',1,1,0),(14938,0,114819,'Christchurch','United Kingdom','UK','Christchurch (United Kingdom)',1,1,0),(14939,6249,114820,'Christiansfeld','Denmark','DK','Christiansfeld (Denmark)',1,1,0),(14940,0,114821,'Chrzastowice','Poland','PL','Chrzastowice (Poland)',1,1,0),(14941,0,114822,'Chudovo','Russia','RU','Chudovo (Russia)',1,1,0),(14942,0,114824,'Church Hill','United States of America','US','Church Hill (United States of America)',1,1,0),(14943,0,114825,'Churchill Falls','Canada','CA','Churchill Falls (Canada)',1,1,0),(14944,0,114826,'Churchtown Village','Ireland','IE','Churchtown Village (Ireland)',1,1,0),(14945,0,114827,'Chyulu Hills','Kenya','KE','Chyulu Hills (Kenya)',1,1,0),(14946,6300,114828,'Ciego de Avila','Cuba','CU','Ciego de Avila (Cuba)',1,1,0),(14947,0,114829,'Cierp-Gaud','France','FR','Cierp-Gaud (France)',1,1,0),(14948,6305,114830,'Cierzac','France','FR','Cierzac (France)',1,1,0),(14949,6323,114831,'Cinisi','Italy','IT','Cinisi (Italy)',1,1,0),(14950,6329,114832,'Cipanas','Indonesia','ID','Cipanas (Indonesia)',1,1,0),(14951,6335,114833,'Cirebon','Indonesia','ID','Cirebon (Indonesia)',1,1,0),(14952,0,114834,'Citta Della Pieve','Italy','IT','Citta Della Pieve (Italy)',1,1,0),(14953,0,114835,'Ciudad Cuauhtemoc','Mexico','MX','Ciudad Cuauhtemoc (Mexico)',1,1,0),(14954,0,114836,'Ciudad Quesada','Spain','ES','Ciudad Quesada (Spain)',1,1,0),(14955,6362,114837,'Civita Castellana','Italy','IT','Civita Castellana (Italy)',1,1,0),(14956,0,114838,'Civitella della Chiana','Italy','IT','Civitella della Chiana (Italy)',1,1,0),(14957,6366,114839,'Cixi','China','CN','Cixi (China)',1,1,0),(14958,6377,114840,'Clamecy','France','FR','Clamecy (France)',1,1,0),(14959,6409,114841,'Clarks Hill','United States of America','US','Clarks Hill (United States of America)',1,1,0),(14960,6412,114842,'Clarkston','United States of America','US','Clarkston (United States of America)',1,1,0),(14961,0,114843,'Clayton','United States of America','US','Clayton (United States of America)',1,1,0),(14962,0,114844,'Clayton-le-Woods','United Kingdom','UK','Clayton-le-Woods (United Kingdom)',1,1,0),(14963,0,114845,'Cleethorpes','United Kingdom','UK','Cleethorpes (United Kingdom)',1,1,0),(14964,6462,114846,'Clermont','United States of America','US','Clermont (United States of America)',1,1,0),(14965,0,114847,'Clermont-de-l\'Oise','France','FR','Clermont-de-l\'Oise (France)',1,1,0),(14966,0,114848,'Clichy-sous-Bois','France','FR','Clichy-sous-Bois (France)',1,1,0),(14967,0,114849,'Climbach','France','FR','Climbach (France)',1,1,0),(14968,0,114850,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14969,0,114851,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(14970,0,114852,'Clinton Township','United States of America','US','Clinton Township (United States of America)',1,1,0),(14971,0,114853,'Clintwood','United States of America','US','Clintwood (United States of America)',1,1,0),(14972,0,114854,'Clohars-Carnoet','France','FR','Clohars-Carnoet (France)',1,1,0),(14973,6497,114855,'Clonmel','Ireland','IE','Clonmel (Ireland)',1,1,0),(14974,6502,114856,'Cloudcroft','United States of America','US','Cloudcroft (United States of America)',1,1,0),(14975,0,114857,'Clovis','United States of America','US','Clovis (United States of America)',1,1,0),(14976,6533,114858,'Coatesville','United States of America','US','Coatesville (United States of America)',1,1,0),(14977,6535,114859,'Coatzacoalcos','Mexico','MX','Coatzacoalcos (Mexico)',1,1,0),(14978,0,114860,'Coconut Grove','United States of America','US','Coconut Grove (United States of America)',1,1,0),(14979,6579,114861,'Cocoyoc','Mexico','MX','Cocoyoc (Mexico)',1,1,0),(14980,6583,114862,'Codrington','Antigua & Barbuda','AG','Codrington (Antigua & Barbuda)',1,1,0),(14981,6585,114863,'Cody','United States of America','US','Cody (United States of America)',1,1,0),(14982,6589,114864,'Coevorden','Netherlands','NL','Coevorden (Netherlands)',1,1,0),(14983,0,114865,'Coffee Camp','Australia','AU','Coffee Camp (Australia)',1,1,0),(14984,0,114866,'Cogolo di Pejo','Italy','IT','Cogolo di Pejo (Italy)',1,1,0),(14985,6607,114867,'Coignieres','France','FR','Coignieres (France)',1,1,0),(14986,0,114868,'Colebrook','United States of America','US','Colebrook (United States of America)',1,1,0),(14987,0,114869,'Colera','Spain','ES','Colera (Spain)',1,1,0),(14988,6643,114870,'Colima','Mexico','MX','Colima (Mexico)',1,1,0),(14989,0,114871,'Collecorvino','Italy','IT','Collecorvino (Italy)',1,1,0),(14990,6654,114872,'Collegno','Italy','IT','Collegno (Italy)',1,1,0),(14991,6676,114873,'COLMENAR','Spain','ES','COLMENAR (Spain)',1,1,0),(14992,0,114874,'Colombres','Spain','ES','Colombres (Spain)',1,1,0),(14993,0,114875,'Colonia Carlos Pellegrini','Argentina','AR','Colonia Carlos Pellegrini (Argentina)',1,1,0),(14994,0,114876,'Colonia de San Pedro','Spain','ES','Colonia de San Pedro (Spain)',1,1,0),(14995,0,114877,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(14996,0,114878,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(14997,0,114879,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(14998,6710,114880,'Colunga','Spain','ES','Colunga (Spain)',1,1,0),(14999,6731,114881,'Combrit','France','FR','Combrit (France)',1,1,0),(15000,0,114882,'Comelico Superiore','Italy','IT','Comelico Superiore (Italy)',1,1,0),(15001,0,114883,'Commugny','Switzerland','CH','Commugny (Switzerland)',1,1,0),(15002,5425,114884,'Castlegar','Canada','CA','Castlegar (Canada)',1,1,0),(15003,0,114885,'Castleton','United Kingdom','UK','Castleton (United Kingdom)',1,1,0),(15004,5443,114886,'Castrocaro Terme','Italy','IT','Castrocaro Terme (Italy)',1,1,0),(15005,5455,114887,'Catavina','Mexico','MX','Catavina (Mexico)',1,1,0),(15006,0,114888,'Catlins','New Zealand','NZ','Catlins (New Zealand)',1,1,0),(15007,0,114889,'Catona','Italy','IT','Catona (Italy)',1,1,0),(15008,5464,114890,'Catonsville','United States of America','US','Catonsville (United States of America)',1,1,0),(15009,5473,114891,'Caudan','France','FR','Caudan (France)',1,1,0),(15010,5487,114892,'Cavaion Veronese','Italy','IT','Cavaion Veronese (Italy)',1,1,0),(15011,0,114893,'Cavalaire sur mer','France','FR','Cavalaire sur mer (France)',1,1,0),(15012,5496,114894,'Cavaso del Tomba','Italy','IT','Cavaso del Tomba (Italy)',1,1,0),(15013,0,114895,'Cave Junction','OR',NULL,'Cave Junction (OR)',1,1,0),(15014,0,114896,'Caviola','Italy','IT','Caviola (Italy)',1,1,0),(15015,5510,114897,'Cavtat','Croatia','HR','Cavtat (Croatia)',1,1,0),(15016,0,114898,'Cavuskoy','Turkey','TR','Cavuskoy (Turkey)',1,1,0),(15017,0,114899,'Cayman Islands','Cayman Islands','KY','Cayman Islands (Cayman Islands)',1,1,0),(15018,0,114900,'Cayo Guillermo','Cuba','CU','Cayo Guillermo (Cuba)',1,1,0),(15019,0,114901,'Cayo Levisa','Cuba','CU','Cayo Levisa (Cuba)',1,1,0),(15020,0,114902,'Cayo Saetia','Cuba','CU','Cayo Saetia (Cuba)',1,1,0),(15021,5531,114903,'Cazenovia','United States of America','US','Cazenovia (United States of America)',1,1,0),(15022,5532,114904,'Cazorla','Spain','ES','Cazorla (Spain)',1,1,0),(15023,0,114905,'Cedar Hill','United States of America','US','Cedar Hill (United States of America)',1,1,0),(15024,0,114906,'Cedar Rapids','United States of America','US','Cedar Rapids (United States of America)',1,1,0),(15025,5552,114907,'Cedarville','United States of America','US','Cedarville (United States of America)',1,1,0),(15026,5553,114908,'Ceduna','Australia','AU','Ceduna (Australia)',1,1,0),(15027,5561,114909,'Celadna','Czech Republic','CZ','Celadna (Czech Republic)',1,1,0),(15028,0,114910,'Celakovice','Czech Republic','CZ','Celakovice (Czech Republic)',1,1,0),(15029,5570,114911,'Celina','United States of America','US','Celina (United States of America)',1,1,0),(15030,0,114912,'Celledizzo','Italy','IT','Celledizzo (Italy)',1,1,0),(15031,30696,114913,'Center','United States of America','US','Center (United States of America)',1,1,0),(15032,0,114914,'Central Kalahari Game Reserve','Botswana','BW','Central Kalahari Game Reserve (Botswana)',1,1,0),(15033,0,114915,'Centralia','United States of America','US','Centralia (United States of America)',1,1,0),(15034,0,114916,'Centro Colon','Costa Rica','CR','Centro Colon (Costa Rica)',1,1,0),(15035,0,114917,'Centuri','France','FR','Centuri (France)',1,1,0),(15036,0,114918,'Cercado de Espino','Spain','ES','Cercado de Espino (Spain)',1,1,0),(15037,5631,114919,'Cernobbio','Italy','IT','Cernobbio (Italy)',1,1,0),(15038,0,114920,'Cervera de Pisuerga','Spain','ES','Cervera de Pisuerga (Spain)',1,1,0),(15039,0,114921,'Cervere','Italy','IT','Cervere (Italy)',1,1,0),(15040,5652,114922,'Cesana Torinese','Italy','IT','Cesana Torinese (Italy)',1,1,0),(15041,5657,114923,'Cesis','Latvia','LV','Cesis (Latvia)',1,1,0),(15042,0,114924,'Cessole','Italy','IT','Cessole (Italy)',1,1,0),(15043,0,114925,'Cetara','Italy','IT','Cetara (Italy)',1,1,0),(15044,0,114926,'Ceyrat','France','FR','Ceyrat (France)',1,1,0),(15045,0,114927,'Cha das Caldeiras','Cape Verde','CV','Cha das Caldeiras (Cape Verde)',1,1,0),(15046,0,114928,'Chaguaramas','Trinidad and Tobago','TT','Chaguaramas (Trinidad and Tobago)',1,1,0),(15047,0,114929,'Chalikounas','Greece','GR','Chalikounas (Greece)',1,1,0),(15048,5710,114930,'Chalmette','United States of America','US','Chalmette (United States of America)',1,1,0),(15049,5716,114931,'Chama','United States of America','US','Chama (United States of America)',1,1,0),(15050,5722,114932,'Chamberlain','United States of America','US','Chamberlain (United States of America)',1,1,0),(15051,0,114933,'Chambourcy','France','FR','Chambourcy (France)',1,1,0),(15052,5732,114934,'Chambretaud','France','FR','Chambretaud (France)',1,1,0),(15053,0,114935,'Chamerau','Germany','DE','Chamerau (Germany)',1,1,0),(15054,5745,114937,'Champex','Switzerland','CH','Champex (Switzerland)',1,1,0),(15055,5762,114938,'Chanas','France','FR','Chanas (France)',1,1,0),(15056,5770,114939,'Chang Hua','Taiwan','TW','Chang Hua (Taiwan)',1,1,0),(15057,0,114940,'Changji','China','CN','Changji (China)',1,1,0),(15058,5783,114941,'Changwon','South Korea','KR','Changwon (South Korea)',1,1,0),(15059,5789,114942,'Chanhassen','United States of America','US','Chanhassen (United States of America)',1,1,0),(15060,5800,114943,'Chantepie','France','FR','Chantepie (France)',1,1,0),(15061,5804,114944,'Chantonnay','France','FR','Chantonnay (France)',1,1,0),(15062,5805,114945,'Chanute','United States of America','US','Chanute (United States of America)',1,1,0),(15063,5818,114946,'Chapelle-des-Bois','France','FR','Chapelle-des-Bois (France)',1,1,0),(15064,0,114947,'Charavines','France','FR','Charavines (France)',1,1,0),(15065,0,114948,'Charkow','Ukraine','UA','Charkow (Ukraine)',1,1,0),(15066,0,114949,'Charlos Cove','Canada','CA','Charlos Cove (Canada)',1,1,0),(15067,0,114950,'Charlwood','United Kingdom','UK','Charlwood (United Kingdom)',1,1,0),(15068,5879,114951,'Chartwell','South Africa','ZA','Chartwell (South Africa)',1,1,0),(15069,5883,114952,'Chassagny','France','FR','Chassagny (France)',1,1,0),(15070,0,114953,'Chasse sur Rhone','France','FR','Chasse sur Rhone (France)',1,1,0),(15071,0,114954,'Chateau sur Allier','France','FR','Chateau sur Allier (France)',1,1,0),(15072,0,114955,'Chateau-Gontier','France','FR','Chateau-Gontier (France)',1,1,0),(15073,0,114956,'Chateauneuf-Grasse','France','FR','Chateauneuf-Grasse (France)',1,1,0),(15074,0,114957,'Chateauroux-les-Alpes','France','FR','Chateauroux-les-Alpes (France)',1,1,0),(15075,5928,114958,'Chatillon','Italy','IT','Chatillon (Italy)',1,1,0),(15076,0,114959,'Chatillon-sur-Seine','France','FR','Chatillon-sur-Seine (France)',1,1,0),(15077,5944,114961,'Chaumes-en-Brie','France','FR','Chaumes-en-Brie (France)',1,1,0),(15078,0,114962,'Chaumont-sur-Aire','France','FR','Chaumont-sur-Aire (France)',1,1,0),(15079,5957,114963,'Chaves','Portugal','PT','Chaves (Portugal)',1,1,0),(15080,5962,114964,'Cheb','Czech Republic','CZ','Cheb (Czech Republic)',1,1,0),(15081,0,114965,'Cheddar','United Kingdom','UK','Cheddar (United Kingdom)',1,1,0),(15082,0,114966,'Chehalis','United States of America','US','Chehalis (United States of America)',1,1,0),(15083,5974,114967,'Chelan','United States of America','US','Chelan (United States of America)',1,1,0),(15084,0,114968,'Cheltenham','United Kingdom','UK','Cheltenham (United Kingdom)',1,1,0),(15085,6003,114969,'Chenove','France','FR','Chenove (France)',1,1,0),(15086,6010,114970,'Cheras','Malaysia','MY','Cheras (Malaysia)',1,1,0),(15087,6033,114971,'Cheseaux-sur-Lausanne','Switzerland','CH','Cheseaux-sur-Lausanne (Switzerland)',1,1,0),(15088,0,114972,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(15089,0,114973,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(15090,0,114974,'Chesterfield','United States of America','US','Chesterfield (United States of America)',1,1,0),(15091,0,114975,'Chestertown','United States of America','US','Chestertown (United States of America)',1,1,0),(15092,0,114976,'Cheyres','Switzerland','CH','Cheyres (Switzerland)',1,1,0),(15093,30567,114978,'Chiang Mai','Thailand','TH','Chiang Mai (Thailand)',1,1,0),(15094,0,114979,'Chiang Rai','Thailand','TH','Chiang Rai (Thailand)',1,1,0),(15095,6075,114980,'Chianni','Italy','IT','Chianni (Italy)',1,1,0),(15096,6094,114981,'Chickasha','United States of America','US','Chickasha (United States of America)',1,1,0),(15097,6096,114982,'Chiclana','Spain','ES','Chiclana (Spain)',1,1,0),(15098,0,114983,'Chiclana de Segura','Spain','ES','Chiclana de Segura (Spain)',1,1,0),(15099,6105,114984,'Chieri','Italy','IT','Chieri (Italy)',1,1,0),(15100,0,114985,'Chieveley','United Kingdom','UK','Chieveley (United Kingdom)',1,1,0),(15101,0,114988,'Chilleurs-aux-Bois','France','FR','Chilleurs-aux-Bois (France)',1,1,0),(15102,6147,114989,'Chingola','Zambia','ZM','Chingola (Zambia)',1,1,0),(15103,0,114990,'Chios Town','Greece','GR','Chios Town (Greece)',1,1,0),(15104,6157,114991,'Chipata','Zambia','ZM','Chipata (Zambia)',1,1,0),(15105,0,114992,'Chipping Norton','United Kingdom','UK','Chipping Norton (United Kingdom)',1,1,0),(15106,0,114993,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15107,0,114994,'Colwyn Bay','United Kingdom','UK','Colwyn Bay (United Kingdom)',1,1,0),(15108,0,114995,'Comblain-au-Pont','Belgium','BE','Comblain-au-Pont (Belgium)',1,1,0),(15109,0,114996,'Combles','France','FR','Combles (France)',1,1,0),(15110,6734,114997,'Comfort','United States of America','US','Comfort (United States of America)',1,1,0),(15111,6744,114998,'Como','Italy','IT','Como (Italy)',1,1,0),(15112,6747,114999,'Comox','Canada','CA','Comox (Canada)',1,1,0),(15113,6749,115000,'Compeyre','France','FR','Compeyre (France)',1,1,0),(15114,6750,115001,'Compiegne','France','FR','Compiegne (France)',1,1,0),(15115,0,115002,'Concord','United States of America','US','Concord (United States of America)',1,1,0),(15116,6779,115003,'Condado','Puerto Rico','PR','Condado (Puerto Rico)',1,1,0),(15117,6782,115004,'Condeau','France','FR','Condeau (France)',1,1,0),(15118,0,115005,'Condom','France','FR','Condom (France)',1,1,0),(15119,0,115006,'Congosta de Vidriales','Spain','ES','Congosta de Vidriales (Spain)',1,1,0),(15120,6804,115007,'Conil','Spain','ES','Conil (Spain)',1,1,0),(15121,6815,115008,'Connolly','Australia','AU','Connolly (Australia)',1,1,0),(15122,6816,115009,'Conover','United States of America','US','Conover (United States of America)',1,1,0),(15123,0,115010,'Conselheiro Lafaiete','Brazil','BR','Conselheiro Lafaiete (Brazil)',1,1,0),(15124,6822,115011,'Conselve','Italy','IT','Conselve (Italy)',1,1,0),(15125,0,115012,'Consett','United Kingdom','UK','Consett (United Kingdom)',1,1,0),(15126,0,115013,'Coogee','Australia','AU','Coogee (Australia)',1,1,0),(15127,6873,115014,'Cooper Landing','United States of America','US','Cooper Landing (United States of America)',1,1,0),(15128,0,115015,'Copahue','Argentina','AR','Copahue (Argentina)',1,1,0),(15129,6897,115016,'Copperas Cove','United States of America','US','Copperas Cove (United States of America)',1,1,0),(15130,0,115017,'Copthorne','United Kingdom','UK','Copthorne (United Kingdom)',1,1,0),(15131,6902,115018,'Coquelles','France','FR','Coquelles (France)',1,1,0),(15132,6905,115019,'Coquitlam','Canada','CA','Coquitlam (Canada)',1,1,0),(15133,6915,115020,'Corbera de Llobregat','Spain','ES','Corbera de Llobregat (Spain)',1,1,0),(15134,0,115021,'Corca','Spain','ES','Corca (Spain)',1,1,0),(15135,0,115022,'Cordes-sur-Ciel','France','FR','Cordes-sur-Ciel (France)',1,1,0),(15136,6934,115023,'Cordon','France','FR','Cordon (France)',1,1,0),(15137,6941,115024,'Corfu','United States of America','US','Corfu (United States of America)',1,1,0),(15138,6953,115025,'Corgeno','Italy','IT','Corgeno (Italy)',1,1,0),(15139,6955,115026,'Coriano','Italy','IT','Coriano (Italy)',1,1,0),(15140,6961,115027,'Corleone','Italy','IT','Corleone (Italy)',1,1,0),(15141,0,115028,'Cornell','United States of America','US','Cornell (United States of America)',1,1,0),(15142,0,115029,'Cornellana','Spain','ES','Cornellana (Spain)',1,1,0),(15143,0,115030,'Corniglia-Cinque Terre','Italy','IT','Corniglia-Cinque Terre (Italy)',1,1,0),(15144,0,115031,'Cornwall','United Kingdom','UK','Cornwall (United Kingdom)',1,1,0),(15145,6987,115032,'Corolla','United States of America','US','Corolla (United States of America)',1,1,0),(15146,6996,115033,'Corralejo','Spain','ES','Corralejo (Spain)',1,1,0),(15147,7004,115034,'Corrientes','Argentina','AR','Corrientes (Argentina)',1,1,0),(15148,0,115035,'Cortes de la Frontera','Spain','ES','Cortes de la Frontera (Spain)',1,1,0),(15149,7035,115036,'Corydon','United States of America','US','Corydon (United States of America)',1,1,0),(15150,7038,115037,'Cosenza','Italy','IT','Cosenza (Italy)',1,1,0),(15151,7043,115038,'Cossonay','Switzerland','CH','Cossonay (Switzerland)',1,1,0),(15152,0,115039,'Costa Adeje','Spain','ES','Costa Adeje (Spain)',1,1,0),(15153,7044,115040,'Costa Alegre','Mexico','MX','Costa Alegre (Mexico)',1,1,0),(15154,0,115041,'Costa Banderas','Mexico','MX','Costa Banderas (Mexico)',1,1,0),(15155,30734,115042,'Costa d\'en Blanes','Spain','ES','Costa d\'en Blanes (Spain)',1,1,0),(15156,0,115043,'Costa Rei','Italy','IT','Costa Rei (Italy)',1,1,0),(15157,0,115044,'Cote d\'Or Beach','Seychelles','SC','Cote d\'Or Beach (Seychelles)',1,1,0),(15158,7059,115045,'Cotonou','Benin','BJ','Cotonou (Benin)',1,1,0),(15159,7066,115046,'Cotter','United States of America','US','Cotter (United States of America)',1,1,0),(15160,0,115047,'Cottonwood Falls','United States of America','US','Cottonwood Falls (United States of America)',1,1,0),(15161,7072,115048,'Couches','France','FR','Couches (France)',1,1,0),(15162,0,115049,'Coudekerque-Branche','France','FR','Coudekerque-Branche (France)',1,1,0),(15163,0,115050,'Cour Cheverny','France','FR','Cour Cheverny (France)',1,1,0),(15164,0,115051,'Courgenay','Switzerland','CH','Courgenay (Switzerland)',1,1,0),(15165,7098,115052,'Courseulles-sur-Mer','France','FR','Courseulles-sur-Mer (France)',1,1,0),(15166,0,115053,'Courtenay','France','FR','Courtenay (France)',1,1,0),(15167,7106,115054,'Couvet','Switzerland','CH','Couvet (Switzerland)',1,1,0),(15168,7117,115055,'Covington','United States of America','US','Covington (United States of America)',1,1,0),(15169,7125,115056,'Cowichan Bay','Canada','CA','Cowichan Bay (Canada)',1,1,0),(15170,7127,115057,'Cowra','Australia','AU','Cowra (Australia)',1,1,0),(15171,7137,115058,'Cradock','South Africa','ZA','Cradock (South Africa)',1,1,0),(15172,0,115059,'Crail','United Kingdom','UK','Crail (United Kingdom)',1,1,0),(15173,0,115060,'Cranfield','United Kingdom','UK','Cranfield (United Kingdom)',1,1,0),(15174,7170,115061,'Crater Lake','United States of America','US','Crater Lake (United States of America)',1,1,0),(15175,0,115062,'Crecente','Spain','ES','Crecente (Spain)',1,1,0),(15176,0,115063,'Creglingen','Germany','DE','Creglingen (Germany)',1,1,0),(15177,7195,115064,'Creixell','Spain','ES','Creixell (Spain)',1,1,0),(15178,7212,115065,'Creston','Canada','CA','Creston (Canada)',1,1,0),(15179,7213,115066,'Crestview','United States of America','US','Crestview (United States of America)',1,1,0),(15180,0,115067,'Crete','United States of America','US','Crete (United States of America)',1,1,0),(15181,0,115068,'Crevillente','Spain','ES','Crevillente (Spain)',1,1,0),(15182,0,115069,'Crick','United Kingdom','UK','Crick (United Kingdom)',1,1,0),(15183,0,115070,'Crima di Porlezza','Italy','IT','Crima di Porlezza (Italy)',1,1,0),(15184,0,115071,'Crissay-sur-Manse','France','FR','Crissay-sur-Manse (France)',1,1,0),(15185,0,115072,'Cromarty','United Kingdom','UK','Cromarty (United Kingdom)',1,1,0),(15186,7276,115073,'Crookston','United States of America','US','Crookston (United States of America)',1,1,0),(15187,7285,115074,'Crosslake','United States of America','US','Crosslake (United States of America)',1,1,0),(15188,7291,115075,'Crots','France','FR','Crots (France)',1,1,0),(15189,0,115076,'Cubas','Spain','ES','Cubas (Spain)',1,1,0),(15190,7333,115077,'Cucuta','Colombia','CO','Cucuta (Colombia)',1,1,0),(15191,7362,115078,'Culpeper','United States of America','US','Culpeper (United States of America)',1,1,0),(15192,7369,115079,'Cumana','Venezuela','VE','Cumana (Venezuela)',1,1,0),(15193,0,115080,'Cumbria','United Kingdom','UK','Cumbria (United Kingdom)',1,1,0),(15194,0,115081,'Cunnamore Point','Ireland','IE','Cunnamore Point (Ireland)',1,1,0),(15195,0,115082,'Cuntis','Spain','ES','Cuntis (Spain)',1,1,0),(15196,0,115083,'Cupar','United Kingdom','UK','Cupar (United Kingdom)',1,1,0),(15197,0,115084,'Cuq Toulza','France','FR','Cuq Toulza (France)',1,1,0),(15198,0,115085,'Curacao','Curaçao','CW','Curacao (Curaçao)',1,1,0),(15199,7398,115086,'Curtea De Arges','Romania','RO','Curtea De Arges (Romania)',1,1,0),(15200,7405,115087,'Cushing','United States of America','US','Cushing (United States of America)',1,1,0),(15201,7410,115088,'Cutigliano','Italy','IT','Cutigliano (Italy)',1,1,0),(15202,7416,115089,'Cuxhaven','Germany','DE','Cuxhaven (Germany)',1,1,0),(15203,0,115090,'Cuxhaven-Duhnen','Germany','DE','Cuxhaven-Duhnen (Germany)',1,1,0),(15204,0,115091,'Cuyabeno-Nationalpark','Ecuador','EC','Cuyabeno-Nationalpark (Ecuador)',1,1,0),(15205,7417,115092,'Cuyahoga Falls','United States of America','US','Cuyahoga Falls (United States of America)',1,1,0),(15206,0,115093,'Czeszow','Poland','PL','Czeszow (Poland)',1,1,0),(15207,0,115094,'Dachwig','Germany','DE','Dachwig (Germany)',1,1,0),(15208,0,115095,'Dagebull','Germany','DE','Dagebull (Germany)',1,1,0),(15209,7443,115096,'Dagupan','Philippines','PH','Dagupan (Philippines)',1,1,0),(15210,7444,115097,'Dahab','Egypt','EG','Dahab (Egypt)',1,1,0),(15211,0,115098,'Dala Husby','Sweden','SE','Dala Husby (Sweden)',1,1,0),(15212,7480,115099,'Dalian','China','CN','Dalian (China)',1,1,0),(15213,7488,115100,'Dallgow-Doberitz','Germany','DE','Dallgow-Doberitz (Germany)',1,1,0),(15214,0,115101,'Damme','Germany','DE','Damme (Germany)',1,1,0),(15215,0,115102,'Danby','United Kingdom','UK','Danby (United Kingdom)',1,1,0),(15216,0,115103,'Danum Valley','Malaysia','MY','Danum Valley (Malaysia)',1,1,0),(15217,6918,115104,'Corbetta','Italy','IT','Corbetta (Italy)',1,1,0),(15218,6921,115105,'Corbion','Belgium','BE','Corbion (Belgium)',1,1,0),(15219,0,115106,'Corby','United Kingdom','UK','Corby (United Kingdom)',1,1,0),(15220,6925,115107,'Corciano','Italy','IT','Corciano (Italy)',1,1,0),(15221,0,115108,'Corcieux','France','FR','Corcieux (France)',1,1,0),(15222,6958,115109,'Corinth','United States of America','US','Corinth (United States of America)',1,1,0),(15223,0,115110,'Cornegliano Laudense','Italy','IT','Cornegliano Laudense (Italy)',1,1,0),(15224,0,115111,'Corno di Rosazzo','Italy','IT','Corno di Rosazzo (Italy)',1,1,0),(15225,7002,115112,'Correze','France','FR','Correze (France)',1,1,0),(15226,0,115113,'Cortazzone','Italy','IT','Cortazzone (Italy)',1,1,0),(15227,0,115114,'Corte Franca','Italy','IT','Corte Franca (Italy)',1,1,0),(15228,7016,115115,'Cortegana','Spain','ES','Cortegana (Spain)',1,1,0),(15229,7029,115116,'Corvallis','United States of America','US','Corvallis (United States of America)',1,1,0),(15230,0,115117,'Corvera de Toranzo','Spain','ES','Corvera de Toranzo (Spain)',1,1,0),(15231,7039,115118,'Coshocton','United States of America','US','Coshocton (United States of America)',1,1,0),(15232,0,115119,'Costa Careyes','Mexico','MX','Costa Careyes (Mexico)',1,1,0),(15233,0,115120,'Costa da Caparica','Portugal','PT','Costa da Caparica (Portugal)',1,1,0),(15234,0,115121,'Costa Verde','Brazil','BR','Costa Verde (Brazil)',1,1,0),(15235,0,115122,'Costa Verde','Italy','IT','Costa Verde (Italy)',1,1,0),(15236,0,115123,'Coswig','Germany','DE','Coswig (Germany)',1,1,0),(15237,7089,115124,'Courbevoie','France','FR','Courbevoie (France)',1,1,0),(15238,7094,115125,'Courchevel','France','FR','Courchevel (France)',1,1,0),(15239,7097,115126,'Courmayeur','Italy','IT','Courmayeur (Italy)',1,1,0),(15240,0,115127,'Cours La Ville','France','FR','Cours La Ville (France)',1,1,0),(15241,0,115128,'Cousine Island','Seychelles','SC','Cousine Island (Seychelles)',1,1,0),(15242,7115,115129,'Covilha','Portugal','PT','Covilha (Portugal)',1,1,0),(15243,0,115130,'Covington','United States of America','US','Covington (United States of America)',1,1,0),(15244,0,115131,'Cow Bay','Australia','AU','Cow Bay (Australia)',1,1,0),(15245,0,115132,'Crackenback','Australia','AU','Crackenback (Australia)',1,1,0),(15246,7160,115133,'Crandon','United States of America','US','Crandon (United States of America)',1,1,0),(15247,7172,115134,'Crato','Portugal','PT','Crato (Portugal)',1,1,0),(15248,7177,115135,'Crawfordsville','United States of America','US','Crawfordsville (United States of America)',1,1,0),(15249,7178,115136,'Crawfordville','United States of America','US','Crawfordville (United States of America)',1,1,0),(15250,0,115137,'Crawley','United Kingdom','UK','Crawley (United Kingdom)',1,1,0),(15251,0,115138,'Creaton','United Kingdom','UK','Creaton (United Kingdom)',1,1,0),(15252,7189,115139,'Crecy-la-Chapelle','France','FR','Crecy-la-Chapelle (France)',1,1,0),(15253,0,115140,'Crecy-sur-Serre','France','FR','Crecy-sur-Serre (France)',1,1,0),(15254,7197,115141,'Cremorne','Australia','AU','Cremorne (Australia)',1,1,0),(15255,7205,115142,'Cresco','United States of America','US','Cresco (United States of America)',1,1,0),(15256,0,115143,'Crevillent','Spain','ES','Crevillent (Spain)',1,1,0),(15257,0,115144,'Crewe','United Kingdom','UK','Crewe (United Kingdom)',1,1,0),(15258,7240,115145,'Criciuma','Brazil','BR','Criciuma (Brazil)',1,1,0),(15259,7244,115146,'Cricqueboeuf','France','FR','Cricqueboeuf (France)',1,1,0),(15260,7246,115147,'Criel-sur-Mer','France','FR','Criel-sur-Mer (France)',1,1,0),(15261,7247,115148,'Crikvenica','Croatia','HR','Crikvenica (Croatia)',1,1,0),(15262,0,115149,'Crni Vrh','Slovenia','SI','Crni Vrh (Slovenia)',1,1,0),(15263,0,115150,'Cromer','United Kingdom','UK','Cromer (United Kingdom)',1,1,0),(15264,0,115151,'Cropton','United Kingdom','UK','Cropton (United Kingdom)',1,1,0),(15265,0,115152,'Crouttes','France','FR','Crouttes (France)',1,1,0),(15266,7294,115153,'Crowley','United States of America','US','Crowley (United States of America)',1,1,0),(15267,7303,115154,'Crozet','France','FR','Crozet (France)',1,1,0),(15268,7309,115155,'Crupet','Belgium','BE','Crupet (Belgium)',1,1,0),(15269,0,115156,'Cubillas de Santa Marta','Spain','ES','Cubillas de Santa Marta (Spain)',1,1,0),(15270,7341,115157,'Cuernavaca','Mexico','MX','Cuernavaca (Mexico)',1,1,0),(15271,0,115158,'Cuero','United States of America','US','Cuero (United States of America)',1,1,0),(15272,7342,115159,'Cuevas de San Marcos','Spain','ES','Cuevas de San Marcos (Spain)',1,1,0),(15273,0,115160,'Cugir','Romania','RO','Cugir (Romania)',1,1,0),(15274,0,115161,'Cugnana','Italy','IT','Cugnana (Italy)',1,1,0),(15275,7346,115162,'Cuijk','Netherlands','NL','Cuijk (Netherlands)',1,1,0),(15276,0,115163,'Cuiseaux','France','FR','Cuiseaux (France)',1,1,0),(15277,7351,115164,'Culebra','Puerto Rico','PR','Culebra (Puerto Rico)',1,1,0),(15278,0,115165,'Cumberland Gap','United States of America','US','Cumberland Gap (United States of America)',1,1,0),(15279,7372,115166,'Cumming','United States of America','US','Cumming (United States of America)',1,1,0),(15280,0,115167,'Curiel de Duero','Spain','ES','Curiel de Duero (Spain)',1,1,0),(15281,0,115168,'Currimao','Philippines','PH','Currimao (Philippines)',1,1,0),(15282,0,115169,'Cussey-sur-l\'Ognon','France','FR','Cussey-sur-l\'Ognon (France)',1,1,0),(15283,7406,115170,'Custer','United States of America','US','Custer (United States of America)',1,1,0),(15284,0,115171,'Custoza','Italy','IT','Custoza (Italy)',1,1,0),(15285,7414,115172,'Cutrofiano','Italy','IT','Cutrofiano (Italy)',1,1,0),(15286,0,115173,'Da Balaia','Portugal','PT','Da Balaia (Portugal)',1,1,0),(15287,0,115174,'Dabki','Poland','PL','Dabki (Poland)',1,1,0),(15288,7439,115175,'Daejeon','South Korea','KR','Daejeon (South Korea)',1,1,0),(15289,0,115177,'Dahlen','Germany','DE','Dahlen (Germany)',1,1,0),(15290,7451,115178,'Dahlwitz-Hoppegarten','Germany','DE','Dahlwitz-Hoppegarten (Germany)',1,1,0),(15291,0,115179,'Dalaro','Sweden','SE','Dalaro (Sweden)',1,1,0),(15292,30743,115180,'Dale','United States of America','US','Dale (United States of America)',1,1,0),(15293,0,115181,'Dalen','Netherlands','NL','Dalen (Netherlands)',1,1,0),(15294,0,115182,'Daleville','United States of America','US','Daleville (United States of America)',1,1,0),(15295,0,115183,'Damascus','Syria',NULL,'Damascus (Syria)',1,1,0),(15296,0,115184,'Damascus','United States of America','US','Damascus (United States of America)',1,1,0),(15297,7506,115185,'Dambulla','Sri Lanka','LK','Dambulla (Sri Lanka)',1,1,0),(15298,7515,115186,'Dampierre-sur-Salon','France','FR','Dampierre-sur-Salon (France)',1,1,0),(15299,0,115187,'Dankmarshausen','Germany','DE','Dankmarshausen (Germany)',1,1,0),(15300,7542,115188,'Dapitan','Philippines','PH','Dapitan (Philippines)',1,1,0),(15301,7544,115189,'Daqing','China','CN','Daqing (China)',1,1,0),(15302,7560,115190,'Darlington','United States of America','US','Darlington (United States of America)',1,1,0),(15303,7562,115191,'Darlowo','Poland','PL','Darlowo (Poland)',1,1,0),(15304,0,115192,'Darmanesti','Romania','RO','Darmanesti (Romania)',1,1,0),(15305,0,115193,'Dartford','United Kingdom','UK','Dartford (United Kingdom)',1,1,0),(15306,0,115194,'Dasburg','Germany','DE','Dasburg (Germany)',1,1,0),(15307,7608,115195,'Davison','United States of America','US','Davison (United States of America)',1,1,0),(15308,0,115196,'Davraz','Turkey','TR','Davraz (Turkey)',1,1,0),(15309,7620,115197,'Dax','France','FR','Dax (France)',1,1,0),(15310,30745,115198,'De Bilt','Netherlands','NL','De Bilt (Netherlands)',1,1,0),(15311,30761,115199,'De Soto','United States of America','US','De Soto (United States of America)',1,1,0),(15312,0,115200,'De Steeg','Netherlands','NL','De Steeg (Netherlands)',1,1,0),(15313,0,115201,'Deauville-Trouville','France','FR','Deauville-Trouville (France)',1,1,0),(15314,0,115202,'Deer Park','United States of America','US','Deer Park (United States of America)',1,1,0),(15315,0,115203,'Deer Valley','United States of America','US','Deer Valley (United States of America)',1,1,0),(15316,0,115204,'Deerfield','United States of America','US','Deerfield (United States of America)',1,1,0),(15317,0,115205,'DeFuniak Springs','United States of America','US','DeFuniak Springs (United States of America)',1,1,0),(15318,30768,115206,'Dell Rapids','United States of America','US','Dell Rapids (United States of America)',1,1,0),(15319,7715,115207,'Delphos','United States of America','US','Delphos (United States of America)',1,1,0),(15320,7716,115208,'Delta','Canada','CA','Delta (Canada)',1,1,0),(15321,30770,115209,'Den Dolder','Netherlands','NL','Den Dolder (Netherlands)',1,1,0),(15322,0,115210,'Denbigh','United Kingdom','UK','Denbigh (United Kingdom)',1,1,0),(15323,7736,115211,'Deniliquin','Australia','AU','Deniliquin (Australia)',1,1,0),(15324,0,115212,'Dennis Port','United States of America','US','Dennis Port (United States of America)',1,1,0),(15325,0,115213,'Denny','United Kingdom','UK','Denny (United Kingdom)',1,1,0),(15326,6324,115214,'Cinnaminson','United States of America','US','Cinnaminson (United States of America)',1,1,0),(15327,6338,115215,'Cirkewwa','Malta','MT','Cirkewwa (Malta)',1,1,0),(15328,0,115216,'Cissone','Italy','IT','Cissone (Italy)',1,1,0),(15329,0,115217,'Cisterniga','Spain','ES','Cisterniga (Spain)',1,1,0),(15330,6348,115218,'Cittadella','Italy','IT','Cittadella (Italy)',1,1,0),(15331,6354,115219,'Ciudad Bolivar','Venezuela','VE','Ciudad Bolivar (Venezuela)',1,1,0),(15332,0,115220,'Ciudad del Carmen','Mexico','MX','Ciudad del Carmen (Mexico)',1,1,0),(15333,30711,115221,'Ciudad Rodrigo','Spain','ES','Ciudad Rodrigo (Spain)',1,1,0),(15334,0,115222,'Clanfield','United Kingdom','UK','Clanfield (United Kingdom)',1,1,0),(15335,6381,115223,'Clanwilliam','South Africa','ZA','Clanwilliam (South Africa)',1,1,0),(15336,6383,115224,'Clapiers','France','FR','Clapiers (France)',1,1,0),(15337,6398,115225,'Clarens','South Africa','ZA','Clarens (South Africa)',1,1,0),(15338,6404,115226,'Clarion','United States of America','US','Clarion (United States of America)',1,1,0),(15339,6405,115227,'Clark','United States of America','US','Clark (United States of America)',1,1,0),(15340,0,115228,'Clarksville','United States of America','US','Clarksville (United States of America)',1,1,0),(15341,6416,115229,'Clatskanie','United States of America','US','Clatskanie (United States of America)',1,1,0),(15342,0,115230,'Clavesana','Italy','IT','Clavesana (Italy)',1,1,0),(15343,30712,115231,'Cle Elum','United States of America','US','Cle Elum (United States of America)',1,1,0),(15344,6466,115232,'Clervaux','Luxembourg','LU','Clervaux (Luxembourg)',1,1,0),(15345,6473,115233,'Clewiston','United States of America','US','Clewiston (United States of America)',1,1,0),(15346,0,115234,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(15347,0,115235,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(15348,6486,115236,'Clintonville','United States of America','US','Clintonville (United States of America)',1,1,0),(15349,0,115237,'Cloghane','Ireland','IE','Cloghane (Ireland)',1,1,0),(15350,0,115238,'Cloverdale','United States of America','US','Cloverdale (United States of America)',1,1,0),(15351,6509,115239,'Cloyes-sur-le-Loir','France','FR','Cloyes-sur-le-Loir (France)',1,1,0),(15352,6519,115240,'Clute','United States of America','US','Clute (United States of America)',1,1,0),(15353,6527,115241,'Coalville','United States of America','US','Coalville (United States of America)',1,1,0),(15354,0,115242,'Cobham','United Kingdom','UK','Cobham (United Kingdom)',1,1,0),(15355,0,115243,'Cocos (Keeling) Islands','Australia','AU','Cocos (Keeling) Islands (Australia)',1,1,0),(15356,0,115244,'Codeseda','Spain','ES','Codeseda (Spain)',1,1,0),(15357,6617,115245,'Colakli','Turkey','TR','Colakli (Turkey)',1,1,0),(15358,0,115246,'Colatina','Brazil','BR','Colatina (Brazil)',1,1,0),(15359,0,115247,'Cold Spring','United States of America','US','Cold Spring (United States of America)',1,1,0),(15360,6628,115248,'Coldbrook','Canada','CA','Coldbrook (Canada)',1,1,0),(15361,0,115249,'Colditz','Germany','DE','Colditz (Germany)',1,1,0),(15362,0,115250,'Coldstream','United Kingdom','UK','Coldstream (United Kingdom)',1,1,0),(15363,0,115251,'Colerne','United Kingdom','UK','Colerne (United Kingdom)',1,1,0),(15364,6639,115252,'Coles Bay','Australia','AU','Coles Bay (Australia)',1,1,0),(15365,0,115253,'Colfax','United States of America','US','Colfax (United States of America)',1,1,0),(15366,6647,115254,'Collbato','Spain','ES','Collbato (Spain)',1,1,0),(15367,0,115255,'Colle di Buggiano','Italy','IT','Colle di Buggiano (Italy)',1,1,0),(15368,6662,115256,'Collias','France','FR','Collias (France)',1,1,0),(15369,0,115257,'Collingbourne Kingston','United Kingdom','UK','Collingbourne Kingston (United Kingdom)',1,1,0),(15370,0,115258,'Collinstown','Ireland','IE','Collinstown (Ireland)',1,1,0),(15371,0,115259,'Colonia Valdense','Uruguay','UY','Colonia Valdense (Uruguay)',1,1,0),(15372,0,115260,'Colonial Heights','United States of America','US','Colonial Heights (United States of America)',1,1,0),(15373,0,115261,'Colorado Springs','United States of America','US','Colorado Springs (United States of America)',1,1,0),(15374,0,115262,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(15375,0,115263,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(15376,0,115264,'Columbia City','United States of America','US','Columbia City (United States of America)',1,1,0),(15377,0,115265,'Columbia Falls','United States of America','US','Columbia Falls (United States of America)',1,1,0),(15378,0,115266,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15379,6730,115267,'Combreux','France','FR','Combreux (France)',1,1,0),(15380,0,115268,'Commerce','United States of America','US','Commerce (United States of America)',1,1,0),(15381,0,115269,'Conca','France','FR','Conca (France)',1,1,0),(15382,6761,115270,'Concarneau','France','FR','Concarneau (France)',1,1,0),(15383,0,115271,'Concilio','Spain','ES','Concilio (Spain)',1,1,0),(15384,6775,115272,'Concordia','Argentina','AR','Concordia (Argentina)',1,1,0),(15385,0,115273,'Condette','France','FR','Condette (France)',1,1,0),(15386,0,115274,'Conil / Conil de la Frontera','Spain','ES','Conil / Conil de la Frontera (Spain)',1,1,0),(15387,0,115275,'Conklin','Canada','CA','Conklin (Canada)',1,1,0),(15388,6817,115276,'Conques','France','FR','Conques (France)',1,1,0),(15389,6832,115277,'Constantine','Algeria','DZ','Constantine (Algeria)',1,1,0),(15390,0,115278,'Contignano','Italy','IT','Contignano (Italy)',1,1,0),(15391,6875,115279,'Coopersburg','United States of America','US','Coopersburg (United States of America)',1,1,0),(15392,6889,115280,'Copenhagen','Denmark','DK','Copenhagen (Denmark)',1,1,0),(15393,6890,115281,'Copiague','United States of America','US','Copiague (United States of America)',1,1,0),(15394,6891,115282,'Copiapo','Chile','CL','Copiapo (Chile)',1,1,0),(15395,6895,115283,'Copper Canyon','Mexico','MX','Copper Canyon (Mexico)',1,1,0),(15396,6908,115284,'Coral Coast','Fiji Islands','FJ','Coral Coast (Fiji Islands)',1,1,0),(15397,30717,115285,'Coral Gables','United States of America','US','Coral Gables (United States of America)',1,1,0),(15398,0,115286,'Corbeny','France','FR','Corbeny (France)',1,1,0),(15399,6927,115287,'Corcubion','Spain','ES','Corcubion (Spain)',1,1,0),(15400,6932,115288,'Cordoba','Argentina','AR','Cordoba (Argentina)',1,1,0),(15401,6937,115289,'Coredo','Italy','IT','Coredo (Italy)',1,1,0),(15402,0,115290,'Corfe Castle','United Kingdom','UK','Corfe Castle (United Kingdom)',1,1,0),(15403,0,115291,'Corfu Town','Greece','GR','Corfu Town (Greece)',1,1,0),(15404,6954,115292,'Coria','Spain','ES','Coria (Spain)',1,1,0),(15405,6960,115293,'Cork','Ireland','IE','Cork (Ireland)',1,1,0),(15406,0,115294,'Cormorant Island','Canada','CA','Cormorant Island (Canada)',1,1,0),(15407,6985,115295,'Coro','Venezuela','VE','Coro (Venezuela)',1,1,0),(15408,6988,115296,'Coromandel','New Zealand','NZ','Coromandel (New Zealand)',1,1,0),(15409,0,115297,'Coronel Moldes','Argentina','AR','Coronel Moldes (Argentina)',1,1,0),(15410,0,115298,'Corrubbio','Italy','IT','Corrubbio (Italy)',1,1,0),(15411,7017,115299,'Cortemilia','Italy','IT','Cortemilia (Italy)',1,1,0),(15412,7025,115300,'Cortona','Italy','IT','Cortona (Italy)',1,1,0),(15413,0,115301,'Corvera de Asturias','Spain','ES','Corvera de Asturias (Spain)',1,1,0),(15414,0,115302,'Costa do Sauipe','Brazil','BR','Costa do Sauipe (Brazil)',1,1,0),(15415,0,115303,'Costalpino','Italy','IT','Costalpino (Italy)',1,1,0),(15416,0,115304,'Cotillo de Anievas','Spain','ES','Cotillo de Anievas (Spain)',1,1,0),(15417,0,115305,'Coto-Rios','Spain','ES','Coto-Rios (Spain)',1,1,0),(15418,7064,115306,'Cottage Grove','United States of America','US','Cottage Grove (United States of America)',1,1,0),(15419,7070,115307,'Cottonwood','United States of America','US','Cottonwood (United States of America)',1,1,0),(15420,0,115308,'Coulandon','France','FR','Coulandon (France)',1,1,0),(15421,0,115309,'Coulon','France','FR','Coulon (France)',1,1,0),(15422,0,115310,'Council Bluffs','United States of America','US','Council Bluffs (United States of America)',1,1,0),(15423,7092,115311,'Courcelles-De-Touraine','France','FR','Courcelles-De-Touraine (France)',1,1,0),(15424,7093,115312,'Courcelles-sur-Vesles','France','FR','Courcelles-sur-Vesles (France)',1,1,0),(15425,0,115313,'Courroux','Switzerland','CH','Courroux (Switzerland)',1,1,0),(15426,0,115314,'Courtaman','Switzerland','CH','Courtaman (Switzerland)',1,1,0),(15427,7102,115315,'Courtils','France','FR','Courtils (France)',1,1,0),(15428,0,115316,'Coussac-Bonneval','France','FR','Coussac-Bonneval (France)',1,1,0),(15429,0,115317,'Covington','United States of America','US','Covington (United States of America)',1,1,0),(15430,0,115318,'Cowies Hill','South Africa','ZA','Cowies Hill (South Africa)',1,1,0),(15431,7130,115319,'Coxsackie','United States of America','US','Coxsackie (United States of America)',1,1,0),(15432,7157,115320,'Cranbrook','Canada','CA','Cranbrook (Canada)',1,1,0),(15433,7158,115321,'Cranbury','United States of America','US','Cranbury (United States of America)',1,1,0),(15434,7165,115322,'Crans Montana','Switzerland','CH','Crans Montana (Switzerland)',1,1,0),(15435,6215,115323,'Cholula','Mexico','MX','Cholula (Mexico)',1,1,0),(15436,0,115324,'Chora','Greece','GR','Chora (Greece)',1,1,0),(15437,0,115325,'Choumeri','Greece','GR','Choumeri (Greece)',1,1,0),(15438,0,115326,'Chrisoskalitissa','Greece','GR','Chrisoskalitissa (Greece)',1,1,0),(15439,0,115327,'Chrissi Akti','Greece','GR','Chrissi Akti (Greece)',1,1,0),(15440,6248,115328,'Christiansburg','United States of America','US','Christiansburg (United States of America)',1,1,0),(15441,6284,115329,'Churchill','Canada','CA','Churchill (Canada)',1,1,0),(15442,0,115330,'Cianjur','Indonesia','ID','Cianjur (Indonesia)',1,1,0),(15443,6301,115331,'Ciempozuelos','Spain','ES','Ciempozuelos (Spain)',1,1,0),(15444,6303,115332,'Cienfuegos','Cuba','CU','Cienfuegos (Cuba)',1,1,0),(15445,0,115333,'Cingoli','Italy','IT','Cingoli (Italy)',1,1,0),(15446,6328,115334,'Cintruenigo','Spain','ES','Cintruenigo (Spain)',1,1,0),(15447,6342,115335,'Cison di Valmarino','Italy','IT','Cison di Valmarino (Italy)',1,1,0),(15448,0,115336,'Citta di Castello','Italy','IT','Citta di Castello (Italy)',1,1,0),(15449,6353,115337,'Ciudad Acuna','Mexico','MX','Ciudad Acuna (Mexico)',1,1,0),(15450,6355,115338,'Ciudad del Este','Paraguay','PY','Ciudad del Este (Paraguay)',1,1,0),(15451,6361,115339,'Cividale del Friuli','Italy','IT','Cividale del Friuli (Italy)',1,1,0),(15452,6363,115340,'Civitanova Marche','Italy','IT','Civitanova Marche (Italy)',1,1,0),(15453,0,115341,'Cizici','Croatia','HR','Cizici (Croatia)',1,1,0),(15454,6367,115342,'Clackamas','United States of America','US','Clackamas (United States of America)',1,1,0),(15455,6400,115343,'Clarenville','Canada','CA','Clarenville (Canada)',1,1,0),(15456,0,115344,'Clark Field','Philippines','PH','Clark Field (Philippines)',1,1,0),(15457,0,115345,'Clarksville','United States of America','US','Clarksville (United States of America)',1,1,0),(15458,0,115346,'Clayton','United States of America','US','Clayton (United States of America)',1,1,0),(15459,0,115347,'Clear Spring','United States of America','US','Clear Spring (United States of America)',1,1,0),(15460,0,115348,'Clearlake Oaks','United States of America','US','Clearlake Oaks (United States of America)',1,1,0),(15461,6443,115349,'Clearmont','United States of America','US','Clearmont (United States of America)',1,1,0),(15462,0,115350,'Clery-Saint-Andre','France','FR','Clery-Saint-Andre (France)',1,1,0),(15463,0,115351,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(15464,0,115352,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(15465,0,115353,'Cliousclat','France','FR','Cliousclat (France)',1,1,0),(15466,6488,115354,'Clisson','France','FR','Clisson (France)',1,1,0),(15467,6490,115355,'Clive','United States of America','US','Clive (United States of America)',1,1,0),(15468,0,115356,'Clondra','Ireland','IE','Clondra (Ireland)',1,1,0),(15469,6520,115357,'Clyde','United States of America','US','Clyde (United States of America)',1,1,0),(15470,6532,115358,'Coatepec','Mexico','MX','Coatepec (Mexico)',1,1,0),(15471,6536,115359,'Coba','Mexico','MX','Coba (Mexico)',1,1,0),(15472,6538,115360,'Cobar','Australia','AU','Cobar (Australia)',1,1,0),(15473,6546,115361,'Cobleskill','United States of America','US','Cobleskill (United States of America)',1,1,0),(15474,0,115362,'Cochrane','Canada','CA','Cochrane (Canada)',1,1,0),(15475,0,115363,'Cocoa Beach','United States of America','US','Cocoa Beach (United States of America)',1,1,0),(15476,0,115364,'Col du Kerdous','Morocco','MA','Col du Kerdous (Morocco)',1,1,0),(15477,6620,115365,'Colbe','Germany','DE','Colbe (Germany)',1,1,0),(15478,6627,115366,'Cold Lake','Canada','CA','Cold Lake (Canada)',1,1,0),(15479,0,115367,'Coletta di Castelbianco','Italy','IT','Coletta di Castelbianco (Italy)',1,1,0),(15480,0,115368,'Coleville','United States of America','US','Coleville (United States of America)',1,1,0),(15481,0,115369,'Colfuschg Colfosco','Italy','IT','Colfuschg Colfosco (Italy)',1,1,0),(15482,0,115370,'Colindres','Spain','ES','Colindres (Spain)',1,1,0),(15483,0,115371,'Colle di Val d\'Elsa','Italy','IT','Colle di Val d\'Elsa (Italy)',1,1,0),(15484,6652,115372,'Collegeville','United States of America','US','Collegeville (United States of America)',1,1,0),(15485,6658,115373,'Collesano','Italy','IT','Collesano (Italy)',1,1,0),(15486,0,115374,'Collina d\'Oro','Switzerland','CH','Collina d\'Oro (Switzerland)',1,1,0),(15487,6670,115375,'Collinsville','United States of America','US','Collinsville (United States of America)',1,1,0),(15488,6673,115376,'Collonges-la-Rouge','France','FR','Collonges-la-Rouge (France)',1,1,0),(15489,0,115377,'Colnbrook','United Kingdom','UK','Colnbrook (United Kingdom)',1,1,0),(15490,0,115378,'Colne','United Kingdom','UK','Colne (United Kingdom)',1,1,0),(15491,0,115379,'Coloane','China','CN','Coloane (China)',1,1,0),(15492,0,115380,'Colombes','France','FR','Colombes (France)',1,1,0),(15493,6705,115381,'Colton','United States of America','US','Colton (United States of America)',1,1,0),(15494,6706,115382,'Colts Neck','United States of America','US','Colts Neck (United States of America)',1,1,0),(15495,0,115383,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15496,0,115384,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15497,6720,115385,'Comanche','United States of America','US','Comanche (United States of America)',1,1,0),(15498,6735,115386,'Comillas','Spain','ES','Comillas (Spain)',1,1,0),(15499,0,115387,'Comino Island','Malta','MT','Comino Island (Malta)',1,1,0),(15500,6739,115388,'Commack','United States of America','US','Commack (United States of America)',1,1,0),(15501,6741,115389,'Commes','France','FR','Commes (France)',1,1,0),(15502,6742,115390,'Commezzadura','Italy','IT','Commezzadura (Italy)',1,1,0),(15503,6792,115391,'Conegliano','Italy','IT','Conegliano (Italy)',1,1,0),(15504,6798,115392,'Confrancon','France','FR','Confrancon (France)',1,1,0),(15505,0,115393,'Congleton','United Kingdom','UK','Congleton (United Kingdom)',1,1,0),(15506,0,115394,'Coniston Cold','United Kingdom','UK','Coniston Cold (United Kingdom)',1,1,0),(15507,6814,115395,'Connersville','United States of America','US','Connersville (United States of America)',1,1,0),(15508,0,115396,'Contin','United Kingdom','UK','Contin (United Kingdom)',1,1,0),(15509,0,115397,'Conwy','United Kingdom','UK','Conwy (United Kingdom)',1,1,0),(15510,6868,115398,'Coonabarabran','Australia','AU','Coonabarabran (Australia)',1,1,0),(15511,6877,115399,'Coopersville','United States of America','US','Coopersville (United States of America)',1,1,0),(15512,6882,115401,'Coos Bay','United States of America','US','Coos Bay (United States of America)',1,1,0),(15513,6885,115402,'Copacabana','Bolivia','BO','Copacabana (Bolivia)',1,1,0),(15514,6906,115403,'Coral Bay','Australia','AU','Coral Bay (Australia)',1,1,0),(15515,6911,115404,'Coraopolis','United States of America','US','Coraopolis (United States of America)',1,1,0),(15516,6912,115405,'Corato','Italy','IT','Corato (Italy)',1,1,0),(15517,6920,115406,'Corbin','United States of America','US','Corbin (United States of America)',1,1,0),(15518,6931,115407,'Cordoba','Spain','ES','Cordoba (Spain)',1,1,0),(15519,0,115408,'Corigliano d\'Otranto','Italy','IT','Corigliano d\'Otranto (Italy)',1,1,0),(15520,0,115409,'Corme-Ponteceso','Spain','ES','Corme-Ponteceso (Spain)',1,1,0),(15521,6972,115410,'Cornelius','United States of America','US','Cornelius (United States of America)',1,1,0),(15522,0,115411,'Cornella del Llobregar','Spain','ES','Cornella del Llobregar (Spain)',1,1,0),(15523,6979,115412,'Corning','United States of America','US','Corning (United States of America)',1,1,0),(15524,6989,115413,'Coron','Philippines','PH','Coron (Philippines)',1,1,0),(15525,6990,115414,'Corona','United States of America','US','Corona (United States of America)',1,1,0),(15526,0,115415,'Coronel Oviedo','Paraguay','PY','Coronel Oviedo (Paraguay)',1,1,0),(15527,0,115416,'Corozal Town','Belize','BZ','Corozal Town (Belize)',1,1,0),(15528,0,115417,'Corpach','United Kingdom','UK','Corpach (United Kingdom)',1,1,0),(15529,6997,115418,'Corrales','United States of America','US','Corrales (United States of America)',1,1,0),(15530,0,115419,'Correncon-en-Vercors','France','FR','Correncon-en-Vercors (France)',1,1,0),(15531,0,115420,'Corridonia','Italy','IT','Corridonia (Italy)',1,1,0),(15532,0,115421,'Corsanico','Italy','IT','Corsanico (Italy)',1,1,0),(15533,7014,115422,'Cortaillod','Switzerland','CH','Cortaillod (Switzerland)',1,1,0),(15534,0,115423,'Corte de\' Cortesi con Cignone','Italy','IT','Corte de\' Cortesi con Cignone (Italy)',1,1,0),(15535,0,115424,'Cortiguera','Spain','ES','Cortiguera (Spain)',1,1,0),(15536,0,115425,'Cortina D\'Ampezzo','Italy','IT','Cortina D\'Ampezzo (Italy)',1,1,0),(15537,7028,115426,'Corumba','Brazil','BR','Corumba (Brazil)',1,1,0),(15538,7030,115427,'Corvara','Italy','IT','Corvara (Italy)',1,1,0),(15539,0,115428,'Corwen','United Kingdom','UK','Corwen (United Kingdom)',1,1,0),(15540,30719,115429,'Cos Cob','United States of America','US','Cos Cob (United States of America)',1,1,0),(15541,7036,115430,'Cosala','Mexico','MX','Cosala (Mexico)',1,1,0),(15542,6380,115431,'Clanton','United States of America','US','Clanton (United States of America)',1,1,0),(15543,6387,115432,'Clare','Ireland','IE','Clare (Ireland)',1,1,0),(15544,6402,115433,'Clarinbridge','Ireland','IE','Clarinbridge (Ireland)',1,1,0),(15545,6403,115434,'Clarinda','United States of America','US','Clarinda (United States of America)',1,1,0),(15546,0,115435,'Clark','United States of America','US','Clark (United States of America)',1,1,0),(15547,0,115436,'Clarks Summit','United States of America','US','Clarks Summit (United States of America)',1,1,0),(15548,0,115437,'Clarksville','United States of America','US','Clarksville (United States of America)',1,1,0),(15549,0,115438,'Clearwater Beach','United States of America','US','Clearwater Beach (United States of America)',1,1,0),(15550,0,115439,'Clearwell','United Kingdom','UK','Clearwell (United Kingdom)',1,1,0),(15551,6448,115440,'Cleburne','United States of America','US','Cleburne (United States of America)',1,1,0),(15552,0,115441,'Cleebronn','Germany','DE','Cleebronn (Germany)',1,1,0),(15553,0,115442,'Clermont-l\'Herault','France','FR','Clermont-l\'Herault (France)',1,1,0),(15554,0,115443,'Cleveland','United States of America','US','Cleveland (United States of America)',1,1,0),(15555,6475,115444,'Clichy','France','FR','Clichy (France)',1,1,0),(15556,6482,115445,'Clifton Beach','Australia','AU','Clifton Beach (Australia)',1,1,0),(15557,0,115446,'Climping','United Kingdom','UK','Climping (United Kingdom)',1,1,0),(15558,0,115447,'Clint','United States of America','US','Clint (United States of America)',1,1,0),(15559,6499,115448,'Cloppenburg','Germany','DE','Cloppenburg (Germany)',1,1,0),(15560,6515,115449,'Cluny','France','FR','Cluny (France)',1,1,0),(15561,6517,115450,'Clusone','Italy','IT','Clusone (Italy)',1,1,0),(15562,6526,115451,'Coalinga','United States of America','US','Coalinga (United States of America)',1,1,0),(15563,6547,115452,'Cobourg','Canada','CA','Cobourg (Canada)',1,1,0),(15564,0,115453,'Cockburn Town','Turks & Caicos Islands',NULL,'Cockburn Town (Turks & Caicos Islands)',1,1,0),(15565,6582,115454,'Codogne','Italy','IT','Codogne (Italy)',1,1,0),(15566,0,115455,'Coggeshall','United Kingdom','UK','Coggeshall (United Kingdom)',1,1,0),(15567,6598,115456,'Cogne','Italy','IT','Cogne (Italy)',1,1,0),(15568,6599,115457,'Cogoleto','Italy','IT','Cogoleto (Italy)',1,1,0),(15569,6600,115458,'Cogolin','France','FR','Cogolin (France)',1,1,0),(15570,6606,115459,'Cohoes','United States of America','US','Cohoes (United States of America)',1,1,0),(15571,6613,115460,'Coise-Saint-Jean-Pied-Gauthier','France','FR','Coise-Saint-Jean-Pied-Gauthier (France)',1,1,0),(15572,0,115461,'Cola','Italy','IT','Cola (Italy)',1,1,0),(15573,0,115462,'Colazza','Italy','IT','Colazza (Italy)',1,1,0),(15574,6622,115463,'Colby','United States of America','US','Colby (United States of America)',1,1,0),(15575,0,115464,'Colchester','United Kingdom','UK','Colchester (United Kingdom)',1,1,0),(15576,0,115465,'Coleford','United Kingdom','UK','Coleford (United Kingdom)',1,1,0),(15577,0,115466,'Colinsburgh','United Kingdom','UK','Colinsburgh (United Kingdom)',1,1,0),(15578,0,115467,'Colldejou','Spain','ES','Colldejou (Spain)',1,1,0),(15579,0,115468,'Colle Sestriere','Italy','IT','Colle Sestriere (Italy)',1,1,0),(15580,0,115469,'Collegalli','Italy','IT','Collegalli (Italy)',1,1,0),(15581,6667,115470,'Collingwood','New Zealand','NZ','Collingwood (New Zealand)',1,1,0),(15582,0,115471,'Collinsville','United States of America','US','Collinsville (United States of America)',1,1,0),(15583,0,115472,'Colmberg','Germany','DE','Colmberg (Germany)',1,1,0),(15584,6680,115473,'Cologno al Serio','Italy','IT','Cologno al Serio (Italy)',1,1,0),(15585,0,115474,'Colombey-les-Deux-Eglises','France','FR','Colombey-les-Deux-Eglises (France)',1,1,0),(15586,6690,115475,'Colomiers','France','FR','Colomiers (France)',1,1,0),(15587,6700,115476,'Colorado City','United States of America','US','Colorado City (United States of America)',1,1,0),(15588,6704,115477,'Colstrip','United States of America','US','Colstrip (United States of America)',1,1,0),(15589,0,115478,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15590,6724,115479,'Comarruga','Spain','ES','Comarruga (Spain)',1,1,0),(15591,6729,115480,'Combourg','France','FR','Combourg (France)',1,1,0),(15592,6733,115481,'Comerio','Italy','IT','Comerio (Italy)',1,1,0),(15593,0,115482,'Comitan De Dominguez','Mexico','MX','Comitan De Dominguez (Mexico)',1,1,0),(15594,6754,115483,'Compton','United States of America','US','Compton (United States of America)',1,1,0),(15595,6762,115484,'Concei','Italy','IT','Concei (Italy)',1,1,0),(15596,6765,115485,'Concepcion de Ataco','El Salvador','SV','Concepcion de Ataco (El Salvador)',1,1,0),(15597,0,115486,'Concord','United States of America','US','Concord (United States of America)',1,1,0),(15598,0,115487,'Concord','United States of America','US','Concord (United States of America)',1,1,0),(15599,6795,115488,'Conflans-Sainte-Honorine','France','FR','Conflans-Sainte-Honorine (France)',1,1,0),(15600,0,115489,'Conflans-sur-Anille','France','FR','Conflans-sur-Anille (France)',1,1,0),(15601,6808,115490,'Conneaut','United States of America','US','Conneaut (United States of America)',1,1,0),(15602,0,115491,'Connel','United Kingdom','UK','Connel (United Kingdom)',1,1,0),(15603,6818,115492,'Conrad','United States of America','US','Conrad (United States of America)',1,1,0),(15604,0,115493,'Constanza','Dominican Republic','DO','Constanza (Dominican Republic)',1,1,0),(15605,6835,115494,'Consuegra','Spain','ES','Consuegra (Spain)',1,1,0),(15606,6855,115495,'Cooke City','United States of America','US','Cooke City (United States of America)',1,1,0),(15607,6858,115496,'Cookstown','United States of America','US','Cookstown (United States of America)',1,1,0),(15608,0,115497,'Cookstown','United Kingdom','UK','Cookstown (United Kingdom)',1,1,0),(15609,6870,115498,'Coonawarra','Australia','AU','Coonawarra (Australia)',1,1,0),(15610,0,115499,'Coral Beach','Israel','IL','Coral Beach (Israel)',1,1,0),(15611,30718,115500,'Coral Springs','United States of America','US','Coral Springs (United States of America)',1,1,0),(15612,6933,115502,'Cordoba','Mexico','MX','Cordoba (Mexico)',1,1,0),(15613,0,115503,'Coreglia Antelminell','Italy','IT','Coreglia Antelminell (Italy)',1,1,0),(15614,0,115504,'Corlu','Turkey','TR','Corlu (Turkey)',1,1,0),(15615,6965,115505,'Cormano','Italy','IT','Cormano (Italy)',1,1,0),(15616,6971,115506,'Cornelia','United States of America','US','Cornelia (United States of America)',1,1,0),(15617,6974,115507,'Corner Brook','Canada','CA','Corner Brook (Canada)',1,1,0),(15618,6992,115508,'Corowa','Australia','AU','Corowa (Australia)',1,1,0),(15619,0,115509,'Corsham','United Kingdom','UK','Corsham (United Kingdom)',1,1,0),(15620,7011,115510,'Corsicana','United States of America','US','Corsicana (United States of America)',1,1,0),(15621,7015,115511,'Corte','France','FR','Corte (France)',1,1,0),(15622,0,115512,'Cortecito','Dominican Republic','DO','Cortecito (Dominican Republic)',1,1,0),(15623,0,115513,'Cortes de Tajuna','Spain','ES','Cortes de Tajuna (Spain)',1,1,0),(15624,0,115514,'Coruripe','Brazil','BR','Coruripe (Brazil)',1,1,0),(15625,7037,115515,'Cosby','United States of America','US','Cosby (United States of America)',1,1,0),(15626,0,115516,'Cospeito','Spain','ES','Cospeito (Spain)',1,1,0),(15627,30722,115517,'Costa Calma','Spain','ES','Costa Calma (Spain)',1,1,0),(15628,30726,115518,'Costa de la Luz','Spain','ES','Costa de la Luz (Spain)',1,1,0),(15629,0,115519,'Costa di Folgaria','Italy','IT','Costa di Folgaria (Italy)',1,1,0),(15630,0,115520,'Costitx','Spain','ES','Costitx (Spain)',1,1,0),(15631,0,115521,'Cottage Grove','United States of America','US','Cottage Grove (United States of America)',1,1,0),(15632,7071,115522,'Cotulla','United States of America','US','Cotulla (United States of America)',1,1,0),(15633,7079,115523,'Coulterville','United States of America','US','Coulterville (United States of America)',1,1,0),(15634,7086,115524,'Coupeville','United States of America','US','Coupeville (United States of America)',1,1,0),(15635,0,115525,'Covaleda','Spain','ES','Covaleda (Spain)',1,1,0),(15636,7114,115527,'Covigliaio','Italy','IT','Covigliaio (Italy)',1,1,0),(15637,7120,115528,'Cowansville','Canada','CA','Cowansville (Canada)',1,1,0),(15638,0,115529,'Cowshill','United Kingdom','UK','Cowshill (United Kingdom)',1,1,0),(15639,0,115530,'Coxs Bazar','Bangladesh','BD','Coxs Bazar (Bangladesh)',1,1,0),(15640,7138,115531,'Crafers','Australia','AU','Crafers (Australia)',1,1,0),(15641,7140,115532,'Craig','United States of America','US','Craig (United States of America)',1,1,0),(15642,7152,115533,'Cranberry','United States of America','US','Cranberry (United States of America)',1,1,0),(15643,0,115534,'Cranbrook','Australia','AU','Cranbrook (Australia)',1,1,0),(15644,7159,115535,'Crandola Valsassina','Italy','IT','Crandola Valsassina (Italy)',1,1,0),(15645,7162,115536,'Cranford','United States of America','US','Cranford (United States of America)',1,1,0),(15646,7169,115537,'Craponne','France','FR','Craponne (France)',1,1,0),(15647,0,115538,'Crayssac','France','FR','Crayssac (France)',1,1,0),(15648,6748,115539,'Competa','Spain','ES','Competa (Spain)',1,1,0),(15649,6758,115540,'Con Dao','Vietnam','VN','Con Dao (Vietnam)',1,1,0),(15650,0,115541,'Concord','United States of America','US','Concord (United States of America)',1,1,0),(15651,0,115542,'Condat-sur-Vezere','France','FR','Condat-sur-Vezere (France)',1,1,0),(15652,6785,115543,'Condeixa-a-Nova','Portugal','PT','Condeixa-a-Nova (Portugal)',1,1,0),(15653,6805,115544,'Conilhac-Corbieres','France','FR','Conilhac-Corbieres (France)',1,1,0),(15654,6827,115545,'Constancia','Portugal','PT','Constancia (Portugal)',1,1,0),(15655,6849,115546,'Conyers','United States of America','US','Conyers (United States of America)',1,1,0),(15656,30715,115547,'Cook','United States of America','US','Cook (United States of America)',1,1,0),(15657,6857,115548,'Cooksburg','United States of America','US','Cooksburg (United States of America)',1,1,0),(15658,6860,115549,'Cooktown','Australia','AU','Cooktown (Australia)',1,1,0),(15659,6864,115550,'Coolum Beach','Australia','AU','Coolum Beach (Australia)',1,1,0),(15660,0,115551,'Coorong Nationalpark','Australia','AU','Coorong Nationalpark (Australia)',1,1,0),(15661,6883,115552,'Cootamundra','Australia','AU','Cootamundra (Australia)',1,1,0),(15662,6884,115553,'Cootehill','Ireland','IE','Cootehill (Ireland)',1,1,0),(15663,0,115554,'Copi','Croatia','HR','Copi (Croatia)',1,1,0),(15664,6910,115555,'Coralville','United States of America','US','Coralville (United States of America)',1,1,0),(15665,6914,115556,'Corbeil-Essonnes','France','FR','Corbeil-Essonnes (France)',1,1,0),(15666,6926,115557,'Corcoran','United States of America','US','Corcoran (United States of America)',1,1,0),(15667,6938,115558,'Corella','Spain','ES','Corella (Spain)',1,1,0),(15668,0,115559,'Corfu','Greece','GR','Corfu (Greece)',1,1,0),(15669,0,115560,'Corigliano Calabro','Italy','IT','Corigliano Calabro (Italy)',1,1,0),(15670,6957,115561,'Corinaldo','Italy','IT','Corinaldo (Italy)',1,1,0),(15671,0,115562,'Cormatin','France','FR','Cormatin (France)',1,1,0),(15672,0,115563,'Cormons','Italy','IT','Cormons (Italy)',1,1,0),(15673,0,115564,'Cornhill-on-Tweed','United Kingdom','UK','Cornhill-on-Tweed (United Kingdom)',1,1,0),(15674,6982,115565,'Cornwall','Canada','CA','Cornwall (Canada)',1,1,0),(15675,0,115566,'Cornwall Bridge','United States of America','US','Cornwall Bridge (United States of America)',1,1,0),(15676,6991,115567,'Coronado','United States of America','US','Coronado (United States of America)',1,1,0),(15677,6995,115568,'Corpus Christi','United States of America','US','Corpus Christi (United States of America)',1,1,0),(15678,7001,115569,'Correns','France','FR','Correns (France)',1,1,0),(15679,0,115570,'Corte Madera','United States of America','US','Corte Madera (United States of America)',1,1,0),(15680,7020,115571,'Cortez','United States of America','US','Cortez (United States of America)',1,1,0),(15681,0,115572,'Corvara di Beverino','Italy','IT','Corvara di Beverino (Italy)',1,1,0),(15682,7042,115573,'Cosne-Cours-sur-Loire','France','FR','Cosne-Cours-sur-Loire (France)',1,1,0),(15683,30724,115574,'Costa de Almeria','Spain','ES','Costa de Almeria (Spain)',1,1,0),(15684,30730,115575,'Costa de los Pinos','Spain','ES','Costa de los Pinos (Spain)',1,1,0),(15685,7052,115576,'Costigliole d\'Asti','Italy','IT','Costigliole d\'Asti (Italy)',1,1,0),(15686,7053,115577,'Cotabato','Philippines','PH','Cotabato (Philippines)',1,1,0),(15687,0,115578,'Cotundo','Ecuador','EC','Cotundo (Ecuador)',1,1,0),(15688,0,115579,'Coudes','France','FR','Coudes (France)',1,1,0),(15689,0,115580,'Coudeville Sur Mer','France','FR','Coudeville Sur Mer (France)',1,1,0),(15690,7082,115581,'Countryside','United States of America','US','Countryside (United States of America)',1,1,0),(15691,0,115582,'Coura-Seixas','Portugal','PT','Coura-Seixas (Portugal)',1,1,0),(15692,7088,115583,'Courban','France','FR','Courban (France)',1,1,0),(15693,0,115584,'Courtenay','Canada','CA','Courtenay (Canada)',1,1,0),(15694,0,115585,'Coustellet','France','FR','Coustellet (France)',1,1,0),(15695,7104,115586,'Coutances','France','FR','Coutances (France)',1,1,0),(15696,7105,115587,'Coutras','France','FR','Coutras (France)',1,1,0),(15697,0,115588,'Covarrubias','Cuba','CU','Covarrubias (Cuba)',1,1,0),(15698,0,115589,'Covas do Douro','Portugal','PT','Covas do Douro (Portugal)',1,1,0),(15699,0,115590,'Craigellachie','United Kingdom','UK','Craigellachie (United Kingdom)',1,1,0),(15700,7155,115591,'Cranbourne','Australia','AU','Cranbourne (Australia)',1,1,0),(15701,7175,115592,'Crawford Bay','Canada','CA','Crawford Bay (Canada)',1,1,0),(15702,0,115593,'Crawinkel','Germany','DE','Crawinkel (Germany)',1,1,0),(15703,7198,115594,'Creney-pres-Troyes','France','FR','Creney-pres-Troyes (France)',1,1,0),(15704,0,115595,'Crestatx','Spain','ES','Crestatx (Spain)',1,1,0),(15705,7210,115596,'Crestline','United States of America','US','Crestline (United States of America)',1,1,0),(15706,7226,115597,'Creteil','France','FR','Creteil (France)',1,1,0),(15707,0,115598,'Crianlarich','United Kingdom','UK','Crianlarich (United Kingdom)',1,1,0),(15708,7250,115599,'Cripple Creek','United States of America','US','Cripple Creek (United States of America)',1,1,0),(15709,7270,115600,'Cromwell','New Zealand','NZ','Cromwell (New Zealand)',1,1,0),(15710,7277,115601,'Cropani','Italy','IT','Cropani (Italy)',1,1,0),(15711,7290,115602,'Croton-on-Hudson','United States of America','US','Croton-on-Hudson (United States of America)',1,1,0),(15712,0,115603,'Crowthorne','United Kingdom','UK','Crowthorne (United Kingdom)',1,1,0),(15713,7305,115604,'Crozon','France','FR','Crozon (France)',1,1,0),(15714,0,115605,'Crudwell','United Kingdom','UK','Crudwell (United Kingdom)',1,1,0),(15715,7330,115606,'Cucq','France','FR','Cucq (France)',1,1,0),(15716,0,115607,'Cuerigo','Spain','ES','Cuerigo (Spain)',1,1,0),(15717,7347,115608,'Cuincy','France','FR','Cuincy (France)',1,1,0),(15718,0,115609,'Cuisery','France','FR','Cuisery (France)',1,1,0),(15719,0,115610,'Culver City','United States of America','US','Culver City (United States of America)',1,1,0),(15720,0,115611,'Curry','Ireland','IE','Curry (Ireland)',1,1,0),(15721,7397,115612,'Curtatone','Italy','IT','Curtatone (Italy)',1,1,0),(15722,0,115613,'Cusiano','Italy','IT','Cusiano (Italy)',1,1,0),(15723,7422,115614,'Cyberjaya','Malaysia','MY','Cyberjaya (Malaysia)',1,1,0),(15724,7431,115615,'Dachau','Germany','DE','Dachau (Germany)',1,1,0),(15725,0,115616,'Dachrieden','Germany','DE','Dachrieden (Germany)',1,1,0),(15726,7433,115617,'Daday','Turkey','TR','Daday (Turkey)',1,1,0),(15727,0,115618,'Dadonghai Bay','China','CN','Dadonghai Bay (China)',1,1,0),(15728,0,115619,'Dahme','Germany','DE','Dahme (Germany)',1,1,0),(15729,0,115620,'Daiano','Italy','IT','Daiano (Italy)',1,1,0),(15730,7463,115621,'Dakota Dunes','United States of America','US','Dakota Dunes (United States of America)',1,1,0),(15731,7467,115622,'Dalat','Vietnam','VN','Dalat (Vietnam)',1,1,0),(15732,7473,115623,'Dalen','Norway','NO','Dalen (Norway)',1,1,0),(15733,7497,115624,'Daly City','United States of America','US','Daly City (United States of America)',1,1,0),(15734,7498,115625,'Dalyan','Turkey','TR','Dalyan (Turkey)',1,1,0),(15735,7507,115626,'Damgan','France','FR','Damgan (France)',1,1,0),(15736,7512,115627,'Damme','Belgium','BE','Damme (Belgium)',1,1,0),(15737,0,115628,'Damvillers','France','FR','Damvillers (France)',1,1,0),(15738,7517,115629,'Dana Point','United States of America','US','Dana Point (United States of America)',1,1,0),(15739,7524,115630,'Danderyd','Sweden','SE','Danderyd (Sweden)',1,1,0),(15740,0,115631,'Danila','Greece','GR','Danila (Greece)',1,1,0),(15741,0,115632,'Dannenberg (Elbe)','Germany','DE','Dannenberg (Elbe) (Germany)',1,1,0),(15742,0,115633,'Danville','United States of America','US','Danville (United States of America)',1,1,0),(15743,0,115635,'Darlington','United States of America','US','Darlington (United States of America)',1,1,0),(15744,7563,115636,'Darmstadt','Germany','DE','Darmstadt (Germany)',1,1,0),(15745,0,115637,'Daumazan-sur-Arize','France','FR','Daumazan-sur-Arize (France)',1,1,0),(15746,7597,115638,'Davao','Philippines','PH','Davao (Philippines)',1,1,0),(15747,7599,115639,'Davenport','United States of America','US','Davenport (United States of America)',1,1,0),(15748,7607,115640,'Davis','United States of America','US','Davis (United States of America)',1,1,0),(15749,7616,115641,'Dawson','United States of America','US','Dawson (United States of America)',1,1,0),(15750,7618,115642,'Dawsonville','United States of America','US','Dawsonville (United States of America)',1,1,0),(15751,0,115643,'Daye','China','CN','Daye (China)',1,1,0),(15752,0,115644,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(15753,0,115645,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(15754,0,115646,'De Aaar','South Africa','ZA','De Aaar (South Africa)',1,1,0),(15755,30752,115647,'De Koog','Netherlands','NL','De Koog (Netherlands)',1,1,0),(15756,30759,115648,'De Smet','United States of America','US','De Smet (United States of America)',1,1,0),(15757,7646,115649,'Deba','Spain','ES','Deba (Spain)',1,1,0),(15758,7655,115650,'Decin','Czech Republic','CZ','Decin (Czech Republic)',1,1,0),(15759,7538,115651,'Danvers','United States of America','US','Danvers (United States of America)',1,1,0),(15760,0,115652,'Dargun','Germany','DE','Dargun (Germany)',1,1,0),(15761,0,115653,'Darica','Turkey','TR','Darica (Turkey)',1,1,0),(15762,0,115654,'Darlington','United Kingdom','UK','Darlington (United Kingdom)',1,1,0),(15763,7566,115655,'Darrow','United States of America','US','Darrow (United States of America)',1,1,0),(15764,7570,115656,'Dartmouth','Canada','CA','Dartmouth (Canada)',1,1,0),(15765,7582,115657,'Dassow','Germany','DE','Dassow (Germany)',1,1,0),(15766,0,115658,'Datteln','Germany','DE','Datteln (Germany)',1,1,0),(15767,0,115659,'Dausenau','Germany','DE','Dausenau (Germany)',1,1,0),(15768,0,115660,'Davenport','United States of America','US','Davenport (United States of America)',1,1,0),(15769,0,115661,'Dawson Creek','Canada','CA','Dawson Creek (Canada)',1,1,0),(15770,0,115662,'Daxin','China','CN','Daxin (China)',1,1,0),(15771,7624,115663,'Daylesford','Australia','AU','Daylesford (Australia)',1,1,0),(15772,0,115664,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(15773,30753,115665,'De Lutte','Netherlands','NL','De Lutte (Netherlands)',1,1,0),(15774,0,115666,'De Panne - Adinkerke','Belgium','BE','De Panne - Adinkerke (Belgium)',1,1,0),(15775,0,115667,'Dead Man\'s Flats','Canada','CA','Dead Man\'s Flats (Canada)',1,1,0),(15776,7638,115668,'Deadwood','United States of America','US','Deadwood (United States of America)',1,1,0),(15777,0,115669,'Deddington','United Kingdom','UK','Deddington (United Kingdom)',1,1,0),(15778,0,115670,'Dedenhausen','Germany','DE','Dedenhausen (Germany)',1,1,0),(15779,0,115671,'Deerlijk','Belgium','BE','Deerlijk (Belgium)',1,1,0),(15780,7678,115672,'Dehesa de Campoamor','Spain','ES','Dehesa de Campoamor (Spain)',1,1,0),(15781,7681,115673,'Deia','Spain','ES','Deia (Spain)',1,1,0),(15782,7693,115674,'Delavan','United States of America','US','Delavan (United States of America)',1,1,0),(15783,0,115675,'Dellach','Austria','AT','Dellach (Austria)',1,1,0),(15784,7713,115676,'Deloraine','Australia','AU','Deloraine (Australia)',1,1,0),(15785,0,115677,'Delta Junction','United States of America','US','Delta Junction (United States of America)',1,1,0),(15786,0,115678,'Demanova Dolina','Slovakia','SK','Demanova Dolina (Slovakia)',1,1,0),(15787,0,115679,'Demecser','Hungary','HU','Demecser (Hungary)',1,1,0),(15788,0,115680,'Demonia','Greece','GR','Demonia (Greece)',1,1,0),(15789,0,115681,'Den Hoorn (Texel)','Netherlands','NL','Den Hoorn (Texel) (Netherlands)',1,1,0),(15790,0,115682,'Dendermonde','Belgium','BE','Dendermonde (Belgium)',1,1,0),(15791,0,115683,'Denham','United Kingdom','UK','Denham (United Kingdom)',1,1,0),(15792,0,115684,'Deniyaya','Sri Lanka','LK','Deniyaya (Sri Lanka)',1,1,0),(15793,0,115685,'Deqen','China','CN','Deqen (China)',1,1,0),(15794,7760,115686,'Derby','Australia','AU','Derby (Australia)',1,1,0),(15795,7771,115687,'Dersau','Germany','DE','Dersau (Germany)',1,1,0),(15796,0,115688,'Dervio','Italy','IT','Dervio (Italy)',1,1,0),(15797,0,115689,'Desio','Italy','IT','Desio (Italy)',1,1,0),(15798,0,115690,'Dettighofen TG','Switzerland','CH','Dettighofen TG (Switzerland)',1,1,0),(15799,0,115691,'Deutsch Ehrensdorf','Austria','AT','Deutsch Ehrensdorf (Austria)',1,1,0),(15800,7815,115692,'Dexter','United States of America','US','Dexter (United States of America)',1,1,0),(15801,0,115693,'Dhigurah Island','Maldives','MV','Dhigurah Island (Maldives)',1,1,0),(15802,0,115694,'Dhonakulhi Island','Maldives','MV','Dhonakulhi Island (Maldives)',1,1,0),(15803,0,115695,'Dhuizon','France','FR','Dhuizon (France)',1,1,0),(15804,7845,115696,'Diamondville','United States of America','US','Diamondville (United States of America)',1,1,0),(15805,7854,115697,'Dickenson Bay','Antigua & Barbuda','AG','Dickenson Bay (Antigua & Barbuda)',1,1,0),(15806,7855,115698,'Dickinson','United States of America','US','Dickinson (United States of America)',1,1,0),(15807,0,115699,'Dickson City','United States of America','US','Dickson City (United States of America)',1,1,0),(15808,0,115700,'Dieburg','Germany','DE','Dieburg (Germany)',1,1,0),(15809,7873,115701,'Dieppe','Canada','CA','Dieppe (Canada)',1,1,0),(15810,0,115702,'Dietenheim','Germany','DE','Dietenheim (Germany)',1,1,0),(15811,0,115703,'Dietersheim','Germany','DE','Dietersheim (Germany)',1,1,0),(15812,7884,115704,'Diez','Germany','DE','Diez (Germany)',1,1,0),(15813,7899,115705,'Dilbeek','Belgium','BE','Dilbeek (Belgium)',1,1,0),(15814,7903,115706,'Dilley','United States of America','US','Dilley (United States of America)',1,1,0),(15815,7906,115707,'Dillon','United States of America','US','Dillon (United States of America)',1,1,0),(15816,7908,115708,'Dillsboro','United States of America','US','Dillsboro (United States of America)',1,1,0),(15817,7913,115709,'Dimaro','Italy','IT','Dimaro (Italy)',1,1,0),(15818,7917,115710,'Dinant','Belgium','BE','Dinant (Belgium)',1,1,0),(15819,0,115711,'Dingolfing','Germany','DE','Dingolfing (Germany)',1,1,0),(15820,0,115712,'Dio','Sweden','SE','Dio (Sweden)',1,1,0),(15821,7931,115713,'Dipperz','Germany','DE','Dipperz (Germany)',1,1,0),(15822,0,115714,'Dittishausen','Germany','DE','Dittishausen (Germany)',1,1,0),(15823,7952,115715,'Dives-Sur-Mer','France','FR','Dives-Sur-Mer (France)',1,1,0),(15824,7960,115716,'Dixville Notch','United States of America','US','Dixville Notch (United States of America)',1,1,0),(15825,0,115717,'Djupavogur','Iceland','IS','Djupavogur (Iceland)',1,1,0),(15826,0,115718,'Dlouha Ves u Havlickova Brodu','Czech Republic','CZ','Dlouha Ves u Havlickova Brodu (Czech Republic)',1,1,0),(15827,0,115719,'Dobbertin','Germany','DE','Dobbertin (Germany)',1,1,0),(15828,0,115720,'Dobeln','Germany','DE','Dobeln (Germany)',1,1,0),(15829,0,115721,'Doberschutz','Germany','DE','Doberschutz (Germany)',1,1,0),(15830,7975,115722,'Dobriach','Austria','AT','Dobriach (Austria)',1,1,0),(15831,7976,115723,'Dobrich','Bulgaria','BG','Dobrich (Bulgaria)',1,1,0),(15832,7979,115724,'Dobson','United States of America','US','Dobson (United States of America)',1,1,0),(15833,0,115725,'Dochamps','Belgium','BE','Dochamps (Belgium)',1,1,0),(15834,7984,115726,'Dodgeville','United States of America','US','Dodgeville (United States of America)',1,1,0),(15835,0,115727,'Dohuk','Iraq','IQ','Dohuk (Iraq)',1,1,0),(15836,0,115728,'Doleisi Krusec','Czech Republic','CZ','Doleisi Krusec (Czech Republic)',1,1,0),(15837,8000,115729,'Dolenjske Toplice','Slovenia','SI','Dolenjske Toplice (Slovenia)',1,1,0),(15838,0,115730,'Dollarbeg','United Kingdom','UK','Dollarbeg (United Kingdom)',1,1,0),(15839,0,115731,'Dolny Kubin/Orava','Slovakia','SK','Dolny Kubin/Orava (Slovakia)',1,1,0),(15840,0,115732,'Dolores','Argentina','AR','Dolores (Argentina)',1,1,0),(15841,8023,115733,'Domfront','France','FR','Domfront (France)',1,1,0),(15842,8026,115734,'Dominical','Costa Rica','CR','Dominical (Costa Rica)',1,1,0),(15843,0,115735,'Domitz','Germany','DE','Domitz (Germany)',1,1,0),(15844,0,115736,'Dompierre-les-Ormes','France','FR','Dompierre-les-Ormes (France)',1,1,0),(15845,0,115737,'Donas','Portugal','PT','Donas (Portugal)',1,1,0),(15846,0,115738,'Doncaster','Australia','AU','Doncaster (Australia)',1,1,0),(15847,8048,115739,'Donetsk','Ukraine','UA','Donetsk (Ukraine)',1,1,0),(15848,0,115740,'Dongquan','China','CN','Dongquan (China)',1,1,0),(15849,0,115741,'Donji Humac','Croatia','HR','Donji Humac (Croatia)',1,1,0),(15850,8063,115742,'Donna','United States of America','US','Donna (United States of America)',1,1,0),(15851,0,115743,'Donnemain-Saint-Mames','France','FR','Donnemain-Saint-Mames (France)',1,1,0),(15852,8087,115744,'Dordrecht','Netherlands','NL','Dordrecht (Netherlands)',1,1,0),(15853,0,115745,'Dorf Zechlin','Germany','DE','Dorf Zechlin (Germany)',1,1,0),(15854,0,115746,'Dornhan-Leinstetten','Germany','DE','Dornhan-Leinstetten (Germany)',1,1,0),(15855,8098,115747,'Dorotea','Sweden','SE','Dorotea (Sweden)',1,1,0),(15856,0,115748,'Dorphof','Germany','DE','Dorphof (Germany)',1,1,0),(15857,0,115749,'Dorset','United Kingdom','UK','Dorset (United Kingdom)',1,1,0),(15858,8107,115750,'Dorval','Canada','CA','Dorval (Canada)',1,1,0),(15859,0,115751,'Dos Aguas','Spain','ES','Dos Aguas (Spain)',1,1,0),(15860,8108,115752,'Dossenheim-sur-Zinsel','France','FR','Dossenheim-sur-Zinsel (France)',1,1,0),(15861,8109,115753,'Dossobuono','Italy','IT','Dossobuono (Italy)',1,1,0),(15862,0,115754,'Dotlingen','Germany','DE','Dotlingen (Germany)',1,1,0),(15863,8115,115755,'Douarnenez','France','FR','Douarnenez (France)',1,1,0),(15864,0,115756,'Double Island','Australia','AU','Double Island (Australia)',1,1,0),(15865,0,115757,'Doucier','France','FR','Doucier (France)',1,1,0),(15866,8121,115758,'Douglassville','United States of America','US','Douglassville (United States of America)',1,1,0),(15867,0,115759,'Drachselried','Germany','DE','Drachselried (Germany)',1,1,0),(15868,0,115760,'Dragove','Croatia','HR','Dragove (Croatia)',1,1,0),(15869,0,115761,'Chirche','Spain','ES','Chirche (Spain)',1,1,0),(15870,6171,115762,'Chirnside Park','Australia','AU','Chirnside Park (Australia)',1,1,0),(15871,6178,115763,'Chisinau','Moldova','MD','Chisinau (Moldova)',1,1,0),(15872,6184,115764,'Chitose','Japan','JP','Chitose (Japan)',1,1,0),(15873,6187,115765,'Chitre','Panama','PA','Chitre (Panama)',1,1,0),(15874,6204,115766,'Choc Bay','Saint Lucia','LC','Choc Bay (Saint Lucia)',1,1,0),(15875,0,115767,'Chora Sfakion','Greece','GR','Chora Sfakion (Greece)',1,1,0),(15876,0,115768,'Chrudim','Czech Republic','CZ','Chrudim (Czech Republic)',1,1,0),(15877,0,115769,'Chula Vista','United States of America','US','Chula Vista (United States of America)',1,1,0),(15878,0,115770,'Chumbe Island','Tanzania','TZ','Chumbe Island (Tanzania)',1,1,0),(15879,6268,115771,'Chumphon','Thailand','TH','Chumphon (Thailand)',1,1,0),(15880,6272,115772,'Chun\'an','China','CN','Chun\'an (China)',1,1,0),(15881,6275,115773,'Chungju','South Korea','KR','Chungju (South Korea)',1,1,0),(15882,0,115774,'Chuxiong','China','CN','Chuxiong (China)',1,1,0),(15883,0,115775,'Chwaka','Tanzania','TZ','Chwaka (Tanzania)',1,1,0),(15884,0,115776,'Ciamis','Indonesia','ID','Ciamis (Indonesia)',1,1,0),(15885,6297,115777,'Cidade Velha','Cape Verde','CV','Cidade Velha (Cape Verde)',1,1,0),(15886,6307,115778,'Cieza','Spain','ES','Cieza (Spain)',1,1,0),(15887,0,115779,'Cilmeri','United Kingdom','UK','Cilmeri (United Kingdom)',1,1,0),(15888,6320,115780,'Ciney','Belgium','BE','Ciney (Belgium)',1,1,0),(15889,6331,115781,'Cipolletti','Argentina','AR','Cipolletti (Argentina)',1,1,0),(15890,0,115782,'Cirencester','United Kingdom','UK','Cirencester (United Kingdom)',1,1,0),(15891,0,115783,'Cirie','Italy','IT','Cirie (Italy)',1,1,0),(15892,0,115784,'Ciron','France','FR','Ciron (France)',1,1,0),(15893,6344,115785,'Cisternino','Italy','IT','Cisternino (Italy)',1,1,0),(15894,6346,115786,'Citerna','Italy','IT','Citerna (Italy)',1,1,0),(15895,0,115787,'Citluk','Bosnia and Herzegowina','BA','Citluk (Bosnia and Herzegowina)',1,1,0),(15896,0,115788,'Cittadella del Capo','Italy','IT','Cittadella del Capo (Italy)',1,1,0),(15897,6350,115789,'Cittanova','Italy','IT','Cittanova (Italy)',1,1,0),(15898,0,115790,'Civitella in Val di Chiana','Italy','IT','Civitella in Val di Chiana (Italy)',1,1,0),(15899,0,115791,'Clairvaux-sur-Aube','France','FR','Clairvaux-sur-Aube (France)',1,1,0),(15900,6392,115792,'Claremorris','Ireland','IE','Claremorris (Ireland)',1,1,0),(15901,6397,115793,'Clarendon','United States of America','US','Clarendon (United States of America)',1,1,0),(15902,6401,115794,'Claresholm','Canada','CA','Claresholm (Canada)',1,1,0),(15903,6415,115795,'Claryville','United States of America','US','Claryville (United States of America)',1,1,0),(15904,0,115796,'Clavieres','France','FR','Clavieres (France)',1,1,0),(15905,6429,115797,'Claye-Souilly','France','FR','Claye-Souilly (France)',1,1,0),(15906,0,115798,'Claygate','United Kingdom','UK','Claygate (United Kingdom)',1,1,0),(15907,0,115799,'Clayton','United States of America','US','Clayton (United States of America)',1,1,0),(15908,0,115800,'Clear Lake','United States of America','US','Clear Lake (United States of America)',1,1,0),(15909,6456,115801,'Clemmons','United States of America','US','Clemmons (United States of America)',1,1,0),(15910,6459,115802,'Cleon','France','FR','Cleon (France)',1,1,0),(15911,0,115803,'Cles','Italy','IT','Cles (Italy)',1,1,0),(15912,0,115804,'Cleveland','United States of America','US','Cleveland (United States of America)',1,1,0),(15913,6481,115805,'Clifton','South Africa','ZA','Clifton (South Africa)',1,1,0),(15914,6479,115806,'Clifton','United States of America','US','Clifton (United States of America)',1,1,0),(15915,0,115807,'Clifton','United States of America','US','Clifton (United States of America)',1,1,0),(15916,0,115808,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(15917,0,115809,'Clovelly','United Kingdom','UK','Clovelly (United Kingdom)',1,1,0),(15918,0,115810,'Coalville','United Kingdom','UK','Coalville (United Kingdom)',1,1,0),(15919,6550,115811,'Cobreces','Spain','ES','Cobreces (Spain)',1,1,0),(15920,0,115812,'Coccorino','Italy','IT','Coccorino (Italy)',1,1,0),(15921,0,115813,'Cock Bridge','United Kingdom','UK','Cock Bridge (United Kingdom)',1,1,0),(15922,0,115814,'Codroipo','Italy','IT','Codroipo (Italy)',1,1,0),(15923,6603,115815,'Cogorno','Italy','IT','Cogorno (Italy)',1,1,0),(15924,6610,115816,'Coimbra','Portugal','PT','Coimbra (Portugal)',1,1,0),(15925,6618,115817,'Colares','Portugal','PT','Colares (Portugal)',1,1,0),(15926,0,115818,'Colbitz','Germany','DE','Colbitz (Germany)',1,1,0),(15927,6624,115819,'Colchester','United States of America','US','Colchester (United States of America)',1,1,0),(15928,6644,115820,'Collado Villalba','Spain','ES','Collado Villalba (Spain)',1,1,0),(15929,0,115821,'Collazzone','Italy','IT','Collazzone (Italy)',1,1,0),(15930,0,115822,'Colle San Paolo','Italy','IT','Colle San Paolo (Italy)',1,1,0),(15931,0,115823,'College Park','United States of America','US','College Park (United States of America)',1,1,0),(15932,0,115824,'College Station','United States of America','US','College Station (United States of America)',1,1,0),(15933,0,115825,'Collemezzano','Italy','IT','Collemezzano (Italy)',1,1,0),(15934,6661,115826,'Colli del Tronto','Italy','IT','Colli del Tronto (Italy)',1,1,0),(15935,0,115827,'Colli sul Velino','Italy','IT','Colli sul Velino (Italy)',1,1,0),(15936,6664,115828,'Collierville','United States of America','US','Collierville (United States of America)',1,1,0),(15937,6666,115829,'Collingwood','Canada','CA','Collingwood (Canada)',1,1,0),(15938,6668,115830,'Collins','United States of America','US','Collins (United States of America)',1,1,0),(15939,0,115831,'Collio','Italy','IT','Collio (Italy)',1,1,0),(15940,6671,115832,'Collioure','France','FR','Collioure (France)',1,1,0),(15941,0,115833,'Collobrieres','France','FR','Collobrieres (France)',1,1,0),(15942,6675,115834,'Colmar','France','FR','Colmar (France)',1,1,0),(15943,6693,115835,'Colonel Hill','Bahamas','BS','Colonel Hill (Bahamas)',1,1,0),(15944,0,115836,'Colorado City','United States of America','US','Colorado City (United States of America)',1,1,0),(15945,0,115837,'Coltano','Italy','IT','Coltano (Italy)',1,1,0),(15946,0,115838,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(15947,0,115839,'Colusa','United States of America','US','Colusa (United States of America)',1,1,0),(15948,6738,115841,'Comiso','Italy','IT','Comiso (Italy)',1,1,0),(15949,0,115842,'Commentry','France','FR','Commentry (France)',1,1,0),(15950,0,115843,'Commerce','United States of America','US','Commerce (United States of America)',1,1,0),(15951,6743,115844,'Como','Australia','AU','Como (Australia)',1,1,0),(15952,6745,115845,'Comodoro Rivadavia','Argentina','AR','Comodoro Rivadavia (Argentina)',1,1,0),(15953,6752,115846,'Comporta','Portugal','PT','Comporta (Portugal)',1,1,0),(15954,6763,115847,'Conceicao da Barra','Brazil','BR','Conceicao da Barra (Brazil)',1,1,0),(15955,0,115848,'Concordia','United States of America','US','Concordia (United States of America)',1,1,0),(15956,6776,115849,'Concordville','United States of America','US','Concordville (United States of America)',1,1,0),(15957,6778,115850,'Concrete','United States of America','US','Concrete (United States of America)',1,1,0),(15958,0,115851,'Condat (Lot)','France','FR','Condat (Lot) (France)',1,1,0),(15959,0,115852,'Confignon','Switzerland','CH','Confignon (Switzerland)',1,1,0),(15960,6799,115853,'Cong','Ireland','IE','Cong (Ireland)',1,1,0),(15961,0,115854,'Coniston','United Kingdom','UK','Coniston (United Kingdom)',1,1,0),(15962,0,115855,'Conon Bridge','United Kingdom','UK','Conon Bridge (United Kingdom)',1,1,0),(15963,6820,115856,'Conroe','United States of America','US','Conroe (United States of America)',1,1,0),(15964,0,115857,'Consolation-Maisonnettes','France','FR','Consolation-Maisonnettes (France)',1,1,0),(15965,6837,115858,'Contagem','Brazil','BR','Contagem (Brazil)',1,1,0),(15966,6844,115859,'Contursi Terme','Italy','IT','Contursi Terme (Italy)',1,1,0),(15967,0,115860,'Cookson','United States of America','US','Cookson (United States of America)',1,1,0),(15968,6861,115861,'Coolangatta','Australia','AU','Coolangatta (Australia)',1,1,0),(15969,6866,115862,'Cooma','Australia','AU','Cooma (Australia)',1,1,0),(15970,0,115863,'Coon Rapids','United States of America','US','Coon Rapids (United States of America)',1,1,0),(15971,0,115865,'Coory','Australia','AU','Coory (Australia)',1,1,0),(15972,0,115866,'Copper Mountain','United States of America','US','Copper Mountain (United States of America)',1,1,0),(15973,0,115867,'Coral Bay','Cyprus','CY','Coral Bay (Cyprus)',1,1,0),(15974,0,115868,'Corao','Spain','ES','Corao (Spain)',1,1,0),(15975,0,115869,'Corbridge','United Kingdom','UK','Corbridge (United Kingdom)',1,1,0),(15976,0,115870,'Dermbach','Germany','DE','Dermbach (Germany)',1,1,0),(15977,7767,115871,'Dernbach','Germany','DE','Dernbach (Germany)',1,1,0),(15978,7785,115872,'Desroches Island','Seychelles','SC','Desroches Island (Seychelles)',1,1,0),(15979,0,115873,'Detern','Germany','DE','Detern (Germany)',1,1,0),(15980,0,115874,'Deutschfeistritz','Austria','AT','Deutschfeistritz (Austria)',1,1,0),(15981,7812,115875,'Devonshire','Bermuda','BM','Devonshire (Bermuda)',1,1,0),(15982,0,115876,'Dewey Beach','United States of America','US','Dewey Beach (United States of America)',1,1,0),(15983,7814,115877,'Dewitt','United States of America','US','Dewitt (United States of America)',1,1,0),(15984,0,115878,'Dewsbury','United Kingdom','UK','Dewsbury (United Kingdom)',1,1,0),(15985,7820,115879,'Dhaka','Bangladesh','BD','Dhaka (Bangladesh)',1,1,0),(15986,7837,115882,'Diafani','Greece','GR','Diafani (Greece)',1,1,0),(15987,7844,115883,'Diamondhead','United States of America','US','Diamondhead (United States of America)',1,1,0),(15988,0,115885,'Die','France','FR','Die (France)',1,1,0),(15989,0,115886,'Dieblich','Germany','DE','Dieblich (Germany)',1,1,0),(15990,0,115887,'Diego Suarez','Madagascar','MG','Diego Suarez (Madagascar)',1,1,0),(15991,0,115888,'Dielsdorf ZH','Switzerland','CH','Dielsdorf ZH (Switzerland)',1,1,0),(15992,0,115889,'Diemelstadt','Germany','DE','Diemelstadt (Germany)',1,1,0),(15993,0,115890,'Dienten','Austria','AT','Dienten (Austria)',1,1,0),(15994,0,115891,'Diepholz','Germany','DE','Diepholz (Germany)',1,1,0),(15995,7881,115892,'Dietfurt','Germany','DE','Dietfurt (Germany)',1,1,0),(15996,7883,115893,'Dietzenbach','Germany','DE','Dietzenbach (Germany)',1,1,0),(15997,0,115895,'Dillon','United States of America','US','Dillon (United States of America)',1,1,0),(15998,0,115897,'Dimos Arkadiou','Greece','GR','Dimos Arkadiou (Greece)',1,1,0),(15999,0,115898,'Dirkshorn','Netherlands','NL','Dirkshorn (Netherlands)',1,1,0),(16000,7983,115900,'Dodge City','United States of America','US','Dodge City (United States of America)',1,1,0),(16001,7995,115901,'Dolancourt','France','FR','Dolancourt (France)',1,1,0),(16002,8007,115902,'Dolni Dvoriste','Czech Republic','CZ','Dolni Dvoriste (Czech Republic)',1,1,0),(16003,0,115903,'Dolni Dvur','Czech Republic','CZ','Dolni Dvur (Czech Republic)',1,1,0),(16004,0,115904,'Dolni Kounice','Czech Republic','CZ','Dolni Kounice (Czech Republic)',1,1,0),(16005,0,115905,'Dolni Morava','Czech Republic','CZ','Dolni Morava (Czech Republic)',1,1,0),(16006,0,115906,'Dolny Smokovec','Slovakia','SK','Dolny Smokovec (Slovakia)',1,1,0),(16007,8033,115907,'Dompierre-sur-Besbre','France','FR','Dompierre-sur-Besbre (France)',1,1,0),(16008,0,115908,'Don','Italy','IT','Don (Italy)',1,1,0),(16009,0,115909,'Donabate','Ireland','IE','Donabate (Ireland)',1,1,0),(16010,0,115910,'Donja Stubica','Croatia','HR','Donja Stubica (Croatia)',1,1,0),(16011,0,115911,'Donoratico','Italy','IT','Donoratico (Italy)',1,1,0),(16012,0,115912,'Donville-les-Bains','France','FR','Donville-les-Bains (France)',1,1,0),(16013,8072,115913,'Donzenac','France','FR','Donzenac (France)',1,1,0),(16014,0,115914,'Dorchester-on-Thames','United Kingdom','UK','Dorchester-on-Thames (United Kingdom)',1,1,0),(16015,0,115915,'Dornhan','Germany','DE','Dornhan (Germany)',1,1,0),(16016,0,115916,'Dornoch','United Kingdom','UK','Dornoch (United Kingdom)',1,1,0),(16017,0,115917,'Dorpstedt','Germany','DE','Dorpstedt (Germany)',1,1,0),(16018,0,115918,'Dorverden','Germany','DE','Dorverden (Germany)',1,1,0),(16019,0,115919,'Dos Torres','Spain','ES','Dos Torres (Spain)',1,1,0),(16020,8113,115920,'Douai','France','FR','Douai (France)',1,1,0),(16021,0,115921,'Doughcloyne','Ireland','IE','Doughcloyne (Ireland)',1,1,0),(16022,0,115922,'Dourbies','France','FR','Dourbies (France)',1,1,0),(16023,0,115923,'Dourgne','France','FR','Dourgne (France)',1,1,0),(16024,0,115924,'Doussard','France','FR','Doussard (France)',1,1,0),(16025,0,115925,'Dover','Barbados','BB','Dover (Barbados)',1,1,0),(16026,8132,115926,'Dovre','Norway','NO','Dovre (Norway)',1,1,0),(16027,8133,115927,'Dowagiac','United States of America','US','Dowagiac (United States of America)',1,1,0),(16028,8136,115928,'Downey','United States of America','US','Downey (United States of America)',1,1,0),(16029,8151,115929,'Drachten','Netherlands','NL','Drachten (Netherlands)',1,1,0),(16030,8154,115930,'Dragoni','Italy','IT','Dragoni (Italy)',1,1,0),(16031,8162,115931,'Drancy','France','FR','Drancy (France)',1,1,0),(16032,8178,115932,'Dresden','Germany','DE','Dresden (Germany)',1,1,0),(16033,0,115933,'Dromore',NULL,NULL,'Dromore ()',1,1,0),(16034,8203,115934,'Drummondville','Canada','CA','Drummondville (Canada)',1,1,0),(16035,8211,115935,'Drvenik','Croatia','HR','Drvenik (Croatia)',1,1,0),(16036,8219,115936,'Dubai','United Arab Emirates','AE','Dubai (United Arab Emirates)',1,1,0),(16037,8220,115937,'Dubbo','Australia','AU','Dubbo (Australia)',1,1,0),(16038,8221,115938,'Dubendorf','Switzerland','CH','Dubendorf (Switzerland)',1,1,0),(16039,8231,115939,'Dubrovnik','Croatia','HR','Dubrovnik (Croatia)',1,1,0),(16040,0,115940,'Duddova Ambra','Italy','IT','Duddova Ambra (Italy)',1,1,0),(16041,0,115941,'Dufftown','United Kingdom','UK','Dufftown (United Kingdom)',1,1,0),(16042,0,115942,'Duggendorf','Germany','DE','Duggendorf (Germany)',1,1,0),(16043,0,115943,'Duhamel','Canada','CA','Duhamel (Canada)',1,1,0),(16044,8256,115944,'Duiven','Netherlands','NL','Duiven (Netherlands)',1,1,0),(16045,8262,115945,'Dullstroom','South Africa','ZA','Dullstroom (South Africa)',1,1,0),(16046,8266,115946,'Duluth','United States of America','US','Duluth (United States of America)',1,1,0),(16047,0,115947,'Dumbria','Spain','ES','Dumbria (Spain)',1,1,0),(16048,8290,115948,'Duncan','United States of America','US','Duncan (United States of America)',1,1,0),(16049,8304,115949,'Dundrum','Ireland','IE','Dundrum (Ireland)',1,1,0),(16050,0,115950,'Dungloe','Ireland','IE','Dungloe (Ireland)',1,1,0),(16051,8314,115951,'Dungun','Malaysia','MY','Dungun (Malaysia)',1,1,0),(16052,0,115952,'Dunkerrin','Ireland','IE','Dunkerrin (Ireland)',1,1,0),(16053,0,115953,'Dunkeswell','United Kingdom','UK','Dunkeswell (United Kingdom)',1,1,0),(16054,8344,115954,'Dupnitsa','Bulgaria','BG','Dupnitsa (Bulgaria)',1,1,0),(16055,8350,115955,'Durango','United States of America','US','Durango (United States of America)',1,1,0),(16056,8354,115956,'Durbach','Germany','DE','Durbach (Germany)',1,1,0),(16057,8355,115957,'Durban','South Africa','ZA','Durban (South Africa)',1,1,0),(16058,8363,115959,'Durham','United States of America','US','Durham (United States of America)',1,1,0),(16059,0,115960,'Durness','United Kingdom','UK','Durness (United Kingdom)',1,1,0),(16060,0,115961,'Duror','United Kingdom','UK','Duror (United Kingdom)',1,1,0),(16061,0,115962,'Durrwangen','Germany','DE','Durrwangen (Germany)',1,1,0),(16062,0,115963,'Dusedau','Germany','DE','Dusedau (Germany)',1,1,0),(16063,8379,115964,'Duzce','Turkey','TR','Duzce (Turkey)',1,1,0),(16064,0,115965,'Dvur Kralove Nad Labem','Czech Republic','CZ','Dvur Kralove Nad Labem (Czech Republic)',1,1,0),(16065,8382,115966,'Dwingeloo','Netherlands','NL','Dwingeloo (Netherlands)',1,1,0),(16066,0,115967,'Dysina','Czech Republic','CZ','Dysina (Czech Republic)',1,1,0),(16067,0,115968,'Dzidzantun','Mexico','MX','Dzidzantun (Mexico)',1,1,0),(16068,0,115969,'Dziwnow','Poland','PL','Dziwnow (Poland)',1,1,0),(16069,0,115970,'Eads','United States of America','US','Eads (United States of America)',1,1,0),(16070,8397,115971,'Eagar','United States of America','US','Eagar (United States of America)',1,1,0),(16071,0,115972,'Ealing','United Kingdom','UK','Ealing (United Kingdom)',1,1,0),(16072,8411,115973,'Early','United States of America','US','Early (United States of America)',1,1,0),(16073,0,115974,'Earth City','United States of America','US','Earth City (United States of America)',1,1,0),(16074,30801,115975,'East Dubuque','United States of America','US','East Dubuque (United States of America)',1,1,0),(16075,30808,115976,'East Falmouth','United States of America','US','East Falmouth (United States of America)',1,1,0),(16076,30819,115977,'East Hartford','United States of America','US','East Hartford (United States of America)',1,1,0),(16077,0,115978,'East Horndon','United Kingdom','UK','East Horndon (United Kingdom)',1,1,0),(16078,8422,115979,'East Kemptville','Canada','CA','East Kemptville (Canada)',1,1,0),(16079,30838,115980,'East Orange','United States of America','US','East Orange (United States of America)',1,1,0),(16080,30841,115981,'East Peoria','United States of America','US','East Peoria (United States of America)',1,1,0),(16081,30842,115982,'East Point','United States of America','US','East Point (United States of America)',1,1,0),(16082,30732,115983,'Costa del Silencio','Spain','ES','Costa del Silencio (Spain)',1,1,0),(16083,30736,115984,'Costa Teguise','Spain','ES','Costa Teguise (Spain)',1,1,0),(16084,7051,115985,'Costermano','Italy','IT','Costermano (Italy)',1,1,0),(16085,0,115986,'Coswig - Buro','Germany','DE','Coswig - Buro (Germany)',1,1,0),(16086,0,115987,'Cotignola','Italy','IT','Cotignola (Italy)',1,1,0),(16087,0,115988,'Courtown Harbour','Ireland','IE','Courtown Harbour (Ireland)',1,1,0),(16088,0,115989,'Covarrubias','Spain','ES','Covarrubias (Spain)',1,1,0),(16089,0,115990,'Cove','United Kingdom','UK','Cove (United Kingdom)',1,1,0),(16090,0,115991,'Covington','United States of America','US','Covington (United States of America)',1,1,0),(16091,7124,115992,'Cowes','Australia','AU','Cowes (Australia)',1,1,0),(16092,0,115993,'Coxhoe','United Kingdom','UK','Coxhoe (United Kingdom)',1,1,0),(16093,7131,115994,'Coyhaique','Chile','CL','Coyhaique (Chile)',1,1,0),(16094,0,115995,'Crach','France','FR','Crach (France)',1,1,0),(16095,7187,115996,'Creches-sur-Saone','France','FR','Creches-sur-Saone (France)',1,1,0),(16096,7200,115997,'Crepon','France','FR','Crepon (France)',1,1,0),(16097,0,115998,'Cres Island','Croatia','HR','Cres Island (Croatia)',1,1,0),(16098,7206,115999,'Crespina','Italy','IT','Crespina (Italy)',1,1,0),(16099,7211,116000,'Creston','United States of America','US','Creston (United States of America)',1,1,0),(16100,0,116001,'Crickhowell','United Kingdom','UK','Crickhowell (United Kingdom)',1,1,0),(16101,7248,116002,'Crillon-le-Brave','France','FR','Crillon-le-Brave (France)',1,1,0),(16102,0,116003,'Crni','Croatia','HR','Crni (Croatia)',1,1,0),(16103,7269,116004,'Cromwell','United States of America','US','Cromwell (United States of America)',1,1,0),(16104,7310,116005,'Cruseilles','France','FR','Cruseilles (France)',1,1,0),(16105,0,116006,'Cruz de Tejeda','Spain','ES','Cruz de Tejeda (Spain)',1,1,0),(16106,0,116007,'Crystal City','United States of America','US','Crystal City (United States of America)',1,1,0),(16107,0,116008,'Crystal River','United States of America','US','Crystal River (United States of America)',1,1,0),(16108,7319,116009,'Csopak','Hungary','HU','Csopak (Hungary)',1,1,0),(16109,0,116010,'Cubry','France','FR','Cubry (France)',1,1,0),(16110,7332,116011,'Cucuron','France','FR','Cucuron (France)',1,1,0),(16111,0,116012,'Cuenca','Spain','ES','Cuenca (Spain)',1,1,0),(16112,0,116013,'Cuevas de Almanzora','Spain','ES','Cuevas de Almanzora (Spain)',1,1,0),(16113,0,116014,'Cul de Sac','St. Barthelemy',NULL,'Cul de Sac (St. Barthelemy)',1,1,0),(16114,0,116015,'Culla','Spain','ES','Culla (Spain)',1,1,0),(16115,0,116016,'Cumbuco','Brazil','BR','Cumbuco (Brazil)',1,1,0),(16116,0,116017,'Cunewalde','Germany','DE','Cunewalde (Germany)',1,1,0),(16117,0,116018,'Curbans','France','FR','Curbans (France)',1,1,0),(16118,7388,116019,'Curico','Chile','CL','Curico (Chile)',1,1,0),(16119,7394,116020,'Curragh','Ireland','IE','Curragh (Ireland)',1,1,0),(16120,0,116022,'Cuxhaven-Dose','Germany','DE','Cuxhaven-Dose (Germany)',1,1,0),(16121,0,116023,'Cuxhaven-Sahlenburg','Germany','DE','Cuxhaven-Sahlenburg (Germany)',1,1,0),(16122,7420,116024,'Cuzco','Peru','PE','Cuzco (Peru)',1,1,0),(16123,7424,116025,'Cypress','United States of America','US','Cypress (United States of America)',1,1,0),(16124,0,116026,'Czechowice','Poland','PL','Czechowice (Poland)',1,1,0),(16125,0,116027,'Czernichow','Poland','PL','Czernichow (Poland)',1,1,0),(16126,0,116028,'Dabel','Germany','DE','Dabel (Germany)',1,1,0),(16127,0,116029,'Dachstein - West','Austria','AT','Dachstein - West (Austria)',1,1,0),(16128,0,116030,'Dacice','Czech Republic','CZ','Dacice (Czech Republic)',1,1,0),(16129,7438,116031,'Daegu','South Korea','KR','Daegu (South Korea)',1,1,0),(16130,0,116032,'Dairsie','United Kingdom','UK','Dairsie (United Kingdom)',1,1,0),(16131,7479,116033,'Dali','China','CN','Dali (China)',1,1,0),(16132,0,116034,'Dallas','United States of America','US','Dallas (United States of America)',1,1,0),(16133,7505,116036,'Damasta','Greece','GR','Damasta (Greece)',1,1,0),(16134,0,116037,'Dambach-la-Ville','France','FR','Dambach-la-Ville (France)',1,1,0),(16135,7518,116038,'Danang','Vietnam','VN','Danang (Vietnam)',1,1,0),(16136,0,116040,'Dangenstorf','Germany','DE','Dangenstorf (Germany)',1,1,0),(16137,7531,116041,'Daniels','United States of America','US','Daniels (United States of America)',1,1,0),(16138,0,116042,'Danne et quatre Vents','France','FR','Danne et quatre Vents (France)',1,1,0),(16139,7536,116043,'Dansville','United States of America','US','Dansville (United States of America)',1,1,0),(16140,7579,116044,'Dasing','Germany','DE','Dasing (Germany)',1,1,0),(16141,7589,116045,'Datong','China','CN','Datong (China)',1,1,0),(16142,7595,116046,'Dauphin Island','United States of America','US','Dauphin Island (United States of America)',1,1,0),(16143,7605,116047,'Davie','United States of America','US','Davie (United States of America)',1,1,0),(16144,0,116048,'Davos Frauenkirch','Switzerland','CH','Davos Frauenkirch (Switzerland)',1,1,0),(16145,7610,116049,'Davos-Dorf','Switzerland','CH','Davos-Dorf (Switzerland)',1,1,0),(16146,7617,116050,'Dawson City','Canada','CA','Dawson City (Canada)',1,1,0),(16147,0,116051,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(16148,0,116052,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(16149,0,116053,'Dazhou','China','CN','Dazhou (China)',1,1,0),(16150,30747,116054,'De Cocksdorp','Netherlands','NL','De Cocksdorp (Netherlands)',1,1,0),(16151,0,116055,'De Hoop','South Africa','ZA','De Hoop (South Africa)',1,1,0),(16152,30758,116056,'De Rust','South Africa','ZA','De Rust (South Africa)',1,1,0),(16153,0,116057,'De Soto','United States of America','US','De Soto (United States of America)',1,1,0),(16154,0,116058,'Debre Markos','Ethiopia','ET','Debre Markos (Ethiopia)',1,1,0),(16155,0,116059,'Debre Zeit','Ethiopia','ET','Debre Zeit (Ethiopia)',1,1,0),(16156,0,116060,'Decatur','United States of America','US','Decatur (United States of America)',1,1,0),(16157,7654,116061,'Decherd','United States of America','US','Decherd (United States of America)',1,1,0),(16158,0,116062,'Deer Lodge','United States of America','US','Deer Lodge (United States of America)',1,1,0),(16159,0,116063,'Deerfield','United States of America','US','Deerfield (United States of America)',1,1,0),(16160,0,116064,'Deforest','United States of America','US','Deforest (United States of America)',1,1,0),(16161,7676,116065,'Deggendorf','Germany','DE','Deggendorf (Germany)',1,1,0),(16162,0,116066,'Dej','Romania','RO','Dej (Romania)',1,1,0),(16163,0,116067,'Delhi','United States of America','US','Delhi (United States of America)',1,1,0),(16164,0,116068,'Delray Beach','United States of America','US','Delray Beach (United States of America)',1,1,0),(16165,7725,116069,'Demopolis','United States of America','US','Demopolis (United States of America)',1,1,0),(16166,0,116070,'Den Bosch','Netherlands','NL','Den Bosch (Netherlands)',1,1,0),(16167,30772,116071,'Den Helder','Netherlands','NL','Den Helder (Netherlands)',1,1,0),(16168,0,116072,'Denny Island','Canada','CA','Denny Island (Canada)',1,1,0),(16169,0,116073,'Denton','United Kingdom','UK','Denton (United Kingdom)',1,1,0),(16170,7762,116075,'Derenburg','Germany','DE','Derenburg (Germany)',1,1,0),(16171,7764,116076,'Deridder','United States of America','US','Deridder (United States of America)',1,1,0),(16172,0,116077,'Dernau','Germany','DE','Dernau (Germany)',1,1,0),(16173,7773,116078,'Des Moines','United States of America','US','Des Moines (United States of America)',1,1,0),(16174,0,116079,'Desaru','Malaysia','MY','Desaru (Malaysia)',1,1,0),(16175,7788,116080,'Destin','United States of America','US','Destin (United States of America)',1,1,0),(16176,7789,116081,'Desvres','France','FR','Desvres (France)',1,1,0),(16177,0,116082,'Dettingen unter Teck','Germany','DE','Dettingen unter Teck (Germany)',1,1,0),(16178,0,116083,'deutsch: Werro','Estonia','EE','deutsch: Werro (Estonia)',1,1,0),(16179,0,116084,'Devon','United Kingdom','UK','Devon (United Kingdom)',1,1,0),(16180,0,116085,'Dexter','United States of America','US','Dexter (United States of America)',1,1,0),(16181,7818,116086,'Dezhou','China','CN','Dezhou (China)',1,1,0),(16182,7842,116088,'Diamond Beach','Australia','AU','Diamond Beach (Australia)',1,1,0),(16183,0,116089,'Diekholzen','Germany','DE','Diekholzen (Germany)',1,1,0),(16184,0,116090,'Diensdorf-Radlow','Germany','DE','Diensdorf-Radlow (Germany)',1,1,0),(16185,0,116091,'Dietmannsried','Germany','DE','Dietmannsried (Germany)',1,1,0),(16186,0,116092,'Diex','Austria','AT','Diex (Austria)',1,1,0),(16187,0,116093,'Digampathaha','Sri Lanka','LK','Digampathaha (Sri Lanka)',1,1,0),(16188,7891,116094,'Digoin','France','FR','Digoin (France)',1,1,0),(16189,7192,116095,'Creedmoor','United States of America','US','Creedmoor (United States of America)',1,1,0),(16190,7193,116096,'Creel','Mexico','MX','Creel (Mexico)',1,1,0),(16191,0,116097,'Cremenco','Italy','IT','Cremenco (Italy)',1,1,0),(16192,0,116098,'Cremlingen','Germany','DE','Cremlingen (Germany)',1,1,0),(16193,0,116099,'Crescent City','United States of America','US','Crescent City (United States of America)',1,1,0),(16194,7207,116100,'Cresson','United States of America','US','Cresson (United States of America)',1,1,0),(16195,7209,116101,'Crested Butte','United States of America','US','Crested Butte (United States of America)',1,1,0),(16196,7214,116102,'Crest-Voland','France','FR','Crest-Voland (France)',1,1,0),(16197,7217,116103,'Creswick','Australia','AU','Creswick (Australia)',1,1,0),(16198,0,116104,'Crimmitschau','Germany','DE','Crimmitschau (Germany)',1,1,0),(16199,7256,116105,'Crivitz','Germany','DE','Crivitz (Germany)',1,1,0),(16200,0,116106,'Crosne','France','FR','Crosne (France)',1,1,0),(16201,0,116107,'Croydon','United Kingdom','UK','Croydon (United Kingdom)',1,1,0),(16202,0,116108,'Crozon-Morgat','France','FR','Crozon-Morgat (France)',1,1,0),(16203,7321,116109,'Cuacos De Yuste','Spain','ES','Cuacos De Yuste (Spain)',1,1,0),(16204,0,116110,'Cuautitlan Izcalli','Mexico','MX','Cuautitlan Izcalli (Mexico)',1,1,0),(16205,0,116111,'Cuba','Portugal','PT','Cuba (Portugal)',1,1,0),(16206,0,116112,'Cublac','France','FR','Cublac (France)',1,1,0),(16207,7337,116113,'Cudillero','Spain','ES','Cudillero (Spain)',1,1,0),(16208,0,116114,'Culinan','South Africa','ZA','Culinan (South Africa)',1,1,0),(16209,7355,116115,'Cullera','Spain','ES','Cullera (Spain)',1,1,0),(16210,7357,116116,'Cullinan','South Africa','ZA','Cullinan (South Africa)',1,1,0),(16211,7370,116117,'Cumberland','United States of America','US','Cumberland (United States of America)',1,1,0),(16212,0,116118,'Cumnock','United Kingdom','UK','Cumnock (United Kingdom)',1,1,0),(16213,7390,116119,'Curinga','Italy','IT','Curinga (Italy)',1,1,0),(16214,0,116120,'Currais Novos','Brazil','BR','Currais Novos (Brazil)',1,1,0),(16215,0,116121,'Curvalle','France','FR','Curvalle (France)',1,1,0),(16216,7401,116122,'Curzay-sur-Vonne','France','FR','Curzay-sur-Vonne (France)',1,1,0),(16217,7423,116123,'Cyclades','Greece','GR','Cyclades (Greece)',1,1,0),(16218,7425,116124,'Cyprus','Cyprus','CY','Cyprus (Cyprus)',1,1,0),(16219,7426,116125,'Czeladz','Poland','PL','Czeladz (Poland)',1,1,0),(16220,0,116126,'Dabrowa Tarnowska','Poland','PL','Dabrowa Tarnowska (Poland)',1,1,0),(16221,7435,116127,'Dadeville','United States of America','US','Dadeville (United States of America)',1,1,0),(16222,7448,116128,'Dahlgren','United States of America','US','Dahlgren (United States of America)',1,1,0),(16223,7449,116129,'Dahlonega','United States of America','US','Dahlonega (United States of America)',1,1,0),(16224,0,116130,'Dahme/Mark','Germany','DE','Dahme/Mark (Germany)',1,1,0),(16225,7452,116131,'Dahn','Germany','DE','Dahn (Germany)',1,1,0),(16226,0,116132,'Daintree National Park','Australia','AU','Daintree National Park (Australia)',1,1,0),(16227,0,116133,'Dala-Floda','Sweden','SE','Dala-Floda (Sweden)',1,1,0),(16228,0,116134,'Daleville','United States of America','US','Daleville (United States of America)',1,1,0),(16229,7477,116135,'Dalhousie','Canada','CA','Dalhousie (Canada)',1,1,0),(16230,7501,116136,'Damaraland','Namibia','NA','Damaraland (Namibia)',1,1,0),(16231,7508,116137,'Dammam','Saudi Arabia','SA','Dammam (Saudi Arabia)',1,1,0),(16232,0,116138,'Dammbach','Germany','DE','Dammbach (Germany)',1,1,0),(16233,0,116139,'Dampier Peninsula','Australia','AU','Dampier Peninsula (Australia)',1,1,0),(16234,7519,116140,'Danbury','United States of America','US','Danbury (United States of America)',1,1,0),(16235,0,116141,'Danilovgrad','Montenegro','ME','Danilovgrad (Montenegro)',1,1,0),(16236,0,116142,'Danville','United States of America','US','Danville (United States of America)',1,1,0),(16237,7540,116143,'Daphne','United States of America','US','Daphne (United States of America)',1,1,0),(16238,0,116144,'Darfield','New Zealand','NZ','Darfield (New Zealand)',1,1,0),(16239,7552,116145,'Darfo Boario Terme','Italy','IT','Darfo Boario Terme (Italy)',1,1,0),(16240,0,116146,'Darien','United States of America','US','Darien (United States of America)',1,1,0),(16241,0,116147,'Darling','South Africa','ZA','Darling (South Africa)',1,1,0),(16242,0,116148,'Darling Harbour','Australia','AU','Darling Harbour (Australia)',1,1,0),(16243,0,116149,'Darlowko','Poland','PL','Darlowko (Poland)',1,1,0),(16244,7574,116150,'Darwin','Australia','AU','Darwin (Australia)',1,1,0),(16245,0,116151,'das Quirimbas','Mozambique','MZ','das Quirimbas (Mozambique)',1,1,0),(16246,7594,116152,'Dauphin','Canada','CA','Dauphin (Canada)',1,1,0),(16247,7602,116153,'Davezieux','France','FR','Davezieux (France)',1,1,0),(16248,7604,116154,'Davidson','United States of America','US','Davidson (United States of America)',1,1,0),(16249,0,116155,'Davis','United States of America','US','Davis (United States of America)',1,1,0),(16250,7623,116156,'Daydream Island','Australia','AU','Daydream Island (Australia)',1,1,0),(16251,0,116157,'De Beque','United States of America','US','De Beque (United States of America)',1,1,0),(16252,0,116158,'Deal','United Kingdom','UK','Deal (United Kingdom)',1,1,0),(16253,7648,116159,'Debary','United States of America','US','Debary (United States of America)',1,1,0),(16254,0,116160,'Decazeville','France','FR','Decazeville (France)',1,1,0),(16255,7668,116161,'Deerwood','United States of America','US','Deerwood (United States of America)',1,1,0),(16256,7670,116162,'Defiance','United States of America','US','Defiance (United States of America)',1,1,0),(16257,0,116163,'Dehiwala','Sri Lanka','LK','Dehiwala (Sri Lanka)',1,1,0),(16258,7682,116165,'Deidesheim','Germany','DE','Deidesheim (Germany)',1,1,0),(16259,0,116166,'Deifontes','Spain','ES','Deifontes (Spain)',1,1,0),(16260,0,116167,'Dei?lingen','Germany','DE','Dei?lingen (Germany)',1,1,0),(16261,7694,116168,'Delaware','United States of America','US','Delaware (United States of America)',1,1,0),(16262,7699,116169,'Delgany','Ireland','IE','Delgany (Ireland)',1,1,0),(16263,7719,116170,'Deltebre','Spain','ES','Deltebre (Spain)',1,1,0),(16264,0,116171,'Demmin','Germany','DE','Demmin (Germany)',1,1,0),(16265,7737,116172,'Denis Island','Seychelles','SC','Denis Island (Seychelles)',1,1,0),(16266,7738,116173,'Denison','United States of America','US','Denison (United States of America)',1,1,0),(16267,0,116174,'Denison','United States of America','US','Denison (United States of America)',1,1,0),(16268,0,116175,'Denmark','Australia','AU','Denmark (Australia)',1,1,0),(16269,0,116176,'Denton','United States of America','US','Denton (United States of America)',1,1,0),(16270,0,116177,'Dereham','United Kingdom','UK','Dereham (United Kingdom)',1,1,0),(16271,0,116178,'Derental','Germany','DE','Derental (Germany)',1,1,0),(16272,0,116179,'Dettingen an der Erms','Germany','DE','Dettingen an der Erms (Germany)',1,1,0),(16273,0,116180,'Deutschlandsberg','Austria','AT','Deutschlandsberg (Austria)',1,1,0),(16274,7801,116181,'Deventer','Netherlands','NL','Deventer (Netherlands)',1,1,0),(16275,7819,116182,'Dhahran','Saudi Arabia','SA','Dhahran (Saudi Arabia)',1,1,0),(16276,0,116183,'Diacceto Pelago','Italy','IT','Diacceto Pelago (Italy)',1,1,0),(16277,0,116184,'Diakopto','Greece','GR','Diakopto (Greece)',1,1,0),(16278,0,116185,'Diamond Bar','United States of America','US','Diamond Bar (United States of America)',1,1,0),(16279,0,116186,'Diani Beach','Kenya','KE','Diani Beach (Kenya)',1,1,0),(16280,7851,116187,'Diboll','United States of America','US','Diboll (United States of America)',1,1,0),(16281,7857,116188,'Dickson','United States of America','US','Dickson (United States of America)',1,1,0),(16282,7865,116189,'Diegem','Belgium','BE','Diegem (Belgium)',1,1,0),(16283,0,116190,'Diemtigen','Switzerland','CH','Diemtigen (Switzerland)',1,1,0),(16284,7876,116191,'Dierhagen','Germany','DE','Dierhagen (Germany)',1,1,0),(16285,7882,116192,'Dietikon','Switzerland','CH','Dietikon (Switzerland)',1,1,0),(16286,0,116193,'Dillstadt','Germany','DE','Dillstadt (Germany)',1,1,0),(16287,0,116194,'Dilofo','Greece','GR','Dilofo (Greece)',1,1,0),(16288,7939,116195,'Discovery Bay','Jamaica','JM','Discovery Bay (Jamaica)',1,1,0),(16289,0,116196,'Distomo','Greece','GR','Distomo (Greece)',1,1,0),(16290,0,116197,'Ditzum','Germany','DE','Ditzum (Germany)',1,1,0),(16291,0,116198,'Divonne les Bains','France','FR','Divonne les Bains (France)',1,1,0),(16292,0,116199,'Djurhamn','Sweden','SE','Djurhamn (Sweden)',1,1,0),(16293,7978,116200,'Dobrna','Slovenia','SI','Dobrna (Slovenia)',1,1,0),(16294,7993,116201,'Doha','Qatar','QA','Doha (Qatar)',1,1,0),(16295,0,116202,'Dokkum','Netherlands','NL','Dokkum (Netherlands)',1,1,0),(16296,7998,116203,'Dol-de-Bretagne','France','FR','Dol-de-Bretagne (France)',1,1,0),(16297,7999,116204,'Dole','France','FR','Dole (France)',1,1,0),(16298,0,116205,'Dolni Mala Upa','Czech Republic','CZ','Dolni Mala Upa (Czech Republic)',1,1,0),(16299,0,116206,'Crecy la Chapelle','France','FR','Crecy la Chapelle (France)',1,1,0),(16300,7199,116207,'Creon','France','FR','Creon (France)',1,1,0),(16301,0,116208,'Crescent City','United States of America','US','Crescent City (United States of America)',1,1,0),(16302,7215,116209,'Crestwood','United States of America','US','Crestwood (United States of America)',1,1,0),(16303,7216,116210,'Creswell','United States of America','US','Creswell (United States of America)',1,1,0),(16304,0,116211,'Creuzburg','Germany','DE','Creuzburg (Germany)',1,1,0),(16305,0,116212,'Crevecoeur-en-Auge','France','FR','Crevecoeur-en-Auge (France)',1,1,0),(16306,0,116213,'Crieff','United Kingdom','UK','Crieff (United Kingdom)',1,1,0),(16307,0,116214,'Crispiano','Italy','IT','Crispiano (Italy)',1,1,0),(16308,7252,116215,'Crissier','Switzerland','CH','Crissier (Switzerland)',1,1,0),(16309,0,116216,'Cristosende','Spain','ES','Cristosende (Spain)',1,1,0),(16310,7263,116217,'Crockett','United States of America','US','Crockett (United States of America)',1,1,0),(16311,7265,116218,'Croffelbach','Germany','DE','Croffelbach (Germany)',1,1,0),(16312,0,116219,'Cropani Marina','Italy','IT','Cropani Marina (Italy)',1,1,0),(16313,7281,116220,'Crosmieres','France','FR','Crosmieres (France)',1,1,0),(16314,7282,116221,'Crossett','United States of America','US','Crossett (United States of America)',1,1,0),(16315,7292,116222,'Croutelle','France','FR','Croutelle (France)',1,1,0),(16316,0,116223,'Cruilles','Spain','ES','Cruilles (Spain)',1,1,0),(16317,0,116224,'Crumlin','United Kingdom','UK','Crumlin (United Kingdom)',1,1,0),(16318,0,116225,'Crystal Lake','United States of America','US','Crystal Lake (United States of America)',1,1,0),(16319,0,116226,'Cserkeszolo','Hungary','HU','Cserkeszolo (Hungary)',1,1,0),(16320,7318,116227,'Cserszegtomaj','Hungary','HU','Cserszegtomaj (Hungary)',1,1,0),(16321,7328,116228,'Cuba','United States of America','US','Cuba (United States of America)',1,1,0),(16322,0,116229,'Cubelles','Spain','ES','Cubelles (Spain)',1,1,0),(16323,0,116230,'Cuellar','Spain','ES','Cuellar (Spain)',1,1,0),(16324,7343,116231,'Cugy','Switzerland','CH','Cugy (Switzerland)',1,1,0),(16325,0,116232,'Culloden Moor','United Kingdom','UK','Culloden Moor (United Kingdom)',1,1,0),(16326,0,116233,'Cullompton','United Kingdom','UK','Cullompton (United Kingdom)',1,1,0),(16327,0,116234,'Cuncheddi','Italy','IT','Cuncheddi (Italy)',1,1,0),(16328,7375,116235,'Cuneo','Italy','IT','Cuneo (Italy)',1,1,0),(16329,7376,116236,'Cunha','Brazil','BR','Cunha (Brazil)',1,1,0),(16330,0,116237,'Cupecoy','Sint Maarten (Dutch part)','SX','Cupecoy (Sint Maarten (Dutch part))',1,1,0),(16331,7384,116238,'Cupertino','United States of America','US','Cupertino (United States of America)',1,1,0),(16332,7391,116239,'Curitiba','Brazil','BR','Curitiba (Brazil)',1,1,0),(16333,0,116240,'Curuzu','Paraguay','PY','Curuzu (Paraguay)',1,1,0),(16334,7407,116241,'Custonaci','Italy','IT','Custonaci (Italy)',1,1,0),(16335,7409,116242,'Cuthbert','United States of America','US','Cuthbert (United States of America)',1,1,0),(16336,0,116243,'Cwmduad','United Kingdom','UK','Cwmduad (United Kingdom)',1,1,0),(16337,0,116244,'Czaplinek','Poland','PL','Czaplinek (Poland)',1,1,0),(16338,0,116245,'Czernowitz','Ukraine','UA','Czernowitz (Ukraine)',1,1,0),(16339,0,116246,'Czluchow','Poland','PL','Czluchow (Poland)',1,1,0),(16340,0,116247,'Dalaas','Austria','AT','Dalaas (Austria)',1,1,0),(16341,7464,116248,'Dalaman','Turkey','TR','Dalaman (Turkey)',1,1,0),(16342,0,116249,'Dalbeattie','United Kingdom','UK','Dalbeattie (United Kingdom)',1,1,0),(16343,0,116250,'Dale','Norway','NO','Dale (Norway)',1,1,0),(16344,7476,116251,'Dalhart','United States of America','US','Dalhart (United States of America)',1,1,0),(16345,7487,116252,'Dallenwil','Switzerland','CH','Dallenwil (Switzerland)',1,1,0),(16346,0,116253,'Dals Rostock','Sweden','SE','Dals Rostock (Sweden)',1,1,0),(16347,7494,116254,'Dalton','United States of America','US','Dalton (United States of America)',1,1,0),(16348,0,116255,'Dalwhinnie','United Kingdom','UK','Dalwhinnie (United Kingdom)',1,1,0),(16349,0,116256,'Damavolou','Greece','GR','Damavolou (Greece)',1,1,0),(16350,0,116257,'Damnoni','Greece','GR','Damnoni (Greece)',1,1,0),(16351,7513,116258,'Damp','Germany','DE','Damp (Germany)',1,1,0),(16352,0,116259,'Dankerode','Germany','DE','Dankerode (Germany)',1,1,0),(16353,0,116260,'Dannevirke','New Zealand','NZ','Dannevirke (New Zealand)',1,1,0),(16354,0,116261,'Danville','United States of America','US','Danville (United States of America)',1,1,0),(16355,0,116262,'Danville','United States of America','US','Danville (United States of America)',1,1,0),(16356,7549,116263,'Dardilly','France','FR','Dardilly (France)',1,1,0),(16357,7565,116265,'Daroca','Spain','ES','Daroca (Spain)',1,1,0),(16358,0,116266,'Darrington','United Kingdom','UK','Darrington (United Kingdom)',1,1,0),(16359,0,116267,'Dassel','Germany','DE','Dassel (Germany)',1,1,0),(16360,7585,116268,'Datca','Turkey','TR','Datca (Turkey)',1,1,0),(16361,0,116269,'Daventry','United Kingdom','UK','Daventry (United Kingdom)',1,1,0),(16362,7627,116270,'Dayton','United States of America','US','Dayton (United States of America)',1,1,0),(16363,30746,116271,'De Bult','Netherlands','NL','De Bult (Netherlands)',1,1,0),(16364,0,116272,'De Kalb','United States of America','US','De Kalb (United States of America)',1,1,0),(16365,30762,116273,'De Witt','United States of America','US','De Witt (United States of America)',1,1,0),(16366,7635,116274,'Dead Sea','Jordan','JO','Dead Sea (Jordan)',1,1,0),(16367,0,116275,'Decatur','United States of America','US','Decatur (United States of America)',1,1,0),(16368,7656,116276,'Decines-Charpieu','France','FR','Decines-Charpieu (France)',1,1,0),(16369,7662,116277,'Dedham','United States of America','US','Dedham (United States of America)',1,1,0),(16370,0,116278,'Deerfield Beach','United States of America','US','Deerfield Beach (United States of America)',1,1,0),(16371,0,116279,'Defne','Turkey','TR','Defne (Turkey)',1,1,0),(16372,0,116280,'Dehong','China','CN','Dehong (China)',1,1,0),(16373,0,116281,'Delfgauw','Netherlands','NL','Delfgauw (Netherlands)',1,1,0),(16374,7698,116282,'Delft','Netherlands','NL','Delft (Netherlands)',1,1,0),(16375,7708,116283,'Delley-Portalban','Switzerland','CH','Delley-Portalban (Switzerland)',1,1,0),(16376,7711,116284,'Delmenhorst','Germany','DE','Delmenhorst (Germany)',1,1,0),(16377,0,116285,'Delnice','Croatia','HR','Delnice (Croatia)',1,1,0),(16378,7739,116286,'Denizli','Turkey','TR','Denizli (Turkey)',1,1,0),(16379,7746,116287,'Denpasar','Indonesia','ID','Denpasar (Indonesia)',1,1,0),(16380,7772,116288,'Deruta','Italy','IT','Deruta (Italy)',1,1,0),(16381,0,116289,'Derwent Bridge','Australia','AU','Derwent Bridge (Australia)',1,1,0),(16382,0,116290,'Des Moines','United States of America','US','Des Moines (United States of America)',1,1,0),(16383,7778,116291,'Desenzano del Garda','Italy','IT','Desenzano del Garda (Italy)',1,1,0),(16384,0,116292,'Desert Hot Springs','United States of America','US','Desert Hot Springs (United States of America)',1,1,0),(16385,0,116293,'Desna','Czech Republic','CZ','Desna (Czech Republic)',1,1,0),(16386,0,116294,'Destne v Orlickych horach','Czech Republic','CZ','Destne v Orlickych horach (Czech Republic)',1,1,0),(16387,7791,116295,'Detmold','Germany','DE','Detmold (Germany)',1,1,0),(16388,7792,116296,'Detroit','United States of America','US','Detroit (United States of America)',1,1,0),(16389,0,116297,'Deutsch Schutzen-Eisenberg','Austria','AT','Deutsch Schutzen-Eisenberg (Austria)',1,1,0),(16390,0,116298,'Deutschnofen','Italy','IT','Deutschnofen (Italy)',1,1,0),(16391,0,116299,'Devenport','Australia','AU','Devenport (Australia)',1,1,0),(16392,0,116300,'Dhoni Mighili','Maldives','MV','Dhoni Mighili (Maldives)',1,1,0),(16393,0,116301,'Diamond','United States of America','US','Diamond (United States of America)',1,1,0),(16394,7850,116302,'Dibba','Oman','OM','Dibba (Oman)',1,1,0),(16395,0,116303,'Dickinson','United States of America','US','Dickinson (United States of America)',1,1,0),(16396,7856,116304,'Dickson','Australia','AU','Dickson (Australia)',1,1,0),(16397,7858,116305,'Dickwella','Sri Lanka','LK','Dickwella (Sri Lanka)',1,1,0),(16398,0,116306,'Dicomano','Italy','IT','Dicomano (Italy)',1,1,0),(16399,7860,116307,'Didim','Turkey','TR','Didim (Turkey)',1,1,0),(16400,0,116308,'Diedersdorf','Germany','DE','Diedersdorf (Germany)',1,1,0),(16401,0,116309,'Dienne','France','FR','Dienne (France)',1,1,0),(16402,0,116310,'Diepoldsau','Switzerland','CH','Diepoldsau (Switzerland)',1,1,0),(16403,7872,116311,'Dieppe','France','FR','Dieppe (France)',1,1,0),(16404,0,116312,'Die?en am Ammersee','Germany','DE','Die?en am Ammersee (Germany)',1,1,0),(16405,7880,116313,'Diest','Belgium','BE','Diest (Belgium)',1,1,0),(16406,0,116314,'Dieulefit','France','FR','Dieulefit (France)',1,1,0),(16407,0,116315,'Diever','Netherlands','NL','Diever (Netherlands)',1,1,0),(16408,0,116316,'Diklo','Croatia','HR','Diklo (Croatia)',1,1,0),(16409,7897,116317,'Diksmuide','Belgium','BE','Diksmuide (Belgium)',1,1,0),(16410,0,116318,'Dillingen/Saar','Germany','DE','Dillingen/Saar (Germany)',1,1,0),(16411,0,116319,'Deira','United Arab Emirates','AE','Deira (United Arab Emirates)',1,1,0),(16412,30764,116320,'Del Mar','United States of America','US','Del Mar (United States of America)',1,1,0),(16413,7691,116321,'Deland','United States of America','US','Deland (United States of America)',1,1,0),(16414,0,116322,'Delfzijl','Netherlands','NL','Delfzijl (Netherlands)',1,1,0),(16415,7712,116324,'Delmont','United States of America','US','Delmont (United States of America)',1,1,0),(16416,7717,116325,'Delta','United States of America','US','Delta (United States of America)',1,1,0),(16417,7720,116326,'Deltona','United States of America','US','Deltona (United States of America)',1,1,0),(16418,0,116327,'Demigny','France','FR','Demigny (France)',1,1,0),(16419,7726,116328,'Demre','Turkey','TR','Demre (Turkey)',1,1,0),(16420,0,116329,'Denekamp','Netherlands','NL','Denekamp (Netherlands)',1,1,0),(16421,0,116330,'Denens','Switzerland','CH','Denens (Switzerland)',1,1,0),(16422,7731,116331,'Dengfeng','China','CN','Dengfeng (China)',1,1,0),(16423,0,116332,'Deudesfeld','Germany','DE','Deudesfeld (Germany)',1,1,0),(16424,0,116333,'Deutschkreutz','Austria','AT','Deutschkreutz (Austria)',1,1,0),(16425,0,116334,'Deutschneudorf','Germany','DE','Deutschneudorf (Germany)',1,1,0),(16426,0,116335,'Deutsch-Wagram','Austria','AT','Deutsch-Wagram (Austria)',1,1,0),(16427,0,116336,'Devil\'s Tower','United States of America','US','Devil\'s Tower (United States of America)',1,1,0),(16428,0,116337,'Dewin','Bulgaria','BG','Dewin (Bulgaria)',1,1,0),(16429,7849,116339,'Dibba','United Arab Emirates','AE','Dibba (United Arab Emirates)',1,1,0),(16430,0,116340,'D\'Iberville','United States of America','US','D\'Iberville (United States of America)',1,1,0),(16431,0,116341,'Diedenbergen','Germany','DE','Diedenbergen (Germany)',1,1,0),(16432,7864,116342,'Dieffenthal','France','FR','Dieffenthal (France)',1,1,0),(16433,0,116343,'Dien Bien Phu','Vietnam','VN','Dien Bien Phu (Vietnam)',1,1,0),(16434,0,116344,'Diepenheim','Netherlands','NL','Diepenheim (Netherlands)',1,1,0),(16435,7878,116345,'Diessen','Netherlands','NL','Diessen (Netherlands)',1,1,0),(16436,0,116346,'Dietramszell','Germany','DE','Dietramszell (Germany)',1,1,0),(16437,7887,116347,'Digby','Canada','CA','Digby (Canada)',1,1,0),(16438,0,116348,'Digg','United Kingdom','UK','Digg (United Kingdom)',1,1,0),(16439,7894,116349,'Dikili','Turkey','TR','Dikili (Turkey)',1,1,0),(16440,7895,116350,'Dikli','Latvia','LV','Dikli (Latvia)',1,1,0),(16441,7902,116351,'Dillard','United States of America','US','Dillard (United States of America)',1,1,0),(16442,7911,116352,'Dimakya Island','Philippines','PH','Dimakya Island (Philippines)',1,1,0),(16443,7914,116353,'Dimitsana','Greece','GR','Dimitsana (Greece)',1,1,0),(16444,0,116354,'Dingelstedt','Germany','DE','Dingelstedt (Germany)',1,1,0),(16445,0,116355,'Dingley Village','Australia','AU','Dingley Village (Australia)',1,1,0),(16446,0,116356,'Dingwall','United Kingdom','UK','Dingwall (United Kingdom)',1,1,0),(16447,0,116357,'Dirlewang','Germany','DE','Dirlewang (Germany)',1,1,0),(16448,7959,116358,'Dixon','United States of America','US','Dixon (United States of America)',1,1,0),(16449,7962,116359,'Dizy','France','FR','Dizy (France)',1,1,0),(16450,0,116360,'Djenne','Mali','ML','Djenne (Mali)',1,1,0),(16451,0,116361,'Djerba Island','Tunisia','TN','Djerba Island (Tunisia)',1,1,0),(16452,0,116362,'Doberschau-Gau?ig','Germany','DE','Doberschau-Gau?ig (Germany)',1,1,0),(16453,0,116363,'Dobiegniew','Poland','PL','Dobiegniew (Poland)',1,1,0),(16454,0,116364,'Doboj','Bosnia and Herzegowina','BA','Doboj (Bosnia and Herzegowina)',1,1,0),(16455,0,116365,'Dog Island (Gambia)','Gambia','GM','Dog Island (Gambia) (Gambia)',1,1,0),(16456,7996,116366,'Dolbeau','Canada','CA','Dolbeau (Canada)',1,1,0),(16457,8017,116367,'Dolzig','Germany','DE','Dolzig (Germany)',1,1,0),(16458,8034,116368,'Domus de Maria','Italy','IT','Domus de Maria (Italy)',1,1,0),(16459,8035,116369,'Domzale','Slovenia','SI','Domzale (Slovenia)',1,1,0),(16460,0,116370,'Dongtai','China','CN','Dongtai (China)',1,1,0),(16461,0,116371,'Donnersbach','Austria','AT','Donnersbach (Austria)',1,1,0),(16462,8071,116372,'Donzdorf','Germany','DE','Donzdorf (Germany)',1,1,0),(16463,0,116373,'Donzere','France','FR','Donzere (France)',1,1,0),(16464,8078,116374,'Doorwerth','Netherlands','NL','Doorwerth (Netherlands)',1,1,0),(16465,8090,116375,'Dorgali','Italy','IT','Dorgali (Italy)',1,1,0),(16466,8105,116376,'Dortmund','Germany','DE','Dortmund (Germany)',1,1,0),(16467,0,116377,'Dorum','Germany','DE','Dorum (Germany)',1,1,0),(16468,0,116378,'Doudleby','Czech Republic','CZ','Doudleby (Czech Republic)',1,1,0),(16469,8118,116379,'Doue-la-Fontaine','France','FR','Doue-la-Fontaine (France)',1,1,0),(16470,8122,116380,'Douglasville','United States of America','US','Douglasville (United States of America)',1,1,0),(16471,0,116381,'Dourado','Brazil','BR','Dourado (Brazil)',1,1,0),(16472,8131,116382,'Dover','Australia','AU','Dover (Australia)',1,1,0),(16473,8135,116383,'Downers Grove','United States of America','US','Downers Grove (United States of America)',1,1,0),(16474,0,116384,'Downton on the Rock','United Kingdom','UK','Downton on the Rock (United Kingdom)',1,1,0),(16475,0,116385,'Draasloot','South Africa','ZA','Draasloot (South Africa)',1,1,0),(16476,8155,116386,'Dragor','Denmark','DK','Dragor (Denmark)',1,1,0),(16477,0,116387,'Drapanias','Greece','GR','Drapanias (Greece)',1,1,0),(16478,8169,116388,'Drayton Valley','Canada','CA','Drayton Valley (Canada)',1,1,0),(16479,0,116389,'Drei Annen Hohne','Germany','DE','Drei Annen Hohne (Germany)',1,1,0),(16480,0,116390,'Drengfurth','Poland','PL','Drengfurth (Poland)',1,1,0),(16481,8179,116391,'Dreux','France','FR','Dreux (France)',1,1,0),(16482,0,116392,'Dromod','Ireland','IE','Dromod (Ireland)',1,1,0),(16483,0,116393,'Dronfield','United Kingdom','UK','Dronfield (United Kingdom)',1,1,0),(16484,0,116394,'Drosia','Greece','GR','Drosia (Greece)',1,1,0),(16485,8223,116395,'Dublin','United States of America','US','Dublin (United States of America)',1,1,0),(16486,8235,116396,'Duchcov','Czech Republic','CZ','Duchcov (Czech Republic)',1,1,0),(16487,0,116397,'Duck Key','United States of America','US','Duck Key (United States of America)',1,1,0),(16488,8241,116398,'Duderstadt','Germany','DE','Duderstadt (Germany)',1,1,0),(16489,8252,116399,'Duingt','France','FR','Duingt (France)',1,1,0),(16490,0,116400,'Dukinfield','United Kingdom','UK','Dukinfield (United Kingdom)',1,1,0),(16491,0,116401,'Dullin','France','FR','Dullin (France)',1,1,0),(16492,8263,116402,'Dulmen','Germany','DE','Dulmen (Germany)',1,1,0),(16493,0,116403,'Dumbleton','United Kingdom','UK','Dumbleton (United Kingdom)',1,1,0),(16494,8288,116404,'Dunboyne','Ireland','IE','Dunboyne (Ireland)',1,1,0),(16495,0,116405,'Dunster','United Kingdom','UK','Dunster (United Kingdom)',1,1,0),(16496,0,116406,'Dunsum - Fohir','Germany','DE','Dunsum - Fohir (Germany)',1,1,0),(16497,0,116407,'Duqm','Oman','OM','Duqm (Oman)',1,1,0),(16498,8347,116408,'Durand','United States of America','US','Durand (United States of America)',1,1,0),(16499,8359,116409,'Duren','Germany','DE','Duren (Germany)',1,1,0),(16500,0,116410,'Durham','United Kingdom','UK','Durham (United Kingdom)',1,1,0),(16501,0,116411,'Durraes','Portugal','PT','Durraes (Portugal)',1,1,0),(16502,8377,116412,'Duved','Sweden','SE','Duved (Sweden)',1,1,0),(16503,0,116413,'Dyce','United Kingdom','UK','Dyce (United Kingdom)',1,1,0),(16504,30790,116414,'East Aurora','United States of America','US','East Aurora (United States of America)',1,1,0),(16505,0,116415,'East Ferris','Canada','CA','East Ferris (Canada)',1,1,0),(16506,30811,116416,'East Grand Forks','United States of America','US','East Grand Forks (United States of America)',1,1,0),(16507,0,116417,'East Horsley','United Kingdom','UK','East Horsley (United Kingdom)',1,1,0),(16508,0,116418,'East Kilbride','United Kingdom','UK','East Kilbride (United Kingdom)',1,1,0),(16509,30837,116419,'East Norwich','United States of America','US','East Norwich (United States of America)',1,1,0),(16510,30853,116420,'East Troy','United States of America','US','East Troy (United States of America)',1,1,0),(16511,0,116421,'Eastern Creek','Australia','AU','Eastern Creek (Australia)',1,1,0),(16512,8452,116422,'Eatontown','United States of America','US','Eatontown (United States of America)',1,1,0),(16513,30861,116423,'Eau Claire','United States of America','US','Eau Claire (United States of America)',1,1,0),(16514,8456,116424,'Eauze','France','FR','Eauze (France)',1,1,0),(16515,8461,116425,'Eben am Achensee','Austria','AT','Eben am Achensee (Austria)',1,1,0),(16516,0,116426,'Ebern','Germany','DE','Ebern (Germany)',1,1,0),(16517,0,116427,'Eberndorf-Mokriach','Austria','AT','Eberndorf-Mokriach (Austria)',1,1,0),(16518,0,116428,'Ebnisee','Germany','DE','Ebnisee (Germany)',1,1,0),(16519,0,116429,'Eccica Suarella','France','FR','Eccica Suarella (France)',1,1,0),(16520,8482,116430,'Echuca','Australia','AU','Echuca (Australia)',1,1,0),(16521,0,116431,'Echzell','Germany','DE','Echzell (Germany)',1,1,0),(16522,8157,116432,'Draguignan','France','FR','Draguignan (France)',1,1,0),(16523,8163,116433,'Drangedal','Norway','NO','Drangedal (Norway)',1,1,0),(16524,0,116434,'Drena','Italy','IT','Drena (Italy)',1,1,0),(16525,8183,116435,'Driggs','United States of America','US','Driggs (United States of America)',1,1,0),(16526,0,116436,'Drobollach','Austria','AT','Drobollach (Austria)',1,1,0),(16527,0,116437,'Drochtersen','Germany','DE','Drochtersen (Germany)',1,1,0),(16528,8188,116438,'Drogenbos','Belgium','BE','Drogenbos (Belgium)',1,1,0),(16529,0,116439,'Droushia','Cyprus','CY','Droushia (Cyprus)',1,1,0),(16530,0,116440,'Droxford','United Kingdom','UK','Droxford (United Kingdom)',1,1,0),(16531,8199,116441,'Druento','Italy','IT','Druento (Italy)',1,1,0),(16532,0,116442,'Drury','New Zealand','NZ','Drury (New Zealand)',1,1,0),(16533,0,116443,'Dserschinsk','Russia','RU','Dserschinsk (Russia)',1,1,0),(16534,0,116444,'Dubi','Czech Republic','CZ','Dubi (Czech Republic)',1,1,0),(16535,0,116445,'Dublin','United States of America','US','Dublin (United States of America)',1,1,0),(16536,0,116446,'Dubovica-Zliabky','Slovakia','SK','Dubovica-Zliabky (Slovakia)',1,1,0),(16537,0,116447,'Duck','United States of America','US','Duck (United States of America)',1,1,0),(16538,8245,116448,'Duenas','Spain','ES','Duenas (Spain)',1,1,0),(16539,0,116449,'Duga Uvala','Croatia','HR','Duga Uvala (Croatia)',1,1,0),(16540,8249,116450,'Dugi Rat','Croatia','HR','Dugi Rat (Croatia)',1,1,0),(16541,8254,116451,'Duisburg','Germany','DE','Duisburg (Germany)',1,1,0),(16542,8258,116452,'Dujiangyan','China','CN','Dujiangyan (China)',1,1,0),(16543,8260,116453,'Dulce','United States of America','US','Dulce (United States of America)',1,1,0),(16544,0,116454,'Dumbarton','United Kingdom','UK','Dumbarton (United Kingdom)',1,1,0),(16545,0,116455,'Dun Laoghaire','Ireland','IE','Dun Laoghaire (Ireland)',1,1,0),(16546,0,116456,'Dunavatu de Jos','Romania','RO','Dunavatu de Jos (Romania)',1,1,0),(16547,8291,116457,'Duncannon','United States of America','US','Duncannon (United States of America)',1,1,0),(16548,0,116458,'Dundee','Canada','CA','Dundee (Canada)',1,1,0),(16549,0,116459,'Dundee','United Kingdom','UK','Dundee (United Kingdom)',1,1,0),(16550,8317,116461,'Dunk Island','Australia','AU','Dunk Island (Australia)',1,1,0),(16551,0,116462,'Durach','Germany','DE','Durach (Germany)',1,1,0),(16552,8357,116463,'Durcal','Spain','ES','Durcal (Spain)',1,1,0),(16553,0,116464,'Durchesne','United States of America','US','Durchesne (United States of America)',1,1,0),(16554,8374,116465,'Dutch Harbor','United States of America','US','Dutch Harbor (United States of America)',1,1,0),(16555,0,116466,'Duvendiek','Germany','DE','Duvendiek (Germany)',1,1,0),(16556,8381,116467,'Dwight','United States of America','US','Dwight (United States of America)',1,1,0),(16557,8386,116468,'Dyersville','United States of America','US','Dyersville (United States of America)',1,1,0),(16558,0,116469,'Dytiko','Greece','GR','Dytiko (Greece)',1,1,0),(16559,8395,116470,'Dzwirzyno','Poland','PL','Dzwirzyno (Poland)',1,1,0),(16560,8396,116471,'Eagan','United States of America','US','Eagan (United States of America)',1,1,0),(16561,0,116472,'Eagle City','United States of America','US','Eagle City (United States of America)',1,1,0),(16562,0,116473,'Eagle Lakes','Canada','CA','Eagle Lakes (Canada)',1,1,0),(16563,0,116474,'Eagle Nest','United States of America','US','Eagle Nest (United States of America)',1,1,0),(16564,0,116475,'Eagle River','United States of America','US','Eagle River (United States of America)',1,1,0),(16565,30805,116476,'East Ellijay','United States of America','US','East Ellijay (United States of America)',1,1,0),(16566,0,116477,'East Maitland','Australia','AU','East Maitland (Australia)',1,1,0),(16567,0,116478,'East Tisted','United Kingdom','UK','East Tisted (United Kingdom)',1,1,0),(16568,30860,116479,'East Windsor','United States of America','US','East Windsor (United States of America)',1,1,0),(16569,8428,116480,'Easter Island','Chile','CL','Easter Island (Chile)',1,1,0),(16570,0,116481,'Easton','United States of America','US','Easton (United States of America)',1,1,0),(16571,0,116482,'Ebberup','Denmark','DK','Ebberup (Denmark)',1,1,0),(16572,8458,116483,'Ebbs','Austria','AT','Ebbs (Austria)',1,1,0),(16573,0,116484,'Ebersburg','Germany','DE','Ebersburg (Germany)',1,1,0),(16574,8468,116485,'Ebina','Japan','JP','Ebina (Japan)',1,1,0),(16575,0,116486,'Echten','Netherlands','NL','Echten (Netherlands)',1,1,0),(16576,8481,116487,'Echternach','Luxembourg','LU','Echternach (Luxembourg)',1,1,0),(16577,0,116488,'Ecton','United Kingdom','UK','Ecton (United Kingdom)',1,1,0),(16578,8492,116489,'Ecully','France','FR','Ecully (France)',1,1,0),(16579,0,116490,'Edewecht','Germany','DE','Edewecht (Germany)',1,1,0),(16580,8536,116491,'Edson','Canada','CA','Edson (Canada)',1,1,0),(16581,8541,116492,'Eerbeek','Netherlands','NL','Eerbeek (Netherlands)',1,1,0),(16582,0,116493,'Eernewoude','Netherlands','NL','Eernewoude (Netherlands)',1,1,0),(16583,0,116494,'Eesergroen','Netherlands','NL','Eesergroen (Netherlands)',1,1,0),(16584,0,116495,'Efringen-Kirchen','Germany','DE','Efringen-Kirchen (Germany)',1,1,0),(16585,8549,116496,'Egerkingen','Switzerland','CH','Egerkingen (Switzerland)',1,1,0),(16586,0,116497,'Egg (by Faaker Lake)','Austria','AT','Egg (by Faaker Lake) (Austria)',1,1,0),(16587,0,116498,'Egg Harbor City','United States of America','US','Egg Harbor City (United States of America)',1,1,0),(16588,0,116499,'Eggelsberg','Austria','AT','Eggelsberg (Austria)',1,1,0),(16589,8557,116500,'Egletons','France','FR','Egletons (France)',1,1,0),(16590,0,116501,'Egloffstein','Germany','DE','Egloffstein (Germany)',1,1,0),(16591,0,116502,'Ehekirchen','Germany','DE','Ehekirchen (Germany)',1,1,0),(16592,0,116503,'Ehrenburg','Italy','IT','Ehrenburg (Italy)',1,1,0),(16593,8571,116504,'Ehrenfriedersdorf','Germany','DE','Ehrenfriedersdorf (Germany)',1,1,0),(16594,8575,116505,'Eibiswald','Austria','AT','Eibiswald (Austria)',1,1,0),(16595,0,116506,'Eichenzell','Germany','DE','Eichenzell (Germany)',1,1,0),(16596,8581,116507,'Eidfjord','Norway','NO','Eidfjord (Norway)',1,1,0),(16597,0,116508,'Eigeltingen','Germany','DE','Eigeltingen (Germany)',1,1,0),(16598,0,116509,'Eight Mile Plains','Australia','AU','Eight Mile Plains (Australia)',1,1,0),(16599,0,116510,'Eilon','Israel','IL','Eilon (Israel)',1,1,0),(16600,8587,116511,'Eimke','Germany','DE','Eimke (Germany)',1,1,0),(16601,0,116512,'Ein Gev','Israel','IL','Ein Gev (Israel)',1,1,0),(16602,0,116513,'Ein Harod','Israel','IL','Ein Harod (Israel)',1,1,0),(16603,0,116514,'Eislingen (Fils)','Germany','DE','Eislingen (Fils) (Germany)',1,1,0),(16604,30868,116515,'El Barco de Avila','Spain','ES','El Barco de Avila (Spain)',1,1,0),(16605,0,116516,'El Bordo','Argentina','AR','El Bordo (Argentina)',1,1,0),(16606,30874,116517,'El Cajon','United States of America','US','El Cajon (United States of America)',1,1,0),(16607,0,116518,'El Castell de Guadalest','Spain','ES','El Castell de Guadalest (Spain)',1,1,0),(16608,30884,116519,'El Chalten','Argentina','AR','El Chalten (Argentina)',1,1,0),(16609,30887,116520,'El Dorado','United States of America','US','El Dorado (United States of America)',1,1,0),(16610,30889,116521,'El Dorado Springs','United States of America','US','El Dorado Springs (United States of America)',1,1,0),(16611,30896,116522,'El Granada','United States of America','US','El Granada (United States of America)',1,1,0),(16612,0,116523,'El Mojon','Spain','ES','El Mojon (Spain)',1,1,0),(16613,30914,116524,'El Perello','Spain','ES','El Perello (Spain)',1,1,0),(16614,30919,116525,'El Prat de Llobregat','Spain','ES','El Prat de Llobregat (Spain)',1,1,0),(16615,30926,116526,'El Reno','United States of America','US','El Reno (United States of America)',1,1,0),(16616,30937,116527,'El Toyo','Spain','ES','El Toyo (Spain)',1,1,0),(16617,0,116528,'El Valle de Anton','Panama','PA','El Valle de Anton (Panama)',1,1,0),(16618,0,116529,'El Verger','Spain','ES','El Verger (Spain)',1,1,0),(16619,8616,116530,'Elati','Greece','GR','Elati (Greece)',1,1,0),(16620,8617,116531,'Elazig','Turkey','TR','Elazig (Turkey)',1,1,0),(16621,0,116532,'Elbasan','Albania','AL','Elbasan (Albania)',1,1,0),(16622,0,116533,'Elbtalaue','Germany','DE','Elbtalaue (Germany)',1,1,0),(16623,8622,116534,'Elche','Spain','ES','Elche (Spain)',1,1,0),(16624,0,116535,'Eleonas','Greece','GR','Eleonas (Greece)',1,1,0),(16625,8644,116536,'Elgin','United States of America','US','Elgin (United States of America)',1,1,0),(16626,0,116537,'Elgorriaga','Spain','ES','Elgorriaga (Spain)',1,1,0),(16627,8658,116538,'Elizondo','Spain','ES','Elizondo (Spain)',1,1,0),(16628,0,116539,'Elk Grove Village','United States of America','US','Elk Grove Village (United States of America)',1,1,0),(16629,0,116540,'Elkenroth','Germany','DE','Elkenroth (Germany)',1,1,0),(16630,8668,116541,'Elkton','United States of America','US','Elkton (United States of America)',1,1,0),(16631,0,116542,'Ellezelles','Belgium','BE','Ellezelles (Belgium)',1,1,0),(16632,0,116543,'Ellington','United Kingdom','UK','Ellington (United Kingdom)',1,1,0),(16633,6935,116544,'Cordova','United States of America','US','Cordova (United States of America)',1,1,0),(16634,0,116545,'Cordova','United States of America','US','Cordova (United States of America)',1,1,0),(16635,6968,116546,'Corn Island','Nicaragua','NI','Corn Island (Nicaragua)',1,1,0),(16636,6975,116547,'Cornersville','United States of America','US','Cornersville (United States of America)',1,1,0),(16637,0,116548,'Cornimont','France','FR','Cornimont (France)',1,1,0),(16638,0,116549,'Corning','United States of America','US','Corning (United States of America)',1,1,0),(16639,0,116550,'Cornudella Del Montsant','Spain','ES','Cornudella Del Montsant (Spain)',1,1,0),(16640,6986,116551,'Coroico','Bolivia','BO','Coroico (Bolivia)',1,1,0),(16641,0,116552,'Coronel Vidal','Argentina','AR','Coronel Vidal (Argentina)',1,1,0),(16642,0,116553,'Corrandulla','Ireland','IE','Corrandulla (Ireland)',1,1,0),(16643,0,116554,'Corry','United States of America','US','Corry (United States of America)',1,1,0),(16644,0,116555,'Corseaux','Switzerland','CH','Corseaux (Switzerland)',1,1,0),(16645,0,116556,'Corsier-sur-Vevey','Switzerland','CH','Corsier-sur-Vevey (Switzerland)',1,1,0),(16646,0,116557,'Corsignano','Italy','IT','Corsignano (Italy)',1,1,0),(16647,7023,116558,'Cortland','United States of America','US','Cortland (United States of America)',1,1,0),(16648,7048,116559,'Costa Mesa','United States of America','US','Costa Mesa (United States of America)',1,1,0),(16649,0,116560,'Costa Smeralda','Italy','IT','Costa Smeralda (Italy)',1,1,0),(16650,0,116561,'Costinesti','Romania','RO','Costinesti (Romania)',1,1,0),(16651,7054,116562,'Cotacachi','Ecuador','EC','Cotacachi (Ecuador)',1,1,0),(16652,7065,116563,'Cottbus','Germany','DE','Cottbus (Germany)',1,1,0),(16653,0,116564,'Courtedoux','France','FR','Courtedoux (France)',1,1,0),(16654,0,116565,'Cousteau','Guadeloupe','GP','Cousteau (Guadeloupe)',1,1,0),(16655,0,116566,'Coventry','United Kingdom','UK','Coventry (United Kingdom)',1,1,0),(16656,0,116567,'Covington','United States of America','US','Covington (United States of America)',1,1,0),(16657,7133,116568,'Cozad','United States of America','US','Cozad (United States of America)',1,1,0),(16658,7136,116569,'Cradle Mountain','Australia','AU','Cradle Mountain (Australia)',1,1,0),(16659,0,116570,'Craignure','United Kingdom','UK','Craignure (United Kingdom)',1,1,0),(16660,0,116571,'Crailsheim','Germany','DE','Crailsheim (Germany)',1,1,0),(16661,7150,116572,'Craiova','Romania','RO','Craiova (Romania)',1,1,0),(16662,0,116573,'Cranberry Township','United States of America','US','Cranberry Township (United States of America)',1,1,0),(16663,0,116574,'Cranbrook','United Kingdom','UK','Cranbrook (United Kingdom)',1,1,0),(16664,0,116575,'Cravant','France','FR','Cravant (France)',1,1,0),(16665,0,116576,'Crediton','United Kingdom','UK','Crediton (United Kingdom)',1,1,0),(16666,7196,116577,'Cremona','Italy','IT','Cremona (Italy)',1,1,0),(16667,7201,116578,'Crepy-en-Valois','France','FR','Crepy-en-Valois (France)',1,1,0),(16668,0,116579,'Cresuz','Switzerland','CH','Cresuz (Switzerland)',1,1,0),(16669,0,116580,'Crickheath','United Kingdom','UK','Crickheath (United Kingdom)',1,1,0),(16670,0,116581,'Cronulla','Australia','AU','Cronulla (Australia)',1,1,0),(16671,0,116582,'Cross Lanes','United States of America','US','Cross Lanes (United States of America)',1,1,0),(16672,0,116583,'Crossac','France','FR','Crossac (France)',1,1,0),(16673,7289,116584,'Crotone','Italy','IT','Crotone (Italy)',1,1,0),(16674,7296,116585,'Crown Point','Trinidad and Tobago','TT','Crown Point (Trinidad and Tobago)',1,1,0),(16675,0,116586,'Crucecitas','Mexico','MX','Crucecitas (Mexico)',1,1,0),(16676,7308,116587,'Crump','United States of America','US','Crump (United States of America)',1,1,0),(16677,0,116588,'Csepreg-Buk','Hungary','HU','Csepreg-Buk (Hungary)',1,1,0),(16678,0,116589,'Cuasso al Monte','Italy','IT','Cuasso al Monte (Italy)',1,1,0),(16679,0,116590,'Cuba','United States of America','US','Cuba (United States of America)',1,1,0),(16680,0,116591,'Cuckfield','United Kingdom','UK','Cuckfield (United Kingdom)',1,1,0),(16681,7352,116592,'Culiacan','Mexico','MX','Culiacan (Mexico)',1,1,0),(16682,0,116593,'Cullen','United Kingdom','UK','Cullen (United Kingdom)',1,1,0),(16683,7358,116594,'Cullman','United States of America','US','Cullman (United States of America)',1,1,0),(16684,7377,116595,'Cunit','Spain','ES','Cunit (Spain)',1,1,0),(16685,0,116596,'Cunter','Switzerland','CH','Cunter (Switzerland)',1,1,0),(16686,7381,116597,'Cuorgne','Italy','IT','Cuorgne (Italy)',1,1,0),(16687,0,116598,'Curacautin','Chile','CL','Curacautin (Chile)',1,1,0),(16688,0,116599,'Cursdorf','Germany','DE','Cursdorf (Germany)',1,1,0),(16689,0,116600,'Cushendall','United Kingdom','UK','Cushendall (United Kingdom)',1,1,0),(16690,0,116601,'Czarna Dsbrowka','Poland','PL','Czarna Dsbrowka (Poland)',1,1,0),(16691,7427,116602,'Czestochowa','Poland','PL','Czestochowa (Poland)',1,1,0),(16692,0,116603,'Dabo','France','FR','Dabo (France)',1,1,0),(16693,0,116605,'Dachsberg','Germany','DE','Dachsberg (Germany)',1,1,0),(16694,0,116606,'Dadici-Skiljici','Croatia','HR','Dadici-Skiljici (Croatia)',1,1,0),(16695,7446,116607,'Dahlem','Germany','DE','Dahlem (Germany)',1,1,0),(16696,0,116608,'Dahlenburg','Germany','DE','Dahlenburg (Germany)',1,1,0),(16697,0,116609,'Dahmen','Germany','DE','Dahmen (Germany)',1,1,0),(16698,0,116610,'Dajla','Croatia','HR','Dajla (Croatia)',1,1,0),(16699,0,116611,'Dakhla (Dajla)','Morocco','MA','Dakhla (Dajla) (Morocco)',1,1,0),(16700,7475,116612,'Dalfsen','Netherlands','NL','Dalfsen (Netherlands)',1,1,0),(16701,0,116614,'Daliburg','United Kingdom','UK','Daliburg (United Kingdom)',1,1,0),(16702,0,116615,'Dalkeith','United Kingdom','UK','Dalkeith (United Kingdom)',1,1,0),(16703,0,116616,'Dalvik','Iceland','IS','Dalvik (Iceland)',1,1,0),(16704,0,116617,'Damouchari','Greece','GR','Damouchari (Greece)',1,1,0),(16705,0,116618,'Damuls','Austria','AT','Damuls (Austria)',1,1,0),(16706,7523,116619,'Dandenong','Australia','AU','Dandenong (Australia)',1,1,0),(16707,7525,116620,'Dandong','China','CN','Dandong (China)',1,1,0),(16708,7528,116621,'Dangast','Germany','DE','Dangast (Germany)',1,1,0),(16709,7529,116622,'Dangriga','Belize','BZ','Dangriga (Belize)',1,1,0),(16710,0,116623,'Dania Beach','United States of America','US','Dania Beach (United States of America)',1,1,0),(16711,0,116625,'Dannenfels','Germany','DE','Dannenfels (Germany)',1,1,0),(16712,7551,116626,'Dar-es-Salaam','Tanzania','TZ','Dar-es-Salaam (Tanzania)',1,1,0),(16713,7553,116627,'Dargaville','New Zealand','NZ','Dargaville (New Zealand)',1,1,0),(16714,0,116628,'Darlingerode','Germany','DE','Darlingerode (Germany)',1,1,0),(16715,0,116629,'Darmarochori','Greece','GR','Darmarochori (Greece)',1,1,0),(16716,0,116630,'Dartmoor','United Kingdom','UK','Dartmoor (United Kingdom)',1,1,0),(16717,0,116631,'Dassia','Greece','GR','Dassia (Greece)',1,1,0),(16718,0,116632,'Dauchingen','Germany','DE','Dauchingen (Germany)',1,1,0),(16719,7592,116633,'Dauin','Philippines','PH','Dauin (Philippines)',1,1,0),(16720,7593,116634,'Daun','Germany','DE','Daun (Germany)',1,1,0),(16721,7603,116635,'David','Panama','PA','David (Panama)',1,1,0),(16722,7609,116636,'Davos','Switzerland','CH','Davos (Switzerland)',1,1,0),(16723,7611,116637,'Davos-Platz','Switzerland','CH','Davos-Platz (Switzerland)',1,1,0),(16724,0,116638,'Davos-Wolfgang','Switzerland','CH','Davos-Wolfgang (Switzerland)',1,1,0),(16725,0,116639,'Dawn Beach','Sint Maarten (Dutch part)','SX','Dawn Beach (Sint Maarten (Dutch part))',1,1,0),(16726,0,116640,'De Kelders','South Africa','ZA','De Kelders (South Africa)',1,1,0),(16727,30755,116641,'De Pere','United States of America','US','De Pere (United States of America)',1,1,0),(16728,30756,116642,'De Queen','United States of America','US','De Queen (United States of America)',1,1,0),(16729,0,116643,'De Schiphorst','Netherlands','NL','De Schiphorst (Netherlands)',1,1,0),(16730,7645,116644,'Deauville','France','FR','Deauville (France)',1,1,0),(16731,0,116645,'Decatur','United States of America','US','Decatur (United States of America)',1,1,0),(16732,0,116646,'Decatur','United States of America','US','Decatur (United States of America)',1,1,0),(16733,0,116647,'Decize','France','FR','Decize (France)',1,1,0),(16734,0,116648,'Deckenpfronn','Germany','DE','Deckenpfronn (Germany)',1,1,0),(16735,7658,116649,'Decorah','United States of America','US','Decorah (United States of America)',1,1,0),(16736,7664,116650,'Deer Lake','Canada','CA','Deer Lake (Canada)',1,1,0),(16737,0,116651,'Deer Park','United States of America','US','Deer Park (United States of America)',1,1,0),(16738,0,116652,'Deesbach','Germany','DE','Deesbach (Germany)',1,1,0),(16739,0,116653,'Degersheim','Switzerland','CH','Degersheim (Switzerland)',1,1,0),(16740,0,116654,'Deggenhausertal','Germany','DE','Deggenhausertal (Germany)',1,1,0),(16741,30763,116655,'Del City','United States of America','US','Del City (United States of America)',1,1,0),(16742,0,116656,'Dili','Timor-Leste','TL','Dili (Timor-Leste)',1,1,0),(16743,0,116657,'Dilijan','Armenia','AM','Dilijan (Armenia)',1,1,0),(16744,0,116658,'Dillenburg','Germany','DE','Dillenburg (Germany)',1,1,0),(16745,0,116659,'Dillon','United States of America','US','Dillon (United States of America)',1,1,0),(16746,0,116660,'Dimona','Israel','IL','Dimona (Israel)',1,1,0),(16747,7925,116661,'Dinklage','Germany','DE','Dinklage (Germany)',1,1,0),(16748,0,116662,'Dionewar','Senegal','SN','Dionewar (Senegal)',1,1,0),(16749,0,116663,'Dionisiou Beach','Greece','GR','Dionisiou Beach (Greece)',1,1,0),(16750,0,116664,'Dipperz-Friesenhausen','Germany','DE','Dipperz-Friesenhausen (Germany)',1,1,0),(16751,0,116665,'Diss','United Kingdom','UK','Diss (United Kingdom)',1,1,0),(16752,0,116666,'Dissaysous-Courcillon','France','FR','Dissaysous-Courcillon (France)',1,1,0),(16753,0,116667,'Djuni (Duni)','Bulgaria','BG','Djuni (Duni) (Bulgaria)',1,1,0),(16754,7969,116668,'Djursholm','Sweden','SE','Djursholm (Sweden)',1,1,0),(16755,0,116669,'Dmitrow','Russia','RU','Dmitrow (Russia)',1,1,0),(16756,0,116670,'Dobronte','Hungary','HU','Dobronte (Hungary)',1,1,0),(16757,0,116671,'Doc Let Beach','Vietnam','VN','Doc Let Beach (Vietnam)',1,1,0),(16758,0,116672,'Dol','Croatia','HR','Dol (Croatia)',1,1,0),(16759,0,116673,'Dolus','France','FR','Dolus (France)',1,1,0),(16760,0,116674,'Dolwyddelan','United Kingdom','UK','Dolwyddelan (United Kingdom)',1,1,0),(16761,0,116675,'Domat/Ems','Switzerland','CH','Domat/Ems (Switzerland)',1,1,0),(16762,8022,116676,'Domburg','Netherlands','NL','Domburg (Netherlands)',1,1,0),(16763,8028,116677,'Domme','France','FR','Domme (France)',1,1,0),(16764,0,116678,'Don Khong','LAOS','LA','Don Khong (LAOS)',1,1,0),(16765,0,116679,'Donamaria','Spain','ES','Donamaria (Spain)',1,1,0),(16766,8046,116680,'Donegal','United States of America','US','Donegal (United States of America)',1,1,0),(16767,8049,116681,'Dong Hoi','Vietnam','VN','Dong Hoi (Vietnam)',1,1,0),(16768,0,116682,'Dooagh','Ireland','IE','Dooagh (Ireland)',1,1,0),(16769,0,116683,'Doohooma','Ireland','IE','Doohooma (Ireland)',1,1,0),(16770,0,116684,'Dorking','United Kingdom','UK','Dorking (United Kingdom)',1,1,0),(16771,8099,116685,'Dorpen','Germany','DE','Dorpen (Germany)',1,1,0),(16772,0,116686,'Dorscheid','Germany','DE','Dorscheid (Germany)',1,1,0),(16773,0,116687,'Douglas','United States of America','US','Douglas (United States of America)',1,1,0),(16774,0,116688,'Douneika','Greece','GR','Douneika (Greece)',1,1,0),(16775,0,116689,'Douville','France','FR','Douville (France)',1,1,0),(16776,0,116690,'Dove Creek','United States of America','US','Dove Creek (United States of America)',1,1,0),(16777,0,116691,'Dover','United Kingdom','UK','Dover (United Kingdom)',1,1,0),(16778,0,116692,'Dover','United States of America','US','Dover (United States of America)',1,1,0),(16779,8141,116693,'Downsview','Canada','CA','Downsview (Canada)',1,1,0),(16780,0,116694,'Dragoon','United States of America','US','Dragoon (United States of America)',1,1,0),(16781,0,116695,'Dramburg','Poland','PL','Dramburg (Poland)',1,1,0),(16782,8165,116696,'Draper','United States of America','US','Draper (United States of America)',1,1,0),(16783,8173,116697,'Dreieich','Germany','DE','Dreieich (Germany)',1,1,0),(16784,0,116698,'Dremmen','Germany','DE','Dremmen (Germany)',1,1,0),(16785,0,116699,'Drognitz','Germany','DE','Drognitz (Germany)',1,1,0),(16786,0,116700,'Dromahair','Ireland','IE','Dromahair (Ireland)',1,1,0),(16787,0,116701,'Droussia','Cyprus','CY','Droussia (Cyprus)',1,1,0),(16788,0,116702,'Drymen','United Kingdom','UK','Drymen (United Kingdom)',1,1,0),(16789,0,116703,'Drzonkow','Poland','PL','Drzonkow (Poland)',1,1,0),(16790,0,116704,'dt. Gnesen','Poland','PL','dt. Gnesen (Poland)',1,1,0),(16791,0,116705,'Dublin','United States of America','US','Dublin (United States of America)',1,1,0),(16792,8233,116706,'Ducey','France','FR','Ducey (France)',1,1,0),(16793,0,116707,'Dudince','Slovakia','SK','Dudince (Slovakia)',1,1,0),(16794,0,116708,'Dueodde','Denmark','DK','Dueodde (Denmark)',1,1,0),(16795,0,116709,'Duga Luka','Croatia','HR','Duga Luka (Croatia)',1,1,0),(16796,0,116710,'Duinbergen','Belgium','BE','Duinbergen (Belgium)',1,1,0),(16797,0,116711,'Dulverton','United Kingdom','UK','Dulverton (United Kingdom)',1,1,0),(16798,8270,116712,'Dumaguete','Philippines','PH','Dumaguete (Philippines)',1,1,0),(16799,0,116713,'Dundonnell','United Kingdom','UK','Dundonnell (United Kingdom)',1,1,0),(16800,0,116714,'Dunfermline','United Kingdom','UK','Dunfermline (United Kingdom)',1,1,0),(16801,8311,116715,'Dungarvan','Ireland','IE','Dungarvan (Ireland)',1,1,0),(16802,0,116716,'Dunkeld','United Kingdom','UK','Dunkeld (United Kingdom)',1,1,0),(16803,8322,116717,'Dunkirk','United States of America','US','Dunkirk (United States of America)',1,1,0),(16804,8349,116718,'Durango','Mexico','MX','Durango (Mexico)',1,1,0),(16805,0,116719,'Durham','United States of America','US','Durham (United States of America)',1,1,0),(16806,0,116720,'Durrow','Ireland','IE','Durrow (Ireland)',1,1,0),(16807,8372,116721,'Dusseldorf','Germany','DE','Dusseldorf (Germany)',1,1,0),(16808,0,116722,'Duyun','China','CN','Duyun (China)',1,1,0),(16809,0,116723,'Eagle Beach','Aruba','AW','Eagle Beach (Aruba)',1,1,0),(16810,0,116724,'Eagle Pass','United States of America','US','Eagle Pass (United States of America)',1,1,0),(16811,0,116725,'Eagle Plains','Canada','CA','Eagle Plains (Canada)',1,1,0),(16812,0,116726,'Easingwold','United Kingdom','UK','Easingwold (United Kingdom)',1,1,0),(16813,8414,116727,'Easley','United States of America','US','Easley (United States of America)',1,1,0),(16814,0,116728,'East Coast','Mauritius','MU','East Coast (Mauritius)',1,1,0),(16815,30798,116729,'East Dorset','United States of America','US','East Dorset (United States of America)',1,1,0),(16816,30818,116730,'East Hanover','United States of America','US','East Hanover (United States of America)',1,1,0),(16817,0,116731,'East Hoathly','United Kingdom','UK','East Hoathly (United Kingdom)',1,1,0),(16818,0,116732,'East Linton','United Kingdom','UK','East Linton (United Kingdom)',1,1,0),(16819,0,116733,'East Malling','United Kingdom','UK','East Malling (United Kingdom)',1,1,0),(16820,0,116734,'East Melbourne','Australia','AU','East Melbourne (Australia)',1,1,0),(16821,30843,116735,'East Providence','United States of America','US','East Providence (United States of America)',1,1,0),(16822,0,116736,'East Windsor','United States of America','US','East Windsor (United States of America)',1,1,0),(16823,8440,116737,'Eastham','United States of America','US','Eastham (United States of America)',1,1,0),(16824,0,116738,'Ebene Reichenau','Austria','AT','Ebene Reichenau (Austria)',1,1,0),(16825,0,116739,'Ebersbach an der Fils','Germany','DE','Ebersbach an der Fils (Germany)',1,1,0),(16826,0,116740,'Ebersdorf','Austria','AT','Ebersdorf (Austria)',1,1,0),(16827,8467,116741,'Eberstein','Austria','AT','Eberstein (Austria)',1,1,0),(16828,0,116742,'Ebertsheim','Germany','DE','Ebertsheim (Germany)',1,1,0),(16829,8473,116743,'Ebrach','Germany','DE','Ebrach (Germany)',1,1,0),(16830,0,116744,'Eckenhagen','Germany','DE','Eckenhagen (Germany)',1,1,0),(16831,8491,116745,'Ecouen','France','FR','Ecouen (France)',1,1,0),(16832,8495,116746,'Ede','Netherlands','NL','Ede (Netherlands)',1,1,0),(16833,8500,116747,'Edenkoben','Germany','DE','Edenkoben (Germany)',1,1,0),(16834,0,116748,'Edermunde','Germany','DE','Edermunde (Germany)',1,1,0),(16835,8505,116749,'Edesheim','Germany','DE','Edesheim (Germany)',1,1,0),(16836,0,116750,'Edgewater','United States of America','US','Edgewater (United States of America)',1,1,0),(16837,0,116751,'Edsbruk','Sweden','SE','Edsbruk (Sweden)',1,1,0),(16838,0,116752,'Eftalou','Greece','GR','Eftalou (Greece)',1,1,0),(16839,0,116753,'Eggenfelden','Germany','DE','Eggenfelden (Germany)',1,1,0),(16840,8552,116754,'Eggenstein-Leopoldshafen','Germany','DE','Eggenstein-Leopoldshafen (Germany)',1,1,0),(16841,8555,116755,'Egilsstadir','Iceland','IS','Egilsstadir (Iceland)',1,1,0),(16842,0,116756,'Eguilles','France','FR','Eguilles (France)',1,1,0),(16843,0,116757,'Ehenbichl','Austria','AT','Ehenbichl (Austria)',1,1,0),(16844,0,116758,'Ehingen an der Donau/ Ehingen on the Danube','Germany','DE','Ehingen an der Donau/ Ehingen on the Danube (Germany)',1,1,0),(16845,0,116759,'Eigenthal','Switzerland','CH','Eigenthal (Switzerland)',1,1,0),(16846,8585,116760,'Eilat','Israel','IL','Eilat (Israel)',1,1,0),(16847,0,116761,'Eisenberg (Pfalz)','Germany','DE','Eisenberg (Pfalz) (Germany)',1,1,0),(16848,0,116762,'Eisfeld','Germany','DE','Eisfeld (Germany)',1,1,0),(16849,0,116763,'Eitting','Germany','DE','Eitting (Germany)',1,1,0),(16850,8606,116764,'Eksharad','Sweden','SE','Eksharad (Sweden)',1,1,0),(16851,0,116765,'El Aaiun','Western Sahara','EH','El Aaiun (Western Sahara)',1,1,0),(16852,30869,116766,'El Barraco','Spain','ES','El Barraco (Spain)',1,1,0),(16853,30877,116767,'El Campo','United States of America','US','El Campo (United States of America)',1,1,0),(16854,30882,116768,'El Cercado','Mexico','MX','El Cercado (Mexico)',1,1,0),(16855,0,116769,'East Sound','United States of America','US','East Sound (United States of America)',1,1,0),(16856,0,116770,'East Taphouse','United Kingdom','UK','East Taphouse (United Kingdom)',1,1,0),(16857,30852,116771,'East Tawas','United States of America','US','East Tawas (United States of America)',1,1,0),(16858,0,116772,'Eastcote','United Kingdom','UK','Eastcote (United Kingdom)',1,1,0),(16859,8450,116773,'Eaton','United States of America','US','Eaton (United States of America)',1,1,0),(16860,8453,116774,'Eatonville','United States of America','US','Eatonville (United States of America)',1,1,0),(16861,8460,116775,'Ebeltoft','Denmark','DK','Ebeltoft (Denmark)',1,1,0),(16862,8462,116776,'Ebenau','Austria','AT','Ebenau (Austria)',1,1,0),(16863,8466,116777,'Ebersberg','Germany','DE','Ebersberg (Germany)',1,1,0),(16864,0,116778,'Eching (Moosinning)','Germany','DE','Eching (Moosinning) (Germany)',1,1,0),(16865,8483,116779,'Ecija','Spain','ES','Ecija (Spain)',1,1,0),(16866,0,116780,'Eckfeld','Germany','DE','Eckfeld (Germany)',1,1,0),(16867,8510,116781,'Edgecomb','United States of America','US','Edgecomb (United States of America)',1,1,0),(16868,8516,116782,'Edgewood','United States of America','US','Edgewood (United States of America)',1,1,0),(16869,0,116783,'Edgware','United Kingdom','UK','Edgware (United Kingdom)',1,1,0),(16870,0,116784,'Edole','Latvia','LV','Edole (Latvia)',1,1,0),(16871,8534,116785,'Edremit','Turkey','TR','Edremit (Turkey)',1,1,0),(16872,0,116786,'Eefde','Netherlands','NL','Eefde (Netherlands)',1,1,0),(16873,8540,116787,'Eemnes','Netherlands','NL','Eemnes (Netherlands)',1,1,0),(16874,0,116788,'Egares','Greece','GR','Egares (Greece)',1,1,0),(16875,0,116789,'Eggern','Austria','AT','Eggern (Austria)',1,1,0),(16876,0,116790,'Egham','United Kingdom','UK','Egham (United Kingdom)',1,1,0),(16877,0,116791,'Eging on Sea','Germany','DE','Eging on Sea (Germany)',1,1,0),(16878,0,116792,'Egmating','Germany','DE','Egmating (Germany)',1,1,0),(16879,0,116793,'Eguzon-Chantome','France','FR','Eguzon-Chantome (France)',1,1,0),(16880,8569,116794,'Ehningen','Germany','DE','Ehningen (Germany)',1,1,0),(16881,8570,116795,'Ehrenberg','United States of America','US','Ehrenberg (United States of America)',1,1,0),(16882,8574,116796,'Eibar','Spain','ES','Eibar (Spain)',1,1,0),(16883,0,116797,'Eich','Switzerland','CH','Eich (Switzerland)',1,1,0),(16884,0,116798,'Eijsden','Netherlands','NL','Eijsden (Netherlands)',1,1,0),(16885,0,116799,'Ein Gedi','Israel','IL','Ein Gedi (Israel)',1,1,0),(16886,8589,116800,'Einbeck','Germany','DE','Einbeck (Germany)',1,1,0),(16887,0,116801,'Eira do Serrado','Portugal','PT','Eira do Serrado (Portugal)',1,1,0),(16888,0,116802,'Eisentratten','Austria','AT','Eisentratten (Austria)',1,1,0),(16889,0,116803,'Eiterfeld','Germany','DE','Eiterfeld (Germany)',1,1,0),(16890,8600,116804,'Ejea de los Caballeros','Spain','ES','Ejea de los Caballeros (Spain)',1,1,0),(16891,0,116805,'El Bosque','Spain','ES','El Bosque (Spain)',1,1,0),(16892,30873,116806,'El Burgo de Osma','Spain','ES','El Burgo de Osma (Spain)',1,1,0),(16893,0,116807,'El Cable','Spain','ES','El Cable (Spain)',1,1,0),(16894,30876,116808,'El Campello','Spain','ES','El Campello (Spain)',1,1,0),(16895,0,116809,'El Carpio','Spain','ES','El Carpio (Spain)',1,1,0),(16896,0,116810,'El Dorado','United States of America','US','El Dorado (United States of America)',1,1,0),(16897,0,116811,'El Escorial','Spain','ES','El Escorial (Spain)',1,1,0),(16898,30902,116812,'El Medano','Spain','ES','El Medano (Spain)',1,1,0),(16899,30907,116813,'El Morell','Spain','ES','El Morell (Spain)',1,1,0),(16900,0,116814,'El Morro','Venezuela','VE','El Morro (Venezuela)',1,1,0),(16901,0,116815,'El Naaba','Egypt','EG','El Naaba (Egypt)',1,1,0),(16902,30908,116816,'El Nido','Philippines','PH','El Nido (Philippines)',1,1,0),(16903,0,116817,'El Risco','Spain','ES','El Risco (Spain)',1,1,0),(16904,0,116818,'El Tigre','Venezuela','VE','El Tigre (Venezuela)',1,1,0),(16905,0,116819,'El Time','Spain','ES','El Time (Spain)',1,1,0),(16906,0,116820,'El Tirano','Venezuela','VE','El Tirano (Venezuela)',1,1,0),(16907,0,116821,'Elatochori','Greece','GR','Elatochori (Greece)',1,1,0),(16908,8630,116822,'Eldridge','United States of America','US','Eldridge (United States of America)',1,1,0),(16909,8633,116823,'Elefsina','Greece','GR','Elefsina (Greece)',1,1,0),(16910,8637,116824,'Eleusis','Greece','GR','Eleusis (Greece)',1,1,0),(16911,8645,116825,'Elia','Greece','GR','Elia (Greece)',1,1,0),(16912,0,116826,'Elizabeth','United States of America','US','Elizabeth (United States of America)',1,1,0),(16913,0,116827,'Elk Mountain','United States of America','US','Elk Mountain (United States of America)',1,1,0),(16914,0,116828,'Elkaduwa','Sri Lanka','LK','Elkaduwa (Sri Lanka)',1,1,0),(16915,0,116829,'El-Kelaa M\'Gouna','Morocco','MA','El-Kelaa M\'Gouna (Morocco)',1,1,0),(16916,0,116830,'Ella','Sri Lanka','LK','Ella (Sri Lanka)',1,1,0),(16917,8675,116831,'Ellenville','United States of America','US','Ellenville (United States of America)',1,1,0),(16918,0,116832,'Ellenz-Poltersdorf','Germany','DE','Ellenz-Poltersdorf (Germany)',1,1,0),(16919,8680,116833,'Ellicott City','United States of America','US','Ellicott City (United States of America)',1,1,0),(16920,8682,116834,'Ellijay','United States of America','US','Ellijay (United States of America)',1,1,0),(16921,0,116835,'Ellsworth','United States of America','US','Ellsworth (United States of America)',1,1,0),(16922,0,116836,'Elounda','Greece','GR','Elounda (Greece)',1,1,0),(16923,0,116837,'Elphin','Ireland','IE','Elphin (Ireland)',1,1,0),(16924,8702,116838,'Elroy','United States of America','US','Elroy (United States of America)',1,1,0),(16925,0,116839,'Elsteraue','Germany','DE','Elsteraue (Germany)',1,1,0),(16926,8715,116840,'Elven','France','FR','Elven (France)',1,1,0),(16927,8721,116841,'Elyria','United States of America','US','Elyria (United States of America)',1,1,0),(16928,8726,116842,'Embrun','France','FR','Embrun (France)',1,1,0),(16929,0,116843,'Embute','Latvia','LV','Embute (Latvia)',1,1,0),(16930,0,116844,'Emerald Bay','Bahamas','BS','Emerald Bay (Bahamas)',1,1,0),(16931,0,116845,'Emmering','Germany','DE','Emmering (Germany)',1,1,0),(16932,0,116846,'Endingen','Germany','DE','Endingen (Germany)',1,1,0),(16933,8789,116847,'Enid','United States of America','US','Enid (United States of America)',1,1,0),(16934,30945,116848,'Enna','Italy','IT','Enna (Italy)',1,1,0),(16935,8797,116849,'Ennigerloh','Germany','DE','Ennigerloh (Germany)',1,1,0),(16936,8798,116850,'Ennis','Ireland','IE','Ennis (Ireland)',1,1,0),(16937,8818,116851,'Enterprise','United States of America','US','Enterprise (United States of America)',1,1,0),(16938,0,116852,'Entraching','Germany','DE','Entraching (Germany)',1,1,0),(16939,0,116853,'Entroncamento','Portugal','PT','Entroncamento (Portugal)',1,1,0),(16940,8825,116854,'Enumclaw','United States of America','US','Enumclaw (United States of America)',1,1,0),(16941,0,116855,'Ependes FR','Switzerland','CH','Ependes FR (Switzerland)',1,1,0),(16942,0,116856,'Epidauros','Greece','GR','Epidauros (Greece)',1,1,0),(16943,0,116857,'Eppan','Italy','IT','Eppan (Italy)',1,1,0),(16944,0,116858,'Eppendorf','Germany','DE','Eppendorf (Germany)',1,1,0),(16945,8842,116859,'Eppe-Sauvage','France','FR','Eppe-Sauvage (France)',1,1,0),(16946,0,116860,'Epsom','United Kingdom','UK','Epsom (United Kingdom)',1,1,0),(16947,8853,116861,'Erbalunga','France','FR','Erbalunga (France)',1,1,0),(16948,0,116862,'Erese','Spain','ES','Erese (Spain)',1,1,0),(16949,8876,116863,'Ericeira','Portugal','PT','Ericeira (Portugal)',1,1,0),(16950,8877,116864,'Erick','United States of America','US','Erick (United States of America)',1,1,0),(16951,8883,116865,'Erlanger','United States of America','US','Erlanger (United States of America)',1,1,0),(16952,0,116866,'Ermitage Frere-Joseph','France','FR','Ermitage Frere-Joseph (France)',1,1,0),(16953,8891,116867,'Ermoupolis','Greece','GR','Ermoupolis (Greece)',1,1,0),(16954,8894,116868,'Ernst','Germany','DE','Ernst (Germany)',1,1,0),(16955,0,116869,'Erto e Casso','Italy','IT','Erto e Casso (Italy)',1,1,0),(16956,8909,116870,'Escalante','Spain','ES','Escalante (Spain)',1,1,0),(16957,8914,116871,'Escarrilla','Spain','ES','Escarrilla (Spain)',1,1,0),(16958,8917,116872,'Eschau','France','FR','Eschau (France)',1,1,0),(16959,0,116873,'Esch-sur-Sure','Luxembourg','LU','Esch-sur-Sure (Luxembourg)',1,1,0),(16960,0,116874,'Escobedo de Villafufre','Spain','ES','Escobedo de Villafufre (Spain)',1,1,0),(16961,8934,116875,'Eskilstuna','Sweden','SE','Eskilstuna (Sweden)',1,1,0),(16962,0,116876,'Esporlas','Spain','ES','Esporlas (Spain)',1,1,0),(16963,8965,116877,'Essendon','Australia','AU','Essendon (Australia)',1,1,0),(16964,0,116878,'Essex','United States of America','US','Essex (United States of America)',1,1,0),(16965,0,116879,'Estancarbon','France','FR','Estancarbon (France)',1,1,0),(16966,8981,116880,'Estella','Spain','ES','Estella (Spain)',1,1,0),(16967,0,116881,'Esterencuby','France','FR','Esterencuby (France)',1,1,0),(16968,8992,116882,'Estherville','United States of America','US','Estherville (United States of America)',1,1,0),(16969,30777,116883,'Dolo','Italy','IT','Dolo (Italy)',1,1,0),(16970,0,116884,'Domazlice','Czech Republic','CZ','Domazlice (Czech Republic)',1,1,0),(16971,0,116885,'Domino','France','FR','Domino (France)',1,1,0),(16972,8029,116886,'Dommeldange','Luxembourg','LU','Dommeldange (Luxembourg)',1,1,0),(16973,0,116887,'Don Daeng','LAOS','LA','Don Daeng (LAOS)',1,1,0),(16974,0,116888,'Dona Mencia','Spain','ES','Dona Mencia (Spain)',1,1,0),(16975,8038,116889,'Donaldsonville','United States of America','US','Donaldsonville (United States of America)',1,1,0),(16976,8040,116890,'Donaueschingen','Germany','DE','Donaueschingen (Germany)',1,1,0),(16977,0,116891,'Doncaster','United Kingdom','UK','Doncaster (United Kingdom)',1,1,0),(16978,8052,116892,'Dongguan','China','CN','Dongguan (China)',1,1,0),(16979,8061,116893,'Doniphan','United States of America','US','Doniphan (United States of America)',1,1,0),(16980,0,116894,'Donnafugata','Italy','IT','Donnafugata (Italy)',1,1,0),(16981,8065,116895,'Donnersbachwald','Austria','AT','Donnersbachwald (Austria)',1,1,0),(16982,0,116896,'Donnerskirchen','Austria','AT','Donnerskirchen (Austria)',1,1,0),(16983,8068,116897,'Donore','Ireland','IE','Donore (Ireland)',1,1,0),(16984,0,116898,'Donousa','Greece','GR','Donousa (Greece)',1,1,0),(16985,0,116899,'Doonan','Australia','AU','Doonan (Australia)',1,1,0),(16986,8089,116900,'Dorfgastein','Austria','AT','Dorfgastein (Austria)',1,1,0),(16987,0,116901,'Dorlisheim','France','FR','Dorlisheim (France)',1,1,0),(16988,8092,116902,'Dormagen','Germany','DE','Dormagen (Germany)',1,1,0),(16989,8093,116903,'Dormelletto','Italy','IT','Dormelletto (Italy)',1,1,0),(16990,0,116904,'Dorndorf','Germany','DE','Dorndorf (Germany)',1,1,0),(16991,0,116905,'Dornstetten','Germany','DE','Dornstetten (Germany)',1,1,0),(16992,0,116906,'Dorsel','Germany','DE','Dorsel (Germany)',1,1,0),(16993,0,116907,'Dorzbach','Germany','DE','Dorzbach (Germany)',1,1,0),(16994,0,116908,'Dossenheim','Germany','DE','Dossenheim (Germany)',1,1,0),(16995,0,116909,'Dosson Di Casier','Italy','IT','Dosson Di Casier (Italy)',1,1,0),(16996,8112,116910,'Dothan','United States of America','US','Dothan (United States of America)',1,1,0),(16997,8149,116911,'Dozza','Italy','IT','Dozza (Italy)',1,1,0),(16998,0,116912,'Draguc','Croatia','HR','Draguc (Croatia)',1,1,0),(16999,8158,116913,'Drake Bay','Costa Rica','CR','Drake Bay (Costa Rica)',1,1,0),(17000,0,116914,'Dramalj','Croatia','HR','Dramalj (Croatia)',1,1,0),(17001,0,116915,'Dramburger See','Poland','PL','Dramburger See (Poland)',1,1,0),(17002,0,116916,'Dra?markt','Austria','AT','Dra?markt (Austria)',1,1,0),(17003,0,116917,'Drebber','Germany','DE','Drebber (Germany)',1,1,0),(17004,8177,116918,'Dresden','United States of America','US','Dresden (United States of America)',1,1,0),(17005,0,116919,'Drewitz','Germany','DE','Drewitz (Germany)',1,1,0),(17006,8186,116920,'Dripping Springs','United States of America','US','Dripping Springs (United States of America)',1,1,0),(17007,8191,116921,'Drolshagen','Germany','DE','Drolshagen (Germany)',1,1,0),(17008,0,116922,'Drubeck','Germany','DE','Drubeck (Germany)',1,1,0),(17009,0,116923,'Druif Beach','Aruba','AW','Druif Beach (Aruba)',1,1,0),(17010,0,116924,'Drummond','United States of America','US','Drummond (United States of America)',1,1,0),(17011,8214,116925,'Dryden','Canada','CA','Dryden (Canada)',1,1,0),(17012,0,116926,'Dublin','United States of America','US','Dublin (United States of America)',1,1,0),(17013,0,116927,'Dublin','Canada','CA','Dublin (Canada)',1,1,0),(17014,8230,116928,'DuBois','United States of America','US','DuBois (United States of America)',1,1,0),(17015,8236,116929,'Ducherow','Germany','DE','Ducherow (Germany)',1,1,0),(17016,8250,116930,'Dugopolje','Croatia','HR','Dugopolje (Croatia)',1,1,0),(17017,0,116931,'Dugort','Ireland','IE','Dugort (Ireland)',1,1,0),(17018,0,116932,'Dumenza','Italy','IT','Dumenza (Italy)',1,1,0),(17019,0,116933,'Dummer','Germany','DE','Dummer (Germany)',1,1,0),(17020,0,116934,'Dun','France','FR','Dun (France)',1,1,0),(17021,0,116935,'Dunakiliti','Hungary','HU','Dunakiliti (Hungary)',1,1,0),(17022,8283,116936,'Dunbar','United States of America','US','Dunbar (United States of America)',1,1,0),(17023,8289,116937,'Duncan','Canada','CA','Duncan (Canada)',1,1,0),(17024,0,116938,'Duncan','United States of America','US','Duncan (United States of America)',1,1,0),(17025,8294,116939,'Duncanville','United States of America','US','Duncanville (United States of America)',1,1,0),(17026,8299,116940,'Dundee','United States of America','US','Dundee (United States of America)',1,1,0),(17027,0,116941,'Dunmanway','Ireland','IE','Dunmanway (Ireland)',1,1,0),(17028,8332,116942,'Dunnville','Canada','CA','Dunnville (Canada)',1,1,0),(17029,0,116943,'Dunstable','United Kingdom','UK','Dunstable (United Kingdom)',1,1,0),(17030,8348,116944,'Durango','Spain','ES','Durango (Spain)',1,1,0),(17031,8351,116945,'Durant','United States of America','US','Durant (United States of America)',1,1,0),(17032,8353,116946,'Duras','France','FR','Duras (France)',1,1,0),(17033,0,116947,'Durfort-Lacapelette','France','FR','Durfort-Lacapelette (France)',1,1,0),(17034,0,116948,'Duri','Indonesia','ID','Duri (Indonesia)',1,1,0),(17035,0,116949,'Durnstein in der Steiermark','Austria','AT','Durnstein in der Steiermark (Austria)',1,1,0),(17036,8366,116950,'Durres','Albania','AL','Durres (Albania)',1,1,0),(17037,0,116951,'Duschanbe','Tajikistan','TJ','Duschanbe (Tajikistan)',1,1,0),(17038,0,116952,'Eaglehawk Neck','Australia','AU','Eaglehawk Neck (Australia)',1,1,0),(17039,30800,116953,'East Dublin','United States of America','US','East Dublin (United States of America)',1,1,0),(17040,0,116954,'East Grinstead','United Kingdom','UK','East Grinstead (United Kingdom)',1,1,0),(17041,30849,116955,'East St. Louis','United States of America','US','East St. Louis (United States of America)',1,1,0),(17042,0,116956,'Easton on the Hill','United Kingdom','UK','Easton on the Hill (United Kingdom)',1,1,0),(17043,0,116957,'Eben','Austria','AT','Eben (Austria)',1,1,0),(17044,0,116958,'Ebene','Mauritius','MU','Ebene (Mauritius)',1,1,0),(17045,0,116959,'Eben-Emael','Belgium','BE','Eben-Emael (Belgium)',1,1,0),(17046,0,116960,'Ecclefechan','United Kingdom','UK','Ecclefechan (United Kingdom)',1,1,0),(17047,0,116961,'Echedo','Spain','ES','Echedo (Spain)',1,1,0),(17048,0,116962,'Eching (Freising)','Germany','DE','Eching (Freising) (Germany)',1,1,0),(17049,0,116963,'Eckbolsheim','France','FR','Eckbolsheim (France)',1,1,0),(17050,8485,116964,'Eckelsheim','Germany','DE','Eckelsheim (Germany)',1,1,0),(17051,0,116965,'Ecuisses','France','FR','Ecuisses (France)',1,1,0),(17052,8514,116966,'Edgerton','United States of America','US','Edgerton (United States of America)',1,1,0),(17053,0,116967,'Edinburgh','United Kingdom','UK','Edinburgh (United Kingdom)',1,1,0),(17054,8535,116968,'Edsbyn','Sweden','SE','Edsbyn (Sweden)',1,1,0),(17055,8548,116969,'Eger','Hungary','HU','Eger (Hungary)',1,1,0),(17056,0,116970,'Egg','Austria','AT','Egg (Austria)',1,1,0),(17057,0,116971,'Eggerberg','Switzerland','CH','Eggerberg (Switzerland)',1,1,0),(17058,8560,116972,'Egmond aan Zee','Netherlands','NL','Egmond aan Zee (Netherlands)',1,1,0),(17059,8563,116973,'Eguisheim','France','FR','Eguisheim (France)',1,1,0),(17060,0,116974,'Ehrenberg','Germany','DE','Ehrenberg (Germany)',1,1,0),(17061,8577,116975,'Eichstatt','Germany','DE','Eichstatt (Germany)',1,1,0),(17062,0,116976,'Eikelandsosen','Norway','NO','Eikelandsosen (Norway)',1,1,0),(17063,8590,116977,'Eindhoven','Netherlands','NL','Eindhoven (Netherlands)',1,1,0),(17064,8594,116978,'Eisenach','Germany','DE','Eisenach (Germany)',1,1,0),(17065,0,116979,'Eisenberg (Thuringen)','Germany','DE','Eisenberg (Thuringen) (Germany)',1,1,0),(17066,0,116980,'Eisenheim','Germany','DE','Eisenheim (Germany)',1,1,0),(17067,0,116981,'Ekenas','Finland','FI','Ekenas (Finland)',1,1,0),(17068,30867,116982,'El Arenal','Spain','ES','El Arenal (Spain)',1,1,0),(17069,0,116983,'El Atajo','Spain','ES','El Atajo (Spain)',1,1,0),(17070,0,116984,'El Hoyo','Spain','ES','El Hoyo (Spain)',1,1,0),(17071,0,116985,'El Palmar','Spain','ES','El Palmar (Spain)',1,1,0),(17072,30931,116986,'El Salto','Mexico','MX','El Salto (Mexico)',1,1,0),(17073,0,116987,'El Socorro','Spain','ES','El Socorro (Spain)',1,1,0),(17074,8618,116988,'Elberton','United States of America','US','Elberton (United States of America)',1,1,0),(17075,8619,116989,'Elbigenalp','Austria','AT','Elbigenalp (Austria)',1,1,0),(17076,8627,116990,'Eldon','United States of America','US','Eldon (United States of America)',1,1,0),(17077,0,116991,'Eldoret','Kenya','KE','Eldoret (Kenya)',1,1,0),(17078,0,116992,'Eleftherna','Greece','GR','Eleftherna (Greece)',1,1,0),(17079,0,116993,'Elend-Mandelholz','Germany','DE','Elend-Mandelholz (Germany)',1,1,0),(17080,7930,116994,'Dipolog','Philippines','PH','Dipolog (Philippines)',1,1,0),(17081,0,116995,'Dirbach','Luxembourg','LU','Dirbach (Luxembourg)',1,1,0),(17082,7935,116996,'Dirdal','Norway','NO','Dirdal (Norway)',1,1,0),(17083,0,116997,'Divundu','Namibia','NA','Divundu (Namibia)',1,1,0),(17084,0,116998,'Dixon Cove','Honduras','HN','Dixon Cove (Honduras)',1,1,0),(17085,7961,116999,'Diyarbakir','Turkey','TR','Diyarbakir (Turkey)',1,1,0),(17086,7966,117000,'Djibouti','Djibouti','DJ','Djibouti (Djibouti)',1,1,0),(17087,0,117001,'Dobropoljana','Croatia','HR','Dobropoljana (Croatia)',1,1,0),(17088,7991,117002,'Dogliani','Italy','IT','Dogliani (Italy)',1,1,0),(17089,0,117003,'Dohren','Germany','DE','Dohren (Germany)',1,1,0),(17090,8012,117004,'Dolores Hidalgo','Mexico','MX','Dolores Hidalgo (Mexico)',1,1,0),(17091,0,117005,'Dolsach','Austria','AT','Dolsach (Austria)',1,1,0),(17092,0,117006,'Domene','France','FR','Domene (France)',1,1,0),(17093,0,117007,'Dommartin-les-Cuiseaux','France','FR','Dommartin-les-Cuiseaux (France)',1,1,0),(17094,8031,117008,'Domodossola','Italy','IT','Domodossola (Italy)',1,1,0),(17095,8039,117009,'Donalsonville','United States of America','US','Donalsonville (United States of America)',1,1,0),(17096,8047,117010,'Donegal','Ireland','IE','Donegal (Ireland)',1,1,0),(17097,8059,117011,'Dongying','China','CN','Dongying (China)',1,1,0),(17098,8070,117012,'Donovaly','Slovakia','SK','Donovaly (Slovakia)',1,1,0),(17099,8073,117013,'Doolin','Ireland','IE','Doolin (Ireland)',1,1,0),(17100,0,117014,'Dorf Mecklenburg','Germany','DE','Dorf Mecklenburg (Germany)',1,1,0),(17101,8100,117015,'Dorris','United States of America','US','Dorris (United States of America)',1,1,0),(17102,0,117016,'Dos Hermanas','Spain','ES','Dos Hermanas (Spain)',1,1,0),(17103,0,117017,'Douglas','United States of America','US','Douglas (United States of America)',1,1,0),(17104,0,117018,'Douglas','United States of America','US','Douglas (United States of America)',1,1,0),(17105,0,117019,'Doukades','Greece','GR','Doukades (Greece)',1,1,0),(17106,8129,117020,'Douz','Tunisia','TN','Douz (Tunisia)',1,1,0),(17107,0,117021,'Dover','United States of America','US','Dover (United States of America)',1,1,0),(17108,8148,117022,'Doylestown','United States of America','US','Doylestown (United States of America)',1,1,0),(17109,0,117023,'Dracy-Le-Fort','France','FR','Dracy-Le-Fort (France)',1,1,0),(17110,8164,117024,'Dranske','Germany','DE','Dranske (Germany)',1,1,0),(17111,0,117025,'Droitwich','United Kingdom','UK','Droitwich (United Kingdom)',1,1,0),(17112,0,117026,'Drosendorf','Austria','AT','Drosendorf (Austria)',1,1,0),(17113,0,117027,'Drumcondra','Ireland','IE','Drumcondra (Ireland)',1,1,0),(17114,8206,117028,'Drums','United States of America','US','Drums (United States of America)',1,1,0),(17115,8238,117029,'Ducktown','United States of America','US','Ducktown (United States of America)',1,1,0),(17116,0,117030,'Dudelange','Luxembourg','LU','Dudelange (Luxembourg)',1,1,0),(17117,8272,117031,'Dumas','United States of America','US','Dumas (United States of America)',1,1,0),(17118,0,117032,'Dumfries','United Kingdom','UK','Dumfries (United Kingdom)',1,1,0),(17119,0,117033,'Dunaszentmiklos','Hungary','HU','Dunaszentmiklos (Hungary)',1,1,0),(17120,8282,117034,'Dunaujvaros','Hungary','HU','Dunaujvaros (Hungary)',1,1,0),(17121,0,117035,'Dunbar','United Kingdom','UK','Dunbar (United Kingdom)',1,1,0),(17122,0,117036,'Dunblane','United Kingdom','UK','Dunblane (United Kingdom)',1,1,0),(17123,8293,117037,'Duncansville','United States of America','US','Duncansville (United States of America)',1,1,0),(17124,8298,117038,'Dundalk','Ireland','IE','Dundalk (Ireland)',1,1,0),(17125,0,117039,'Dundee','United States of America','US','Dundee (United States of America)',1,1,0),(17126,8306,117040,'Dunedin','New Zealand','NZ','Dunedin (New Zealand)',1,1,0),(17127,8307,117041,'Dunfanaghy','Ireland','IE','Dunfanaghy (Ireland)',1,1,0),(17128,8315,117042,'Dunhuang','China','CN','Dunhuang (China)',1,1,0),(17129,8325,117043,'Dunmore','United States of America','US','Dunmore (United States of America)',1,1,0),(17130,8329,117044,'Dunn','United States of America','US','Dunn (United States of America)',1,1,0),(17131,0,117045,'Dunoon','United Kingdom','UK','Dunoon (United Kingdom)',1,1,0),(17132,8336,117046,'Dunsborough','Australia','AU','Dunsborough (Australia)',1,1,0),(17133,0,117047,'Durand','United States of America','US','Durand (United States of America)',1,1,0),(17134,0,117049,'Durnten','Switzerland','CH','Durnten (Switzerland)',1,1,0),(17135,0,117050,'Durtal','France','FR','Durtal (France)',1,1,0),(17136,8394,117051,'Dziwnowek','Poland','PL','Dziwnowek (Poland)',1,1,0),(17137,0,117052,'Eagle Creek','Canada','CA','Eagle Creek (Canada)',1,1,0),(17138,0,117053,'Eaglescliffe','United Kingdom','UK','Eaglescliffe (United Kingdom)',1,1,0),(17139,30826,117054,'East Lansing','United States of America','US','East Lansing (United States of America)',1,1,0),(17140,30828,117055,'East Liverpool','United States of America','US','East Liverpool (United States of America)',1,1,0),(17141,0,117056,'East Norriton','United States of America','US','East Norriton (United States of America)',1,1,0),(17142,0,117057,'Eastbourne','United Kingdom','UK','Eastbourne (United Kingdom)',1,1,0),(17143,0,117058,'Eastern Cape','South Africa','ZA','Eastern Cape (South Africa)',1,1,0),(17144,8442,117059,'Eastlake','United States of America','US','Eastlake (United States of America)',1,1,0),(17145,0,117060,'Eastport','Canada','CA','Eastport (Canada)',1,1,0),(17146,8451,117061,'Eatonton','United States of America','US','Eatonton (United States of America)',1,1,0),(17147,0,117062,'Eberau','Austria','AT','Eberau (Austria)',1,1,0),(17148,0,117063,'Ebermannstadt','Germany','DE','Ebermannstadt (Germany)',1,1,0),(17149,0,117064,'Ebersbach','Germany','DE','Ebersbach (Germany)',1,1,0),(17150,8498,117065,'Eden','United States of America','US','Eden (United States of America)',1,1,0),(17151,0,117066,'Edertal-Hemfurth','Germany','DE','Edertal-Hemfurth (Germany)',1,1,0),(17152,0,117067,'Edinburgh','United States of America','US','Edinburgh (United States of America)',1,1,0),(17153,0,117068,'Edlbach','Austria','AT','Edlbach (Austria)',1,1,0),(17154,8526,117069,'Edmonds','United States of America','US','Edmonds (United States of America)',1,1,0),(17155,8531,117070,'Edmundston','Canada','CA','Edmundston (Canada)',1,1,0),(17156,8539,117071,'Edwardsville','United States of America','US','Edwardsville (United States of America)',1,1,0),(17157,0,117072,'Eforie Nord','Romania','RO','Eforie Nord (Romania)',1,1,0),(17158,8551,117073,'Egestorf','Germany','DE','Egestorf (Germany)',1,1,0),(17159,0,117074,'Egg Harbor','United States of America','US','Egg Harbor (United States of America)',1,1,0),(17160,0,117075,'Egg Harbor Township','United States of America','US','Egg Harbor Township (United States of America)',1,1,0),(17161,8553,117076,'Eggolsheim','Germany','DE','Eggolsheim (Germany)',1,1,0),(17162,8558,117077,'Egling','Germany','DE','Egling (Germany)',1,1,0),(17163,8559,117078,'Eglisau','Switzerland','CH','Eglisau (Switzerland)',1,1,0),(17164,0,117079,'Egliseneuve-d\'Entraigues','France','FR','Egliseneuve-d\'Entraigues (France)',1,1,0),(17165,8561,117080,'Egmont','Canada','CA','Egmont (Canada)',1,1,0),(17166,0,117081,'Egnach','Switzerland','CH','Egnach (Switzerland)',1,1,0),(17167,0,117082,'Eichberg-Trautenburg','Austria','AT','Eichberg-Trautenburg (Austria)',1,1,0),(17168,0,117083,'Eiselfing','Germany','DE','Eiselfing (Germany)',1,1,0),(17169,8596,117084,'Eisenerz','Austria','AT','Eisenerz (Austria)',1,1,0),(17170,0,117085,'Eisenhuttenstadt','Germany','DE','Eisenhuttenstadt (Germany)',1,1,0),(17171,0,117086,'Eisenkappel','Austria','AT','Eisenkappel (Austria)',1,1,0),(17172,0,117087,'El Arish','Egypt','EG','El Arish (Egypt)',1,1,0),(17173,30870,117088,'El Berron','Spain','ES','El Berron (Spain)',1,1,0),(17174,0,117089,'El Campillo de Rodalquilar','Spain','ES','El Campillo de Rodalquilar (Spain)',1,1,0),(17175,30880,117090,'El Centro','United States of America','US','El Centro (United States of America)',1,1,0),(17176,30892,117091,'El Ferrol','Spain','ES','El Ferrol (Spain)',1,1,0),(17177,0,117092,'El Golfo','Spain','ES','El Golfo (Spain)',1,1,0),(17178,30904,117093,'El Molar','Spain','ES','El Molar (Spain)',1,1,0),(17179,30906,117094,'El Monte','United States of America','US','El Monte (United States of America)',1,1,0),(17180,0,117095,'El Oued','Algeria','DZ','El Oued (Algeria)',1,1,0),(17181,0,117096,'El Paso','Spain','ES','El Paso (Spain)',1,1,0),(17182,30910,117097,'El Paso','United States of America','US','El Paso (United States of America)',1,1,0),(17183,0,117098,'El Provencio','Spain','ES','El Provencio (Spain)',1,1,0),(17184,30921,117099,'El Puig','Spain','ES','El Puig (Spain)',1,1,0),(17185,0,117100,'El Roque','Spain','ES','El Roque (Spain)',1,1,0),(17186,0,117101,'El Seibo','Dominican Republic','DO','El Seibo (Dominican Republic)',1,1,0),(17187,8635,117102,'Elenite','Bulgaria','BG','Elenite (Bulgaria)',1,1,0),(17188,8650,117103,'Eliot','United States of America','US','Eliot (United States of America)',1,1,0),(17189,0,117104,'Elizabeth','United States of America','US','Elizabeth (United States of America)',1,1,0),(17190,0,117105,'Elizabeth City','United States of America','US','Elizabeth City (United States of America)',1,1,0),(17191,0,117106,'Elk City','United States of America','US','Elk City (United States of America)',1,1,0),(17192,0,117107,'Eckental','Germany','DE','Eckental (Germany)',1,1,0),(17193,8487,117108,'Eckero','Finland','FI','Eckero (Finland)',1,1,0),(17194,0,117109,'Eckington','United Kingdom','UK','Eckington (United Kingdom)',1,1,0),(17195,0,117111,'Edelschrott','Austria','AT','Edelschrott (Austria)',1,1,0),(17196,8497,117112,'Eden','Australia','AU','Eden (Australia)',1,1,0),(17197,8523,117113,'Edison','United States of America','US','Edison (United States of America)',1,1,0),(17198,0,117114,'Eerwah Vale','Australia','AU','Eerwah Vale (Australia)',1,1,0),(17199,0,117115,'Ees','Netherlands','NL','Ees (Netherlands)',1,1,0),(17200,0,117116,'Eferding','Austria','AT','Eferding (Austria)',1,1,0),(17201,8543,117117,'Effingham','United States of America','US','Effingham (United States of America)',1,1,0),(17202,0,117118,'Eforie Sud','Romania','RO','Eforie Sud (Romania)',1,1,0),(17203,0,117119,'Eggen','Italy','IT','Eggen (Italy)',1,1,0),(17204,0,117120,'Eggstedt','Germany','DE','Eggstedt (Germany)',1,1,0),(17205,0,117121,'Egio','Greece','GR','Egio (Greece)',1,1,0),(17206,0,117122,'Eibenstock','Germany','DE','Eibenstock (Germany)',1,1,0),(17207,0,117123,'Eichenberg','Austria','AT','Eichenberg (Austria)',1,1,0),(17208,0,117124,'Eichstetten am Kaiserstuhl','Germany','DE','Eichstetten am Kaiserstuhl (Germany)',1,1,0),(17209,0,117125,'Eidenberg','Austria','AT','Eidenberg (Austria)',1,1,0),(17210,0,117126,'Ein Bokek','Israel','IL','Ein Bokek (Israel)',1,1,0),(17211,8591,117127,'Einsiedeln','Switzerland','CH','Einsiedeln (Switzerland)',1,1,0),(17212,0,117128,'Eisbach-Rein','Austria','AT','Eisbach-Rein (Austria)',1,1,0),(17213,0,117129,'Eisenschmitt','Germany','DE','Eisenschmitt (Germany)',1,1,0),(17214,8597,117130,'Eisenstadt','Austria','AT','Eisenstadt (Austria)',1,1,0),(17215,30871,117131,'El Bolson','Argentina','AR','El Bolson (Argentina)',1,1,0),(17216,0,117132,'El Borge','Spain','ES','El Borge (Spain)',1,1,0),(17217,0,117133,'El Castillo','Spain','ES','El Castillo (Spain)',1,1,0),(17218,30890,117134,'El Ejido','Spain','ES','El Ejido (Spain)',1,1,0),(17219,30895,117135,'El Gouna','Egypt','EG','El Gouna (Egypt)',1,1,0),(17220,30900,117136,'El Jadida','Morocco','MA','El Jadida (Morocco)',1,1,0),(17221,0,117137,'El Madronal','Spain','ES','El Madronal (Spain)',1,1,0),(17222,0,117138,'El Pinar','Spain','ES','El Pinar (Spain)',1,1,0),(17223,30916,117139,'El Pont de Suert','Spain','ES','El Pont de Suert (Spain)',1,1,0),(17224,0,117140,'El Sauzal','Spain','ES','El Sauzal (Spain)',1,1,0),(17225,0,117141,'El Tambo','Ecuador','EC','El Tambo (Ecuador)',1,1,0),(17226,0,117142,'El Tiemblo','Spain','ES','El Tiemblo (Spain)',1,1,0),(17227,30936,117143,'El Toro','Spain','ES','El Toro (Spain)',1,1,0),(17228,0,117144,'El Yague (Yaque)','Venezuela','VE','El Yague (Yaque) (Venezuela)',1,1,0),(17229,0,117145,'Elands Bay','South Africa','ZA','Elands Bay (South Africa)',1,1,0),(17230,0,117146,'Elanora','Australia','AU','Elanora (Australia)',1,1,0),(17231,0,117147,'Elbeuf','France','FR','Elbeuf (France)',1,1,0),(17232,0,117148,'Elincourt-Sainte-Marguerite','France','FR','Elincourt-Sainte-Marguerite (France)',1,1,0),(17233,0,117149,'Elk Horn','United States of America','US','Elk Horn (United States of America)',1,1,0),(17234,0,117150,'Elk River','United States of America','US','Elk River (United States of America)',1,1,0),(17235,8669,117151,'Elkview','United States of America','US','Elkview (United States of America)',1,1,0),(17236,0,117152,'Ellenz','Germany','DE','Ellenz (Germany)',1,1,0),(17237,0,117153,'Ellivuori','Finland','FI','Ellivuori (Finland)',1,1,0),(17238,0,117154,'Ellwangen (Jagst)','Germany','DE','Ellwangen (Jagst) (Germany)',1,1,0),(17239,8697,117155,'Elmshorn','Germany','DE','Elmshorn (Germany)',1,1,0),(17240,8714,117156,'Elvas','Portugal','PT','Elvas (Portugal)',1,1,0),(17241,8724,117157,'Embilipitiya','Sri Lanka','LK','Embilipitiya (Sri Lanka)',1,1,0),(17242,8745,117158,'Emmetten','Switzerland','CH','Emmetten (Switzerland)',1,1,0),(17243,0,117159,'Emmingen-Liptingen','Germany','DE','Emmingen-Liptingen (Germany)',1,1,0),(17244,8750,117160,'Empfingen','Germany','DE','Empfingen (Germany)',1,1,0),(17245,8753,117161,'Empoli','Italy','IT','Empoli (Italy)',1,1,0),(17246,0,117162,'Emsworth','United Kingdom','UK','Emsworth (United Kingdom)',1,1,0),(17247,8762,117163,'Encinitas','United States of America','US','Encinitas (United States of America)',1,1,0),(17248,8768,117164,'Endwell','United States of America','US','Endwell (United States of America)',1,1,0),(17249,0,117165,'Engelhartszell','Austria','AT','Engelhartszell (Austria)',1,1,0),(17250,0,117166,'Enkirch','Germany','DE','Enkirch (Germany)',1,1,0),(17251,0,117167,'Ennerdale and Kinniside','United Kingdom','UK','Ennerdale and Kinniside (United Kingdom)',1,1,0),(17252,0,117168,'Enniskillen','United Kingdom','UK','Enniskillen (United Kingdom)',1,1,0),(17253,8805,117169,'Ennistymon','Ireland','IE','Ennistymon (Ireland)',1,1,0),(17254,8808,117170,'Enola','United States of America','US','Enola (United States of America)',1,1,0),(17255,8813,117171,'Enskede','Sweden','SE','Enskede (Sweden)',1,1,0),(17256,0,117172,'Epaignes','France','FR','Epaignes (France)',1,1,0),(17257,0,117173,'Eppingen','Germany','DE','Eppingen (Germany)',1,1,0),(17258,0,117174,'Equiterme','Italy','IT','Equiterme (Italy)',1,1,0),(17259,0,117175,'Erbree','France','FR','Erbree (France)',1,1,0),(17260,8858,117176,'Ercolano','Italy','IT','Ercolano (Italy)',1,1,0),(17261,8863,117177,'Erding','Germany','DE','Erding (Germany)',1,1,0),(17262,8869,117178,'Eretria','Greece','GR','Eretria (Greece)',1,1,0),(17263,0,117179,'Ergisch','Switzerland','CH','Ergisch (Switzerland)',1,1,0),(17264,8881,117180,'Erlabrunn','Germany','DE','Erlabrunn (Germany)',1,1,0),(17265,8887,117181,'Ermelo','Netherlands','NL','Ermelo (Netherlands)',1,1,0),(17266,8886,117182,'Ermelo','South Africa','ZA','Ermelo (South Africa)',1,1,0),(17267,0,117183,'Erpendorf','Austria','AT','Erpendorf (Austria)',1,1,0),(17268,8902,117184,'Erwin','United States of America','US','Erwin (United States of America)',1,1,0),(17269,8905,117185,'Erzincan','Turkey','TR','Erzincan (Turkey)',1,1,0),(17270,8906,117186,'Erzurum','Turkey','TR','Erzurum (Turkey)',1,1,0),(17271,0,117187,'Es Carritxo','Spain','ES','Es Carritxo (Spain)',1,1,0),(17272,30953,117188,'Es Pujols','Spain','ES','Es Pujols (Spain)',1,1,0),(17273,8907,117189,'Esbjerg','Denmark','DK','Esbjerg (Denmark)',1,1,0),(17274,0,117190,'Escalles','France','FR','Escalles (France)',1,1,0),(17275,0,117191,'Eschbach-au-Val','France','FR','Eschbach-au-Val (France)',1,1,0),(17276,0,117192,'Eschen','Liechtenstein','LI','Eschen (Liechtenstein)',1,1,0),(17277,8923,117193,'Eschweiler','Germany','DE','Eschweiler (Germany)',1,1,0),(17278,8927,117194,'Escunhau','Spain','ES','Escunhau (Spain)',1,1,0),(17279,0,117195,'Esens-Bensersiel','Germany','DE','Esens-Bensersiel (Germany)',1,1,0),(17280,0,117196,'Eskifjor?ur','Iceland','IS','Eskifjor?ur (Iceland)',1,1,0),(17281,0,117197,'Eslohe','Germany','DE','Eslohe (Germany)',1,1,0),(17282,8946,117198,'Esperance','Australia','AU','Esperance (Australia)',1,1,0),(17283,8959,117199,'Esquipulas','Guatemala','GT','Esquipulas (Guatemala)',1,1,0),(17284,8978,117200,'Estamariu','Spain','ES','Estamariu (Spain)',1,1,0),(17285,8984,117201,'Estepona','Spain','ES','Estepona (Spain)',1,1,0),(17286,8985,117202,'Esterel','Canada','CA','Esterel (Canada)',1,1,0),(17287,8989,117203,'Esterri d\'Aneu','Spain','ES','Esterri d\'Aneu (Spain)',1,1,0),(17288,0,117204,'Esterwegen','Germany','DE','Esterwegen (Germany)',1,1,0),(17289,0,117205,'Estipouy','France','FR','Estipouy (France)',1,1,0),(17290,0,117206,'Etang Sale les Bains','Reunion','RE','Etang Sale les Bains (Reunion)',1,1,0),(17291,0,117207,'Eton','United Kingdom','UK','Eton (United Kingdom)',1,1,0),(17292,0,117208,'Ettringen','Germany','DE','Ettringen (Germany)',1,1,0),(17293,0,117209,'Eugi','Spain','ES','Eugi (Spain)',1,1,0),(17294,0,117210,'Eulalia de Oscos','Spain','ES','Eulalia de Oscos (Spain)',1,1,0),(17295,9038,117211,'Eungella','Australia','AU','Eungella (Australia)',1,1,0),(17296,9040,117212,'Eupen','Belgium','BE','Eupen (Belgium)',1,1,0),(17297,0,117213,'Eu?erthal','Germany','DE','Eu?erthal (Germany)',1,1,0),(17298,0,117214,'Exebridge','United Kingdom','UK','Exebridge (United Kingdom)',1,1,0),(17299,0,117215,'Exmoor National Park','United Kingdom','UK','Exmoor National Park (United Kingdom)',1,1,0),(17300,9086,117216,'Exmore','United States of America','US','Exmore (United States of America)',1,1,0),(17301,0,117217,'Exopoli','Greece','GR','Exopoli (Greece)',1,1,0),(17302,9091,117218,'Exton','United States of America','US','Exton (United States of America)',1,1,0),(17303,0,117219,'Ellis','United States of America','US','Ellis (United States of America)',1,1,0),(17304,8696,117220,'Elmira','United States of America','US','Elmira (United States of America)',1,1,0),(17305,0,117221,'Elterlein','Germany','DE','Elterlein (Germany)',1,1,0),(17306,8717,117222,'Elverum','Norway','NO','Elverum (Norway)',1,1,0),(17307,0,117223,'Elze','Germany','DE','Elze (Germany)',1,1,0),(17308,0,117224,'Embu','Brazil','BR','Embu (Brazil)',1,1,0),(17309,8731,117225,'Emeishan','China','CN','Emeishan (China)',1,1,0),(17310,0,117226,'Emlichheim','Germany','DE','Emlichheim (Germany)',1,1,0),(17311,8738,117227,'Emmaboda','Sweden','SE','Emmaboda (Sweden)',1,1,0),(17312,0,117228,'Emmerich am Rhein','Germany','DE','Emmerich am Rhein (Germany)',1,1,0),(17313,8742,117229,'Emmerin','France','FR','Emmerin (France)',1,1,0),(17314,8743,117230,'Emmersdorf','Austria','AT','Emmersdorf (Austria)',1,1,0),(17315,8748,117231,'Empangeni','South Africa','ZA','Empangeni (South Africa)',1,1,0),(17316,0,117232,'Emporio','Greece','GR','Emporio (Greece)',1,1,0),(17317,0,117233,'Emsdetten','Germany','DE','Emsdetten (Germany)',1,1,0),(17318,0,117234,'Emsetal','Germany','DE','Emsetal (Germany)',1,1,0),(17319,8765,117235,'Enderby','Canada','CA','Enderby (Canada)',1,1,0),(17320,8778,117236,'Engelberg','Switzerland','CH','Engelberg (Switzerland)',1,1,0),(17321,8809,117237,'Enontekio','Finland','FI','Enontekio (Finland)',1,1,0),(17322,8812,117238,'Enshi','China','CN','Enshi (China)',1,1,0),(17323,8817,117239,'Entebbe','Uganda','UG','Entebbe (Uganda)',1,1,0),(17324,0,117240,'Enter','Netherlands','NL','Enter (Netherlands)',1,1,0),(17325,0,117241,'Enugu','Nigeria','NG','Enugu (Nigeria)',1,1,0),(17326,8826,117242,'Enval','France','FR','Enval (France)',1,1,0),(17327,8837,117243,'Epinay-sur-Orge','France','FR','Epinay-sur-Orge (France)',1,1,0),(17328,0,117244,'Erbendorf','Germany','DE','Erbendorf (Germany)',1,1,0),(17329,0,117245,'Ergli','Latvia','LV','Ergli (Latvia)',1,1,0),(17330,0,117246,'Eristos','Greece','GR','Eristos (Greece)',1,1,0),(17331,0,117247,'Erlenbach','Germany','DE','Erlenbach (Germany)',1,1,0),(17332,0,117248,'Ermesinde','Portugal','PT','Ermesinde (Portugal)',1,1,0),(17333,0,117249,'Erpeldange','Luxembourg','LU','Erpeldange (Luxembourg)',1,1,0),(17334,0,117250,'Erzbach','Germany','DE','Erzbach (Germany)',1,1,0),(17335,0,117251,'Eschenlohe','Germany','DE','Eschenlohe (Germany)',1,1,0),(17336,8919,117252,'Eschenz','Switzerland','CH','Eschenz (Switzerland)',1,1,0),(17337,0,117253,'Eslohe-Oesterberge','Germany','DE','Eslohe-Oesterberge (Germany)',1,1,0),(17338,8942,117254,'Espanola','United States of America','US','Espanola (United States of America)',1,1,0),(17339,0,117255,'Espargos','Cape Verde','CV','Espargos (Cape Verde)',1,1,0),(17340,0,117256,'Esposende','Spain','ES','Esposende (Spain)',1,1,0),(17341,8963,117257,'Esselbach','Germany','DE','Esselbach (Germany)',1,1,0),(17342,8964,117258,'Essen','Germany','DE','Essen (Germany)',1,1,0),(17343,0,117259,'Essen','Belgium','BE','Essen (Belgium)',1,1,0),(17344,0,117260,'Esslingen am Neckar','Germany','DE','Esslingen am Neckar (Germany)',1,1,0),(17345,8974,117261,'Essomes-sur-Marne','France','FR','Essomes-sur-Marne (France)',1,1,0),(17346,0,117262,'Esteio','Brazil','BR','Esteio (Brazil)',1,1,0),(17347,0,117263,'Esterillos','Costa Rica','CR','Esterillos (Costa Rica)',1,1,0),(17348,0,117264,'Esterzili','Italy','IT','Esterzili (Italy)',1,1,0),(17349,9003,117265,'Etaples','France','FR','Etaples (France)',1,1,0),(17350,0,117266,'Etauliers','France','FR','Etauliers (France)',1,1,0),(17351,0,117267,'Etmi?l','Austria','AT','Etmi?l (Austria)',1,1,0),(17352,9018,117268,'Etretat','France','FR','Etretat (France)',1,1,0),(17353,9019,117269,'Etroubles','Italy','IT','Etroubles (Italy)',1,1,0),(17354,9020,117270,'Ettalong','Australia','AU','Ettalong (Australia)',1,1,0),(17355,9025,117271,'Ettlingen','Germany','DE','Ettlingen (Germany)',1,1,0),(17356,0,117272,'Ettringen (Eifel)','Germany','DE','Ettringen (Eifel) (Germany)',1,1,0),(17357,0,117273,'Etxebarria','Spain','ES','Etxebarria (Spain)',1,1,0),(17358,9036,117274,'Euless','United States of America','US','Euless (United States of America)',1,1,0),(17359,0,117275,'Euxton','United Kingdom','UK','Euxton (United Kingdom)',1,1,0),(17360,9057,117276,'Eveleth','United States of America','US','Eveleth (United States of America)',1,1,0),(17361,9063,117277,'Evergreen','United States of America','US','Evergreen (United States of America)',1,1,0),(17362,9071,117278,'Evora','Portugal','PT','Evora (Portugal)',1,1,0),(17363,0,117279,'Eze-sur-Mer','France','FR','Eze-sur-Mer (France)',1,1,0),(17364,9110,117280,'Faafu Atoll','Maldives','MV','Faafu Atoll (Maldives)',1,1,0),(17365,0,117281,'Faaker Lake','Austria','AT','Faaker Lake (Austria)',1,1,0),(17366,0,117282,'Faget','Romania','RO','Faget (Romania)',1,1,0),(17367,0,117283,'Fagnon','France','FR','Fagnon (France)',1,1,0),(17368,0,117284,'Faha','Ireland','IE','Faha (Ireland)',1,1,0),(17369,0,117285,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17370,9161,117286,'Fajardo','Puerto Rico','PR','Fajardo (Puerto Rico)',1,1,0),(17371,9163,117287,'Fakarava','French Polynesia','PF','Fakarava (French Polynesia)',1,1,0),(17372,0,117288,'Falkau','Germany','DE','Falkau (Germany)',1,1,0),(17373,9180,117289,'Falkenberg','Germany','DE','Falkenberg (Germany)',1,1,0),(17374,0,117290,'Fall River','Canada','CA','Fall River (Canada)',1,1,0),(17375,0,117291,'Fallersleben','Germany','DE','Fallersleben (Germany)',1,1,0),(17376,0,117292,'Fallon','United States of America','US','Fallon (United States of America)',1,1,0),(17377,0,117293,'Fano Island','Denmark','DK','Fano Island (Denmark)',1,1,0),(17378,9227,117294,'Faribault','United States of America','US','Faribault (United States of America)',1,1,0),(17379,9231,117295,'Farmers Branch','United States of America','US','Farmers Branch (United States of America)',1,1,0),(17380,0,117296,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(17381,0,117297,'Farneta','Italy','IT','Farneta (Italy)',1,1,0),(17382,0,117298,'Farra d\'Alpago','Italy','IT','Farra d\'Alpago (Italy)',1,1,0),(17383,9255,117299,'Farsund','Norway','NO','Farsund (Norway)',1,1,0),(17384,9264,117300,'Faulensee','Switzerland','CH','Faulensee (Switzerland)',1,1,0),(17385,9271,117301,'Favaro Veneto','Italy','IT','Favaro Veneto (Italy)',1,1,0),(17386,0,117302,'Favone','France','FR','Favone (France)',1,1,0),(17387,9280,117303,'Fawnskin','United States of America','US','Fawnskin (United States of America)',1,1,0),(17388,0,117304,'Fayaoue','New Caledonia','NC','Fayaoue (New Caledonia)',1,1,0),(17389,0,117305,'Fayette','United States of America','US','Fayette (United States of America)',1,1,0),(17390,0,117306,'Feasterville-Trevose','United States of America','US','Feasterville-Trevose (United States of America)',1,1,0),(17391,9286,117307,'Featherston','New Zealand','NZ','Featherston (New Zealand)',1,1,0),(17392,9295,117308,'Fehmarn','Germany','DE','Fehmarn (Germany)',1,1,0),(17393,0,117309,'Feicheng','China','CN','Feicheng (China)',1,1,0),(17394,0,117310,'Feldis','Switzerland','CH','Feldis (Switzerland)',1,1,0),(17395,0,117311,'Felicite','Seychelles','SC','Felicite (Seychelles)',1,1,0),(17396,9322,117312,'Fenghua','China','CN','Fenghua (China)',1,1,0),(17397,9323,117313,'Fenghuang','China','CN','Fenghuang (China)',1,1,0),(17398,9336,117314,'Fere-en-Tardenois','France','FR','Fere-en-Tardenois (France)',1,1,0),(17399,0,117315,'Fernando de Noronha Island','Brazil','BR','Fernando de Noronha Island (Brazil)',1,1,0),(17400,9360,117316,'Fernley','United States of America','US','Fernley (United States of America)',1,1,0),(17401,9378,117317,'Festus','United States of America','US','Festus (United States of America)',1,1,0),(17402,0,117318,'Feucht','Germany','DE','Feucht (Germany)',1,1,0),(17403,0,117319,'Fevik','Norway','NO','Fevik (Norway)',1,1,0),(17404,9387,117320,'Feytiat','France','FR','Feytiat (France)',1,1,0),(17405,0,117321,'Fiascherino-Lerici','Italy','IT','Fiascherino-Lerici (Italy)',1,1,0),(17406,9400,117322,'Fiesso D\'Artico','Italy','IT','Fiesso D\'Artico (Italy)',1,1,0),(17407,0,117323,'Fife','United Kingdom','UK','Fife (United Kingdom)',1,1,0),(17408,9406,117324,'Figeac','France','FR','Figeac (France)',1,1,0),(17409,0,117325,'Filadelfia','Italy','IT','Filadelfia (Italy)',1,1,0),(17410,9417,117326,'Fillmore','United States of America','US','Fillmore (United States of America)',1,1,0),(17411,0,117327,'Filottrano','Italy','IT','Filottrano (Italy)',1,1,0),(17412,9441,117328,'Finkenstein','Austria','AT','Finkenstein (Austria)',1,1,0),(17413,30765,117329,'Del Norte','United States of America','US','Del Norte (United States of America)',1,1,0),(17414,30766,117330,'Del Rio','United States of America','US','Del Rio (United States of America)',1,1,0),(17415,7695,117331,'Delbruck','Germany','DE','Delbruck (Germany)',1,1,0),(17416,7706,117332,'Delitzsch','Germany','DE','Delitzsch (Germany)',1,1,0),(17417,0,117333,'Demern','Germany','DE','Demern (Germany)',1,1,0),(17418,7723,117334,'Deming','United States of America','US','Deming (United States of America)',1,1,0),(17419,30769,117335,'Den Burg','Netherlands','NL','Den Burg (Netherlands)',1,1,0),(17420,7727,117336,'Denali','United States of America','US','Denali (United States of America)',1,1,0),(17421,7734,117337,'Denham Springs','United States of America','US','Denham Springs (United States of America)',1,1,0),(17422,7735,117338,'Denia','Spain','ES','Denia (Spain)',1,1,0),(17423,0,117339,'Denkendorf','Germany','DE','Denkendorf (Germany)',1,1,0),(17424,0,117340,'Denver','United States of America','US','Denver (United States of America)',1,1,0),(17425,7749,117341,'Denville','United States of America','US','Denville (United States of America)',1,1,0),(17426,0,117342,'Denzlingen','Germany','DE','Denzlingen (Germany)',1,1,0),(17427,7752,117343,'Depoe Bay','United States of America','US','Depoe Bay (United States of America)',1,1,0),(17428,7753,117344,'Depok','Indonesia','ID','Depok (Indonesia)',1,1,0),(17429,0,117345,'Des Plaines','United States of America','US','Des Plaines (United States of America)',1,1,0),(17430,0,117346,'Deschambault','Canada','CA','Deschambault (Canada)',1,1,0),(17431,7783,117347,'DeSoto','United States of America','US','DeSoto (United States of America)',1,1,0),(17432,7786,117348,'Dessau','Germany','DE','Dessau (Germany)',1,1,0),(17433,0,117349,'Detenice','Czech Republic','CZ','Detenice (Czech Republic)',1,1,0),(17434,0,117350,'Detroit - Dearborn','United States of America','US','Detroit - Dearborn (United States of America)',1,1,0),(17435,7799,117351,'Deva','Romania','RO','Deva (Romania)',1,1,0),(17436,7805,117353,'Devils Lake','United States of America','US','Devils Lake (United States of America)',1,1,0),(17437,7817,117354,'Deyang','China','CN','Deyang (China)',1,1,0),(17438,7830,117355,'Dhigufinolhu','Maldives','MV','Dhigufinolhu (Maldives)',1,1,0),(17439,0,117356,'Dhour El Choueir','Lebanon','LB','Dhour El Choueir (Lebanon)',1,1,0),(17440,7835,117357,'Dhulikhel','Nepal','NP','Dhulikhel (Nepal)',1,1,0),(17441,7838,117358,'Diakofti','Greece','GR','Diakofti (Greece)',1,1,0),(17442,7840,117359,'Diamante','Italy','IT','Diamante (Italy)',1,1,0),(17443,0,117360,'Dian Bay','Antigua & Barbuda','AG','Dian Bay (Antigua & Barbuda)',1,1,0),(17444,0,117361,'Diano Castello','Italy','IT','Diano Castello (Italy)',1,1,0),(17445,0,117362,'Diekirch','Luxembourg','LU','Diekirch (Luxembourg)',1,1,0),(17446,0,117363,'Diesbar-Seu?litz','Germany','DE','Diesbar-Seu?litz (Germany)',1,1,0),(17447,0,117364,'Dietachdorf','Austria','AT','Dietachdorf (Austria)',1,1,0),(17448,0,117365,'Dietenhofen','Germany','DE','Dietenhofen (Germany)',1,1,0),(17449,7885,117366,'Diezma','Spain','ES','Diezma (Spain)',1,1,0),(17450,7898,117367,'Dilar','Spain','ES','Dilar (Spain)',1,1,0),(17451,0,117368,'Dillingen an der Donau','Germany','DE','Dillingen an der Donau (Germany)',1,1,0),(17452,7909,117369,'Dillsburg','United States of America','US','Dillsburg (United States of America)',1,1,0),(17453,7916,117370,'Dinan','France','FR','Dinan (France)',1,1,0),(17454,7918,117371,'Dinard','France','FR','Dinard (France)',1,1,0),(17455,7924,117372,'Dinkelsbuhl','Germany','DE','Dinkelsbuhl (Germany)',1,1,0),(17456,7928,117373,'Dinslaken','Germany','DE','Dinslaken (Germany)',1,1,0),(17457,7929,117374,'Dinuba','United States of America','US','Dinuba (United States of America)',1,1,0),(17458,7932,117375,'Dippoldiswalde','Germany','DE','Dippoldiswalde (Germany)',1,1,0),(17459,7958,117376,'Dix','United States of America','US','Dix (United States of America)',1,1,0),(17460,0,117377,'Dobel','Germany','DE','Dobel (Germany)',1,1,0),(17461,0,117378,'Dobrani','Croatia','HR','Dobrani (Croatia)',1,1,0),(17462,0,117379,'Doesburg','Netherlands','NL','Doesburg (Netherlands)',1,1,0),(17463,0,117380,'Doksy','Czech Republic','CZ','Doksy (Czech Republic)',1,1,0),(17464,0,117381,'Dolgellau','United Kingdom','UK','Dolgellau (United Kingdom)',1,1,0),(17465,8011,117382,'Dolores','United States of America','US','Dolores (United States of America)',1,1,0),(17466,8021,117383,'Dombas','Norway','NO','Dombas (Norway)',1,1,0),(17467,0,117384,'Dombim','Austria','AT','Dombim (Austria)',1,1,0),(17468,0,117385,'Don Benito','Spain','ES','Don Benito (Spain)',1,1,0),(17469,8041,117386,'Donaustauf','Germany','DE','Donaustauf (Germany)',1,1,0),(17470,8043,117387,'Donauworth','Germany','DE','Donauworth (Germany)',1,1,0),(17471,0,117388,'Dongen','Netherlands','NL','Dongen (Netherlands)',1,1,0),(17472,8058,117389,'Dongyang','China','CN','Dongyang (China)',1,1,0),(17473,0,117390,'Donsol','Philippines','PH','Donsol (Philippines)',1,1,0),(17474,8075,117391,'Doonbeg','Ireland','IE','Doonbeg (Ireland)',1,1,0),(17475,8083,117392,'Doral','United States of America','US','Doral (United States of America)',1,1,0),(17476,8084,117393,'Doraville','United States of America','US','Doraville (United States of America)',1,1,0),(17477,0,117394,'Dorchester','United Kingdom','UK','Dorchester (United Kingdom)',1,1,0),(17478,0,117395,'Doren','Austria','AT','Doren (Austria)',1,1,0),(17479,0,117396,'Dorfen','Germany','DE','Dorfen (Germany)',1,1,0),(17480,8095,117397,'Dornach','Switzerland','CH','Dornach (Switzerland)',1,1,0),(17481,0,117398,'Dornumsiel','Germany','DE','Dornumsiel (Germany)',1,1,0),(17482,8111,117399,'Doswell','United States of America','US','Doswell (United States of America)',1,1,0),(17483,0,117400,'Douains','France','FR','Douains (France)',1,1,0),(17484,8117,117401,'Doucy','France','FR','Doucy (France)',1,1,0),(17485,0,117402,'Douglas','United Kingdom','UK','Douglas (United Kingdom)',1,1,0),(17486,0,117403,'Douglas','United States of America','US','Douglas (United States of America)',1,1,0),(17487,0,117404,'Douliana','Greece','GR','Douliana (Greece)',1,1,0),(17488,0,117405,'Dourados','Brazil','BR','Dourados (Brazil)',1,1,0),(17489,8126,117406,'Dourdan','France','FR','Dourdan (France)',1,1,0),(17490,0,117407,'Dover','United States of America','US','Dover (United States of America)',1,1,0),(17491,0,117408,'Drage','Croatia','HR','Drage (Croatia)',1,1,0),(17492,8160,117409,'Drama','Greece','GR','Drama (Greece)',1,1,0),(17493,8171,117410,'Drees','Germany','DE','Drees (Germany)',1,1,0),(17494,0,117411,'Dreis-Bruck','Germany','DE','Dreis-Bruck (Germany)',1,1,0),(17495,0,117412,'Drensteinfurt','Germany','DE','Drensteinfurt (Germany)',1,1,0),(17496,8176,117413,'Drepano','Greece','GR','Drepano (Greece)',1,1,0),(17497,0,117414,'Driffield','United Kingdom','UK','Driffield (United Kingdom)',1,1,0),(17498,0,117415,'Drinovci','Croatia','HR','Drinovci (Croatia)',1,1,0),(17499,0,117416,'Drobeta Turnu Severin','Romania','RO','Drobeta Turnu Severin (Romania)',1,1,0),(17500,8189,117417,'Drogheda','Ireland','IE','Drogheda (Ireland)',1,1,0),(17501,8195,117418,'Dronero','Italy','IT','Dronero (Italy)',1,1,0),(17502,0,117419,'Dronten','Netherlands','NL','Dronten (Netherlands)',1,1,0),(17503,0,117420,'Drosedow','Germany','DE','Drosedow (Germany)',1,1,0),(17504,8212,117421,'Dry Ridge','United States of America','US','Dry Ridge (United States of America)',1,1,0),(17505,0,117422,'Dubenec u Dvora Kralove nad Labem','Czech Republic','CZ','Dubenec u Dvora Kralove nad Labem (Czech Republic)',1,1,0),(17506,0,117423,'Dubois','United States of America','US','Dubois (United States of America)',1,1,0),(17507,0,117424,'Duce Glavica','Croatia','HR','Duce Glavica (Croatia)',1,1,0),(17508,0,117425,'Dudenhofen','Germany','DE','Dudenhofen (Germany)',1,1,0),(17509,0,117426,'Duillier','Switzerland','CH','Duillier (Switzerland)',1,1,0),(17510,0,117427,'Duingen','Germany','DE','Duingen (Germany)',1,1,0),(17511,0,117428,'Duluth','United States of America','US','Duluth (United States of America)',1,1,0),(17512,8271,117429,'Dumai','Indonesia','ID','Dumai (Indonesia)',1,1,0),(17513,8330,117430,'Dunnigan','United States of America','US','Dunnigan (United States of America)',1,1,0),(17514,0,117431,'Duns','United Kingdom','UK','Duns (United Kingdom)',1,1,0),(17515,0,117432,'Dun-sur-Meuse','France','FR','Dun-sur-Meuse (France)',1,1,0),(17516,0,117433,'Durant','United States of America','US','Durant (United States of America)',1,1,0),(17517,0,117434,'Durbanville','South Africa','ZA','Durbanville (South Africa)',1,1,0),(17518,0,117435,'Durdevac','Croatia','HR','Durdevac (Croatia)',1,1,0),(17519,8365,117436,'Durnstein','Austria','AT','Durnstein (Austria)',1,1,0),(17520,0,117437,'Dykehead','United Kingdom','UK','Dykehead (United Kingdom)',1,1,0),(17521,0,117438,'Earnscleugh','New Zealand','NZ','Earnscleugh (New Zealand)',1,1,0),(17522,30794,117439,'East Brunswick','United States of America','US','East Brunswick (United States of America)',1,1,0),(17523,30820,117440,'East Haven','United States of America','US','East Haven (United States of America)',1,1,0),(17524,0,117441,'East London','South Africa','ZA','East London (South Africa)',1,1,0),(17525,30845,117442,'East Ridge','United States of America','US','East Ridge (United States of America)',1,1,0),(17526,30846,117443,'East Rutherford','United States of America','US','East Rutherford (United States of America)',1,1,0),(17527,0,117444,'El Gordo','Spain','ES','El Gordo (Spain)',1,1,0),(17528,0,117445,'El Kef','Tunisia','TN','El Kef (Tunisia)',1,1,0),(17529,0,117446,'El Poblenou del Delta','Spain','ES','El Poblenou del Delta (Spain)',1,1,0),(17530,0,117447,'Elbingerode','Germany','DE','Elbingerode (Germany)',1,1,0),(17531,0,117448,'Elchingen','Germany','DE','Elchingen (Germany)',1,1,0),(17532,8624,117449,'Elciego','Spain','ES','Elciego (Spain)',1,1,0),(17533,8640,117450,'Elfershausen','Germany','DE','Elfershausen (Germany)',1,1,0),(17534,0,117451,'Elgin','United States of America','US','Elgin (United States of America)',1,1,0),(17535,0,117452,'Elia Nikiti / Nikiti','Greece','GR','Elia Nikiti / Nikiti (Greece)',1,1,0),(17536,8656,117453,'Elizabethtown','United States of America','US','Elizabethtown (United States of America)',1,1,0),(17537,0,117454,'Elk','United States of America','US','Elk (United States of America)',1,1,0),(17538,0,117455,'Elkhart Lake','United States of America','US','Elkhart Lake (United States of America)',1,1,0),(17539,0,117456,'Elkhorn','United States of America','US','Elkhorn (United States of America)',1,1,0),(17540,8673,117457,'Ellensburg','United States of America','US','Ellensburg (United States of America)',1,1,0),(17541,8674,117458,'Ellenton','United States of America','US','Ellenton (United States of America)',1,1,0),(17542,0,117459,'Ellesmere Port','United Kingdom','UK','Ellesmere Port (United Kingdom)',1,1,0),(17543,8685,117460,'Ellisras','South Africa','ZA','Ellisras (South Africa)',1,1,0),(17544,8687,117461,'Ellmau','Austria','AT','Ellmau (Austria)',1,1,0),(17545,0,117462,'Ellon','United Kingdom','UK','Ellon (United Kingdom)',1,1,0),(17546,0,117463,'Elmenhorst','Germany','DE','Elmenhorst (Germany)',1,1,0),(17547,8694,117464,'Elmhurst','United States of America','US','Elmhurst (United States of America)',1,1,0),(17548,8698,117465,'Elmwood Park','United States of America','US','Elmwood Park (United States of America)',1,1,0),(17549,8704,117466,'Elsbethen','Austria','AT','Elsbethen (Austria)',1,1,0),(17550,0,117467,'Elstree','United Kingdom','UK','Elstree (United Kingdom)',1,1,0),(17551,0,117468,'Ely','United Kingdom','UK','Ely (United Kingdom)',1,1,0),(17552,8735,117469,'Emeryville','United States of America','US','Emeryville (United States of America)',1,1,0),(17553,8744,117470,'Emmetsburg','United States of America','US','Emmetsburg (United States of America)',1,1,0),(17554,0,117471,'Emsburen','Germany','DE','Emsburen (Germany)',1,1,0),(17555,0,117472,'En Hod','Israel','IL','En Hod (Israel)',1,1,0),(17556,0,117473,'Encumeada','Portugal','PT','Encumeada (Portugal)',1,1,0),(17557,8771,117474,'Enfield','United States of America','US','Enfield (United States of America)',1,1,0),(17558,8779,117475,'Engelsbach','Germany','DE','Engelsbach (Germany)',1,1,0),(17559,0,117476,'Engelskirchen','Germany','DE','Engelskirchen (Germany)',1,1,0),(17560,0,117477,'Engen','Germany','DE','Engen (Germany)',1,1,0),(17561,8783,117478,'Englewood','United States of America','US','Englewood (United States of America)',1,1,0),(17562,0,117479,'Englewood','United States of America','US','Englewood (United States of America)',1,1,0),(17563,0,117480,'Ennepetal','Germany','DE','Ennepetal (Germany)',1,1,0),(17564,0,117481,'Ennery','France','FR','Ennery (France)',1,1,0),(17565,8801,117482,'Enniscrone','Ireland','IE','Enniscrone (Ireland)',1,1,0),(17566,0,117483,'Enterprise','United States of America','US','Enterprise (United States of America)',1,1,0),(17567,8819,117484,'Entraigues-sur-la-Sorgue','France','FR','Entraigues-sur-la-Sorgue (France)',1,1,0),(17568,8830,117485,'Epen','Netherlands','NL','Epen (Netherlands)',1,1,0),(17569,0,117486,'Ephraim','United States of America','US','Ephraim (United States of America)',1,1,0),(17570,8836,117487,'Epinal','France','FR','Epinal (France)',1,1,0),(17571,0,117488,'Eppenbrunn','Germany','DE','Eppenbrunn (Germany)',1,1,0),(17572,0,117489,'Eppstein','Germany','DE','Eppstein (Germany)',1,1,0),(17573,0,117490,'Erba','Italy','IT','Erba (Italy)',1,1,0),(17574,8859,117491,'Erd','Hungary','HU','Erd (Hungary)',1,1,0),(17575,0,117492,'Erden','Germany','DE','Erden (Germany)',1,1,0),(17576,0,117493,'Erdington','United Kingdom','UK','Erdington (United Kingdom)',1,1,0),(17577,0,117494,'Erftstadt','Germany','DE','Erftstadt (Germany)',1,1,0),(17578,0,117495,'Erndtebruck','Germany','DE','Erndtebruck (Germany)',1,1,0),(17579,0,117496,'Erolzheim','Germany','DE','Erolzheim (Germany)',1,1,0),(17580,0,117497,'Erquy','France','FR','Erquy (France)',1,1,0),(17581,8900,117498,'Erstfeld','Switzerland','CH','Erstfeld (Switzerland)',1,1,0),(17582,0,117499,'Ervedal da Beira','Portugal','PT','Ervedal da Beira (Portugal)',1,1,0),(17583,0,117500,'Erzhausen','Germany','DE','Erzhausen (Germany)',1,1,0),(17584,0,117501,'Es Ca Mari','Spain','ES','Es Ca Mari (Spain)',1,1,0),(17585,8910,117502,'Escalante','United States of America','US','Escalante (United States of America)',1,1,0),(17586,0,117503,'Escalona','Spain','ES','Escalona (Spain)',1,1,0),(17587,8918,117504,'Eschborn','Germany','DE','Eschborn (Germany)',1,1,0),(17588,0,117505,'Eschlkam','Germany','DE','Eschlkam (Germany)',1,1,0),(17589,0,117506,'Escholzmatt','Switzerland','CH','Escholzmatt (Switzerland)',1,1,0),(17590,8935,117507,'Eskisehir','Turkey','TR','Eskisehir (Turkey)',1,1,0),(17591,8937,117508,'Eslov','Sweden','SE','Eslov (Sweden)',1,1,0),(17592,8938,117509,'Esmeraldas','Ecuador','EC','Esmeraldas (Ecuador)',1,1,0),(17593,8939,117510,'Esmoriz','Portugal','PT','Esmoriz (Portugal)',1,1,0),(17594,0,117511,'Espadanedo','Portugal','PT','Espadanedo (Portugal)',1,1,0),(17595,0,117512,'Espedalen','Norway','NO','Espedalen (Norway)',1,1,0),(17596,0,117513,'Espiaube','France','FR','Espiaube (France)',1,1,0),(17597,8948,117514,'Espinho','Portugal','PT','Espinho (Portugal)',1,1,0),(17598,8953,117515,'Espoo','Finland','FI','Espoo (Finland)',1,1,0),(17599,8955,117516,'Esposende','Portugal','PT','Esposende (Portugal)',1,1,0),(17600,8961,117517,'Essaouira','Morocco','MA','Essaouira (Morocco)',1,1,0),(17601,8962,117518,'Essel','Germany','DE','Essel (Germany)',1,1,0),(17602,8979,117519,'Estarreja','Portugal','PT','Estarreja (Portugal)',1,1,0),(17603,0,117520,'Este','Italy','IT','Este (Italy)',1,1,0),(17604,0,117521,'Estepa','Spain','ES','Estepa (Spain)',1,1,0),(17605,8990,117522,'Estes Park','United States of America','US','Estes Park (United States of America)',1,1,0),(17606,0,117523,'Estreito da Calheta','Portugal','PT','Estreito da Calheta (Portugal)',1,1,0),(17607,9010,117524,'Etoges','France','FR','Etoges (France)',1,1,0),(17608,0,117525,'Etosha National Park','Namibia','NA','Etosha National Park (Namibia)',1,1,0),(17609,9015,117526,'Etreaupont','France','FR','Etreaupont (France)',1,1,0),(17610,0,117527,'Ettington','United Kingdom','UK','Ettington (United Kingdom)',1,1,0),(17611,30957,117528,'Eu','France','FR','Eu (France)',1,1,0),(17612,9033,117529,'Eugendorf','Austria','AT','Eugendorf (Austria)',1,1,0),(17613,9043,117530,'Eureka','United States of America','US','Eureka (United States of America)',1,1,0),(17614,0,117531,'Eureka','United States of America','US','Eureka (United States of America)',1,1,0),(17615,0,117532,'Eutin','Germany','DE','Eutin (Germany)',1,1,0),(17616,9051,117533,'Evans','United States of America','US','Evans (United States of America)',1,1,0),(17617,9062,117534,'Everglades City','United States of America','US','Everglades City (United States of America)',1,1,0),(17618,0,117535,'Evrenseki','Turkey','TR','Evrenseki (Turkey)',1,1,0),(17619,0,117536,'Excideuil','France','FR','Excideuil (France)',1,1,0),(17620,0,117537,'Extertal-Rott','Germany','DE','Extertal-Rott (Germany)',1,1,0),(17621,9104,117538,'Ezulwini','Swaziland','SZ','Ezulwini (Swaziland)',1,1,0),(17622,9114,117539,'Faborg','Denmark','DK','Faborg (Denmark)',1,1,0),(17623,9115,117540,'Fabregues','France','FR','Fabregues (France)',1,1,0),(17624,9120,117541,'Faervik','Norway','NO','Faervik (Norway)',1,1,0),(17625,0,117542,'Fair Lawn','United States of America','US','Fair Lawn (United States of America)',1,1,0),(17626,0,117543,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17627,0,117544,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17628,9149,117545,'Fairlie','New Zealand','NZ','Fairlie (New Zealand)',1,1,0),(17629,9150,117546,'Fairmont','United States of America','US','Fairmont (United States of America)',1,1,0),(17630,0,117547,'Faistenau','Austria','AT','Faistenau (Austria)',1,1,0),(17631,0,117548,'Falcone','Italy','IT','Falcone (Italy)',1,1,0),(17632,9173,117549,'Faldsled','Denmark','DK','Faldsled (Denmark)',1,1,0),(17633,9176,117550,'Falerna','Italy','IT','Falerna (Italy)',1,1,0),(17634,9178,117551,'Faliraki','Greece','GR','Faliraki (Greece)',1,1,0),(17635,0,117552,'Falkenau','Germany','DE','Falkenau (Germany)',1,1,0),(17636,9179,117553,'Falkenberg','Sweden','SE','Falkenberg (Sweden)',1,1,0),(17637,0,117554,'Falkenhagen','Germany','DE','Falkenhagen (Germany)',1,1,0),(17638,9182,117555,'Falkensee','Germany','DE','Falkensee (Germany)',1,1,0),(17639,0,117556,'Falkland','United Kingdom','UK','Falkland (United Kingdom)',1,1,0),(17640,9008,117557,'Etne','Norway','NO','Etne (Norway)',1,1,0),(17641,9013,117558,'Etowah','United States of America','US','Etowah (United States of America)',1,1,0),(17642,9014,117559,'Etoy','Switzerland','CH','Etoy (Switzerland)',1,1,0),(17643,0,117560,'Ettal','Germany','DE','Ettal (Germany)',1,1,0),(17644,0,117561,'Ettersburg','Germany','DE','Ettersburg (Germany)',1,1,0),(17645,9026,117562,'Etxalar','Spain','ES','Etxalar (Spain)',1,1,0),(17646,0,117563,'Eunapolis','Brazil','BR','Eunapolis (Brazil)',1,1,0),(17647,0,117564,'Eureka','United States of America','US','Eureka (United States of America)',1,1,0),(17648,9053,117565,'Evanston','United States of America','US','Evanston (United States of America)',1,1,0),(17649,9056,117566,'Evart','United States of America','US','Evart (United States of America)',1,1,0),(17650,9070,117567,'Evje','Norway','NO','Evje (Norway)',1,1,0),(17651,0,117568,'Evolene','Switzerland','CH','Evolene (Switzerland)',1,1,0),(17652,9072,117569,'Evreux','France','FR','Evreux (France)',1,1,0),(17653,0,117570,'Excenevex','France','FR','Excenevex (France)',1,1,0),(17654,0,117571,'Exford','United Kingdom','UK','Exford (United Kingdom)',1,1,0),(17655,9084,117572,'Exloo','Netherlands','NL','Exloo (Netherlands)',1,1,0),(17656,0,117573,'Exmouth','United Kingdom','UK','Exmouth (United Kingdom)',1,1,0),(17657,0,117574,'Exohori','Greece','GR','Exohori (Greece)',1,1,0),(17658,9102,117575,'Eysines','France','FR','Eysines (France)',1,1,0),(17659,0,117576,'Fachbach','Germany','DE','Fachbach (Germany)',1,1,0),(17660,9118,117577,'Faedo','Italy','IT','Faedo (Italy)',1,1,0),(17661,9119,117578,'Faenza','Italy','IT','Faenza (Italy)',1,1,0),(17662,9124,117579,'Fagaras','Romania','RO','Fagaras (Romania)',1,1,0),(17663,9125,117580,'Fagernes','Norway','NO','Fagernes (Norway)',1,1,0),(17664,9135,117581,'Fairbanks','United States of America','US','Fairbanks (United States of America)',1,1,0),(17665,0,117582,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17666,0,117583,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17667,0,117584,'Fairfield Glade','United States of America','US','Fairfield Glade (United States of America)',1,1,0),(17668,9146,117585,'Fairhope','United States of America','US','Fairhope (United States of America)',1,1,0),(17669,0,117586,'Fairmont','United States of America','US','Fairmont (United States of America)',1,1,0),(17670,9151,117587,'Fairmont Hot Springs','Canada','CA','Fairmont Hot Springs (Canada)',1,1,0),(17671,9152,117588,'Fairplay','United States of America','US','Fairplay (United States of America)',1,1,0),(17672,9153,117589,'Fairport','United States of America','US','Fairport (United States of America)',1,1,0),(17673,9167,117590,'Falaise','France','FR','Falaise (France)',1,1,0),(17674,0,117591,'Falenty','Poland','PL','Falenty (Poland)',1,1,0),(17675,0,117592,'Falkenstein (Niederosterreich)','Austria','AT','Falkenstein (Niederosterreich) (Austria)',1,1,0),(17676,9191,117593,'Falling Waters','United States of America','US','Falling Waters (United States of America)',1,1,0),(17677,9200,117594,'Falzes','Italy','IT','Falzes (Italy)',1,1,0),(17678,9213,117595,'Fao','Portugal','PT','Fao (Portugal)',1,1,0),(17679,0,117596,'Farafra Oasis','Egypt','EG','Farafra Oasis (Egypt)',1,1,0),(17680,0,117597,'Faraya-Mzaar','Lebanon','LB','Faraya-Mzaar (Lebanon)',1,1,0),(17681,0,117598,'Farchant','Germany','DE','Farchant (Germany)',1,1,0),(17682,0,117599,'Fareham','United Kingdom','UK','Fareham (United Kingdom)',1,1,0),(17683,9226,117600,'Fargo','United States of America','US','Fargo (United States of America)',1,1,0),(17684,0,117601,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(17685,9253,117602,'Farso','Denmark','DK','Farso (Denmark)',1,1,0),(17686,0,117603,'Fa?berg','Germany','DE','Fa?berg (Germany)',1,1,0),(17687,0,117604,'Fataga','Spain','ES','Fataga (Spain)',1,1,0),(17688,9265,117605,'Faulkton','United States of America','US','Faulkton (United States of America)',1,1,0),(17689,0,117606,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(17690,0,117607,'Fearn','United Kingdom','UK','Fearn (United Kingdom)',1,1,0),(17691,0,117608,'Fehmarn-Neue Tiefe','Germany','DE','Fehmarn-Neue Tiefe (Germany)',1,1,0),(17692,0,117609,'Fehrenbach','Germany','DE','Fehrenbach (Germany)',1,1,0),(17693,9303,117610,'Feldkirch','Austria','AT','Feldkirch (Austria)',1,1,0),(17694,9306,117611,'Feldkirchen-Westerham','Germany','DE','Feldkirchen-Westerham (Germany)',1,1,0),(17695,0,117612,'Feltham','United Kingdom','UK','Feltham (United Kingdom)',1,1,0),(17696,0,117613,'Fendels','Austria','AT','Fendels (Austria)',1,1,0),(17697,9328,117614,'Fenton','United States of America','US','Fenton (United States of America)',1,1,0),(17698,0,117615,'Ferdinandshof','Germany','DE','Ferdinandshof (Germany)',1,1,0),(17699,9339,117616,'Fergana','Uzbekistan','UZ','Fergana (Uzbekistan)',1,1,0),(17700,9367,117617,'Ferrieres-en-Brie','France','FR','Ferrieres-en-Brie (France)',1,1,0),(17701,0,117618,'Fetovaia','Italy','IT','Fetovaia (Italy)',1,1,0),(17702,9396,117619,'Fier','Albania','AL','Fier (Albania)',1,1,0),(17703,0,117620,'Fiescheralp','Switzerland','CH','Fiescheralp (Switzerland)',1,1,0),(17704,0,117621,'Filadelfia','Paraguay','PY','Filadelfia (Paraguay)',1,1,0),(17705,0,117622,'Filiatra','Greece','GR','Filiatra (Greece)',1,1,0),(17706,9442,117623,'Finlayson','United States of America','US','Finlayson (United States of America)',1,1,0),(17707,0,117624,'Finsterau','Germany','DE','Finsterau (Germany)',1,1,0),(17708,0,117625,'Fiorenzuola d\'Arda','Italy','IT','Fiorenzuola d\'Arda (Italy)',1,1,0),(17709,0,117626,'Fiorini','Croatia','HR','Fiorini (Croatia)',1,1,0),(17710,9456,117627,'Firebaugh','United States of America','US','Firebaugh (United States of America)',1,1,0),(17711,9459,117628,'Firostefani','Greece','GR','Firostefani (Greece)',1,1,0),(17712,9461,117629,'Fischamend','Austria','AT','Fischamend (Austria)',1,1,0),(17713,0,117630,'Fischbachau','Germany','DE','Fischbachau (Germany)',1,1,0),(17714,9462,117631,'Fischen','Germany','DE','Fischen (Germany)',1,1,0),(17715,9470,117632,'Fishersville','United States of America','US','Fishersville (United States of America)',1,1,0),(17716,9473,117633,'Fishkill','United States of America','US','Fishkill (United States of America)',1,1,0),(17717,0,117634,'Fislisbach','Switzerland','CH','Fislisbach (Switzerland)',1,1,0),(17718,9482,117635,'Fitzroy','Australia','AU','Fitzroy (Australia)',1,1,0),(17719,9484,117636,'Fiuggi','Italy','IT','Fiuggi (Italy)',1,1,0),(17720,0,117637,'Fladungen','Germany','DE','Fladungen (Germany)',1,1,0),(17721,9498,117638,'Flagstaff','United States of America','US','Flagstaff (United States of America)',1,1,0),(17722,0,117639,'Flamengos','Portugal','PT','Flamengos (Portugal)',1,1,0),(17723,0,117640,'Flamingo','Costa Rica','CR','Flamingo (Costa Rica)',1,1,0),(17724,9507,117641,'Flatonia','United States of America','US','Flatonia (United States of America)',1,1,0),(17725,0,117642,'Fleimstal','Italy','IT','Fleimstal (Italy)',1,1,0),(17726,0,117643,'Flessenow','Germany','DE','Flessenow (Germany)',1,1,0),(17727,9517,117644,'Fletcher','United States of America','US','Fletcher (United States of America)',1,1,0),(17728,9519,117645,'Fleurus','Belgium','BE','Fleurus (Belgium)',1,1,0),(17729,9522,117646,'Fleury-Merogis','France','FR','Fleury-Merogis (France)',1,1,0),(17730,0,117647,'Flinders Ranges','Australia','AU','Flinders Ranges (Australia)',1,1,0),(17731,0,117648,'Flogeln','Germany','DE','Flogeln (Germany)',1,1,0),(17732,0,117649,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(17733,0,117650,'Florentino Ameghino','Argentina','AR','Florentino Ameghino (Argentina)',1,1,0),(17734,9550,117651,'Florenville','Belgium','BE','Florenville (Belgium)',1,1,0),(17735,9555,117652,'Florham Park','United States of America','US','Florham Park (United States of America)',1,1,0),(17736,0,117653,'Floricici','Croatia','HR','Floricici (Croatia)',1,1,0),(17737,0,117654,'Florida','United States of America','US','Florida (United States of America)',1,1,0),(17738,9563,117655,'Florissant','United States of America','US','Florissant (United States of America)',1,1,0),(17739,0,117656,'Foa','Tonga','TO','Foa (Tonga)',1,1,0),(17740,9582,117657,'Fobello','Italy','IT','Fobello (Italy)',1,1,0),(17741,9588,117658,'Foetz','Luxembourg','LU','Foetz (Luxembourg)',1,1,0),(17742,9590,117659,'Foggia','Italy','IT','Foggia (Italy)',1,1,0),(17743,0,117660,'Fogo Island','Canada','CA','Fogo Island (Canada)',1,1,0),(17744,0,117661,'Foissac','France','FR','Foissac (France)',1,1,0),(17745,9598,117662,'Folignano','Italy','IT','Folignano (Italy)',1,1,0),(17746,0,117663,'Follenslev','Denmark','DK','Follenslev (Denmark)',1,1,0),(17747,0,117664,'Fonimagoodhoo','Maldives','MV','Fonimagoodhoo (Maldives)',1,1,0),(17748,0,117665,'Fontan','France','FR','Fontan (France)',1,1,0),(17749,0,117666,'Fontanales','Spain','ES','Fontanales (Spain)',1,1,0),(17750,0,117667,'Fontane Bianche','Italy','IT','Fontane Bianche (Italy)',1,1,0),(17751,0,117668,'Forest City','United States of America','US','Forest City (United States of America)',1,1,0),(17752,9652,117669,'Forest Hill','Australia','AU','Forest Hill (Australia)',1,1,0),(17753,0,117670,'Elgersburg','Germany','DE','Elgersburg (Germany)',1,1,0),(17754,0,117671,'Elgin','United Kingdom','UK','Elgin (United Kingdom)',1,1,0),(17755,0,117672,'Elizabethtown','United States of America','US','Elizabethtown (United States of America)',1,1,0),(17756,0,117673,'Elizabethtown','United States of America','US','Elizabethtown (United States of America)',1,1,0),(17757,0,117674,'Elk','Poland','PL','Elk (Poland)',1,1,0),(17758,8672,117675,'Ellecom','Netherlands','NL','Ellecom (Netherlands)',1,1,0),(17759,0,117676,'Ellefeld','Germany','DE','Ellefeld (Germany)',1,1,0),(17760,8695,117677,'Elmina','Ghana','GH','Elmina (Ghana)',1,1,0),(17761,0,117678,'Elsloo','Netherlands','NL','Elsloo (Netherlands)',1,1,0),(17762,0,117679,'Elviria','Spain','ES','Elviria (Spain)',1,1,0),(17763,0,117680,'Ely','United States of America','US','Ely (United States of America)',1,1,0),(17764,0,117681,'Elzach','Germany','DE','Elzach (Germany)',1,1,0),(17765,8732,117682,'Emerainville','France','FR','Emerainville (France)',1,1,0),(17766,8733,117683,'Emerald','Australia','AU','Emerald (Australia)',1,1,0),(17767,0,117684,'Emines','Belgium','BE','Emines (Belgium)',1,1,0),(17768,8740,117685,'Emmen','Netherlands','NL','Emmen (Netherlands)',1,1,0),(17769,8752,117686,'Empire','United States of America','US','Empire (United States of America)',1,1,0),(17770,0,117687,'Emporios','Greece','GR','Emporios (Greece)',1,1,0),(17771,8758,117688,'Encamp','Andorra','AD','Encamp (Andorra)',1,1,0),(17772,0,117689,'Encinasola','Spain','ES','Encinasola (Spain)',1,1,0),(17773,0,117690,'Enfield','United States of America','US','Enfield (United States of America)',1,1,0),(17774,0,117691,'Engersch','Switzerland','CH','Engersch (Switzerland)',1,1,0),(17775,0,117692,'Enneberg','Italy','IT','Enneberg (Italy)',1,1,0),(17776,8796,117693,'Ennetburgen','Switzerland','CH','Ennetburgen (Switzerland)',1,1,0),(17777,0,117694,'Ennis','United States of America','US','Ennis (United States of America)',1,1,0),(17778,8802,117695,'Enniskerry','Ireland','IE','Enniskerry (Ireland)',1,1,0),(17779,0,117696,'Ennstal','Austria','AT','Ennstal (Austria)',1,1,0),(17780,0,117697,'Ennu','Estonia','EE','Ennu (Estonia)',1,1,0),(17781,0,117698,'Enping','China','CN','Enping (China)',1,1,0),(17782,8810,117699,'Enschede','Netherlands','NL','Enschede (Netherlands)',1,1,0),(17783,8811,117700,'Ensenada','Mexico','MX','Ensenada (Mexico)',1,1,0),(17784,0,117701,'Entlebuch','Switzerland','CH','Entlebuch (Switzerland)',1,1,0),(17785,8821,117702,'Entraygues-sur-Truyere','France','FR','Entraygues-sur-Truyere (France)',1,1,0),(17786,0,117703,'Entre-Deux','Reunion','RE','Entre-Deux (Reunion)',1,1,0),(17787,0,117704,'Entrena','Spain','ES','Entrena (Spain)',1,1,0),(17788,8831,117705,'Epernay','France','FR','Epernay (France)',1,1,0),(17789,0,117706,'Eppertshausen','Germany','DE','Eppertshausen (Germany)',1,1,0),(17790,0,117707,'Epupa','Namibia','NA','Epupa (Namibia)',1,1,0),(17791,8847,117708,'Equemauville','France','FR','Equemauville (France)',1,1,0),(17792,0,117709,'Erbajolo','France','FR','Erbajolo (France)',1,1,0),(17793,8870,117710,'Erfoud','Morocco','MA','Erfoud (Morocco)',1,1,0),(17794,8878,117711,'Erie','United States of America','US','Erie (United States of America)',1,1,0),(17795,0,117712,'Ering','Germany','DE','Ering (Germany)',1,1,0),(17796,0,117713,'Eriska','United Kingdom','UK','Eriska (United Kingdom)',1,1,0),(17797,0,117714,'Erlenbach am Main','Germany','DE','Erlenbach am Main (Germany)',1,1,0),(17798,0,117715,'Ermenonville','France','FR','Ermenonville (France)',1,1,0),(17799,0,117716,'Ernen','Switzerland','CH','Ernen (Switzerland)',1,1,0),(17800,8896,117717,'Errachidia','Morocco','MA','Errachidia (Morocco)',1,1,0),(17801,0,117718,'Errenteria','Spain','ES','Errenteria (Spain)',1,1,0),(17802,0,117719,'Erstein','France','FR','Erstein (France)',1,1,0),(17803,0,117720,'Erzgrube','Germany','DE','Erzgrube (Germany)',1,1,0),(17804,0,117721,'Es Cubells','Spain','ES','Es Cubells (Spain)',1,1,0),(17805,8912,117722,'Escanaba','United States of America','US','Escanaba (United States of America)',1,1,0),(17806,8915,117723,'Escazu','Costa Rica','CR','Escazu (Costa Rica)',1,1,0),(17807,8925,117724,'Escondido','United States of America','US','Escondido (United States of America)',1,1,0),(17808,0,117725,'Escrick','United Kingdom','UK','Escrick (United Kingdom)',1,1,0),(17809,0,117726,'Espinama','Spain','ES','Espinama (Spain)',1,1,0),(17810,0,117727,'Espinosa','Brazil','BR','Espinosa (Brazil)',1,1,0),(17811,8956,117728,'Espot','Spain','ES','Espot (Spain)',1,1,0),(17812,8957,117729,'Esquel','Argentina','AR','Esquel (Argentina)',1,1,0),(17813,8970,117730,'Essing','Germany','DE','Essing (Germany)',1,1,0),(17814,8971,117731,'Essington','United States of America','US','Essington (United States of America)',1,1,0),(17815,0,117732,'Estaing','France','FR','Estaing (France)',1,1,0),(17816,0,117733,'Esterhazy','Canada','CA','Esterhazy (Canada)',1,1,0),(17817,8995,117734,'Estombar','Portugal','PT','Estombar (Portugal)',1,1,0),(17818,0,117735,'Estrada','Spain','ES','Estrada (Spain)',1,1,0),(17819,9000,117736,'Estremoz','Portugal','PT','Estremoz (Portugal)',1,1,0),(17820,0,117737,'Ettenheim','Germany','DE','Ettenheim (Germany)',1,1,0),(17821,0,117738,'Eureka Springs','United States of America','US','Eureka Springs (United States of America)',1,1,0),(17822,0,117739,'Evanston','United States of America','US','Evanston (United States of America)',1,1,0),(17823,9054,117740,'Evansville','United States of America','US','Evansville (United States of America)',1,1,0),(17824,9061,117741,'Evergem','Belgium','BE','Evergem (Belgium)',1,1,0),(17825,9073,117742,'Evron','France','FR','Evron (France)',1,1,0),(17826,0,117743,'Ewen','United Kingdom','UK','Ewen (United Kingdom)',1,1,0),(17827,0,117744,'Ewijk','Netherlands','NL','Ewijk (Netherlands)',1,1,0),(17828,9082,117745,'Exeter','United States of America','US','Exeter (United States of America)',1,1,0),(17829,0,117746,'Eyemouth','United Kingdom','UK','Eyemouth (United Kingdom)',1,1,0),(17830,9117,117747,'Fabriano','Italy','IT','Fabriano (Italy)',1,1,0),(17831,9121,117748,'Fafa Island','Tonga','TO','Fafa Island (Tonga)',1,1,0),(17832,9122,117749,'Fafe','Portugal','PT','Fafe (Portugal)',1,1,0),(17833,9126,117750,'Fagersta','Sweden','SE','Fagersta (Sweden)',1,1,0),(17834,0,117751,'Fahrenbach','Germany','DE','Fahrenbach (Germany)',1,1,0),(17835,9130,117752,'Fai della Paganella','Italy','IT','Fai della Paganella (Italy)',1,1,0),(17836,9138,117753,'Fairbury','United States of America','US','Fairbury (United States of America)',1,1,0),(17837,0,117754,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(17838,9145,117755,'Fairhaven','United States of America','US','Fairhaven (United States of America)',1,1,0),(17839,9154,117756,'Fairview','United States of America','US','Fairview (United States of America)',1,1,0),(17840,0,117757,'Fairview Heights','United States of America','US','Fairview Heights (United States of America)',1,1,0),(17841,9177,117758,'Falfurrias','United States of America','US','Falfurrias (United States of America)',1,1,0),(17842,0,117759,'Falkertsee','Austria','AT','Falkertsee (Austria)',1,1,0),(17843,0,117760,'Falkirk','United Kingdom','UK','Falkirk (United Kingdom)',1,1,0),(17844,0,117761,'Falkoping','Sweden','SE','Falkoping (Sweden)',1,1,0),(17845,30962,117762,'Fall River','United States of America','US','Fall River (United States of America)',1,1,0),(17846,9199,117763,'Falun','Sweden','SE','Falun (Sweden)',1,1,0),(17847,0,117764,'Fanas','Switzerland','CH','Fanas (Switzerland)',1,1,0),(17848,0,117765,'Fanis','Greece','GR','Fanis (Greece)',1,1,0),(17849,9211,117766,'Fano','Italy','IT','Fano (Italy)',1,1,0),(17850,9233,117767,'Farmingdale','United States of America','US','Farmingdale (United States of America)',1,1,0),(17851,9234,117768,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(17852,9235,117769,'Farmingville','United States of America','US','Farmingville (United States of America)',1,1,0),(17853,0,117770,'Farnham','United Kingdom','UK','Farnham (United Kingdom)',1,1,0),(17854,0,117772,'Favignana Island','Italy','IT','Favignana Island (Italy)',1,1,0),(17855,9278,117773,'Fawkner','Australia','AU','Fawkner (Australia)',1,1,0),(17856,0,117774,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(17857,0,117775,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(17858,0,117776,'Feistritz','Austria','AT','Feistritz (Austria)',1,1,0),(17859,0,117777,'Feistritz an der Gail','Austria','AT','Feistritz an der Gail (Austria)',1,1,0),(17860,0,117778,'Feland','Norway','NO','Feland (Norway)',1,1,0),(17861,0,117779,'Feldberg','Germany','DE','Feldberg (Germany)',1,1,0),(17862,0,117780,'Feldkirchen','Austria','AT','Feldkirchen (Austria)',1,1,0),(17863,0,117781,'Felsberg','Germany','DE','Felsberg (Germany)',1,1,0),(17864,0,117782,'Fenwick Island','United States of America','US','Fenwick Island (United States of America)',1,1,0),(17865,0,117783,'Feriolo','Italy','IT','Feriolo (Italy)',1,1,0),(17866,0,117784,'Ferma','Greece','GR','Ferma (Greece)',1,1,0),(17867,0,117785,'Feurs','France','FR','Feurs (France)',1,1,0),(17868,0,117786,'Elk Grove','United States of America','US','Elk Grove (United States of America)',1,1,0),(17869,0,117787,'Elk Rapids','United States of America','US','Elk Rapids (United States of America)',1,1,0),(17870,8661,117788,'Elkhart','United States of America','US','Elkhart (United States of America)',1,1,0),(17871,8664,117789,'Elkins','United States of America','US','Elkins (United States of America)',1,1,0),(17872,8667,117790,'Elkridge','United States of America','US','Elkridge (United States of America)',1,1,0),(17873,0,117791,'Elkton','United States of America','US','Elkton (United States of America)',1,1,0),(17874,0,117792,'Ellbogen','Austria','AT','Ellbogen (Austria)',1,1,0),(17875,8681,117793,'Ellicottville','United States of America','US','Ellicottville (United States of America)',1,1,0),(17876,0,117794,'Ellis Beach','Australia','AU','Ellis Beach (Australia)',1,1,0),(17877,8692,117795,'Elm','Switzerland','CH','Elm (Switzerland)',1,1,0),(17878,8693,117796,'Elmendorf','United States of America','US','Elmendorf (United States of America)',1,1,0),(17879,0,117797,'Elsterheide','Germany','DE','Elsterheide (Germany)',1,1,0),(17880,8713,117798,'Eltville','Germany','DE','Eltville (Germany)',1,1,0),(17881,0,117799,'Embd','Switzerland','CH','Embd (Switzerland)',1,1,0),(17882,8728,117800,'Emden','Germany','DE','Emden (Germany)',1,1,0),(17883,8739,117801,'Emmeloord','Netherlands','NL','Emmeloord (Netherlands)',1,1,0),(17884,8741,117802,'Emmendingen','Germany','DE','Emmendingen (Germany)',1,1,0),(17885,0,117803,'Emmerthal','Germany','DE','Emmerthal (Germany)',1,1,0),(17886,8746,117804,'Emmitsburg','United States of America','US','Emmitsburg (United States of America)',1,1,0),(17887,8754,117805,'Emporia','United States of America','US','Emporia (United States of America)',1,1,0),(17888,8755,117806,'Empuriabrava','Spain','ES','Empuriabrava (Spain)',1,1,0),(17889,8770,117807,'Enfield','Canada','CA','Enfield (Canada)',1,1,0),(17890,0,117808,'Engels','Russia','RU','Engels (Russia)',1,1,0),(17891,0,117809,'Enges','Switzerland','CH','Enges (Switzerland)',1,1,0),(17892,0,117810,'Enghien','Belgium','BE','Enghien (Belgium)',1,1,0),(17893,0,117811,'Englewood','United States of America','US','Englewood (United States of America)',1,1,0),(17894,0,117812,'Englewood','United States of America','US','Englewood (United States of America)',1,1,0),(17895,8787,117813,'Englos','France','FR','Englos (France)',1,1,0),(17896,8792,117814,'Enkhuizen','Netherlands','NL','Enkhuizen (Netherlands)',1,1,0),(17897,0,117815,'Entrecasteaux','France','FR','Entrecasteaux (France)',1,1,0),(17898,0,117816,'Enzklosterle','Germany','DE','Enzklosterle (Germany)',1,1,0),(17899,8829,117817,'Epe','Netherlands','NL','Epe (Netherlands)',1,1,0),(17900,8833,117818,'Ephrata','United States of America','US','Ephrata (United States of America)',1,1,0),(17901,0,117819,'Episkopi','Greece','GR','Episkopi (Greece)',1,1,0),(17902,0,117820,'Epping','United Kingdom','UK','Epping (United Kingdom)',1,1,0),(17903,8850,117821,'Equeurdreville-Hainneville','France','FR','Equeurdreville-Hainneville (France)',1,1,0),(17904,8854,117822,'Erbenhausen','Germany','DE','Erbenhausen (Germany)',1,1,0),(17905,8857,117823,'Erciyes','Turkey','TR','Erciyes (Turkey)',1,1,0),(17906,8860,117824,'Erdek','Turkey','TR','Erdek (Turkey)',1,1,0),(17907,8861,117825,'Erdemli','Turkey','TR','Erdemli (Turkey)',1,1,0),(17908,8862,117826,'Erdeven','France','FR','Erdeven (France)',1,1,0),(17909,8864,117827,'Erdobenye','Hungary','HU','Erdobenye (Hungary)',1,1,0),(17910,8867,117828,'Eregli','Turkey','TR','Eregli (Turkey)',1,1,0),(17911,0,117829,'Erezee','Belgium','BE','Erezee (Belgium)',1,1,0),(17912,8871,117830,'Erfurt','Germany','DE','Erfurt (Germany)',1,1,0),(17913,0,117831,'Erg Chebbi','Morocco','MA','Erg Chebbi (Morocco)',1,1,0),(17914,0,117832,'Erill la Vall','Spain','ES','Erill la Vall (Spain)',1,1,0),(17915,0,117833,'Erkner','Germany','DE','Erkner (Germany)',1,1,0),(17916,8880,117834,'Erkrath','Germany','DE','Erkrath (Germany)',1,1,0),(17917,0,117835,'Erlinsbach','Switzerland','CH','Erlinsbach (Switzerland)',1,1,0),(17918,8888,117836,'Ermioni','Greece','GR','Ermioni (Greece)',1,1,0),(17919,0,117837,'Erpe-Mere','Belgium','BE','Erpe-Mere (Belgium)',1,1,0),(17920,8901,117838,'Erts','Andorra','AD','Erts (Andorra)',1,1,0),(17921,8904,117839,'Erwitte','Germany','DE','Erwitte (Germany)',1,1,0),(17922,30948,117840,'Es Cana','Spain','ES','Es Cana (Spain)',1,1,0),(17923,30950,117841,'Es Castell','Spain','ES','Es Castell (Spain)',1,1,0),(17924,0,117842,'Es Mercadal','Spain','ES','Es Mercadal (Spain)',1,1,0),(17925,0,117843,'Esens','Germany','DE','Esens (Germany)',1,1,0),(17926,0,117844,'Esher','United Kingdom','UK','Esher (United Kingdom)',1,1,0),(17927,0,117845,'Espelette','France','FR','Espelette (France)',1,1,0),(17928,0,117846,'Esquibien','France','FR','Esquibien (France)',1,1,0),(17929,8960,117847,'Esquivias','Spain','ES','Esquivias (Spain)',1,1,0),(17930,0,117848,'Essex','United Kingdom','UK','Essex (United Kingdom)',1,1,0),(17931,8968,117849,'Essey-les-Nancy','France','FR','Essey-les-Nancy (France)',1,1,0),(17932,0,117850,'Estcourt','South Africa','ZA','Estcourt (South Africa)',1,1,0),(17933,8988,117851,'Estero','United States of America','US','Estero (United States of America)',1,1,0),(17934,8994,117852,'Estoi','Portugal','PT','Estoi (Portugal)',1,1,0),(17935,0,117853,'Estorf an der Weser','Germany','DE','Estorf an der Weser (Germany)',1,1,0),(17936,9002,117854,'Etampes','France','FR','Etampes (France)',1,1,0),(17937,0,117855,'Etchingham','United Kingdom','UK','Etchingham (United Kingdom)',1,1,0),(17938,0,117856,'Etel','France','FR','Etel (France)',1,1,0),(17939,9023,117857,'Etters','United States of America','US','Etters (United States of America)',1,1,0),(17940,9041,117858,'Eupora','United States of America','US','Eupora (United States of America)',1,1,0),(17941,0,117859,'Eureka','United States of America','US','Eureka (United States of America)',1,1,0),(17942,9049,117860,'Eustis','United States of America','US','Eustis (United States of America)',1,1,0),(17943,0,117861,'Euthal','Switzerland','CH','Euthal (Switzerland)',1,1,0),(17944,0,117862,'Evanton','United Kingdom','UK','Evanton (United Kingdom)',1,1,0),(17945,9058,117863,'Evenes','Norway','NO','Evenes (Norway)',1,1,0),(17946,9069,117864,'Evilard','Switzerland','CH','Evilard (Switzerland)',1,1,0),(17947,9079,117865,'Excelsior Springs','United States of America','US','Excelsior Springs (United States of America)',1,1,0),(17948,0,117866,'Exeter','United States of America','US','Exeter (United States of America)',1,1,0),(17949,0,117867,'Eye','United Kingdom','UK','Eye (United Kingdom)',1,1,0),(17950,0,117868,'Eyragues','France','FR','Eyragues (France)',1,1,0),(17951,9103,117869,'Ezcaray','Spain','ES','Ezcaray (Spain)',1,1,0),(17952,0,117870,'Eze-Village','France','FR','Eze-Village (France)',1,1,0),(17953,9139,117871,'Fairfax','United States of America','US','Fairfax (United States of America)',1,1,0),(17954,9158,117872,'Faithlegg','Ireland','IE','Faithlegg (Ireland)',1,1,0),(17955,0,117873,'Fakenham','United Kingdom','UK','Fakenham (United Kingdom)',1,1,0),(17956,9171,117874,'Falconara Marittima','Italy','IT','Falconara Marittima (Italy)',1,1,0),(17957,0,117875,'Falkenfels','Germany','DE','Falkenfels (Germany)',1,1,0),(17958,9195,117876,'Falmouth','Jamaica','JM','Falmouth (Jamaica)',1,1,0),(17959,9203,117877,'Fancy Gap','United States of America','US','Fancy Gap (United States of America)',1,1,0),(17960,0,117878,'Fangchenggang','China','CN','Fangchenggang (China)',1,1,0),(17961,0,117879,'Fanore','Ireland','IE','Fanore (Ireland)',1,1,0),(17962,9218,117880,'Farallon','Panama','PA','Farallon (Panama)',1,1,0),(17963,0,117881,'Farasan Island','Saudi Arabia','SA','Farasan Island (Saudi Arabia)',1,1,0),(17964,0,117882,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(17965,0,117883,'Farnese','Italy','IT','Farnese (Italy)',1,1,0),(17966,0,117884,'Faskru?sfjor?ur','Iceland','IS','Faskru?sfjor?ur (Iceland)',1,1,0),(17967,0,117885,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(17968,9282,117886,'Fazana','Croatia','HR','Fazana (Croatia)',1,1,0),(17969,0,117887,'Feffernitz','Austria','AT','Feffernitz (Austria)',1,1,0),(17970,0,117888,'Feldthurns','Italy','IT','Feldthurns (Italy)',1,1,0),(17971,0,117889,'Felline','Italy','IT','Felline (Italy)',1,1,0),(17972,0,117890,'Fenstanton','United Kingdom','UK','Fenstanton (United Kingdom)',1,1,0),(17973,9329,117891,'Fentonbury','Australia','AU','Fentonbury (Australia)',1,1,0),(17974,9335,117892,'Ferdinand','United States of America','US','Ferdinand (United States of America)',1,1,0),(17975,0,117893,'Ferlach','Austria','AT','Ferlach (Austria)',1,1,0),(17976,9346,117894,'Fermo','Italy','IT','Fermo (Italy)',1,1,0),(17977,9349,117895,'Fern Park','United States of America','US','Fern Park (United States of America)',1,1,0),(17978,9365,117896,'Ferrerias','Spain','ES','Ferrerias (Spain)',1,1,0),(17979,0,117897,'Ferrieres','Belgium','BE','Ferrieres (Belgium)',1,1,0),(17980,0,117898,'Ferrieres-en-Gatinais','France','FR','Ferrieres-en-Gatinais (France)',1,1,0),(17981,0,117899,'Ferry Hill','United Kingdom','UK','Ferry Hill (United Kingdom)',1,1,0),(17982,0,117900,'Finse','Norway','NO','Finse (Norway)',1,1,0),(17983,0,117901,'Fiorenzuola di Focara','Italy','IT','Fiorenzuola di Focara (Italy)',1,1,0),(17984,9463,117902,'Fischerbach','Germany','DE','Fischerbach (Germany)',1,1,0),(17985,9469,117903,'Fishers','United States of America','US','Fishers (United States of America)',1,1,0),(17986,0,117904,'Fitzroy Crossing','Australia','AU','Fitzroy Crossing (Australia)',1,1,0),(17987,0,117905,'Fitzroy Island','Australia','AU','Fitzroy Island (Australia)',1,1,0),(17988,0,117906,'Flers','France','FR','Flers (France)',1,1,0),(17989,9518,117907,'Fleurance','France','FR','Fleurance (France)',1,1,0),(17990,9530,117908,'Flinders','Australia','AU','Flinders (Australia)',1,1,0),(17991,0,117909,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(17992,0,117910,'Florestal','Brazil','BR','Florestal (Brazil)',1,1,0),(17993,0,117911,'Florsheim-Dalsheim','Germany','DE','Florsheim-Dalsheim (Germany)',1,1,0),(17994,9573,117912,'Fluelen','Switzerland','CH','Fluelen (Switzerland)',1,1,0),(17995,9578,117913,'Flumserberg','Switzerland','CH','Flumserberg (Switzerland)',1,1,0),(17996,9581,117914,'Fnideq','Morocco','MA','Fnideq (Morocco)',1,1,0),(17997,9589,117915,'Fogelsville','United States of America','US','Fogelsville (United States of America)',1,1,0),(17998,9596,117916,'Folgaria','Italy','IT','Folgaria (Italy)',1,1,0),(17999,9615,117917,'Fontana','United States of America','US','Fontana (United States of America)',1,1,0),(18000,0,117918,'Fontanazzo','Italy','IT','Fontanazzo (Italy)',1,1,0),(18001,0,117919,'Fontcouverte-la-Toussuire','France','FR','Fontcouverte-la-Toussuire (France)',1,1,0),(18002,0,117920,'Fonte Cerreto','Italy','IT','Fonte Cerreto (Italy)',1,1,0),(18003,9622,117921,'Fonteblanda','Italy','IT','Fonteblanda (Italy)',1,1,0),(18004,9626,117922,'Fontenay-sous-Bois','France','FR','Fontenay-sous-Bois (France)',1,1,0),(18005,0,117923,'Fonyod','Hungary','HU','Fonyod (Hungary)',1,1,0),(18006,9636,117924,'Fonz','Spain','ES','Fonz (Spain)',1,1,0),(18007,9651,117925,'Forest','United States of America','US','Forest (United States of America)',1,1,0),(18008,9658,117926,'Forestville','United States of America','US','Forestville (United States of America)',1,1,0),(18009,9677,117927,'Fornalutx','Spain','ES','Fornalutx (Spain)',1,1,0),(18010,9689,117928,'Forster','Australia','AU','Forster (Australia)',1,1,0),(18011,0,117929,'Fort Erie','Canada','CA','Fort Erie (Canada)',1,1,0),(18012,30993,117930,'Fort Lauderdale','United States of America','US','Fort Lauderdale (United States of America)',1,1,0),(18013,30997,117931,'Fort Lee','United States of America','US','Fort Lee (United States of America)',1,1,0),(18014,0,117932,'Fort Nelson','Canada','CA','Fort Nelson (Canada)',1,1,0),(18015,0,117933,'Fort Simpson','Canada','CA','Fort Simpson (Canada)',1,1,0),(18016,0,117934,'Fort Smith','Canada','CA','Fort Smith (Canada)',1,1,0),(18017,31026,117935,'Fort Valley','United States of America','US','Fort Valley (United States of America)',1,1,0),(18018,9702,117936,'Fortuna','United States of America','US','Fortuna (United States of America)',1,1,0),(18019,0,117937,'Fosdinovo','Italy','IT','Fosdinovo (Italy)',1,1,0),(18020,0,117938,'Fowl Cay','Bahamas','BS','Fowl Cay (Bahamas)',1,1,0),(18021,9732,117939,'Fowlerville','United States of America','US','Fowlerville (United States of America)',1,1,0),(18022,0,117940,'Frahan','Belgium','BE','Frahan (Belgium)',1,1,0),(18023,9750,117941,'Franca','Brazil','BR','Franca (Brazil)',1,1,0),(18024,0,117942,'Francavilla Fontana','Italy','IT','Francavilla Fontana (Italy)',1,1,0),(18025,0,117943,'Frankenau','Germany','DE','Frankenau (Germany)',1,1,0),(18026,0,117944,'Frankenroda','Germany','DE','Frankenroda (Germany)',1,1,0),(18027,9763,117945,'Frankenthal','Germany','DE','Frankenthal (Germany)',1,1,0),(18028,0,117946,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18029,0,117947,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18030,0,117948,'Frassinello Monferrato','Italy','IT','Frassinello Monferrato (Italy)',1,1,0),(18031,0,117949,'Frazione San Giustino Valdarno','Italy','IT','Frazione San Giustino Valdarno (Italy)',1,1,0),(18032,9790,117950,'Frechen','Germany','DE','Frechen (Germany)',1,1,0),(18033,9793,117951,'Frederick','United States of America','US','Frederick (United States of America)',1,1,0),(18034,0,117952,'Freienbach','Switzerland','CH','Freienbach (Switzerland)',1,1,0),(18035,9824,117953,'Freienfeld','Italy','IT','Freienfeld (Italy)',1,1,0),(18036,9837,117954,'French Lick','United States of America','US','French Lick (United States of America)',1,1,0),(18037,9839,117955,'Frenchtown','United States of America','US','Frenchtown (United States of America)',1,1,0),(18038,0,117956,'Frenstat pod Radhostem','Czech Republic','CZ','Frenstat pod Radhostem (Czech Republic)',1,1,0),(18039,0,117957,'Fridingen an der Donau','Germany','DE','Fridingen an der Donau (Germany)',1,1,0),(18040,0,117958,'Friedenweiler','Germany','DE','Friedenweiler (Germany)',1,1,0),(18041,0,117959,'Friesach','Austria','AT','Friesach (Austria)',1,1,0),(18042,0,117960,'Frisange','Luxembourg','LU','Frisange (Luxembourg)',1,1,0),(18043,9878,117961,'Frisco','United States of America','US','Frisco (United States of America)',1,1,0),(18044,0,117962,'Frydlant','Czech Republic','CZ','Frydlant (Czech Republic)',1,1,0),(18045,0,117963,'Frymburk Hrdonov','Czech Republic','CZ','Frymburk Hrdonov (Czech Republic)',1,1,0),(18046,0,117964,'Ft. Walton','United States of America','US','Ft. Walton (United States of America)',1,1,0),(18047,9909,117965,'Fuding','China','CN','Fuding (China)',1,1,0),(18048,0,117966,'Fuimefreddo','Italy','IT','Fuimefreddo (Italy)',1,1,0),(18049,9941,117967,'Fujisawa','Japan','JP','Fujisawa (Japan)',1,1,0),(18050,9948,117968,'Fukuyama','Japan','JP','Fukuyama (Japan)',1,1,0),(18051,9949,117969,'Fulda','Germany','DE','Fulda (Germany)',1,1,0),(18052,9955,117970,'Fulton','United States of America','US','Fulton (United States of America)',1,1,0),(18053,0,117971,'Funes','Italy','IT','Funes (Italy)',1,1,0),(18054,9973,117972,'Furnas','Portugal','PT','Furnas (Portugal)',1,1,0),(18055,0,117973,'Furstenfeld','Austria','AT','Furstenfeld (Austria)',1,1,0),(18056,0,117974,'Furth im Wald','Germany','DE','Furth im Wald (Germany)',1,1,0),(18057,9980,117975,'Fusch an der Grossglocknerstrasse','Austria','AT','Fusch an der Grossglocknerstrasse (Austria)',1,1,0),(18058,0,117976,'Fushun','China','CN','Fushun (China)',1,1,0),(18059,0,117977,'Fuzine','Croatia','HR','Fuzine (Croatia)',1,1,0),(18060,9997,117978,'Gabes','Tunisia','TN','Gabes (Tunisia)',1,1,0),(18061,10006,117979,'Gadsden','United States of America','US','Gadsden (United States of America)',1,1,0),(18062,0,117980,'Gagra','Georgia','GE','Gagra (Georgia)',1,1,0),(18063,10017,117981,'Gai','Austria','AT','Gai (Austria)',1,1,0),(18064,0,117982,'Gaiesti','Romania','RO','Gaiesti (Romania)',1,1,0),(18065,10020,117983,'Gainesville','United States of America','US','Gainesville (United States of America)',1,1,0),(18066,0,117984,'Galatone','Italy','IT','Galatone (Italy)',1,1,0),(18067,10052,117985,'Galiano Island','Canada','CA','Galiano Island (Canada)',1,1,0),(18068,0,117986,'Galinhos','Brazil','BR','Galinhos (Brazil)',1,1,0),(18069,10060,117987,'Gallatin','United States of America','US','Gallatin (United States of America)',1,1,0),(18070,0,117988,'Galle','Sri Lanka','LK','Galle (Sri Lanka)',1,1,0),(18071,10072,117989,'Galtur','Austria','AT','Galtur (Austria)',1,1,0),(18072,0,117990,'Gamlitz','Austria','AT','Gamlitz (Austria)',1,1,0),(18073,10093,117991,'Gammarth','Tunisia','TN','Gammarth (Tunisia)',1,1,0),(18074,10095,117992,'Gammertingen','Germany','DE','Gammertingen (Germany)',1,1,0),(18075,10101,117994,'Gandia','Spain','ES','Gandia (Spain)',1,1,0),(18076,0,117995,'Ganserndorf','Austria','AT','Ganserndorf (Austria)',1,1,0),(18077,31038,117996,'Garda','Italy','IT','Garda (Italy)',1,1,0),(18078,0,117997,'Gardelegen','Germany','DE','Gardelegen (Germany)',1,1,0),(18079,10128,117998,'Gardena','United States of America','US','Gardena (United States of America)',1,1,0),(18080,0,117999,'Gargaliani','Greece','GR','Gargaliani (Greece)',1,1,0),(18081,0,118000,'Garica','Croatia','HR','Garica (Croatia)',1,1,0),(18082,10168,118001,'Garrevaques','France','FR','Garrevaques (France)',1,1,0),(18083,10175,118002,'Gartringen','Germany','DE','Gartringen (Germany)',1,1,0),(18084,10176,118003,'Garut','Indonesia','ID','Garut (Indonesia)',1,1,0),(18085,0,118004,'Gasselte','Netherlands','NL','Gasselte (Netherlands)',1,1,0),(18086,10189,118005,'Gassin','France','FR','Gassin (France)',1,1,0),(18087,10213,118006,'Gautier','United States of America','US','Gautier (United States of America)',1,1,0),(18088,0,118007,'Gazipasa','Turkey','TR','Gazipasa (Turkey)',1,1,0),(18089,30848,118008,'East Springfield','United States of America','US','East Springfield (United States of America)',1,1,0),(18090,8443,118009,'Eastland','United States of America','US','Eastland (United States of America)',1,1,0),(18091,0,118010,'Eaux Bonnes','France','FR','Eaux Bonnes (France)',1,1,0),(18092,0,118011,'Ebeleben','Germany','DE','Ebeleben (Germany)',1,1,0),(18093,0,118012,'Ebensee','Austria','AT','Ebensee (Austria)',1,1,0),(18094,0,118013,'Ebikon','Switzerland','CH','Ebikon (Switzerland)',1,1,0),(18095,8474,118014,'Ebreichsdorf','Austria','AT','Ebreichsdorf (Austria)',1,1,0),(18096,0,118015,'Ebro-Delta','Spain','ES','Ebro-Delta (Spain)',1,1,0),(18097,0,118016,'Echichens','Switzerland','CH','Echichens (Switzerland)',1,1,0),(18098,0,118017,'Eckartsau','Austria','AT','Eckartsau (Austria)',1,1,0),(18099,0,118018,'Eckwarderhorne','Germany','DE','Eckwarderhorne (Germany)',1,1,0),(18100,8494,118019,'Eddyville','United States of America','US','Eddyville (United States of America)',1,1,0),(18101,0,118020,'Eden','United States of America','US','Eden (United States of America)',1,1,0),(18102,0,118021,'Eden Prairie','United States of America','US','Eden Prairie (United States of America)',1,1,0),(18103,8501,118022,'Edenton','United States of America','US','Edenton (United States of America)',1,1,0),(18104,8506,118023,'Edessa','Greece','GR','Edessa (Greece)',1,1,0),(18105,0,118024,'Ediger-Eller','Germany','DE','Ediger-Eller (Germany)',1,1,0),(18106,0,118025,'Edinbane','United Kingdom','UK','Edinbane (United Kingdom)',1,1,0),(18107,8519,118026,'Edinboro','United States of America','US','Edinboro (United States of America)',1,1,0),(18108,8521,118027,'Edipsos','Greece','GR','Edipsos (Greece)',1,1,0),(18109,8522,118028,'Edirne','Turkey','TR','Edirne (Turkey)',1,1,0),(18110,0,118029,'Edisto Island','United States of America','US','Edisto Island (United States of America)',1,1,0),(18111,8525,118030,'Edmond','United States of America','US','Edmond (United States of America)',1,1,0),(18112,8529,118031,'Edmore','United States of America','US','Edmore (United States of America)',1,1,0),(18113,8532,118032,'Edna','United States of America','US','Edna (United States of America)',1,1,0),(18114,0,118033,'Eggernfelden','Germany','DE','Eggernfelden (Germany)',1,1,0),(18115,0,118034,'Eggstatt','Germany','DE','Eggstatt (Germany)',1,1,0),(18116,0,118035,'Ehrenhausen','Austria','AT','Ehrenhausen (Austria)',1,1,0),(18117,0,118036,'Ehrenkirchen','Germany','DE','Ehrenkirchen (Germany)',1,1,0),(18118,0,118037,'Eichenau','Germany','DE','Eichenau (Germany)',1,1,0),(18119,8576,118038,'Eichgraben','Austria','AT','Eichgraben (Austria)',1,1,0),(18120,8599,118039,'Eitorf','Germany','DE','Eitorf (Germany)',1,1,0),(18121,0,118040,'Eksjo','Sweden','SE','Eksjo (Sweden)',1,1,0),(18122,0,118041,'El Alamein','Egypt','EG','El Alamein (Egypt)',1,1,0),(18123,0,118042,'El Dorado Hills','United States of America','US','El Dorado Hills (United States of America)',1,1,0),(18124,0,118043,'El Haouaria','Tunisia','TN','El Haouaria (Tunisia)',1,1,0),(18125,30899,118044,'El Hierro','Spain','ES','El Hierro (Spain)',1,1,0),(18126,0,118045,'El Islote','Spain','ES','El Islote (Spain)',1,1,0),(18127,0,118046,'El Palo','Spain','ES','El Palo (Spain)',1,1,0),(18128,0,118047,'El Paso','United States of America','US','El Paso (United States of America)',1,1,0),(18129,30913,118048,'El Pedroso','Spain','ES','El Pedroso (Spain)',1,1,0),(18130,30915,118049,'El Pont de Bar','Spain','ES','El Pont de Bar (Spain)',1,1,0),(18131,0,118050,'El Pueyo de Jaca','Spain','ES','El Pueyo de Jaca (Spain)',1,1,0),(18132,0,118051,'El Raposo','Spain','ES','El Raposo (Spain)',1,1,0),(18133,0,118052,'El Tablero','Spain','ES','El Tablero (Spain)',1,1,0),(18134,0,118053,'El Tarter','Andorra','AD','El Tarter (Andorra)',1,1,0),(18135,0,118054,'El Tur','Egypt','EG','El Tur (Egypt)',1,1,0),(18136,30939,118055,'El Viso del Alcor','Spain','ES','El Viso del Alcor (Spain)',1,1,0),(18137,0,118056,'Elafonissos','Greece','GR','Elafonissos (Greece)',1,1,0),(18138,30940,118057,'Elda','Spain','ES','Elda (Spain)',1,1,0),(18139,0,118058,'Elgg','Switzerland','CH','Elgg (Switzerland)',1,1,0),(18140,8655,118059,'Elizabethton','United States of America','US','Elizabethton (United States of America)',1,1,0),(18141,8666,118060,'Elko','United States of America','US','Elko (United States of America)',1,1,0),(18142,8670,118061,'Elkwater','Canada','CA','Elkwater (Canada)',1,1,0),(18143,8683,118062,'Elliot Lake','Canada','CA','Elliot Lake (Canada)',1,1,0),(18144,8686,118063,'Ellisville','United States of America','US','Ellisville (United States of America)',1,1,0),(18145,0,118064,'Ellnes - Vanse','Norway','NO','Ellnes - Vanse (Norway)',1,1,0),(18146,0,118065,'Ellrich','Germany','DE','Ellrich (Germany)',1,1,0),(18147,8690,118066,'Ellsworth','United States of America','US','Ellsworth (United States of America)',1,1,0),(18148,0,118067,'Elorrio','Spain','ES','Elorrio (Spain)',1,1,0),(18149,8701,118068,'Eloy','United States of America','US','Eloy (United States of America)',1,1,0),(18150,0,118069,'Elterwater','United Kingdom','UK','Elterwater (United Kingdom)',1,1,0),(18151,0,118070,'Ely','United States of America','US','Ely (United States of America)',1,1,0),(18152,0,118071,'Embach','Austria','AT','Embach (Austria)',1,1,0),(18153,0,118072,'Emly','Ireland','IE','Emly (Ireland)',1,1,0),(18154,0,118073,'Emmelshausen','Germany','DE','Emmelshausen (Germany)',1,1,0),(18155,0,118074,'Emmen','Switzerland','CH','Emmen (Switzerland)',1,1,0),(18156,0,118075,'Emponas','Greece','GR','Emponas (Greece)',1,1,0),(18157,0,118076,'Emporia','United States of America','US','Emporia (United States of America)',1,1,0),(18158,8766,118077,'Endicott','United States of America','US','Endicott (United States of America)',1,1,0),(18159,0,118078,'Enfield','United Kingdom','UK','Enfield (United Kingdom)',1,1,0),(18160,8772,118079,'Enfield','Ireland','IE','Enfield (Ireland)',1,1,0),(18161,0,118080,'Engeln','Germany','DE','Engeln (Germany)',1,1,0),(18162,8781,118081,'Engerwitzdorf','Austria','AT','Engerwitzdorf (Austria)',1,1,0),(18163,0,118082,'Enghien-les-Bains','France','FR','Enghien-les-Bains (France)',1,1,0),(18164,8785,118083,'English Harbour','Antigua & Barbuda','AG','English Harbour (Antigua & Barbuda)',1,1,0),(18165,8788,118084,'Enguera','Spain','ES','Enguera (Spain)',1,1,0),(18166,0,118085,'Enkenbach-Alsenborn','Germany','DE','Enkenbach-Alsenborn (Germany)',1,1,0),(18167,8794,118086,'Enkoping','Sweden','SE','Enkoping (Sweden)',1,1,0),(18168,0,118087,'Entzheim','France','FR','Entzheim (France)',1,1,0),(18169,8828,118088,'Epagny','France','FR','Epagny (France)',1,1,0),(18170,0,118089,'Episkopi','Cyprus','CY','Episkopi (Cyprus)',1,1,0),(18171,0,118090,'Eppelborn','Germany','DE','Eppelborn (Germany)',1,1,0),(18172,0,118091,'Eraclea Mare','Italy','IT','Eraclea Mare (Italy)',1,1,0),(18173,0,118092,'Erbach (Donau)','Germany','DE','Erbach (Donau) (Germany)',1,1,0),(18174,0,118093,'Erbach (Odenwald)','Germany','DE','Erbach (Odenwald) (Germany)',1,1,0),(18175,0,118094,'Erica','Netherlands','NL','Erica (Netherlands)',1,1,0),(18176,8875,118095,'Erice','Italy','IT','Erice (Italy)',1,1,0),(18177,0,118096,'Erl','Austria','AT','Erl (Austria)',1,1,0),(18178,0,118097,'Ermatingen','Switzerland','CH','Ermatingen (Switzerland)',1,1,0),(18179,8890,118098,'Ermones','Greece','GR','Ermones (Greece)',1,1,0),(18180,0,118099,'Errington','Canada','CA','Errington (Canada)',1,1,0),(18181,0,118100,'Es Calo','Spain','ES','Es Calo (Spain)',1,1,0),(18182,0,118101,'Es Pillari','Spain','ES','Es Pillari (Spain)',1,1,0),(18183,8908,118102,'Esbly','France','FR','Esbly (France)',1,1,0),(18184,0,118103,'Eschbach (Markgraflerland)','Germany','DE','Eschbach (Markgraflerland) (Germany)',1,1,0),(18185,0,118104,'Eschdorf','Luxembourg','LU','Eschdorf (Luxembourg)',1,1,0),(18186,8921,118105,'Esch-sur-Alzette','Luxembourg','LU','Esch-sur-Alzette (Luxembourg)',1,1,0),(18187,8931,118106,'Eshowe','South Africa','ZA','Eshowe (South Africa)',1,1,0),(18188,8941,118107,'Espalion','France','FR','Espalion (France)',1,1,0),(18189,8944,118108,'Espelkamp','Germany','DE','Espelkamp (Germany)',1,1,0),(18190,0,118109,'Espinosa de Los Monteros','Spain','ES','Espinosa de Los Monteros (Spain)',1,1,0),(18191,8952,118110,'Esplugues de Llobregat','Spain','ES','Esplugues de Llobregat (Spain)',1,1,0),(18192,8958,118111,'Esquina','Argentina','AR','Esquina (Argentina)',1,1,0),(18193,0,118112,'Essequibo River','Guyana','GY','Essequibo River (Guyana)',1,1,0),(18194,0,118113,'Estavayer-le-Lac','Switzerland','CH','Estavayer-le-Lac (Switzerland)',1,1,0),(18195,0,118114,'Esthal','Germany','DE','Esthal (Germany)',1,1,0),(18196,8993,118115,'Estill','United States of America','US','Estill (United States of America)',1,1,0),(18197,8996,118116,'Estoril','Portugal','PT','Estoril (Portugal)',1,1,0),(18198,9001,118117,'Esztergom','Hungary','HU','Esztergom (Hungary)',1,1,0),(18199,0,118118,'Etain','France','FR','Etain (France)',1,1,0),(18200,0,118119,'Etreham','France','FR','Etreham (France)',1,1,0),(18201,0,118120,'Etzelwang','Germany','DE','Etzelwang (Germany)',1,1,0),(18202,9189,118121,'Fallbrook','United States of America','US','Fallbrook (United States of America)',1,1,0),(18203,30963,118122,'Falls Church','United States of America','US','Falls Church (United States of America)',1,1,0),(18204,0,118123,'Falmouth','United Kingdom','UK','Falmouth (United Kingdom)',1,1,0),(18205,0,118124,'Falsterbo','Sweden','SE','Falsterbo (Sweden)',1,1,0),(18206,0,118125,'Fambach','Germany','DE','Fambach (Germany)',1,1,0),(18207,0,118126,'Fara San Martino','Italy','IT','Fara San Martino (Italy)',1,1,0),(18208,9219,118127,'Faralya','Turkey','TR','Faralya (Turkey)',1,1,0),(18209,0,118128,'Fargelanda','Sweden','SE','Fargelanda (Sweden)',1,1,0),(18210,0,118130,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(18211,0,118131,'Farmington','United States of America','US','Farmington (United States of America)',1,1,0),(18212,9236,118132,'Farmville','United States of America','US','Farmville (United States of America)',1,1,0),(18213,9242,118133,'Faro','Canada','CA','Faro (Canada)',1,1,0),(18214,0,118134,'Farthingstone','United Kingdom','UK','Farthingstone (United Kingdom)',1,1,0),(18215,0,118135,'Fatih','Turkey','TR','Fatih (Turkey)',1,1,0),(18216,0,118136,'Favieres','France','FR','Favieres (France)',1,1,0),(18217,0,118137,'Fawkham','United Kingdom','UK','Fawkham (United Kingdom)',1,1,0),(18218,9288,118138,'Fecamp','France','FR','Fecamp (France)',1,1,0),(18219,9290,118139,'Federacion','Argentina','AR','Federacion (Argentina)',1,1,0),(18220,0,118140,'Feld am See','Austria','AT','Feld am See (Austria)',1,1,0),(18221,0,118141,'Feldberger Seenlandschaft','Germany','DE','Feldberger Seenlandschaft (Germany)',1,1,0),(18222,9307,118142,'Felechosa','Spain','ES','Felechosa (Spain)',1,1,0),(18223,0,118143,'Felgueiras','Portugal','PT','Felgueiras (Portugal)',1,1,0),(18224,9309,118144,'Felidhu Atoll','Maldives','MV','Felidhu Atoll (Maldives)',1,1,0),(18225,0,118145,'Feluy','Belgium','BE','Feluy (Belgium)',1,1,0),(18226,0,118146,'Fenais da luz','Portugal','PT','Fenais da luz (Portugal)',1,1,0),(18227,0,118147,'Fenghuangxian','China','CN','Fenghuangxian (China)',1,1,0),(18228,0,118148,'Ferch','Germany','DE','Ferch (Germany)',1,1,0),(18229,9348,118149,'Fermoy','Ireland','IE','Fermoy (Ireland)',1,1,0),(18230,0,118150,'Ferndown','United Kingdom','UK','Ferndown (United Kingdom)',1,1,0),(18231,0,118151,'Ferreiros de Tendais','Portugal','PT','Ferreiros de Tendais (Portugal)',1,1,0),(18232,9388,118152,'Feyzin','France','FR','Feyzin (France)',1,1,0),(18233,0,118153,'Fideris','Switzerland','CH','Fideris (Switzerland)',1,1,0),(18234,9401,118154,'Fife','United States of America','US','Fife (United States of America)',1,1,0),(18235,0,118155,'Figline Val d\'Arno','Italy','IT','Figline Val d\'Arno (Italy)',1,1,0),(18236,9408,118156,'Figueira da Foz','Portugal','PT','Figueira da Foz (Portugal)',1,1,0),(18237,0,118157,'Figueira de Castelo Rodrigo','Portugal','PT','Figueira de Castelo Rodrigo (Portugal)',1,1,0),(18238,9410,118158,'Figueres','Spain','ES','Figueres (Spain)',1,1,0),(18239,9427,118159,'Findel','Luxembourg','LU','Findel (Luxembourg)',1,1,0),(18240,0,118160,'Finikounda','Greece','GR','Finikounda (Greece)',1,1,0),(18241,0,118161,'Finlandia','Colombia','CO','Finlandia (Colombia)',1,1,0),(18242,9445,118162,'Finnsnes','Norway','NO','Finnsnes (Norway)',1,1,0),(18243,0,118163,'Finsterbergen','Germany','DE','Finsterbergen (Germany)',1,1,0),(18244,9449,118164,'Finsterwalde','Germany','DE','Finsterwalde (Germany)',1,1,0),(18245,0,118165,'Firgas','Spain','ES','Firgas (Spain)',1,1,0),(18246,0,118166,'Fischach','Germany','DE','Fischach (Germany)',1,1,0),(18247,0,118167,'Fischbach (Friedrichshafen)','Germany','DE','Fischbach (Friedrichshafen) (Germany)',1,1,0),(18248,0,118168,'Fish Creek','United States of America','US','Fish Creek (United States of America)',1,1,0),(18249,0,118169,'Fishguard','United Kingdom','UK','Fishguard (United Kingdom)',1,1,0),(18250,0,118170,'Fisken?s','Denmark','DK','Fisken?s (Denmark)',1,1,0),(18251,0,118171,'Flat Rock','United States of America','US','Flat Rock (United States of America)',1,1,0),(18252,0,118172,'Flers-en-Escrebieux','France','FR','Flers-en-Escrebieux (France)',1,1,0),(18253,0,118173,'Floh-Seligenthal','Germany','DE','Floh-Seligenthal (Germany)',1,1,0),(18254,0,118174,'Flookburgh','United Kingdom','UK','Flookburgh (United Kingdom)',1,1,0),(18255,9540,118175,'Floral Park','United States of America','US','Floral Park (United States of America)',1,1,0),(18256,9551,118176,'Flores','Indonesia','ID','Flores (Indonesia)',1,1,0),(18257,9554,118177,'Floresville','United States of America','US','Floresville (United States of America)',1,1,0),(18258,0,118178,'Floridia','Italy','IT','Floridia (Italy)',1,1,0),(18259,0,118179,'Fluhli','Switzerland','CH','Fluhli (Switzerland)',1,1,0),(18260,9577,118180,'Fluminimaggiore','Italy','IT','Fluminimaggiore (Italy)',1,1,0),(18261,9587,118181,'Fodele','Greece','GR','Fodele (Greece)',1,1,0),(18262,9597,118182,'Folgarida','Italy','IT','Folgarida (Italy)',1,1,0),(18263,9602,118183,'Folkston','United States of America','US','Folkston (United States of America)',1,1,0),(18264,0,118184,'Fondotoce di Verbania','Italy','IT','Fondotoce di Verbania (Italy)',1,1,0),(18265,0,118185,'Fontenay-le-Comte','France','FR','Fontenay-le-Comte (France)',1,1,0),(18266,9642,118186,'Forcarei','Spain','ES','Forcarei (Spain)',1,1,0),(18267,0,118187,'Forest','United Kingdom','UK','Forest (United Kingdom)',1,1,0),(18268,0,118188,'Forio-Citara','Italy','IT','Forio-Citara (Italy)',1,1,0),(18269,0,118189,'Forolach','Austria','AT','Forolach (Austria)',1,1,0),(18270,0,118190,'Forres','United Kingdom','UK','Forres (United Kingdom)',1,1,0),(18271,9684,118191,'Forrest City','United States of America','US','Forrest City (United States of America)',1,1,0),(18272,30974,118192,'Fort Atkinson','United States of America','US','Fort Atkinson (United States of America)',1,1,0),(18273,30984,118193,'Fort Collins','United States of America','US','Fort Collins (United States of America)',1,1,0),(18274,30986,118194,'Fort Davis','United States of America','US','Fort Davis (United States of America)',1,1,0),(18275,0,118195,'Fort MacLeod','Canada','CA','Fort MacLeod (Canada)',1,1,0),(18276,0,118196,'Fort Saskatchewan','Canada','CA','Fort Saskatchewan (Canada)',1,1,0),(18277,0,118197,'Fortingall','United Kingdom','UK','Fortingall (United Kingdom)',1,1,0),(18278,0,118198,'Fortuna','Spain','ES','Fortuna (Spain)',1,1,0),(18279,0,118199,'Fountain Valley','United States of America','US','Fountain Valley (United States of America)',1,1,0),(18280,9726,118200,'Fources','France','FR','Fources (France)',1,1,0),(18281,9730,118201,'Fourways','South Africa','ZA','Fourways (South Africa)',1,1,0),(18282,9745,118202,'Frackville','United States of America','US','Frackville (United States of America)',1,1,0),(18283,0,118203,'Frades','Portugal','PT','Frades (Portugal)',1,1,0),(18284,9746,118204,'Fraga','Spain','ES','Fraga (Spain)',1,1,0),(18285,0,118205,'Fraisse-sur-Agout','France','FR','Fraisse-sur-Agout (France)',1,1,0),(18286,0,118206,'Frances Lake','Canada','CA','Frances Lake (Canada)',1,1,0),(18287,0,118207,'Francisco Beltrao','Brazil','BR','Francisco Beltrao (Brazil)',1,1,0),(18288,0,118208,'Frankenhain','Germany','DE','Frankenhain (Germany)',1,1,0),(18289,0,118209,'Frankenried','Germany','DE','Frankenried (Germany)',1,1,0),(18290,0,118210,'Frankfurt on the Oder','Germany','DE','Frankfurt on the Oder (Germany)',1,1,0),(18291,0,118211,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18292,9766,118212,'Franklinton','United States of America','US','Franklinton (United States of America)',1,1,0),(18293,9785,118213,'Frauenkirchen','Austria','AT','Frauenkirchen (Austria)',1,1,0),(18294,9792,118214,'Fredericia','Denmark','DK','Fredericia (Denmark)',1,1,0),(18295,9803,118215,'Fredersdorf','Germany','DE','Fredersdorf (Germany)',1,1,0),(18296,9809,118216,'Freedom','United States of America','US','Freedom (United States of America)',1,1,0),(18297,0,118217,'Freigericht','Germany','DE','Freigericht (Germany)',1,1,0),(18298,0,118218,'Fremantle','Australia','AU','Fremantle (Australia)',1,1,0),(18299,9834,118219,'Fremont','United States of America','US','Fremont (United States of America)',1,1,0),(18300,0,118220,'French Village','Canada','CA','French Village (Canada)',1,1,0),(18301,9840,118221,'Freren','Germany','DE','Freren (Germany)',1,1,0),(18302,0,118222,'Freshwater','United Kingdom','UK','Freshwater (United Kingdom)',1,1,0),(18303,0,118223,'Fresnay-sur-Sarthe','France','FR','Fresnay-sur-Sarthe (France)',1,1,0),(18304,9845,118224,'Fresnes','France','FR','Fresnes (France)',1,1,0),(18305,0,118225,'Freyung','Germany','DE','Freyung (Germany)',1,1,0),(18306,9863,118226,'Friedrichsdorf','Germany','DE','Friedrichsdorf (Germany)',1,1,0),(18307,0,118227,'Friedrichskoog','Germany','DE','Friedrichskoog (Germany)',1,1,0),(18308,0,118228,'Eygalieres','France','FR','Eygalieres (France)',1,1,0),(18309,0,118229,'Eystrup','Germany','DE','Eystrup (Germany)',1,1,0),(18310,30960,118230,'Eze','France','FR','Eze (France)',1,1,0),(18311,0,118231,'Fabro','Italy','IT','Fabro (Italy)',1,1,0),(18312,0,118232,'Fahrdorf','Germany','DE','Fahrdorf (Germany)',1,1,0),(18313,0,118233,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(18314,9143,118234,'Fairhaven','Canada','CA','Fairhaven (Canada)',1,1,0),(18315,9148,118235,'Fairlee','United States of America','US','Fairlee (United States of America)',1,1,0),(18316,9156,118236,'Faisalabad','Pakistan','PK','Faisalabad (Pakistan)',1,1,0),(18317,0,118237,'Fajara','Gambia','GM','Fajara (Gambia)',1,1,0),(18318,9166,118238,'Falaen','Belgium','BE','Falaen (Belgium)',1,1,0),(18319,0,118239,'Faleide - Stryn','Norway','NO','Faleide - Stryn (Norway)',1,1,0),(18320,9193,118240,'Falmouth','United States of America','US','Falmouth (United States of America)',1,1,0),(18321,0,118241,'Famara','Spain','ES','Famara (Spain)',1,1,0),(18322,0,118242,'Fanari','Greece','GR','Fanari (Greece)',1,1,0),(18323,0,118243,'Fano-Torrette','Italy','IT','Fano-Torrette (Italy)',1,1,0),(18324,0,118244,'Fanusa','Italy','IT','Fanusa (Italy)',1,1,0),(18325,0,118245,'Farmingdale','United States of America','US','Farmingdale (United States of America)',1,1,0),(18326,0,118246,'Farmington Hills','United States of America','US','Farmington Hills (United States of America)',1,1,0),(18327,9241,118247,'Faro','Portugal','PT','Faro (Portugal)',1,1,0),(18328,0,118248,'Faro de Cullera','Spain','ES','Faro de Cullera (Spain)',1,1,0),(18329,0,118249,'Fasoula','Cyprus','CY','Fasoula (Cyprus)',1,1,0),(18330,9263,118250,'Fauglia','Italy','IT','Fauglia (Italy)',1,1,0),(18331,9272,118251,'Faverges','France','FR','Faverges (France)',1,1,0),(18332,0,118252,'Fedderwardersiel','Germany','DE','Fedderwardersiel (Germany)',1,1,0),(18333,0,118253,'Fehring','Austria','AT','Fehring (Austria)',1,1,0),(18334,0,118254,'Feistritz am Wechsel','Austria','AT','Feistritz am Wechsel (Austria)',1,1,0),(18335,9299,118255,'Felanitx','Spain','ES','Felanitx (Spain)',1,1,0),(18336,9301,118256,'Feldbach','Austria','AT','Feldbach (Austria)',1,1,0),(18337,0,118257,'Feldkirchen (Landkreis Munchen)','Germany','DE','Feldkirchen (Landkreis Munchen) (Germany)',1,1,0),(18338,0,118258,'Fell','Germany','DE','Fell (Germany)',1,1,0),(18339,9325,118259,'Fenis','Italy','IT','Fenis (Italy)',1,1,0),(18340,0,118260,'Feodossija','Ukraine','UA','Feodossija (Ukraine)',1,1,0),(18341,9340,118261,'Fergus Falls','United States of America','US','Fergus Falls (United States of America)',1,1,0),(18342,9345,118262,'Ferme-Neuve','Canada','CA','Ferme-Neuve (Canada)',1,1,0),(18343,0,118263,'Fernes','Spain','ES','Fernes (Spain)',1,1,0),(18344,9356,118264,'Ferney-Voltaire','France','FR','Ferney-Voltaire (France)',1,1,0),(18345,9359,118265,'Fernie','Canada','CA','Fernie (Canada)',1,1,0),(18346,0,118266,'Ferreira do Zezere','Portugal','PT','Ferreira do Zezere (Portugal)',1,1,0),(18347,9380,118267,'Fethiye','Turkey','TR','Fethiye (Turkey)',1,1,0),(18348,0,118268,'Fethiye-Calis','Turkey','TR','Fethiye-Calis (Turkey)',1,1,0),(18349,0,118269,'Feusdorf','Germany','DE','Feusdorf (Germany)',1,1,0),(18350,9390,118270,'Fianarantsoa','Madagascar','MG','Fianarantsoa (Madagascar)',1,1,0),(18351,9395,118271,'Fieberbrunn','Austria','AT','Fieberbrunn (Austria)',1,1,0),(18352,0,118272,'Fieschertal','Switzerland','CH','Fieschertal (Switzerland)',1,1,0),(18353,9421,118273,'Filzbach','Switzerland','CH','Filzbach (Switzerland)',1,1,0),(18354,9428,118274,'Findlay','United States of America','US','Findlay (United States of America)',1,1,0),(18355,9438,118275,'Finisterre','Spain','ES','Finisterre (Spain)',1,1,0),(18356,9439,118276,'Finkenberg','Austria','AT','Finkenberg (Austria)',1,1,0),(18357,9452,118277,'Fiorano Modenese','Italy','IT','Fiorano Modenese (Italy)',1,1,0),(18358,0,118278,'Fishriver Canyon','Namibia','NA','Fishriver Canyon (Namibia)',1,1,0),(18359,0,118279,'Fiskebackskil','Sweden','SE','Fiskebackskil (Sweden)',1,1,0),(18360,0,118280,'Fj?rland','Norway','NO','Fj?rland (Norway)',1,1,0),(18361,0,118281,'Fjora - Valldal','Norway','NO','Fjora - Valldal (Norway)',1,1,0),(18362,9493,118282,'Flacey','France','FR','Flacey (France)',1,1,0),(18363,9494,118283,'Flachau','Austria','AT','Flachau (Austria)',1,1,0),(18364,0,118284,'Flagey-Echezeaux','France','FR','Flagey-Echezeaux (France)',1,1,0),(18365,9501,118285,'Flamanville','France','FR','Flamanville (France)',1,1,0),(18366,0,118286,'Flattach','Austria','AT','Flattach (Austria)',1,1,0),(18367,0,118287,'Flavon','Italy','IT','Flavon (Italy)',1,1,0),(18368,0,118288,'Flichity','United Kingdom','UK','Flichity (United Kingdom)',1,1,0),(18369,9528,118289,'Flims','Switzerland','CH','Flims (Switzerland)',1,1,0),(18370,0,118290,'Flint','United States of America','US','Flint (United States of America)',1,1,0),(18371,0,118291,'Flitwick','United Kingdom','UK','Flitwick (United Kingdom)',1,1,0),(18372,9552,118292,'Flores','Guatemala','GT','Flores (Guatemala)',1,1,0),(18373,9558,118293,'Florida','Uruguay','UY','Florida (Uruguay)',1,1,0),(18374,9559,118294,'Florida City','United States of America','US','Florida City (United States of America)',1,1,0),(18375,0,118295,'Florissant','United States of America','US','Florissant (United States of America)',1,1,0),(18376,9564,118296,'Floro','Norway','NO','Floro (Norway)',1,1,0),(18377,0,118297,'Florsheim am Main','Germany','DE','Florsheim am Main (Germany)',1,1,0),(18378,9569,118298,'Flowery Branch','United States of America','US','Flowery Branch (United States of America)',1,1,0),(18379,9572,118299,'Fludir','Iceland','IS','Fludir (Iceland)',1,1,0),(18380,9583,118300,'Foca','Turkey','TR','Foca (Turkey)',1,1,0),(18381,9592,118301,'Foiano della Chiana','Italy','IT','Foiano della Chiana (Italy)',1,1,0),(18382,0,118302,'Follinge','Sweden','SE','Follinge (Sweden)',1,1,0),(18383,9605,118303,'Folly Beach','United States of America','US','Folly Beach (United States of America)',1,1,0),(18384,0,118304,'Fonbeauzard','France','FR','Fonbeauzard (France)',1,1,0),(18385,0,118305,'Fonni','Italy','IT','Fonni (Italy)',1,1,0),(18386,9618,118306,'Fontanil-Cornillon','France','FR','Fontanil-Cornillon (France)',1,1,0),(18387,0,118307,'Fontenai-sur-Orne','France','FR','Fontenai-sur-Orne (France)',1,1,0),(18388,0,118308,'Fontenay-sur-Loing','France','FR','Fontenay-sur-Loing (France)',1,1,0),(18389,9627,118309,'Fontenay-Tresigny','France','FR','Fontenay-Tresigny (France)',1,1,0),(18390,0,118310,'Fontenoy-le-Chateau','France','FR','Fontenoy-le-Chateau (France)',1,1,0),(18391,0,118311,'Forbach','Germany','DE','Forbach (Germany)',1,1,0),(18392,0,118312,'Forcall','Spain','ES','Forcall (Spain)',1,1,0),(18393,9641,118313,'Forcalquier','France','FR','Forcalquier (France)',1,1,0),(18394,0,118314,'Forchtenstein','Austria','AT','Forchtenstein (Austria)',1,1,0),(18395,30972,118315,'Fords','United States of America','US','Fords (United States of America)',1,1,0),(18396,0,118316,'Forest Lake','United States of America','US','Forest Lake (United States of America)',1,1,0),(18397,0,118317,'Forest Row','United Kingdom','UK','Forest Row (United Kingdom)',1,1,0),(18398,0,118318,'Forges','France','FR','Forges (France)',1,1,0),(18399,9665,118319,'Foristell','United States of America','US','Foristell (United States of America)',1,1,0),(18400,9670,118320,'Formello','Italy','IT','Formello (Italy)',1,1,0),(18401,9674,118321,'Formiga','Brazil','BR','Formiga (Brazil)',1,1,0),(18402,9675,118322,'Formigal','Spain','ES','Formigal (Spain)',1,1,0),(18403,0,118323,'Formigine','Italy','IT','Formigine (Italy)',1,1,0),(18404,0,118324,'Forsyth Island','New Zealand','NZ','Forsyth Island (New Zealand)',1,1,0),(18405,31001,118325,'Fort Madison','United States of America','US','Fort Madison (United States of America)',1,1,0),(18406,31004,118326,'Fort Mill','United States of America','US','Fort Mill (United States of America)',1,1,0),(18407,31009,118327,'Fort Myers','United States of America','US','Fort Myers (United States of America)',1,1,0),(18408,0,118328,'Fort Saint John','Canada','CA','Fort Saint John (Canada)',1,1,0),(18409,0,118329,'Fort Sill','United States of America','US','Fort Sill (United States of America)',1,1,0),(18410,31024,118330,'Fort Sumner','United States of America','US','Fort Sumner (United States of America)',1,1,0),(18411,0,118331,'Fourni (Agais)','Greece','GR','Fourni (Agais) (Greece)',1,1,0),(18412,0,118332,'Fours','France','FR','Fours (France)',1,1,0),(18413,9733,118333,'Fox Creek','Canada','CA','Fox Creek (Canada)',1,1,0),(18414,0,118334,'Foxborough','United States of America','US','Foxborough (United States of America)',1,1,0),(18415,0,118335,'Forest Park','United States of America','US','Forest Park (United States of America)',1,1,0),(18416,9688,118336,'Forssa','Finland','FI','Forssa (Finland)',1,1,0),(18417,0,118337,'Forst','Germany','DE','Forst (Germany)',1,1,0),(18418,9690,118338,'Forsyth','United States of America','US','Forsyth (United States of America)',1,1,0),(18419,0,118339,'Fort Klamath','United States of America','US','Fort Klamath (United States of America)',1,1,0),(18420,31008,118340,'Fort Morgan','United States of America','US','Fort Morgan (United States of America)',1,1,0),(18421,31015,118341,'Fort Pierce','United States of America','US','Fort Pierce (United States of America)',1,1,0),(18422,0,118342,'Fort Rucker','United States of America','US','Fort Rucker (United States of America)',1,1,0),(18423,0,118343,'Fort Washington','United States of America','US','Fort Washington (United States of America)',1,1,0),(18424,31031,118344,'Fort Worth','United States of America','US','Fort Worth (United States of America)',1,1,0),(18425,9694,118345,'Fortaleza','Brazil','BR','Fortaleza (Brazil)',1,1,0),(18426,9706,118346,'Foshan','China','CN','Foshan (China)',1,1,0),(18427,9708,118347,'Fossano','Italy','IT','Fossano (Italy)',1,1,0),(18428,9710,118348,'Fosso','Italy','IT','Fosso (Italy)',1,1,0),(18429,9729,118349,'Fourques','France','FR','Fourques (France)',1,1,0),(18430,9749,118350,'Framura','Italy','IT','Framura (Italy)',1,1,0),(18431,0,118351,'Frankenau','Austria','AT','Frankenau (Austria)',1,1,0),(18432,0,118352,'Frankenberg /Sa.','Germany','DE','Frankenberg /Sa. (Germany)',1,1,0),(18433,9762,118353,'Frankenmuth','United States of America','US','Frankenmuth (United States of America)',1,1,0),(18434,0,118354,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18435,0,118355,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18436,9771,118356,'Franschhoek','South Africa','ZA','Franschhoek (South Africa)',1,1,0),(18437,9778,118357,'Fraser','United States of America','US','Fraser (United States of America)',1,1,0),(18438,0,118358,'Fraser Island','Australia','AU','Fraser Island (Australia)',1,1,0),(18439,0,118359,'Frauenwald','Germany','DE','Frauenwald (Germany)',1,1,0),(18440,9796,118360,'Fredericton','Canada','CA','Fredericton (Canada)',1,1,0),(18441,9797,118361,'Frederiksberg','Denmark','DK','Frederiksberg (Denmark)',1,1,0),(18442,0,118362,'Frederiksoord','Netherlands','NL','Frederiksoord (Netherlands)',1,1,0),(18443,0,118363,'Frederiksted','U.S. Virgin Islands',NULL,'Frederiksted (U.S. Virgin Islands)',1,1,0),(18444,0,118364,'Freeport City','Bahamas','BS','Freeport City (Bahamas)',1,1,0),(18445,0,118365,'Freetz','Germany','DE','Freetz (Germany)',1,1,0),(18446,9826,118366,'Freilassing','Germany','DE','Freilassing (Germany)',1,1,0),(18447,9848,118367,'Fresno','United States of America','US','Fresno (United States of America)',1,1,0),(18448,0,118368,'Freudenberg (Oberpfalz)','Germany','DE','Freudenberg (Oberpfalz) (Germany)',1,1,0),(18449,0,118369,'Friedeburg (Ostfriesland)','Germany','DE','Friedeburg (Ostfriesland) (Germany)',1,1,0),(18450,9865,118370,'Friedrichshafen','Germany','DE','Friedrichshafen (Germany)',1,1,0),(18451,0,118371,'Friesoythe','Germany','DE','Friesoythe (Germany)',1,1,0),(18452,0,118372,'Frkeci','Croatia','HR','Frkeci (Croatia)',1,1,0),(18453,0,118373,'Froidchapelle','Belgium','BE','Froidchapelle (Belgium)',1,1,0),(18454,0,118374,'Frome','United Kingdom','UK','Frome (United Kingdom)',1,1,0),(18455,0,118375,'Fromentine','France','FR','Fromentine (France)',1,1,0),(18456,0,118376,'Fronteira','Portugal','PT','Fronteira (Portugal)',1,1,0),(18457,0,118377,'Frontera','Spain','ES','Frontera (Spain)',1,1,0),(18458,0,118378,'Froson','Sweden','SE','Froson (Sweden)',1,1,0),(18459,9905,118379,'Ftan','Switzerland','CH','Ftan (Switzerland)',1,1,0),(18460,9917,118380,'Fuensanta','Spain','ES','Fuensanta (Spain)',1,1,0),(18461,0,118381,'Fuente-Alamo','Spain','ES','Fuente-Alamo (Spain)',1,1,0),(18462,9929,118382,'Fuerteventura','Spain','ES','Fuerteventura (Spain)',1,1,0),(18463,9946,118383,'Fukuoka','Japan','JP','Fukuoka (Japan)',1,1,0),(18464,0,118384,'Fulford','United Kingdom','UK','Fulford (United Kingdom)',1,1,0),(18465,9953,118385,'Fullerton','United States of America','US','Fullerton (United States of America)',1,1,0),(18466,0,118386,'Funasdalen','Sweden','SE','Funasdalen (Sweden)',1,1,0),(18467,9963,118387,'Funchal','Portugal','PT','Funchal (Portugal)',1,1,0),(18468,9969,118388,'Furano','Japan','JP','Furano (Japan)',1,1,0),(18469,0,118389,'Furigen','Switzerland','CH','Furigen (Switzerland)',1,1,0),(18470,0,118390,'Futaleufu','Chile','CL','Futaleufu (Chile)',1,1,0),(18471,0,118391,'Gaafu Dhaalu Atoll','Maldives','MV','Gaafu Dhaalu Atoll (Maldives)',1,1,0),(18472,10000,118392,'Gabicce Mare','Italy','IT','Gabicce Mare (Italy)',1,1,0),(18473,0,118393,'Gable','United States of America','US','Gable (United States of America)',1,1,0),(18474,10004,118394,'Gadbjerg','Denmark','DK','Gadbjerg (Denmark)',1,1,0),(18475,0,118395,'Gagnac sur Cere','France','FR','Gagnac sur Cere (France)',1,1,0),(18476,10018,118396,'Gaillac','France','FR','Gaillac (France)',1,1,0),(18477,0,118397,'Gainesville','United States of America','US','Gainesville (United States of America)',1,1,0),(18478,0,118398,'Gaiole','Italy','IT','Gaiole (Italy)',1,1,0),(18479,10028,118399,'Gais','Switzerland','CH','Gais (Switzerland)',1,1,0),(18480,10030,118400,'Gaithersburg','United States of America','US','Gaithersburg (United States of America)',1,1,0),(18481,0,118401,'Gajac','Croatia','HR','Gajac (Croatia)',1,1,0),(18482,0,118402,'Galende','Spain','ES','Galende (Spain)',1,1,0),(18483,10047,118403,'Galera','Spain','ES','Galera (Spain)',1,1,0),(18484,0,118404,'Gallentin','Germany','DE','Gallentin (Germany)',1,1,0),(18485,10078,118405,'Gamaliel','United States of America','US','Gamaliel (United States of America)',1,1,0),(18486,0,118406,'Gamarde-les-Bains','France','FR','Gamarde-les-Bains (France)',1,1,0),(18487,0,118407,'Gammelby','Germany','DE','Gammelby (Germany)',1,1,0),(18488,0,118408,'Ganschow','Germany','DE','Ganschow (Germany)',1,1,0),(18489,10136,118409,'Gardnerville','United States of America','US','Gardnerville (United States of America)',1,1,0),(18490,0,118410,'Gartz (Oder)','Germany','DE','Gartz (Oder) (Germany)',1,1,0),(18491,10179,118411,'Gary','United States of America','US','Gary (United States of America)',1,1,0),(18492,10182,118412,'Gas City','United States of America','US','Gas City (United States of America)',1,1,0),(18493,0,118413,'Gasponi','Italy','IT','Gasponi (Italy)',1,1,0),(18494,10191,118414,'Gastonia','United States of America','US','Gastonia (United States of America)',1,1,0),(18495,10197,118415,'Gatesville','United States of America','US','Gatesville (United States of America)',1,1,0),(18496,10207,118416,'Gaucin','Spain','ES','Gaucin (Spain)',1,1,0),(18497,0,118417,'Gaula','Portugal','PT','Gaula (Portugal)',1,1,0),(18498,0,118418,'Gavardo','Italy','IT','Gavardo (Italy)',1,1,0),(18499,10216,118419,'Gavarnie','France','FR','Gavarnie (France)',1,1,0),(18500,0,118420,'Gavle','Sweden','SE','Gavle (Sweden)',1,1,0),(18501,0,118421,'Gazi','Kenya','KE','Gazi (Kenya)',1,1,0),(18502,10234,118422,'Gdynia','Poland','PL','Gdynia (Poland)',1,1,0),(18503,0,118423,'Gebertingen','Switzerland','CH','Gebertingen (Switzerland)',1,1,0),(18504,0,118424,'Gees','Netherlands','NL','Gees (Netherlands)',1,1,0),(18505,0,118425,'Gefira Plaka','Greece','GR','Gefira Plaka (Greece)',1,1,0),(18506,0,118426,'Geiselhoring','Germany','DE','Geiselhoring (Germany)',1,1,0),(18507,10248,118427,'Geisenheim','Germany','DE','Geisenheim (Germany)',1,1,0),(18508,0,118428,'Geisfeld','Germany','DE','Geisfeld (Germany)',1,1,0),(18509,10249,118429,'Geislingen an der Steige','Germany','DE','Geislingen an der Steige (Germany)',1,1,0),(18510,0,118430,'Geldern','Germany','DE','Geldern (Germany)',1,1,0),(18511,0,118431,'Geltorf','Germany','DE','Geltorf (Germany)',1,1,0),(18512,10264,118432,'Gemenos','France','FR','Gemenos (France)',1,1,0),(18513,0,118433,'Gemund','Germany','DE','Gemund (Germany)',1,1,0),(18514,10276,118434,'Geneva','Switzerland','CH','Geneva (Switzerland)',1,1,0),(18515,0,118435,'Geneva','United States of America','US','Geneva (United States of America)',1,1,0),(18516,10285,118436,'Gensac','France','FR','Gensac (France)',1,1,0),(18517,10295,118437,'George Town','Malaysia','MY','George Town (Malaysia)',1,1,0),(18518,0,118438,'Georgetown','United States of America','US','Georgetown (United States of America)',1,1,0),(18519,0,118439,'Gera Lario','Italy','IT','Gera Lario (Italy)',1,1,0),(18520,10320,118440,'Gerena','Spain','ES','Gerena (Spain)',1,1,0),(18521,10330,118441,'Gerlos','Austria','AT','Gerlos (Austria)',1,1,0),(18522,10335,118442,'Germersheim','Germany','DE','Germersheim (Germany)',1,1,0),(18523,10350,118443,'Gersthofen','Germany','DE','Gersthofen (Germany)',1,1,0),(18524,10356,118444,'Getaria','Spain','ES','Getaria (Spain)',1,1,0),(18525,0,118445,'Getzville','United States of America','US','Getzville (United States of America)',1,1,0),(18526,10364,118446,'Geyserville','United States of America','US','Geyserville (United States of America)',1,1,0),(18527,9386,118447,'Fey','France','FR','Fey (France)',1,1,0),(18528,9412,118448,'Fiji','Fiji Islands','FJ','Fiji (Fiji Islands)',1,1,0),(18529,0,118449,'Filisur','Switzerland','CH','Filisur (Switzerland)',1,1,0),(18530,9422,118450,'Filzmoos','Austria','AT','Filzmoos (Austria)',1,1,0),(18531,0,118451,'Fimela','Senegal','SN','Fimela (Senegal)',1,1,0),(18532,9423,118452,'Finale Ligure','Italy','IT','Finale Ligure (Italy)',1,1,0),(18533,9435,118453,'Finikas','Greece','GR','Finikas (Greece)',1,1,0),(18534,0,118454,'Fintel','Germany','DE','Fintel (Germany)',1,1,0),(18535,0,118455,'Firestone','United States of America','US','Firestone (United States of America)',1,1,0),(18536,0,118456,'Fischbach/Rhon','Germany','DE','Fischbach/Rhon (Germany)',1,1,0),(18537,9477,118457,'Fitchburg','United States of America','US','Fitchburg (United States of America)',1,1,0),(18538,0,118458,'Fivemiletown','United Kingdom','UK','Fivemiletown (United Kingdom)',1,1,0),(18539,9499,118459,'Flaine','France','FR','Flaine (France)',1,1,0),(18540,0,118460,'Flassans-sur-Issole','France','FR','Flassans-sur-Issole (France)',1,1,0),(18541,0,118461,'Flaurling','Austria','AT','Flaurling (Austria)',1,1,0),(18542,0,118462,'Flecheiras','Brazil','BR','Flecheiras (Brazil)',1,1,0),(18543,9514,118463,'Flen','Sweden','SE','Flen (Sweden)',1,1,0),(18544,0,118464,'Fleringen','Germany','DE','Fleringen (Germany)',1,1,0),(18545,9520,118465,'Fleurville','France','FR','Fleurville (France)',1,1,0),(18546,0,118466,'Flieth-Stegelitz','Germany','DE','Flieth-Stegelitz (Germany)',1,1,0),(18547,0,118467,'Flint','United Kingdom','UK','Flint (United Kingdom)',1,1,0),(18548,0,118468,'Flintsbach am Inn','Germany','DE','Flintsbach am Inn (Germany)',1,1,0),(18549,9534,118469,'Flirsch','Austria','AT','Flirsch (Austria)',1,1,0),(18550,0,118470,'Florenz','Italy','IT','Florenz (Italy)',1,1,0),(18551,9556,118471,'Florianopolis','Brazil','BR','Florianopolis (Brazil)',1,1,0),(18552,0,118472,'Flo? (Oberpfalz)','Germany','DE','Flo? (Oberpfalz) (Germany)',1,1,0),(18553,0,118473,'Fockelberg','Germany','DE','Fockelberg (Germany)',1,1,0),(18554,0,118474,'Fohnsdorf','Austria','AT','Fohnsdorf (Austria)',1,1,0),(18555,9593,118475,'Foix','France','FR','Foix (France)',1,1,0),(18556,9594,118476,'Folegandros','Greece','GR','Folegandros (Greece)',1,1,0),(18557,0,118477,'Fondo','Italy','IT','Fondo (Italy)',1,1,0),(18558,0,118478,'Fonteno','Italy','IT','Fonteno (Italy)',1,1,0),(18559,9628,118479,'Fontevraud','France','FR','Fontevraud (France)',1,1,0),(18560,9634,118480,'Fontvieille','France','FR','Fontvieille (France)',1,1,0),(18561,0,118481,'Forest City','United States of America','US','Forest City (United States of America)',1,1,0),(18562,9676,118482,'Formosa','Argentina','AR','Formosa (Argentina)',1,1,0),(18563,9680,118483,'Fornells','Spain','ES','Fornells (Spain)',1,1,0),(18564,0,118484,'Forni di Sopra','Italy','IT','Forni di Sopra (Italy)',1,1,0),(18565,0,118485,'Forstinning','Germany','DE','Forstinning (Germany)',1,1,0),(18566,0,118486,'Forsyth','United States of America','US','Forsyth (United States of America)',1,1,0),(18567,30978,118487,'Fort Benton','United States of America','US','Fort Benton (United States of America)',1,1,0),(18568,30979,118488,'Fort Bragg','United States of America','US','Fort Bragg (United States of America)',1,1,0),(18569,31000,118489,'Fort Lupton','United States of America','US','Fort Lupton (United States of America)',1,1,0),(18570,31005,118490,'Fort Mitchell','United States of America','US','Fort Mitchell (United States of America)',1,1,0),(18571,31007,118491,'Fort Montgomery','United States of America','US','Fort Montgomery (United States of America)',1,1,0),(18572,0,118492,'Fort Nottingham','South Africa','ZA','Fort Nottingham (South Africa)',1,1,0),(18573,31012,118493,'Fort Oglethorpe','United States of America','US','Fort Oglethorpe (United States of America)',1,1,0),(18574,31029,118494,'Fort Wayne','United States of America','US','Fort Wayne (United States of America)',1,1,0),(18575,31036,118495,'Forte dei Marmi','Italy','IT','Forte dei Marmi (Italy)',1,1,0),(18576,0,118496,'Foucherans','France','FR','Foucherans (France)',1,1,0),(18577,0,118497,'Fougax-et-Barrineuf','France','FR','Fougax-et-Barrineuf (France)',1,1,0),(18578,9720,118498,'Fountain','United States of America','US','Fountain (United States of America)',1,1,0),(18579,0,118499,'Fourka','Greece','GR','Fourka (Greece)',1,1,0),(18580,0,118500,'Foxford','Ireland','IE','Foxford (Ireland)',1,1,0),(18581,0,118501,'Foz do Arelho','Portugal','PT','Foz do Arelho (Portugal)',1,1,0),(18582,9756,118502,'Franconia','United States of America','US','Franconia (United States of America)',1,1,0),(18583,0,118503,'Francorchamps','Belgium','BE','Francorchamps (Belgium)',1,1,0),(18584,0,118504,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18585,9765,118505,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18586,0,118506,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18587,0,118507,'Frauental','Austria','AT','Frauental (Austria)',1,1,0),(18588,9791,118508,'Fredensborg','Denmark','DK','Fredensborg (Denmark)',1,1,0),(18589,9794,118509,'Fredericksburg','United States of America','US','Fredericksburg (United States of America)',1,1,0),(18590,0,118510,'Fredericksburg','United States of America','US','Fredericksburg (United States of America)',1,1,0),(18591,0,118511,'Freemans Village','Antigua & Barbuda','AG','Freemans Village (Antigua & Barbuda)',1,1,0),(18592,9813,118512,'Freeport','United States of America','US','Freeport (United States of America)',1,1,0),(18593,0,118513,'Freeport','United States of America','US','Freeport (United States of America)',1,1,0),(18594,9819,118514,'Fregene','Italy','IT','Fregene (Italy)',1,1,0),(18595,9827,118515,'Freinberg','Austria','AT','Freinberg (Austria)',1,1,0),(18596,0,118516,'Freinsheim','Germany','DE','Freinsheim (Germany)',1,1,0),(18597,0,118517,'Freixo','Portugal','PT','Freixo (Portugal)',1,1,0),(18598,9833,118518,'Frejus','France','FR','Frejus (France)',1,1,0),(18599,0,118519,'Fremont','United States of America','US','Fremont (United States of America)',1,1,0),(18600,0,118520,'Freudenberg (Baden)','Germany','DE','Freudenberg (Baden) (Germany)',1,1,0),(18601,9851,118521,'Freudenstadt','Germany','DE','Freudenstadt (Germany)',1,1,0),(18602,0,118522,'Fridolfing','Germany','DE','Fridolfing (Germany)',1,1,0),(18603,0,118523,'Friedenfels','Germany','DE','Friedenfels (Germany)',1,1,0),(18604,0,118524,'Frimley Green','United Kingdom','UK','Frimley Green (United Kingdom)',1,1,0),(18605,9877,118525,'Fripp Island','United States of America','US','Fripp Island (United States of America)',1,1,0),(18606,9879,118526,'Friville-Escarbotin','France','FR','Friville-Escarbotin (France)',1,1,0),(18607,9887,118527,'Frontera Corozal','Mexico','MX','Frontera Corozal (Mexico)',1,1,0),(18608,0,118528,'Frontino','Italy','IT','Frontino (Italy)',1,1,0),(18609,9891,118529,'Frosinone','Italy','IT','Frosinone (Italy)',1,1,0),(18610,9901,118530,'Fryeburg','United States of America','US','Fryeburg (United States of America)',1,1,0),(18611,9923,118531,'Fuentes de Leon','Spain','ES','Fuentes de Leon (Spain)',1,1,0),(18612,0,118532,'Fuentespina','Spain','ES','Fuentespina (Spain)',1,1,0),(18613,0,118533,'Fuqing','China','CN','Fuqing (China)',1,1,0),(18614,0,118534,'Fursteneck','Germany','DE','Fursteneck (Germany)',1,1,0),(18615,9978,118535,'Furtwangen','Germany','DE','Furtwangen (Germany)',1,1,0),(18616,9990,118536,'Fuyang','China','CN','Fuyang (China)',1,1,0),(18617,0,118537,'Gaal','Austria','AT','Gaal (Austria)',1,1,0),(18618,0,118538,'Gager','Germany','DE','Gager (Germany)',1,1,0),(18619,0,118539,'Gages-le-Haut','France','FR','Gages-le-Haut (France)',1,1,0),(18620,10015,118540,'Gagliano del Capo','Italy','IT','Gagliano del Capo (Italy)',1,1,0),(18621,0,118541,'Galaroza','Spain','ES','Galaroza (Spain)',1,1,0),(18622,10040,118542,'Galax','United States of America','US','Galax (United States of America)',1,1,0),(18623,10042,118543,'Galaxidi','Greece','GR','Galaxidi (Greece)',1,1,0),(18624,0,118544,'Galleno','Italy','IT','Galleno (Italy)',1,1,0),(18625,10068,118545,'Galloway','United States of America','US','Galloway (United States of America)',1,1,0),(18626,10069,118546,'Gallup','United States of America','US','Gallup (United States of America)',1,1,0),(18627,10070,118547,'Galluzzo','Italy','IT','Galluzzo (Italy)',1,1,0),(18628,0,118548,'Galmpton',NULL,NULL,'Galmpton ()',1,1,0),(18629,10077,118549,'Gamagori','Japan','JP','Gamagori (Japan)',1,1,0),(18630,0,118550,'Gambier - Love Beach','Bahamas','BS','Gambier - Love Beach (Bahamas)',1,1,0),(18631,10091,118551,'Gamboa','Panama','PA','Gamboa (Panama)',1,1,0),(18632,0,118552,'Gamsberg','Namibia','NA','Gamsberg (Namibia)',1,1,0),(18633,0,118553,'Gan','Maldives','MV','Gan (Maldives)',1,1,0),(18634,10097,118554,'Gander','Canada','CA','Gander (Canada)',1,1,0),(18635,0,118555,'Gangga Island','Indonesia','ID','Gangga Island (Indonesia)',1,1,0),(18636,0,118556,'Gangtey','Bhutan','BT','Gangtey (Bhutan)',1,1,0),(18637,0,118557,'Fichtelberg','Germany','DE','Fichtelberg (Germany)',1,1,0),(18638,9392,118558,'Ficksburg','South Africa','ZA','Ficksburg (South Africa)',1,1,0),(18639,0,118559,'Ficulle','Italy','IT','Ficulle (Italy)',1,1,0),(18640,30969,118560,'Field','Canada','CA','Field (Canada)',1,1,0),(18641,0,118561,'Figareto','France','FR','Figareto (France)',1,1,0),(18642,0,118562,'Figeholm','Sweden','SE','Figeholm (Sweden)',1,1,0),(18643,0,118563,'Figueiro dos Vinhos','Portugal','PT','Figueiro dos Vinhos (Portugal)',1,1,0),(18644,9411,118564,'Figueretas','Spain','ES','Figueretas (Spain)',1,1,0),(18645,0,118565,'Filey','United Kingdom','UK','Filey (United Kingdom)',1,1,0),(18646,9416,118566,'Filipstad','Sweden','SE','Filipstad (Sweden)',1,1,0),(18647,9429,118567,'Findley Lake','United States of America','US','Findley Lake (United States of America)',1,1,0),(18648,9431,118568,'Finestrat','Spain','ES','Finestrat (Spain)',1,1,0),(18649,0,118569,'Finowfurt','Germany','DE','Finowfurt (Germany)',1,1,0),(18650,0,118570,'Fionnay','Switzerland','CH','Fionnay (Switzerland)',1,1,0),(18651,9486,118571,'Fiumicino','Italy','IT','Fiumicino (Italy)',1,1,0),(18652,9491,118572,'Fjerritslev','Denmark','DK','Fjerritslev (Denmark)',1,1,0),(18653,0,118573,'Flat Rock','United States of America','US','Flat Rock (United States of America)',1,1,0),(18654,0,118574,'Flattnitz','Austria','AT','Flattnitz (Austria)',1,1,0),(18655,9516,118575,'Flesherton','Canada','CA','Flesherton (Canada)',1,1,0),(18656,9525,118576,'Flic en Flac','Mauritius','MU','Flic en Flac (Mauritius)',1,1,0),(18657,0,118577,'Flonheim','Germany','DE','Flonheim (Germany)',1,1,0),(18658,0,118578,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(18659,0,118579,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(18660,0,118580,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(18661,0,118581,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(18662,0,118582,'Florence-Signa','Italy','IT','Florence-Signa (Italy)',1,1,0),(18663,0,118583,'Floresti','Romania','RO','Floresti (Romania)',1,1,0),(18664,9562,118584,'Florina','Greece','GR','Florina (Greece)',1,1,0),(18665,0,118585,'Flumet','France','FR','Flumet (France)',1,1,0),(18666,0,118586,'Flums','Switzerland','CH','Flums (Switzerland)',1,1,0),(18667,9580,118587,'Flushing','United States of America','US','Flushing (United States of America)',1,1,0),(18668,0,118588,'Flyford Flavell','United Kingdom','UK','Flyford Flavell (United Kingdom)',1,1,0),(18669,9591,118589,'Fogliano Redipuglia','Italy','IT','Fogliano Redipuglia (Italy)',1,1,0),(18670,0,118590,'Folelli','France','FR','Folelli (France)',1,1,0),(18671,0,118591,'Fondachello di Mascali','Italy','IT','Fondachello di Mascali (Italy)',1,1,0),(18672,0,118592,'Fondarella','Spain','ES','Fondarella (Spain)',1,1,0),(18673,0,118593,'Font-Romeu-Odeillo-Via','France','FR','Font-Romeu-Odeillo-Via (France)',1,1,0),(18674,9637,118594,'Foothill Ranch','United States of America','US','Foothill Ranch (United States of America)',1,1,0),(18675,9646,118595,'Forchheim','Germany','DE','Forchheim (Germany)',1,1,0),(18676,9647,118596,'Forde','Norway','NO','Forde (Norway)',1,1,0),(18677,9649,118597,'Fordongianus','Italy','IT','Fordongianus (Italy)',1,1,0),(18678,9673,118598,'Formia','Italy','IT','Formia (Italy)',1,1,0),(18679,0,118599,'Formigueres','France','FR','Formigueres (France)',1,1,0),(18680,30987,118600,'Fort Dodge','United States of America','US','Fort Dodge (United States of America)',1,1,0),(18681,31011,118601,'Fort Myers Beach','United States of America','US','Fort Myers Beach (United States of America)',1,1,0),(18682,31013,118602,'Fort Payne','United States of America','US','Fort Payne (United States of America)',1,1,0),(18683,31017,118603,'Fort Polk','United States of America','US','Fort Polk (United States of America)',1,1,0),(18684,0,118604,'Fort-du-Plasne','France','FR','Fort-du-Plasne (France)',1,1,0),(18685,0,118605,'Fossdal','Norway','NO','Fossdal (Norway)',1,1,0),(18686,9711,118606,'Fosston','United States of America','US','Fosston (United States of America)',1,1,0),(18687,9712,118607,'Fos-sur-Mer','France','FR','Fos-sur-Mer (France)',1,1,0),(18688,9713,118608,'Foster','Australia','AU','Foster (Australia)',1,1,0),(18689,9715,118609,'Fostoria','United States of America','US','Fostoria (United States of America)',1,1,0),(18690,0,118610,'Fouday','France','FR','Fouday (France)',1,1,0),(18691,0,118611,'Fouriesburg','South Africa','ZA','Fouriesburg (South Africa)',1,1,0),(18692,0,118612,'Fourni','Greece','GR','Fourni (Greece)',1,1,0),(18693,0,118613,'Fowey','United Kingdom','UK','Fowey (United Kingdom)',1,1,0),(18694,9742,118614,'Foz do Iguacu','Brazil','BR','Foz do Iguacu (Brazil)',1,1,0),(18695,0,118615,'Frama','Spain','ES','Frama (Spain)',1,1,0),(18696,0,118616,'Frankenfels','Austria','AT','Frankenfels (Austria)',1,1,0),(18697,9761,118617,'Frankenmarkt','Austria','AT','Frankenmarkt (Austria)',1,1,0),(18698,0,118618,'Franking','Austria','AT','Franking (Austria)',1,1,0),(18699,0,118619,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(18700,0,118620,'Franz Josef Glacier','New Zealand','NZ','Franz Josef Glacier (New Zealand)',1,1,0),(18701,0,118621,'Franzensfeste','Italy','IT','Franzensfeste (Italy)',1,1,0),(18702,9800,118622,'Frederikshavn','Denmark','DK','Frederikshavn (Denmark)',1,1,0),(18703,9807,118623,'Fredrikstad','Norway','NO','Fredrikstad (Norway)',1,1,0),(18704,9818,118624,'Fregate Island','Seychelles','SC','Fregate Island (Seychelles)',1,1,0),(18705,0,118625,'Freiburg-Elbe','Germany','DE','Freiburg-Elbe (Germany)',1,1,0),(18706,0,118626,'Fremont','United States of America','US','Fremont (United States of America)',1,1,0),(18707,9838,118627,'French River','Canada','CA','French River (Canada)',1,1,0),(18708,0,118628,'Freudeneck-Wangenbourg','France','FR','Freudeneck-Wangenbourg (France)',1,1,0),(18709,9852,118629,'Freyburg','Germany','DE','Freyburg (Germany)',1,1,0),(18710,0,118630,'Frick','Switzerland','CH','Frick (Switzerland)',1,1,0),(18711,0,118631,'Frickenhausen','Germany','DE','Frickenhausen (Germany)',1,1,0),(18712,0,118632,'Frickingen','Germany','DE','Frickingen (Germany)',1,1,0),(18713,9855,118633,'Friday Harbor','United States of America','US','Friday Harbor (United States of America)',1,1,0),(18714,9857,118634,'Friedberg','Germany','DE','Friedberg (Germany)',1,1,0),(18715,0,118635,'Frielendorf','Germany','DE','Frielendorf (Germany)',1,1,0),(18716,0,118636,'Friesdorf','Germany','DE','Friesdorf (Germany)',1,1,0),(18717,0,118637,'Frikes','Greece','GR','Frikes (Greece)',1,1,0),(18718,0,118638,'Frogmore','United Kingdom','UK','Frogmore (United Kingdom)',1,1,0),(18719,9885,118639,'Front Royal','United States of America','US','Front Royal (United States of America)',1,1,0),(18720,9915,118640,'Fuengirola','Spain','ES','Fuengirola (Spain)',1,1,0),(18721,9919,118641,'Fuenteheridos','Spain','ES','Fuenteheridos (Spain)',1,1,0),(18722,9924,118642,'Fuentespalda','Spain','ES','Fuentespalda (Spain)',1,1,0),(18723,0,118643,'Fuji','Japan','JP','Fuji (Japan)',1,1,0),(18724,9945,118644,'Fukui','Japan','JP','Fukui (Japan)',1,1,0),(18725,9947,118645,'Fukushima','Japan','JP','Fukushima (Japan)',1,1,0),(18726,0,118646,'Fulgatore','Italy','IT','Fulgatore (Italy)',1,1,0),(18727,0,118647,'Fulufjellet','Norway','NO','Fulufjellet (Norway)',1,1,0),(18728,9958,118648,'Fumel','France','FR','Fumel (France)',1,1,0),(18729,0,118649,'Funzi Island','Kenya','KE','Funzi Island (Kenya)',1,1,0),(18730,0,118650,'Furamoos','Germany','DE','Furamoos (Germany)',1,1,0),(18731,9976,118651,'Furstenfeldbruck','Germany','DE','Furstenfeldbruck (Germany)',1,1,0),(18732,0,118652,'Furstenzell','Germany','DE','Furstenzell (Germany)',1,1,0),(18733,0,118653,'Furth bei Gottweig','Austria','AT','Furth bei Gottweig (Austria)',1,1,0),(18734,9981,118654,'Fuschl am See','Austria','AT','Fuschl am See (Austria)',1,1,0),(18735,9984,118655,'Fusina','Italy','IT','Fusina (Italy)',1,1,0),(18736,0,118656,'Fussy','France','FR','Fussy (France)',1,1,0),(18737,0,118657,'Futuroscope','France','FR','Futuroscope (France)',1,1,0),(18738,0,118658,'Gaansbai','South Africa','ZA','Gaansbai (South Africa)',1,1,0),(18739,10003,118659,'Gabrovo','Bulgaria','BG','Gabrovo (Bulgaria)',1,1,0),(18740,0,118660,'Gaerwen','United Kingdom','UK','Gaerwen (United Kingdom)',1,1,0),(18741,0,118661,'Gafsa','Tunisia','TN','Gafsa (Tunisia)',1,1,0),(18742,10014,118662,'Gaggi','Italy','IT','Gaggi (Italy)',1,1,0),(18743,10016,118663,'Gahanna','United States of America','US','Gahanna (United States of America)',1,1,0),(18744,0,118664,'Gaienhofen','Germany','DE','Gaienhofen (Germany)',1,1,0),(18745,0,118665,'Gaillard','France','FR','Gaillard (France)',1,1,0),(18746,0,118666,'Gainesville','United States of America','US','Gainesville (United States of America)',1,1,0),(18747,0,118667,'Gazligol','Turkey','TR','Gazligol (Turkey)',1,1,0),(18748,10235,118668,'Gearhart','United States of America','US','Gearhart (United States of America)',1,1,0),(18749,10239,118669,'Geel','Belgium','BE','Geel (Belgium)',1,1,0),(18750,10240,118670,'Geelong','Australia','AU','Geelong (Australia)',1,1,0),(18751,10245,118671,'Geiranger','Norway','NO','Geiranger (Norway)',1,1,0),(18752,0,118672,'Geisingen','Germany','DE','Geisingen (Germany)',1,1,0),(18753,0,118673,'Gemmano','Italy','IT','Gemmano (Italy)',1,1,0),(18754,0,118674,'Gemunden am Main','Germany','DE','Gemunden am Main (Germany)',1,1,0),(18755,10274,118675,'Geneuille','France','FR','Geneuille (France)',1,1,0),(18756,10299,118676,'Georgenthal','Germany','DE','Georgenthal (Germany)',1,1,0),(18757,10300,118677,'Georgetown','Canada','CA','Georgetown (Canada)',1,1,0),(18758,10309,118678,'Gera','Germany','DE','Gera (Germany)',1,1,0),(18759,10312,118679,'Geraldine','New Zealand','NZ','Geraldine (New Zealand)',1,1,0),(18760,0,118680,'Gerani','Greece','GR','Gerani (Greece)',1,1,0),(18761,10321,118681,'Gerenzano','Italy','IT','Gerenzano (Italy)',1,1,0),(18762,10334,118682,'Germering','Germany','DE','Germering (Germany)',1,1,0),(18763,0,118683,'Germ-Louron','France','FR','Germ-Louron (France)',1,1,0),(18764,10339,118684,'Gero','Japan','JP','Gero (Japan)',1,1,0),(18765,0,118685,'Gerolzhofen','Germany','DE','Gerolzhofen (Germany)',1,1,0),(18766,10348,118686,'Gersau','Switzerland','CH','Gersau (Switzerland)',1,1,0),(18767,10351,118687,'Gerzat','France','FR','Gerzat (France)',1,1,0),(18768,10353,118688,'Geseke','Germany','DE','Geseke (Germany)',1,1,0),(18769,10358,118689,'Gettysburg','United States of America','US','Gettysburg (United States of America)',1,1,0),(18770,10374,118690,'Ghent','Belgium','BE','Ghent (Belgium)',1,1,0),(18771,0,118691,'Ghimbav','Romania','RO','Ghimbav (Romania)',1,1,0),(18772,0,118692,'Gialos','Greece','GR','Gialos (Greece)',1,1,0),(18773,0,118693,'Giaveno','Italy','IT','Giaveno (Italy)',1,1,0),(18774,0,118694,'Gibb River Road','Australia','AU','Gibb River Road (Australia)',1,1,0),(18775,0,118695,'Gibralgalia','Spain','ES','Gibralgalia (Spain)',1,1,0),(18776,0,118696,'Giens Peninsula','France','FR','Giens Peninsula (France)',1,1,0),(18777,10400,118697,'Giez','France','FR','Giez (France)',1,1,0),(18778,0,118698,'Gila','United States of America','US','Gila (United States of America)',1,1,0),(18779,10410,118699,'Gila Bend','United States of America','US','Gila Bend (United States of America)',1,1,0),(18780,0,118700,'Gileston','United Kingdom','UK','Gileston (United Kingdom)',1,1,0),(18781,10435,118701,'Gimli','Canada','CA','Gimli (Canada)',1,1,0),(18782,10438,118702,'Gimouille','France','FR','Gimouille (France)',1,1,0),(18783,0,118703,'Ginosa Marina','Italy','IT','Ginosa Marina (Italy)',1,1,0),(18784,10442,118704,'Ginosar','Israel','IL','Ginosar (Israel)',1,1,0),(18785,0,118705,'Ginowan-shi','Japan','JP','Ginowan-shi (Japan)',1,1,0),(18786,0,118706,'Ginzling','Austria','AT','Ginzling (Austria)',1,1,0),(18787,10451,118707,'Girasole','Italy','IT','Girasole (Italy)',1,1,0),(18788,10457,118708,'Gisborne','New Zealand','NZ','Gisborne (New Zealand)',1,1,0),(18789,10468,118709,'Giustino','Italy','IT','Giustino (Italy)',1,1,0),(18790,0,118710,'Givet','France','FR','Givet (France)',1,1,0),(18791,0,118711,'Gjerstad','Norway','NO','Gjerstad (Norway)',1,1,0),(18792,31050,118712,'Glade Spring','United States of America','US','Glade Spring (United States of America)',1,1,0),(18793,0,118713,'Glandore','Ireland','IE','Glandore (Ireland)',1,1,0),(18794,0,118714,'Glandorf','Germany','DE','Glandorf (Germany)',1,1,0),(18795,10497,118715,'Glass House Mountains','Australia','AU','Glass House Mountains (Australia)',1,1,0),(18796,0,118716,'Glavani','Croatia','HR','Glavani (Croatia)',1,1,0),(18797,0,118717,'Glen Burnie','United States of America','US','Glen Burnie (United States of America)',1,1,0),(18798,0,118718,'Glen Mills','United States of America','US','Glen Mills (United States of America)',1,1,0),(18799,0,118720,'Glendale','United States of America','US','Glendale (United States of America)',1,1,0),(18800,0,118721,'Glendale',NULL,NULL,'Glendale ()',1,1,0),(18801,10514,118722,'Glendambo','Australia','AU','Glendambo (Australia)',1,1,0),(18802,0,118723,'Glenic','France','FR','Glenic (France)',1,1,0),(18803,0,118724,'Glenmalure','Ireland','IE','Glenmalure (Ireland)',1,1,0),(18804,0,118725,'Glossop','United Kingdom','UK','Glossop (United Kingdom)',1,1,0),(18805,10559,118726,'Glostrup','Denmark','DK','Glostrup (Denmark)',1,1,0),(18806,10568,118727,'Gmund','Austria','AT','Gmund (Austria)',1,1,0),(18807,0,118728,'Gnoien','Germany','DE','Gnoien (Germany)',1,1,0),(18808,0,118729,'Gobabis','Namibia','NA','Gobabis (Namibia)',1,1,0),(18809,0,118730,'Godelleta','Spain','ES','Godelleta (Spain)',1,1,0),(18810,10590,118731,'Goderich','Canada','CA','Goderich (Canada)',1,1,0),(18811,0,118732,'Gohrde','Germany','DE','Gohrde (Germany)',1,1,0),(18812,0,118734,'Gola','Greece','GR','Gola (Greece)',1,1,0),(18813,0,118735,'Gold Beach','United States of America','US','Gold Beach (United States of America)',1,1,0),(18814,0,118736,'Goldegg','Austria','AT','Goldegg (Austria)',1,1,0),(18815,0,118737,'Goldsborough','United Kingdom','UK','Goldsborough (United Kingdom)',1,1,0),(18816,0,118738,'Goltoft','Germany','DE','Goltoft (Germany)',1,1,0),(18817,0,118739,'Gomoa Fetteh','Ghana','GH','Gomoa Fetteh (Ghana)',1,1,0),(18818,0,118740,'Gonarezhou Nationalpark','Zimbabwe','ZW','Gonarezhou Nationalpark (Zimbabwe)',1,1,0),(18819,10650,118741,'Gondar','Ethiopia','ET','Gondar (Ethiopia)',1,1,0),(18820,10683,118742,'Goppingen','Germany','DE','Goppingen (Germany)',1,1,0),(18821,10698,118743,'Gorey','Ireland','IE','Gorey (Ireland)',1,1,0),(18822,0,118744,'Gorey','United Kingdom','UK','Gorey (United Kingdom)',1,1,0),(18823,10709,118745,'Gorman','United States of America','US','Gorman (United States of America)',1,1,0),(18824,0,118746,'Gorongosa','Mozambique','MZ','Gorongosa (Mozambique)',1,1,0),(18825,10717,118747,'Gorraiz','Spain','ES','Gorraiz (Spain)',1,1,0),(18826,10721,118748,'Gosford','Australia','AU','Gosford (Australia)',1,1,0),(18827,10724,118749,'Goslar','Germany','DE','Goslar (Germany)',1,1,0),(18828,0,118750,'Gostynin','Poland','PL','Gostynin (Poland)',1,1,0),(18829,0,118751,'Gottmadingen','Germany','DE','Gottmadingen (Germany)',1,1,0),(18830,0,118752,'Gottsdorf','Germany','DE','Gottsdorf (Germany)',1,1,0),(18831,10740,118753,'Gotzens','Austria','AT','Gotzens (Austria)',1,1,0),(18832,10741,118754,'Gotzis','Austria','AT','Gotzis (Austria)',1,1,0),(18833,0,118755,'Gourock','United Kingdom','UK','Gourock (United Kingdom)',1,1,0),(18834,0,118756,'Gouves','Greece','GR','Gouves (Greece)',1,1,0),(18835,10757,118757,'Gouvieux','France','FR','Gouvieux (France)',1,1,0),(18836,10768,118758,'Gozon','Spain','ES','Gozon (Spain)',1,1,0),(18837,10780,118759,'Gracias','Honduras','HN','Gracias (Honduras)',1,1,0),(18838,0,118760,'Graciosa','Portugal','PT','Graciosa (Portugal)',1,1,0),(18839,0,118761,'Gradac','Slovenia','SI','Gradac (Slovenia)',1,1,0),(18840,0,118762,'Gradisca d\'Isonzo','Italy','IT','Gradisca d\'Isonzo (Italy)',1,1,0),(18841,10786,118763,'Grado','Italy','IT','Grado (Italy)',1,1,0),(18842,0,118764,'Grado del Pico','Spain','ES','Grado del Pico (Spain)',1,1,0),(18843,0,118765,'Grafenwiesen','Germany','DE','Grafenwiesen (Germany)',1,1,0),(18844,0,118766,'Grafton','Canada','CA','Grafton (Canada)',1,1,0),(18845,10796,118767,'Graham','United States of America','US','Graham (United States of America)',1,1,0),(18846,10799,118768,'Grainau','Germany','DE','Grainau (Germany)',1,1,0),(18847,10803,118769,'Gramat','France','FR','Gramat (France)',1,1,0),(18848,0,118770,'Gramsbergen','Netherlands','NL','Gramsbergen (Netherlands)',1,1,0),(18849,10812,118771,'Granada Hills','United States of America','US','Granada Hills (United States of America)',1,1,0),(18850,0,118772,'Granard','Ireland','IE','Granard (Ireland)',1,1,0),(18851,10823,118773,'Grand Cayman','Cayman Islands','KY','Grand Cayman (Cayman Islands)',1,1,0),(18852,0,118774,'Grand Port','Mauritius','MU','Grand Port (Mauritius)',1,1,0),(18853,0,118775,'Grand Village','France','FR','Grand Village (France)',1,1,0),(18854,0,118776,'Grand’Combe-Chateleu','France','FR','Grand’Combe-Chateleu (France)',1,1,0),(18855,0,118777,'Grandchamp (Haute Marne)','France','FR','Grandchamp (Haute Marne) (France)',1,1,0),(18856,0,118778,'Grande Comore','Comoros','KM','Grande Comore (Comoros)',1,1,0),(18857,0,118779,'Grand-Remous','Canada','CA','Grand-Remous (Canada)',1,1,0),(18858,9032,118780,'Eufaula','United States of America','US','Eufaula (United States of America)',1,1,0),(18859,9034,118781,'Eugene','United States of America','US','Eugene (United States of America)',1,1,0),(18860,9035,118782,'Eugenie-les-Bains','France','FR','Eugenie-les-Bains (France)',1,1,0),(18861,9039,118783,'Eunice','United States of America','US','Eunice (United States of America)',1,1,0),(18862,9047,118784,'Euskirchen','Germany','DE','Euskirchen (Germany)',1,1,0),(18863,9050,118785,'Eutaw','United States of America','US','Eutaw (United States of America)',1,1,0),(18864,0,118786,'Evansville','United States of America','US','Evansville (United States of America)',1,1,0),(18865,0,118787,'Evesham','United Kingdom','UK','Evesham (United Kingdom)',1,1,0),(18866,9075,118788,'Evry','France','FR','Evry (France)',1,1,0),(18867,9090,118789,'Extertal','Germany','DE','Extertal (Germany)',1,1,0),(18868,9094,118790,'Eybens','France','FR','Eybens (France)',1,1,0),(18869,9136,118791,'Fairborn','United States of America','US','Fairborn (United States of America)',1,1,0),(18870,9137,118792,'Fairburn','United States of America','US','Fairburn (United States of America)',1,1,0),(18871,0,118793,'Fairfax','United States of America','US','Fairfax (United States of America)',1,1,0),(18872,0,118794,'Fairview','United States of America','US','Fairview (United States of America)',1,1,0),(18873,0,118795,'Faja de Baixo','Portugal','PT','Faja de Baixo (Portugal)',1,1,0),(18874,0,118796,'Falassarna','Greece','GR','Falassarna (Greece)',1,1,0),(18875,9183,118797,'Falkenstein','Germany','DE','Falkenstein (Germany)',1,1,0),(18876,9192,118798,'Falls Creek','Australia','AU','Falls Creek (Australia)',1,1,0),(18877,0,118799,'Fanano','Italy','IT','Fanano (Italy)',1,1,0),(18878,9230,118800,'Farmer City','United States of America','US','Farmer City (United States of America)',1,1,0),(18879,0,118801,'Farnborough','United Kingdom','UK','Farnborough (United Kingdom)',1,1,0),(18880,0,118802,'Farndon','United Kingdom','UK','Farndon (United Kingdom)',1,1,0),(18881,9245,118803,'Faros','Greece','GR','Faros (Greece)',1,1,0),(18882,9256,118804,'Farum','Denmark','DK','Farum (Denmark)',1,1,0),(18883,9260,118806,'Fatima','Portugal','PT','Fatima (Portugal)',1,1,0),(18884,0,118807,'Fatima','Canada','CA','Fatima (Canada)',1,1,0),(18885,9266,118808,'Faulquemont','France','FR','Faulquemont (France)',1,1,0),(18886,9268,118809,'Fauske','Norway','NO','Fauske (Norway)',1,1,0),(18887,0,118810,'Faversham','United Kingdom','UK','Faversham (United Kingdom)',1,1,0),(18888,9281,118811,'Fayence','France','FR','Fayence (France)',1,1,0),(18889,0,118812,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(18890,0,118813,'Federal Way','United States of America','US','Federal Way (United States of America)',1,1,0),(18891,9300,118814,'Feldafing','Germany','DE','Feldafing (Germany)',1,1,0),(18892,0,118815,'Feliceto','France','FR','Feliceto (France)',1,1,0),(18893,9347,118816,'Fermoselle','Spain','ES','Fermoselle (Spain)',1,1,0),(18894,9363,118817,'Ferrara','Italy','IT','Ferrara (Italy)',1,1,0),(18895,9375,118818,'Fes','Morocco','MA','Fes (Morocco)',1,1,0),(18896,9385,118819,'Feusisberg','Switzerland','CH','Feusisberg (Switzerland)',1,1,0),(18897,30968,118820,'Fiano Romano','Italy','IT','Fiano Romano (Italy)',1,1,0),(18898,0,118821,'Fierbois','France','FR','Fierbois (France)',1,1,0),(18899,9399,118822,'Fiesole','Italy','IT','Fiesole (Italy)',1,1,0),(18900,9405,118823,'Figari','France','FR','Figari (France)',1,1,0),(18901,9413,118824,'Filderstadt','Germany','DE','Filderstadt (Germany)',1,1,0),(18902,0,118825,'Finedon','United Kingdom','UK','Finedon (United Kingdom)',1,1,0),(18903,9436,118826,'Finike','Turkey','TR','Finike (Turkey)',1,1,0),(18904,0,118827,'Finkenbach','Germany','DE','Finkenbach (Germany)',1,1,0),(18905,9446,118828,'Fino del Monte','Italy','IT','Fino del Monte (Italy)',1,1,0),(18906,0,118829,'Fiquefleur-Equainville','France','FR','Fiquefleur-Equainville (France)',1,1,0),(18907,0,118830,'Fiscal','Spain','ES','Fiscal (Spain)',1,1,0),(18908,0,118831,'Fischbach','Austria','AT','Fischbach (Austria)',1,1,0),(18909,9476,118832,'Fiss','Austria','AT','Fiss (Austria)',1,1,0),(18910,9480,118833,'Fitzgerald','United States of America','US','Fitzgerald (United States of America)',1,1,0),(18911,9490,118834,'Fivizzano','Italy','IT','Fivizzano (Italy)',1,1,0),(18912,0,118835,'Fixin','France','FR','Fixin (France)',1,1,0),(18913,9495,118836,'Fladnitz an der Teichalm','Austria','AT','Fladnitz an der Teichalm (Austria)',1,1,0),(18914,9497,118837,'Flagler Beach','United States of America','US','Flagler Beach (United States of America)',1,1,0),(18915,9508,118838,'Flayosc','France','FR','Flayosc (France)',1,1,0),(18916,0,118839,'Flechtingen','Germany','DE','Flechtingen (Germany)',1,1,0),(18917,0,118840,'Flecken Zechlin','Germany','DE','Flecken Zechlin (Germany)',1,1,0),(18918,0,118841,'Fleet','United Kingdom','UK','Fleet (United Kingdom)',1,1,0),(18919,9512,118842,'Flemington','United States of America','US','Flemington (United States of America)',1,1,0),(18920,0,118843,'Fliess','Austria','AT','Fliess (Austria)',1,1,0),(18921,0,118844,'Flinders Island','Australia','AU','Flinders Island (Australia)',1,1,0),(18922,9533,118845,'Flintstone','United States of America','US','Flintstone (United States of America)',1,1,0),(18923,9538,118846,'Flora','United States of America','US','Flora (United States of America)',1,1,0),(18924,9539,118847,'Florac','France','FR','Florac (France)',1,1,0),(18925,0,118848,'Flossenburg','Germany','DE','Flossenburg (Germany)',1,1,0),(18926,9568,118849,'Floure','France','FR','Floure (France)',1,1,0),(18927,9570,118850,'Flowood','United States of America','US','Flowood (United States of America)',1,1,0),(18928,0,118851,'Flueli-Ranft','Switzerland','CH','Flueli-Ranft (Switzerland)',1,1,0),(18929,0,118852,'Fockbek','Germany','DE','Fockbek (Germany)',1,1,0),(18930,0,118853,'Fockendorf','Germany','DE','Fockendorf (Germany)',1,1,0),(18931,9586,118854,'Focsani','Romania','RO','Focsani (Romania)',1,1,0),(18932,9595,118855,'Foley','United States of America','US','Foley (United States of America)',1,1,0),(18933,9599,118856,'Foligno','Italy','IT','Foligno (Italy)',1,1,0),(18934,9604,118857,'Follonica','Italy','IT','Follonica (Italy)',1,1,0),(18935,0,118858,'Fondettes','France','FR','Fondettes (France)',1,1,0),(18936,9611,118859,'Fontainebleau','France','FR','Fontainebleau (France)',1,1,0),(18937,0,118860,'Fontana','United States of America','US','Fontana (United States of America)',1,1,0),(18938,0,118861,'Fontana Dam','United States of America','US','Fontana Dam (United States of America)',1,1,0),(18939,0,118862,'Fontanafredda','Italy','IT','Fontanafredda (Italy)',1,1,0),(18940,0,118863,'Fontanella','Austria','AT','Fontanella (Austria)',1,1,0),(18941,9633,118864,'Fontjoncouse','France','FR','Fontjoncouse (France)',1,1,0),(18942,9639,118865,'Forbach','France','FR','Forbach (France)',1,1,0),(18943,0,118866,'Forchtenberg','Germany','DE','Forchtenberg (Germany)',1,1,0),(18944,0,118867,'Fordingbridge','United Kingdom','UK','Fordingbridge (United Kingdom)',1,1,0),(18945,9656,118868,'Forestburgh','United States of America','US','Forestburgh (United States of America)',1,1,0),(18946,9661,118869,'Forges-les-Eaux','France','FR','Forges-les-Eaux (France)',1,1,0),(18947,9668,118870,'Forli','Italy','IT','Forli (Italy)',1,1,0),(18948,0,118871,'Fornaci di Barga','Italy','IT','Fornaci di Barga (Italy)',1,1,0),(18949,9681,118872,'Forney','United States of America','US','Forney (United States of America)',1,1,0),(18950,0,118873,'Fornillos de Aliste','Spain','ES','Fornillos de Aliste (Spain)',1,1,0),(18951,0,118874,'Forst (Lausitz)','Germany','DE','Forst (Lausitz) (Germany)',1,1,0),(18952,0,118875,'Forstau','Austria','AT','Forstau (Austria)',1,1,0),(18953,0,118876,'Fort Augustus','United Kingdom','UK','Fort Augustus (United Kingdom)',1,1,0),(18954,0,118877,'Fort Frances','Canada','CA','Fort Frances (Canada)',1,1,0),(18955,31016,118878,'Fort Pierre','United States of America','US','Fort Pierre (United States of America)',1,1,0),(18956,31020,118879,'Fort Scott','United States of America','US','Fort Scott (United States of America)',1,1,0),(18957,0,118880,'Fort St. James','Canada','CA','Fort St. James (Canada)',1,1,0),(18958,31023,118881,'Fort Stockton','United States of America','US','Fort Stockton (United States of America)',1,1,0),(18959,0,118882,'Fort Williams','United Kingdom','UK','Fort Williams (United Kingdom)',1,1,0),(18960,9701,118883,'Fort-Mahon-Plage','France','FR','Fort-Mahon-Plage (France)',1,1,0),(18961,9714,118884,'Foster City','United States of America','US','Foster City (United States of America)',1,1,0),(18962,0,118885,'Fouesnant','France','FR','Fouesnant (France)',1,1,0),(18963,0,118886,'Foum-Zguid','Morocco','MA','Foum-Zguid (Morocco)',1,1,0),(18964,0,118887,'Fountain Hills','United States of America','US','Fountain Hills (United States of America)',1,1,0),(18965,0,118888,'Fournets-Luisans','France','FR','Fournets-Luisans (France)',1,1,0),(18966,9734,118889,'Fox Glacier','New Zealand','NZ','Fox Glacier (New Zealand)',1,1,0),(18967,0,118890,'Friedrichskoog-Spitze','Germany','DE','Friedrichskoog-Spitze (Germany)',1,1,0),(18968,0,118891,'Friendship Bay','St. Vincent & the Grenadines','VC','Friendship Bay (St. Vincent & the Grenadines)',1,1,0),(18969,0,118892,'Fritton','United Kingdom','UK','Fritton (United Kingdom)',1,1,0),(18970,0,118893,'Fritzlar','Germany','DE','Fritzlar (Germany)',1,1,0),(18971,0,118894,'Fromista','Spain','ES','Fromista (Spain)',1,1,0),(18972,9889,118895,'Frontignan','France','FR','Frontignan (France)',1,1,0),(18973,0,118896,'Frydlant nad Ostravici','Czech Republic','CZ','Frydlant nad Ostravici (Czech Republic)',1,1,0),(18974,9906,118897,'Ftelia','Greece','GR','Ftelia (Greece)',1,1,0),(18975,9907,118898,'Fucecchio','Italy','IT','Fucecchio (Italy)',1,1,0),(18976,9912,118899,'Fuencaliente','Spain','ES','Fuencaliente (Spain)',1,1,0),(18977,0,118900,'Fuencaliente de la Palma','Spain','ES','Fuencaliente de la Palma (Spain)',1,1,0),(18978,9918,118901,'Fuente De','Spain','ES','Fuente De (Spain)',1,1,0),(18979,0,118902,'Fugenberg','Austria','AT','Fugenberg (Austria)',1,1,0),(18980,0,118903,'Fuipiano Valle Imagna','Italy','IT','Fuipiano Valle Imagna (Italy)',1,1,0),(18981,9940,118904,'Fujikawaguchiko','Japan','JP','Fujikawaguchiko (Japan)',1,1,0),(18982,0,118905,'Fukaya','Japan','JP','Fukaya (Japan)',1,1,0),(18983,0,118906,'Fuldera','Switzerland','CH','Fuldera (Switzerland)',1,1,0),(18984,0,118907,'Fulton','United States of America','US','Fulton (United States of America)',1,1,0),(18985,9964,118908,'Fundao','Portugal','PT','Fundao (Portugal)',1,1,0),(18986,9966,118909,'Funtana','Croatia','HR','Funtana (Croatia)',1,1,0),(18987,9972,118910,'Furnari','Italy','IT','Furnari (Italy)',1,1,0),(18988,9974,118911,'Furnes','Norway','NO','Furnes (Norway)',1,1,0),(18989,9979,118912,'Fuscaldo','Italy','IT','Fuscaldo (Italy)',1,1,0),(18990,0,118913,'Fu?ach','Austria','AT','Fu?ach (Austria)',1,1,0),(18991,9989,118914,'Fuveau','France','FR','Fuveau (France)',1,1,0),(18992,9999,118915,'Gabiano','Italy','IT','Gabiano (Italy)',1,1,0),(18993,0,118916,'Gainesville','United States of America','US','Gainesville (United States of America)',1,1,0),(18994,0,118917,'Gajano','Spain','ES','Gajano (Spain)',1,1,0),(18995,0,118918,'Gal Oya Nationalpark','Sri Lanka','LK','Gal Oya Nationalpark (Sri Lanka)',1,1,0),(18996,10037,118919,'Galati','Romania','RO','Galati (Romania)',1,1,0),(18997,0,118920,'Galdar','Spain','ES','Galdar (Spain)',1,1,0),(18998,0,118921,'Gale','Portugal','PT','Gale (Portugal)',1,1,0),(18999,0,118922,'Galena Park','United States of America','US','Galena Park (United States of America)',1,1,0),(19000,10048,118923,'Galesburg','United States of America','US','Galesburg (United States of America)',1,1,0),(19001,10066,118924,'Gallivare','Sweden','SE','Gallivare (Sweden)',1,1,0),(19002,0,118925,'Gallspach','Austria','AT','Gallspach (Austria)',1,1,0),(19003,0,118926,'Gambassi Terme','Italy','IT','Gambassi Terme (Italy)',1,1,0),(19004,10092,118927,'Gambolo','Italy','IT','Gambolo (Italy)',1,1,0),(19005,0,118928,'Ganado','United States of America','US','Ganado (United States of America)',1,1,0),(19006,10111,118929,'Ganzhou','China','CN','Ganzhou (China)',1,1,0),(19007,0,118930,'Ganzi (Garze)','China','CN','Ganzi (Garze) (China)',1,1,0),(19008,31041,118931,'Garden Grove','United States of America','US','Garden Grove (United States of America)',1,1,0),(19009,10164,118932,'Garos','Spain','ES','Garos (Spain)',1,1,0),(19010,10167,118933,'Garrel','Germany','DE','Garrel (Germany)',1,1,0),(19011,0,118934,'Garriguella','Spain','ES','Garriguella (Spain)',1,1,0),(19012,0,118935,'Gars am Kamp','Austria','AT','Gars am Kamp (Austria)',1,1,0),(19013,0,118936,'Gasen','Austria','AT','Gasen (Austria)',1,1,0),(19014,10199,118937,'Gatlinburg','United States of America','US','Gatlinburg (United States of America)',1,1,0),(19015,0,118938,'Gatschach','Austria','AT','Gatschach (Austria)',1,1,0),(19016,0,118939,'Gavin','Spain','ES','Gavin (Spain)',1,1,0),(19017,10233,118940,'Gdansk','Poland','PL','Gdansk (Poland)',1,1,0),(19018,0,118941,'Gdow','Poland','PL','Gdow (Poland)',1,1,0),(19019,0,118942,'Gedinne','Belgium','BE','Gedinne (Belgium)',1,1,0),(19020,10238,118943,'Gedre','France','FR','Gedre (France)',1,1,0),(19021,0,118944,'Geeste','Germany','DE','Geeste (Germany)',1,1,0),(19022,0,118945,'Geesthacht','Germany','DE','Geesthacht (Germany)',1,1,0),(19023,0,118946,'Geierswalde','Germany','DE','Geierswalde (Germany)',1,1,0),(19024,10250,118947,'Geispolsheim','France','FR','Geispolsheim (France)',1,1,0),(19025,0,118948,'Gelendzhik','Russia','RU','Gelendzhik (Russia)',1,1,0),(19026,10259,118949,'Gelnhausen','Germany','DE','Gelnhausen (Germany)',1,1,0),(19027,10266,118950,'Genas','France','FR','Genas (France)',1,1,0),(19028,10281,118951,'Gennevilliers','France','FR','Gennevilliers (France)',1,1,0),(19029,10290,118952,'Gentofte','Denmark','DK','Gentofte (Denmark)',1,1,0),(19030,10291,118953,'Genval','Belgium','BE','Genval (Belgium)',1,1,0),(19031,0,118954,'Geoagiu-Bai','Romania','RO','Geoagiu-Bai (Romania)',1,1,0),(19032,10296,118955,'George Town','Cayman Islands','KY','George Town (Cayman Islands)',1,1,0),(19033,0,118956,'Georgetown','United States of America','US','Georgetown (United States of America)',1,1,0),(19034,0,118957,'Gera','Greece','GR','Gera (Greece)',1,1,0),(19035,10315,118958,'Gerardmer','France','FR','Gerardmer (France)',1,1,0),(19036,10324,118959,'Geria','Spain','ES','Geria (Spain)',1,1,0),(19037,0,118960,'Gerichshain','Germany','DE','Gerichshain (Germany)',1,1,0),(19038,0,118961,'Gerlitze','Austria','AT','Gerlitze (Austria)',1,1,0),(19039,0,118962,'Gernika','Spain','ES','Gernika (Spain)',1,1,0),(19040,0,118963,'Gerra (Verzasca)','Switzerland','CH','Gerra (Verzasca) (Switzerland)',1,1,0),(19041,0,118964,'Gerstungen','Germany','DE','Gerstungen (Germany)',1,1,0),(19042,0,118965,'Gerswalde- Herrenstein','Germany','DE','Gerswalde- Herrenstein (Germany)',1,1,0),(19043,0,118966,'Gertwiller','France','FR','Gertwiller (France)',1,1,0),(19044,0,118967,'Gesher HaZiv','Israel','IL','Gesher HaZiv (Israel)',1,1,0),(19045,0,118968,'Geta','Finland','FI','Geta (Finland)',1,1,0),(19046,10359,118969,'Getxo','Spain','ES','Getxo (Spain)',1,1,0),(19047,0,118970,'Geysir','Iceland','IS','Geysir (Iceland)',1,1,0),(19048,0,118971,'Ghajnsielem','Malta','MT','Ghajnsielem (Malta)',1,1,0),(19049,0,118972,'Ghasri','Malta','MT','Ghasri (Malta)',1,1,0),(19050,0,118974,'Ghirone','Switzerland','CH','Ghirone (Switzerland)',1,1,0),(19051,0,118975,'Gialiskari','Greece','GR','Gialiskari (Greece)',1,1,0),(19052,0,118976,'Gibraltar','Gibraltar',NULL,'Gibraltar (Gibraltar)',1,1,0),(19053,10392,118977,'Giddings','United States of America','US','Giddings (United States of America)',1,1,0),(19054,0,118978,'Giebelstadt','Germany','DE','Giebelstadt (Germany)',1,1,0),(19055,0,118979,'Gieckau','Germany','DE','Gieckau (Germany)',1,1,0),(19056,0,118980,'Giersdorf','Poland','PL','Giersdorf (Poland)',1,1,0),(19057,0,118981,'Gierstadt','Germany','DE','Gierstadt (Germany)',1,1,0),(19058,0,118982,'Gietrzwald','Poland','PL','Gietrzwald (Poland)',1,1,0),(19059,10414,118983,'Gilford','United States of America','US','Gilford (United States of America)',1,1,0),(19060,0,118984,'Gili Trawangan','Indonesia','ID','Gili Trawangan (Indonesia)',1,1,0),(19061,0,118985,'Gilly-les-Citeaux','France','FR','Gilly-les-Citeaux (France)',1,1,0),(19062,0,118986,'Gimhae','South Korea','KR','Gimhae (South Korea)',1,1,0),(19063,0,118987,'Gingelom','Belgium','BE','Gingelom (Belgium)',1,1,0),(19064,10446,118988,'Gioiosa Marea','Italy','IT','Gioiosa Marea (Italy)',1,1,0),(19065,0,118989,'Girvan','United Kingdom','UK','Girvan (United Kingdom)',1,1,0),(19066,0,118990,'Giudecca','Italy','IT','Giudecca (Italy)',1,1,0),(19067,0,118991,'Give','Denmark','DK','Give (Denmark)',1,1,0),(19068,10470,118992,'Giverny','France','FR','Giverny (France)',1,1,0),(19069,0,118993,'Givisiez','Switzerland','CH','Givisiez (Switzerland)',1,1,0),(19070,0,118994,'Gjern','Denmark','DK','Gjern (Denmark)',1,1,0),(19071,0,118995,'Glasson','Ireland','IE','Glasson (Ireland)',1,1,0),(19072,0,118996,'Glen Ellyn','United States of America','US','Glen Ellyn (United States of America)',1,1,0),(19073,0,118997,'Glen Rose','United States of America','US','Glen Rose (United States of America)',1,1,0),(19074,0,118998,'Glencoe','United Kingdom','UK','Glencoe (United Kingdom)',1,1,0),(19075,0,118999,'Glendale','United States of America','US','Glendale (United States of America)',1,1,0),(19076,10517,119000,'Glendora','United States of America','US','Glendora (United States of America)',1,1,0),(19077,0,119001,'Glenlivet','United Kingdom','UK','Glenlivet (United Kingdom)',1,1,0),(19078,0,119002,'Foyers','United Kingdom','UK','Foyers (United Kingdom)',1,1,0),(19079,0,119003,'Frachey','Italy','IT','Frachey (Italy)',1,1,0),(19080,0,119004,'Francavilla al Mare','Italy','IT','Francavilla al Mare (Italy)',1,1,0),(19081,9752,119005,'Francestown','United States of America','US','Francestown (United States of America)',1,1,0),(19082,0,119006,'Frankenberg (Eder)','Germany','DE','Frankenberg (Eder) (Germany)',1,1,0),(19083,0,119007,'Frankfurt am Main','Germany','DE','Frankfurt am Main (Germany)',1,1,0),(19084,9767,119008,'Frankston','Australia','AU','Frankston (Australia)',1,1,0),(19085,9770,119009,'Franqueville-Saint-Pierre','France','FR','Franqueville-Saint-Pierre (France)',1,1,0),(19086,0,119010,'Franskraal','South Africa','ZA','Franskraal (South Africa)',1,1,0),(19087,9777,119011,'Frasdorf','Germany','DE','Frasdorf (Germany)',1,1,0),(19088,0,119012,'Fraser\'s Hill','Malaysia','MY','Fraser\'s Hill (Malaysia)',1,1,0),(19089,9786,119013,'Frauenstein','Germany','DE','Frauenstein (Germany)',1,1,0),(19090,0,119014,'Frayssinet-le-Gelat','France','FR','Frayssinet-le-Gelat (France)',1,1,0),(19091,0,119015,'Freamunde','Portugal','PT','Freamunde (Portugal)',1,1,0),(19092,9815,119016,'Freer','United States of America','US','Freer (United States of America)',1,1,0),(19093,0,119017,'Freest','Germany','DE','Freest (Germany)',1,1,0),(19094,0,119018,'Fregenal de la Sierra','Spain','ES','Fregenal de la Sierra (Spain)',1,1,0),(19095,0,119019,'Freiamt','Germany','DE','Freiamt (Germany)',1,1,0),(19096,0,119020,'Freiberg am Neckar','Germany','DE','Freiberg am Neckar (Germany)',1,1,0),(19097,9823,119021,'Freidorf','Germany','DE','Freidorf (Germany)',1,1,0),(19098,9829,119022,'Freising','Germany','DE','Freising (Germany)',1,1,0),(19099,9831,119023,'Freital','Germany','DE','Freital (Germany)',1,1,0),(19100,0,119024,'Fremont','United States of America','US','Fremont (United States of America)',1,1,0),(19101,0,119025,'Freudenberg (Siegerland)','Germany','DE','Freudenberg (Siegerland) (Germany)',1,1,0),(19102,0,119026,'Friedersbach','Austria','AT','Friedersbach (Austria)',1,1,0),(19103,9860,119027,'Friedewald','Germany','DE','Friedewald (Germany)',1,1,0),(19104,0,119028,'Friedland','Germany','DE','Friedland (Germany)',1,1,0),(19105,9868,119029,'Friedrichstadt','Germany','DE','Friedrichstadt (Germany)',1,1,0),(19106,9873,119030,'Frigiliana','Spain','ES','Frigiliana (Spain)',1,1,0),(19107,0,119031,'Frohnleiten','Austria','AT','Frohnleiten (Austria)',1,1,0),(19108,0,119032,'Frombork','Poland','PL','Frombork (Poland)',1,1,0),(19109,0,119033,'Frontenhausen','Germany','DE','Frontenhausen (Germany)',1,1,0),(19110,9893,119034,'Frostburg','United States of America','US','Frostburg (United States of America)',1,1,0),(19111,9897,119035,'Frutigen','Switzerland','CH','Frutigen (Switzerland)',1,1,0),(19112,0,119036,'Frydek-Mistek','Czech Republic','CZ','Frydek-Mistek (Czech Republic)',1,1,0),(19113,9908,119037,'Fuchu','Japan','JP','Fuchu (Japan)',1,1,0),(19114,0,119038,'Fucine','Italy','IT','Fucine (Italy)',1,1,0),(19115,0,119039,'Fuentes de Bejar','Spain','ES','Fuentes de Bejar (Spain)',1,1,0),(19116,0,119040,'Fuhlendorf','Germany','DE','Fuhlendorf (Germany)',1,1,0),(19117,0,119041,'Fujairah','United Arab Emirates','AE','Fujairah (United Arab Emirates)',1,1,0),(19118,0,119042,'Fulton','United States of America','US','Fulton (United States of America)',1,1,0),(19119,9970,119043,'Furbo','Ireland','IE','Furbo (Ireland)',1,1,0),(19120,0,119044,'Fureso','Denmark','DK','Fureso (Denmark)',1,1,0),(19121,9975,119045,'Furore','Italy','IT','Furore (Italy)',1,1,0),(19122,0,119046,'Furstlich Drehna','Germany','DE','Furstlich Drehna (Germany)',1,1,0),(19123,9985,119047,'Fussen','Germany','DE','Fussen (Germany)',1,1,0),(19124,9994,119048,'Fuzhou','China','CN','Fuzhou (China)',1,1,0),(19125,10001,119049,'Gaborone','Botswana','BW','Gaborone (Botswana)',1,1,0),(19126,0,119050,'Gabbro','Italy','IT','Gabbro (Italy)',1,1,0),(19127,0,119051,'Gabersdorf','Austria','AT','Gabersdorf (Austria)',1,1,0),(19128,0,119052,'Gadheim','Germany','DE','Gadheim (Germany)',1,1,0),(19129,0,119053,'Gaggenau','Germany','DE','Gaggenau (Germany)',1,1,0),(19130,0,119054,'Gaillan-en-Medoc','France','FR','Gaillan-en-Medoc (France)',1,1,0),(19131,0,119055,'Gairloch','United Kingdom','UK','Gairloch (United Kingdom)',1,1,0),(19132,10027,119056,'Gais','Italy','IT','Gais (Italy)',1,1,0),(19133,0,119057,'Galashiels','United Kingdom','UK','Galashiels (United Kingdom)',1,1,0),(19134,10046,119058,'Galena','United States of America','US','Galena (United States of America)',1,1,0),(19135,0,119059,'Galeria','France','FR','Galeria (France)',1,1,0),(19136,0,119060,'Gallatin Gateway','United States of America','US','Gallatin Gateway (United States of America)',1,1,0),(19137,0,119061,'Galley Bay','Antigua & Barbuda','AG','Galley Bay (Antigua & Barbuda)',1,1,0),(19138,0,119062,'Gallows Bay','U.S. Virgin Islands',NULL,'Gallows Bay (U.S. Virgin Islands)',1,1,0),(19139,10071,119063,'Galt','United States of America','US','Galt (United States of America)',1,1,0),(19140,0,119064,'Galu Beach','Kenya','KE','Galu Beach (Kenya)',1,1,0),(19141,10074,119065,'Galveston','United States of America','US','Galveston (United States of America)',1,1,0),(19142,0,119066,'Galvez','Spain','ES','Galvez (Spain)',1,1,0),(19143,10075,119067,'Galyateto','Hungary','HU','Galyateto (Hungary)',1,1,0),(19144,0,119068,'Galzignano','Italy','IT','Galzignano (Italy)',1,1,0),(19145,0,119069,'Gamboci','Croatia','HR','Gamboci (Croatia)',1,1,0),(19146,10098,119070,'Ganderkesee','Germany','DE','Ganderkesee (Germany)',1,1,0),(19147,0,119072,'Ganzlin','Germany','DE','Ganzlin (Germany)',1,1,0),(19148,10118,119073,'Garachico','Spain','ES','Garachico (Spain)',1,1,0),(19149,0,119074,'Garching an der Alz','Germany','DE','Garching an der Alz (Germany)',1,1,0),(19150,0,119075,'Garching bei Munchen','Germany','DE','Garching bei Munchen (Germany)',1,1,0),(19151,0,119076,'Garden City','United States of America','US','Garden City (United States of America)',1,1,0),(19152,10134,119077,'Gardiner','United States of America','US','Gardiner (United States of America)',1,1,0),(19153,10135,119078,'Gardner','United States of America','US','Gardner (United States of America)',1,1,0),(19154,0,119079,'Garges-les-Gonesse','France','FR','Garges-les-Gonesse (France)',1,1,0),(19155,10154,119080,'Garland','United States of America','US','Garland (United States of America)',1,1,0),(19156,0,119081,'Garsten','Austria','AT','Garsten (Austria)',1,1,0),(19157,0,119082,'Gartrop-Buhl','Germany','DE','Gartrop-Buhl (Germany)',1,1,0),(19158,10183,119083,'Gaschurn','Austria','AT','Gaschurn (Austria)',1,1,0),(19159,0,119084,'Gata de Gorgos','Spain','ES','Gata de Gorgos (Spain)',1,1,0),(19160,0,119085,'Gateway','South Africa','ZA','Gateway (South Africa)',1,1,0),(19161,0,119086,'Gatwick','United Kingdom','UK','Gatwick (United Kingdom)',1,1,0),(19162,10208,119087,'Gaufelden','Germany','DE','Gaufelden (Germany)',1,1,0),(19163,0,119088,'Gavalochori','Greece','GR','Gavalochori (Greece)',1,1,0),(19164,10219,119089,'Gavi','Italy','IT','Gavi (Italy)',1,1,0),(19165,0,119090,'Gavrilkovo','Russia','RU','Gavrilkovo (Russia)',1,1,0),(19166,0,119091,'Geiersthal','Germany','DE','Geiersthal (Germany)',1,1,0),(19167,0,119092,'Geiselwind','Germany','DE','Geiselwind (Germany)',1,1,0),(19168,10255,119093,'Geldrop','Netherlands','NL','Geldrop (Netherlands)',1,1,0),(19169,10265,119094,'Gemunden','Germany','DE','Gemunden (Germany)',1,1,0),(19170,0,119095,'General Santos City (Dadiangas)','Philippines','PH','General Santos City (Dadiangas) (Philippines)',1,1,0),(19171,10273,119096,'Geneseo','United States of America','US','Geneseo (United States of America)',1,1,0),(19172,0,119097,'Geneva','United States of America','US','Geneva (United States of America)',1,1,0),(19173,0,119098,'George West','United States of America','US','George West (United States of America)',1,1,0),(19174,10304,119099,'Georgetown','Guyana','GY','Georgetown (Guyana)',1,1,0),(19175,0,119100,'Ger','Spain','ES','Ger (Spain)',1,1,0),(19176,10314,119101,'Geraldton','Australia','AU','Geraldton (Australia)',1,1,0),(19177,0,119102,'Gerede','Turkey','TR','Gerede (Turkey)',1,1,0),(19178,10332,119103,'Germantown','United States of America','US','Germantown (United States of America)',1,1,0),(19179,0,119104,'Gernsheim','Germany','DE','Gernsheim (Germany)',1,1,0),(19180,10341,119105,'Geroldswil','Switzerland','CH','Geroldswil (Switzerland)',1,1,0),(19181,10342,119106,'Gerolimenas','Greece','GR','Gerolimenas (Greece)',1,1,0),(19182,0,119107,'Geus-d\'Oloron','France','FR','Geus-d\'Oloron (France)',1,1,0),(19183,10362,119108,'Gevrey-Chambertin','France','FR','Gevrey-Chambertin (France)',1,1,0),(19184,0,119109,'Geyer','Germany','DE','Geyer (Germany)',1,1,0),(19185,0,119110,'Gharb','Malta','MT','Gharb (Malta)',1,1,0),(19186,0,119111,'Gibara','Cuba','CU','Gibara (Cuba)',1,1,0),(19187,0,119112,'Gibbes','Barbados','BB','Gibbes (Barbados)',1,1,0),(19188,10396,119113,'Gieres','France','FR','Gieres (France)',1,1,0),(19189,10412,119114,'Gilbertsville','United States of America','US','Gilbertsville (United States of America)',1,1,0),(19190,0,119115,'Gilching','Germany','DE','Gilching (Germany)',1,1,0),(19191,10417,119116,'Gilgit','Pakistan','PK','Gilgit (Pakistan)',1,1,0),(19192,10420,119117,'Gilleleje','Denmark','DK','Gilleleje (Denmark)',1,1,0),(19193,10427,119118,'Gilman','United States of America','US','Gilman (United States of America)',1,1,0),(19194,0,119119,'Gilmerton','United Kingdom','UK','Gilmerton (United Kingdom)',1,1,0),(19195,10430,119120,'Gilroy','United States of America','US','Gilroy (United States of America)',1,1,0),(19196,0,119121,'Gilze en Rijen','Netherlands','NL','Gilze en Rijen (Netherlands)',1,1,0),(19197,0,119122,'Gin Gin','Australia','AU','Gin Gin (Australia)',1,1,0),(19198,0,119123,'Gingst','Germany','DE','Gingst (Germany)',1,1,0),(19199,10441,119124,'Ginosa','Italy','IT','Ginosa (Italy)',1,1,0),(19200,0,119125,'Gioia del Colle','Italy','IT','Gioia del Colle (Italy)',1,1,0),(19201,0,119126,'Gironcourt-sur-Vraine','France','FR','Gironcourt-sur-Vraine (France)',1,1,0),(19202,0,119127,'Gistrigona','Italy','IT','Gistrigona (Italy)',1,1,0),(19203,10465,119128,'Giulianova','Italy','IT','Giulianova (Italy)',1,1,0),(19204,0,119129,'Gizeh','Egypt','EG','Gizeh (Egypt)',1,1,0),(19205,10492,119130,'Glarus','Switzerland','CH','Glarus (Switzerland)',1,1,0),(19206,0,119131,'Glastros','Greece','GR','Glastros (Greece)',1,1,0),(19207,10503,119132,'Glees','Germany','DE','Glees (Germany)',1,1,0),(19208,10507,119133,'Glenbeigh','Ireland','IE','Glenbeigh (Ireland)',1,1,0),(19209,0,119134,'Glencarse','United Kingdom','UK','Glencarse (United Kingdom)',1,1,0),(19210,0,119135,'Glencorrib','Ireland','IE','Glencorrib (Ireland)',1,1,0),(19211,10519,119136,'Gleneden Beach','United States of America','US','Gleneden Beach (United States of America)',1,1,0),(19212,10538,119137,'Glens Falls','United States of America','US','Glens Falls (United States of America)',1,1,0),(19213,10541,119138,'Glenview','United States of America','US','Glenview (United States of America)',1,1,0),(19214,0,119139,'Glenwood Springs','United States of America','US','Glenwood Springs (United States of America)',1,1,0),(19215,10545,119140,'Glin','Ireland','IE','Glin (Ireland)',1,1,0),(19216,10549,119141,'Glisy','France','FR','Glisy (France)',1,1,0),(19217,0,119142,'Glitter Bay','Barbados','BB','Glitter Bay (Barbados)',1,1,0),(19218,0,119143,'Glomfjord','Norway','NO','Glomfjord (Norway)',1,1,0),(19219,0,119144,'Gloucester','United Kingdom','UK','Gloucester (United Kingdom)',1,1,0),(19220,10562,119145,'Gloucester','United States of America','US','Gloucester (United States of America)',1,1,0),(19221,0,119146,'Gloucestershire','United Kingdom','UK','Gloucestershire (United Kingdom)',1,1,0),(19222,0,119147,'Gluringen','Switzerland','CH','Gluringen (Switzerland)',1,1,0),(19223,0,119148,'Glyfa Beach','Greece','GR','Glyfa Beach (Greece)',1,1,0),(19224,0,119149,'Glyfada','Greece','GR','Glyfada (Greece)',1,1,0),(19225,0,119150,'Glyfades-Beach','Greece','GR','Glyfades-Beach (Greece)',1,1,0),(19226,0,119151,'Gnas','Austria','AT','Gnas (Austria)',1,1,0),(19227,0,119152,'Gnewikow','Germany','DE','Gnewikow (Germany)',1,1,0),(19228,10583,119153,'Gochas','Namibia','NA','Gochas (Namibia)',1,1,0),(19229,0,119154,'Golbey','France','FR','Golbey (France)',1,1,0),(19230,0,119155,'Gold River','Canada','CA','Gold River (Canada)',1,1,0),(19231,0,119156,'Goldbridge','Canada','CA','Goldbridge (Canada)',1,1,0),(19232,0,119157,'Goldrock','United States of America','US','Goldrock (United States of America)',1,1,0),(19233,0,119158,'Goldswil bei Interlaken','Switzerland','CH','Goldswil bei Interlaken (Switzerland)',1,1,0),(19234,10632,119159,'Golf del Sur','Spain','ES','Golf del Sur (Spain)',1,1,0),(19235,0,119160,'Golf von Sagona/Tiuccia','France','FR','Golf von Sagona/Tiuccia (France)',1,1,0),(19236,10635,119161,'Golfito','Costa Rica','CR','Golfito (Costa Rica)',1,1,0),(19237,10641,119162,'Golturkbuku','Turkey','TR','Golturkbuku (Turkey)',1,1,0),(19238,10652,119163,'Gondorf','Germany','DE','Gondorf (Germany)',1,1,0),(19239,10658,119164,'Gongju','South Korea','KR','Gongju (South Korea)',1,1,0),(19240,0,119165,'Gora Glusici','Croatia','HR','Gora Glusici (Croatia)',1,1,0),(19241,0,119166,'Gornac','France','FR','Gornac (France)',1,1,0),(19242,0,119167,'Gortschach','Austria','AT','Gortschach (Austria)',1,1,0),(19243,0,119168,'Goshen','United States of America','US','Goshen (United States of America)',1,1,0),(19244,0,119169,'Gosing','Austria','AT','Gosing (Austria)',1,1,0),(19245,0,119170,'Gossensass','Italy','IT','Gossensass (Italy)',1,1,0),(19246,10733,119171,'Gothenburg','United States of America','US','Gothenburg (United States of America)',1,1,0),(19247,10738,119172,'Gottingen','Germany','DE','Gottingen (Germany)',1,1,0),(19248,0,119173,'Goudhurst','United Kingdom','UK','Goudhurst (United Kingdom)',1,1,0),(19249,0,119174,'Goudi','Cyprus','CY','Goudi (Cyprus)',1,1,0),(19250,10761,119175,'Governador Celso Ramos','Brazil','BR','Governador Celso Ramos (Brazil)',1,1,0),(19251,0,119176,'Govone','Italy','IT','Govone (Italy)',1,1,0),(19252,0,119177,'Graaff - Reinet','South Africa','ZA','Graaff - Reinet (South Africa)',1,1,0),(19253,0,119178,'Grabendorf','Germany','DE','Grabendorf (Germany)',1,1,0),(19254,10779,119179,'Grachen','Switzerland','CH','Grachen (Switzerland)',1,1,0),(19255,10782,119180,'Gradac','Croatia','HR','Gradac (Croatia)',1,1,0),(19256,0,119181,'Grafenstein','Austria','AT','Grafenstein (Austria)',1,1,0),(19257,10793,119182,'Grafton','United States of America','US','Grafton (United States of America)',1,1,0),(19258,10795,119183,'Gragnano','Italy','IT','Gragnano (Italy)',1,1,0),(19259,10802,119184,'Gramado','Brazil','BR','Gramado (Brazil)',1,1,0),(19260,0,119185,'Gramzow','Germany','DE','Gramzow (Germany)',1,1,0),(19261,10808,119186,'Gran','Austria','AT','Gran (Austria)',1,1,0),(19262,10810,119187,'Granada','Spain','ES','Granada (Spain)',1,1,0),(19263,10817,119188,'Granarolo dell\'Emilia','Italy','IT','Granarolo dell\'Emilia (Italy)',1,1,0),(19264,10818,119189,'Granbury','United States of America','US','Granbury (United States of America)',1,1,0),(19265,0,119190,'Grand Anse','Grenada','GD','Grand Anse (Grenada)',1,1,0),(19266,0,119191,'Grand Bahama','Bahamas','BS','Grand Bahama (Bahamas)',1,1,0),(19267,0,119192,'Grand Bank','Canada','CA','Grand Bank (Canada)',1,1,0),(19268,0,119193,'Grand Falls','Canada','CA','Grand Falls (Canada)',1,1,0),(19269,31062,119194,'Grand Island','United States of America','US','Grand Island (United States of America)',1,1,0),(19270,31066,119195,'Grand Lake','United States of America','US','Grand Lake (United States of America)',1,1,0),(19271,0,119196,'Grande Anse','Guadeloupe','GP','Grande Anse (Guadeloupe)',1,1,0),(19272,10848,119197,'Granges-Paccot','Switzerland','CH','Granges-Paccot (Switzerland)',1,1,0),(19273,0,119198,'Grantham','United Kingdom','UK','Grantham (United Kingdom)',1,1,0),(19274,10871,119199,'Grass Valley','United States of America','US','Grass Valley (United States of America)',1,1,0),(19275,0,119200,'Grassington','United Kingdom','UK','Grassington (United Kingdom)',1,1,0),(19276,0,119201,'Gratens','France','FR','Gratens (France)',1,1,0),(19277,0,119202,'Graudenz','Poland','PL','Graudenz (Poland)',1,1,0),(19278,0,119203,'Gravata','Brazil','BR','Gravata (Brazil)',1,1,0),(19279,10879,119204,'Gravatai','Brazil','BR','Gravatai (Brazil)',1,1,0),(19280,0,119205,'Graveneck','Germany','DE','Graveneck (Germany)',1,1,0),(19281,10900,119206,'Grazalema','Spain','ES','Grazalema (Spain)',1,1,0),(19282,0,119207,'Grazzano Badoglio','Italy','IT','Grazzano Badoglio (Italy)',1,1,0),(19283,10905,119208,'Great Barrington','United States of America','US','Great Barrington (United States of America)',1,1,0),(19284,0,119209,'Great Bend','United States of America','US','Great Bend (United States of America)',1,1,0),(19285,0,119210,'Great Dunmow','United Kingdom','UK','Great Dunmow (United Kingdom)',1,1,0),(19286,0,119211,'Great-Sand-Dunes-Nationalpark','United States of America','US','Great-Sand-Dunes-Nationalpark (United States of America)',1,1,0),(19287,0,119212,'Grebastica','Croatia','HR','Grebastica (Croatia)',1,1,0),(19288,10914,119213,'Greeley','United States of America','US','Greeley (United States of America)',1,1,0),(19289,0,119214,'Greenmeadows','New Zealand','NZ','Greenmeadows (New Zealand)',1,1,0),(19290,0,119215,'Greensboro','United States of America','US','Greensboro (United States of America)',1,1,0),(19291,10937,119216,'Greensburg','United States of America','US','Greensburg (United States of America)',1,1,0),(19292,10941,119217,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19293,0,119218,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19294,0,119219,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19295,0,119220,'Greenwood Lake','United States of America','US','Greenwood Lake (United States of America)',1,1,0),(19296,10108,119223,'Gansbaai','South Africa','ZA','Gansbaai (South Africa)',1,1,0),(19297,0,119224,'Garana de Pria','Spain','ES','Garana de Pria (Spain)',1,1,0),(19298,0,119225,'Garanas','Austria','AT','Garanas (Austria)',1,1,0),(19299,0,119226,'Garbagnate Monastero (Lecco)','Italy','IT','Garbagnate Monastero (Lecco) (Italy)',1,1,0),(19300,10122,119227,'Garberville','United States of America','US','Garberville (United States of America)',1,1,0),(19301,0,119228,'Gargarou-Strand','Greece','GR','Gargarou-Strand (Greece)',1,1,0),(19302,0,119229,'Gargazon','Italy','IT','Gargazon (Italy)',1,1,0),(19303,0,119230,'Garliava','Lithuania','LT','Garliava (Lithuania)',1,1,0),(19304,0,119231,'Garralda','Spain','ES','Garralda (Spain)',1,1,0),(19305,0,119232,'Garretstown','Ireland','IE','Garretstown (Ireland)',1,1,0),(19306,10172,119233,'Garrucha','Spain','ES','Garrucha (Spain)',1,1,0),(19307,0,119234,'Garve','United Kingdom','UK','Garve (United Kingdom)',1,1,0),(19308,0,119235,'Garwitz','Germany','DE','Garwitz (Germany)',1,1,0),(19309,10190,119236,'Gassville','United States of America','US','Gassville (United States of America)',1,1,0),(19310,10192,119237,'Gastouri','Greece','GR','Gastouri (Greece)',1,1,0),(19311,0,119238,'Gateshead','United Kingdom','UK','Gateshead (United Kingdom)',1,1,0),(19312,0,119239,'Gateway','United States of America','US','Gateway (United States of America)',1,1,0),(19313,0,119240,'Gatteo','Italy','IT','Gatteo (Italy)',1,1,0),(19314,0,119241,'Gavrion','Greece','GR','Gavrion (Greece)',1,1,0),(19315,0,119242,'Gayasan National Park','South Korea','KR','Gayasan National Park (South Korea)',1,1,0),(19316,10226,119243,'Gaylord','United States of America','US','Gaylord (United States of America)',1,1,0),(19317,0,119244,'Gebesee','Germany','DE','Gebesee (Germany)',1,1,0),(19318,0,119245,'Geeveston','Australia','AU','Geeveston (Australia)',1,1,0),(19319,0,119246,'Gehren','Germany','DE','Gehren (Germany)',1,1,0),(19320,10244,119247,'Geinberg','Austria','AT','Geinberg (Austria)',1,1,0),(19321,10252,119248,'Gela','Italy','IT','Gela (Italy)',1,1,0),(19322,0,119249,'Genalguacil','Spain','ES','Genalguacil (Spain)',1,1,0),(19323,10268,119250,'Gence','Azerbaijan','AZ','Gence (Azerbaijan)',1,1,0),(19324,0,119251,'Geneva','United States of America','US','Geneva (United States of America)',1,1,0),(19325,10278,119252,'Gengenbach','Germany','DE','Gengenbach (Germany)',1,1,0),(19326,0,119253,'Gennes','France','FR','Gennes (France)',1,1,0),(19327,10282,119254,'Genoa','Italy','IT','Genoa (Italy)',1,1,0),(19328,0,119255,'Gensingen','Germany','DE','Gensingen (Germany)',1,1,0),(19329,0,119256,'Georgetown','United States of America','US','Georgetown (United States of America)',1,1,0),(19330,0,119257,'Georgina','Canada','CA','Georgina (Canada)',1,1,0),(19331,0,119258,'Georgitsi','Greece','GR','Georgitsi (Greece)',1,1,0),(19332,0,119259,'Gepps Cross','Australia','AU','Gepps Cross (Australia)',1,1,0),(19333,10319,119260,'Geremeas','Italy','IT','Geremeas (Italy)',1,1,0),(19334,0,119261,'Geretsried','Germany','DE','Geretsried (Germany)',1,1,0),(19335,0,119262,'Germantown','United States of America','US','Germantown (United States of America)',1,1,0),(19336,0,119263,'Germendorf','Germany','DE','Germendorf (Germany)',1,1,0),(19337,0,119264,'Geroldsgrun','Germany','DE','Geroldsgrun (Germany)',1,1,0),(19338,10343,119265,'Gerolstein','Germany','DE','Gerolstein (Germany)',1,1,0),(19339,10347,119266,'Gerringong','Australia','AU','Gerringong (Australia)',1,1,0),(19340,10387,119267,'Gibbstown','United States of America','US','Gibbstown (United States of America)',1,1,0),(19341,10391,119268,'Gibsons','Canada','CA','Gibsons (Canada)',1,1,0),(19342,0,119269,'Giengen an der Brenz','Germany','DE','Giengen an der Brenz (Germany)',1,1,0),(19343,10405,119270,'Gifu','Japan','JP','Gifu (Japan)',1,1,0),(19344,10406,119271,'Gig Harbor','United States of America','US','Gig Harbor (United States of America)',1,1,0),(19345,0,119272,'Gili Meno','Indonesia','ID','Gili Meno (Indonesia)',1,1,0),(19346,10423,119273,'Gillette','United States of America','US','Gillette (United States of America)',1,1,0),(19347,0,119274,'Gimari','Greece','GR','Gimari (Greece)',1,1,0),(19348,0,119275,'Girard','United States of America','US','Girard (United States of America)',1,1,0),(19349,10454,119276,'Giritale','Sri Lanka','LK','Giritale (Sri Lanka)',1,1,0),(19350,10467,119277,'Giussano','Italy','IT','Giussano (Italy)',1,1,0),(19351,10472,119278,'Giyani','South Africa','ZA','Giyani (South Africa)',1,1,0),(19352,10481,119279,'Gjovik','Norway','NO','Gjovik (Norway)',1,1,0),(19353,0,119280,'Glacis','Seychelles','SC','Glacis (Seychelles)',1,1,0),(19354,0,119281,'Glattfelden','Switzerland','CH','Glattfelden (Switzerland)',1,1,0),(19355,0,119282,'Gleinstatten','Austria','AT','Gleinstatten (Austria)',1,1,0),(19356,0,119283,'Glei?enberg','Germany','DE','Glei?enberg (Germany)',1,1,0),(19357,0,119284,'Glen Helen','Australia','AU','Glen Helen (Australia)',1,1,0),(19358,0,119285,'Glen Innes','Australia','AU','Glen Innes (Australia)',1,1,0),(19359,0,119286,'Glen Of Aherlow','Ireland','IE','Glen Of Aherlow (Ireland)',1,1,0),(19360,10511,119287,'Glencoe','United States of America','US','Glencoe (United States of America)',1,1,0),(19361,0,119288,'Glencolumbkille','Ireland','IE','Glencolumbkille (Ireland)',1,1,0),(19362,0,119289,'Glendale','United States of America','US','Glendale (United States of America)',1,1,0),(19363,0,119290,'Glendale','United States of America','US','Glendale (United States of America)',1,1,0),(19364,0,119291,'Glenfarg','United Kingdom','UK','Glenfarg (United Kingdom)',1,1,0),(19365,0,119292,'Glenfinnan','United Kingdom','UK','Glenfinnan (United Kingdom)',1,1,0),(19366,0,119293,'Glenrothes','United Kingdom','UK','Glenrothes (United Kingdom)',1,1,0),(19367,0,119294,'Glenroy','New Zealand','NZ','Glenroy (New Zealand)',1,1,0),(19368,10551,119295,'Globe','United States of America','US','Globe (United States of America)',1,1,0),(19369,0,119296,'Gloucester','Australia','AU','Gloucester (Australia)',1,1,0),(19370,0,119297,'Glucksburg','Germany','DE','Glucksburg (Germany)',1,1,0),(19371,0,119298,'Gnarrenburg','Germany','DE','Gnarrenburg (Germany)',1,1,0),(19372,0,119299,'Godersdorf','Austria','AT','Godersdorf (Austria)',1,1,0),(19373,0,119300,'Godiasco','Italy','IT','Godiasco (Italy)',1,1,0),(19374,0,119301,'G?rsdorf','France','FR','G?rsdorf (France)',1,1,0),(19375,10605,119302,'Gohren','Germany','DE','Gohren (Germany)',1,1,0),(19376,10610,119303,'Gol','Norway','NO','Gol (Norway)',1,1,0),(19377,10619,119304,'Golden Bay','Malta','MT','Golden Bay (Malta)',1,1,0),(19378,0,119305,'Golem','Albania','AL','Golem (Albania)',1,1,0),(19379,10631,119306,'Goleta','United States of America','US','Goleta (United States of America)',1,1,0),(19380,0,119307,'Golfo Dulce','Costa Rica','CR','Golfo Dulce (Costa Rica)',1,1,0),(19381,0,119308,'Gollenshausen am Chiemsee','Germany','DE','Gollenshausen am Chiemsee (Germany)',1,1,0),(19382,0,119309,'Gommern','Germany','DE','Gommern (Germany)',1,1,0),(19383,10663,119310,'Gonten','Switzerland','CH','Gonten (Switzerland)',1,1,0),(19384,10676,119311,'Goolwa','Australia','AU','Goolwa (Australia)',1,1,0),(19385,31052,119312,'Gor','Spain','ES','Gor (Spain)',1,1,0),(19386,10686,119313,'Gordes','France','FR','Gordes (France)',1,1,0),(19387,10687,119314,'Gordexola','Spain','ES','Gordexola (Spain)',1,1,0),(19388,0,119315,'Gordon\'\'s Bay','South Africa','ZA','Gordon\'\'s Bay (South Africa)',1,1,0),(19389,10701,119316,'Gorham','United States of America','US','Gorham (United States of America)',1,1,0),(19390,10713,119317,'Goroka','Papua New Guinea','PG','Goroka (Papua New Guinea)',1,1,0),(19391,10718,119318,'Gorses','France','FR','Gorses (France)',1,1,0),(19392,0,119319,'Gorzow Slaski','Poland','PL','Gorzow Slaski (Poland)',1,1,0),(19393,0,119320,'Goschenen','Switzerland','CH','Goschenen (Switzerland)',1,1,0),(19394,10725,119321,'Gosnay','France','FR','Gosnay (France)',1,1,0),(19395,0,119322,'Gossendorf','Austria','AT','Gossendorf (Austria)',1,1,0),(19396,10739,119323,'Gottlieben','Switzerland','CH','Gottlieben (Switzerland)',1,1,0),(19397,10749,119324,'Gourdon','France','FR','Gourdon (France)',1,1,0),(19398,10750,119325,'Gourette','France','FR','Gourette (France)',1,1,0),(19399,10751,119326,'Gournay-en-Bray','France','FR','Gournay-en-Bray (France)',1,1,0),(19400,0,119327,'Gournes','Greece','GR','Gournes (Greece)',1,1,0),(19401,10755,119328,'Gouveia','Portugal','PT','Gouveia (Portugal)',1,1,0),(19402,0,119329,'Gouvy','Belgium','BE','Gouvy (Belgium)',1,1,0),(19403,10765,119330,'Goynuk','Turkey','TR','Goynuk (Turkey)',1,1,0),(19404,0,119331,'Grabenstatt','Germany','DE','Grabenstatt (Germany)',1,1,0),(19405,0,119332,'Grabenstetten','Germany','DE','Grabenstetten (Germany)',1,1,0),(19406,0,119333,'Grace Bay','Turks & Caicos Islands',NULL,'Grace Bay (Turks & Caicos Islands)',1,1,0),(19407,10038,119334,'Galatina','Italy','IT','Galatina (Italy)',1,1,0),(19408,0,119335,'Galatro','Italy','IT','Galatro (Italy)',1,1,0),(19409,0,119336,'Galilea','Spain','ES','Galilea (Spain)',1,1,0),(19410,0,119337,'Gallatin Canyon','United States of America','US','Gallatin Canyon (United States of America)',1,1,0),(19411,0,119338,'Gallegos','Spain','ES','Gallegos (Spain)',1,1,0),(19412,10065,119339,'Gallipolis','United States of America','US','Gallipolis (United States of America)',1,1,0),(19413,0,119340,'Gallmersgarten','Germany','DE','Gallmersgarten (Germany)',1,1,0),(19414,0,119341,'Gaomi','China','CN','Gaomi (China)',1,1,0),(19415,0,119342,'Garaballa','Spain','ES','Garaballa (Spain)',1,1,0),(19416,0,119343,'Garaioa','Spain','ES','Garaioa (Spain)',1,1,0),(19417,10120,119344,'Garbagnate Milanese','Italy','IT','Garbagnate Milanese (Italy)',1,1,0),(19418,0,119345,'Garden City','United States of America','US','Garden City (United States of America)',1,1,0),(19419,31040,119346,'Garden City Beach','United States of America','US','Garden City Beach (United States of America)',1,1,0),(19420,0,119347,'Gardony','Hungary','HU','Gardony (Hungary)',1,1,0),(19421,10145,119348,'Gargellen','Austria','AT','Gargellen (Austria)',1,1,0),(19422,10147,119349,'Gargnano','Italy','IT','Gargnano (Italy)',1,1,0),(19423,0,119350,'Garlstorf','Germany','DE','Garlstorf (Germany)',1,1,0),(19424,0,119351,'Garz','Germany','DE','Garz (Germany)',1,1,0),(19425,10185,119352,'Gaspe','Canada','CA','Gaspe (Canada)',1,1,0),(19426,10186,119353,'Gasperina','Italy','IT','Gasperina (Italy)',1,1,0),(19427,0,119354,'Gatehouse of Fleet','United Kingdom','UK','Gatehouse of Fleet (United Kingdom)',1,1,0),(19428,10198,119355,'Gatineau','Canada','CA','Gatineau (Canada)',1,1,0),(19429,10210,119356,'Gaujac','France','FR','Gaujac (France)',1,1,0),(19430,10214,119357,'Gauting','Germany','DE','Gauting (Germany)',1,1,0),(19431,10225,119359,'Gaya Island','Malaysia','MY','Gaya Island (Malaysia)',1,1,0),(19432,0,119360,'Geboltskirchen','Austria','AT','Geboltskirchen (Austria)',1,1,0),(19433,10237,119361,'Gebze','Turkey','TR','Gebze (Turkey)',1,1,0),(19434,0,119362,'Gedici','Croatia','HR','Gedici (Croatia)',1,1,0),(19435,0,119363,'Gehlberg','Germany','DE','Gehlberg (Germany)',1,1,0),(19436,0,119364,'Gehrden','Germany','DE','Gehrden (Germany)',1,1,0),(19437,0,119365,'Geising','Germany','DE','Geising (Germany)',1,1,0),(19438,0,119366,'Gelting','Germany','DE','Gelting (Germany)',1,1,0),(19439,0,119367,'Gemlik','Turkey','TR','Gemlik (Turkey)',1,1,0),(19440,10267,119368,'Gencay','France','FR','Gencay (France)',1,1,0),(19441,0,119369,'Gennep','Netherlands','NL','Gennep (Netherlands)',1,1,0),(19442,10283,119370,'Genoa','United States of America','US','Genoa (United States of America)',1,1,0),(19443,0,119371,'Georgetown','United States of America','US','Georgetown (United States of America)',1,1,0),(19444,10308,119372,'Georgioupolis','Greece','GR','Georgioupolis (Greece)',1,1,0),(19445,0,119373,'Geroda','Germany','DE','Geroda (Germany)',1,1,0),(19446,0,119374,'Gersheim','Germany','DE','Gersheim (Germany)',1,1,0),(19447,10352,119375,'Gescher','Germany','DE','Gescher (Germany)',1,1,0),(19448,0,119376,'Gevelsberg','Germany','DE','Gevelsberg (Germany)',1,1,0),(19449,10370,119377,'Ghardaia','Algeria','DZ','Ghardaia (Algeria)',1,1,0),(19450,10373,119378,'Ghent','United States of America','US','Ghent (United States of America)',1,1,0),(19451,10375,119379,'Ghiffa','Italy','IT','Ghiffa (Italy)',1,1,0),(19452,10381,119380,'Giannitsa','Greece','GR','Giannitsa (Greece)',1,1,0),(19453,10382,119381,'Gianyar','Indonesia','ID','Gianyar (Indonesia)',1,1,0),(19454,10385,119382,'Giarre','Italy','IT','Giarre (Italy)',1,1,0),(19455,10395,119383,'Giens','France','FR','Giens (France)',1,1,0),(19456,0,119384,'Giesen','Germany','DE','Giesen (Germany)',1,1,0),(19457,10403,119385,'Gifhorn','Germany','DE','Gifhorn (Germany)',1,1,0),(19458,10411,119386,'Gilbert','United States of America','US','Gilbert (United States of America)',1,1,0),(19459,0,119387,'Gili Air','Indonesia','ID','Gili Air (Indonesia)',1,1,0),(19460,0,119388,'Gilston','Australia','AU','Gilston (Australia)',1,1,0),(19461,10439,119389,'Ginestra Fiorentina','Italy','IT','Ginestra Fiorentina (Italy)',1,1,0),(19462,0,119390,'Ginsheim-Gustavsburg','Germany','DE','Ginsheim-Gustavsburg (Germany)',1,1,0),(19463,0,119391,'Gioia Tauro','Italy','IT','Gioia Tauro (Italy)',1,1,0),(19464,0,119392,'Giovo','Italy','IT','Giovo (Italy)',1,1,0),(19465,0,119393,'Girardville','Canada','CA','Girardville (Canada)',1,1,0),(19466,10453,119394,'Giresun','Turkey','TR','Giresun (Turkey)',1,1,0),(19467,10461,119395,'Gislaved','Sweden','SE','Gislaved (Sweden)',1,1,0),(19468,10464,119396,'Giugliano in Campania','Italy','IT','Giugliano in Campania (Italy)',1,1,0),(19469,0,119397,'Glacier Bay','United States of America','US','Glacier Bay (United States of America)',1,1,0),(19470,10483,119398,'Gladbeck','Germany','DE','Gladbeck (Germany)',1,1,0),(19471,31051,119399,'Glade Valley','United States of America','US','Glade Valley (United States of America)',1,1,0),(19472,0,119400,'Gladstone','Australia','AU','Gladstone (Australia)',1,1,0),(19473,10498,119401,'Glassboro','United States of America','US','Glassboro (United States of America)',1,1,0),(19474,10504,119402,'Gleisdorf','Austria','AT','Gleisdorf (Austria)',1,1,0),(19475,0,119403,'Glen Alpine','United States of America','US','Glen Alpine (United States of America)',1,1,0),(19476,0,119404,'Glenmoriston','United Kingdom','UK','Glenmoriston (United Kingdom)',1,1,0),(19477,10531,119405,'Glennville','United States of America','US','Glennville (United States of America)',1,1,0),(19478,10534,119406,'Glenpool','United States of America','US','Glenpool (United States of America)',1,1,0),(19479,0,119407,'Glesv?r','Norway','NO','Glesv?r (Norway)',1,1,0),(19480,10548,119408,'Glion','Switzerland','CH','Glion (Switzerland)',1,1,0),(19481,10550,119409,'Gliwice','Poland','PL','Gliwice (Poland)',1,1,0),(19482,10553,119410,'Gloggnitz','Austria','AT','Gloggnitz (Austria)',1,1,0),(19483,0,119411,'Glonn','Germany','DE','Glonn (Germany)',1,1,0),(19484,0,119412,'Gluckstadt','Germany','DE','Gluckstadt (Germany)',1,1,0),(19485,10569,119413,'Gmund am Tegernsee','Germany','DE','Gmund am Tegernsee (Germany)',1,1,0),(19486,10571,119414,'Gnadenwald','Austria','AT','Gnadenwald (Austria)',1,1,0),(19487,0,119415,'Gniest','Germany','DE','Gniest (Germany)',1,1,0),(19488,0,119416,'Gniewino','Poland','PL','Gniewino (Poland)',1,1,0),(19489,10607,119417,'Goiania','Brazil','BR','Goiania (Brazil)',1,1,0),(19490,0,119418,'Golcuv Jenikov','Czech Republic','CZ','Golcuv Jenikov (Czech Republic)',1,1,0),(19491,0,119419,'Gold River','United States of America','US','Gold River (United States of America)',1,1,0),(19492,0,119420,'Goldlauter-Heidersbach','Germany','DE','Goldlauter-Heidersbach (Germany)',1,1,0),(19493,10643,119421,'Gomadingen','Germany','DE','Gomadingen (Germany)',1,1,0),(19494,0,119422,'Gontenschwil','Switzerland','CH','Gontenschwil (Switzerland)',1,1,0),(19495,10692,119423,'Gore','New Zealand','NZ','Gore (New Zealand)',1,1,0),(19496,0,119424,'Gorebridge','United Kingdom','UK','Gorebridge (United Kingdom)',1,1,0),(19497,10703,119425,'Gorinchem','Netherlands','NL','Gorinchem (Netherlands)',1,1,0),(19498,0,119426,'Gornji Humac','Croatia','HR','Gornji Humac (Croatia)',1,1,0),(19499,0,119427,'Gorodets','Russia','RU','Gorodets (Russia)',1,1,0),(19500,0,119428,'Gorwihl','Germany','DE','Gorwihl (Germany)',1,1,0),(19501,10720,119429,'Gosau','Austria','AT','Gosau (Austria)',1,1,0),(19502,10723,119430,'Gosier','Guadeloupe','GP','Gosier (Guadeloupe)',1,1,0),(19503,0,119431,'Goteborg','Sweden','SE','Goteborg (Sweden)',1,1,0),(19504,0,119432,'Goyatz','Germany','DE','Goyatz (Germany)',1,1,0),(19505,0,119433,'Grado','Spain','ES','Grado (Spain)',1,1,0),(19506,0,119434,'Grafendorf','Germany','DE','Grafendorf (Germany)',1,1,0),(19507,10794,119435,'Grafton','Australia','AU','Grafton (Australia)',1,1,0),(19508,0,119436,'Grambin','Germany','DE','Grambin (Germany)',1,1,0),(19509,0,119437,'Gran Tarajal','Spain','ES','Gran Tarajal (Spain)',1,1,0),(19510,0,119438,'Grand Baie','Mauritius','MU','Grand Baie (Mauritius)',1,1,0),(19511,0,119439,'Grand Forks','Canada','CA','Grand Forks (Canada)',1,1,0),(19512,31071,119440,'Grand Prairie','United States of America','US','Grand Prairie (United States of America)',1,1,0),(19513,10828,119441,'Grand-Bourg','Guadeloupe','GP','Grand-Bourg (Guadeloupe)',1,1,0),(19514,10832,119442,'Grande Cache','Canada','CA','Grande Cache (Canada)',1,1,0),(19515,10836,119443,'Grande-Synthe','France','FR','Grande-Synthe (France)',1,1,0),(19516,0,119444,'Grangemouth','United Kingdom','UK','Grangemouth (United Kingdom)',1,1,0),(19517,0,119445,'Grane','France','FR','Grane (France)',1,1,0),(19518,0,119446,'Granges-sur-Vologne','France','FR','Granges-sur-Vologne (France)',1,1,0),(19519,0,119447,'Granichen','Switzerland','CH','Granichen (Switzerland)',1,1,0),(19520,0,119448,'Grano','Sweden','SE','Grano (Sweden)',1,1,0),(19521,0,119449,'Granum','Canada','CA','Granum (Canada)',1,1,0),(19522,10863,119450,'Granville Ferry','Canada','CA','Granville Ferry (Canada)',1,1,0),(19523,10872,119451,'Grassau','Germany','DE','Grassau (Germany)',1,1,0),(19524,0,119452,'Grasten (Gravenstein)','Denmark','DK','Grasten (Gravenstein) (Denmark)',1,1,0),(19525,10883,119453,'Gravelines','France','FR','Gravelines (France)',1,1,0),(19526,0,119454,'Gray Summit','United States of America','US','Gray Summit (United States of America)',1,1,0),(19527,0,119455,'Great Cruz Bay','U.S. Virgin Islands',NULL,'Great Cruz Bay (U.S. Virgin Islands)',1,1,0),(19528,0,119456,'Great Malvern','United Kingdom','UK','Great Malvern (United Kingdom)',1,1,0),(19529,0,119457,'Grebenhain','Germany','DE','Grebenhain (Germany)',1,1,0),(19530,31082,119458,'Green River','United States of America','US','Green River (United States of America)',1,1,0),(19531,10925,119459,'Greenfield','United States of America','US','Greenfield (United States of America)',1,1,0),(19532,0,119460,'Greenwood','United States of America','US','Greenwood (United States of America)',1,1,0),(19533,10965,119461,'Gressan','Italy','IT','Gressan (Italy)',1,1,0),(19534,0,119462,'Gressoney La Trinite','Italy','IT','Gressoney La Trinite (Italy)',1,1,0),(19535,10975,119463,'Grevena','Greece','GR','Grevena (Greece)',1,1,0),(19536,10987,119464,'Griffin','United States of America','US','Griffin (United States of America)',1,1,0),(19537,10989,119465,'Griffith','Australia','AU','Griffith (Australia)',1,1,0),(19538,10994,119466,'Grimentz','Switzerland','CH','Grimentz (Switzerland)',1,1,0),(19539,11001,119467,'Grimstad','Norway','NO','Grimstad (Norway)',1,1,0),(19540,0,119468,'Grisolles (Tarn-et-Garonne)','France','FR','Grisolles (Tarn-et-Garonne) (France)',1,1,0),(19541,11015,119469,'Grodig','Austria','AT','Grodig (Austria)',1,1,0),(19542,11022,119470,'Gronau','Germany','DE','Gronau (Germany)',1,1,0),(19543,11030,119471,'Groote Eylandt','Australia','AU','Groote Eylandt (Australia)',1,1,0),(19544,0,119472,'Gro? Gerungs','Austria','AT','Gro? Gerungs (Austria)',1,1,0),(19545,0,119473,'Gro? Kreutz','Germany','DE','Gro? Kreutz (Germany)',1,1,0),(19546,0,119474,'Gro?burgwedel','Germany','DE','Gro?burgwedel (Germany)',1,1,0),(19547,0,119475,'Gro?efehn','Germany','DE','Gro?efehn (Germany)',1,1,0),(19548,0,119476,'Gro?enkneten','Germany','DE','Gro?enkneten (Germany)',1,1,0),(19549,0,119477,'Gro?petersdorf','Austria','AT','Gro?petersdorf (Austria)',1,1,0),(19550,0,119478,'Gro?rinderfeld','Germany','DE','Gro?rinderfeld (Germany)',1,1,0),(19551,0,119479,'Gro?schirma','Germany','DE','Gro?schirma (Germany)',1,1,0),(19552,0,119480,'Grover Beach','United States of America','US','Grover Beach (United States of America)',1,1,0),(19553,0,119481,'Gruna','Germany','DE','Gruna (Germany)',1,1,0),(19554,0,119482,'Grunburg','Austria','AT','Grunburg (Austria)',1,1,0),(19555,0,119483,'Grunendeich','Germany','DE','Grunendeich (Germany)',1,1,0),(19556,0,119484,'Grunplan','Germany','DE','Grunplan (Germany)',1,1,0),(19557,0,119485,'Grunstadt','Germany','DE','Grunstadt (Germany)',1,1,0),(19558,0,119486,'Grzybowo','Poland','PL','Grzybowo (Poland)',1,1,0),(19559,0,119487,'Gua Musang','Malaysia','MY','Gua Musang (Malaysia)',1,1,0),(19560,0,119488,'Guamote','Ecuador','EC','Guamote (Ecuador)',1,1,0),(19561,11123,119489,'Guarda','Portugal','PT','Guarda (Portugal)',1,1,0),(19562,11122,119490,'Guarda','Switzerland','CH','Guarda (Switzerland)',1,1,0),(19563,0,119491,'Guasca','Colombia','CO','Guasca (Colombia)',1,1,0),(19564,0,119492,'Guatape','Colombia','CO','Guatape (Colombia)',1,1,0),(19565,0,119493,'Guatemala City','Guatemala','GT','Guatemala City (Guatemala)',1,1,0),(19566,11135,119494,'Guayaquil','Ecuador','EC','Guayaquil (Ecuador)',1,1,0),(19567,0,119495,'Guby','Germany','DE','Guby (Germany)',1,1,0),(19568,11148,119496,'Guejar Sierra','Spain','ES','Guejar Sierra (Spain)',1,1,0),(19569,0,119497,'Guemes','Spain','ES','Guemes (Spain)',1,1,0),(19570,0,119498,'Guerrero','Argentina','AR','Guerrero (Argentina)',1,1,0),(19571,0,119499,'Guglwald','Austria','AT','Guglwald (Austria)',1,1,0),(19572,0,119500,'Guhlen-Glienicke','Germany','DE','Guhlen-Glienicke (Germany)',1,1,0),(19573,0,119501,'Guiamets','Spain','ES','Guiamets (Spain)',1,1,0),(19574,0,119502,'Guidel-Plage','France','FR','Guidel-Plage (France)',1,1,0),(19575,0,119503,'Guidonia Montecelio','Italy','IT','Guidonia Montecelio (Italy)',1,1,0),(19576,11179,119504,'Guillena','Spain','ES','Guillena (Spain)',1,1,0),(19577,0,119505,'Gulf Breeze','United States of America','US','Gulf Breeze (United States of America)',1,1,0),(19578,0,119506,'Gumbet','Turkey','TR','Gumbet (Turkey)',1,1,0),(19579,11205,119507,'Gumuldur','Turkey','TR','Gumuldur (Turkey)',1,1,0),(19580,11207,119508,'Gumusluk','Turkey','TR','Gumusluk (Turkey)',1,1,0),(19581,0,119509,'Gundelfingen (Breisgau)','Germany','DE','Gundelfingen (Breisgau) (Germany)',1,1,0),(19582,0,119510,'Gundelsheim','Germany','DE','Gundelsheim (Germany)',1,1,0),(19583,11212,119511,'Gundogan','Turkey','TR','Gundogan (Turkey)',1,1,0),(19584,0,119512,'Guraidhoo','Maldives','MV','Guraidhoo (Maldives)',1,1,0),(19585,0,119514,'Gurmencon','France','FR','Gurmencon (France)',1,1,0),(19586,11227,119515,'Gurnee','United States of America','US','Gurnee (United States of America)',1,1,0),(19587,0,119516,'Gurtis','Austria','AT','Gurtis (Austria)',1,1,0),(19588,0,119518,'Gutenzell-Hurbel','Germany','DE','Gutenzell-Hurbel (Germany)',1,1,0),(19589,0,119519,'Guzelyurt','Cyprus','CY','Guzelyurt (Cyprus)',1,1,0),(19590,0,119520,'Guzet-Neige','France','FR','Guzet-Neige (France)',1,1,0),(19591,0,119521,'Gy (Haute-Saone)','France','FR','Gy (Haute-Saone) (France)',1,1,0),(19592,0,119522,'Gyongyospata','Hungary','HU','Gyongyospata (Hungary)',1,1,0),(19593,0,119523,'Gyor','Hungary','HU','Gyor (Hungary)',1,1,0),(19594,11265,119524,'Gzira','Malta','MT','Gzira (Malta)',1,1,0),(19595,0,119525,'Ha Mohale','Lesotho','LS','Ha Mohale (Lesotho)',1,1,0),(19596,11267,119526,'Haamstede','Netherlands','NL','Haamstede (Netherlands)',1,1,0),(19597,11271,119527,'Haarlem','Netherlands','NL','Haarlem (Netherlands)',1,1,0),(19598,0,119528,'Haarlemmermeer','Netherlands','NL','Haarlemmermeer (Netherlands)',1,1,0),(19599,11278,119529,'Hachioji','Japan','JP','Hachioji (Japan)',1,1,0),(19600,0,119530,'Hackness','United Kingdom','UK','Hackness (United Kingdom)',1,1,0),(19601,11287,119531,'Haderslev','Denmark','DK','Haderslev (Denmark)',1,1,0),(19602,11289,119532,'Hadley','United States of America','US','Hadley (United States of America)',1,1,0),(19603,11311,119533,'Hagetmau','France','FR','Hagetmau (France)',1,1,0),(19604,0,119534,'Haggerston','United Kingdom','UK','Haggerston (United Kingdom)',1,1,0),(19605,11324,119535,'Hai Duong','Vietnam','VN','Hai Duong (Vietnam)',1,1,0),(19606,11332,119536,'Haikou','China','CN','Haikou (China)',1,1,0),(19607,0,119537,'Haiyang','China','CN','Haiyang (China)',1,1,0),(19608,0,119538,'Halbinsel Nicoya','Costa Rica','CR','Halbinsel Nicoya (Costa Rica)',1,1,0),(19609,11364,119539,'Halden','Norway','NO','Halden (Norway)',1,1,0),(19610,11377,119540,'Halfway','United States of America','US','Halfway (United States of America)',1,1,0),(19611,0,119541,'Halkirk','United Kingdom','UK','Halkirk (United Kingdom)',1,1,0),(19612,0,119542,'Hallefors','Sweden','SE','Hallefors (Sweden)',1,1,0),(19613,0,119543,'Hallig - Langenness','Germany','DE','Hallig - Langenness (Germany)',1,1,0),(19614,0,119544,'Hallig Hooge','Germany','DE','Hallig Hooge (Germany)',1,1,0),(19615,11398,119545,'Halls Creek','Australia','AU','Halls Creek (Australia)',1,1,0),(19616,0,119546,'Hallstahammar','Sweden','SE','Hallstahammar (Sweden)',1,1,0),(19617,0,119547,'Hallwang','Austria','AT','Hallwang (Austria)',1,1,0),(19618,0,119548,'Hals','Denmark','DK','Hals (Denmark)',1,1,0),(19619,0,119549,'Halsbach','Germany','DE','Halsbach (Germany)',1,1,0),(19620,0,119550,'Halstead','United Kingdom','UK','Halstead (United Kingdom)',1,1,0),(19621,0,119551,'Hamburg','United States of America','US','Hamburg (United States of America)',1,1,0),(19622,0,119552,'Hamilton','Sierra Leone','SL','Hamilton (Sierra Leone)',1,1,0),(19623,0,119553,'Hamont-Achel','Belgium','BE','Hamont-Achel (Belgium)',1,1,0),(19624,9744,119554,'Fraccano','Italy','IT','Fraccano (Italy)',1,1,0),(19625,9747,119555,'Framingham','United States of America','US','Framingham (United States of America)',1,1,0),(19626,0,119556,'Francavilla di Sicilia','Italy','IT','Francavilla di Sicilia (Italy)',1,1,0),(19627,0,119557,'Francavilla in Sinni','Italy','IT','Francavilla in Sinni (Italy)',1,1,0),(19628,0,119558,'Francheville','France','FR','Francheville (France)',1,1,0),(19629,0,119559,'Frangokastelo','Greece','GR','Frangokastelo (Greece)',1,1,0),(19630,0,119560,'Frankfort','United States of America','US','Frankfort (United States of America)',1,1,0),(19631,0,119561,'Frankfort','United States of America','US','Frankfort (United States of America)',1,1,0),(19632,0,119562,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(19633,0,119563,'Franklin','United States of America','US','Franklin (United States of America)',1,1,0),(19634,0,119564,'Franklin Park','United States of America','US','Franklin Park (United States of America)',1,1,0),(19635,9776,119565,'Frascati','Italy','IT','Frascati (Italy)',1,1,0),(19636,9782,119566,'Fratta Todina','Italy','IT','Fratta Todina (Italy)',1,1,0),(19637,0,119567,'Frauenmark','Germany','DE','Frauenmark (Germany)',1,1,0),(19638,0,119568,'Frazione Torri di Gualdo Cattaneo','Italy','IT','Frazione Torri di Gualdo Cattaneo (Italy)',1,1,0),(19639,0,119569,'Frederico Westphalen','Brazil','BR','Frederico Westphalen (Brazil)',1,1,0),(19640,9802,119570,'Frederiksvaerk','Denmark','DK','Frederiksvaerk (Denmark)',1,1,0),(19641,9822,119571,'Freiburg','Germany','DE','Freiburg (Germany)',1,1,0),(19642,0,119572,'Freila','Spain','ES','Freila (Spain)',1,1,0),(19643,9846,119573,'Fresnes-les-Montauban','France','FR','Fresnes-les-Montauban (France)',1,1,0),(19644,0,119574,'Friedberg (Steiermark)','Austria','AT','Friedberg (Steiermark) (Austria)',1,1,0),(19645,9861,119575,'Friedrichroda','Germany','DE','Friedrichroda (Germany)',1,1,0),(19646,9862,119576,'Friedrichsbrunn','Germany','DE','Friedrichsbrunn (Germany)',1,1,0),(19647,9867,119577,'Friedrichsruhe','Germany','DE','Friedrichsruhe (Germany)',1,1,0),(19648,0,119578,'Frisco','United States of America','US','Frisco (United States of America)',1,1,0),(19649,0,119579,'Frondenberg','Germany','DE','Frondenberg (Germany)',1,1,0),(19650,0,119580,'Froxfield','United Kingdom','UK','Froxfield (United Kingdom)',1,1,0),(19651,9895,119581,'Fruita','United States of America','US','Fruita (United States of America)',1,1,0),(19652,9898,119582,'Frutillar','Chile','CL','Frutillar (Chile)',1,1,0),(19653,9943,119583,'Fujiyoshida','Japan','JP','Fujiyoshida (Japan)',1,1,0),(19654,0,119584,'Fulton','United States of America','US','Fulton (United States of America)',1,1,0),(19655,9956,119585,'Fultondale','United States of America','US','Fultondale (United States of America)',1,1,0),(19656,0,119586,'Funes','Argentina','AR','Funes (Argentina)',1,1,0),(19657,9971,119587,'Furci Siculo','Italy','IT','Furci Siculo (Italy)',1,1,0),(19658,0,119588,'Furstenwalde','Germany','DE','Furstenwalde (Germany)',1,1,0),(19659,0,119589,'Furth','Germany','DE','Furth (Germany)',1,1,0),(19660,0,119590,'Fusong','China','CN','Fusong (China)',1,1,0),(19661,0,119591,'Futeau','France','FR','Futeau (France)',1,1,0),(19662,0,119592,'Gabin','Poland','PL','Gabin (Poland)',1,1,0),(19663,0,119593,'Gablitz','Austria','AT','Gablitz (Austria)',1,1,0),(19664,10005,119594,'Gadebusch','Germany','DE','Gadebusch (Germany)',1,1,0),(19665,10008,119595,'Gaeta','Italy','IT','Gaeta (Italy)',1,1,0),(19666,10009,119596,'Gaffney','United States of America','US','Gaffney (United States of America)',1,1,0),(19667,0,119597,'Gaichel','Luxembourg','LU','Gaichel (Luxembourg)',1,1,0),(19668,0,119598,'Gaildorf','Germany','DE','Gaildorf (Germany)',1,1,0),(19669,0,119599,'Gaimersheim','Germany','DE','Gaimersheim (Germany)',1,1,0),(19670,0,119600,'Gainsborough','United Kingdom','UK','Gainsborough (United Kingdom)',1,1,0),(19671,10024,119601,'Gaios','Greece','GR','Gaios (Greece)',1,1,0),(19672,0,119602,'Gaisberg','Austria','AT','Gaisberg (Austria)',1,1,0),(19673,0,119603,'Gala','Norway','NO','Gala (Norway)',1,1,0),(19674,10056,119604,'Galissas','Greece','GR','Galissas (Greece)',1,1,0),(19675,10058,119605,'Gallarate','Italy','IT','Gallarate (Italy)',1,1,0),(19676,10062,119606,'Gallicano','Italy','IT','Gallicano (Italy)',1,1,0),(19677,10064,119607,'Gallipoli','Italy','IT','Gallipoli (Italy)',1,1,0),(19678,0,119608,'Galmsbull','Germany','DE','Galmsbull (Germany)',1,1,0),(19679,0,119609,'Galway','Ireland','IE','Galway (Ireland)',1,1,0),(19680,0,119610,'Gambang','Malaysia','MY','Gambang (Malaysia)',1,1,0),(19681,0,119611,'Gamstadt','Germany','DE','Gamstadt (Germany)',1,1,0),(19682,10096,119612,'Gananoque','Canada','CA','Gananoque (Canada)',1,1,0),(19683,10115,119614,'Gap','France','FR','Gap (France)',1,1,0),(19684,0,119615,'Garbow (Powiat Lubelski)','Poland','PL','Garbow (Powiat Lubelski) (Poland)',1,1,0),(19685,10131,119616,'Garderen','Netherlands','NL','Garderen (Netherlands)',1,1,0),(19686,10132,119617,'Gardermoen','Norway','NO','Gardermoen (Norway)',1,1,0),(19687,0,119618,'Garding','Germany','DE','Garding (Germany)',1,1,0),(19688,10144,119619,'Gargas','France','FR','Gargas (France)',1,1,0),(19689,10151,119620,'Garibaldi','United States of America','US','Garibaldi (United States of America)',1,1,0),(19690,10159,119621,'Garner','United States of America','US','Garner (United States of America)',1,1,0),(19691,0,119622,'Garstang','United Kingdom','UK','Garstang (United Kingdom)',1,1,0),(19692,0,119623,'Gastes','France','FR','Gastes (France)',1,1,0),(19693,10201,119624,'Gattatico','Italy','IT','Gattatico (Italy)',1,1,0),(19694,0,119625,'Gatteo a Mare','Italy','IT','Gatteo a Mare (Italy)',1,1,0),(19695,0,119626,'Gattererberg','Austria','AT','Gattererberg (Austria)',1,1,0),(19696,0,119627,'Gau-Algesheim','Germany','DE','Gau-Algesheim (Germany)',1,1,0),(19697,0,119628,'Gauteng','South Africa','ZA','Gauteng (South Africa)',1,1,0),(19698,10227,119629,'Gayndah','Australia','AU','Gayndah (Australia)',1,1,0),(19699,10229,119630,'Gaziantep','Turkey','TR','Gaziantep (Turkey)',1,1,0),(19700,0,119631,'Gedern','Germany','DE','Gedern (Germany)',1,1,0),(19701,0,119632,'Geersdijk','Netherlands','NL','Geersdijk (Netherlands)',1,1,0),(19702,0,119633,'Geesteren','Netherlands','NL','Geesteren (Netherlands)',1,1,0),(19703,0,119634,'Geichlingen','Germany','DE','Geichlingen (Germany)',1,1,0),(19704,10243,119635,'Geilo','Norway','NO','Geilo (Norway)',1,1,0),(19705,0,119636,'Geisenhausen (Niederbayern)','Germany','DE','Geisenhausen (Niederbayern) (Germany)',1,1,0),(19706,10256,119637,'Geleen','Netherlands','NL','Geleen (Netherlands)',1,1,0),(19707,0,119638,'Gemla','Sweden','SE','Gemla (Sweden)',1,1,0),(19708,0,119639,'Gemozac','France','FR','Gemozac (France)',1,1,0),(19709,0,119640,'Generargues','France','FR','Generargues (France)',1,1,0),(19710,0,119641,'Geneva','United States of America','US','Geneva (United States of America)',1,1,0),(19711,10277,119642,'Genga','Italy','IT','Genga (Italy)',1,1,0),(19712,10289,119643,'Genting Highlands','Malaysia','MY','Genting Highlands (Malaysia)',1,1,0),(19713,10294,119644,'George','South Africa','ZA','George (South Africa)',1,1,0),(19714,10310,119645,'Gerace','Italy','IT','Gerace (Italy)',1,1,0),(19715,0,119646,'Gerakari','Greece','GR','Gerakari (Greece)',1,1,0),(19716,10316,119647,'Geras','Austria','AT','Geras (Austria)',1,1,0),(19717,10329,119648,'Gerlingen','Germany','DE','Gerlingen (Germany)',1,1,0),(19718,0,119649,'Germantown','United States of America','US','Germantown (United States of America)',1,1,0),(19719,0,119650,'Gerrards Cross','United Kingdom','UK','Gerrards Cross (United Kingdom)',1,1,0),(19720,0,119651,'Gersfeld','Germany','DE','Gersfeld (Germany)',1,1,0),(19721,0,119652,'Geschwenda','Germany','DE','Geschwenda (Germany)',1,1,0),(19722,0,119653,'Geslau','Germany','DE','Geslau (Germany)',1,1,0),(19723,10355,119654,'Getafe','Spain','ES','Getafe (Spain)',1,1,0),(19724,10361,119655,'Gevgelija','Macedonia','MK','Gevgelija (Macedonia)',1,1,0),(19725,10369,119656,'Ghanzi','Botswana','BW','Ghanzi (Botswana)',1,1,0),(19726,0,119657,'Gheorgheni','Romania','RO','Gheorgheni (Romania)',1,1,0),(19727,0,119658,'Ghirano','Italy','IT','Ghirano (Italy)',1,1,0),(19728,10378,119659,'Ghisonaccia','France','FR','Ghisonaccia (France)',1,1,0),(19729,31049,119660,'Giano dell\'Umbria','Italy','IT','Giano dell\'Umbria (Italy)',1,1,0),(19730,10532,119661,'Glenorchy','New Zealand','NZ','Glenorchy (New Zealand)',1,1,0),(19731,10560,119662,'Glottertal','Germany','DE','Glottertal (Germany)',1,1,0),(19732,0,119663,'Gloucester','United States of America','US','Gloucester (United States of America)',1,1,0),(19733,10573,119664,'Gnesta','Sweden','SE','Gnesta (Sweden)',1,1,0),(19734,0,119665,'Gnupverjahreppur','Iceland','IS','Gnupverjahreppur (Iceland)',1,1,0),(19735,10585,119666,'God','Hungary','HU','God (Hungary)',1,1,0),(19736,10613,119667,'Golbasi','Turkey','TR','Golbasi (Turkey)',1,1,0),(19737,0,119668,'Golcuk','Turkey','TR','Golcuk (Turkey)',1,1,0),(19738,0,119669,'Gold Canyon','United States of America','US','Gold Canyon (United States of America)',1,1,0),(19739,0,119670,'Goldap','Poland','PL','Goldap (Poland)',1,1,0),(19740,0,119671,'Goldbach (Unterfranken)','Germany','DE','Goldbach (Unterfranken) (Germany)',1,1,0),(19741,0,119672,'Golden Beach','Greece','GR','Golden Beach (Greece)',1,1,0),(19742,10626,119673,'Goldsboro','United States of America','US','Goldsboro (United States of America)',1,1,0),(19743,0,119674,'Golfe Juan','France','FR','Golfe Juan (France)',1,1,0),(19744,10637,119675,'Goliad','United States of America','US','Goliad (United States of America)',1,1,0),(19745,0,119676,'Golling an der Salzach','Austria','AT','Golling an der Salzach (Austria)',1,1,0),(19746,10639,119677,'Golmud','China','CN','Golmud (China)',1,1,0),(19747,0,119678,'Golub-Dobrzyn','Poland','PL','Golub-Dobrzyn (Poland)',1,1,0),(19748,0,119679,'Gondomar','Spain','ES','Gondomar (Spain)',1,1,0),(19749,10655,119680,'Gonen','Israel','IL','Gonen (Israel)',1,1,0),(19750,10657,119681,'Gonfreville-L\'Orcher','France','FR','Gonfreville-L\'Orcher (France)',1,1,0),(19751,10659,119682,'Gongliao','Taiwan','TW','Gongliao (Taiwan)',1,1,0),(19752,10660,119683,'Goniadz','Poland','PL','Goniadz (Poland)',1,1,0),(19753,0,119684,'Gonio','Georgia','GE','Gonio (Georgia)',1,1,0),(19754,10690,119685,'Gordonsville','United States of America','US','Gordonsville (United States of America)',1,1,0),(19755,10691,119686,'Gordonville','United States of America','US','Gordonville (United States of America)',1,1,0),(19756,10708,119687,'Gorlitz','Germany','DE','Gorlitz (Germany)',1,1,0),(19757,10716,119688,'Gorontalo','Indonesia','ID','Gorontalo (Indonesia)',1,1,0),(19758,10748,119689,'Goumois','France','FR','Goumois (France)',1,1,0),(19759,0,119690,'Gouy-Saint-Andre','France','FR','Gouy-Saint-Andre (France)',1,1,0),(19760,0,119691,'Governador Valadares','Brazil','BR','Governador Valadares (Brazil)',1,1,0),(19761,10773,119692,'Grabowhofe','Germany','DE','Grabowhofe (Germany)',1,1,0),(19762,0,119693,'Gradil','Portugal','PT','Gradil (Portugal)',1,1,0),(19763,0,119694,'Graeagle','United States of America','US','Graeagle (United States of America)',1,1,0),(19764,10788,119695,'Grafenau','Germany','DE','Grafenau (Germany)',1,1,0),(19765,0,119696,'Grafenhainichen','Germany','DE','Grafenhainichen (Germany)',1,1,0),(19766,10790,119697,'Grafenthal','Germany','DE','Grafenthal (Germany)',1,1,0),(19767,0,119698,'Grafenworth','Austria','AT','Grafenworth (Austria)',1,1,0),(19768,0,119699,'Graham','United States of America','US','Graham (United States of America)',1,1,0),(19769,10811,119700,'Granada','Nicaragua','NI','Granada (Nicaragua)',1,1,0),(19770,0,119701,'Grand Canyon National Park','United States of America','US','Grand Canyon National Park (United States of America)',1,1,0),(19771,31064,119702,'Grand Junction','United States of America','US','Grand Junction (United States of America)',1,1,0),(19772,0,119703,'Grand River South East','Mauritius','MU','Grand River South East (Mauritius)',1,1,0),(19773,0,119704,'Grand Riviere','Trinidad and Tobago','TT','Grand Riviere (Trinidad and Tobago)',1,1,0),(19774,0,119705,'Grandcamp Maisy','France','FR','Grandcamp Maisy (France)',1,1,0),(19775,10838,119706,'Grand-Fougeray','France','FR','Grand-Fougeray (France)',1,1,0),(19776,0,119707,'Grange','Ireland','IE','Grange (Ireland)',1,1,0),(19777,0,119708,'Grants Pass','United States of America','US','Grants Pass (United States of America)',1,1,0),(19778,10867,119709,'Grasellenbach','Germany','DE','Grasellenbach (Germany)',1,1,0),(19779,0,119710,'Gratangen','Norway','NO','Gratangen (Norway)',1,1,0),(19780,0,119711,'Gratteri','Italy','IT','Gratteri (Italy)',1,1,0),(19781,10877,119712,'Grau Roig','Andorra','AD','Grau Roig (Andorra)',1,1,0),(19782,0,119713,'Gravelotte','South Africa','ZA','Gravelotte (South Africa)',1,1,0),(19783,0,119714,'Great Tew','United Kingdom','UK','Great Tew (United Kingdom)',1,1,0),(19784,31079,119715,'Green Cove Springs','United States of America','US','Green Cove Springs (United States of America)',1,1,0),(19785,0,119716,'Green Turtle Cay','Bahamas','BS','Green Turtle Cay (Bahamas)',1,1,0),(19786,10924,119717,'Greeneville','United States of America','US','Greeneville (United States of America)',1,1,0),(19787,0,119718,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19788,0,119719,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19789,0,119720,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19790,10954,119721,'Greiz','Germany','DE','Greiz (Germany)',1,1,0),(19791,10972,119722,'Gretna','United States of America','US','Gretna (United States of America)',1,1,0),(19792,10974,119723,'Greve','Italy','IT','Greve (Italy)',1,1,0),(19793,0,119724,'Greven','Germany','DE','Greven (Germany)',1,1,0),(19794,10979,119725,'Greybull','United States of America','US','Greybull (United States of America)',1,1,0),(19795,10981,119726,'Greymouth','New Zealand','NZ','Greymouth (New Zealand)',1,1,0),(19796,0,119727,'Grieben','Germany','DE','Grieben (Germany)',1,1,0),(19797,0,119728,'Grieselstein','Austria','AT','Grieselstein (Austria)',1,1,0),(19798,0,119729,'Grizzo di Montereale Valcellina','Italy','IT','Grizzo di Montereale Valcellina (Italy)',1,1,0),(19799,11014,119730,'Grobming','Austria','AT','Grobming (Austria)',1,1,0),(19800,0,119731,'Groden','Netherlands','NL','Groden (Netherlands)',1,1,0),(19801,0,119732,'Groot Bijgaarden','Belgium','BE','Groot Bijgaarden (Belgium)',1,1,0),(19802,0,119733,'Grootfontein','Namibia','NA','Grootfontein (Namibia)',1,1,0),(19803,0,119734,'Gros Morne National Park','Canada','CA','Gros Morne National Park (Canada)',1,1,0),(19804,0,119735,'Gro? Drewitz','Germany','DE','Gro? Drewitz (Germany)',1,1,0),(19805,0,119736,'Gro? Nemerow','Germany','DE','Gro? Nemerow (Germany)',1,1,0),(19806,0,119737,'Gro? Sarchen','Germany','DE','Gro? Sarchen (Germany)',1,1,0),(19807,0,119738,'Gro?beeren','Germany','DE','Gro?beeren (Germany)',1,1,0),(19808,0,119739,'Gro?ebersdorf','Germany','DE','Gro?ebersdorf (Germany)',1,1,0),(19809,0,119740,'Grosseto-Prugna','France','FR','Grosseto-Prugna (France)',1,1,0),(19810,0,119741,'Gro?harrie','Germany','DE','Gro?harrie (Germany)',1,1,0),(19811,0,119742,'Grossraming','Austria','AT','Grossraming (Austria)',1,1,0),(19812,0,119743,'Grouville','United Kingdom','UK','Grouville (United Kingdom)',1,1,0),(19813,31084,119744,'Grove','United States of America','US','Grove (United States of America)',1,1,0),(19814,11058,119745,'Groveport','United States of America','US','Groveport (United States of America)',1,1,0),(19815,11060,119746,'Groves','United States of America','US','Groves (United States of America)',1,1,0),(19816,11064,119747,'Gruissan','France','FR','Gruissan (France)',1,1,0),(19817,0,119748,'Grunenplan','Germany','DE','Grunenplan (Germany)',1,1,0),(19818,0,119749,'Grunhain-Beierfeld','Germany','DE','Grunhain-Beierfeld (Germany)',1,1,0),(19819,11072,119750,'Gruningen','Switzerland','CH','Gruningen (Switzerland)',1,1,0),(19820,0,119751,'Grupont','Belgium','BE','Grupont (Belgium)',1,1,0),(19821,11079,119752,'Gsteigwiler','Switzerland','CH','Gsteigwiler (Switzerland)',1,1,0),(19822,11081,119753,'Guadalajara','Spain','ES','Guadalajara (Spain)',1,1,0),(19823,11088,119754,'Guadix','Spain','ES','Guadix (Spain)',1,1,0),(19824,0,119755,'Gualdo','Italy','IT','Gualdo (Italy)',1,1,0),(19825,0,119756,'Guangfeng','China','CN','Guangfeng (China)',1,1,0),(19826,0,119757,'Guangyuan','China','CN','Guangyuan (China)',1,1,0),(19827,11115,119758,'Guapiles','Costa Rica','CR','Guapiles (Costa Rica)',1,1,0),(19828,11121,119759,'Guaratingueta','Brazil','BR','Guaratingueta (Brazil)',1,1,0),(19829,11132,119760,'Guarulhos','Brazil','BR','Guarulhos (Brazil)',1,1,0),(19830,0,119761,'Guasticce Collesalvetti','Italy','IT','Guasticce Collesalvetti (Italy)',1,1,0),(19831,0,119762,'Guayabitos','Mexico','MX','Guayabitos (Mexico)',1,1,0),(19832,0,119763,'Guayana','Venezuela','VE','Guayana (Venezuela)',1,1,0),(19833,0,119764,'Gudauri','Georgia','GE','Gudauri (Georgia)',1,1,0),(19834,11144,119765,'Gudme','Denmark','DK','Gudme (Denmark)',1,1,0),(19835,11153,119766,'Guerande','France','FR','Guerande (France)',1,1,0),(19836,0,119767,'Ghammar','Malta','MT','Ghammar (Malta)',1,1,0),(19837,0,119768,'Ghedi','Italy','IT','Ghedi (Italy)',1,1,0),(19838,10377,119769,'Ghislenghien','Belgium','BE','Ghislenghien (Belgium)',1,1,0),(19839,10379,119770,'Ghizzano','Italy','IT','Ghizzano (Italy)',1,1,0),(19840,0,119771,'Giannades','Greece','GR','Giannades (Greece)',1,1,0),(19841,10390,119772,'Gibsonia','United States of America','US','Gibsonia (United States of America)',1,1,0),(19842,10399,119773,'Giethoorn','Netherlands','NL','Giethoorn (Netherlands)',1,1,0),(19843,0,119774,'Gignac (Lot)','France','FR','Gignac (Lot) (France)',1,1,0),(19844,0,119775,'Gignese','Italy','IT','Gignese (Italy)',1,1,0),(19845,0,119776,'Gillingham','United Kingdom','UK','Gillingham (United Kingdom)',1,1,0),(19846,0,119777,'Gilserberg-Schonstein','Germany','DE','Gilserberg-Schonstein (Germany)',1,1,0),(19847,10436,119778,'Gimo','Sweden','SE','Gimo (Sweden)',1,1,0),(19848,0,119779,'Girardot','Colombia','CO','Girardot (Colombia)',1,1,0),(19849,0,119780,'Gisikon','Switzerland','CH','Gisikon (Switzerland)',1,1,0),(19850,0,119781,'Gistel','Belgium','BE','Gistel (Belgium)',1,1,0),(19851,0,119782,'Giulianova Lido','Italy','IT','Giulianova Lido (Italy)',1,1,0),(19852,0,119783,'Gizan / Jizan','Saudi Arabia','SA','Gizan / Jizan (Saudi Arabia)',1,1,0),(19853,0,119784,'Gjumri','Armenia','AM','Gjumri (Armenia)',1,1,0),(19854,0,119785,'Glacier National Park','Canada','CA','Glacier National Park (Canada)',1,1,0),(19855,0,119786,'Gland','Switzerland','CH','Gland (Switzerland)',1,1,0),(19856,0,119787,'Glanz an der Weinstra?e','Austria','AT','Glanz an der Weinstra?e (Austria)',1,1,0),(19857,0,119788,'Glasgow','United Kingdom','UK','Glasgow (United Kingdom)',1,1,0),(19858,10500,119789,'Glastonbury','United States of America','US','Glastonbury (United States of America)',1,1,0),(19859,10501,119790,'Glattbrugg','Switzerland','CH','Glattbrugg (Switzerland)',1,1,0),(19860,0,119791,'Glen','United States of America','US','Glen (United States of America)',1,1,0),(19861,0,119792,'Glen Allen','United States of America','US','Glen Allen (United States of America)',1,1,0),(19862,0,119793,'Glendale','United States of America','US','Glendale (United States of America)',1,1,0),(19863,10513,119794,'Glendalough','Ireland','IE','Glendalough (Ireland)',1,1,0),(19864,10524,119795,'Glengarriff','Ireland','IE','Glengarriff (Ireland)',1,1,0),(19865,10529,119796,'Glennallen','United States of America','US','Glennallen (United States of America)',1,1,0),(19866,10533,119797,'Glenorchy','Australia','AU','Glenorchy (Australia)',1,1,0),(19867,0,119798,'Glikadi','Greece','GR','Glikadi (Greece)',1,1,0),(19868,10546,119799,'Glinde','Germany','DE','Glinde (Germany)',1,1,0),(19869,0,119800,'Glogau','Poland','PL','Glogau (Poland)',1,1,0),(19870,0,119801,'Gloucester City','United States of America','US','Gloucester City (United States of America)',1,1,0),(19871,0,119802,'Glowe','Germany','DE','Glowe (Germany)',1,1,0),(19872,0,119803,'Gmina Gasawa','Poland','PL','Gmina Gasawa (Poland)',1,1,0),(19873,0,119804,'Gnesau','Austria','AT','Gnesau (Austria)',1,1,0),(19874,0,119806,'Gobo','Japan','JP','Gobo (Japan)',1,1,0),(19875,10581,119807,'Gocek','Turkey','TR','Gocek (Turkey)',1,1,0),(19876,10599,119808,'Goes','Netherlands','NL','Goes (Netherlands)',1,1,0),(19877,0,119809,'Gohren-Lebbin - Fleesensee','Germany','DE','Gohren-Lebbin - Fleesensee (Germany)',1,1,0),(19878,0,119810,'Gokceada','Turkey','TR','Gokceada (Turkey)',1,1,0),(19879,10618,119811,'Golden','United States of America','US','Golden (United States of America)',1,1,0),(19880,0,119812,'Goldkronach','Germany','DE','Goldkronach (Germany)',1,1,0),(19881,0,119813,'Gollersdorf','Austria','AT','Gollersdorf (Austria)',1,1,0),(19882,0,119814,'Gols','Austria','AT','Gols (Austria)',1,1,0),(19883,10644,119815,'Gomaringen','Germany','DE','Gomaringen (Germany)',1,1,0),(19884,0,119816,'Gomersal','United Kingdom','UK','Gomersal (United Kingdom)',1,1,0),(19885,10648,119817,'Gomez Palacio','Mexico','MX','Gomez Palacio (Mexico)',1,1,0),(19886,0,119818,'Gonars','Italy','IT','Gonars (Italy)',1,1,0),(19887,10677,119819,'Goondiwindi','Australia','AU','Goondiwindi (Australia)',1,1,0),(19888,0,119820,'Goose Bay','Canada','CA','Goose Bay (Canada)',1,1,0),(19889,10678,119821,'Goose Creek','United States of America','US','Goose Creek (United States of America)',1,1,0),(19890,0,119822,'Gordola','Switzerland','CH','Gordola (Switzerland)',1,1,0),(19891,0,119823,'Gorgonzola','Italy','IT','Gorgonzola (Italy)',1,1,0),(19892,0,119824,'Goris','Armenia','AM','Goris (Armenia)',1,1,0),(19893,0,119825,'Gornja Stubica','Croatia','HR','Gornja Stubica (Croatia)',1,1,0),(19894,0,119826,'Gorno-Altaysk','Russia','RU','Gorno-Altaysk (Russia)',1,1,0),(19895,10714,119827,'Gorokan','Australia','AU','Gorokan (Australia)',1,1,0),(19896,0,119828,'Gortipohl','Austria','AT','Gortipohl (Austria)',1,1,0),(19897,0,119829,'Go?weinstein','Germany','DE','Go?weinstein (Germany)',1,1,0),(19898,0,119830,'Gotthun','Germany','DE','Gotthun (Germany)',1,1,0),(19899,0,119831,'Gotzendorf an der Leitha','Austria','AT','Gotzendorf an der Leitha (Austria)',1,1,0),(19900,10743,119832,'Gouesnou','France','FR','Gouesnou (France)',1,1,0),(19901,10747,119833,'Goult','France','FR','Goult (France)',1,1,0),(19902,10753,119834,'Goussainville','France','FR','Goussainville (France)',1,1,0),(19903,0,119835,'Governor\'s Beach','Cyprus','CY','Governor\'s Beach (Cyprus)',1,1,0),(19904,0,119836,'Governor\'s Harbour','Bahamas','BS','Governor\'s Harbour (Bahamas)',1,1,0),(19905,10764,119837,'Goya','Argentina','AR','Goya (Argentina)',1,1,0),(19906,0,119838,'Graach an der Mosel','Germany','DE','Graach an der Mosel (Germany)',1,1,0),(19907,10771,119839,'Graal-Muritz','Germany','DE','Graal-Muritz (Germany)',1,1,0),(19908,0,119840,'Grabri','Croatia','HR','Grabri (Croatia)',1,1,0),(19909,10784,119841,'Gradignan','France','FR','Gradignan (France)',1,1,0),(19910,0,119842,'Grafenegg','Austria','AT','Grafenegg (Austria)',1,1,0),(19911,10791,119843,'Grafing bei Munchen','Germany','DE','Grafing bei Munchen (Germany)',1,1,0),(19912,10792,119844,'Graford','United States of America','US','Graford (United States of America)',1,1,0),(19913,0,119845,'Grafschaft VS','Switzerland','CH','Grafschaft VS (Switzerland)',1,1,0),(19914,0,119846,'Grafton','United States of America','US','Grafton (United States of America)',1,1,0),(19915,0,119847,'Gramvoussa','Greece','GR','Gramvoussa (Greece)',1,1,0),(19916,0,119848,'Gran Canaria','Spain','ES','Gran Canaria (Spain)',1,1,0),(19917,0,119849,'Grangarde','Sweden','SE','Grangarde (Sweden)',1,1,0),(19918,0,119850,'Granite Falls','United States of America','US','Granite Falls (United States of America)',1,1,0),(19919,10853,119851,'Granollers','Spain','ES','Granollers (Spain)',1,1,0),(19920,10862,119852,'Granville','United States of America','US','Granville (United States of America)',1,1,0),(19921,0,119853,'Granyena de les Garrigues','Spain','ES','Granyena de les Garrigues (Spain)',1,1,0),(19922,0,119854,'Gratwein','Austria','AT','Gratwein (Austria)',1,1,0),(19923,10885,119855,'Gravenwiesbach','Germany','DE','Gravenwiesbach (Germany)',1,1,0),(19924,0,119856,'Gray (Haute-Saone)','France','FR','Gray (Haute-Saone) (France)',1,1,0),(19925,10897,119857,'Grayson','United States of America','US','Grayson (United States of America)',1,1,0),(19926,0,119858,'Graz','Austria','AT','Graz (Austria)',1,1,0),(19927,0,119859,'Greenbrier','United States of America','US','Greenbrier (United States of America)',1,1,0),(19928,10923,119860,'Greene','United States of America','US','Greene (United States of America)',1,1,0),(19929,0,119861,'Greenfield','United States of America','US','Greenfield (United States of America)',1,1,0),(19930,0,119862,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(19931,0,119863,'Grein an der Donau','Austria','AT','Grein an der Donau (Austria)',1,1,0),(19932,0,119864,'Grenade-sur-l\'Adour','France','FR','Grenade-sur-l\'Adour (France)',1,1,0),(19933,0,119865,'Grengiols','Switzerland','CH','Grengiols (Switzerland)',1,1,0),(19934,0,119866,'Greolieres','France','FR','Greolieres (France)',1,1,0),(19935,0,119867,'Grezzana','Italy','IT','Grezzana (Italy)',1,1,0),(19936,10983,119868,'Griante','Italy','IT','Griante (Italy)',1,1,0),(19937,10991,119869,'Grigny','France','FR','Grigny (France)',1,1,0),(19938,11003,119870,'Grindavik','Iceland','IS','Grindavik (Iceland)',1,1,0),(19939,0,119871,'Grins','Austria','AT','Grins (Austria)',1,1,0),(19940,11035,119872,'Grosotto','Italy','IT','Grosotto (Italy)',1,1,0),(19941,0,119873,'Gross Breesen','Germany','DE','Gross Breesen (Germany)',1,1,0),(19942,0,119874,'Gro? Leuthen','Germany','DE','Gro? Leuthen (Germany)',1,1,0),(19943,10949,119875,'Greetsiel','Germany','DE','Greetsiel (Germany)',1,1,0),(19944,10956,119876,'Grenada','United States of America','US','Grenada (United States of America)',1,1,0),(19945,10960,119877,'Grenoble','France','FR','Grenoble (France)',1,1,0),(19946,0,119878,'Grens','Switzerland','CH','Grens (Switzerland)',1,1,0),(19947,10963,119879,'Greoux-les-Bains','France','FR','Greoux-les-Bains (France)',1,1,0),(19948,0,119880,'Grethem','Germany','DE','Grethem (Germany)',1,1,0),(19949,0,119881,'Grevenkrug','Germany','DE','Grevenkrug (Germany)',1,1,0),(19950,0,119882,'Grezes','France','FR','Grezes (France)',1,1,0),(19951,10985,119883,'Gries','Austria','AT','Gries (Austria)',1,1,0),(19952,0,119884,'Gries im Sellrain','Austria','AT','Gries im Sellrain (Austria)',1,1,0),(19953,0,119885,'Grikos','Greece','GR','Grikos (Greece)',1,1,0),(19954,10995,119886,'Grimes','United States of America','US','Grimes (United States of America)',1,1,0),(19955,11011,119887,'Griswold','United States of America','US','Griswold (United States of America)',1,1,0),(19956,0,119888,'Groenlo','Netherlands','NL','Groenlo (Netherlands)',1,1,0),(19957,0,119889,'Gromitz','Germany','DE','Gromitz (Germany)',1,1,0),(19958,11024,119890,'Grong','Norway','NO','Grong (Norway)',1,1,0),(19959,0,119891,'Gro? Enzersdorf','Austria','AT','Gro? Enzersdorf (Austria)',1,1,0),(19960,0,119892,'Gro? Glienicke','Germany','DE','Gro? Glienicke (Germany)',1,1,0),(19961,0,119893,'Gross Kordshagen','Germany','DE','Gross Kordshagen (Germany)',1,1,0),(19962,0,119894,'Gro? Koris','Germany','DE','Gro? Koris (Germany)',1,1,0),(19963,0,119895,'Gro? Zicker','Germany','DE','Gro? Zicker (Germany)',1,1,0),(19964,0,119896,'Gro?bettlingen','Germany','DE','Gro?bettlingen (Germany)',1,1,0),(19965,0,119897,'Gro?enseebach','Germany','DE','Gro?enseebach (Germany)',1,1,0),(19966,0,119898,'Gro?heubach','Germany','DE','Gro?heubach (Germany)',1,1,0),(19967,0,119899,'Gro?mehring','Germany','DE','Gro?mehring (Germany)',1,1,0),(19968,0,119900,'Gro?obringen','Germany','DE','Gro?obringen (Germany)',1,1,0),(19969,0,119901,'Gro?ruckerswalde','Germany','DE','Gro?ruckerswalde (Germany)',1,1,0),(19970,11051,119902,'Grotli','Norway','NO','Grotli (Norway)',1,1,0),(19971,11052,119903,'Groton','United States of America','US','Groton (United States of America)',1,1,0),(19972,0,119904,'Grottaglie','Italy','IT','Grottaglie (Italy)',1,1,0),(19973,31085,119905,'Grove City','United States of America','US','Grove City (United States of America)',1,1,0),(19974,11063,119906,'Grugliasco','Italy','IT','Grugliasco (Italy)',1,1,0),(19975,11074,119907,'Gruyeres','Switzerland','CH','Gruyeres (Switzerland)',1,1,0),(19976,11076,119908,'Grythyttan','Sweden','SE','Grythyttan (Sweden)',1,1,0),(19977,0,119909,'Gsies','Italy','IT','Gsies (Italy)',1,1,0),(19978,0,119910,'Guadalajara','Mexico','MX','Guadalajara (Mexico)',1,1,0),(19979,11085,119911,'Guadarrama','Spain','ES','Guadarrama (Spain)',1,1,0),(19980,11105,119912,'Guang\'an','China','CN','Guang\'an (China)',1,1,0),(19981,11109,119913,'Guanica','Puerto Rico','PR','Guanica (Puerto Rico)',1,1,0),(19982,11125,119914,'Guardamar del Segura','Spain','ES','Guardamar del Segura (Spain)',1,1,0),(19983,0,119915,'Gudmont-Villiers','France','FR','Gudmont-Villiers (France)',1,1,0),(19984,11150,119916,'Guelph','Canada','CA','Guelph (Canada)',1,1,0),(19985,0,119917,'Guia','Portugal','PT','Guia (Portugal)',1,1,0),(19986,0,119918,'Guichen','France','FR','Guichen (France)',1,1,0),(19987,11169,119919,'Guidel','France','FR','Guidel (France)',1,1,0),(19988,0,119920,'Guillin','China','CN','Guillin (China)',1,1,0),(19989,11185,119921,'Guingamp','France','FR','Guingamp (France)',1,1,0),(19990,11190,119922,'Guiyang','China','CN','Guiyang (China)',1,1,0),(19991,0,119923,'Gulfport','United States of America','US','Gulfport (United States of America)',1,1,0),(19992,0,119925,'Gundersheim','Germany','DE','Gundersheim (Germany)',1,1,0),(19993,11238,119926,'Guttannen','Switzerland','CH','Guttannen (Switzerland)',1,1,0),(19994,11239,119927,'Guttingen','Switzerland','CH','Guttingen (Switzerland)',1,1,0),(19995,0,119928,'Guvercinlik','Turkey','TR','Guvercinlik (Turkey)',1,1,0),(19996,11244,119929,'Guysborough','Canada','CA','Guysborough (Canada)',1,1,0),(19997,11259,119930,'Gympie','Australia','AU','Gympie (Australia)',1,1,0),(19998,11263,119931,'Gyula','Hungary','HU','Gyula (Hungary)',1,1,0),(19999,0,119932,'Hachenburg','Germany','DE','Hachenburg (Germany)',1,1,0),(20000,0,119933,'Haeundae Beach','South Korea','KR','Haeundae Beach (South Korea)',1,1,0),(20001,31093,119934,'Hagen','Germany','DE','Hagen (Germany)',1,1,0),(20002,0,119935,'Hagnau am Bodensee','Germany','DE','Hagnau am Bodensee (Germany)',1,1,0),(20003,11316,119936,'Hague','United States of America','US','Hague (United States of America)',1,1,0),(20004,0,119937,'Haigerloch','Germany','DE','Haigerloch (Germany)',1,1,0),(20005,11336,119938,'Hailey','United States of America','US','Hailey (United States of America)',1,1,0),(20006,11339,119939,'Haiming','Austria','AT','Haiming (Austria)',1,1,0),(20007,0,119940,'Haina (Kloster)','Germany','DE','Haina (Kloster) (Germany)',1,1,0),(20008,0,119941,'Haj','Czech Republic','CZ','Haj (Czech Republic)',1,1,0),(20009,0,119942,'Halali Village','Namibia','NA','Halali Village (Namibia)',1,1,0),(20010,0,119943,'Halbinsel Vikbolandet','Sweden','SE','Halbinsel Vikbolandet (Sweden)',1,1,0),(20011,0,119944,'Halbturn','Austria','AT','Halbturn (Austria)',1,1,0),(20012,11365,119945,'Haldensee','Austria','AT','Haldensee (Austria)',1,1,0),(20013,11381,119946,'Halifax','Canada','CA','Halifax (Canada)',1,1,0),(20014,0,119947,'Halle (Saale)','Germany','DE','Halle (Saale) (Germany)',1,1,0),(20015,11391,119948,'Hallein','Austria','AT','Hallein (Austria)',1,1,0),(20016,0,119949,'Haller am Haldensee','Austria','AT','Haller am Haldensee (Austria)',1,1,0),(20017,0,119950,'Hamadan','Iran','IR','Hamadan (Iran)',1,1,0),(20018,11417,119951,'Hamamatsu','Japan','JP','Hamamatsu (Japan)',1,1,0),(20019,0,119952,'Hammer by Inzell','Germany','DE','Hammer by Inzell (Germany)',1,1,0),(20020,11447,119953,'Hamminkeln','Germany','DE','Hamminkeln (Germany)',1,1,0),(20021,11448,119954,'Hammond','United States of America','US','Hammond (United States of America)',1,1,0),(20022,0,119955,'Hampshire','United Kingdom','UK','Hampshire (United Kingdom)',1,1,0),(20023,0,119956,'Hampton','United States of America','US','Hampton (United States of America)',1,1,0),(20024,0,119957,'Hampton','United States of America','US','Hampton (United States of America)',1,1,0),(20025,11469,119958,'Hancock','United States of America','US','Hancock (United States of America)',1,1,0),(20026,0,119959,'Hancock','United States of America','US','Hancock (United States of America)',1,1,0),(20027,0,119960,'Hanimaadhoo','Maldives','MV','Hanimaadhoo (Maldives)',1,1,0),(20028,0,119962,'Han-Sur-Lesse','Belgium','BE','Han-Sur-Lesse (Belgium)',1,1,0),(20029,0,119963,'Harads','Sweden','SE','Harads (Sweden)',1,1,0),(20030,11507,119964,'Harare','Zimbabwe','ZW','Harare (Zimbabwe)',1,1,0),(20031,0,119965,'Harbach','Austria','AT','Harbach (Austria)',1,1,0),(20032,0,119966,'Harding','South Africa','ZA','Harding (South Africa)',1,1,0),(20033,0,119967,'Harich','Netherlands','NL','Harich (Netherlands)',1,1,0),(20034,11538,119968,'Harlan','United States of America','US','Harlan (United States of America)',1,1,0),(20035,11547,119969,'Harnosand','Sweden','SE','Harnosand (Sweden)',1,1,0),(20036,11552,119970,'Harpers Ferry','United States of America','US','Harpers Ferry (United States of America)',1,1,0),(20037,11564,119971,'Harrisonville','United States of America','US','Harrisonville (United States of America)',1,1,0),(20038,0,119972,'Harvest','United States of America','US','Harvest (United States of America)',1,1,0),(20039,0,119973,'Hassel (Weser)','Germany','DE','Hassel (Weser) (Germany)',1,1,0),(20040,0,119974,'Ha?mersheim','Germany','DE','Ha?mersheim (Germany)',1,1,0),(20041,11621,119975,'Hatch','United States of America','US','Hatch (United States of America)',1,1,0),(20042,31106,119976,'Haus','Austria','AT','Haus (Austria)',1,1,0),(20043,11655,119977,'Havana','Cuba','CU','Havana (Cuba)',1,1,0),(20044,11683,119979,'Hawar','Bahrain','BH','Hawar (Bahrain)',1,1,0),(20045,0,119980,'Haworth','United Kingdom','UK','Haworth (United Kingdom)',1,1,0),(20046,0,119981,'Haydon Bridge','United Kingdom','UK','Haydon Bridge (United Kingdom)',1,1,0),(20047,0,119982,'Hayman Island','Australia','AU','Hayman Island (Australia)',1,1,0),(20048,0,119983,'Haywards Heath','United Kingdom','UK','Haywards Heath (United Kingdom)',1,1,0),(20049,11737,119984,'Headford','Ireland','IE','Headford (Ireland)',1,1,0),(20050,0,119985,'Hecho','Spain','ES','Hecho (Spain)',1,1,0),(20051,0,119986,'Grafendorf','Austria','AT','Grafendorf (Austria)',1,1,0),(20052,10798,119987,'Grain Valley','United States of America','US','Grain Valley (United States of America)',1,1,0),(20053,10820,119988,'Granby','Canada','CA','Granby (Canada)',1,1,0),(20054,0,119989,'Grand\' Anse','Reunion','RE','Grand\' Anse (Reunion)',1,1,0),(20055,10821,119990,'Grand Bay','Mauritius','MU','Grand Bay (Mauritius)',1,1,0),(20056,0,119991,'Grand Prairie','Canada','CA','Grand Prairie (Canada)',1,1,0),(20057,0,119992,'Grandcour','France','FR','Grandcour (France)',1,1,0),(20058,0,119993,'Grandes-Bergeronnes','Canada','CA','Grandes-Bergeronnes (Canada)',1,1,0),(20059,10839,119994,'Grand-Laviers','France','FR','Grand-Laviers (France)',1,1,0),(20060,0,119995,'Grand-Mere','Canada','CA','Grand-Mere (Canada)',1,1,0),(20061,0,119996,'Grandvaux','Switzerland','CH','Grandvaux (Switzerland)',1,1,0),(20062,10842,119997,'Grandville','United States of America','US','Grandville (United States of America)',1,1,0),(20063,0,119998,'Granitis','Greece','GR','Granitis (Greece)',1,1,0),(20064,10859,119999,'Grantsville','United States of America','US','Grantsville (United States of America)',1,1,0),(20065,10860,120000,'Grantville','United States of America','US','Grantville (United States of America)',1,1,0),(20066,0,120001,'Granzow','Germany','DE','Granzow (Germany)',1,1,0),(20067,10881,120002,'Gravedona','Italy','IT','Gravedona (Italy)',1,1,0),(20068,0,120003,'Grays','United Kingdom','UK','Grays (United Kingdom)',1,1,0),(20069,10896,120004,'Grayslake','United States of America','US','Grayslake (United States of America)',1,1,0),(20070,0,120005,'Great Clifton','United Kingdom','UK','Great Clifton (United Kingdom)',1,1,0),(20071,0,120006,'Great Cressingham','United Kingdom','UK','Great Cressingham (United Kingdom)',1,1,0),(20072,0,120007,'Great Exuma','Bahamas','BS','Great Exuma (Bahamas)',1,1,0),(20073,10910,120008,'Grebbestad','Sweden','SE','Grebbestad (Sweden)',1,1,0),(20074,31077,120009,'Green Bay','United States of America','US','Green Bay (United States of America)',1,1,0),(20075,10940,120010,'Greenup','United States of America','US','Greenup (United States of America)',1,1,0),(20076,0,120011,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(20077,10946,120012,'Greenwood','Jamaica','JM','Greenwood (Jamaica)',1,1,0),(20078,10947,120013,'Greer','United States of America','US','Greer (United States of America)',1,1,0),(20079,0,120014,'Grennough','United States of America','US','Grennough (United States of America)',1,1,0),(20080,10966,120015,'Gresse-en-Vercors','France','FR','Gresse-en-Vercors (France)',1,1,0),(20081,0,120016,'Gretna','United States of America','US','Gretna (United States of America)',1,1,0),(20082,10977,120017,'Grevesmuhlen','Germany','DE','Grevesmuhlen (Germany)',1,1,0),(20083,0,120018,'Greystoke','United Kingdom','UK','Greystoke (United Kingdom)',1,1,0),(20084,0,120019,'Grez-Neuville','France','FR','Grez-Neuville (France)',1,1,0),(20085,0,120020,'Grieskirchen','Austria','AT','Grieskirchen (Austria)',1,1,0),(20086,0,120021,'Grimma','Germany','DE','Grimma (Germany)',1,1,0),(20087,0,120022,'Groffliers','France','FR','Groffliers (France)',1,1,0),(20088,11033,120023,'Gros Islet','Saint Lucia','LC','Gros Islet (Saint Lucia)',1,1,0),(20089,0,120024,'Gro? Reken','Germany','DE','Gro? Reken (Germany)',1,1,0),(20090,0,120025,'Gro? Sankt Florian','Austria','AT','Gro? Sankt Florian (Austria)',1,1,0),(20091,11044,120026,'Grossenbrode','Germany','DE','Grossenbrode (Germany)',1,1,0),(20092,0,120027,'Grossheide','Germany','DE','Grossheide (Germany)',1,1,0),(20093,0,120028,'Gro?posna','Germany','DE','Gro?posna (Germany)',1,1,0),(20094,0,120029,'Gro?rosseln','Germany','DE','Gro?rosseln (Germany)',1,1,0),(20095,0,120030,'Gro?schonau','Germany','DE','Gro?schonau (Germany)',1,1,0),(20096,0,120031,'Gro?-Umstadt','Germany','DE','Gro?-Umstadt (Germany)',1,1,0),(20097,0,120032,'Gruben','Switzerland','CH','Gruben (Switzerland)',1,1,0),(20098,0,120033,'Grude','Bosnia and Herzegowina','BA','Grude (Bosnia and Herzegowina)',1,1,0),(20099,0,120034,'Grunbach','Austria','AT','Grunbach (Austria)',1,1,0),(20100,0,120035,'Grundlsee (Grundl Lake)','Austria','AT','Grundlsee (Grundl Lake) (Austria)',1,1,0),(20101,0,120036,'Grunenbach','Germany','DE','Grunenbach (Germany)',1,1,0),(20102,0,120037,'Grusch','Switzerland','CH','Grusch (Switzerland)',1,1,0),(20103,0,120038,'Grutti','Italy','IT','Grutti (Italy)',1,1,0),(20104,0,120039,'Gryfow Slaski','Poland','PL','Gryfow Slaski (Poland)',1,1,0),(20105,11090,120040,'Guaira','Brazil','BR','Guaira (Brazil)',1,1,0),(20106,11101,120041,'Guana Island','British Virgin Islands','VG','Guana Island (British Virgin Islands)',1,1,0),(20107,11116,120042,'Guarajuba','Brazil','BR','Guarajuba (Brazil)',1,1,0),(20108,0,120043,'Guaratuba','Brazil','BR','Guaratuba (Brazil)',1,1,0),(20109,0,120044,'Guarazoca','Spain','ES','Guarazoca (Spain)',1,1,0),(20110,11127,120045,'Guardavalle','Italy','IT','Guardavalle (Italy)',1,1,0),(20111,0,120046,'Guardo','Spain','ES','Guardo (Spain)',1,1,0),(20112,11140,120047,'Gudar','Spain','ES','Gudar (Spain)',1,1,0),(20113,0,120048,'Gueberschwihr','France','FR','Gueberschwihr (France)',1,1,0),(20114,0,120049,'Guercif','Morocco','MA','Guercif (Morocco)',1,1,0),(20115,11159,120050,'Guerrero Negro','Mexico','MX','Guerrero Negro (Mexico)',1,1,0),(20116,0,120051,'Guigang','China','CN','Guigang (China)',1,1,0),(20117,0,120052,'Guildford','United Kingdom','UK','Guildford (United Kingdom)',1,1,0),(20118,11180,120053,'Guillestre','France','FR','Guillestre (France)',1,1,0),(20119,0,120054,'Guisborough','United Kingdom','UK','Guisborough (United Kingdom)',1,1,0),(20120,0,120055,'Guisseny','France','FR','Guisseny (France)',1,1,0),(20121,0,120056,'Gujan Mestras','France','FR','Gujan Mestras (France)',1,1,0),(20122,0,120057,'Gulbene','Latvia','LV','Gulbene (Latvia)',1,1,0),(20123,11198,120058,'Gulpen','Netherlands','NL','Gulpen (Netherlands)',1,1,0),(20124,0,120059,'Gulval','United Kingdom','UK','Gulval (United Kingdom)',1,1,0),(20125,0,120060,'Gunderath','Germany','DE','Gunderath (Germany)',1,1,0),(20126,0,120061,'Gundersheim','Austria','AT','Gundersheim (Austria)',1,1,0),(20127,11215,120062,'Gunnedah','Australia','AU','Gunnedah (Australia)',1,1,0),(20128,0,120063,'Gunsan','South Korea','KR','Gunsan (South Korea)',1,1,0),(20129,11222,120064,'Gura Humorului','Romania','RO','Gura Humorului (Romania)',1,1,0),(20130,0,120065,'Gura Raului','Romania','RO','Gura Raului (Romania)',1,1,0),(20131,11231,120066,'Gussing','Austria','AT','Gussing (Austria)',1,1,0),(20132,11233,120067,'Gustavus','United States of America','US','Gustavus (United States of America)',1,1,0),(20133,0,120068,'Guxhagen','Germany','DE','Guxhagen (Germany)',1,1,0),(20134,0,120069,'Guyuan','China','CN','Guyuan (China)',1,1,0),(20135,0,120070,'Guyzance','United Kingdom','UK','Guyzance (United Kingdom)',1,1,0),(20136,11245,120071,'Guzelyali','Turkey','TR','Guzelyali (Turkey)',1,1,0),(20137,11262,120072,'Gythion','Greece','GR','Gythion (Greece)',1,1,0),(20138,0,120073,'Haarle','Netherlands','NL','Haarle (Netherlands)',1,1,0),(20139,0,120074,'Habaraduwa','Sri Lanka','LK','Habaraduwa (Sri Lanka)',1,1,0),(20140,0,120075,'Habartov','Czech Republic','CZ','Habartov (Czech Republic)',1,1,0),(20141,11299,120076,'Hafar Al-Batin','Saudi Arabia','SA','Hafar Al-Batin (Saudi Arabia)',1,1,0),(20142,0,120077,'Haga Haga','South Africa','ZA','Haga Haga (South Africa)',1,1,0),(20143,0,120078,'Hagenow','Germany','DE','Hagenow (Germany)',1,1,0),(20144,11322,120079,'Hahnenklee','Germany','DE','Hahnenklee (Germany)',1,1,0),(20145,0,120080,'Hai\'an','China','CN','Hai\'an (China)',1,1,0),(20146,11327,120081,'Haidmuhle','Germany','DE','Haidmuhle (Germany)',1,1,0),(20147,0,120082,'Haines Falls','United States of America','US','Haines Falls (United States of America)',1,1,0),(20148,11348,120083,'Haining','China','CN','Haining (China)',1,1,0),(20149,11357,120084,'Hakodate','Japan','JP','Hakodate (Japan)',1,1,0),(20150,0,120085,'Haldensleben','Germany','DE','Haldensleben (Germany)',1,1,0),(20151,0,120086,'Halesworth','United Kingdom','UK','Halesworth (United Kingdom)',1,1,0),(20152,11378,120087,'Haliburton','Canada','CA','Haliburton (Canada)',1,1,0),(20153,11392,120088,'Hallenberg','Germany','DE','Hallenberg (Germany)',1,1,0),(20154,11408,120089,'Halsey','United States of America','US','Halsey (United States of America)',1,1,0),(20155,11418,120090,'Hamar','Norway','NO','Hamar (Norway)',1,1,0),(20156,11429,120091,'Hameenlinna','Finland','FI','Hameenlinna (Finland)',1,1,0),(20157,11431,120092,'Hameln','Germany','DE','Hameln (Germany)',1,1,0),(20158,0,120093,'Hamilton','United States of America','US','Hamilton (United States of America)',1,1,0),(20159,0,120094,'Hamilton','Australia','AU','Hamilton (Australia)',1,1,0),(20160,0,120095,'Hammelburg','Germany','DE','Hammelburg (Germany)',1,1,0),(20161,11449,120096,'Hammondsport','United States of America','US','Hammondsport (United States of America)',1,1,0),(20162,10852,120097,'Granna','Sweden','SE','Granna (Sweden)',1,1,0),(20163,0,120098,'Gransee','Germany','DE','Gransee (Germany)',1,1,0),(20164,0,120099,'Grantown-on-Spey','United Kingdom','UK','Grantown-on-Spey (United Kingdom)',1,1,0),(20165,10858,120100,'Grants','United States of America','US','Grants (United States of America)',1,1,0),(20166,0,120101,'Grantsburg','United States of America','US','Grantsburg (United States of America)',1,1,0),(20167,10866,120102,'Grapevine','United States of America','US','Grapevine (United States of America)',1,1,0),(20168,0,120103,'Grasbrunn','Germany','DE','Grasbrunn (Germany)',1,1,0),(20169,0,120104,'Grasmark','Sweden','SE','Grasmark (Sweden)',1,1,0),(20170,10889,120105,'Gray','United States of America','US','Gray (United States of America)',1,1,0),(20171,0,120106,'Grayan','France','FR','Grayan (France)',1,1,0),(20172,10899,120107,'Grayville','United States of America','US','Grayville (United States of America)',1,1,0),(20173,10903,120108,'Great Barrier Island','New Zealand','NZ','Great Barrier Island (New Zealand)',1,1,0),(20174,0,120109,'Greding','Germany','DE','Greding (Germany)',1,1,0),(20175,0,120110,'Green Island','Australia','AU','Green Island (Australia)',1,1,0),(20176,31083,120111,'Green Valley','United States of America','US','Green Valley (United States of America)',1,1,0),(20177,0,120112,'Greenock','United Kingdom','UK','Greenock (United Kingdom)',1,1,0),(20178,0,120113,'Greensburg','United States of America','US','Greensburg (United States of America)',1,1,0),(20179,10943,120114,'Greenwich','United States of America','US','Greenwich (United States of America)',1,1,0),(20180,0,120115,'Greenwood','United States of America','US','Greenwood (United States of America)',1,1,0),(20181,0,120116,'Greenwood Village','United States of America','US','Greenwood Village (United States of America)',1,1,0),(20182,10951,120117,'Grefrath','Germany','DE','Grefrath (Germany)',1,1,0),(20183,0,120118,'Gregolimano','Greece','GR','Gregolimano (Greece)',1,1,0),(20184,10952,120119,'Gregory Town','Bahamas','BS','Gregory Town (Bahamas)',1,1,0),(20185,0,120120,'Greifenburg','Austria','AT','Greifenburg (Austria)',1,1,0),(20186,0,120121,'Grein','Austria','AT','Grein (Austria)',1,1,0),(20187,0,120122,'Gremersdorf','Germany','DE','Gremersdorf (Germany)',1,1,0),(20188,10959,120123,'Grenchen','Switzerland','CH','Grenchen (Switzerland)',1,1,0),(20189,0,120124,'Grenzach-Wyhlen','Germany','DE','Grenzach-Wyhlen (Germany)',1,1,0),(20190,10970,120125,'Gressy','France','FR','Gressy (France)',1,1,0),(20191,0,120126,'Gretna','United States of America','US','Gretna (United States of America)',1,1,0),(20192,0,120127,'Greyton','South Africa','ZA','Greyton (South Africa)',1,1,0),(20193,0,120128,'Groditz','Germany','DE','Groditz (Germany)',1,1,0),(20194,11020,120129,'Groesbeek','Netherlands','NL','Groesbeek (Netherlands)',1,1,0),(20195,0,120130,'Gronau (Leine)','Germany','DE','Gronau (Leine) (Germany)',1,1,0),(20196,0,120131,'Groot Gelmen','Belgium','BE','Groot Gelmen (Belgium)',1,1,0),(20197,11036,120132,'Grospierres','France','FR','Grospierres (France)',1,1,0),(20198,0,120133,'Gross Wittensee','Germany','DE','Gross Wittensee (Germany)',1,1,0),(20199,0,120134,'Gro?-Felda','Germany','DE','Gro?-Felda (Germany)',1,1,0),(20200,0,120135,'Grossgmain','Austria','AT','Grossgmain (Austria)',1,1,0),(20201,0,120136,'Gro?harthau','Germany','DE','Gro?harthau (Germany)',1,1,0),(20202,0,120137,'Gro?kirchenheim','Austria','AT','Gro?kirchenheim (Austria)',1,1,0),(20203,0,120138,'Grosswallstadt','Germany','DE','Grosswallstadt (Germany)',1,1,0),(20204,11054,120139,'Grottammare','Italy','IT','Grottammare (Italy)',1,1,0),(20205,31086,120140,'Grove Hill','United States of America','US','Grove Hill (United States of America)',1,1,0),(20206,0,120141,'Grub','Switzerland','CH','Grub (Switzerland)',1,1,0),(20207,0,120142,'Grumello del Monte','Italy','IT','Grumello del Monte (Italy)',1,1,0),(20208,0,120143,'Grumento Nova','Italy','IT','Grumento Nova (Italy)',1,1,0),(20209,0,120144,'Grunbach','Germany','DE','Grunbach (Germany)',1,1,0),(20210,0,120145,'Grunbach am Schneeberg','Austria','AT','Grunbach am Schneeberg (Austria)',1,1,0),(20211,0,120146,'Grundhof','Luxembourg','LU','Grundhof (Luxembourg)',1,1,0),(20212,0,120147,'Grunheide bei Auerbach','Germany','DE','Grunheide bei Auerbach (Germany)',1,1,0),(20213,11078,120148,'Gstaad','Switzerland','CH','Gstaad (Switzerland)',1,1,0),(20214,0,120149,'Gualdo Tadino','Italy','IT','Gualdo Tadino (Italy)',1,1,0),(20215,11102,120150,'Guanacaste','Costa Rica','CR','Guanacaste (Costa Rica)',1,1,0),(20216,11117,120151,'Guarapari','Brazil','BR','Guarapari (Brazil)',1,1,0),(20217,11130,120152,'Guaro','Spain','ES','Guaro (Spain)',1,1,0),(20218,11143,120153,'Gudhjem','Denmark','DK','Gudhjem (Denmark)',1,1,0),(20219,11154,120154,'Gueret','France','FR','Gueret (France)',1,1,0),(20220,11155,120155,'Guerneville','United States of America','US','Guerneville (United States of America)',1,1,0),(20221,0,120156,'Guludo','Mozambique','MZ','Guludo (Mozambique)',1,1,0),(20222,0,120157,'Gumpoldskirchen','Austria','AT','Gumpoldskirchen (Austria)',1,1,0),(20223,0,120158,'Gundelfingen a.d. Donau','Germany','DE','Gundelfingen a.d. Donau (Germany)',1,1,0),(20224,11214,120159,'Gunma','Japan','JP','Gunma (Japan)',1,1,0),(20225,11216,120160,'Gunnison','United States of America','US','Gunnison (United States of America)',1,1,0),(20226,0,120161,'Gurskoy Island','Norway','NO','Gurskoy Island (Norway)',1,1,0),(20227,0,120162,'Gurtnellen','Switzerland','CH','Gurtnellen (Switzerland)',1,1,0),(20228,0,120163,'Gustavia','St. Barthelemy',NULL,'Gustavia (St. Barthelemy)',1,1,0),(20229,0,120164,'Gusterath','Germany','DE','Gusterath (Germany)',1,1,0),(20230,11235,120165,'Gutach im Breisgau','Germany','DE','Gutach im Breisgau (Germany)',1,1,0),(20231,0,120166,'Gutenbrunn','Austria','AT','Gutenbrunn (Austria)',1,1,0),(20232,11243,120167,'Guymon','United States of America','US','Guymon (United States of America)',1,1,0),(20233,11249,120168,'Gwangju','South Korea','KR','Gwangju (South Korea)',1,1,0),(20234,0,120169,'Gyomaendrod','Hungary','HU','Gyomaendrod (Hungary)',1,1,0),(20235,11261,120170,'Gytheio','Greece','GR','Gytheio (Greece)',1,1,0),(20236,0,120171,'Haarbach','Germany','DE','Haarbach (Germany)',1,1,0),(20237,0,120172,'Haaren','Netherlands','NL','Haaren (Netherlands)',1,1,0),(20238,11301,120173,'Hafnarfjordur','Iceland','IS','Hafnarfjordur (Iceland)',1,1,0),(20239,0,120174,'Hagen im Bremischen','Germany','DE','Hagen im Bremischen (Germany)',1,1,0),(20240,11317,120175,'Haguenau','France','FR','Haguenau (France)',1,1,0),(20241,0,120176,'Hahei','New Zealand','NZ','Hahei (New Zealand)',1,1,0),(20242,11319,120177,'Hahn','Germany','DE','Hahn (Germany)',1,1,0),(20243,0,120178,'Haibach ob der Donau','Austria','AT','Haibach ob der Donau (Austria)',1,1,0),(20244,0,120179,'Haidhof','Germany','DE','Haidhof (Germany)',1,1,0),(20245,11333,120180,'Haiku','United States of America','US','Haiku (United States of America)',1,1,0),(20246,0,120181,'Halbinsel Osa','Costa Rica','CR','Halbinsel Osa (Costa Rica)',1,1,0),(20247,0,120182,'Haldenwang (Schwaben)','Germany','DE','Haldenwang (Schwaben) (Germany)',1,1,0),(20248,11374,120183,'Half Moon Bay','United States of America','US','Half Moon Bay (United States of America)',1,1,0),(20249,11376,120184,'Halfmoon Bay','Canada','CA','Halfmoon Bay (Canada)',1,1,0),(20250,0,120185,'Hall by Innsbruck','Austria','AT','Hall by Innsbruck (Austria)',1,1,0),(20251,11386,120186,'Hallandale','United States of America','US','Hallandale (United States of America)',1,1,0),(20252,11388,120187,'Hallbergmoos','Germany','DE','Hallbergmoos (Germany)',1,1,0),(20253,0,120188,'Halle (Westf.)','Germany','DE','Halle (Westf.) (Germany)',1,1,0),(20254,11395,120189,'Hallock','United States of America','US','Hallock (United States of America)',1,1,0),(20255,11397,120190,'Hallowell','United States of America','US','Hallowell (United States of America)',1,1,0),(20256,11399,120191,'Hallsberg','Sweden','SE','Hallsberg (Sweden)',1,1,0),(20257,11419,120192,'Hamat Gader','Israel','IL','Hamat Gader (Israel)',1,1,0),(20258,0,120193,'Hambuhren','Germany','DE','Hambuhren (Germany)',1,1,0),(20259,0,120194,'Hambye','France','FR','Hambye (France)',1,1,0),(20260,11437,120195,'Hamilton','New Zealand','NZ','Hamilton (New Zealand)',1,1,0),(20261,11438,120196,'Hamina','Finland','FI','Hamina (Finland)',1,1,0),(20262,0,120197,'Hampton','United States of America','US','Hampton (United States of America)',1,1,0),(20263,0,120198,'Hamsterley',NULL,NULL,'Hamsterley ()',1,1,0),(20264,0,120199,'Hanchurch','United Kingdom','UK','Hanchurch (United Kingdom)',1,1,0),(20265,0,120200,'Hanko','Finland','FI','Hanko (Finland)',1,1,0),(20266,11481,120201,'Hanmer Springs','New Zealand','NZ','Hanmer Springs (New Zealand)',1,1,0),(20267,11505,120202,'Harahan','United States of America','US','Harahan (United States of America)',1,1,0),(20268,11471,120203,'Handan','China','CN','Handan (China)',1,1,0),(20269,0,120204,'Hanerau-Hademarschen','Germany','DE','Hanerau-Hademarschen (Germany)',1,1,0),(20270,0,120205,'Hann. Munden','Germany','DE','Hann. Munden (Germany)',1,1,0),(20271,0,120207,'Happurg','Germany','DE','Happurg (Germany)',1,1,0),(20272,0,120208,'Harbourville','Canada','CA','Harbourville (Canada)',1,1,0),(20273,0,120209,'Hard','Austria','AT','Hard (Austria)',1,1,0),(20274,0,120210,'Hardheim','Germany','DE','Hardheim (Germany)',1,1,0),(20275,0,120211,'Harlech','United Kingdom','UK','Harlech (United Kingdom)',1,1,0),(20276,11543,120212,'Harlingen','United States of America','US','Harlingen (United States of America)',1,1,0),(20277,0,120213,'Harpswell','United States of America','US','Harpswell (United States of America)',1,1,0),(20278,0,120214,'Harriman','United States of America','US','Harriman (United States of America)',1,1,0),(20279,11561,120215,'Harrison','United States of America','US','Harrison (United States of America)',1,1,0),(20280,0,120216,'Harrison Mills','Canada','CA','Harrison Mills (Canada)',1,1,0),(20281,0,120217,'Hartbeespoort','South Africa','ZA','Hartbeespoort (South Africa)',1,1,0),(20282,11582,120218,'Hartmannsdorf','Germany','DE','Hartmannsdorf (Germany)',1,1,0),(20283,0,120219,'Hartola','Finland','FI','Hartola (Finland)',1,1,0),(20284,0,120220,'Hart\'s Location','United States of America','US','Hart\'s Location (United States of America)',1,1,0),(20285,11584,120221,'Hartselle','United States of America','US','Hartselle (United States of America)',1,1,0),(20286,0,120222,'Hasel','Germany','DE','Hasel (Germany)',1,1,0),(20287,0,120223,'Haselunne','Germany','DE','Haselunne (Germany)',1,1,0),(20288,11597,120224,'Haskell','United States of America','US','Haskell (United States of America)',1,1,0),(20289,0,120225,'Hasselfelde','Germany','DE','Hasselfelde (Germany)',1,1,0),(20290,0,120226,'Haste','Germany','DE','Haste (Germany)',1,1,0),(20291,11610,120227,'Hastings','United States of America','US','Hastings (United States of America)',1,1,0),(20292,11628,120228,'Hatsukaichi','Japan','JP','Hatsukaichi (Japan)',1,1,0),(20293,0,120229,'Hattigny','France','FR','Hattigny (France)',1,1,0),(20294,0,120230,'Haugen','Norway','NO','Haugen (Norway)',1,1,0),(20295,0,120231,'Hausach','Germany','DE','Hausach (Germany)',1,1,0),(20296,0,120232,'Haut - Nendaz','Switzerland','CH','Haut - Nendaz (Switzerland)',1,1,0),(20297,0,120233,'Haute-Aboujagane','Canada','CA','Haute-Aboujagane (Canada)',1,1,0),(20298,0,120234,'Hautefond','France','FR','Hautefond (France)',1,1,0),(20299,0,120235,'Hauterive NE','Switzerland','CH','Hauterive NE (Switzerland)',1,1,0),(20300,11664,120236,'Haverstraw','United States of America','US','Haverstraw (United States of America)',1,1,0),(20301,11669,120237,'Havre','United States of America','US','Havre (United States of America)',1,1,0),(20302,0,120238,'Hawkins','United States of America','US','Hawkins (United States of America)',1,1,0),(20303,0,120239,'Hawksbill','Antigua & Barbuda','AG','Hawksbill (Antigua & Barbuda)',1,1,0),(20304,0,120240,'Hawnby','United Kingdom','UK','Hawnby (United Kingdom)',1,1,0),(20305,0,120241,'Hawthorne','United States of America','US','Hawthorne (United States of America)',1,1,0),(20306,11705,120242,'Hay River','Canada','CA','Hay River (Canada)',1,1,0),(20307,0,120243,'Haybes','France','FR','Haybes (France)',1,1,0),(20308,0,120244,'Hayling Island','United Kingdom','UK','Hayling Island (United Kingdom)',1,1,0),(20309,0,120245,'Haysville','United States of America','US','Haysville (United States of America)',1,1,0),(20310,11716,120246,'Hayti','United States of America','US','Hayti (United States of America)',1,1,0),(20311,0,120247,'Hayward','United States of America','US','Hayward (United States of America)',1,1,0),(20312,11721,120248,'Hazel Crest','United States of America','US','Hazel Crest (United States of America)',1,1,0),(20313,0,120249,'Heber Spring','United States of America','US','Heber Spring (United States of America)',1,1,0),(20314,0,120250,'Hebron','United States of America','US','Hebron (United States of America)',1,1,0),(20315,0,120251,'Hecla-und-Fury-Inseln','Canada','CA','Hecla-und-Fury-Inseln (Canada)',1,1,0),(20316,0,120252,'Hedervar','Hungary','HU','Hedervar (Hungary)',1,1,0),(20317,0,120253,'Heijen','Netherlands','NL','Heijen (Netherlands)',1,1,0),(20318,0,120254,'Heiligenstein','France','FR','Heiligenstein (France)',1,1,0),(20319,11797,120255,'Heillecourt','France','FR','Heillecourt (France)',1,1,0),(20320,0,120256,'Heinzenberg','Switzerland','CH','Heinzenberg (Switzerland)',1,1,0),(20321,0,120257,'Heisdorf','Germany','DE','Heisdorf (Germany)',1,1,0),(20322,11804,120258,'Heitersheim','Germany','DE','Heitersheim (Germany)',1,1,0),(20323,0,120259,'Hel','Poland','PL','Hel (Poland)',1,1,0),(20324,11807,120260,'Helen','United States of America','US','Helen (United States of America)',1,1,0),(20325,0,120261,'Hellevoetsluis','Netherlands','NL','Hellevoetsluis (Netherlands)',1,1,0),(20326,0,120262,'Hellidon','United Kingdom','UK','Hellidon (United Kingdom)',1,1,0),(20327,0,120263,'Hellissandur','Iceland','IS','Hellissandur (Iceland)',1,1,0),(20328,0,120264,'Helmsdale','United Kingdom','UK','Helmsdale (United Kingdom)',1,1,0),(20329,0,120265,'Hemmet','Denmark','DK','Hemmet (Denmark)',1,1,0),(20330,0,120266,'Henderson','United States of America','US','Henderson (United States of America)',1,1,0),(20331,0,120267,'Hengersberg','Germany','DE','Hengersberg (Germany)',1,1,0),(20332,11853,120268,'Hengshui','China','CN','Hengshui (China)',1,1,0),(20333,0,120269,'Henkenhagen','Poland','PL','Henkenhagen (Poland)',1,1,0),(20334,0,120270,'Henley-on-Thames','United Kingdom','UK','Henley-on-Thames (United Kingdom)',1,1,0),(20335,0,120271,'Henlow','United Kingdom','UK','Henlow (United Kingdom)',1,1,0),(20336,11861,120272,'Hennef','Germany','DE','Hennef (Germany)',1,1,0),(20337,0,120273,'Hennessey','United States of America','US','Hennessey (United States of America)',1,1,0),(20338,0,120274,'Hensies','Belgium','BE','Hensies (Belgium)',1,1,0),(20339,0,120275,'Herborn','Germany','DE','Herborn (Germany)',1,1,0),(20340,0,120276,'Herepian','France','FR','Herepian (France)',1,1,0),(20341,0,120277,'Heringsand','Germany','DE','Heringsand (Germany)',1,1,0),(20342,11900,120278,'Herleshausen','Germany','DE','Herleshausen (Germany)',1,1,0),(20343,0,120279,'Herm','France','FR','Herm (France)',1,1,0),(20344,11903,120280,'Hermance','Switzerland','CH','Hermance (Switzerland)',1,1,0),(20345,0,120281,'Herold','Germany','DE','Herold (Germany)',1,1,0),(20346,11927,120282,'Heron Island','Australia','AU','Heron Island (Australia)',1,1,0),(20347,11933,120283,'Herrieden','Germany','DE','Herrieden (Germany)',1,1,0),(20348,11941,120284,'Herten','Germany','DE','Herten (Germany)',1,1,0),(20349,0,120285,'Hertingfordbury','United Kingdom','UK','Hertingfordbury (United Kingdom)',1,1,0),(20350,0,120286,'Herzberg','Germany','DE','Herzberg (Germany)',1,1,0),(20351,11956,120287,'Heshan','China','CN','Heshan (China)',1,1,0),(20352,11961,120288,'Hesston','United States of America','US','Hesston (United States of America)',1,1,0),(20353,0,120289,'Heuvelland','Belgium','BE','Heuvelland (Belgium)',1,1,0),(20354,11985,120290,'Hickory','United States of America','US','Hickory (United States of America)',1,1,0),(20355,0,120291,'High Point','United States of America','US','High Point (United States of America)',1,1,0),(20356,12017,120292,'Higuera Blanca','Mexico','MX','Higuera Blanca (Mexico)',1,1,0),(20357,12035,120293,'Hillsboro','United States of America','US','Hillsboro (United States of America)',1,1,0),(20358,0,120294,'Hillview','United States of America','US','Hillview (United States of America)',1,1,0),(20359,12043,120295,'Hilpoltstein','Germany','DE','Hilpoltstein (Germany)',1,1,0),(20360,0,120296,'Hinds?ter','Norway','NO','Hinds?ter (Norway)',1,1,0),(20361,0,120297,'Hinojedo','Spain','ES','Hinojedo (Spain)',1,1,0),(20362,0,120298,'Hinunangan','Philippines','PH','Hinunangan (Philippines)',1,1,0),(20363,34773,120299,'Hiroshima','Japan','JP','Hiroshima (Japan)',1,1,0),(20364,0,120300,'Hirschberg-Heidelberg','Germany','DE','Hirschberg-Heidelberg (Germany)',1,1,0),(20365,12079,120301,'Hirschegg','Austria','AT','Hirschegg (Austria)',1,1,0),(20366,12084,120302,'Hisaronu','Turkey','TR','Hisaronu (Turkey)',1,1,0),(20367,0,120303,'Hitoyoshi','Japan','JP','Hitoyoshi (Japan)',1,1,0),(20368,12097,120304,'Hjorring','Denmark','DK','Hjorring (Denmark)',1,1,0),(20369,0,120305,'Hlavnovice','Czech Republic','CZ','Hlavnovice (Czech Republic)',1,1,0),(20370,12107,120306,'Hoboken','United States of America','US','Hoboken (United States of America)',1,1,0),(20371,12111,120307,'Hochberg','Germany','DE','Hochberg (Germany)',1,1,0),(20372,12112,120308,'Hochenschwand','Germany','DE','Hochenschwand (Germany)',1,1,0),(20373,0,120309,'Hochst','Austria','AT','Hochst (Austria)',1,1,0),(20374,0,120310,'Hocko Pohorje','Slovenia','SI','Hocko Pohorje (Slovenia)',1,1,0),(20375,0,120311,'Hodrusa Hamre','Slovakia','SK','Hodrusa Hamre (Slovakia)',1,1,0),(20376,12138,120312,'Hogyesz','Hungary','HU','Hogyesz (Hungary)',1,1,0),(20377,0,120313,'Hoheging','Germany','DE','Hoheging (Germany)',1,1,0),(20378,10383,120314,'Giardini Naxos','Italy','IT','Giardini Naxos (Italy)',1,1,0),(20379,0,120315,'Gieboldehausen','Germany','DE','Gieboldehausen (Germany)',1,1,0),(20380,0,120316,'Gie?en','Germany','DE','Gie?en (Germany)',1,1,0),(20381,0,120317,'Giffaumont - Champaubert','France','FR','Giffaumont - Champaubert (France)',1,1,0),(20382,10409,120318,'Gijon','Spain','ES','Gijon (Spain)',1,1,0),(20383,0,120319,'Gilau','Romania','RO','Gilau (Romania)',1,1,0),(20384,10421,120320,'Gillenfeld','Germany','DE','Gillenfeld (Germany)',1,1,0),(20385,10449,120321,'Gipsy Point','Australia','AU','Gipsy Point (Australia)',1,1,0),(20386,0,120322,'Girard','United States of America','US','Girard (United States of America)',1,1,0),(20387,10455,120323,'Girona','Spain','ES','Girona (Spain)',1,1,0),(20388,10463,120324,'Giswil','Switzerland','CH','Giswil (Switzerland)',1,1,0),(20389,0,120325,'Giuncarico','Italy','IT','Giuncarico (Italy)',1,1,0),(20390,10471,120326,'Givors','France','FR','Givors (France)',1,1,0),(20391,0,120327,'Gizeux','France','FR','Gizeux (France)',1,1,0),(20392,10482,120328,'Glacier','United States of America','US','Glacier (United States of America)',1,1,0),(20393,0,120329,'Glacier National Park','United States of America','US','Glacier National Park (United States of America)',1,1,0),(20394,10487,120330,'Gladstone','United States of America','US','Gladstone (United States of America)',1,1,0),(20395,0,120331,'Glanegg','Austria','AT','Glanegg (Austria)',1,1,0),(20396,10490,120332,'Glanmire','Ireland','IE','Glanmire (Ireland)',1,1,0),(20397,0,120333,'Glashutten (Taunus)','Germany','DE','Glashutten (Taunus) (Germany)',1,1,0),(20398,0,120334,'Gleins','Austria','AT','Gleins (Austria)',1,1,0),(20399,0,120335,'Glen Arbor','United States of America','US','Glen Arbor (United States of America)',1,1,0),(20400,0,120336,'Glen Cove','United States of America','US','Glen Cove (United States of America)',1,1,0),(20401,0,120337,'Glen Ellen','United States of America','US','Glen Ellen (United States of America)',1,1,0),(20402,0,120338,'Glen Waverley','Australia','AU','Glen Waverley (Australia)',1,1,0),(20403,0,120339,'Glencar','Ireland','IE','Glencar (Ireland)',1,1,0),(20404,0,120340,'Glenelg','Australia','AU','Glenelg (Australia)',1,1,0),(20405,10528,120341,'Glenmont','United States of America','US','Glenmont (United States of America)',1,1,0),(20406,0,120342,'Glienicke/Nordbahn','Germany','DE','Glienicke/Nordbahn (Germany)',1,1,0),(20407,0,120343,'Glodnitz','Austria','AT','Glodnitz (Austria)',1,1,0),(20408,0,120344,'Glowen','Germany','DE','Glowen (Germany)',1,1,0),(20409,0,120345,'Goathland','United Kingdom','UK','Goathland (United Kingdom)',1,1,0),(20410,10582,120346,'Goch','Germany','DE','Goch (Germany)',1,1,0),(20411,0,120347,'Goche Ganas','Namibia','NA','Goche Ganas (Namibia)',1,1,0),(20412,0,120348,'Godalming','United Kingdom','UK','Godalming (United Kingdom)',1,1,0),(20413,0,120349,'Gohrisch','Germany','DE','Gohrisch (Germany)',1,1,0),(20414,10608,120350,'Going','Austria','AT','Going (Austria)',1,1,0),(20415,0,120351,'Gokova','Turkey','TR','Gokova (Turkey)',1,1,0),(20416,0,120352,'Goldberg','Germany','DE','Goldberg (Germany)',1,1,0),(20417,0,120353,'Golden Gate Highlands','South Africa','ZA','Golden Gate Highlands (South Africa)',1,1,0),(20418,10624,120354,'Goldendale','United States of America','US','Goldendale (United States of America)',1,1,0),(20419,0,120355,'Goldenstedt','Germany','DE','Goldenstedt (Germany)',1,1,0),(20420,0,120356,'Golfo di Marinella','Italy','IT','Golfo di Marinella (Italy)',1,1,0),(20421,0,120357,'Golik','Croatia','HR','Golik (Croatia)',1,1,0),(20422,0,120358,'Gollwitz','Germany','DE','Gollwitz (Germany)',1,1,0),(20423,0,120359,'Golmbach','Germany','DE','Golmbach (Germany)',1,1,0),(20424,0,120360,'Gol?en','Germany','DE','Gol?en (Germany)',1,1,0),(20425,0,120361,'Gomel','Belarus','BY','Gomel (Belarus)',1,1,0),(20426,0,120362,'Gondo','Switzerland','CH','Gondo (Switzerland)',1,1,0),(20427,0,120363,'Gonesse','France','FR','Gonesse (France)',1,1,0),(20428,0,120364,'Gonnesa','Italy','IT','Gonnesa (Italy)',1,1,0),(20429,0,120365,'Gonzales','United States of America','US','Gonzales (United States of America)',1,1,0),(20430,10673,120366,'Goodyear','United States of America','US','Goodyear (United States of America)',1,1,0),(20431,0,120367,'Goole','United Kingdom','UK','Goole (United Kingdom)',1,1,0),(20432,0,120369,'Gorafe','Spain','ES','Gorafe (Spain)',1,1,0),(20433,0,120372,'Gorongoza','Mozambique','MZ','Gorongoza (Mozambique)',1,1,0),(20434,0,120373,'Gorssel','Netherlands','NL','Gorssel (Netherlands)',1,1,0),(20435,0,120374,'Gort','Ireland','IE','Gort (Ireland)',1,1,0),(20436,0,120375,'Gorukle','Turkey','TR','Gorukle (Turkey)',1,1,0),(20437,0,120376,'Gosdorf','Austria','AT','Gosdorf (Austria)',1,1,0),(20438,10728,120377,'Gossau','Switzerland','CH','Gossau (Switzerland)',1,1,0),(20439,10729,120378,'Gosselies','Belgium','BE','Gosselies (Belgium)',1,1,0),(20440,0,120379,'Gossersweiler-Stein','Germany','DE','Gossersweiler-Stein (Germany)',1,1,0),(20441,0,120380,'Gostling/Ybbs','Austria','AT','Gostling/Ybbs (Austria)',1,1,0),(20442,10731,120381,'Gotha','Germany','DE','Gotha (Germany)',1,1,0),(20443,0,120382,'Goudourville','France','FR','Goudourville (France)',1,1,0),(20444,0,120383,'Goujounac','France','FR','Goujounac (France)',1,1,0),(20445,10744,120384,'Goulburn','Australia','AU','Goulburn (Australia)',1,1,0),(20446,10766,120385,'Gozd Martuljek','Slovenia','SI','Gozd Martuljek (Slovenia)',1,1,0),(20447,0,120386,'Grabow','Germany','DE','Grabow (Germany)',1,1,0),(20448,0,120387,'Grafenhausen (Hochschwarzwald)','Germany','DE','Grafenhausen (Hochschwarzwald) (Germany)',1,1,0),(20449,0,120388,'Grafton','United States of America','US','Grafton (United States of America)',1,1,0),(20450,10800,120389,'Grainet','Germany','DE','Grainet (Germany)',1,1,0),(20451,10806,120390,'Grammichele','Italy','IT','Grammichele (Italy)',1,1,0),(20452,0,120391,'Grampians','Australia','AU','Grampians (Australia)',1,1,0),(20453,0,120392,'Gran Roque','Venezuela','VE','Gran Roque (Venezuela)',1,1,0),(20454,0,120393,'Granadilla','Spain','ES','Granadilla (Spain)',1,1,0),(20455,31053,120394,'Grand Blanc','United States of America','US','Grand Blanc (United States of America)',1,1,0),(20456,0,120395,'Grand Case','Saint Martin (French part)','MF','Grand Case (Saint Martin (French part))',1,1,0),(20457,0,120396,'Grand Island','United States of America','US','Grand Island (United States of America)',1,1,0),(20458,31067,120397,'Grand Marais','United States of America','US','Grand Marais (United States of America)',1,1,0),(20459,31072,120398,'Grand Rapids','United States of America','US','Grand Rapids (United States of America)',1,1,0),(20460,31075,120399,'Grand Rivers','United States of America','US','Grand Rivers (United States of America)',1,1,0),(20461,0,120400,'Grand-Bassam','Ivory Coast','CI','Grand-Bassam (Ivory Coast)',1,1,0),(20462,0,120401,'Grande Riviere Sud-Est','Mauritius','MU','Grande Riviere Sud-Est (Mauritius)',1,1,0),(20463,0,120402,'Grande-Riviere','France','FR','Grande-Riviere (France)',1,1,0),(20464,10850,120403,'Granite City','United States of America','US','Granite City (United States of America)',1,1,0),(20465,10851,120404,'Graniti','Italy','IT','Graniti (Italy)',1,1,0),(20466,10865,120405,'Grao de Castellon','Spain','ES','Grao de Castellon (Spain)',1,1,0),(20467,0,120406,'Grasberg','Germany','DE','Grasberg (Germany)',1,1,0),(20468,0,120407,'Grasmere','United Kingdom','UK','Grasmere (United Kingdom)',1,1,0),(20469,10870,120408,'Grasonville','United States of America','US','Grasonville (United States of America)',1,1,0),(20470,0,120409,'Grasse','France','FR','Grasse (France)',1,1,0),(20471,10873,120410,'Grassina','Italy','IT','Grassina (Italy)',1,1,0),(20472,0,120411,'Gratallops','Spain','ES','Gratallops (Spain)',1,1,0),(20473,0,120412,'Grauhet','France','FR','Grauhet (France)',1,1,0),(20474,0,120413,'Graun','Italy','IT','Graun (Italy)',1,1,0),(20475,0,120414,'Graus','Spain','ES','Graus (Spain)',1,1,0),(20476,10884,120415,'Gravenhurst','Canada','CA','Gravenhurst (Canada)',1,1,0),(20477,0,120416,'Gravesend','United Kingdom','UK','Gravesend (United Kingdom)',1,1,0),(20478,10887,120417,'Graveson','France','FR','Graveson (France)',1,1,0),(20479,0,120418,'Gray','United States of America','US','Gray (United States of America)',1,1,0),(20480,0,120419,'Great Barrington','United Kingdom','UK','Great Barrington (United Kingdom)',1,1,0),(20481,0,120420,'Great Bay','U.S. Virgin Islands',NULL,'Great Bay (U.S. Virgin Islands)',1,1,0),(20482,0,120421,'Great Keppel Island','Australia','AU','Great Keppel Island (Australia)',1,1,0),(20483,0,120422,'Great Neck','United States of America','US','Great Neck (United States of America)',1,1,0),(20484,0,120423,'Great Yarmouth','United Kingdom','UK','Great Yarmouth (United Kingdom)',1,1,0),(20485,0,120424,'Guernsey','United Kingdom','UK','Guernsey (United Kingdom)',1,1,0),(20486,11163,120425,'Guethary','France','FR','Guethary (France)',1,1,0),(20487,0,120426,'Guilliers','France','FR','Guilliers (France)',1,1,0),(20488,11183,120427,'Guimaraes','Portugal','PT','Guimaraes (Portugal)',1,1,0),(20489,0,120428,'Guime','Spain','ES','Guime (Spain)',1,1,0),(20490,0,120429,'Guisguey','Spain','ES','Guisguey (Spain)',1,1,0),(20491,11189,120430,'Guitiriz','Spain','ES','Guitiriz (Spain)',1,1,0),(20492,0,120431,'Gulf Shores','United States of America','US','Gulf Shores (United States of America)',1,1,0),(20493,11196,120432,'Gulluk','Turkey','TR','Gulluk (Turkey)',1,1,0),(20494,11211,120433,'Gundagai','Australia','AU','Gundagai (Australia)',1,1,0),(20495,0,120434,'Gundershoffen','France','FR','Gundershoffen (France)',1,1,0),(20496,0,120435,'Guntersberge','Germany','DE','Guntersberge (Germany)',1,1,0),(20497,0,120436,'Guntramsdorf','Austria','AT','Guntramsdorf (Austria)',1,1,0),(20498,0,120437,'Guzowy Piec','Poland','PL','Guzowy Piec (Poland)',1,1,0),(20499,11246,120438,'Gwadar','Pakistan','PK','Gwadar (Pakistan)',1,1,0),(20500,11273,120440,'Habarana','Sri Lanka','LK','Habarana (Sri Lanka)',1,1,0),(20501,0,120441,'Habkern','Switzerland','CH','Habkern (Switzerland)',1,1,0),(20502,11276,120442,'Hachimantai','Japan','JP','Hachimantai (Japan)',1,1,0),(20503,11279,120443,'Hacienda Heights','United States of America','US','Hacienda Heights (United States of America)',1,1,0),(20504,11281,120444,'Hackettstown','United States of America','US','Hackettstown (United States of America)',1,1,0),(20505,11284,120445,'Hadamar','Germany','DE','Hadamar (Germany)',1,1,0),(20506,0,120446,'Haddington','United Kingdom','UK','Haddington (United Kingdom)',1,1,0),(20507,0,120447,'Haffkrug','Germany','DE','Haffkrug (Germany)',1,1,0),(20508,0,120448,'Hagen am Teutoburger Wald','Germany','DE','Hagen am Teutoburger Wald (Germany)',1,1,0),(20509,11315,120449,'Hagondange','France','FR','Hagondange (France)',1,1,0),(20510,0,120450,'Hai Phong','Vietnam','VN','Hai Phong (Vietnam)',1,1,0),(20511,11334,120451,'Hail','Saudi Arabia','SA','Hail (Saudi Arabia)',1,1,0),(20512,11347,120452,'Haines Junction','Canada','CA','Haines Junction (Canada)',1,1,0),(20513,0,120453,'Hainrode (Sudharz)','Germany','DE','Hainrode (Sudharz) (Germany)',1,1,0),(20514,0,120454,'Haiyan','China','CN','Haiyan (China)',1,1,0),(20515,11358,120455,'Hakone','Japan','JP','Hakone (Japan)',1,1,0),(20516,11396,120456,'Hallormsstadur','Iceland','IS','Hallormsstadur (Iceland)',1,1,0),(20517,0,120457,'Halls Gap','Australia','AU','Halls Gap (Australia)',1,1,0),(20518,11401,120458,'Hallstavik','Sweden','SE','Hallstavik (Sweden)',1,1,0),(20519,11405,120459,'Halong','Vietnam','VN','Halong (Vietnam)',1,1,0),(20520,11407,120460,'Halsenbach','Germany','DE','Halsenbach (Germany)',1,1,0),(20521,0,120461,'Halvergate','United Kingdom','UK','Halvergate (United Kingdom)',1,1,0),(20522,11430,120462,'Hamel','United States of America','US','Hamel (United States of America)',1,1,0),(20523,11436,120463,'Hamilton','Bermuda','BM','Hamilton (Bermuda)',1,1,0),(20524,0,120464,'Hamilton','United States of America','US','Hamilton (United States of America)',1,1,0),(20525,0,120465,'Hamilton Island','Australia','AU','Hamilton Island (Australia)',1,1,0),(20526,0,120466,'Hamsey','United Kingdom','UK','Hamsey (United Kingdom)',1,1,0),(20527,0,120467,'Hana','United States of America','US','Hana (United States of America)',1,1,0),(20528,0,120468,'Hankensbuttel','Germany','DE','Hankensbuttel (Germany)',1,1,0),(20529,0,120469,'Hankikuja','Finland','FI','Hankikuja (Finland)',1,1,0),(20530,11479,120470,'Hankinson','United States of America','US','Hankinson (United States of America)',1,1,0),(20531,11482,120471,'Hanna','Canada','CA','Hanna (Canada)',1,1,0),(20532,0,120472,'Hanover Park','United States of America','US','Hanover Park (United States of America)',1,1,0),(20533,0,120473,'HaOn','Israel','IL','HaOn (Israel)',1,1,0),(20534,0,120474,'Harbertonford','United Kingdom','UK','Harbertonford (United Kingdom)',1,1,0),(20535,11517,120475,'Hardeeville','United States of America','US','Hardeeville (United States of America)',1,1,0),(20536,11520,120476,'Harderwijk','Netherlands','NL','Harderwijk (Netherlands)',1,1,0),(20537,11529,120477,'Haria','Spain','ES','Haria (Spain)',1,1,0),(20538,11533,120478,'Harkany','Hungary','HU','Harkany (Hungary)',1,1,0),(20539,11540,120479,'Harlesiel','Germany','DE','Harlesiel (Germany)',1,1,0),(20540,11542,120480,'Harleyville','United States of America','US','Harleyville (United States of America)',1,1,0),(20541,0,120481,'Harlingen','Netherlands','NL','Harlingen (Netherlands)',1,1,0),(20542,0,120482,'Harlow','United Kingdom','UK','Harlow (United Kingdom)',1,1,0),(20543,0,120483,'Harpenden','United Kingdom','UK','Harpenden (United Kingdom)',1,1,0),(20544,11553,120484,'Harpstedt','Germany','DE','Harpstedt (Germany)',1,1,0),(20545,11556,120485,'Harrington','United States of America','US','Harrington (United States of America)',1,1,0),(20546,0,120486,'Harrison','United States of America','US','Harrison (United States of America)',1,1,0),(20547,11563,120487,'Harrisonburg','United States of America','US','Harrisonburg (United States of America)',1,1,0),(20548,0,120488,'Harsefeld','Germany','DE','Harsefeld (Germany)',1,1,0),(20549,11573,120489,'Hartberg','Austria','AT','Hartberg (Austria)',1,1,0),(20550,0,120490,'Hartenstein','Germany','DE','Hartenstein (Germany)',1,1,0),(20551,0,120491,'Harth-Pollnitz','Germany','DE','Harth-Pollnitz (Germany)',1,1,0),(20552,11577,120492,'Hartland','United States of America','US','Hartland (United States of America)',1,1,0),(20553,0,120493,'Hartland (Devon)','United Kingdom','UK','Hartland (Devon) (United Kingdom)',1,1,0),(20554,11588,120494,'Harvard','United States of America','US','Harvard (United States of America)',1,1,0),(20555,11601,120495,'Hasliberg','Switzerland','CH','Hasliberg (Switzerland)',1,1,0),(20556,11604,120496,'Hasselt','Belgium','BE','Hasselt (Belgium)',1,1,0),(20557,0,120497,'Ha?furt','Germany','DE','Ha?furt (Germany)',1,1,0),(20558,0,120498,'Hastings','United Kingdom','UK','Hastings (United Kingdom)',1,1,0),(20559,0,120499,'Hateg','Romania','RO','Hateg (Romania)',1,1,0),(20560,0,120500,'Hatfield','United Kingdom','UK','Hatfield (United Kingdom)',1,1,0),(20561,0,120501,'Hatfield','United States of America','US','Hatfield (United States of America)',1,1,0),(20562,0,120502,'Hatzenport','Germany','DE','Hatzenport (Germany)',1,1,0),(20563,11636,120503,'Hauenstein','Germany','DE','Hauenstein (Germany)',1,1,0),(20564,0,120504,'Haundorf','Germany','DE','Haundorf (Germany)',1,1,0),(20565,0,120505,'Hausen-Roth','Germany','DE','Hausen-Roth (Germany)',1,1,0),(20566,0,120506,'Hausruckwald (Hausruckforest)','Austria','AT','Hausruckwald (Hausruckforest) (Austria)',1,1,0),(20567,11662,120507,'Haverhill','United States of America','US','Haverhill (United States of America)',1,1,0),(20568,11667,120508,'Havneby','Denmark','DK','Havneby (Denmark)',1,1,0),(20569,0,120509,'Havre-aux-Maisons','Canada','CA','Havre-aux-Maisons (Canada)',1,1,0),(20570,0,120510,'Hawick','United Kingdom','UK','Hawick (United Kingdom)',1,1,0),(20571,11692,120511,'Hawke\'s Bay','New Zealand','NZ','Hawke\'s Bay (New Zealand)',1,1,0),(20572,0,120512,'Hawley Beach','Australia','AU','Hawley Beach (Australia)',1,1,0),(20573,11727,120513,'Hazen','United States of America','US','Hazen (United States of America)',1,1,0),(20574,11730,120514,'Hazlehurst','United States of America','US','Hazlehurst (United States of America)',1,1,0),(20575,11732,120515,'Hazlet','United States of America','US','Hazlet (United States of America)',1,1,0),(20576,0,120516,'Headcorn','United Kingdom','UK','Headcorn (United Kingdom)',1,1,0),(20577,0,120517,'Heber Springs','United States of America','US','Heber Springs (United States of America)',1,1,0),(20578,0,120518,'Hechenberg','Germany','DE','Hechenberg (Germany)',1,1,0),(20579,0,120519,'Hechtel / Eksel','Belgium','BE','Hechtel / Eksel (Belgium)',1,1,0),(20580,0,120520,'Hectorspruit','South Africa','ZA','Hectorspruit (South Africa)',1,1,0),(20581,11773,120521,'Hegang','China','CN','Hegang (China)',1,1,0),(20582,11786,120522,'Heihe','China','CN','Heihe (China)',1,1,0),(20583,0,120523,'Heiligenberg','Germany','DE','Heiligenberg (Germany)',1,1,0),(20584,0,120524,'Heimbuchenthal','Germany','DE','Heimbuchenthal (Germany)',1,1,0),(20585,0,120525,'Heinavesi','Finland','FI','Heinavesi (Finland)',1,1,0),(20586,0,120526,'Hejtmankovice','Czech Republic','CZ','Hejtmankovice (Czech Republic)',1,1,0),(20587,0,120527,'Helenvale','Australia','AU','Helenvale (Australia)',1,1,0),(20588,0,120528,'Hellbourg','Reunion','RE','Hellbourg (Reunion)',1,1,0),(20589,0,120529,'Hellental','Germany','DE','Hellental (Germany)',1,1,0),(20590,11828,120530,'Helmstadt','Germany','DE','Helmstadt (Germany)',1,1,0),(20591,0,120531,'Heltermaa','Estonia','EE','Heltermaa (Estonia)',1,1,0),(20592,0,120532,'Hemmelzen','Germany','DE','Hemmelzen (Germany)',1,1,0),(20593,0,120533,'Hemmingen','Germany','DE','Hemmingen (Germany)',1,1,0),(20594,0,120534,'Gro? Plasten','Germany','DE','Gro? Plasten (Germany)',1,1,0),(20595,0,120535,'Gro?almerode','Germany','DE','Gro?almerode (Germany)',1,1,0),(20596,0,120536,'Grossbreitenbach','Germany','DE','Grossbreitenbach (Germany)',1,1,0),(20597,0,120537,'Gro?enhain','Germany','DE','Gro?enhain (Germany)',1,1,0),(20598,11046,120538,'Grosseto','Italy','IT','Grosseto (Italy)',1,1,0),(20599,0,120539,'Gro?heirath','Germany','DE','Gro?heirath (Germany)',1,1,0),(20600,0,120540,'Gro?koschen','Germany','DE','Gro?koschen (Germany)',1,1,0),(20601,0,120541,'Gro?lohra','Germany','DE','Gro?lohra (Germany)',1,1,0),(20602,11053,120542,'Grottaferrata','Italy','IT','Grottaferrata (Italy)',1,1,0),(20603,0,120543,'Grou','Netherlands','NL','Grou (Netherlands)',1,1,0),(20604,0,120544,'Grozny','Russia','RU','Grozny (Russia)',1,1,0),(20605,0,120545,'Gruberau','Austria','AT','Gruberau (Austria)',1,1,0),(20606,0,120546,'Grundy Center','United States of America','US','Grundy Center (United States of America)',1,1,0),(20607,0,120547,'Grunheide (Mark)','Germany','DE','Grunheide (Mark) (Germany)',1,1,0),(20608,11075,120548,'Gryon','Switzerland','CH','Gryon (Switzerland)',1,1,0),(20609,0,120549,'Gstaad Saanen','Switzerland','CH','Gstaad Saanen (Switzerland)',1,1,0),(20610,0,120550,'Gsteig bei Gstaad','Switzerland','CH','Gsteig bei Gstaad (Switzerland)',1,1,0),(20611,0,120551,'Guajara-Mirim','Brazil','BR','Guajara-Mirim (Brazil)',1,1,0),(20612,11095,120552,'Gualeguaychu','Argentina','AR','Gualeguaychu (Argentina)',1,1,0),(20613,0,120553,'Guamasa','Spain','ES','Guamasa (Spain)',1,1,0),(20614,11104,120554,'Guanajuato','Mexico','MX','Guanajuato (Mexico)',1,1,0),(20615,11118,120555,'Guarapuava','Brazil','BR','Guarapuava (Brazil)',1,1,0),(20616,11124,120556,'Guardalavaca','Cuba','CU','Guardalavaca (Cuba)',1,1,0),(20617,0,120557,'Guargacho','Spain','ES','Guargacho (Spain)',1,1,0),(20618,11134,120558,'Guayanilla','Puerto Rico','PR','Guayanilla (Puerto Rico)',1,1,0),(20619,11139,120559,'Gubbio','Italy','IT','Gubbio (Italy)',1,1,0),(20620,0,120560,'Guben','Germany','DE','Guben (Germany)',1,1,0),(20621,0,120561,'Guddal','Norway','NO','Guddal (Norway)',1,1,0),(20622,0,120562,'Guemar','France','FR','Guemar (France)',1,1,0),(20623,11167,120563,'Guglingen','Germany','DE','Guglingen (Germany)',1,1,0),(20624,11168,120564,'Guia de Isora','Spain','ES','Guia de Isora (Spain)',1,1,0),(20625,11174,120565,'Guilderland','United States of America','US','Guilderland (United States of America)',1,1,0),(20626,11176,120566,'Guilford','United States of America','US','Guilford (United States of America)',1,1,0),(20627,11182,120567,'Guimar','Spain','ES','Guimar (Spain)',1,1,0),(20628,11184,120568,'Guin','United States of America','US','Guin (United States of America)',1,1,0),(20629,0,120569,'Guipavas','France','FR','Guipavas (France)',1,1,0),(20630,0,120570,'Gundlischwand','Switzerland','CH','Gundlischwand (Switzerland)',1,1,0),(20631,0,120571,'Gunten','Switzerland','CH','Gunten (Switzerland)',1,1,0),(20632,11218,120572,'Guntersville','United States of America','US','Guntersville (United States of America)',1,1,0),(20633,11224,120573,'Gurdon','United States of America','US','Gurdon (United States of America)',1,1,0),(20634,0,120574,'Gutach (Schwarzwaldbahn)','Germany','DE','Gutach (Schwarzwaldbahn) (Germany)',1,1,0),(20635,0,120575,'Gutau','Austria','AT','Gutau (Austria)',1,1,0),(20636,0,120576,'Gyangze','China','CN','Gyangze (China)',1,1,0),(20637,0,120577,'Haasrode','Belgium','BE','Haasrode (Belgium)',1,1,0),(20638,11280,120578,'Hackensack','United States of America','US','Hackensack (United States of America)',1,1,0),(20639,0,120579,'Hackett\'s Cove','Canada','CA','Hackett\'s Cove (Canada)',1,1,0),(20640,0,120580,'Hag-Ehrsberg','Germany','DE','Hag-Ehrsberg (Germany)',1,1,0),(20641,11307,120581,'Hagenthal-le-Bas','France','FR','Hagenthal-le-Bas (France)',1,1,0),(20642,11310,120582,'Hagerstown','United States of America','US','Hagerstown (United States of America)',1,1,0),(20643,0,120583,'Hahnichen - Heinrichswalde','Germany','DE','Hahnichen - Heinrichswalde (Germany)',1,1,0),(20644,0,120584,'Hailsham','United Kingdom','UK','Hailsham (United Kingdom)',1,1,0),(20645,0,120585,'Haima','Oman','OM','Haima (Oman)',1,1,0),(20646,11353,120586,'Hakalau','United States of America','US','Hakalau (United States of America)',1,1,0),(20647,11359,120587,'Hakuba','Japan','JP','Hakuba (Japan)',1,1,0),(20648,0,120589,'Halfing','Germany','DE','Halfing (Germany)',1,1,0),(20649,0,120590,'Halifax','United Kingdom','UK','Halifax (United Kingdom)',1,1,0),(20650,11394,120591,'Hallettsville','United States of America','US','Hallettsville (United States of America)',1,1,0),(20651,0,120592,'Halmahera','Indonesia','ID','Halmahera (Indonesia)',1,1,0),(20652,0,120593,'Haltern','Germany','DE','Haltern (Germany)',1,1,0),(20653,11412,120594,'Haltom City','United States of America','US','Haltom City (United States of America)',1,1,0),(20654,0,120595,'Halver','Germany','DE','Halver (Germany)',1,1,0),(20655,11426,120596,'Hamburg','Germany','DE','Hamburg (Germany)',1,1,0),(20656,11427,120597,'Hamden','United States of America','US','Hamden (United States of America)',1,1,0),(20657,0,120598,'Yasmine Hammamet','Tunisia','TN','Yasmine Hammamet (Tunisia)',1,1,0),(20658,0,120599,'Hamn','Norway','NO','Hamn (Norway)',1,1,0),(20659,0,120600,'Hampen','Denmark','DK','Hampen (Denmark)',1,1,0),(20660,0,120601,'Hampton','United States of America','US','Hampton (United States of America)',1,1,0),(20661,0,120602,'Handeloh','Germany','DE','Handeloh (Germany)',1,1,0),(20662,11476,120603,'Hanga Roa','Chile','CL','Hanga Roa (Chile)',1,1,0),(20663,11483,120604,'Hannibal','United States of America','US','Hannibal (United States of America)',1,1,0),(20664,11500,120605,'Haparanda','Sweden','SE','Haparanda (Sweden)',1,1,0),(20665,11501,120606,'Hapeville','United States of America','US','Hapeville (United States of America)',1,1,0),(20666,31103,120607,'Harbor Springs','United States of America','US','Harbor Springs (United States of America)',1,1,0),(20667,11519,120608,'Hardenberg','Netherlands','NL','Hardenberg (Netherlands)',1,1,0),(20668,11545,120609,'Harmarville','United States of America','US','Harmarville (United States of America)',1,1,0),(20669,11548,120610,'Haro','Spain','ES','Haro (Spain)',1,1,0),(20670,11560,120611,'Harrismith','South Africa','ZA','Harrismith (South Africa)',1,1,0),(20671,11565,120612,'Harrisville','United States of America','US','Harrisville (United States of America)',1,1,0),(20672,11569,120613,'Harryda','Sweden','SE','Harryda (Sweden)',1,1,0),(20673,0,120614,'Harsewinkel','Germany','DE','Harsewinkel (Germany)',1,1,0),(20674,0,120615,'Hart im Zillertal','Austria','AT','Hart im Zillertal (Austria)',1,1,0),(20675,0,120616,'Hartlepool','United Kingdom','UK','Hartlepool (United Kingdom)',1,1,0),(20676,11587,120617,'Hartwell','United States of America','US','Hartwell (United States of America)',1,1,0),(20677,11590,120618,'Harvie Heights','Canada','CA','Harvie Heights (Canada)',1,1,0),(20678,11594,120619,'Hasbrouck Heights','United States of America','US','Hasbrouck Heights (United States of America)',1,1,0),(20679,0,120620,'Haslen','Switzerland','CH','Haslen (Switzerland)',1,1,0),(20680,0,120621,'Hastings','United States of America','US','Hastings (United States of America)',1,1,0),(20681,11627,120622,'Hatillo','Puerto Rico','PR','Hatillo (Puerto Rico)',1,1,0),(20682,0,120623,'Hato','Bonaire Sint Eustatius and Saba',NULL,'Hato (Bonaire Sint Eustatius and Saba)',1,1,0),(20683,11629,120624,'Hatta','United Arab Emirates','AE','Hatta (United Arab Emirates)',1,1,0),(20684,11631,120625,'Hattersheim','Germany','DE','Hattersheim (Germany)',1,1,0),(20685,0,120626,'Hatting','Austria','AT','Hatting (Austria)',1,1,0),(20686,0,120627,'Haugschlag','Austria','AT','Haugschlag (Austria)',1,1,0),(20687,0,120628,'Haulchin','France','FR','Haulchin (France)',1,1,0),(20688,11640,120629,'Hausern','Germany','DE','Hausern (Germany)',1,1,0),(20689,0,120630,'Hauterive','France','FR','Hauterive (France)',1,1,0),(20690,0,120631,'Haut-Intyamon','Switzerland','CH','Haut-Intyamon (Switzerland)',1,1,0),(20691,0,120632,'Havant','United Kingdom','UK','Havant (United Kingdom)',1,1,0),(20692,0,120633,'Haverhill','United Kingdom','UK','Haverhill (United Kingdom)',1,1,0),(20693,0,120634,'Havre de Grace','United States of America','US','Havre de Grace (United States of America)',1,1,0),(20694,11694,120635,'Hawkinsville','United States of America','US','Hawkinsville (United States of America)',1,1,0),(20695,0,120636,'Hayes','United Kingdom','UK','Hayes (United Kingdom)',1,1,0),(20696,0,120637,'Hazor Haglilit','Israel','IL','Hazor Haglilit (Israel)',1,1,0),(20697,11741,120638,'Healdsburg','United States of America','US','Healdsburg (United States of America)',1,1,0),(20698,11744,120639,'Hearne','United States of America','US','Hearne (United States of America)',1,1,0),(20699,11752,120640,'Heavener','United States of America','US','Heavener (United States of America)',1,1,0),(20700,0,120641,'Hebden Bridge','United Kingdom','UK','Hebden Bridge (United Kingdom)',1,1,0),(20701,0,120642,'Heber City','United States of America','US','Heber City (United States of America)',1,1,0),(20702,0,120643,'Hebertshausen','Germany','DE','Hebertshausen (Germany)',1,1,0),(20703,0,120644,'Hector','United States of America','US','Hector (United States of America)',1,1,0),(20704,0,120645,'Hedemora','Sweden','SE','Hedemora (Sweden)',1,1,0),(20705,0,120646,'Hee','Netherlands','NL','Hee (Netherlands)',1,1,0),(20706,0,120647,'Heeg','Netherlands','NL','Heeg (Netherlands)',1,1,0),(20707,11768,120648,'Heemskerk','Netherlands','NL','Heemskerk (Netherlands)',1,1,0),(20708,11775,120649,'Hegyko','Hungary','HU','Hegyko (Hungary)',1,1,0),(20709,0,120650,'Heideck','Germany','DE','Heideck (Germany)',1,1,0),(20710,0,120651,'Heidenrod','Germany','DE','Heidenrod (Germany)',1,1,0),(20711,0,120652,'Heiderscheid','Luxembourg','LU','Heiderscheid (Luxembourg)',1,1,0),(20712,11785,120653,'Heigenbrucken','Germany','DE','Heigenbrucken (Germany)',1,1,0),(20713,11789,120654,'Heilbronn','Germany','DE','Heilbronn (Germany)',1,1,0),(20714,11790,120655,'Heiligenblut','Austria','AT','Heiligenblut (Austria)',1,1,0),(20715,11792,120656,'Heiligenhaus','Germany','DE','Heiligenhaus (Germany)',1,1,0),(20716,11798,120657,'Heiloo','Netherlands','NL','Heiloo (Netherlands)',1,1,0),(20717,0,120658,'Heist-op-den-Berg','Belgium','BE','Heist-op-den-Berg (Belgium)',1,1,0),(20718,0,120659,'Heiterwang','Austria','AT','Heiterwang (Austria)',1,1,0),(20719,11810,120660,'Helengeli','Maldives','MV','Helengeli (Maldives)',1,1,0),(20720,11812,120661,'Helgoland','Germany','DE','Helgoland (Germany)',1,1,0),(20721,0,120662,'Hellenhahn-Schellenberg','Germany','DE','Hellenhahn-Schellenberg (Germany)',1,1,0),(20722,11834,120663,'Helsinki','Finland','FI','Helsinki (Finland)',1,1,0),(20723,11842,120664,'Hemphill','United States of America','US','Hemphill (United States of America)',1,1,0),(20724,11843,120665,'Hempstead','United States of America','US','Hempstead (United States of America)',1,1,0),(20725,11846,120666,'Henderson','New Zealand','NZ','Henderson (New Zealand)',1,1,0),(20726,11848,120667,'Hendersonville','United States of America','US','Hendersonville (United States of America)',1,1,0),(20727,0,120668,'Henfield','United Kingdom','UK','Henfield (United Kingdom)',1,1,0),(20728,11851,120669,'Hengelo','Netherlands','NL','Hengelo (Netherlands)',1,1,0),(20729,11856,120670,'Henley Brook','Australia','AU','Henley Brook (Australia)',1,1,0),(20730,11863,120671,'Henniker','United States of America','US','Henniker (United States of America)',1,1,0),(20731,11882,120672,'Herbolzheim','Germany','DE','Herbolzheim (Germany)',1,1,0),(20732,0,120673,'Herbstein','Germany','DE','Herbstein (Germany)',1,1,0),(20733,0,120674,'Herceg Novi','Montenegro','ME','Herceg Novi (Montenegro)',1,1,0),(20734,11885,120675,'Herdecke','Germany','DE','Herdecke (Germany)',1,1,0),(20735,11895,120676,'Heringsdorf','Germany','DE','Heringsdorf (Germany)',1,1,0),(20736,11911,120677,'Hermanus','South Africa','ZA','Hermanus (South Africa)',1,1,0),(20737,0,120678,'Hermeskeil','Germany','DE','Hermeskeil (Germany)',1,1,0),(20738,0,120679,'Hermetschwil-Staffeln','Switzerland','CH','Hermetschwil-Staffeln (Switzerland)',1,1,0),(20739,11916,120680,'Hermiston','United States of America','US','Hermiston (United States of America)',1,1,0),(20740,0,120681,'Hermon','South Africa','ZA','Hermon (South Africa)',1,1,0),(20741,0,120682,'Herne Bay','United Kingdom','UK','Herne Bay (United Kingdom)',1,1,0),(20742,0,120683,'Heroldsberg','Germany','DE','Heroldsberg (Germany)',1,1,0),(20743,0,120684,'Herresbach','Germany','DE','Herresbach (Germany)',1,1,0),(20744,11947,120685,'Herzberg am Harz','Germany','DE','Herzberg am Harz (Germany)',1,1,0),(20745,11950,120686,'Herzliya','Israel','IL','Herzliya (Israel)',1,1,0),(20746,11957,120687,'Hesperia','United States of America','US','Hesperia (United States of America)',1,1,0),(20747,0,120688,'Hettingen','Germany','DE','Hettingen (Germany)',1,1,0),(20748,11968,120689,'Heusenstamm','Germany','DE','Heusenstamm (Germany)',1,1,0),(20749,11970,120690,'Heviz','Hungary','HU','Heviz (Hungary)',1,1,0),(20750,11983,120691,'Hiawatha','United States of America','US','Hiawatha (United States of America)',1,1,0),(20751,11989,120692,'Hidden Valley','Australia','AU','Hidden Valley (Australia)',1,1,0),(20752,11994,120693,'Higashiizu','Japan','JP','Higashiizu (Japan)',1,1,0),(20753,12005,120694,'High Level','Canada','CA','High Level (Canada)',1,1,0),(20754,0,120695,'High Prairie','Canada','CA','High Prairie (Canada)',1,1,0),(20755,0,120696,'Highland Falls','United States of America','US','Highland Falls (United States of America)',1,1,0),(20756,31112,120697,'Hill City','United States of America','US','Hill City (United States of America)',1,1,0),(20757,0,120698,'Hillsboro','United States of America','US','Hillsboro (United States of America)',1,1,0),(20758,12037,120699,'Hillsborough','United States of America','US','Hillsborough (United States of America)',1,1,0),(20759,0,120700,'Hilmarton','United Kingdom','UK','Hilmarton (United Kingdom)',1,1,0),(20760,12044,120701,'Hilterfingen','Switzerland','CH','Hilterfingen (Switzerland)',1,1,0),(20761,12048,120702,'Himare','Albania','AL','Himare (Albania)',1,1,0),(20762,0,120703,'Himberg','Austria','AT','Himberg (Austria)',1,1,0),(20763,0,120704,'Himmelberg','Austria','AT','Himmelberg (Austria)',1,1,0),(20764,0,120705,'Hindhead','United Kingdom','UK','Hindhead (United Kingdom)',1,1,0),(20765,0,120706,'Hinterthal','Austria','AT','Hinterthal (Austria)',1,1,0),(20766,12068,120707,'Hinterzarten','Germany','DE','Hinterzarten (Germany)',1,1,0),(20767,12075,120708,'Hirosaki','Japan','JP','Hirosaki (Japan)',1,1,0),(20768,12081,120709,'Hirtshals','Denmark','DK','Hirtshals (Denmark)',1,1,0),(20769,0,120710,'Hisarya','Bulgaria','BG','Hisarya (Bulgaria)',1,1,0),(20770,0,120711,'Hita','Japan','JP','Hita (Japan)',1,1,0),(20771,0,120712,'Hitachi (Ibaraki)','Japan','JP','Hitachi (Ibaraki) (Japan)',1,1,0),(20772,0,120713,'Hitchin','United Kingdom','UK','Hitchin (United Kingdom)',1,1,0),(20773,0,120714,'Hlinsko v Cechach','Czech Republic','CZ','Hlinsko v Cechach (Czech Republic)',1,1,0),(20774,12108,120715,'Hobro','Denmark','DK','Hobro (Denmark)',1,1,0),(20775,0,120716,'Hochgallmigg','Austria','AT','Hochgallmigg (Austria)',1,1,0),(20776,0,120717,'Hochstadt (Pfalz)','Germany','DE','Hochstadt (Pfalz) (Germany)',1,1,0),(20777,0,120718,'Hockendorf','Germany','DE','Hockendorf (Germany)',1,1,0),(20778,12126,120719,'Hoenderloo','Netherlands','NL','Hoenderloo (Netherlands)',1,1,0),(20779,12128,120720,'Hoevelaken','Netherlands','NL','Hoevelaken (Netherlands)',1,1,0),(20780,12135,120721,'Hoganas','Sweden','SE','Hoganas (Sweden)',1,1,0),(20781,0,120722,'Hoge Hexel','Netherlands','NL','Hoge Hexel (Netherlands)',1,1,0),(20782,0,120723,'Hohenfels (Oberpfalz)','Germany','DE','Hohenfels (Oberpfalz) (Germany)',1,1,0),(20783,12141,120724,'Hohenlinden','Germany','DE','Hohenlinden (Germany)',1,1,0),(20784,0,120725,'Hohenpei?enberg','Germany','DE','Hohenpei?enberg (Germany)',1,1,0),(20785,0,120726,'Hohenroth','Germany','DE','Hohenroth (Germany)',1,1,0),(20786,0,120727,'Hojby','Denmark','DK','Hojby (Denmark)',1,1,0),(20787,12154,120728,'Hokianga','New Zealand','NZ','Hokianga (New Zealand)',1,1,0),(20788,0,120729,'Holiday City','United States of America','US','Holiday City (United States of America)',1,1,0),(20789,0,120730,'Hollister','United States of America','US','Hollister (United States of America)',1,1,0),(20790,0,120731,'Holsbeek','Belgium','BE','Holsbeek (Belgium)',1,1,0),(20791,0,120732,'Holt','United Kingdom','UK','Holt (United Kingdom)',1,1,0),(20792,12202,120733,'Holtville','United States of America','US','Holtville (United States of America)',1,1,0),(20793,0,120734,'Holzerath','Germany','DE','Holzerath (Germany)',1,1,0),(20794,0,120735,'Holzhausen am Ammersee','Germany','DE','Holzhausen am Ammersee (Germany)',1,1,0),(20795,12219,120736,'Hommelvik','Norway','NO','Hommelvik (Norway)',1,1,0),(20796,31122,120737,'Hon Tre Island','Vietnam','VN','Hon Tre Island (Vietnam)',1,1,0),(20797,0,120738,'Hondaafushi','Maldives','MV','Hondaafushi (Maldives)',1,1,0),(20798,0,120739,'Hope Hull','United States of America','US','Hope Hull (United States of America)',1,1,0),(20799,0,120740,'Hopewell Junction','United States of America','US','Hopewell Junction (United States of America)',1,1,0),(20800,0,120741,'Horath','Germany','DE','Horath (Germany)',1,1,0),(20801,0,120742,'Horley','United Kingdom','UK','Horley (United Kingdom)',1,1,0),(20802,12286,120743,'Hornberg','Germany','DE','Hornberg (Germany)',1,1,0),(20803,0,120744,'Hornos','Spain','ES','Hornos (Spain)',1,1,0),(20804,0,120745,'Horseshoe Bay','Australia','AU','Horseshoe Bay (Australia)',1,1,0),(20805,0,120746,'Horst aan de Maas','Netherlands','NL','Horst aan de Maas (Netherlands)',1,1,0),(20806,0,120747,'Hospental','Switzerland','CH','Hospental (Switzerland)',1,1,0),(20807,12333,120748,'Hotchkiss','United States of America','US','Hotchkiss (United States of America)',1,1,0),(20808,12348,120749,'Houma','United States of America','US','Houma (United States of America)',1,1,0),(20809,0,120750,'Hounslow','United Kingdom','UK','Hounslow (United Kingdom)',1,1,0),(20810,12354,120751,'Houston','United States of America','US','Houston (United States of America)',1,1,0),(20811,11450,120752,'Hammonton','United States of America','US','Hammonton (United States of America)',1,1,0),(20812,0,120753,'Hamnoy','Norway','NO','Hamnoy (Norway)',1,1,0),(20813,11463,120754,'Hanamaki','Japan','JP','Hanamaki (Japan)',1,1,0),(20814,11466,120755,'Hanau','Germany','DE','Hanau (Germany)',1,1,0),(20815,11467,120756,'Hanceville','United States of America','US','Hanceville (United States of America)',1,1,0),(20816,0,120757,'Hancock','United States of America','US','Hancock (United States of America)',1,1,0),(20817,0,120758,'Hancock','United States of America','US','Hancock (United States of America)',1,1,0),(20818,11478,120759,'Hankamer','United States of America','US','Hankamer (United States of America)',1,1,0),(20819,0,120760,'Hankasalmi','Finland','FI','Hankasalmi (Finland)',1,1,0),(20820,11486,120761,'Hannover','Germany','DE','Hannover (Germany)',1,1,0),(20821,11488,120762,'Hanover','United States of America','US','Hanover (United States of America)',1,1,0),(20822,0,120763,'Hanover','United States of America','US','Hanover (United States of America)',1,1,0),(20823,11495,120764,'Hanstedt','Germany','DE','Hanstedt (Germany)',1,1,0),(20824,11497,120765,'Hanzhong','China','CN','Hanzhong (China)',1,1,0),(20825,0,120766,'Hapert','Netherlands','NL','Hapert (Netherlands)',1,1,0),(20826,0,120767,'Happy Camp','United States of America','US','Happy Camp (United States of America)',1,1,0),(20827,0,120768,'Haputale','Sri Lanka','LK','Haputale (Sri Lanka)',1,1,0),(20828,11510,120769,'Harbin','China','CN','Harbin (China)',1,1,0),(20829,0,120770,'Harbke','Germany','DE','Harbke (Germany)',1,1,0),(20830,31102,120771,'Harbor City','United States of America','US','Harbor City (United States of America)',1,1,0),(20831,31104,120772,'Harbour Island','Bahamas','BS','Harbour Island (Bahamas)',1,1,0),(20832,0,120773,'Hardegsen','Germany','DE','Hardegsen (Germany)',1,1,0),(20833,0,120774,'Hardt','Germany','DE','Hardt (Germany)',1,1,0),(20834,0,120775,'Haren','Germany','DE','Haren (Germany)',1,1,0),(20835,11528,120776,'Hari Hari','New Zealand','NZ','Hari Hari (New Zealand)',1,1,0),(20836,0,120777,'Harriman (New York)','United States of America','US','Harriman (New York) (United States of America)',1,1,0),(20837,11555,120778,'Harrington','Australia','AU','Harrington (Australia)',1,1,0),(20838,11558,120779,'Harrisburg','United States of America','US','Harrisburg (United States of America)',1,1,0),(20839,0,120780,'Harrison','United States of America','US','Harrison (United States of America)',1,1,0),(20840,0,120781,'Harrison','United States of America','US','Harrison (United States of America)',1,1,0),(20841,11566,120782,'Harrodsburg','United States of America','US','Harrodsburg (United States of America)',1,1,0),(20842,11574,120783,'Hartford','United States of America','US','Hartford (United States of America)',1,1,0),(20843,0,120784,'Haselgehr','Austria','AT','Haselgehr (Austria)',1,1,0),(20844,0,120785,'Hasselberg','Germany','DE','Hasselberg (Germany)',1,1,0),(20845,11606,120786,'Hassleholm','Sweden','SE','Hassleholm (Sweden)',1,1,0),(20846,11607,120787,'Hassloch','Germany','DE','Hassloch (Germany)',1,1,0),(20847,11611,120788,'Hastings','New Zealand','NZ','Hastings (New Zealand)',1,1,0),(20848,0,120789,'Hastings','United States of America','US','Hastings (United States of America)',1,1,0),(20849,11619,120790,'Hatay','Turkey','TR','Hatay (Turkey)',1,1,0),(20850,11633,120791,'Hattingen','Germany','DE','Hattingen (Germany)',1,1,0),(20851,0,120792,'Hattstedtermarsch','Germany','DE','Hattstedtermarsch (Germany)',1,1,0),(20852,11634,120793,'Haubstadt','United States of America','US','Haubstadt (United States of America)',1,1,0),(20853,0,120794,'Hauteluce','France','FR','Hauteluce (France)',1,1,0),(20854,0,120795,'Havel North','New Zealand','NZ','Havel North (New Zealand)',1,1,0),(20855,31108,120796,'Haw River','United States of America','US','Haw River (United States of America)',1,1,0),(20856,0,120797,'Hawkchurch','United Kingdom','UK','Hawkchurch (United Kingdom)',1,1,0),(20857,0,120798,'Hawkswick','United Kingdom','UK','Hawkswick (United Kingdom)',1,1,0),(20858,11704,120799,'Hay','Australia','AU','Hay (Australia)',1,1,0),(20859,11706,120800,'Hayden','United States of America','US','Hayden (United States of America)',1,1,0),(20860,11720,120801,'Hazebrouck','France','FR','Hazebrouck (France)',1,1,0),(20861,0,120802,'Hazelbury','United Kingdom','UK','Hazelbury (United Kingdom)',1,1,0),(20862,11725,120803,'Hazelton','United States of America','US','Hazelton (United States of America)',1,1,0),(20863,0,120804,'Hazlehurst','United States of America','US','Hazlehurst (United States of America)',1,1,0),(20864,11743,120805,'Healy','United States of America','US','Healy (United States of America)',1,1,0),(20865,11745,120806,'Hearst','Canada','CA','Hearst (Canada)',1,1,0),(20866,0,120807,'Hebertville','Canada','CA','Hebertville (Canada)',1,1,0),(20867,0,120808,'Hebron','United States of America','US','Hebron (United States of America)',1,1,0),(20868,0,120809,'Heddesheim','Germany','DE','Heddesheim (Germany)',1,1,0),(20869,0,120810,'Hede','Sweden','SE','Hede (Sweden)',1,1,0),(20870,0,120811,'Hegebeintum','Netherlands','NL','Hegebeintum (Netherlands)',1,1,0),(20871,11778,120812,'Heidelberg','Germany','DE','Heidelberg (Germany)',1,1,0),(20872,11783,120813,'Heiden','Switzerland','CH','Heiden (Switzerland)',1,1,0),(20873,0,120814,'Heidenreichstein','Austria','AT','Heidenreichstein (Austria)',1,1,0),(20874,0,120815,'Heidesee','Germany','DE','Heidesee (Germany)',1,1,0),(20875,0,120816,'Heiligenbrunn','Austria','AT','Heiligenbrunn (Austria)',1,1,0),(20876,0,120817,'Heiligengrabe','Germany','DE','Heiligengrabe (Germany)',1,1,0),(20877,11794,120818,'Heiligenschwendi','Switzerland','CH','Heiligenschwendi (Switzerland)',1,1,0),(20878,0,120819,'Heki','Croatia','HR','Heki (Croatia)',1,1,0),(20879,0,120820,'Heldrungen','Germany','DE','Heldrungen (Germany)',1,1,0),(20880,0,120821,'Helmeringhausen','Namibia','NA','Helmeringhausen (Namibia)',1,1,0),(20881,11831,120822,'Helsingborg','Sweden','SE','Helsingborg (Sweden)',1,1,0),(20882,0,120823,'Hemeln','Germany','DE','Hemeln (Germany)',1,1,0),(20883,11841,120824,'Hemet','United States of America','US','Hemet (United States of America)',1,1,0),(20884,11844,120825,'Hemsedal','Norway','NO','Hemsedal (Norway)',1,1,0),(20885,11845,120826,'Hendaye','France','FR','Hendaye (France)',1,1,0),(20886,11854,120827,'Hengyang','China','CN','Hengyang (China)',1,1,0),(20887,0,120828,'Henne Beach','Denmark','DK','Henne Beach (Denmark)',1,1,0),(20888,0,120829,'Hennstedt (Steinburg)','Germany','DE','Hennstedt (Steinburg) (Germany)',1,1,0),(20889,0,120830,'Herbrechtingen','Germany','DE','Herbrechtingen (Germany)',1,1,0),(20890,0,120831,'Hereford','United Kingdom','UK','Hereford (United Kingdom)',1,1,0),(20891,0,120832,'Heremence','Switzerland','CH','Heremence (Switzerland)',1,1,0),(20892,11893,120833,'Heric','France','FR','Heric (France)',1,1,0),(20893,0,120834,'Hericourt-en-Caux','France','FR','Hericourt-en-Caux (France)',1,1,0),(20894,0,120835,'Hermanville sur Mer','France','FR','Hermanville sur Mer (France)',1,1,0),(20895,11919,120836,'Hermosa Beach','United States of America','US','Hermosa Beach (United States of America)',1,1,0),(20896,0,120837,'Hernandarias','Paraguay','PY','Hernandarias (Paraguay)',1,1,0),(20897,11923,120838,'Hernando','United States of America','US','Hernando (United States of America)',1,1,0),(20898,0,120839,'Herreros','Spain','ES','Herreros (Spain)',1,1,0),(20899,11937,120840,'Hersbruck','Germany','DE','Hersbruck (Germany)',1,1,0),(20900,11945,120841,'Hervas','Spain','ES','Hervas (Spain)',1,1,0),(20901,0,120842,'Hestra','Sweden','SE','Hestra (Sweden)',1,1,0),(20902,0,120843,'Heusden Zolder','Belgium','BE','Heusden Zolder (Belgium)',1,1,0),(20903,0,120844,'Heversham','United Kingdom','UK','Heversham (United Kingdom)',1,1,0),(20904,0,120845,'Hexham','United Kingdom','UK','Hexham (United Kingdom)',1,1,0),(20905,0,120846,'Hiddenhausen','Germany','DE','Hiddenhausen (Germany)',1,1,0),(20906,11995,120847,'Higashikawa','Japan','JP','Higashikawa (Japan)',1,1,0),(20907,0,120848,'High River','Canada','CA','High River (Canada)',1,1,0),(20908,0,120849,'Highland','United States of America','US','Highland (United States of America)',1,1,0),(20909,0,120850,'Hikurangi','New Zealand','NZ','Hikurangi (New Zealand)',1,1,0),(20910,0,120851,'Hillentrup','Germany','DE','Hillentrup (Germany)',1,1,0),(20911,0,120852,'Hillsboro','United States of America','US','Hillsboro (United States of America)',1,1,0),(20912,0,120853,'Hillsboro','United States of America','US','Hillsboro (United States of America)',1,1,0),(20913,12041,120854,'Hillsville','United States of America','US','Hillsville (United States of America)',1,1,0),(20914,0,120855,'Hilton Head Island','United States of America','US','Hilton Head Island (United States of America)',1,1,0),(20915,0,120856,'Hinckley','United Kingdom','UK','Hinckley (United Kingdom)',1,1,0),(20916,0,120857,'Hindon','United Kingdom','UK','Hindon (United Kingdom)',1,1,0),(20917,0,120858,'Hinterhornbach','Austria','AT','Hinterhornbach (Austria)',1,1,0),(20918,0,120859,'Hinterrod','Germany','DE','Hinterrod (Germany)',1,1,0),(20919,12066,120860,'Hinterstoder','Austria','AT','Hinterstoder (Austria)',1,1,0),(20920,12070,120861,'Hinton','United States of America','US','Hinton (United States of America)',1,1,0),(20921,12077,120862,'Hirschaid','Germany','DE','Hirschaid (Germany)',1,1,0),(20922,0,120863,'Harrisburg','United States of America','US','Harrisburg (United States of America)',1,1,0),(20923,11559,120864,'Harrislee','Germany','DE','Harrislee (Germany)',1,1,0),(20924,0,120865,'Harrow','United Kingdom','UK','Harrow (United Kingdom)',1,1,0),(20925,0,120866,'Hartington','United States of America','US','Hartington (United States of America)',1,1,0),(20926,0,120867,'Harvey','United States of America','US','Harvey (United States of America)',1,1,0),(20927,0,120868,'Harwich','United Kingdom','UK','Harwich (United Kingdom)',1,1,0),(20928,11598,120869,'Haskovo','Bulgaria','BG','Haskovo (Bulgaria)',1,1,0),(20929,0,120870,'Haslach im Kinzigtal','Germany','DE','Haslach im Kinzigtal (Germany)',1,1,0),(20930,11605,120872,'Hassi Messaoud','Algeria','DZ','Hassi Messaoud (Algeria)',1,1,0),(20931,11617,120873,'Hat Yai','Thailand','TH','Hat Yai (Thailand)',1,1,0),(20932,0,120874,'Hato Mayor','Dominican Republic','DO','Hato Mayor (Dominican Republic)',1,1,0),(20933,11639,120875,'Hauppauge','United States of America','US','Hauppauge (United States of America)',1,1,0),(20934,0,120876,'Hausen bei Wurzburg','Germany','DE','Hausen bei Wurzburg (Germany)',1,1,0),(20935,0,120877,'Hausen ob Verena','Germany','DE','Hausen ob Verena (Germany)',1,1,0),(20936,11649,120878,'Hauteville-Lompnes','France','FR','Hauteville-Lompnes (France)',1,1,0),(20937,11653,120879,'Hauzenberg','Germany','DE','Hauzenberg (Germany)',1,1,0),(20938,0,120880,'Haverfordwest','United Kingdom','UK','Haverfordwest (United Kingdom)',1,1,0),(20939,0,120881,'Havlickuv Brod','Czech Republic','CZ','Havlickuv Brod (Czech Republic)',1,1,0),(20940,0,120882,'Hawkshead','United Kingdom','UK','Hawkshead (United Kingdom)',1,1,0),(20941,11699,120883,'Hawley','United States of America','US','Hawley (United States of America)',1,1,0),(20942,0,120884,'Hayfield','United Kingdom','UK','Hayfield (United Kingdom)',1,1,0),(20943,11726,120885,'Hazelwood','United States of America','US','Hazelwood (United States of America)',1,1,0),(20944,11759,120886,'Hecelchakan','Mexico','MX','Hecelchakan (Mexico)',1,1,0),(20945,0,120887,'Hechi','China','CN','Hechi (China)',1,1,0),(20946,11770,120888,'Heerlen','Netherlands','NL','Heerlen (Netherlands)',1,1,0),(20947,11772,120889,'Heflin','United States of America','US','Heflin (United States of America)',1,1,0),(20948,0,120890,'Hegenheim','France','FR','Hegenheim (France)',1,1,0),(20949,0,120891,'Heidebrink (Miedzywodzie)','Poland','PL','Heidebrink (Miedzywodzie) (Poland)',1,1,0),(20950,0,120892,'Heidweiler','Germany','DE','Heidweiler (Germany)',1,1,0),(20951,0,120893,'Heiligenhafen','Germany','DE','Heiligenhafen (Germany)',1,1,0),(20952,11817,120894,'Hellendoorn','Netherlands','NL','Hellendoorn (Netherlands)',1,1,0),(20953,0,120895,'Hellenthal','Germany','DE','Hellenthal (Germany)',1,1,0),(20954,0,120896,'Hellmonsodt','Austria','AT','Hellmonsodt (Austria)',1,1,0),(20955,0,120897,'Helmsley','United Kingdom','UK','Helmsley (United Kingdom)',1,1,0),(20956,11829,120898,'Helmstedt','Germany','DE','Helmstedt (Germany)',1,1,0),(20957,11833,120899,'Helsingor','Denmark','DK','Helsingor (Denmark)',1,1,0),(20958,0,120900,'Hemau','Germany','DE','Hemau (Germany)',1,1,0),(20959,11852,120901,'Hengshan','China','CN','Hengshan (China)',1,1,0),(20960,11862,120902,'Hennigsdorf','Germany','DE','Hennigsdorf (Germany)',1,1,0),(20961,11871,120903,'Henryville','United States of America','US','Henryville (United States of America)',1,1,0),(20962,11875,120904,'Henties Bay','Namibia','NA','Henties Bay (Namibia)',1,1,0),(20963,11878,120905,'Heppenheim','Germany','DE','Heppenheim (Germany)',1,1,0),(20964,0,120906,'Heralec','Czech Republic','CZ','Heralec (Czech Republic)',1,1,0),(20965,0,120907,'Herbertingen','Germany','DE','Herbertingen (Germany)',1,1,0),(20966,0,120908,'Herbitzheim','Germany','DE','Herbitzheim (Germany)',1,1,0),(20967,11887,120909,'Hereford','United States of America','US','Hereford (United States of America)',1,1,0),(20968,0,120910,'Hergatz','Germany','DE','Hergatz (Germany)',1,1,0),(20969,11892,120911,'Hergiswil','Switzerland','CH','Hergiswil (Switzerland)',1,1,0),(20970,0,120912,'Herkingen','Netherlands','NL','Herkingen (Netherlands)',1,1,0),(20971,11901,120913,'Herlev','Denmark','DK','Herlev (Denmark)',1,1,0),(20972,11904,120914,'Hermann','United States of America','US','Hermann (United States of America)',1,1,0),(20973,11905,120915,'Hermannsburg','Germany','DE','Hermannsburg (Germany)',1,1,0),(20974,11920,120916,'Hermosillo','Mexico','MX','Hermosillo (Mexico)',1,1,0),(20975,11921,120917,'Hermsdorf','Germany','DE','Hermsdorf (Germany)',1,1,0),(20976,0,120918,'Hermsdorf (Thuringen)','Germany','DE','Hermsdorf (Thuringen) (Germany)',1,1,0),(20977,0,120919,'Herne','Germany','DE','Herne (Germany)',1,1,0),(20978,11925,120920,'Herning','Denmark','DK','Herning (Denmark)',1,1,0),(20979,0,120921,'Heroldsbach','Germany','DE','Heroldsbach (Germany)',1,1,0),(20980,0,120922,'Herrerias','Spain','ES','Herrerias (Spain)',1,1,0),(20981,0,120923,'Herrnbaumgarten','Austria','AT','Herrnbaumgarten (Austria)',1,1,0),(20982,11951,120924,'Herzogenaurach','Germany','DE','Herzogenaurach (Germany)',1,1,0),(20983,0,120925,'Hesdin-l\'Abbe','France','FR','Hesdin-l\'Abbe (France)',1,1,0),(20984,0,120926,'Hessisch Lichtenau','Germany','DE','Hessisch Lichtenau (Germany)',1,1,0),(20985,0,120927,'Hessle','United Kingdom','UK','Hessle (United Kingdom)',1,1,0),(20986,0,120928,'Hestheimar','Iceland','IS','Hestheimar (Iceland)',1,1,0),(20987,0,120929,'Heucourt Croquoison','France','FR','Heucourt Croquoison (France)',1,1,0),(20988,0,120930,'Heusweiler','Germany','DE','Heusweiler (Germany)',1,1,0),(20989,11981,120931,'Hialeah','United States of America','US','Hialeah (United States of America)',1,1,0),(20990,11984,120932,'Hibbing','United States of America','US','Hibbing (United States of America)',1,1,0),(20991,0,120933,'Higashimuro-gun','Japan','JP','Higashimuro-gun (Japan)',1,1,0),(20992,0,120934,'High Peak','United Kingdom','UK','High Peak (United Kingdom)',1,1,0),(20993,0,120935,'Highland Beach','United States of America','US','Highland Beach (United States of America)',1,1,0),(20994,0,120936,'Hiiumaa','Estonia','EE','Hiiumaa (Estonia)',1,1,0),(20995,0,120937,'Hilchenbach','Germany','DE','Hilchenbach (Germany)',1,1,0),(20996,0,120938,'Hildburghausen','Germany','DE','Hildburghausen (Germany)',1,1,0),(20997,12023,120939,'Hilden','Germany','DE','Hilden (Germany)',1,1,0),(20998,0,120940,'Hildfeld','Germany','DE','Hildfeld (Germany)',1,1,0),(20999,0,120941,'Hillsboro Beach','United States of America','US','Hillsboro Beach (United States of America)',1,1,0),(21000,12036,120942,'Hillsborough','Grenada','GD','Hillsborough (Grenada)',1,1,0),(21001,12040,120943,'Hillside','United States of America','US','Hillside (United States of America)',1,1,0),(21002,12046,120944,'Hilvarenbeek','Netherlands','NL','Hilvarenbeek (Netherlands)',1,1,0),(21003,12047,120945,'Hilversum','Netherlands','NL','Hilversum (Netherlands)',1,1,0),(21004,0,120946,'Hinterriss','Austria','AT','Hinterriss (Austria)',1,1,0),(21005,0,120947,'Hinterstein','Germany','DE','Hinterstein (Germany)',1,1,0),(21006,0,120948,'Hippach','Austria','AT','Hippach (Austria)',1,1,0),(21007,0,120949,'Hippolytushoef','Netherlands','NL','Hippolytushoef (Netherlands)',1,1,0),(21008,0,120950,'Hirugami Onsen','Japan','JP','Hirugami Onsen (Japan)',1,1,0),(21009,0,120951,'Hjarnarp','Sweden','SE','Hjarnarp (Sweden)',1,1,0),(21010,12113,120952,'Hochgurgl','Austria','AT','Hochgurgl (Austria)',1,1,0),(21011,0,120953,'Hochkirch','Germany','DE','Hochkirch (Germany)',1,1,0),(21012,0,120954,'Hochsolden','Austria','AT','Hochsolden (Austria)',1,1,0),(21013,0,120955,'Hof bei (by) Salzburg','Austria','AT','Hof bei (by) Salzburg (Austria)',1,1,0),(21014,0,120956,'Hofbieber','Germany','DE','Hofbieber (Germany)',1,1,0),(21015,12131,120957,'Hoffman Estates','United States of America','US','Hoffman Estates (United States of America)',1,1,0),(21016,0,120958,'Hofstetten','Germany','DE','Hofstetten (Germany)',1,1,0),(21017,0,120959,'Hohberg','Germany','DE','Hohberg (Germany)',1,1,0),(21018,0,120960,'Hohen Wieschendorf','Germany','DE','Hohen Wieschendorf (Germany)',1,1,0),(21019,0,120961,'Hohenfels-Essingen','Germany','DE','Hohenfels-Essingen (Germany)',1,1,0),(21020,12144,120962,'Hohenschwangau','Germany','DE','Hohenschwangau (Germany)',1,1,0),(21021,12147,120963,'Hohhot','China','CN','Hohhot (China)',1,1,0),(21022,0,120964,'Hohrod','France','FR','Hohrod (France)',1,1,0),(21023,12150,120965,'Hohwacht','Germany','DE','Hohwacht (Germany)',1,1,0),(21024,12153,120966,'Hojer','Denmark','DK','Hojer (Denmark)',1,1,0),(21025,0,120967,'Hok','Sweden','SE','Hok (Sweden)',1,1,0),(21026,12155,120968,'Hokitika','New Zealand','NZ','Hokitika (New Zealand)',1,1,0),(21027,12157,120969,'Hokuto','Japan','JP','Hokuto (Japan)',1,1,0),(21028,12163,120970,'Holbrook','Australia','AU','Holbrook (Australia)',1,1,0),(21029,12139,120971,'Hohenau','Germany','DE','Hohenau (Germany)',1,1,0),(21030,0,120972,'Hohenschaftlarn','Germany','DE','Hohenschaftlarn (Germany)',1,1,0),(21031,0,120973,'Hohenspringe','Germany','DE','Hohenspringe (Germany)',1,1,0),(21032,12156,120974,'Hokkaido','Japan','JP','Hokkaido (Japan)',1,1,0),(21033,12174,120975,'Holladay','United States of America','US','Holladay (United States of America)',1,1,0),(21034,0,120976,'Hollogne','Belgium','BE','Hollogne (Belgium)',1,1,0),(21035,0,120977,'Hollola','Finland','FI','Hollola (Finland)',1,1,0),(21036,12187,120978,'Holmestrand','Norway','NO','Holmestrand (Norway)',1,1,0),(21037,12193,120979,'Holstebro','Denmark','DK','Holstebro (Denmark)',1,1,0),(21038,0,120980,'Holsthum','Germany','DE','Holsthum (Germany)',1,1,0),(21039,0,120981,'Holsworthy','United Kingdom','UK','Holsworthy (United Kingdom)',1,1,0),(21040,0,120982,'Holt/Norfolk','United Kingdom','UK','Holt/Norfolk (United Kingdom)',1,1,0),(21041,12200,120983,'Holts Summit','United States of America','US','Holts Summit (United States of America)',1,1,0),(21042,0,120984,'Holyhead','United Kingdom','UK','Holyhead (United Kingdom)',1,1,0),(21043,12208,120985,'Holyoke','United States of America','US','Holyoke (United States of America)',1,1,0),(21044,0,120986,'Holzappel','Germany','DE','Holzappel (Germany)',1,1,0),(21045,0,120987,'Hong Kong Island','Hong Kong','HK','Hong Kong Island (Hong Kong)',1,1,0),(21046,12236,120988,'Honiara','Solomon Islands','SB','Honiara (Solomon Islands)',1,1,0),(21047,0,120989,'Honrubia','Spain','ES','Honrubia (Spain)',1,1,0),(21048,12249,120990,'Hoofddorp','Netherlands','NL','Hoofddorp (Netherlands)',1,1,0),(21049,0,120991,'Hooghalen','Netherlands','NL','Hooghalen (Netherlands)',1,1,0),(21050,0,120992,'Hooksiel','Germany','DE','Hooksiel (Germany)',1,1,0),(21051,12269,120993,'Hopfen am See','Germany','DE','Hopfen am See (Germany)',1,1,0),(21052,0,120994,'Hopfgarten in Defereggen','Austria','AT','Hopfgarten in Defereggen (Austria)',1,1,0),(21053,12275,120995,'Hoquiam','United States of America','US','Hoquiam (United States of America)',1,1,0),(21054,0,120996,'Horbruch','Germany','DE','Horbruch (Germany)',1,1,0),(21055,0,120997,'Horby','Sweden','SE','Horby (Sweden)',1,1,0),(21056,0,120998,'Horcajo de los Montes','Spain','ES','Horcajo de los Montes (Spain)',1,1,0),(21057,0,120999,'Horefto','Greece','GR','Horefto (Greece)',1,1,0),(21058,12280,121000,'Horgau','Germany','DE','Horgau (Germany)',1,1,0),(21059,0,121001,'Horn','Netherlands','NL','Horn (Netherlands)',1,1,0),(21060,31126,121002,'Horn Lake','United States of America','US','Horn Lake (United States of America)',1,1,0),(21061,12283,121003,'Hornafjordur','Iceland','IS','Hornafjordur (Iceland)',1,1,0),(21062,0,121004,'Horni Plana','Czech Republic','CZ','Horni Plana (Czech Republic)',1,1,0),(21063,0,121005,'Hornitz','Germany','DE','Hornitz (Germany)',1,1,0),(21064,12297,121006,'Hornslet','Denmark','DK','Hornslet (Denmark)',1,1,0),(21065,0,121007,'Horschhausen','Germany','DE','Horschhausen (Germany)',1,1,0),(21066,0,121008,'Horst','Germany','DE','Horst (Germany)',1,1,0),(21067,0,121009,'Horum','Germany','DE','Horum (Germany)',1,1,0),(21068,12322,121010,'Horumersiel','Germany','DE','Horumersiel (Germany)',1,1,0),(21069,12340,121011,'Houffalize','Belgium','BE','Houffalize (Belgium)',1,1,0),(21070,12346,121012,'Houlgate','France','FR','Houlgate (France)',1,1,0),(21071,0,121013,'Houmart','Belgium','BE','Houmart (Belgium)',1,1,0),(21072,0,121014,'Houmt Souk','Tunisia','TN','Houmt Souk (Tunisia)',1,1,0),(21073,0,121015,'Houston','United States of America','US','Houston (United States of America)',1,1,0),(21074,0,121016,'Hovelhof','Germany','DE','Hovelhof (Germany)',1,1,0),(21075,12365,121017,'Howe','United States of America','US','Howe (United States of America)',1,1,0),(21076,12366,121018,'Howell','United States of America','US','Howell (United States of America)',1,1,0),(21077,0,121019,'Howwood','United Kingdom','UK','Howwood (United Kingdom)',1,1,0),(21078,0,121020,'Hranice na Morave','Czech Republic','CZ','Hranice na Morave (Czech Republic)',1,1,0),(21079,0,121021,'Hredarvatn','Iceland','IS','Hredarvatn (Iceland)',1,1,0),(21080,12393,121022,'Huamantla','Mexico','MX','Huamantla (Mexico)',1,1,0),(21081,12401,121023,'Huaraz','Peru','PE','Huaraz (Peru)',1,1,0),(21082,0,121024,'Huarta','Spain','ES','Huarta (Spain)',1,1,0),(21083,0,121025,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(21084,0,121026,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(21085,12420,121027,'Hudsonville','United States of America','US','Hudsonville (United States of America)',1,1,0),(21086,12439,121028,'Huisduinen','Netherlands','NL','Huisduinen (Netherlands)',1,1,0),(21087,12451,121029,'Hultsfred','Sweden','SE','Hultsfred (Sweden)',1,1,0),(21088,12452,121030,'Humacao','Puerto Rico','PR','Humacao (Puerto Rico)',1,1,0),(21089,0,121031,'Humahuaca','Argentina','AR','Humahuaca (Argentina)',1,1,0),(21090,12456,121032,'Humble','United States of America','US','Humble (United States of America)',1,1,0),(21091,12460,121033,'Humenne','Slovakia','SK','Humenne (Slovakia)',1,1,0),(21092,0,121034,'Humpfershausen','Germany','DE','Humpfershausen (Germany)',1,1,0),(21093,12488,121035,'Huntington','United States of America','US','Huntington (United States of America)',1,1,0),(21094,12494,121036,'Huntsville','United States of America','US','Huntsville (United States of America)',1,1,0),(21095,0,121037,'Huttau','Austria','AT','Huttau (Austria)',1,1,0),(21096,0,121038,'Huttlingen TG','Switzerland','CH','Huttlingen TG (Switzerland)',1,1,0),(21097,0,121039,'Huttschlag','Austria','AT','Huttschlag (Austria)',1,1,0),(21098,12516,121040,'Huttwil','Switzerland','CH','Huttwil (Switzerland)',1,1,0),(21099,12520,121041,'Huy','Belgium','BE','Huy (Belgium)',1,1,0),(21100,12537,121042,'Hyder','United States of America','US','Hyder (United States of America)',1,1,0),(21101,0,121043,'Ibach','Germany','DE','Ibach (Germany)',1,1,0),(21102,0,121045,'Ibra','Oman','OM','Ibra (Oman)',1,1,0),(21103,0,121046,'Ichtegem','Belgium','BE','Ichtegem (Belgium)',1,1,0),(21104,12582,121047,'Idre','Sweden','SE','Idre (Sweden)',1,1,0),(21105,12588,121048,'Ierapetra','Greece','GR','Ierapetra (Greece)',1,1,0),(21106,12596,121049,'Iglesias','Italy','IT','Iglesias (Italy)',1,1,0),(21107,31139,121050,'Igny','France','FR','Igny (France)',1,1,0),(21108,12615,121051,'Ikaalinen','Finland','FI','Ikaalinen (Finland)',1,1,0),(21109,0,121052,'Ilawa','Poland','PL','Ilawa (Poland)',1,1,0),(21110,0,121053,'Ile aux Moines','France','FR','Ile aux Moines (France)',1,1,0),(21111,0,121054,'Ile de Rubane','Guinea-Bissau','GW','Ile de Rubane (Guinea-Bissau)',1,1,0),(21112,0,121055,'Ilha de Brava','Cape Verde','CV','Ilha de Brava (Cape Verde)',1,1,0),(21113,12632,121056,'Ilhabela','Brazil','BR','Ilhabela (Brazil)',1,1,0),(21114,12634,121057,'Ilheus','Brazil','BR','Ilheus (Brazil)',1,1,0),(21115,12646,121058,'Illetas','Spain','ES','Illetas (Spain)',1,1,0),(21116,0,121059,'Illiers-Combray','France','FR','Illiers-Combray (France)',1,1,0),(21117,0,121060,'Illmensee','Germany','DE','Illmensee (Germany)',1,1,0),(21118,12651,121061,'Illmitz','Austria','AT','Illmitz (Austria)',1,1,0),(21119,0,121062,'Ilmtal','Germany','DE','Ilmtal (Germany)',1,1,0),(21120,0,121063,'Iloilo City','Philippines','PH','Iloilo City (Philippines)',1,1,0),(21121,0,121064,'Imperial Beach','United States of America','US','Imperial Beach (United States of America)',1,1,0),(21122,12698,121065,'Indaiatuba','Brazil','BR','Indaiatuba (Brazil)',1,1,0),(21123,31156,121066,'Indianapolis','United States of America','US','Indianapolis (United States of America)',1,1,0),(21124,12702,121067,'Indianola','United States of America','US','Indianola (United States of America)',1,1,0),(21125,0,121068,'Ingelfingen','Germany','DE','Ingelfingen (Germany)',1,1,0),(21126,12725,121069,'Ingolstadt','Germany','DE','Ingolstadt (Germany)',1,1,0),(21127,12745,121070,'Innisfail','Canada','CA','Innisfail (Canada)',1,1,0),(21128,12746,121071,'Innishannon','Ireland','IE','Innishannon (Ireland)',1,1,0),(21129,0,121072,'Insel Bastimentos','Panama','PA','Insel Bastimentos (Panama)',1,1,0),(21130,0,121073,'Insel Birie','Indonesia','ID','Insel Birie (Indonesia)',1,1,0),(21131,0,121074,'Insel Buyukada','Turkey','TR','Insel Buyukada (Turkey)',1,1,0),(21132,0,121075,'Insel Capraia','Italy','IT','Insel Capraia (Italy)',1,1,0),(21133,0,121076,'Insel Cham','Thailand','TH','Insel Cham (Thailand)',1,1,0),(21134,0,121077,'Insel Kut','Thailand','TH','Insel Kut (Thailand)',1,1,0),(21135,0,121078,'Insel Madsum','Thailand','TH','Insel Madsum (Thailand)',1,1,0),(21136,0,121079,'Insel Mana','Fiji Islands','FJ','Insel Mana (Fiji Islands)',1,1,0),(21137,0,121080,'Insel Pemba','Tanzania','TZ','Insel Pemba (Tanzania)',1,1,0),(21138,0,121081,'Insel Siargao','Philippines','PH','Insel Siargao (Philippines)',1,1,0),(21139,0,121082,'Insel Sipaway','Philippines','PH','Insel Sipaway (Philippines)',1,1,0),(21140,12756,121083,'Interlaken','Switzerland','CH','Interlaken (Switzerland)',1,1,0),(21141,31080,121084,'Green Lake','United States of America','US','Green Lake (United States of America)',1,1,0),(21142,0,121085,'Green River','United States of America','US','Green River (United States of America)',1,1,0),(21143,0,121086,'Greenfield','United States of America','US','Greenfield (United States of America)',1,1,0),(21144,0,121087,'Greenville','United States of America','US','Greenville (United States of America)',1,1,0),(21145,0,121088,'Greenwich','United Kingdom','UK','Greenwich (United Kingdom)',1,1,0),(21146,0,121089,'Greer','United States of America','US','Greer (United States of America)',1,1,0),(21147,10953,121090,'Greifswald','Germany','DE','Greifswald (Germany)',1,1,0),(21148,10964,121091,'Gresham','United States of America','US','Gresham (United States of America)',1,1,0),(21149,10968,121092,'Gressoney-Saint-Jean','Italy','IT','Gressoney-Saint-Jean (Italy)',1,1,0),(21150,0,121093,'Gretna Green','United Kingdom','UK','Gretna Green (United Kingdom)',1,1,0),(21151,0,121094,'Gries am Brenner','Austria','AT','Gries am Brenner (Austria)',1,1,0),(21152,10997,121095,'Grimsby','Canada','CA','Grimsby (Canada)',1,1,0),(21153,0,121096,'Grimsnes','Iceland','IS','Grimsnes (Iceland)',1,1,0),(21154,11004,121097,'Grindelwald','Switzerland','CH','Grindelwald (Switzerland)',1,1,0),(21155,11006,121098,'Grindsted','Denmark','DK','Grindsted (Denmark)',1,1,0),(21156,0,121099,'Grisolia','Italy','IT','Grisolia (Italy)',1,1,0),(21157,0,121100,'Grobbendonk','Belgium','BE','Grobbendonk (Belgium)',1,1,0),(21158,11019,121101,'Groesbeck','United States of America','US','Groesbeck (United States of America)',1,1,0),(21159,0,121102,'Gro? Sankt Nikolaus','Romania','RO','Gro? Sankt Nikolaus (Romania)',1,1,0),(21160,0,121103,'Gro?arl','Austria','AT','Gro?arl (Austria)',1,1,0),(21161,0,121104,'Gro?bottwar','Germany','DE','Gro?bottwar (Germany)',1,1,0),(21162,0,121105,'Gro?hennersdorf','Germany','DE','Gro?hennersdorf (Germany)',1,1,0),(21163,0,121106,'Gro?maischeid','Germany','DE','Gro?maischeid (Germany)',1,1,0),(21164,0,121107,'Gro?waltersdorf','Germany','DE','Gro?waltersdorf (Germany)',1,1,0),(21165,11050,121108,'Grosuplje','Slovenia','SI','Grosuplje (Slovenia)',1,1,0),(21166,0,121109,'Grove City','United States of America','US','Grove City (United States of America)',1,1,0),(21167,11057,121110,'Groveland','United States of America','US','Groveland (United States of America)',1,1,0),(21168,0,121111,'Groznjan','Croatia','HR','Groznjan (Croatia)',1,1,0),(21169,0,121112,'Grub an der March','Austria','AT','Grub an der March (Austria)',1,1,0),(21170,11067,121113,'Grundarfjordur','Iceland','IS','Grundarfjordur (Iceland)',1,1,0),(21171,11077,121114,'Gschnitz','Austria','AT','Gschnitz (Austria)',1,1,0),(21172,0,121115,'Gstad','Germany','DE','Gstad (Germany)',1,1,0),(21173,0,121116,'Guadalmar','Spain','ES','Guadalmar (Spain)',1,1,0),(21174,11093,121117,'Gualba','Spain','ES','Gualba (Spain)',1,1,0),(21175,11094,121118,'Gualdo Cattaneo','Italy','IT','Gualdo Cattaneo (Italy)',1,1,0),(21176,11098,121119,'Guam','Guam','GU','Guam (Guam)',1,1,0),(21177,11110,121120,'Guanshan','Taiwan','TW','Guanshan (Taiwan)',1,1,0),(21178,11126,121121,'Guardamiglio','Italy','IT','Guardamiglio (Italy)',1,1,0),(21179,0,121122,'Guardiola de Bergueda','Spain','ES','Guardiola de Bergueda (Spain)',1,1,0),(21180,11129,121123,'Guardistallo','Italy','IT','Guardistallo (Italy)',1,1,0),(21181,0,121124,'Guarroman','Spain','ES','Guarroman (Spain)',1,1,0),(21182,11131,121125,'Guaruja','Brazil','BR','Guaruja (Brazil)',1,1,0),(21183,0,121126,'Gudow','Germany','DE','Gudow (Germany)',1,1,0),(21184,11146,121127,'Gudvangen','Norway','NO','Gudvangen (Norway)',1,1,0),(21185,11147,121128,'Guebwiller','France','FR','Guebwiller (France)',1,1,0),(21186,11166,121129,'Guggisberg','Switzerland','CH','Guggisberg (Switzerland)',1,1,0),(21187,11172,121130,'Guijuelo','Spain','ES','Guijuelo (Spain)',1,1,0),(21188,0,121131,'Guillaume','Reunion','RE','Guillaume (Reunion)',1,1,0),(21189,0,121132,'Evriaki','Greece','GR','Evriaki (Greece)',1,1,0),(21190,11220,121133,'Gunzburg','Germany','DE','Gunzburg (Germany)',1,1,0),(21191,11221,121134,'Gunzenhausen','Germany','DE','Gunzenhausen (Germany)',1,1,0),(21192,0,121135,'Gusev','Russia','RU','Gusev (Russia)',1,1,0),(21193,11236,121136,'Gutersloh','Germany','DE','Gutersloh (Germany)',1,1,0),(21194,11237,121137,'Guthrie','United States of America','US','Guthrie (United States of America)',1,1,0),(21195,0,121138,'Gutierrez Zamora','Mexico','MX','Gutierrez Zamora (Mexico)',1,1,0),(21196,11242,121140,'Guyancourt','France','FR','Guyancourt (France)',1,1,0),(21197,0,121141,'Ha Giang','Vietnam','VN','Ha Giang (Vietnam)',1,1,0),(21198,0,121142,'Haabneeme','Estonia','EE','Haabneeme (Estonia)',1,1,0),(21199,11269,121143,'Haapsalu','Estonia','EE','Haapsalu (Estonia)',1,1,0),(21200,0,121144,'Habay La Neuve','Belgium','BE','Habay La Neuve (Belgium)',1,1,0),(21201,0,121145,'Habischried','Germany','DE','Habischried (Germany)',1,1,0),(21202,0,121146,'Habo','Sweden','SE','Habo (Sweden)',1,1,0),(21203,0,121147,'Hafling','Italy','IT','Hafling (Italy)',1,1,0),(21204,0,121148,'Hage','Germany','DE','Hage (Germany)',1,1,0),(21205,0,121149,'Hagen auf Rugen','Germany','DE','Hagen auf Rugen (Germany)',1,1,0),(21206,11312,121150,'Hagfors','Sweden','SE','Hagfors (Sweden)',1,1,0),(21207,0,121151,'Haggerstone Island','Australia','AU','Haggerstone Island (Australia)',1,1,0),(21208,11320,121152,'Hahndorf','Australia','AU','Hahndorf (Australia)',1,1,0),(21209,0,121153,'Haibach (Unterfranken)','Germany','DE','Haibach (Unterfranken) (Germany)',1,1,0),(21210,0,121154,'Haibuhl','Germany','DE','Haibuhl (Germany)',1,1,0),(21211,0,121155,'Haicheng','China','CN','Haicheng (China)',1,1,0),(21212,11330,121156,'Haiger','Germany','DE','Haiger (Germany)',1,1,0),(21213,0,121157,'Hainburg','Germany','DE','Hainburg (Germany)',1,1,0),(21214,0,121158,'Hainburg an der Donau','Austria','AT','Hainburg an der Donau (Austria)',1,1,0),(21215,11346,121159,'Haines','United States of America','US','Haines (United States of America)',1,1,0),(21216,0,121160,'Haines City','United States of America','US','Haines City (United States of America)',1,1,0),(21217,0,121161,'Hainzenberg','Austria','AT','Hainzenberg (Austria)',1,1,0),(21218,11351,121162,'Hajduszoboszlo','Hungary','HU','Hajduszoboszlo (Hungary)',1,1,0),(21219,11362,121163,'Halberstadt','Germany','DE','Halberstadt (Germany)',1,1,0),(21220,11363,121164,'Halblech','Germany','DE','Halblech (Germany)',1,1,0),(21221,11369,121165,'Haleiwa','United States of America','US','Haleiwa (United States of America)',1,1,0),(21222,0,121166,'Halford','United Kingdom','UK','Halford (United Kingdom)',1,1,0),(21223,11390,121167,'Halle','Belgium','BE','Halle (Belgium)',1,1,0),(21224,11421,121168,'Hambantota','Sri Lanka','LK','Hambantota (Sri Lanka)',1,1,0),(21225,0,121169,'Hamilton','United States of America','US','Hamilton (United States of America)',1,1,0),(21226,0,121170,'Hamilton','United Kingdom','UK','Hamilton (United Kingdom)',1,1,0),(21227,0,121171,'Hamilton','United States of America','US','Hamilton (United States of America)',1,1,0),(21228,0,121172,'Hamm (Sieg)','Germany','DE','Hamm (Sieg) (Germany)',1,1,0),(21229,11445,121173,'Hammerfest','Norway','NO','Hammerfest (Norway)',1,1,0),(21230,0,121174,'Hammond','United States of America','US','Hammond (United States of America)',1,1,0),(21231,11457,121176,'Hamptonville','United States of America','US','Hamptonville (United States of America)',1,1,0),(21232,0,121177,'Hancock','United States of America','US','Hancock (United States of America)',1,1,0),(21233,0,121178,'Handewitt','Germany','DE','Handewitt (Germany)',1,1,0),(21234,11474,121179,'Hanford','United States of America','US','Hanford (United States of America)',1,1,0),(21235,0,121180,'Hanover','United States of America','US','Hanover (United States of America)',1,1,0),(21236,0,121181,'Hanover','South Africa','ZA','Hanover (South Africa)',1,1,0),(21237,11521,121182,'Hardin','United States of America','US','Hardin (United States of America)',1,1,0),(21238,11522,121183,'Hardy','United States of America','US','Hardy (United States of America)',1,1,0),(21239,11523,121184,'Hareid','Norway','NO','Hareid (Norway)',1,1,0),(21240,11524,121185,'Harel','Israel','IL','Harel (Israel)',1,1,0),(21241,11554,121187,'Harrachov','Czech Republic','CZ','Harrachov (Czech Republic)',1,1,0),(21242,11562,121188,'Harrison Hot Springs','Canada','CA','Harrison Hot Springs (Canada)',1,1,0),(21243,0,121189,'Harrogate','United Kingdom','UK','Harrogate (United Kingdom)',1,1,0),(21244,11572,121190,'Hart bei Graz','Austria','AT','Hart bei Graz (Austria)',1,1,0),(21245,0,121191,'Hartford','United States of America','US','Hartford (United States of America)',1,1,0),(21246,0,121192,'Hartha','Germany','DE','Hartha (Germany)',1,1,0),(21247,0,121193,'Haruchas','Namibia','NA','Haruchas (Namibia)',1,1,0),(21248,0,121194,'Henderson','United States of America','US','Henderson (United States of America)',1,1,0),(21249,0,121195,'Henderson','United States of America','US','Henderson (United States of America)',1,1,0),(21250,0,121196,'Hengdian','China','CN','Hengdian (China)',1,1,0),(21251,0,121197,'Hengstdijk','Netherlands','NL','Hengstdijk (Netherlands)',1,1,0),(21252,0,121198,'Henley-in-Arden','United Kingdom','UK','Henley-in-Arden (United Kingdom)',1,1,0),(21253,11870,121199,'Henryetta','United States of America','US','Henryetta (United States of America)',1,1,0),(21254,0,121200,'Hensol','United Kingdom','UK','Hensol (United Kingdom)',1,1,0),(21255,11891,121201,'Herford','Germany','DE','Herford (Germany)',1,1,0),(21256,11902,121202,'Hermagor','Austria','AT','Hermagor (Austria)',1,1,0),(21257,0,121203,'Hermandad de Campoo de Suso','Spain','ES','Hermandad de Campoo de Suso (Spain)',1,1,0),(21258,0,121204,'Hermitage Bay','Antigua & Barbuda','AG','Hermitage Bay (Antigua & Barbuda)',1,1,0),(21259,11918,121205,'Hermon','Israel','IL','Hermon (Israel)',1,1,0),(21260,11924,121206,'Herndon','United States of America','US','Herndon (United States of America)',1,1,0),(21261,11928,121207,'Herouville-Saint-Clair','France','FR','Herouville-Saint-Clair (France)',1,1,0),(21262,0,121208,'Herrischried','Germany','DE','Herrischried (Germany)',1,1,0),(21263,11935,121209,'Herrljunga','Sweden','SE','Herrljunga (Sweden)',1,1,0),(21264,0,121210,'Herschberg','Germany','DE','Herschberg (Germany)',1,1,0),(21265,0,121211,'Hershey','United States of America','US','Hershey (United States of America)',1,1,0),(21266,0,121212,'Herstmonceux','United Kingdom','UK','Herstmonceux (United Kingdom)',1,1,0),(21267,0,121213,'Herxheim bei Landau/Pfalz','Germany','DE','Herxheim bei Landau/Pfalz (Germany)',1,1,0),(21268,0,121214,'Hesseneck','Germany','DE','Hesseneck (Germany)',1,1,0),(21269,11977,121215,'Heyuan','China','CN','Heyuan (China)',1,1,0),(21270,11988,121216,'Hidalgo','United States of America','US','Hidalgo (United States of America)',1,1,0),(21271,11990,121217,'Hienghene','New Caledonia','NC','Hienghene (New Caledonia)',1,1,0),(21272,0,121218,'Hierden','Netherlands','NL','Hierden (Netherlands)',1,1,0),(21273,0,121219,'Highett','Australia','AU','Highett (Australia)',1,1,0),(21274,0,121220,'Highland','United States of America','US','Highland (United States of America)',1,1,0),(21275,12019,121221,'Higuey','Dominican Republic','DO','Higuey (Dominican Republic)',1,1,0),(21276,12020,121222,'Hiji','Japan','JP','Hiji (Japan)',1,1,0),(21277,0,121223,'Hilders','Germany','DE','Hilders (Germany)',1,1,0),(21278,0,121224,'Hillegom','Netherlands','NL','Hillegom (Netherlands)',1,1,0),(21279,0,121225,'Hilleroed','Denmark','DK','Hilleroed (Denmark)',1,1,0),(21280,0,121226,'Hillesheim (Eifel)','Germany','DE','Hillesheim (Eifel) (Germany)',1,1,0),(21281,12052,121227,'Himmelreich','Austria','AT','Himmelreich (Austria)',1,1,0),(21282,12059,121228,'Hines','United States of America','US','Hines (United States of America)',1,1,0),(21283,0,121229,'Hinojares','Spain','ES','Hinojares (Spain)',1,1,0),(21284,0,121230,'Hinterthiersee','Austria','AT','Hinterthiersee (Austria)',1,1,0),(21285,12067,121231,'Hintertux','Austria','AT','Hintertux (Austria)',1,1,0),(21286,12074,121232,'Hiratsuka','Japan','JP','Hiratsuka (Japan)',1,1,0),(21287,0,121233,'Hirschbach','Germany','DE','Hirschbach (Germany)',1,1,0),(21288,0,121234,'Hirwaun','United Kingdom','UK','Hirwaun (United Kingdom)',1,1,0),(21289,12093,121235,'Hixson','United States of America','US','Hixson (United States of America)',1,1,0),(21290,0,121236,'Hjelmeland','Norway','NO','Hjelmeland (Norway)',1,1,0),(21291,12099,121237,'Hluhluwe','South Africa','ZA','Hluhluwe (South Africa)',1,1,0),(21292,0,121238,'Hochfilzen','Austria','AT','Hochfilzen (Austria)',1,1,0),(21293,12120,121239,'Hodenhagen','Germany','DE','Hodenhagen (Germany)',1,1,0),(21294,0,121240,'Hodonin','Czech Republic','CZ','Hodonin (Czech Republic)',1,1,0),(21295,12125,121241,'Hoeilaart','Belgium','BE','Hoeilaart (Belgium)',1,1,0),(21296,12129,121242,'Hoeven','Netherlands','NL','Hoeven (Netherlands)',1,1,0),(21297,0,121243,'Hofsgrund','Germany','DE','Hofsgrund (Germany)',1,1,0),(21298,0,121244,'Hofu','Japan','JP','Hofu (Japan)',1,1,0),(21299,0,121245,'Hohegei?','Germany','DE','Hohegei? (Germany)',1,1,0),(21300,0,121246,'Hohen Neuendorf','Germany','DE','Hohen Neuendorf (Germany)',1,1,0),(21301,0,121247,'Hohen Schonberg','Germany','DE','Hohen Schonberg (Germany)',1,1,0),(21302,0,121248,'Hohendorf','Germany','DE','Hohendorf (Germany)',1,1,0),(21303,0,121249,'Hohendubrau','Germany','DE','Hohendubrau (Germany)',1,1,0),(21304,0,121250,'Hohenfelde','Germany','DE','Hohenfelde (Germany)',1,1,0),(21305,0,121251,'Hohenkirchen','Germany','DE','Hohenkirchen (Germany)',1,1,0),(21306,0,121252,'Hohn','Germany','DE','Hohn (Germany)',1,1,0),(21307,0,121253,'Hoi An','Vietnam','VN','Hoi An (Vietnam)',1,1,0),(21308,0,121254,'Holbaek/Isefjord','Denmark','DK','Holbaek/Isefjord (Denmark)',1,1,0),(21309,0,121255,'Holbeach','United Kingdom','UK','Holbeach (United Kingdom)',1,1,0),(21310,0,121256,'Holderbank','Switzerland','CH','Holderbank (Switzerland)',1,1,0),(21311,12169,121257,'Holetown','Barbados','BB','Holetown (Barbados)',1,1,0),(21312,0,121258,'Hollabrunn','Austria','AT','Hollabrunn (Austria)',1,1,0),(21313,12175,121259,'Holland','United States of America','US','Holland (United States of America)',1,1,0),(21314,0,121260,'Hollfeld','Germany','DE','Hollfeld (Germany)',1,1,0),(21315,0,121261,'Hollywood Beach','United States of America','US','Hollywood Beach (United States of America)',1,1,0),(21316,0,121262,'Holmes Chapel','United Kingdom','UK','Holmes Chapel (United Kingdom)',1,1,0),(21317,0,121263,'Holzhau','Germany','DE','Holzhau (Germany)',1,1,0),(21318,0,121264,'Holzhausen','Germany','DE','Holzhausen (Germany)',1,1,0),(21319,0,121265,'Holzkirchen (Oberbayern)','Germany','DE','Holzkirchen (Oberbayern) (Germany)',1,1,0),(21320,0,121266,'Hondarribia','Spain','ES','Hondarribia (Spain)',1,1,0),(21321,0,121267,'Honfleur','France','FR','Honfleur (France)',1,1,0),(21322,12254,121268,'Hooksett','United States of America','US','Hooksett (United States of America)',1,1,0),(21323,0,121269,'Hoorn','Netherlands','NL','Hoorn (Netherlands)',1,1,0),(21324,0,121270,'Hope Valley','United Kingdom','UK','Hope Valley (United Kingdom)',1,1,0),(21325,0,121271,'Hopewell Hill','Canada','CA','Hopewell Hill (Canada)',1,1,0),(21326,0,121272,'Hopfgarten','Germany','DE','Hopfgarten (Germany)',1,1,0),(21327,12272,121273,'Hopkins','Belize','BZ','Hopkins (Belize)',1,1,0),(21328,12273,121274,'Hopkinsville','United States of America','US','Hopkinsville (United States of America)',1,1,0),(21329,0,121275,'Hoppers Crossing','Australia','AU','Hoppers Crossing (Australia)',1,1,0),(21330,0,121276,'Hormersdorf','Germany','DE','Hormersdorf (Germany)',1,1,0),(21331,0,121277,'Horn','Switzerland','CH','Horn (Switzerland)',1,1,0),(21332,0,121278,'Hornes - Setesdal','Norway','NO','Hornes - Setesdal (Norway)',1,1,0),(21333,0,121279,'Horselberg-Hainich','Germany','DE','Horselberg-Hainich (Germany)',1,1,0),(21334,12305,121280,'Horsens','Denmark','DK','Horsens (Denmark)',1,1,0),(21335,0,121281,'Horseshoe Bend','United States of America','US','Horseshoe Bend (United States of America)',1,1,0),(21336,12308,121282,'Horsham','Australia','AU','Horsham (Australia)',1,1,0),(21337,0,121283,'Horsham','United Kingdom','UK','Horsham (United Kingdom)',1,1,0),(21338,12309,121284,'Horsham','United States of America','US','Horsham (United States of America)',1,1,0),(21339,0,121285,'Horstmar','Germany','DE','Horstmar (Germany)',1,1,0),(21340,0,121286,'Horta','Portugal','PT','Horta (Portugal)',1,1,0),(21341,12316,121287,'Horten','Norway','NO','Horten (Norway)',1,1,0),(21342,12323,121288,'Horw','Switzerland','CH','Horw (Switzerland)',1,1,0),(21343,12329,121289,'Hossegor','France','FR','Hossegor (France)',1,1,0),(21344,0,121291,'Hottwan','Hungary','HU','Hottwan (Hungary)',1,1,0),(21345,0,121292,'Houki','Japan','JP','Houki (Japan)',1,1,0),(21346,12353,121293,'Houssen','France','FR','Houssen (France)',1,1,0),(21347,0,121294,'Hove','United Kingdom','UK','Hove (United Kingdom)',1,1,0),(21348,0,121295,'Hoya Grande','Spain','ES','Hoya Grande (Spain)',1,1,0),(21349,0,121296,'Hradcovice','Czech Republic','CZ','Hradcovice (Czech Republic)',1,1,0),(21350,12380,121297,'Hradec Kralove','Czech Republic','CZ','Hradec Kralove (Czech Republic)',1,1,0),(21351,0,121298,'Hradec nad Moravici','Czech Republic','CZ','Hradec nad Moravici (Czech Republic)',1,1,0),(21352,12391,121299,'Huainan','China','CN','Huainan (China)',1,1,0),(21353,0,121300,'Huanggang','China','CN','Huanggang (China)',1,1,0),(21354,12408,121301,'Hubbards','Canada','CA','Hubbards (Canada)',1,1,0),(21355,0,121302,'Hude-Hurrel','Germany','DE','Hude-Hurrel (Germany)',1,1,0),(21356,0,121303,'Hebron','United States of America','US','Hebron (United States of America)',1,1,0),(21357,0,121304,'Hechendorf','Germany','DE','Hechendorf (Germany)',1,1,0),(21358,0,121305,'Hechingen','Germany','DE','Hechingen (Germany)',1,1,0),(21359,11767,121306,'Heelsum','Netherlands','NL','Heelsum (Netherlands)',1,1,0),(21360,11769,121307,'Heerenveen','Netherlands','NL','Heerenveen (Netherlands)',1,1,0),(21361,11774,121308,'Heggenes','Norway','NO','Heggenes (Norway)',1,1,0),(21362,0,121309,'Hehlen','Germany','DE','Hehlen (Germany)',1,1,0),(21363,0,121310,'Heikendorf','Germany','DE','Heikendorf (Germany)',1,1,0),(21364,0,121311,'Heilbrunn','Austria','AT','Heilbrunn (Austria)',1,1,0),(21365,0,121312,'Heiligenstadt in Oberfranken','Germany','DE','Heiligenstadt in Oberfranken (Germany)',1,1,0),(21366,11799,121313,'Heimbach','Germany','DE','Heimbach (Germany)',1,1,0),(21367,0,121314,'Heimhausen','Germany','DE','Heimhausen (Germany)',1,1,0),(21368,11801,121315,'Heimschuh','Austria','AT','Heimschuh (Austria)',1,1,0),(21369,0,121316,'Heinsberg','Germany','DE','Heinsberg (Germany)',1,1,0),(21370,0,121317,'Heinzenbach','Germany','DE','Heinzenbach (Germany)',1,1,0),(21371,0,121318,'Heldenberg','Austria','AT','Heldenberg (Austria)',1,1,0),(21372,11813,121319,'Hell','Norway','NO','Hell (Norway)',1,1,0),(21373,11815,121320,'Hella','Iceland','IS','Hella (Iceland)',1,1,0),(21374,0,121321,'Hellaby','United Kingdom','UK','Hellaby (United Kingdom)',1,1,0),(21375,0,121322,'Helmbrechts','Germany','DE','Helmbrechts (Germany)',1,1,0),(21376,11832,121323,'Helsinge','Denmark','DK','Helsinge (Denmark)',1,1,0),(21377,0,121324,'Hemmoor','Germany','DE','Hemmoor (Germany)',1,1,0),(21378,0,121325,'Hennstedt','Germany','DE','Hennstedt (Germany)',1,1,0),(21379,0,121326,'Henri-Chapelle','Belgium','BE','Henri-Chapelle (Belgium)',1,1,0),(21380,11874,121327,'Henstedt-Ulzburg','Germany','DE','Henstedt-Ulzburg (Germany)',1,1,0),(21381,0,121328,'Herbriggen','Switzerland','CH','Herbriggen (Switzerland)',1,1,0),(21382,11886,121329,'Heredia','Costa Rica','CR','Heredia (Costa Rica)',1,1,0),(21383,0,121330,'Herpen','Netherlands','NL','Herpen (Netherlands)',1,1,0),(21384,11929,121331,'Herradura','Costa Rica','CR','Herradura (Costa Rica)',1,1,0),(21385,11930,121332,'Herrenberg','Germany','DE','Herrenberg (Germany)',1,1,0),(21386,0,121333,'Herrsching','Germany','DE','Herrsching (Germany)',1,1,0),(21387,11938,121334,'Herstal','Belgium','BE','Herstal (Belgium)',1,1,0),(21388,0,121335,'Herve','Belgium','BE','Herve (Belgium)',1,1,0),(21389,11953,121336,'Herzogsweiler','Germany','DE','Herzogsweiler (Germany)',1,1,0),(21390,0,121337,'Hessigheim','Germany','DE','Hessigheim (Germany)',1,1,0),(21391,11960,121338,'Hessisch Oldendorf','Germany','DE','Hessisch Oldendorf (Germany)',1,1,0),(21392,11963,121339,'Heth','United States of America','US','Heth (United States of America)',1,1,0),(21393,0,121340,'Heudicourt-sous-les-Cotes','France','FR','Heudicourt-sous-les-Cotes (France)',1,1,0),(21394,0,121341,'Heuweiler','Germany','DE','Heuweiler (Germany)',1,1,0),(21395,11974,121342,'Heybeliada','Turkey','TR','Heybeliada (Turkey)',1,1,0),(21396,0,121343,'Heyerode','Germany','DE','Heyerode (Germany)',1,1,0),(21397,12003,121344,'Higginsville','United States of America','US','Higginsville (United States of America)',1,1,0),(21398,0,121345,'Highbourne Cay','Bahamas','BS','Highbourne Cay (Bahamas)',1,1,0),(21399,0,121346,'Highmount','United States of America','US','Highmount (United States of America)',1,1,0),(21400,12022,121347,'Hikone','Japan','JP','Hikone (Japan)',1,1,0),(21401,12025,121348,'Hildisrieden','Switzerland','CH','Hildisrieden (Switzerland)',1,1,0),(21402,12029,121349,'Hille','Germany','DE','Hille (Germany)',1,1,0),(21403,12032,121350,'Hilliard','United States of America','US','Hilliard (United States of America)',1,1,0),(21404,31113,121351,'Hilo','United States of America','US','Hilo (United States of America)',1,1,0),(21405,0,121352,'Hilzingen','Germany','DE','Hilzingen (Germany)',1,1,0),(21406,12049,121353,'Himeji','Japan','JP','Himeji (Japan)',1,1,0),(21407,0,121354,'Himmelpfort','Germany','DE','Himmelpfort (Germany)',1,1,0),(21408,12065,121356,'Hinterglemm','Austria','AT','Hinterglemm (Austria)',1,1,0),(21409,0,121357,'Hinterweidenthal','Germany','DE','Hinterweidenthal (Germany)',1,1,0),(21410,12078,121358,'Hirschberg','Germany','DE','Hirschberg (Germany)',1,1,0),(21411,12082,121359,'Hisar','Bulgaria','BG','Hisar (Bulgaria)',1,1,0),(21412,12087,121360,'Hisings Backa','Sweden','SE','Hisings Backa (Sweden)',1,1,0),(21413,0,121361,'Hittisau','Austria','AT','Hittisau (Austria)',1,1,0),(21414,12092,121362,'Hitzacker','Germany','DE','Hitzacker (Germany)',1,1,0),(21415,0,121363,'Hlane National Park','Swaziland','SZ','Hlane National Park (Swaziland)',1,1,0),(21416,12103,121364,'Hobart','Australia','AU','Hobart (Australia)',1,1,0),(21417,0,121365,'Hochfugen','Austria','AT','Hochfugen (Austria)',1,1,0),(21418,0,121366,'Hochstadt an der Donau','Germany','DE','Hochstadt an der Donau (Germany)',1,1,0),(21419,12116,121367,'Hockenheim','Germany','DE','Hockenheim (Germany)',1,1,0),(21420,0,121368,'Hogsback','South Africa','ZA','Hogsback (South Africa)',1,1,0),(21421,0,121369,'Hohen Demzin','Germany','DE','Hohen Demzin (Germany)',1,1,0),(21422,0,121370,'Hohenmolsen','Germany','DE','Hohenmolsen (Germany)',1,1,0),(21423,0,121371,'Hohenzieritz','Germany','DE','Hohenzieritz (Germany)',1,1,0),(21424,0,121372,'Hohnhorst','Germany','DE','Hohnhorst (Germany)',1,1,0),(21425,0,121373,'Hohnstein','Germany','DE','Hohnstein (Germany)',1,1,0),(21426,0,121374,'Holbrook/Petrified Forest','United States of America','US','Holbrook/Petrified Forest (United States of America)',1,1,0),(21427,0,121375,'Holford','United Kingdom','UK','Holford (United Kingdom)',1,1,0),(21428,0,121376,'Holladay','United States of America','US','Holladay (United States of America)',1,1,0),(21429,0,121377,'Hollbruck','Austria','AT','Hollbruck (Austria)',1,1,0),(21430,0,121378,'Holly Springs','United States of America','US','Holly Springs (United States of America)',1,1,0),(21431,12201,121379,'Holtsville','United States of America','US','Holtsville (United States of America)',1,1,0),(21432,0,121380,'Holzgerlingen','Germany','DE','Holzgerlingen (Germany)',1,1,0),(21433,0,121381,'Homs','Syria',NULL,'Homs (Syria)',1,1,0),(21434,12230,121382,'Honey Brook','United States of America','US','Honey Brook (United States of America)',1,1,0),(21435,12247,121383,'Hood River','United States of America','US','Hood River (United States of America)',1,1,0),(21436,0,121384,'Hope','Canada','CA','Hope (Canada)',1,1,0),(21437,0,121385,'Hori','Switzerland','CH','Hori (Switzerland)',1,1,0),(21438,12284,121386,'Horn-Bad Meinberg','Germany','DE','Horn-Bad Meinberg (Germany)',1,1,0),(21439,12285,121387,'Hornbaek','Denmark','DK','Hornbaek (Denmark)',1,1,0),(21440,0,121388,'Hornberg-Niederwasser','Germany','DE','Hornberg-Niederwasser (Germany)',1,1,0),(21441,0,121389,'Horni Branna','Czech Republic','CZ','Horni Branna (Czech Republic)',1,1,0),(21442,0,121390,'Horni Marsov','Czech Republic','CZ','Horni Marsov (Czech Republic)',1,1,0),(21443,0,121391,'Horomerice','Czech Republic','CZ','Horomerice (Czech Republic)',1,1,0),(21444,0,121392,'Horse Cave','United States of America','US','Horse Cave (United States of America)',1,1,0),(21445,12317,121393,'Horto','Greece','GR','Horto (Greece)',1,1,0),(21446,0,121394,'Hory','Czech Republic','CZ','Hory (Czech Republic)',1,1,0),(21447,0,121395,'Hoslwang','Germany','DE','Hoslwang (Germany)',1,1,0),(21448,31127,121397,'Hot Springs','United States of America','US','Hot Springs (United States of America)',1,1,0),(21449,12342,121398,'Houghton','United States of America','US','Houghton (United States of America)',1,1,0),(21450,0,121399,'Houston','United States of America','US','Houston (United States of America)',1,1,0),(21451,12368,121400,'Howey-in-the-Hills','United States of America','US','Howey-in-the-Hills (United States of America)',1,1,0),(21452,0,121401,'Hoylake','United Kingdom','UK','Hoylake (United Kingdom)',1,1,0),(21453,0,121402,'Hua Hin','Thailand','TH','Hua Hin (Thailand)',1,1,0),(21454,0,121403,'Huacalera','Argentina','AR','Huacalera (Argentina)',1,1,0),(21455,12385,121404,'Huahine','French Polynesia','PF','Huahine (French Polynesia)',1,1,0),(21456,12403,121405,'Huasca de Ocampo','Mexico','MX','Huasca de Ocampo (Mexico)',1,1,0),(21457,12405,121406,'Huatulco','Mexico','MX','Huatulco (Mexico)',1,1,0),(21458,0,121407,'Huddersfield','United Kingdom','UK','Huddersfield (United Kingdom)',1,1,0),(21459,0,121408,'Huertos de Moya','Spain','ES','Huertos de Moya (Spain)',1,1,0),(21460,0,121409,'Huetor Tajar','Spain','ES','Huetor Tajar (Spain)',1,1,0),(21461,0,121410,'Hugelsheim','Germany','DE','Hugelsheim (Germany)',1,1,0),(21462,12356,121411,'Hout Bay','South Africa','ZA','Hout Bay (South Africa)',1,1,0),(21463,0,121412,'Hovag','Norway','NO','Hovag (Norway)',1,1,0),(21464,0,121413,'Howden','United Kingdom','UK','Howden (United Kingdom)',1,1,0),(21465,0,121414,'Howth','Ireland','IE','Howth (Ireland)',1,1,0),(21466,12373,121415,'Hoxter','Germany','DE','Hoxter (Germany)',1,1,0),(21467,0,121416,'Hoyorredondo','Spain','ES','Hoyorredondo (Spain)',1,1,0),(21468,0,121417,'Hoznayo','Spain','ES','Hoznayo (Spain)',1,1,0),(21469,0,121418,'Hrbov','Czech Republic','CZ','Hrbov (Czech Republic)',1,1,0),(21470,0,121419,'Huby','United Kingdom','UK','Huby (United Kingdom)',1,1,0),(21471,12415,121420,'Huddleston','United States of America','US','Huddleston (United States of America)',1,1,0),(21472,0,121421,'Huelgoat','France','FR','Huelgoat (France)',1,1,0),(21473,0,121422,'Huerta','Spain','ES','Huerta (Spain)',1,1,0),(21474,12430,121423,'Huesca','Spain','ES','Huesca (Spain)',1,1,0),(21475,0,121424,'Huete','Spain','ES','Huete (Spain)',1,1,0),(21476,0,121425,'Huetor Santillan','Spain','ES','Huetor Santillan (Spain)',1,1,0),(21477,12449,121426,'Hulshorst','Netherlands','NL','Hulshorst (Netherlands)',1,1,0),(21478,0,121427,'Humpolec','Czech Republic','CZ','Humpolec (Czech Republic)',1,1,0),(21479,0,121428,'Humpty Doo','Australia','AU','Humpty Doo (Australia)',1,1,0),(21480,12486,121429,'Huntingdon','United States of America','US','Huntingdon (United States of America)',1,1,0),(21481,0,121430,'Huntington','United States of America','US','Huntington (United States of America)',1,1,0),(21482,0,121431,'Huntly','United Kingdom','UK','Huntly (United Kingdom)',1,1,0),(21483,12497,121432,'Hurley','United States of America','US','Hurley (United States of America)',1,1,0),(21484,12500,121433,'Huron','United States of America','US','Huron (United States of America)',1,1,0),(21485,12508,121434,'Huskvarna','Sweden','SE','Huskvarna (Sweden)',1,1,0),(21486,0,121435,'Hutchinson','United States of America','US','Hutchinson (United States of America)',1,1,0),(21487,12523,121436,'Hvar','Croatia','HR','Hvar (Croatia)',1,1,0),(21488,12528,121437,'Hvolsvollur','Iceland','IS','Hvolsvollur (Iceland)',1,1,0),(21489,12531,121438,'Hyattsville','United States of America','US','Hyattsville (United States of America)',1,1,0),(21490,12534,121439,'Hyde Park','United States of America','US','Hyde Park (United States of America)',1,1,0),(21491,12546,121440,'Hyvinkaa','Finland','FI','Hyvinkaa (Finland)',1,1,0),(21492,12550,121441,'Iasi','Romania','RO','Iasi (Romania)',1,1,0),(21493,12553,121442,'Ibaraki','Japan','JP','Ibaraki (Japan)',1,1,0),(21494,0,121443,'Ibi','Spain','ES','Ibi (Spain)',1,1,0),(21495,0,121444,'Ibri','Oman','OM','Ibri (Oman)',1,1,0),(21496,0,121445,'Ichenheim','Germany','DE','Ichenheim (Germany)',1,1,0),(21497,12568,121446,'Ichinoseki','Japan','JP','Ichinoseki (Japan)',1,1,0),(21498,12573,121447,'Idabel','United States of America','US','Idabel (United States of America)',1,1,0),(21499,0,121448,'Idlib','Syria',NULL,'Idlib (Syria)',1,1,0),(21500,0,121449,'Idron','France','FR','Idron (France)',1,1,0),(21501,0,121450,'Ierissos','Greece','GR','Ierissos (Greece)',1,1,0),(21502,0,121451,'Ifs (Calvados)','France','FR','Ifs (Calvados) (France)',1,1,0),(21503,12598,121452,'Igls','Austria','AT','Igls (Austria)',1,1,0),(21504,0,121453,'Igneada','Turkey','TR','Igneada (Turkey)',1,1,0),(21505,12604,121454,'Igualada','Spain','ES','Igualada (Spain)',1,1,0),(21506,0,121455,'Iguela Lagoon','Gabon','GA','Iguela Lagoon (Gabon)',1,1,0),(21507,0,121456,'Ikuchi Island','Japan','JP','Ikuchi Island (Japan)',1,1,0),(21508,0,121457,'Ilford','United Kingdom','UK','Ilford (United Kingdom)',1,1,0),(21509,0,121458,'Ilgin','Turkey','TR','Ilgin (Turkey)',1,1,0),(21510,0,121459,'Ilha do Gipoia','Brazil','BR','Ilha do Gipoia (Brazil)',1,1,0),(21511,12659,121460,'Ilsenburg','Germany','DE','Ilsenburg (Germany)',1,1,0),(21512,0,121461,'Imerovigli','Greece','GR','Imerovigli (Greece)',1,1,0),(21513,12677,121462,'Imperatriz','Brazil','BR','Imperatriz (Brazil)',1,1,0),(21514,0,121463,'Imperia-Porto Maurizio','Italy','IT','Imperia-Porto Maurizio (Italy)',1,1,0),(21515,0,121464,'Indianola','United States of America','US','Indianola (United States of America)',1,1,0),(21516,12707,121465,'Indramayu','Indonesia','ID','Indramayu (Indonesia)',1,1,0),(21517,0,121466,'Ingebyra','Australia','AU','Ingebyra (Australia)',1,1,0),(21518,0,121467,'Ingham','Australia','AU','Ingham (Australia)',1,1,0),(21519,12728,121468,'Inhaca','Mozambique','MZ','Inhaca (Mozambique)',1,1,0),(21520,0,121469,'Injoux-Genissiat','France','FR','Injoux-Genissiat (France)',1,1,0),(21521,12734,121470,'Injune','Australia','AU','Injune (Australia)',1,1,0),(21522,0,121471,'Inning am Ammersee','Germany','DE','Inning am Ammersee (Germany)',1,1,0),(21523,0,121472,'Insel Alderney','United Kingdom','UK','Insel Alderney (United Kingdom)',1,1,0),(21524,0,121473,'Insel Chios','Greece','GR','Insel Chios (Greece)',1,1,0),(21525,0,121474,'Insel Ciovo','Croatia','HR','Insel Ciovo (Croatia)',1,1,0),(21526,0,121475,'Insel Hogbonden','Sweden','SE','Insel Hogbonden (Sweden)',1,1,0),(21527,0,121476,'Insel Kadavu','Fiji Islands','FJ','Insel Kadavu (Fiji Islands)',1,1,0),(21528,0,121477,'Insel Laucala','Fiji Islands','FJ','Insel Laucala (Fiji Islands)',1,1,0),(21529,0,121478,'Insel Malolo Lailai','Fiji Islands','FJ','Insel Malolo Lailai (Fiji Islands)',1,1,0),(21530,0,121479,'Insel Man Nork','Thailand','TH','Insel Man Nork (Thailand)',1,1,0),(21531,0,121480,'Insel Naka Yai','Thailand','TH','Insel Naka Yai (Thailand)',1,1,0),(21532,0,121481,'Insel Sotra','Norway','NO','Insel Sotra (Norway)',1,1,0),(21533,0,121482,'Insel Ventotene','Italy','IT','Insel Ventotene (Italy)',1,1,0),(21534,0,121483,'Insul','Germany','DE','Insul (Germany)',1,1,0),(21535,12755,121484,'Interior','United States of America','US','Interior (United States of America)',1,1,0),(21536,0,121485,'Interlochen','United States of America','US','Interlochen (United States of America)',1,1,0),(21537,12774,121486,'Inverness','United States of America','US','Inverness (United States of America)',1,1,0),(21538,12783,121487,'Ioannina','Greece','GR','Ioannina (Greece)',1,1,0),(21539,12792,121488,'Ipatinga','Brazil','BR','Ipatinga (Brazil)',1,1,0),(21540,12799,121489,'Ipsach','Switzerland','CH','Ipsach (Switzerland)',1,1,0),(21541,12803,121490,'Iqaluit','Canada','CA','Iqaluit (Canada)',1,1,0),(21542,0,121491,'Iraklion','Greece','GR','Iraklion (Greece)',1,1,0),(21543,12826,121492,'Irurtzun','Spain','ES','Irurtzun (Spain)',1,1,0),(21544,0,121493,'Is Molas','Italy','IT','Is Molas (Italy)',1,1,0),(21545,0,121494,'Ise','Japan','JP','Ise (Japan)',1,1,0),(21546,0,121495,'iSimangaliso Wetland Park','South Africa','ZA','iSimangaliso Wetland Park (South Africa)',1,1,0),(21547,0,121496,'Ising','Germany','DE','Ising (Germany)',1,1,0),(21548,0,121497,'Iskut','Canada','CA','Iskut (Canada)',1,1,0),(21549,0,121498,'Isla de Coche','Venezuela','VE','Isla de Coche (Venezuela)',1,1,0),(21550,0,121499,'Islay','Ireland','IE','Islay (Ireland)',1,1,0),(21551,0,121500,'Isola D\'Asti','Italy','IT','Isola D\'Asti (Italy)',1,1,0),(21552,0,121501,'Isola Rossa','Italy','IT','Isola Rossa (Italy)',1,1,0),(21553,12900,121502,'Issenheim','France','FR','Issenheim (France)',1,1,0),(21554,12904,121503,'Istan','Spain','ES','Istan (Spain)',1,1,0),(21555,12908,121504,'Istrana','Italy','IT','Istrana (Italy)',1,1,0),(21556,12926,121505,'Ithaca','United States of America','US','Ithaca (United States of America)',1,1,0),(21557,0,121506,'Itubera','Brazil','BR','Itubera (Brazil)',1,1,0),(21558,12951,121507,'Ixtapa','Mexico','MX','Ixtapa (Mexico)',1,1,0),(21559,31194,121508,'Izu','Japan','JP','Izu (Japan)',1,1,0),(21560,12976,121510,'Jaboticatubas','Brazil','BR','Jaboticatubas (Brazil)',1,1,0),(21561,0,121511,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(21562,0,121512,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(21563,0,121513,'Jagsthausen','Germany','DE','Jagsthausen (Germany)',1,1,0),(21564,13013,121514,'Jamaica','United States of America','US','Jamaica (United States of America)',1,1,0),(21565,13019,121515,'Jamestown','United States of America','US','Jamestown (United States of America)',1,1,0),(21566,13023,121516,'Jamsa','Finland','FI','Jamsa (Finland)',1,1,0),(21567,0,121517,'Janda Baik','Malaysia','MY','Janda Baik (Malaysia)',1,1,0),(21568,0,121518,'Januv Dul','Czech Republic','CZ','Januv Dul (Czech Republic)',1,1,0),(21569,13033,121519,'Jaragua do Sul','Brazil','BR','Jaragua do Sul (Brazil)',1,1,0),(21570,13038,121520,'Jarfalla','Sweden','SE','Jarfalla (Sweden)',1,1,0),(21571,0,121521,'Jarinu','Brazil','BR','Jarinu (Brazil)',1,1,0),(21572,0,121522,'Jaromerice nad Rokytnou','Czech Republic','CZ','Jaromerice nad Rokytnou (Czech Republic)',1,1,0),(21573,13045,121523,'Jasseron','France','FR','Jasseron (France)',1,1,0),(21574,0,121524,'Holbrook',NULL,NULL,'Holbrook ()',1,1,0),(21575,12167,121525,'Holderness','United States of America','US','Holderness (United States of America)',1,1,0),(21576,0,121526,'Hollywood','United States of America','US','Hollywood (United States of America)',1,1,0),(21577,0,121527,'Holm','Germany','DE','Holm (Germany)',1,1,0),(21578,0,121528,'Holmfirth','United Kingdom','UK','Holmfirth (United Kingdom)',1,1,0),(21579,0,121529,'Holstenniendorf','Germany','DE','Holstenniendorf (Germany)',1,1,0),(21580,0,121530,'Holzminden','Germany','DE','Holzminden (Germany)',1,1,0),(21581,0,121531,'Homberg','Germany','DE','Homberg (Germany)',1,1,0),(21582,0,121532,'Homberg (Ohm)','Germany','DE','Homberg (Ohm) (Germany)',1,1,0),(21583,0,121533,'Homebush Bay','Australia','AU','Homebush Bay (Australia)',1,1,0),(21584,12217,121534,'Homestead','United States of America','US','Homestead (United States of America)',1,1,0),(21585,12218,121535,'Homewood','United States of America','US','Homewood (United States of America)',1,1,0),(21586,0,121536,'Homps','France','FR','Homps (France)',1,1,0),(21587,12225,121537,'Hondrich','Switzerland','CH','Hondrich (Switzerland)',1,1,0),(21588,12229,121538,'Honesdale','United States of America','US','Honesdale (United States of America)',1,1,0),(21589,12246,121539,'Honomu','United States of America','US','Honomu (United States of America)',1,1,0),(21590,0,121540,'Hontheim','Germany','DE','Hontheim (Germany)',1,1,0),(21591,0,121541,'Hoogerheide','Netherlands','NL','Hoogerheide (Netherlands)',1,1,0),(21592,0,121542,'Hopa','Turkey','TR','Hopa (Turkey)',1,1,0),(21593,0,121543,'Hope','United States of America','US','Hope (United States of America)',1,1,0),(21594,0,121544,'Hope','United States of America','US','Hope (United States of America)',1,1,0),(21595,12268,121545,'Hopewell','United States of America','US','Hopewell (United States of America)',1,1,0),(21596,0,121546,'Hopferau','Germany','DE','Hopferau (Germany)',1,1,0),(21597,0,121547,'Hopton on Sea','United Kingdom','UK','Hopton on Sea (United Kingdom)',1,1,0),(21598,12276,121548,'Horben','Germany','DE','Horben (Germany)',1,1,0),(21599,12277,121549,'Horbourg-Wihr','France','FR','Horbourg-Wihr (France)',1,1,0),(21600,12278,121550,'Horche','Spain','ES','Horche (Spain)',1,1,0),(21601,0,121551,'Horgenzell','Germany','DE','Horgenzell (Germany)',1,1,0),(21602,0,121552,'Horn','Austria','AT','Horn (Austria)',1,1,0),(21603,0,121553,'Horni Becva','Czech Republic','CZ','Horni Becva (Czech Republic)',1,1,0),(21604,0,121554,'Horni Lipka','Czech Republic','CZ','Horni Lipka (Czech Republic)',1,1,0),(21605,12303,121555,'Horseheads','United States of America','US','Horseheads (United States of America)',1,1,0),(21606,12307,121556,'Horseshoe Bay','United States of America','US','Horseshoe Bay (United States of America)',1,1,0),(21607,0,121558,'Hostivice','Czech Republic','CZ','Hostivice (Czech Republic)',1,1,0),(21608,0,121559,'Hostka','Czech Republic','CZ','Hostka (Czech Republic)',1,1,0),(21609,12331,121560,'Hot Water Beach','New Zealand','NZ','Hot Water Beach (New Zealand)',1,1,0),(21610,12332,121561,'Hotan','China','CN','Hotan (China)',1,1,0),(21611,0,121562,'Hrutafjordur','Iceland','IS','Hrutafjordur (Iceland)',1,1,0),(21612,0,121563,'Huaibei','China','CN','Huaibei (China)',1,1,0),(21613,0,121564,'Huaihua','China','CN','Huaihua (China)',1,1,0),(21614,0,121565,'Huancayo','Peru','PE','Huancayo (Peru)',1,1,0),(21615,12407,121566,'Hubbard','United States of America','US','Hubbard (United States of America)',1,1,0),(21616,12409,121567,'Huber Heights','United States of America','US','Huber Heights (United States of America)',1,1,0),(21617,0,121568,'Hubingen','Germany','DE','Hubingen (Germany)',1,1,0),(21618,12412,121569,'Huckelhoven','Germany','DE','Huckelhoven (Germany)',1,1,0),(21619,0,121571,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(21620,12419,121572,'Hudson\'s Hope','Canada','CA','Hudson\'s Hope (Canada)',1,1,0),(21621,12435,121573,'Hugo','United States of America','US','Hugo (United States of America)',1,1,0),(21622,0,121574,'Hugoton','United States of America','US','Hugoton (United States of America)',1,1,0),(21623,0,121575,'Humble','Denmark','DK','Humble (Denmark)',1,1,0),(21624,12470,121576,'Hunfeld','Germany','DE','Hunfeld (Germany)',1,1,0),(21625,12478,121577,'Hunt','United States of America','US','Hunt (United States of America)',1,1,0),(21626,0,121578,'Huntington Beach','United States of America','US','Huntington Beach (United States of America)',1,1,0),(21627,0,121579,'Huntsville','United States of America','US','Huntsville (United States of America)',1,1,0),(21628,12496,121580,'Hurghada','Egypt','EG','Hurghada (Egypt)',1,1,0),(21629,0,121581,'Hurley','United Kingdom','UK','Hurley (United Kingdom)',1,1,0),(21630,0,121582,'Hurricane Mills','United States of America','US','Hurricane Mills (United States of America)',1,1,0),(21631,31136,121583,'Hurst','United States of America','US','Hurst (United States of America)',1,1,0),(21632,0,121584,'Hurum','Norway','NO','Hurum (Norway)',1,1,0),(21633,0,121585,'Husum','United States of America','US','Husum (United States of America)',1,1,0),(21634,0,121586,'Hutterscheid','Germany','DE','Hutterscheid (Germany)',1,1,0),(21635,0,121587,'Hutton Cranswick','United Kingdom','UK','Hutton Cranswick (United Kingdom)',1,1,0),(21636,0,121588,'Hvidbjerg',NULL,NULL,'Hvidbjerg ()',1,1,0),(21637,0,121589,'Hythe','United Kingdom','UK','Hythe (United Kingdom)',1,1,0),(21638,0,121590,'Ialyssos','Greece','GR','Ialyssos (Greece)',1,1,0),(21639,0,121591,'Ibiza Island','Spain','ES','Ibiza Island (Spain)',1,1,0),(21640,12565,121592,'Icheon','South Korea','KR','Icheon (South Korea)',1,1,0),(21641,12569,121593,'Icici','Croatia','HR','Icici (Croatia)',1,1,0),(21642,12571,121594,'Icmeler','Turkey','TR','Icmeler (Turkey)',1,1,0),(21643,12576,121595,'Idar-Oberstein','Germany','DE','Idar-Oberstein (Germany)',1,1,0),(21644,12584,121596,'Idstein','Germany','DE','Idstein (Germany)',1,1,0),(21645,0,121597,'Igal','Hungary','HU','Igal (Hungary)',1,1,0),(21646,0,121598,'Igarassu','Brazil','BR','Igarassu (Brazil)',1,1,0),(21647,12603,121599,'Iguala','Mexico','MX','Iguala (Mexico)',1,1,0),(21648,12610,121600,'Ihuru','Maldives','MV','Ihuru (Maldives)',1,1,0),(21649,0,121601,'IJhorst','Netherlands','NL','IJhorst (Netherlands)',1,1,0),(21650,12621,121602,'Ilberstedt','Germany','DE','Ilberstedt (Germany)',1,1,0),(21651,0,121603,'Ile d\'Oleron','France','FR','Ile d\'Oleron (France)',1,1,0),(21652,0,121604,'Ile D\'Orleans','Canada','CA','Ile D\'Orleans (Canada)',1,1,0),(21653,0,121605,'Illertissen','Germany','DE','Illertissen (Germany)',1,1,0),(21654,12649,121606,'Illkirch','France','FR','Illkirch (France)',1,1,0),(21655,0,121607,'Ilot Maitre','New Caledonia','NC','Ilot Maitre (New Caledonia)',1,1,0),(21656,0,121608,'Imlay City','United States of America','US','Imlay City (United States of America)',1,1,0),(21657,12682,121609,'Impruneta','Italy','IT','Impruneta (Italy)',1,1,0),(21658,0,121610,'Inchigeela','Ireland','IE','Inchigeela (Ireland)',1,1,0),(21659,12697,121611,'Incline Village','United States of America','US','Incline Village (United States of America)',1,1,0),(21660,31147,121612,'Indian Harbour Beach','United States of America','US','Indian Harbour Beach (United States of America)',1,1,0),(21661,31150,121613,'Indian River','United States of America','US','Indian River (United States of America)',1,1,0),(21662,31152,121614,'Indian Rocks Beach','United States of America','US','Indian Rocks Beach (United States of America)',1,1,0),(21663,31153,121615,'Indian Shores','United States of America','US','Indian Shores (United States of America)',1,1,0),(21664,0,121616,'Ingelheim am Rhein','Germany','DE','Ingelheim am Rhein (Germany)',1,1,0),(21665,0,121617,'Ingonish Beach','Canada','CA','Ingonish Beach (Canada)',1,1,0),(21666,0,121618,'Inkeroinen','Finland','FI','Inkeroinen (Finland)',1,1,0),(21667,0,121619,'Inle Lake','Myanmar','MM','Inle Lake (Myanmar)',1,1,0),(21668,0,121620,'Inlet','United States of America','US','Inlet (United States of America)',1,1,0),(21669,0,121621,'Inneralpbach','Austria','AT','Inneralpbach (Austria)',1,1,0),(21670,0,121622,'Innerkrems','Austria','AT','Innerkrems (Austria)',1,1,0),(21671,0,121623,'Innervillgraten','Austria','AT','Innervillgraten (Austria)',1,1,0),(21672,0,121624,'Insel Fogo','Cape Verde','CV','Insel Fogo (Cape Verde)',1,1,0),(21673,0,121625,'Insel Giannutri','Italy','IT','Insel Giannutri (Italy)',1,1,0),(21674,0,121626,'Insel Iz','Croatia','HR','Insel Iz (Croatia)',1,1,0),(21675,0,121627,'Insel Lankayan','Malaysia','MY','Insel Lankayan (Malaysia)',1,1,0),(21676,0,121628,'Insel Lindeman','Australia','AU','Insel Lindeman (Australia)',1,1,0),(21677,0,121629,'Insel Ometepe','Nicaragua','NI','Insel Ometepe (Nicaragua)',1,1,0),(21678,0,121630,'Insel Ponza','Italy','IT','Insel Ponza (Italy)',1,1,0),(21679,0,121631,'Insel Sumilon','Philippines','PH','Insel Sumilon (Philippines)',1,1,0),(21680,12754,121632,'Intercourse','United States of America','US','Intercourse (United States of America)',1,1,0),(21681,12795,121633,'Ipiales','Colombia','CO','Ipiales (Colombia)',1,1,0),(21682,0,121634,'Ipswich','United States of America','US','Ipswich (United States of America)',1,1,0),(21683,0,121635,'Hirvensalmi','Finland','FI','Hirvensalmi (Finland)',1,1,0),(21684,0,121636,'Hlavnovice Brezi','Czech Republic','CZ','Hlavnovice Brezi (Czech Republic)',1,1,0),(21685,12102,121637,'Hobart','United States of America','US','Hobart (United States of America)',1,1,0),(21686,0,121638,'Hochheim am Main','Germany','DE','Hochheim am Main (Germany)',1,1,0),(21687,0,121639,'Hochkrimml','Austria','AT','Hochkrimml (Austria)',1,1,0),(21688,0,121640,'Hodges Bay','Antigua & Barbuda','AG','Hodges Bay (Antigua & Barbuda)',1,1,0),(21689,0,121641,'Hofen an der Enz','Germany','DE','Hofen an der Enz (Germany)',1,1,0),(21690,0,121642,'Hofheim am Taunus','Germany','DE','Hofheim am Taunus (Germany)',1,1,0),(21691,12134,121643,'Hofn','Iceland','IS','Hofn (Iceland)',1,1,0),(21692,0,121644,'Hofstade','Belgium','BE','Hofstade (Belgium)',1,1,0),(21693,12137,121645,'Hogansville','United States of America','US','Hogansville (United States of America)',1,1,0),(21694,12140,121646,'Hohenems','Austria','AT','Hohenems (Austria)',1,1,0),(21695,0,121647,'Hohenfels (bei Stockach)','Germany','DE','Hohenfels (bei Stockach) (Germany)',1,1,0),(21696,0,121648,'Hohenkammer','Germany','DE','Hohenkammer (Germany)',1,1,0),(21697,0,121649,'Hohentengen am Hochrhein','Germany','DE','Hohentengen am Hochrhein (Germany)',1,1,0),(21698,12146,121650,'Hohenwarth','Germany','DE','Hohenwarth (Germany)',1,1,0),(21699,0,121651,'Holdenville','United States of America','US','Holdenville (United States of America)',1,1,0),(21700,0,121652,'Holiday Island','United States of America','US','Holiday Island (United States of America)',1,1,0),(21701,0,121653,'Holland','United States of America','US','Holland (United States of America)',1,1,0),(21702,12178,121654,'Hollenstedt','Germany','DE','Hollenstedt (Germany)',1,1,0),(21703,0,121655,'Hollywood Beach/Fort Lauderdale','United States of America','US','Hollywood Beach/Fort Lauderdale (United States of America)',1,1,0),(21704,0,121656,'Holywell','United Kingdom','UK','Holywell (United Kingdom)',1,1,0),(21705,0,121657,'Holzwickede','Germany','DE','Holzwickede (Germany)',1,1,0),(21706,0,121658,'Homberg (Efze)','Germany','DE','Homberg (Efze) (Germany)',1,1,0),(21707,0,121659,'Homburg','Germany','DE','Homburg (Germany)',1,1,0),(21708,12216,121660,'Homer','United States of America','US','Homer (United States of America)',1,1,0),(21709,12220,121661,'Homosassa','United States of America','US','Homosassa (United States of America)',1,1,0),(21710,12227,121662,'Honefoss','Norway','NO','Honefoss (Norway)',1,1,0),(21711,0,121663,'Hope','United Kingdom','UK','Hope (United Kingdom)',1,1,0),(21712,0,121664,'Horb am Neckar','Germany','DE','Horb am Neckar (Germany)',1,1,0),(21713,0,121665,'Hornbach','Germany','DE','Hornbach (Germany)',1,1,0),(21714,0,121666,'Horncastle','United Kingdom','UK','Horncastle (United Kingdom)',1,1,0),(21715,12290,121667,'Hornell','United States of America','US','Hornell (United States of America)',1,1,0),(21716,0,121668,'Horny Smokivec','Slovakia','SK','Horny Smokivec (Slovakia)',1,1,0),(21717,12300,121669,'Horquetas','Costa Rica','CR','Horquetas (Costa Rica)',1,1,0),(21718,0,121670,'Horsholm','Denmark','DK','Horsholm (Denmark)',1,1,0),(21719,0,121671,'Hoscheid','Luxembourg','LU','Hoscheid (Luxembourg)',1,1,0),(21720,0,121672,'Ho?kirch','Germany','DE','Ho?kirch (Germany)',1,1,0),(21721,31130,121673,'Hot Sulphur Springs','United States of America','US','Hot Sulphur Springs (United States of America)',1,1,0),(21722,0,121674,'Houghton','United Kingdom','UK','Houghton (United Kingdom)',1,1,0),(21723,12347,121675,'Houlton','United States of America','US','Houlton (United States of America)',1,1,0),(21724,0,121676,'Hourtin Plage','France','FR','Hourtin Plage (France)',1,1,0),(21725,0,121677,'Hovden I Setesdal','Norway','NO','Hovden I Setesdal (Norway)',1,1,0),(21726,0,121678,'Howells','United States of America','US','Howells (United States of America)',1,1,0),(21727,12375,121679,'Hoyerswerda','Germany','DE','Hoyerswerda (Germany)',1,1,0),(21728,0,121680,'Hoyo de Mazo','Spain','ES','Hoyo de Mazo (Spain)',1,1,0),(21729,12379,121681,'Hoyt Lakes','United States of America','US','Hoyt Lakes (United States of America)',1,1,0),(21730,0,121682,'Hrensko','Czech Republic','CZ','Hrensko (Czech Republic)',1,1,0),(21731,0,121683,'Hromnice','Czech Republic','CZ','Hromnice (Czech Republic)',1,1,0),(21732,0,121684,'Hsin-Tien','Taiwan','TW','Hsin-Tien (Taiwan)',1,1,0),(21733,0,121685,'Hualalai','United States of America','US','Hualalai (United States of America)',1,1,0),(21734,12399,121686,'Huangshi','China','CN','Huangshi (China)',1,1,0),(21735,0,121687,'Huayin','China','CN','Huayin (China)',1,1,0),(21736,0,121688,'Hude (Oldenburg)','Germany','DE','Hude (Oldenburg) (Germany)',1,1,0),(21737,0,121689,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(21738,12427,121690,'Huelva','Spain','ES','Huelva (Spain)',1,1,0),(21739,0,121691,'Huescar','Spain','ES','Huescar (Spain)',1,1,0),(21740,0,121692,'Humanes de Madrid','Spain','ES','Humanes de Madrid (Spain)',1,1,0),(21741,12457,121693,'Humboldt','Canada','CA','Humboldt (Canada)',1,1,0),(21742,0,121694,'Huntington','United States of America','US','Huntington (United States of America)',1,1,0),(21743,0,121695,'Huntley','United Kingdom','UK','Huntley (United Kingdom)',1,1,0),(21744,0,121696,'Huntsville','United States of America','US','Huntsville (United States of America)',1,1,0),(21745,0,121697,'Huron','United States of America','US','Huron (United States of America)',1,1,0),(21746,0,121698,'Husafell','Iceland','IS','Husafell (Iceland)',1,1,0),(21747,12512,121699,'Husum','Germany','DE','Husum (Germany)',1,1,0),(21748,12521,121700,'Hvalpsund','Denmark','DK','Hvalpsund (Denmark)',1,1,0),(21749,12522,121701,'Hvammstangi','Iceland','IS','Hvammstangi (Iceland)',1,1,0),(21750,0,121702,'Hyampom','United States of America','US','Hyampom (United States of America)',1,1,0),(21751,12542,121703,'Hyevre-Paroisse','France','FR','Hyevre-Paroisse (France)',1,1,0),(21752,0,121704,'Hyne Fjordsenter','Norway','NO','Hyne Fjordsenter (Norway)',1,1,0),(21753,12564,121705,'Ica','Peru','PE','Ica (Peru)',1,1,0),(21754,0,121706,'Ichtershausen','Germany','DE','Ichtershausen (Germany)',1,1,0),(21755,31138,121707,'Ida Grove','United States of America','US','Ida Grove (United States of America)',1,1,0),(21756,12587,121708,'Ieper','Belgium','BE','Ieper (Belgium)',1,1,0),(21757,12589,121709,'Ifaty','Madagascar','MG','Ifaty (Madagascar)',1,1,0),(21758,12590,121710,'Iffendic','France','FR','Iffendic (France)',1,1,0),(21759,12591,121711,'Ifrane','Morocco','MA','Ifrane (Morocco)',1,1,0),(21760,12612,121712,'Iisalmi','Finland','FI','Iisalmi (Finland)',1,1,0),(21761,0,121713,'Ilan','Taiwan','TW','Ilan (Taiwan)',1,1,0),(21762,12624,121714,'Ile des Pins','New Caledonia','NC','Ile des Pins (New Caledonia)',1,1,0),(21763,0,121715,'Ilok','Croatia','HR','Ilok (Croatia)',1,1,0),(21764,12669,121716,'Imbassai','Brazil','BR','Imbassai (Brazil)',1,1,0),(21765,12670,121717,'Imbituba','Brazil','BR','Imbituba (Brazil)',1,1,0),(21766,0,121718,'Immenstaad','Germany','DE','Immenstaad (Germany)',1,1,0),(21767,12676,121719,'Imon','Spain','ES','Imon (Spain)',1,1,0),(21768,12683,121720,'Imst','Austria','AT','Imst (Austria)',1,1,0),(21769,0,121721,'Imsterberg','Austria','AT','Imsterberg (Austria)',1,1,0),(21770,12686,121722,'Inari','Finland','FI','Inari (Finland)',1,1,0),(21771,12688,121723,'Inca','Spain','ES','Inca (Spain)',1,1,0),(21772,0,121724,'Incisa Val D\'Arno','Italy','IT','Incisa Val D\'Arno (Italy)',1,1,0),(21773,12704,121725,'Indio','United States of America','US','Indio (United States of America)',1,1,0),(21774,12723,121727,'Inglis','United States of America','US','Inglis (United States of America)',1,1,0),(21775,0,121728,'Inkwenkwezi Private Game Reserve','South Africa','ZA','Inkwenkwezi Private Game Reserve (South Africa)',1,1,0),(21776,0,121729,'Innerleithen','United Kingdom','UK','Innerleithen (United Kingdom)',1,1,0),(21777,0,121730,'Innerschwand am Mondsee','Austria','AT','Innerschwand am Mondsee (Austria)',1,1,0),(21778,0,121731,'Insel Baru','Colombia','CO','Insel Baru (Colombia)',1,1,0),(21779,0,121732,'Insel Caprera','Italy','IT','Insel Caprera (Italy)',1,1,0),(21780,0,121733,'Insel Espiritu Santo','Vanuatu','VU','Insel Espiritu Santo (Vanuatu)',1,1,0),(21781,0,121734,'Insel Kradan','Thailand','TH','Insel Kradan (Thailand)',1,1,0),(21782,0,121735,'Insel Lastovo','Croatia','HR','Insel Lastovo (Croatia)',1,1,0),(21783,0,121736,'Insel Marinduque','Philippines','PH','Insel Marinduque (Philippines)',1,1,0),(21784,0,121737,'Insel Prezba','Croatia','HR','Insel Prezba (Croatia)',1,1,0),(21785,0,121738,'Insel Rugen','Germany','DE','Insel Rugen (Germany)',1,1,0),(21786,0,121739,'Insel Salina','Italy','IT','Insel Salina (Italy)',1,1,0),(21787,0,121740,'Insel Sant\' Antioco','Italy','IT','Insel Sant\' Antioco (Italy)',1,1,0),(21788,0,121741,'Insel Taboga','Panama','PA','Insel Taboga (Panama)',1,1,0),(21789,0,121742,'Insel Yao Yai','Thailand','TH','Insel Yao Yai (Thailand)',1,1,0),(21790,12773,121743,'Invermere','Canada','CA','Invermere (Canada)',1,1,0),(21791,0,121744,'Ios Chora','Greece','GR','Ios Chora (Greece)',1,1,0),(21792,0,121745,'Iowa','United States of America','US','Iowa (United States of America)',1,1,0),(21793,0,121746,'Iowa Falls','United States of America','US','Iowa Falls (United States of America)',1,1,0),(21794,12804,121747,'Iquique','Chile','CL','Iquique (Chile)',1,1,0),(21795,12813,121748,'Irene','South Africa','ZA','Irene (South Africa)',1,1,0),(21796,0,121749,'Iriomote Jima Island','Japan','JP','Iriomote Jima Island (Japan)',1,1,0),(21797,0,121750,'Iririki','Vanuatu','VU','Iririki (Vanuatu)',1,1,0),(21798,0,121751,'Iron Mountain','United States of America','US','Iron Mountain (United States of America)',1,1,0),(21799,0,121752,'Irschen','Austria','AT','Irschen (Austria)',1,1,0),(21800,0,121753,'Irsee','Germany','DE','Irsee (Germany)',1,1,0),(21801,12831,121754,'Irving','United States of America','US','Irving (United States of America)',1,1,0),(21802,12835,121755,'Isabela','Puerto Rico','PR','Isabela (Puerto Rico)',1,1,0),(21803,12836,121756,'Isafjordur','Iceland','IS','Isafjordur (Iceland)',1,1,0),(21804,12838,121757,'Iselin','United States of America','US','Iselin (United States of America)',1,1,0),(21805,0,121758,'Iselsberg','Austria','AT','Iselsberg (Austria)',1,1,0),(21806,0,121759,'Iserlohn-Letmathe','Germany','DE','Iserlohn-Letmathe (Germany)',1,1,0),(21807,0,121760,'Isigny-sur-Mer','France','FR','Isigny-sur-Mer (France)',1,1,0),(21808,0,121761,'Iskele','Cyprus','CY','Iskele (Cyprus)',1,1,0),(21809,0,121762,'Isla Margarita','Venezuela','VE','Isla Margarita (Venezuela)',1,1,0),(21810,0,121763,'Isla Suasi','Peru','PE','Isla Suasi (Peru)',1,1,0),(21811,0,121764,'Isle la Motte','United States of America','US','Isle la Motte (United States of America)',1,1,0),(21812,0,121765,'Isle of Arran','United Kingdom','UK','Isle of Arran (United Kingdom)',1,1,0),(21813,0,121766,'Isle of North Uist','United Kingdom','UK','Isle of North Uist (United Kingdom)',1,1,0),(21814,12888,121767,'Isny im Allgau','Germany','DE','Isny im Allgau (Germany)',1,1,0),(21815,0,121768,'Is-sur-Tille','France','FR','Is-sur-Tille (France)',1,1,0),(21816,12903,121769,'Issy-Les-Moulineaux','France','FR','Issy-Les-Moulineaux (France)',1,1,0),(21817,0,121770,'Istmia','Greece','GR','Istmia (Greece)',1,1,0),(21818,0,121771,'Istra','Russia','RU','Istra (Russia)',1,1,0),(21819,12933,121772,'Ituzaingo','Argentina','AR','Ituzaingo (Argentina)',1,1,0),(21820,12942,121773,'Ivry-sur-Seine','France','FR','Ivry-sur-Seine (France)',1,1,0),(21821,0,121774,'Iwano-Frankiwsk','Ukraine','UA','Iwano-Frankiwsk (Ukraine)',1,1,0),(21822,0,121775,'Izamal','Mexico','MX','Izamal (Mexico)',1,1,0),(21823,0,121776,'Jablunkov','Czech Republic','CZ','Jablunkov (Czech Republic)',1,1,0),(21824,0,121777,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(21825,0,121778,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(21826,12983,121779,'Jaco','Costa Rica','CR','Jaco (Costa Rica)',1,1,0),(21827,0,121780,'Jade','Germany','DE','Jade (Germany)',1,1,0),(21828,0,121781,'Jahnsbach','Germany','DE','Jahnsbach (Germany)',1,1,0),(21829,0,121782,'Jamestown','United States of America','US','Jamestown (United States of America)',1,1,0),(21830,0,121784,'Jan Thiel Beach','Curaçao','CW','Jan Thiel Beach (Curaçao)',1,1,0),(21831,0,121785,'Janki','Poland','PL','Janki (Poland)',1,1,0),(21832,0,121786,'Janov nad Nisou','Czech Republic','CZ','Janov nad Nisou (Czech Republic)',1,1,0),(21833,0,121787,'Jantarny','Russia','RU','Jantarny (Russia)',1,1,0),(21834,0,121788,'Jasper','United States of America','US','Jasper (United States of America)',1,1,0),(21835,0,121789,'Jasper','United States of America','US','Jasper (United States of America)',1,1,0),(21836,0,121790,'Jastarnia','Poland','PL','Jastarnia (Poland)',1,1,0),(21837,13059,121791,'Jayuya','Puerto Rico','PR','Jayuya (Puerto Rico)',1,1,0),(21838,13062,121792,'Jebel Ali','United Arab Emirates','AE','Jebel Ali (United Arab Emirates)',1,1,0),(21839,0,121793,'Jeffersonville','United States of America','US','Jeffersonville (United States of America)',1,1,0),(21840,0,121794,'Jelutong','Malaysia','MY','Jelutong (Malaysia)',1,1,0),(21841,0,121795,'Jenig','Austria','AT','Jenig (Austria)',1,1,0),(21842,13085,121796,'Jennings','United States of America','US','Jennings (United States of America)',1,1,0),(21843,0,121797,'Jerez de los Caballeros','Spain','ES','Jerez de los Caballeros (Spain)',1,1,0),(21844,13117,121798,'Jettingen-Scheppach','Germany','DE','Jettingen-Scheppach (Germany)',1,1,0),(21845,0,121799,'Jezzine','Lebanon','LB','Jezzine (Lebanon)',1,1,0),(21846,13127,121800,'Jiande','China','CN','Jiande (China)',1,1,0),(21847,0,121801,'Jiangdu','China','CN','Jiangdu (China)',1,1,0),(21848,13135,121802,'Jiaoxi','Taiwan','TW','Jiaoxi (Taiwan)',1,1,0),(21849,13147,121803,'Jim Thorpe','United States of America','US','Jim Thorpe (United States of America)',1,1,0),(21850,13152,121804,'Jindabyne','Australia','AU','Jindabyne (Australia)',1,1,0),(21851,13159,121805,'Jingzhou','China','CN','Jingzhou (China)',1,1,0),(21852,0,121806,'Jiuhuashan','China','CN','Jiuhuashan (China)',1,1,0),(21853,0,121807,'Johanna','Australia','AU','Johanna (Australia)',1,1,0),(21854,0,121808,'Johannesburg','United States of America','US','Johannesburg (United States of America)',1,1,0),(21855,0,121809,'Johor Bahru','Malaysia','MY','Johor Bahru (Malaysia)',1,1,0),(21856,13237,121810,'Joseph','United States of America','US','Joseph (United States of America)',1,1,0),(21857,0,121811,'Jouarre','France','FR','Jouarre (France)',1,1,0),(21858,13251,121812,'Jouy-aux-Arches','France','FR','Jouy-aux-Arches (France)',1,1,0),(21859,0,121813,'Jouy-le-Potier','France','FR','Jouy-le-Potier (France)',1,1,0),(21860,0,121814,'Joyeuse','France','FR','Joyeuse (France)',1,1,0),(21861,0,121815,'Juist Island','Germany','DE','Juist Island (Germany)',1,1,0),(21862,13290,121816,'Juneau','United States of America','US','Juneau (United States of America)',1,1,0),(21863,0,121817,'Jungingen','Germany','DE','Jungingen (Germany)',1,1,0),(21864,0,121818,'Junkerath','Germany','DE','Junkerath (Germany)',1,1,0),(21865,0,121819,'Juye','China','CN','Juye (China)',1,1,0),(21866,13309,121820,'Jyvaskyla','Finland','FI','Jyvaskyla (Finland)',1,1,0),(21867,13328,121821,'Kadoma','Japan','JP','Kadoma (Japan)',1,1,0),(21868,0,121822,'Kaeng-Krachan-Nationalpark','Thailand','TH','Kaeng-Krachan-Nationalpark (Thailand)',1,1,0),(21869,0,121823,'Kafue National Park','Zambia','ZM','Kafue National Park (Zambia)',1,1,0),(21870,13347,121824,'Kaili','China','CN','Kaili (China)',1,1,0),(21871,13361,121825,'Kaiwaka','New Zealand','NZ','Kaiwaka (New Zealand)',1,1,0),(21872,13370,121826,'Kakopetria','Cyprus','CY','Kakopetria (Cyprus)',1,1,0),(21873,13379,121827,'Kalama','United States of America','US','Kalama (United States of America)',1,1,0),(21874,13392,121828,'Kalavasos','Cyprus','CY','Kalavasos (Cyprus)',1,1,0),(21875,0,121829,'Kalavros','Greece','GR','Kalavros (Greece)',1,1,0),(21876,0,121830,'Kalawy','Egypt','EG','Kalawy (Egypt)',1,1,0),(21877,0,121831,'Kalbe (Milde)','Germany','DE','Kalbe (Milde) (Germany)',1,1,0),(21878,0,121832,'Kalisz Pomorski','Poland','PL','Kalisz Pomorski (Poland)',1,1,0),(21879,13407,121833,'Kalkan','Turkey','TR','Kalkan (Turkey)',1,1,0),(21880,0,121834,'Kallirroi','Greece','GR','Kallirroi (Greece)',1,1,0),(21881,0,121835,'Kalloni','Greece','GR','Kalloni (Greece)',1,1,0),(21882,0,121836,'Kalo Nero','Greece','GR','Kalo Nero (Greece)',1,1,0),(21883,13431,121838,'Kalymnos','Greece','GR','Kalymnos (Greece)',1,1,0),(21884,0,121839,'Kalyviani','Greece','GR','Kalyviani (Greece)',1,1,0),(21885,0,121840,'Kamares','Greece','GR','Kamares (Greece)',1,1,0),(21886,0,121842,'Kamberg','South Africa','ZA','Kamberg (South Africa)',1,1,0),(21887,0,121843,'Kamenz','Germany','DE','Kamenz (Germany)',1,1,0),(21888,0,121844,'Kamiamakusa','Japan','JP','Kamiamakusa (Japan)',1,1,0),(21889,0,121845,'Kamjanez-Podilskyj','Ukraine','UA','Kamjanez-Podilskyj (Ukraine)',1,1,0),(21890,0,121846,'Kampong Som','Cambodia','KH','Kampong Som (Cambodia)',1,1,0),(21891,0,121847,'Kampong Thom','Cambodia','KH','Kampong Thom (Cambodia)',1,1,0),(21892,0,121848,'Kampung Mangkuk','Malaysia','MY','Kampung Mangkuk (Malaysia)',1,1,0),(21893,0,121849,'Kanasi-See','China','CN','Kanasi-See (China)',1,1,0),(21894,13484,121850,'Kanazawa','Japan','JP','Kanazawa (Japan)',1,1,0),(21895,13490,121851,'Kandersteg','Switzerland','CH','Kandersteg (Switzerland)',1,1,0),(21896,0,121852,'Harvey','United States of America','US','Harvey (United States of America)',1,1,0),(21897,0,121853,'Harwich Port','United States of America','US','Harwich Port (United States of America)',1,1,0),(21898,0,121854,'Haslemere','United Kingdom','UK','Haslemere (United Kingdom)',1,1,0),(21899,0,121855,'Hat Chao Samran','Thailand','TH','Hat Chao Samran (Thailand)',1,1,0),(21900,0,121856,'Hatten','Germany','DE','Hatten (Germany)',1,1,0),(21901,11632,121857,'Hattiesburg','United States of America','US','Hattiesburg (United States of America)',1,1,0),(21902,0,121858,'Hatzendorf','Austria','AT','Hatzendorf (Austria)',1,1,0),(21903,0,121859,'Hausen/Rhon','Germany','DE','Hausen/Rhon (Germany)',1,1,0),(21904,0,121860,'Hauteville-les-Dijon','France','FR','Hauteville-les-Dijon (France)',1,1,0),(21905,11657,121861,'Havelock','United States of America','US','Havelock (United States of America)',1,1,0),(21906,0,121862,'Havelte','Netherlands','NL','Havelte (Netherlands)',1,1,0),(21907,0,121863,'Hawes','United Kingdom','UK','Hawes (United Kingdom)',1,1,0),(21908,0,121864,'Hayingen','Germany','DE','Hayingen (Germany)',1,1,0),(21909,11715,121865,'Hays','United States of America','US','Hays (United States of America)',1,1,0),(21910,11735,121866,'Hazyview','South Africa','ZA','Hazyview (South Africa)',1,1,0),(21911,11747,121867,'Heath','United States of America','US','Heath (United States of America)',1,1,0),(21912,0,121868,'Hebbronville','United States of America','US','Hebbronville (United States of America)',1,1,0),(21913,11756,121869,'Hebi','China','CN','Hebi (China)',1,1,0),(21914,0,121870,'Hechthausen','Germany','DE','Hechthausen (Germany)',1,1,0),(21915,0,121871,'Heckfield','United Kingdom','UK','Heckfield (United Kingdom)',1,1,0),(21916,0,121872,'Hecla','Canada','CA','Hecla (Canada)',1,1,0),(21917,0,121873,'Heeze','Netherlands','NL','Heeze (Netherlands)',1,1,0),(21918,11771,121874,'Hefei','China','CN','Hefei (China)',1,1,0),(21919,0,121875,'Heidelberg (Gauteng)','South Africa','ZA','Heidelberg (Gauteng) (South Africa)',1,1,0),(21920,11784,121876,'Heidenheim','Germany','DE','Heidenheim (Germany)',1,1,0),(21921,11788,121877,'Heilbad Heiligenstadt','Germany','DE','Heilbad Heiligenstadt (Germany)',1,1,0),(21922,11803,121878,'Heinola','Finland','FI','Heinola (Finland)',1,1,0),(21923,11808,121879,'Helena','United States of America','US','Helena (United States of America)',1,1,0),(21924,0,121880,'Helston','United Kingdom','UK','Helston (United Kingdom)',1,1,0),(21925,31110,121881,'Hem','France','FR','Hem (France)',1,1,0),(21926,0,121882,'Hemel Hempstead','United Kingdom','UK','Hemel Hempstead (United Kingdom)',1,1,0),(21927,0,121883,'Hemer','Germany','DE','Hemer (Germany)',1,1,0),(21928,0,121884,'Hemsbach a. d. Bergstrasse','Germany','DE','Hemsbach a. d. Bergstrasse (Germany)',1,1,0),(21929,0,121885,'Henderson','United States of America','US','Henderson (United States of America)',1,1,0),(21930,0,121886,'Hendersonville','United States of America','US','Hendersonville (United States of America)',1,1,0),(21931,0,121887,'Henndorf am Wallersee','Austria','AT','Henndorf am Wallersee (Austria)',1,1,0),(21932,0,121888,'Henningsv?r','Norway','NO','Henningsv?r (Norway)',1,1,0),(21933,11880,121889,'Herbeumont','Belgium','BE','Herbeumont (Belgium)',1,1,0),(21934,0,121890,'Herdwangen-Schonach','Germany','DE','Herdwangen-Schonach (Germany)',1,1,0),(21935,11890,121891,'Herentals','Belgium','BE','Herentals (Belgium)',1,1,0),(21936,0,121892,'Hergensweiler','Germany','DE','Hergensweiler (Germany)',1,1,0),(21937,11897,121893,'Herisau','Switzerland','CH','Herisau (Switzerland)',1,1,0),(21938,0,121894,'Hermitage','United States of America','US','Hermitage (United States of America)',1,1,0),(21939,0,121895,'Hernando','United States of America','US','Hernando (United States of America)',1,1,0),(21940,0,121896,'Herrmannsacker','Germany','DE','Herrmannsacker (Germany)',1,1,0),(21941,0,121897,'Herscheid','Germany','DE','Herscheid (Germany)',1,1,0),(21942,0,121898,'Hersonissos','Greece','GR','Hersonissos (Greece)',1,1,0),(21943,0,121899,'Hertford','United Kingdom','UK','Hertford (United Kingdom)',1,1,0),(21944,0,121900,'Herzogenrath','Germany','DE','Herzogenrath (Germany)',1,1,0),(21945,11955,121901,'Hesel','Germany','DE','Hesel (Germany)',1,1,0),(21946,11967,121902,'Heusden','Netherlands','NL','Heusden (Netherlands)',1,1,0),(21947,11971,121903,'Hewitt','United States of America','US','Hewitt (United States of America)',1,1,0),(21948,11980,121904,'Hezhou','China','CN','Hezhou (China)',1,1,0),(21949,11982,121905,'Hiawassee','United States of America','US','Hiawassee (United States of America)',1,1,0),(21950,0,121906,'Hickstead','United Kingdom','UK','Hickstead (United Kingdom)',1,1,0),(21951,11987,121907,'Hicksville','United States of America','US','Hicksville (United States of America)',1,1,0),(21952,0,121908,'Hico','United States of America','US','Hico (United States of America)',1,1,0),(21953,0,121909,'Highlands','United States of America','US','Highlands (United States of America)',1,1,0),(21954,0,121910,'Highlands Ranch','United States of America','US','Highlands Ranch (United States of America)',1,1,0),(21955,12015,121911,'Highwood','United States of America','US','Highwood (United States of America)',1,1,0),(21956,0,121912,'Hillsborough','United States of America','US','Hillsborough (United States of America)',1,1,0),(21957,12056,121913,'Hinckley','United States of America','US','Hinckley (United States of America)',1,1,0),(21958,0,121914,'Hindenburg (Zabrze)','Poland','PL','Hindenburg (Zabrze) (Poland)',1,1,0),(21959,0,121915,'Hinterschmiding','Germany','DE','Hinterschmiding (Germany)',1,1,0),(21960,12071,121916,'Hinton','Canada','CA','Hinton (Canada)',1,1,0),(21961,0,121917,'Hirschhorn (Neckar)','Germany','DE','Hirschhorn (Neckar) (Germany)',1,1,0),(21962,12094,121918,'Hjallerup','Denmark','DK','Hjallerup (Denmark)',1,1,0),(21963,0,121919,'Hjelle','Norway','NO','Hjelle (Norway)',1,1,0),(21964,12096,121920,'Hjo','Sweden','SE','Hjo (Sweden)',1,1,0),(21965,31115,121921,'Ho Chi Minh City','Vietnam','VN','Ho Chi Minh City (Vietnam)',1,1,0),(21966,12115,121922,'Hochst','Germany','DE','Hochst (Germany)',1,1,0),(21967,0,121923,'Hochstadt an der Aisch','Germany','DE','Hochstadt an der Aisch (Germany)',1,1,0),(21968,0,121924,'Hodmezovasarhely','Hungary','HU','Hodmezovasarhely (Hungary)',1,1,0),(21969,0,121925,'Hoedekenskerke','Netherlands','NL','Hoedekenskerke (Netherlands)',1,1,0),(21970,12132,121926,'Hofgeismar','Germany','DE','Hofgeismar (Germany)',1,1,0),(21971,0,121927,'Hofheim in Unterfranken','Germany','DE','Hofheim in Unterfranken (Germany)',1,1,0),(21972,12143,121928,'Hohenroda','Germany','DE','Hohenroda (Germany)',1,1,0),(21973,0,121929,'Hohenstadt','Germany','DE','Hohenstadt (Germany)',1,1,0),(21974,0,121930,'Hohentauern','Austria','AT','Hohentauern (Austria)',1,1,0),(21975,0,121931,'Hohenwarthe','Germany','DE','Hohenwarthe (Germany)',1,1,0),(21976,0,121932,'Hohenwestedt','Germany','DE','Hohenwestedt (Germany)',1,1,0),(21977,0,121933,'Hollersbach','Austria','AT','Hollersbach (Austria)',1,1,0),(21978,0,121934,'Holmrook','United Kingdom','UK','Holmrook (United Kingdom)',1,1,0),(21979,12199,121935,'Holton','United States of America','US','Holton (United States of America)',1,1,0),(21980,0,121936,'Holwerd','Netherlands','NL','Holwerd (Netherlands)',1,1,0),(21981,0,121937,'Holyoke','United States of America','US','Holyoke (United States of America)',1,1,0),(21982,0,121938,'Holzbach','Germany','DE','Holzbach (Germany)',1,1,0),(21983,0,121939,'Homewood','United States of America','US','Homewood (United States of America)',1,1,0),(21984,0,121940,'Homosassa Springs','United States of America','US','Homosassa Springs (United States of America)',1,1,0),(21985,12224,121941,'Hondo','United States of America','US','Hondo (United States of America)',1,1,0),(21986,12239,121942,'Honningsvag','Norway','NO','Honningsvag (Norway)',1,1,0),(21987,12245,121943,'Honolulu','United States of America','US','Honolulu (United States of America)',1,1,0),(21988,0,121944,'Honow','Germany','DE','Honow (Germany)',1,1,0),(21989,12251,121945,'Hoogeveen','Netherlands','NL','Hoogeveen (Netherlands)',1,1,0),(21990,0,121946,'Hoor','Sweden','SE','Hoor (Sweden)',1,1,0),(21991,12262,121947,'Hoover','United States of America','US','Hoover (United States of America)',1,1,0),(21992,0,121948,'Hopfgarten','Austria','AT','Hopfgarten (Austria)',1,1,0),(21993,12282,121949,'Horice na Sumave','Czech Republic','CZ','Horice na Sumave (Czech Republic)',1,1,0),(21994,0,121950,'Horni Alberice','Czech Republic','CZ','Horni Alberice (Czech Republic)',1,1,0),(21995,0,121951,'Horni Blatna','Czech Republic','CZ','Horni Blatna (Czech Republic)',1,1,0),(21996,0,121952,'Horni Rokytnice','Czech Republic','CZ','Horni Rokytnice (Czech Republic)',1,1,0),(21997,12312,121953,'Horstel','Germany','DE','Horstel (Germany)',1,1,0),(21998,0,121954,'Horta de Sant Joan','Spain','ES','Horta de Sant Joan (Spain)',1,1,0),(21999,0,121955,'Horton','Greece','GR','Horton (Greece)',1,1,0),(22000,0,121956,'Hot Springs','United States of America','US','Hot Springs (United States of America)',1,1,0),(22001,0,121957,'Houston','Canada','CA','Houston (Canada)',1,1,0),(22002,12357,121958,'Houten','Netherlands','NL','Houten (Netherlands)',1,1,0),(22003,0,121959,'Hoyos del Espino','Spain','ES','Hoyos del Espino (Spain)',1,1,0),(22004,0,121960,'Hrinova','Slovakia','SK','Hrinova (Slovakia)',1,1,0),(22005,12416,121961,'Hudiksvall','Sweden','SE','Hudiksvall (Sweden)',1,1,0),(22006,0,121962,'Huerta Grande','Argentina','AR','Huerta Grande (Argentina)',1,1,0),(22007,12431,121963,'Huetor Vega','Spain','ES','Huetor Vega (Spain)',1,1,0),(22008,0,121964,'Hulhumale Island','Maldives','MV','Hulhumale Island (Maldives)',1,1,0),(22009,0,121965,'Hull','United States of America','US','Hull (United States of America)',1,1,0),(22010,0,121966,'Hulme Walfield','United Kingdom','UK','Hulme Walfield (United Kingdom)',1,1,0),(22011,12465,121967,'Hummelstown','United States of America','US','Hummelstown (United States of America)',1,1,0),(22012,12466,121968,'Hundested','Denmark','DK','Hundested (Denmark)',1,1,0),(22013,0,121969,'Hungen','Germany','DE','Hungen (Germany)',1,1,0),(22014,0,121970,'Hungry Horse','United States of America','US','Hungry Horse (United States of America)',1,1,0),(22015,0,121971,'Huntingdon','United States of America','US','Huntingdon (United States of America)',1,1,0),(22016,12495,121972,'Huntsville','Canada','CA','Huntsville (Canada)',1,1,0),(22017,12515,121973,'Hutto','United States of America','US','Hutto (United States of America)',1,1,0),(22018,12527,121974,'Hvidovre','Denmark','DK','Hvidovre (Denmark)',1,1,0),(22019,0,121975,'Hwange National Park','Zimbabwe','ZW','Hwange National Park (Zimbabwe)',1,1,0),(22020,12530,121976,'Hyannis','United States of America','US','Hyannis (United States of America)',1,1,0),(22021,0,121977,'Hylletofta','Sweden','SE','Hylletofta (Sweden)',1,1,0),(22022,0,121978,'Ibadan','Nigeria','NG','Ibadan (Nigeria)',1,1,0),(22023,12552,121979,'Ibague','Colombia','CO','Ibague (Colombia)',1,1,0),(22024,0,121980,'Ibarrangelu','Spain','ES','Ibarrangelu (Spain)',1,1,0),(22025,0,121981,'Idaho Springs','United States of America','US','Idaho Springs (United States of America)',1,1,0),(22026,12583,121982,'Idro','Italy','IT','Idro (Italy)',1,1,0),(22027,0,121983,'Iesa','Italy','IT','Iesa (Italy)',1,1,0),(22028,0,121985,'Igel','Germany','DE','Igel (Germany)',1,1,0),(22029,0,121986,'Igollo de Camargo','Spain','ES','Igollo de Camargo (Spain)',1,1,0),(22030,12609,121987,'Ihringen','Germany','DE','Ihringen (Germany)',1,1,0),(22031,0,121988,'Ihtiman','Bulgaria','BG','Ihtiman (Bulgaria)',1,1,0),(22032,0,121989,'Ile de Re','France','FR','Ile de Re (France)',1,1,0),(22033,0,121990,'Ilha do Mel','Brazil','BR','Ilha do Mel (Brazil)',1,1,0),(22034,0,121991,'Ilha Marajo','Brazil','BR','Ilha Marajo (Brazil)',1,1,0),(22035,12636,121992,'Iliamna','United States of America','US','Iliamna (United States of America)',1,1,0),(22036,0,121993,'Ilyinskiy','Russia','RU','Ilyinskiy (Russia)',1,1,0),(22037,0,121994,'Imouzzer','Morocco','MA','Imouzzer (Morocco)',1,1,0),(22038,0,121995,'Impalila Island','Namibia','NA','Impalila Island (Namibia)',1,1,0),(22039,12679,121996,'Imperial','United States of America','US','Imperial (United States of America)',1,1,0),(22040,12692,121997,'Incheon','South Korea','KR','Incheon (South Korea)',1,1,0),(22041,0,121998,'Inchture','United Kingdom','UK','Inchture (United Kingdom)',1,1,0),(22042,12699,121999,'Independence','United States of America','US','Independence (United States of America)',1,1,0),(22043,0,122000,'Independence','United States of America','US','Independence (United States of America)',1,1,0),(22044,31148,122001,'Indian Head','United States of America','US','Indian Head (United States of America)',1,1,0),(22045,12714,122002,'Inez','United States of America','US','Inez (United States of America)',1,1,0),(22046,0,122003,'Ingleton','United Kingdom','UK','Ingleton (United Kingdom)',1,1,0),(22047,0,122004,'Innenheim','France','FR','Innenheim (France)',1,1,0),(22048,12742,122005,'Innerbraz','Austria','AT','Innerbraz (Austria)',1,1,0),(22049,0,122006,'Innhavet','Norway','NO','Innhavet (Norway)',1,1,0),(22050,0,122007,'Inowroclaw','Poland','PL','Inowroclaw (Poland)',1,1,0),(22051,13941,122008,'Khao Kho','Thailand','TH','Khao Kho (Thailand)',1,1,0),(22052,0,122009,'Insel Lettermore','Ireland','IE','Insel Lettermore (Ireland)',1,1,0),(22053,0,122010,'Insel Mabul','Malaysia','MY','Insel Mabul (Malaysia)',1,1,0),(22054,0,122011,'Insel Muhu','Estonia','EE','Insel Muhu (Estonia)',1,1,0),(22055,0,122012,'Insel Phra Thong','Thailand','TH','Insel Phra Thong (Thailand)',1,1,0),(22056,0,122013,'Insel Pico','Portugal','PT','Insel Pico (Portugal)',1,1,0),(22057,0,122014,'Insel Sibu','Malaysia','MY','Insel Sibu (Malaysia)',1,1,0),(22058,0,122015,'Insel Tavewa','Fiji Islands','FJ','Insel Tavewa (Fiji Islands)',1,1,0),(22059,0,122016,'Interlaken','United States of America','US','Interlaken (United States of America)',1,1,0),(22060,12757,122017,'Intervale','United States of America','US','Intervale (United States of America)',1,1,0),(22061,12761,122018,'Inuvik','Canada','CA','Inuvik (Canada)',1,1,0),(22062,12762,122019,'Inver Grove Heights','United States of America','US','Inver Grove Heights (United States of America)',1,1,0),(22063,0,122020,'Inverary','United Kingdom','UK','Inverary (United Kingdom)',1,1,0),(22064,12767,122021,'Inverell','Australia','AU','Inverell (Australia)',1,1,0),(22065,12772,122022,'Inverloch','Australia','AU','Inverloch (Australia)',1,1,0),(22066,0,122023,'Inverurie','United Kingdom','UK','Inverurie (United Kingdom)',1,1,0),(22067,0,122024,'Inyati','South Africa','ZA','Inyati (South Africa)',1,1,0),(22068,0,122025,'Inzersdorf','Austria','AT','Inzersdorf (Austria)',1,1,0),(22069,0,122026,'Iona','Canada','CA','Iona (Canada)',1,1,0),(22070,0,122027,'Ione','United States of America','US','Ione (United States of America)',1,1,0),(22071,0,122028,'Irinovac','Croatia','HR','Irinovac (Croatia)',1,1,0),(22072,0,122029,'Irmo','United States of America','US','Irmo (United States of America)',1,1,0),(22073,0,122030,'Irrel','Germany','DE','Irrel (Germany)',1,1,0),(22074,12832,122031,'Irvington','United States of America','US','Irvington (United States of America)',1,1,0),(22075,0,122032,'Isandlwana','South Africa','ZA','Isandlwana (South Africa)',1,1,0),(22076,12837,122033,'Ischgl','Austria','AT','Ischgl (Austria)',1,1,0),(22077,12840,122034,'Isenbuttel','Germany','DE','Isenbuttel (Germany)',1,1,0),(22078,12841,122035,'Iseo','Italy','IT','Iseo (Italy)',1,1,0),(22079,12846,122036,'Isfahan','Iran','IR','Isfahan (Iran)',1,1,0),(22080,31168,122037,'Isla Canela','Spain','ES','Isla Canela (Spain)',1,1,0),(22081,0,122038,'Isla Contadora','Panama','PA','Isla Contadora (Panama)',1,1,0),(22082,31169,122039,'Isla Cristina','Spain','ES','Isla Cristina (Spain)',1,1,0),(22083,0,122040,'Isla Mujeres','Mexico','MX','Isla Mujeres (Mexico)',1,1,0),(22084,12865,122041,'Islamabad','Pakistan','PK','Islamabad (Pakistan)',1,1,0),(22085,12870,122042,'Islantilla','Spain','ES','Islantilla (Spain)',1,1,0),(22086,0,122043,'Isle of Iona','United Kingdom','UK','Isle of Iona (United Kingdom)',1,1,0),(22087,0,122044,'Isle of Skye','United Kingdom','UK','Isle of Skye (United Kingdom)',1,1,0),(22088,0,122045,'Isle of Wight','United Kingdom','UK','Isle of Wight (United Kingdom)',1,1,0),(22089,12881,122046,'Isles-les-Villenoy','France','FR','Isles-les-Villenoy (France)',1,1,0),(22090,0,122047,'Isneauville','France','FR','Isneauville (France)',1,1,0),(22091,0,122048,'Isola del Giglio','Italy','IT','Isola del Giglio (Italy)',1,1,0),(22092,0,122049,'Isola di Marettimo','Italy','IT','Isola di Marettimo (Italy)',1,1,0),(22093,0,122050,'Isola di San Domino','Italy','IT','Isola di San Domino (Italy)',1,1,0),(22094,0,122051,'Isola Verde','Italy','IT','Isola Verde (Italy)',1,1,0),(22095,0,122052,'Isora','Spain','ES','Isora (Spain)',1,1,0),(22096,12897,122053,'Ispra','Italy','IT','Ispra (Italy)',1,1,0),(22097,12898,122054,'Issaquah','United States of America','US','Issaquah (United States of America)',1,1,0),(22098,0,122055,'Itabuna','Brazil','BR','Itabuna (Brazil)',1,1,0),(22099,12917,122056,'Itajai','Brazil','BR','Itajai (Brazil)',1,1,0),(22100,12923,122057,'Itapema','Brazil','BR','Itapema (Brazil)',1,1,0),(22101,12924,122058,'Itasca','United States of America','US','Itasca (United States of America)',1,1,0),(22102,12934,122059,'Itzehoe','Germany','DE','Itzehoe (Germany)',1,1,0),(22103,0,122060,'Ivanhoe','United States of America','US','Ivanhoe (United States of America)',1,1,0),(22104,0,122061,'Ivanjkovci','Slovenia','SI','Ivanjkovci (Slovenia)',1,1,0),(22105,0,122062,'Iwanowo','Russia','RU','Iwanowo (Russia)',1,1,0),(22106,0,122063,'Jablanac','Croatia','HR','Jablanac (Croatia)',1,1,0),(22107,0,122064,'Jablonna','Czech Republic','CZ','Jablonna (Czech Republic)',1,1,0),(22108,0,122065,'Jablonne nad Orlici','Czech Republic','CZ','Jablonne nad Orlici (Czech Republic)',1,1,0),(22109,0,122066,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(22110,0,122067,'Jade-Sehestedt','Germany','DE','Jade-Sehestedt (Germany)',1,1,0),(22111,12993,122068,'Jaguariaiva','Brazil','BR','Jaguariaiva (Brazil)',1,1,0),(22112,12998,122069,'Jakarta','Indonesia','ID','Jakarta (Indonesia)',1,1,0),(22113,0,122070,'Jakutsk','Russia','RU','Jakutsk (Russia)',1,1,0),(22114,13014,122071,'Jambi','Indonesia','ID','Jambi (Indonesia)',1,1,0),(22115,31134,122072,'Huizen','Netherlands','NL','Huizen (Netherlands)',1,1,0),(22116,12442,122073,'Huizhou','China','CN','Huizhou (China)',1,1,0),(22117,0,122074,'Huldenberg-Neerijse','Belgium','BE','Huldenberg-Neerijse (Belgium)',1,1,0),(22118,0,122075,'Hull','United Kingdom','UK','Hull (United Kingdom)',1,1,0),(22119,0,122076,'Hulsa','Germany','DE','Hulsa (Germany)',1,1,0),(22120,0,122077,'Hulst','Netherlands','NL','Hulst (Netherlands)',1,1,0),(22121,0,122078,'Hulun Buir','China','CN','Hulun Buir (China)',1,1,0),(22122,12458,122079,'Humboldt','United States of America','US','Humboldt (United States of America)',1,1,0),(22123,0,122080,'Hunfelden-Mensfelden','Germany','DE','Hunfelden-Mensfelden (Germany)',1,1,0),(22124,0,122081,'Hungerford','United Kingdom','UK','Hungerford (United Kingdom)',1,1,0),(22125,0,122082,'Hunstanton','United Kingdom','UK','Hunstanton (United Kingdom)',1,1,0),(22126,12485,122083,'Huntingburg','United States of America','US','Huntingburg (United States of America)',1,1,0),(22127,0,122084,'Huntington Park','United States of America','US','Huntington Park (United States of America)',1,1,0),(22128,0,122085,'Hunxe','Germany','DE','Hunxe (Germany)',1,1,0),(22129,12501,122086,'Hurricane','United States of America','US','Hurricane (United States of America)',1,1,0),(22130,0,122087,'Hurstbourne Tarrant','United Kingdom','UK','Hurstbourne Tarrant (United Kingdom)',1,1,0),(22131,0,122088,'Huttenheim','France','FR','Huttenheim (France)',1,1,0),(22132,0,122089,'Huttwilen','Switzerland','CH','Huttwilen (Switzerland)',1,1,0),(22133,12525,122090,'Hveragerdi','Iceland','IS','Hveragerdi (Iceland)',1,1,0),(22134,0,122091,'Hyde Park','United States of America','US','Hyde Park (United States of America)',1,1,0),(22135,0,122092,'Hydra Town','Greece','GR','Hydra Town (Greece)',1,1,0),(22136,0,122093,'Idaho Falls','United States of America','US','Idaho Falls (United States of America)',1,1,0),(22137,0,122094,'Ige','France','FR','Ige (France)',1,1,0),(22138,12594,122095,'Igea Marina','Italy','IT','Igea Marina (Italy)',1,1,0),(22139,12600,122096,'Ignacio','United States of America','US','Ignacio (United States of America)',1,1,0),(22140,0,122097,'Ihla do Mocambique','Mozambique','MZ','Ihla do Mocambique (Mozambique)',1,1,0),(22141,0,122098,'Ijen Nationalpark','Indonesia','ID','Ijen Nationalpark (Indonesia)',1,1,0),(22142,12613,122099,'IJmuiden','Netherlands','NL','IJmuiden (Netherlands)',1,1,0),(22143,0,122100,'Ikizdere','Turkey','TR','Ikizdere (Turkey)',1,1,0),(22144,0,122101,'Ile de Cavallo','France','FR','Ile de Cavallo (France)',1,1,0),(22145,0,122102,'Ile-aux-Coudres','Canada','CA','Ile-aux-Coudres (Canada)',1,1,0),(22146,31142,122103,'Ilha de Comandatuba','Brazil','BR','Ilha de Comandatuba (Brazil)',1,1,0),(22147,12654,122104,'Illueca','Spain','ES','Illueca (Spain)',1,1,0),(22148,0,122105,'Ilot Malais','Mauritius','MU','Ilot Malais (Mauritius)',1,1,0),(22149,0,122106,'Imabari','Japan','JP','Imabari (Japan)',1,1,0),(22150,0,122107,'Imperial','United States of America','US','Imperial (United States of America)',1,1,0),(22151,0,122109,'Inagawa','Japan','JP','Inagawa (Japan)',1,1,0),(22152,0,122110,'Independence','United States of America','US','Independence (United States of America)',1,1,0),(22153,12709,122111,'Induruwa','Sri Lanka','LK','Induruwa (Sri Lanka)',1,1,0),(22154,0,122112,'Ingbirchworth','United Kingdom','UK','Ingbirchworth (United Kingdom)',1,1,0),(22155,0,122113,'Ingelstad','Sweden','SE','Ingelstad (Sweden)',1,1,0),(22156,0,122114,'Ingenio','Spain','ES','Ingenio (Spain)',1,1,0),(22157,12719,122115,'Ingersoll','Canada','CA','Ingersoll (Canada)',1,1,0),(22158,12720,122116,'Ingleside','United States of America','US','Ingleside (United States of America)',1,1,0),(22159,12721,122117,'Inglewood','United States of America','US','Inglewood (United States of America)',1,1,0),(22160,0,122118,'Ingwiller','France','FR','Ingwiller (France)',1,1,0),(22161,12729,122119,'Inhambane','Mozambique','MZ','Inhambane (Mozambique)',1,1,0),(22162,0,122120,'Innamorata','Italy','IT','Innamorata (Italy)',1,1,0),(22163,0,122121,'Innichen','Italy','IT','Innichen (Italy)',1,1,0),(22164,12749,122122,'Innvik','Norway','NO','Innvik (Norway)',1,1,0),(22165,0,122123,'Insel Angistri','Greece','GR','Insel Angistri (Greece)',1,1,0),(22166,0,122124,'Insel Hainan','China','CN','Insel Hainan (China)',1,1,0),(22167,0,122125,'Insel Lipe','Thailand','TH','Insel Lipe (Thailand)',1,1,0),(22168,0,122126,'Insel Mak','Thailand','TH','Insel Mak (Thailand)',1,1,0),(22169,0,122127,'Insel Nusa Penida','Indonesia','ID','Insel Nusa Penida (Indonesia)',1,1,0),(22170,0,122128,'Insel Olchon','Russia','RU','Insel Olchon (Russia)',1,1,0),(22171,0,122129,'Insel Pellworm','Germany','DE','Insel Pellworm (Germany)',1,1,0),(22172,0,122130,'Insel Perhentian Besar','Malaysia','MY','Insel Perhentian Besar (Malaysia)',1,1,0),(22173,0,122131,'Insel Saaremaa','Estonia','EE','Insel Saaremaa (Estonia)',1,1,0),(22174,0,122132,'Insel Santo Stefano','Italy','IT','Insel Santo Stefano (Italy)',1,1,0),(22175,0,122133,'Insel Smola','Norway','NO','Insel Smola (Norway)',1,1,0),(22176,0,122134,'Instincion','Spain','ES','Instincion (Spain)',1,1,0),(22177,0,122135,'Intragna','Switzerland','CH','Intragna (Switzerland)',1,1,0),(22178,0,122136,'Intriago','Spain','ES','Intriago (Spain)',1,1,0),(22179,0,122137,'Introd','Italy','IT','Introd (Italy)',1,1,0),(22180,0,122138,'Invergarry','United Kingdom','UK','Invergarry (United Kingdom)',1,1,0),(22181,0,122139,'Inverkeithing','United Kingdom','UK','Inverkeithing (United Kingdom)',1,1,0),(22182,0,122140,'Inverness','United Kingdom','UK','Inverness (United Kingdom)',1,1,0),(22183,0,122141,'Inzing','Austria','AT','Inzing (Austria)',1,1,0),(22184,12787,122142,'Ionia','United States of America','US','Ionia (United States of America)',1,1,0),(22185,12794,122143,'Iphofen','Germany','DE','Iphofen (Germany)',1,1,0),(22186,0,122144,'Ireby','United Kingdom','UK','Ireby (United Kingdom)',1,1,0),(22187,0,122145,'Iron River','United States of America','US','Iron River (United States of America)',1,1,0),(22188,12820,122146,'Irondale','United States of America','US','Irondale (United States of America)',1,1,0),(22189,12821,122147,'Ironton','United States of America','US','Ironton (United States of America)',1,1,0),(22190,12825,122148,'Irun','Spain','ES','Irun (Spain)',1,1,0),(22191,12828,122149,'Irvine','United States of America','US','Irvine (United States of America)',1,1,0),(22192,12833,122150,'Irwin','United States of America','US','Irwin (United States of America)',1,1,0),(22193,0,122151,'Isca Marina','Italy','IT','Isca Marina (Italy)',1,1,0),(22194,31164,122152,'Ischia','Italy','IT','Ischia (Italy)',1,1,0),(22195,12839,122153,'Iseltwald','Switzerland','CH','Iseltwald (Switzerland)',1,1,0),(22196,12850,122154,'Ishoj','Denmark','DK','Ishoj (Denmark)',1,1,0),(22197,0,122155,'Isla Blanca','Mexico','MX','Isla Blanca (Mexico)',1,1,0),(22198,0,122156,'Isla Jechica','Chile','CL','Isla Jechica (Chile)',1,1,0),(22199,0,122157,'Isla Tabarca','Spain','ES','Isla Tabarca (Spain)',1,1,0),(22200,31174,122158,'Island Falls','United States of America','US','Island Falls (United States of America)',1,1,0),(22201,31177,122159,'Island Park','United States of America','US','Island Park (United States of America)',1,1,0),(22202,12885,122160,'Ismailia','Egypt','EG','Ismailia (Egypt)',1,1,0),(22203,12901,122161,'Issoire','France','FR','Issoire (France)',1,1,0),(22204,12909,122162,'Istres','France','FR','Istres (France)',1,1,0),(22205,0,122163,'Itegem','Belgium','BE','Itegem (Belgium)',1,1,0),(22206,0,122164,'Itteville','France','FR','Itteville (France)',1,1,0),(22207,0,122165,'Ivanhoe','Australia','AU','Ivanhoe (Australia)',1,1,0),(22208,12941,122166,'Ivoryton','United States of America','US','Ivoryton (United States of America)',1,1,0),(22209,12948,122167,'Ixia','Greece','GR','Ixia (Greece)',1,1,0),(22210,12965,122168,'Izumiotsu','Japan','JP','Izumiotsu (Japan)',1,1,0),(22211,12968,122169,'Izumo','Japan','JP','Izumo (Japan)',1,1,0),(22212,0,122170,'Jablonec nad Jizerou','Czech Republic','CZ','Jablonec nad Jizerou (Czech Republic)',1,1,0),(22213,12974,122171,'Jablonec nad Nisou','Czech Republic','CZ','Jablonec nad Nisou (Czech Republic)',1,1,0),(22214,0,122172,'J?gerspris','Denmark','DK','J?gerspris (Denmark)',1,1,0),(22215,12992,122173,'Jagersrust','South Africa','ZA','Jagersrust (South Africa)',1,1,0),(22216,0,122174,'Jahorina','Bosnia and Herzegowina','BA','Jahorina (Bosnia and Herzegowina)',1,1,0),(22217,0,122176,'Jakisnica','Croatia','HR','Jakisnica (Croatia)',1,1,0),(22218,0,122178,'Jamestown','United States of America','US','Jamestown (United States of America)',1,1,0),(22219,0,122179,'Janjangbureh','Gambia','GM','Janjangbureh (Gambia)',1,1,0),(22220,13032,122180,'Jarabacoa','Dominican Republic','DO','Jarabacoa (Dominican Republic)',1,1,0),(22221,0,122181,'Jarmen','Germany','DE','Jarmen (Germany)',1,1,0),(22222,0,122182,'Jaszapati','Hungary','HU','Jaszapati (Hungary)',1,1,0),(22223,13051,122183,'Jausiers','France','FR','Jausiers (France)',1,1,0),(22224,13057,122184,'Javier','Spain','ES','Javier (Spain)',1,1,0),(22225,0,122185,'Jawor','Poland','PL','Jawor (Poland)',1,1,0),(22226,13063,122186,'Jecheon','South Korea','KR','Jecheon (South Korea)',1,1,0),(22227,13067,122187,'Jeddah','Saudi Arabia','SA','Jeddah (Saudi Arabia)',1,1,0),(22228,0,122188,'Jefferson','United States of America','US','Jefferson (United States of America)',1,1,0),(22229,0,122189,'Jenbach','Austria','AT','Jenbach (Austria)',1,1,0),(22230,13088,122190,'Jensen Beach','United States of America','US','Jensen Beach (United States of America)',1,1,0),(22231,13090,122191,'Jerantut','Malaysia','MY','Jerantut (Malaysia)',1,1,0),(22232,13093,122192,'Jerica','Spain','ES','Jerica (Spain)',1,1,0),(22233,13098,122193,'Jerome','United States of America','US','Jerome (United States of America)',1,1,0),(22234,0,122194,'Jersey','United Kingdom','UK','Jersey (United Kingdom)',1,1,0),(22235,13101,122195,'Jerseyville','United States of America','US','Jerseyville (United States of America)',1,1,0),(22236,0,122196,'Jessen (Elster)','Germany','DE','Jessen (Elster) (Germany)',1,1,0),(22237,0,122197,'Jessern','Germany','DE','Jessern (Germany)',1,1,0),(22238,0,122198,'Jetzendorf','Germany','DE','Jetzendorf (Germany)',1,1,0),(22239,0,122200,'Jianping','China','CN','Jianping (China)',1,1,0),(22240,13132,122201,'Jiantang','China','CN','Jiantang (China)',1,1,0),(22241,0,122202,'Jiexiu','China','CN','Jiexiu (China)',1,1,0),(22242,13145,122203,'Jilin','China','CN','Jilin (China)',1,1,0),(22243,0,122204,'Jimena de la Frontera','Spain','ES','Jimena de la Frontera (Spain)',1,1,0),(22244,13156,122205,'Jinghong','China','CN','Jinghong (China)',1,1,0),(22245,13163,122206,'Jinjiang','China','CN','Jinjiang (China)',1,1,0),(22246,13181,122207,'Joao Pessoa','Brazil','BR','Joao Pessoa (Brazil)',1,1,0),(22247,0,122208,'Johnson Creek','United States of America','US','Johnson Creek (United States of America)',1,1,0),(22248,13197,122209,'Johnston','United States of America','US','Johnston (United States of America)',1,1,0),(22249,13206,122210,'Jokkmokk','Sweden','SE','Jokkmokk (Sweden)',1,1,0),(22250,0,122211,'Jomtien','Thailand','TH','Jomtien (Thailand)',1,1,0),(22251,13217,122212,'Jonesborough','United States of America','US','Jonesborough (United States of America)',1,1,0),(22252,13221,122213,'Jonquiere','Canada','CA','Jonquiere (Canada)',1,1,0),(22253,13225,122214,'Joplin','United States of America','US','Joplin (United States of America)',1,1,0),(22254,0,122216,'Jork','Germany','DE','Jork (Germany)',1,1,0),(22255,0,122217,'Joschkar-Ola','Russia','RU','Joschkar-Ola (Russia)',1,1,0),(22256,0,122218,'Jose Ignacio','Uruguay','UY','Jose Ignacio (Uruguay)',1,1,0),(22257,0,122219,'Jubek','Germany','DE','Jubek (Germany)',1,1,0),(22258,0,122220,'Jubrique','Spain','ES','Jubrique (Spain)',1,1,0),(22259,13274,122221,'Julesburg','United States of America','US','Julesburg (United States of America)',1,1,0),(22260,0,122222,'Jumilla','Spain','ES','Jumilla (Spain)',1,1,0),(22261,0,122223,'Juodkrante','Lithuania','LT','Juodkrante (Lithuania)',1,1,0),(22262,13299,122224,'Jurgenstorf','Germany','DE','Jurgenstorf (Germany)',1,1,0),(22263,13300,122225,'Jurien Bay','Australia','AU','Jurien Bay (Australia)',1,1,0),(22264,0,122226,'Juschno-Sachalinsk','Russia','RU','Juschno-Sachalinsk (Russia)',1,1,0),(22265,0,122227,'Juterbog','Germany','DE','Juterbog (Germany)',1,1,0),(22266,13303,122228,'Juvignac','France','FR','Juvignac (France)',1,1,0),(22267,0,122229,'Kahta','Turkey','TR','Kahta (Turkey)',1,1,0),(22268,13357,122230,'Kaisersbach','Germany','DE','Kaisersbach (Germany)',1,1,0),(22269,13364,122231,'Kajang','Malaysia','MY','Kajang (Malaysia)',1,1,0),(22270,0,122232,'Kaka Point','New Zealand','NZ','Kaka Point (New Zealand)',1,1,0),(22271,0,122233,'Kakaoland','Namibia','NA','Kakaoland (Namibia)',1,1,0),(22272,0,122234,'Kakegawa','Japan','JP','Kakegawa (Japan)',1,1,0),(22273,0,122235,'Kakovatos','Greece','GR','Kakovatos (Greece)',1,1,0),(22274,0,122236,'Kalafati','Greece','GR','Kalafati (Greece)',1,1,0),(22275,0,122237,'Kalahari','Namibia','NA','Kalahari (Namibia)',1,1,0),(22276,13380,122238,'Kalamaki','Greece','GR','Kalamaki (Greece)',1,1,0),(22277,13386,122239,'Kalamos','Greece','GR','Kalamos (Greece)',1,1,0),(22278,0,122240,'Kalberbronn','Germany','DE','Kalberbronn (Germany)',1,1,0),(22279,0,122241,'Kalianda','Indonesia','ID','Kalianda (Indonesia)',1,1,0),(22280,0,122242,'Kalimbeza','Namibia','NA','Kalimbeza (Namibia)',1,1,0),(22281,0,122243,'Kalivia Pezoulas','Greece','GR','Kalivia Pezoulas (Greece)',1,1,0),(22282,0,122244,'Kaltenbach','Austria','AT','Kaltenbach (Austria)',1,1,0),(22283,0,122245,'Kaluga','Russia','RU','Kaluga (Russia)',1,1,0),(22284,13444,122246,'Kamari','Greece','GR','Kamari (Greece)',1,1,0),(22285,0,122247,'Kamensk-Shakhtinsky','Russia','RU','Kamensk-Shakhtinsky (Russia)',1,1,0),(22286,13458,122248,'Kameyama','Japan','JP','Kameyama (Japan)',1,1,0),(22287,0,122249,'Kampen','Germany','DE','Kampen (Germany)',1,1,0),(22288,0,122250,'Kampi','Greece','GR','Kampi (Greece)',1,1,0),(22289,0,122251,'Kampung Laut Kinarut','Malaysia','MY','Kampung Laut Kinarut (Malaysia)',1,1,0),(22290,13485,122252,'Kanchanaburi','Thailand','TH','Kanchanaburi (Thailand)',1,1,0),(22291,13493,122254,'Kandy','Sri Lanka','LK','Kandy (Sri Lanka)',1,1,0),(22292,13511,122255,'Kankakee','United States of America','US','Kankakee (United States of America)',1,1,0),(22293,0,122257,'Kanoni','Greece','GR','Kanoni (Greece)',1,1,0),(22294,13522,122258,'Kaohsiung','Taiwan','TW','Kaohsiung (Taiwan)',1,1,0),(22295,13523,122259,'Kapaa','United States of America','US','Kapaa (United States of America)',1,1,0),(22296,0,122260,'Kapama Game Reserve','South Africa','ZA','Kapama Game Reserve (South Africa)',1,1,0),(22297,0,122261,'Kapfenstein','Austria','AT','Kapfenstein (Austria)',1,1,0),(22298,13538,122262,'Kappel','Switzerland','CH','Kappel (Switzerland)',1,1,0),(22299,13541,122263,'Kaprun','Austria','AT','Kaprun (Austria)',1,1,0),(22300,0,122264,'Kapsaliana','Greece','GR','Kapsaliana (Greece)',1,1,0),(22301,13544,122265,'Karachi','Pakistan','PK','Karachi (Pakistan)',1,1,0),(22302,0,122266,'Karasburg','Namibia','NA','Karasburg (Namibia)',1,1,0),(22303,13559,122267,'Karben','Germany','DE','Karben (Germany)',1,1,0),(22304,13560,122268,'Kardamena','Greece','GR','Kardamena (Greece)',1,1,0),(22305,13571,122269,'Kariba','Zimbabwe','ZW','Kariba (Zimbabwe)',1,1,0),(22306,0,122270,'Karitsa','Greece','GR','Karitsa (Greece)',1,1,0),(22307,13576,122271,'Kariya','Japan','JP','Kariya (Japan)',1,1,0),(22308,0,122272,'Karlsfeld','Germany','DE','Karlsfeld (Germany)',1,1,0),(22309,13584,122273,'Karlshamn','Sweden','SE','Karlshamn (Sweden)',1,1,0),(22310,13591,122274,'Karlstejn','Czech Republic','CZ','Karlstejn (Czech Republic)',1,1,0),(22311,0,122276,'Karongwe Game Reserve','South Africa','ZA','Karongwe Game Reserve (South Africa)',1,1,0),(22312,13599,122277,'Karow','Germany','DE','Karow (Germany)',1,1,0),(22313,13614,122278,'Karuizawa','Japan','JP','Karuizawa (Japan)',1,1,0),(22314,0,122279,'Karvag','Norway','NO','Karvag (Norway)',1,1,0),(22315,0,122280,'Kasmu','Estonia','EE','Kasmu (Estonia)',1,1,0),(22316,13649,122281,'Kassiopi','Greece','GR','Kassiopi (Greece)',1,1,0),(22317,0,122282,'Kastel Kamelovac','Croatia','HR','Kastel Kamelovac (Croatia)',1,1,0),(22318,0,122283,'Kasten bei Boheimkirchen','Austria','AT','Kasten bei Boheimkirchen (Austria)',1,1,0),(22319,13660,122284,'Kastraki','Greece','GR','Kastraki (Greece)',1,1,0),(22320,13676,122285,'Katima Mulilo','Namibia','NA','Katima Mulilo (Namibia)',1,1,0),(22321,13678,122286,'Kato Achaia','Greece','GR','Kato Achaia (Greece)',1,1,0),(22322,0,122287,'Kato Alissos','Greece','GR','Kato Alissos (Greece)',1,1,0),(22323,0,122288,'Kato Galatas','Greece','GR','Kato Galatas (Greece)',1,1,0),(22324,13685,122289,'Katschberg','Austria','AT','Katschberg (Austria)',1,1,0),(22325,0,122290,'Kauns','Austria','AT','Kauns (Austria)',1,1,0),(22326,13719,122291,'Kautokeino','Norway','NO','Kautokeino (Norway)',1,1,0),(22327,0,122292,'Kawartha Lakes','Canada','CA','Kawartha Lakes (Canada)',1,1,0),(22328,0,122293,'Kawau Island','New Zealand','NZ','Kawau Island (New Zealand)',1,1,0),(22329,12805,122294,'Iquitos','Peru','PE','Iquitos (Peru)',1,1,0),(22330,12811,122295,'Irdning','Austria','AT','Irdning (Austria)',1,1,0),(22331,0,122296,'Iriri','Brazil','BR','Iriri (Brazil)',1,1,0),(22332,0,122297,'Irkutsk','Russia','RU','Irkutsk (Russia)',1,1,0),(22333,0,122298,'Irvine','United Kingdom','UK','Irvine (United Kingdom)',1,1,0),(22334,0,122299,'Irvine','United States of America','US','Irvine (United States of America)',1,1,0),(22335,0,122300,'Ischitella','Italy','IT','Ischitella (Italy)',1,1,0),(22336,12845,122301,'Isernia','Italy','IT','Isernia (Italy)',1,1,0),(22337,0,122302,'Isfjorden','Norway','NO','Isfjorden (Norway)',1,1,0),(22338,0,122303,'Isla Cozumel','Mexico','MX','Isla Cozumel (Mexico)',1,1,0),(22339,0,122304,'Isla del Rosario','Colombia','CO','Isla del Rosario (Colombia)',1,1,0),(22340,0,122305,'Isla Palma','Colombia','CO','Isla Palma (Colombia)',1,1,0),(22341,12869,122306,'Islandia','United States of America','US','Islandia (United States of America)',1,1,0),(22342,0,122307,'Israel','Israel','IL','Israel (Israel)',1,1,0),(22343,12921,122308,'Itanhaem','Brazil','BR','Itanhaem (Brazil)',1,1,0),(22344,0,122309,'Ithaka','Greece','GR','Ithaka (Greece)',1,1,0),(22345,0,122310,'Itoman','Japan','JP','Itoman (Japan)',1,1,0),(22346,0,122311,'Itxassou','France','FR','Itxassou (France)',1,1,0),(22347,0,122312,'Itylo','Greece','GR','Itylo (Greece)',1,1,0),(22348,12936,122313,'Ivalo','Finland','FI','Ivalo (Finland)',1,1,0),(22349,0,122314,'Ixworth','United Kingdom','UK','Ixworth (United Kingdom)',1,1,0),(22350,0,122315,'Izborsk','Russia','RU','Izborsk (Russia)',1,1,0),(22351,0,122316,'Iznalloz','Spain','ES','Iznalloz (Spain)',1,1,0),(22352,0,122317,'Jachenau','Germany','DE','Jachenau (Germany)',1,1,0),(22353,0,122318,'Jackman','United States of America','US','Jackman (United States of America)',1,1,0),(22354,12980,122319,'Jacksboro','United States of America','US','Jacksboro (United States of America)',1,1,0),(22355,0,122320,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(22356,0,122321,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(22357,0,122322,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(22358,0,122323,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(22359,12987,122324,'Jaen','Spain','ES','Jaen (Spain)',1,1,0),(22360,12991,122325,'Jagel','Germany','DE','Jagel (Germany)',1,1,0),(22361,13028,122330,'Jane','United States of America','US','Jane (United States of America)',1,1,0),(22362,0,122331,'Jarandilla de la Vera','Spain','ES','Jarandilla de la Vera (Spain)',1,1,0),(22363,0,122332,'Jarash','Jordan','JO','Jarash (Jordan)',1,1,0),(22364,0,122333,'Jardim do Mar','Portugal','PT','Jardim do Mar (Portugal)',1,1,0),(22365,0,122334,'Jaroslawiec','Poland','PL','Jaroslawiec (Poland)',1,1,0),(22366,0,122335,'Jaroslawl','Russia','RU','Jaroslawl (Russia)',1,1,0),(22367,0,122336,'Jasper','United States of America','US','Jasper (United States of America)',1,1,0),(22368,13058,122337,'Jayapura','Indonesia','ID','Jayapura (Indonesia)',1,1,0),(22369,0,122338,'Jebel Akhdar','Oman','OM','Jebel Akhdar (Oman)',1,1,0),(22370,0,122339,'Jebel Dhanna','United Arab Emirates','AE','Jebel Dhanna (United Arab Emirates)',1,1,0),(22371,0,122340,'Jefferson City','United States of America','US','Jefferson City (United States of America)',1,1,0),(22372,0,122341,'Jeffersonville','United States of America','US','Jeffersonville (United States of America)',1,1,0),(22373,13077,122342,'Jelsa','Croatia','HR','Jelsa (Croatia)',1,1,0),(22374,13081,122343,'Jenaz','Switzerland','CH','Jenaz (Switzerland)',1,1,0),(22375,13082,122344,'Jenks','United States of America','US','Jenks (United States of America)',1,1,0),(22376,13119,122345,'Jewett','United States of America','US','Jewett (United States of America)',1,1,0),(22377,0,122346,'Jianshui','China','CN','Jianshui (China)',1,1,0),(22378,13138,122347,'Jiashan','China','CN','Jiashan (China)',1,1,0),(22379,0,122348,'Jiloviste','Czech Republic','CZ','Jiloviste (Czech Republic)',1,1,0),(22380,13151,122349,'Jincheng','China','CN','Jincheng (China)',1,1,0),(22381,0,122350,'Jingjiang','China','CN','Jingjiang (China)',1,1,0),(22382,13165,122351,'Jinotega','Nicaragua','NI','Jinotega (Nicaragua)',1,1,0),(22383,0,122352,'Jishou','China','CN','Jishou (China)',1,1,0),(22384,0,122353,'Jixian','China','CN','Jixian (China)',1,1,0),(22385,13182,122354,'Jochberg','Austria','AT','Jochberg (Austria)',1,1,0),(22386,13186,122355,'Joensuu','Finland','FI','Joensuu (Finland)',1,1,0),(22387,13187,122356,'Joetsu','Japan','JP','Joetsu (Japan)',1,1,0),(22388,0,122357,'Johnson City','United States of America','US','Johnson City (United States of America)',1,1,0),(22389,13199,122358,'Johnstown','United States of America','US','Johnstown (United States of America)',1,1,0),(22390,13201,122359,'Joigny','France','FR','Joigny (France)',1,1,0),(22391,13214,122360,'Jonas','United States of America','US','Jonas (United States of America)',1,1,0),(22392,0,122361,'Jongunjoki','Finland','FI','Jongunjoki (Finland)',1,1,0),(22393,13223,122362,'Jonzac','France','FR','Jonzac (France)',1,1,0),(22394,13231,122363,'Jordan','Canada','CA','Jordan (Canada)',1,1,0),(22395,0,122364,'Jouey','France','FR','Jouey (France)',1,1,0),(22396,13255,122365,'Juan Dolio','Dominican Republic','DO','Juan Dolio (Dominican Republic)',1,1,0),(22397,0,122366,'Juchen','Germany','DE','Juchen (Germany)',1,1,0),(22398,13266,122367,'Juffair','Bahrain','BH','Juffair (Bahrain)',1,1,0),(22399,13271,122368,'Juiz de Fora','Brazil','BR','Juiz de Fora (Brazil)',1,1,0),(22400,13281,122369,'Julienas','France','FR','Julienas (France)',1,1,0),(22401,13293,122371,'Jungholz','Austria','AT','Jungholz (Austria)',1,1,0),(22402,0,122372,'Junin','Argentina','AR','Junin (Argentina)',1,1,0),(22403,13295,122373,'Juno Beach','United States of America','US','Juno Beach (United States of America)',1,1,0),(22404,0,122374,'Jurbarkas','Lithuania','LT','Jurbarkas (Lithuania)',1,1,0),(22405,0,122375,'Juzcar','Spain','ES','Juzcar (Spain)',1,1,0),(22406,0,122376,'Ka\'anapali','United States of America','US','Ka\'anapali (United States of America)',1,1,0),(22407,13314,122377,'Kaarst','Germany','DE','Kaarst (Germany)',1,1,0),(22408,0,122378,'Kabelvag','Norway','NO','Kabelvag (Norway)',1,1,0),(22409,0,122379,'Kabul','Afghanistan','AF','Kabul (Afghanistan)',1,1,0),(22410,13327,122380,'Kadoka','United States of America','US','Kadoka (United States of America)',1,1,0),(22411,13337,122381,'Kahana','United States of America','US','Kahana (United States of America)',1,1,0),(22412,13354,122382,'Kaiping','China','CN','Kaiping (China)',1,1,0),(22413,13355,122383,'Kairouan','Tunisia','TN','Kairouan (Tunisia)',1,1,0),(22414,0,122384,'Kaisersesch','Germany','DE','Kaisersesch (Germany)',1,1,0),(22415,0,122385,'Kakadu National Park','Australia','AU','Kakadu National Park (Australia)',1,1,0),(22416,13382,122386,'Kalamata','Greece','GR','Kalamata (Greece)',1,1,0),(22417,0,122387,'Kali Limenes','Greece','GR','Kali Limenes (Greece)',1,1,0),(22418,0,122389,'Kalikratia','Greece','GR','Kalikratia (Greece)',1,1,0),(22419,0,122390,'Kallepia','Cyprus','CY','Kallepia (Cyprus)',1,1,0),(22420,0,122391,'Kallinchen','Germany','DE','Kallinchen (Germany)',1,1,0),(22421,0,122392,'Kallmunz','Germany','DE','Kallmunz (Germany)',1,1,0),(22422,13414,122393,'Kalmar','Sweden','SE','Kalmar (Sweden)',1,1,0),(22423,13418,122394,'Kalona','United States of America','US','Kalona (United States of America)',1,1,0),(22424,13419,122395,'Kalorama','Australia','AU','Kalorama (Australia)',1,1,0),(22425,0,122396,'Kaltenberg','Austria','AT','Kaltenberg (Austria)',1,1,0),(22426,0,122397,'Kaltenborn','Germany','DE','Kaltenborn (Germany)',1,1,0),(22427,0,122398,'Kaltenengers','Germany','DE','Kaltenengers (Germany)',1,1,0),(22428,13426,122399,'Kaltenkirchen','Germany','DE','Kaltenkirchen (Germany)',1,1,0),(22429,0,122400,'Kaluza','Slovakia','SK','Kaluza (Slovakia)',1,1,0),(22430,0,122401,'Kamala Beach','Thailand','TH','Kamala Beach (Thailand)',1,1,0),(22431,0,122402,'Kamarina','Italy','IT','Kamarina (Italy)',1,1,0),(22432,0,122403,'Kambia','Greece','GR','Kambia (Greece)',1,1,0),(22433,0,122404,'Kamenolomni','Russia','RU','Kamenolomni (Russia)',1,1,0),(22434,0,122405,'Kaminia','Greece','GR','Kaminia (Greece)',1,1,0),(22435,31160,122407,'International Falls','United States of America','US','International Falls (United States of America)',1,1,0),(22436,0,122408,'Invergordon','United Kingdom','UK','Invergordon (United Kingdom)',1,1,0),(22437,12778,122409,'Inwood','United States of America','US','Inwood (United States of America)',1,1,0),(22438,12781,122410,'Inzell','Germany','DE','Inzell (Germany)',1,1,0),(22439,0,122411,'Irrhausen','Germany','DE','Irrhausen (Germany)',1,1,0),(22440,12824,122412,'Irschenberg','Germany','DE','Irschenberg (Germany)',1,1,0),(22441,0,122413,'Irvington','United States of America','US','Irvington (United States of America)',1,1,0),(22442,0,122414,'Isaba','Spain','ES','Isaba (Spain)',1,1,0),(22443,0,122415,'Isenthal','Switzerland','CH','Isenthal (Switzerland)',1,1,0),(22444,12844,122416,'Isernhagen','Germany','DE','Isernhagen (Germany)',1,1,0),(22445,0,122417,'Isla Isabela','Ecuador','EC','Isla Isabela (Ecuador)',1,1,0),(22446,0,122418,'Island Park','United States of America','US','Island Park (United States of America)',1,1,0),(22447,12873,122419,'Islas Secas','Panama','PA','Islas Secas (Panama)',1,1,0),(22448,0,122420,'Isola Capo Rizzuto','Italy','IT','Isola Capo Rizzuto (Italy)',1,1,0),(22449,12895,122421,'Isparta','Turkey','TR','Isparta (Turkey)',1,1,0),(22450,12899,122422,'Isselburg','Germany','DE','Isselburg (Germany)',1,1,0),(22451,12902,122423,'Issoudun','France','FR','Issoudun (France)',1,1,0),(22452,12912,122424,'Itabira','Brazil','BR','Itabira (Brazil)',1,1,0),(22453,0,122425,'Itanhandu','Brazil','BR','Itanhandu (Brazil)',1,1,0),(22454,0,122426,'Itapemirim','Brazil','BR','Itapemirim (Brazil)',1,1,0),(22455,12925,122427,'Itea','Greece','GR','Itea (Greece)',1,1,0),(22456,0,122428,'Ito','Japan','JP','Ito (Japan)',1,1,0),(22457,0,122429,'Itter','Austria','AT','Itter (Austria)',1,1,0),(22458,0,122430,'Itterswiller','France','FR','Itterswiller (France)',1,1,0),(22459,31193,122431,'Itu','Brazil','BR','Itu (Brazil)',1,1,0),(22460,12932,122432,'Itupeva','Brazil','BR','Itupeva (Brazil)',1,1,0),(22461,0,122433,'Ivan Dolac','Croatia','HR','Ivan Dolac (Croatia)',1,1,0),(22462,12960,122434,'Iznajar','Spain','ES','Iznajar (Spain)',1,1,0),(22463,12963,122435,'Izola','Slovenia','SI','Izola (Slovenia)',1,1,0),(22464,12973,122436,'Jabiru','Australia','AU','Jabiru (Australia)',1,1,0),(22465,0,122437,'Jaca','Spain','ES','Jaca (Spain)',1,1,0),(22466,0,122438,'Jacks Beach','Saint Lucia','LC','Jacks Beach (Saint Lucia)',1,1,0),(22467,0,122439,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(22468,0,122440,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(22469,0,122441,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(22470,12994,122442,'Jaguariuna','Brazil','BR','Jaguariuna (Brazil)',1,1,0),(22471,13004,122443,'Jalapa','Mexico','MX','Jalapa (Mexico)',1,1,0),(22472,0,122444,'Jaligny-sur-Besbre','France','FR','Jaligny-sur-Besbre (France)',1,1,0),(22473,13015,122445,'Jambiani','Tanzania','TZ','Jambiani (Tanzania)',1,1,0),(22474,13016,122446,'Jambol','Bulgaria','BG','Jambol (Bulgaria)',1,1,0),(22475,13017,122447,'Jamesburg','United States of America','US','Jamesburg (United States of America)',1,1,0),(22476,0,122448,'Jamestown','United States of America','US','Jamestown (United States of America)',1,1,0),(22477,0,122449,'Jan Thiel Bay','Curaçao','CW','Jan Thiel Bay (Curaçao)',1,1,0),(22478,0,122450,'Jaraiz de la Vera','Spain','ES','Jaraiz de la Vera (Spain)',1,1,0),(22479,0,122451,'Jard sur Mer','France','FR','Jard sur Mer (France)',1,1,0),(22480,0,122452,'Jarnac-Champagne','France','FR','Jarnac-Champagne (France)',1,1,0),(22481,0,122453,'Jaromer','Czech Republic','CZ','Jaromer (Czech Republic)',1,1,0),(22482,0,122454,'Jarpen','Sweden','SE','Jarpen (Sweden)',1,1,0),(22483,0,122455,'Jastrzebie-Zdroj','Poland','PL','Jastrzebie-Zdroj (Poland)',1,1,0),(22484,0,122456,'Jaworze','Poland','PL','Jaworze (Poland)',1,1,0),(22485,0,122457,'Jebel Sifah Beach','Oman','OM','Jebel Sifah Beach (Oman)',1,1,0),(22486,0,122458,'Jefferson City','United States of America','US','Jefferson City (United States of America)',1,1,0),(22487,0,122459,'Jektvik','Norway','NO','Jektvik (Norway)',1,1,0),(22488,0,122460,'Jemgum','Germany','DE','Jemgum (Germany)',1,1,0),(22489,13089,122461,'Jeonju','South Korea','KR','Jeonju (South Korea)',1,1,0),(22490,0,122462,'Jepara','Indonesia','ID','Jepara (Indonesia)',1,1,0),(22491,13094,122463,'Jericho','United States of America','US','Jericho (United States of America)',1,1,0),(22492,13095,122464,'Jericho','Israel','IL','Jericho (Israel)',1,1,0),(22493,13096,122465,'Jericoacoara','Brazil','BR','Jericoacoara (Brazil)',1,1,0),(22494,0,122466,'Jerzmanowice','Poland','PL','Jerzmanowice (Poland)',1,1,0),(22495,0,122467,'Jesmond','Canada','CA','Jesmond (Canada)',1,1,0),(22496,0,122468,'Jesolo','Italy','IT','Jesolo (Italy)',1,1,0),(22497,13113,122469,'Jessup','United States of America','US','Jessup (United States of America)',1,1,0),(22498,13126,122470,'Ji\'an','China','CN','Ji\'an (China)',1,1,0),(22499,13139,122471,'Jiaxing','China','CN','Jiaxing (China)',1,1,0),(22500,13150,122472,'Jinan','China','CN','Jinan (China)',1,1,0),(22501,0,122473,'Jindrichuv Hradek','Czech Republic','CZ','Jindrichuv Hradek (Czech Republic)',1,1,0),(22502,0,122474,'Jingshan','China','CN','Jingshan (China)',1,1,0),(22503,13167,122475,'Jinshan','Taiwan','TW','Jinshan (Taiwan)',1,1,0),(22504,13168,122476,'Jintan','China','CN','Jintan (China)',1,1,0),(22505,0,122477,'Joaquin','United States of America','US','Joaquin (United States of America)',1,1,0),(22506,0,122478,'Johannesberg','Germany','DE','Johannesberg (Germany)',1,1,0),(22507,0,122479,'Johanngeorgenstadt','Germany','DE','Johanngeorgenstadt (Germany)',1,1,0),(22508,13203,122480,'Joinville','Brazil','BR','Joinville (Brazil)',1,1,0),(22509,0,122481,'Jois','Austria','AT','Jois (Austria)',1,1,0),(22510,0,122482,'Jona SG','Switzerland','CH','Jona SG (Switzerland)',1,1,0),(22511,13218,122483,'Jonestown','United States of America','US','Jonestown (United States of America)',1,1,0),(22512,0,122484,'Jongensfontein','South Africa','ZA','Jongensfontein (South Africa)',1,1,0),(22513,0,122485,'Jonischken','Lithuania','LT','Jonischken (Lithuania)',1,1,0),(22514,13228,122486,'Jorba','Spain','ES','Jorba (Spain)',1,1,0),(22515,0,122487,'Josselin','France','FR','Josselin (France)',1,1,0),(22516,0,122488,'Joure','Netherlands','NL','Joure (Netherlands)',1,1,0),(22517,13249,122489,'Joutsa','Finland','FI','Joutsa (Finland)',1,1,0),(22518,0,122490,'Julbach','Austria','AT','Julbach (Austria)',1,1,0),(22519,0,122491,'Jumeirah Beach','United Arab Emirates','AE','Jumeirah Beach (United Arab Emirates)',1,1,0),(22520,0,122492,'Junas','France','FR','Junas (France)',1,1,0),(22521,13288,122493,'Jundiai','Brazil','BR','Jundiai (Brazil)',1,1,0),(22522,0,122494,'Jungholtz','France','FR','Jungholtz (France)',1,1,0),(22523,13298,122495,'Jurata','Poland','PL','Jurata (Poland)',1,1,0),(22524,13301,122496,'Jurmala','Latvia','LV','Jurmala (Latvia)',1,1,0),(22525,0,122497,'Jursici','Croatia','HR','Jursici (Croatia)',1,1,0),(22526,13313,122498,'Kaarina','Finland','FI','Kaarina (Finland)',1,1,0),(22527,13316,122499,'Kabale','Uganda','UG','Kabale (Uganda)',1,1,0),(22528,0,122500,'Kabalebo Naturreservat','Suriname','SR','Kabalebo Naturreservat (Suriname)',1,1,0),(22529,0,122501,'Kabelsketal','Germany','DE','Kabelsketal (Germany)',1,1,0),(22530,0,122502,'Kadriye','Turkey','TR','Kadriye (Turkey)',1,1,0),(22531,13330,122503,'Kadyny','Poland','PL','Kadyny (Poland)',1,1,0),(22532,0,122504,'Kagoshima','Japan','JP','Kagoshima (Japan)',1,1,0),(22533,0,122505,'Kahla','Germany','DE','Kahla (Germany)',1,1,0),(22534,0,122506,'Kahramanmaras','Turkey','TR','Kahramanmaras (Turkey)',1,1,0),(22535,13340,122507,'Kahuku','United States of America','US','Kahuku (United States of America)',1,1,0),(22536,13341,122508,'Kahului','United States of America','US','Kahului (United States of America)',1,1,0),(22537,13362,122509,'Kajaani','Finland','FI','Kajaani (Finland)',1,1,0),(22538,0,122510,'Kalarites','Greece','GR','Kalarites (Greece)',1,1,0),(22539,13405,122512,'Kalispell','United States of America','US','Kalispell (United States of America)',1,1,0),(22540,0,122513,'Kalithea','Greece','GR','Kalithea (Greece)',1,1,0),(22541,0,122514,'Kalives','Greece','GR','Kalives (Greece)',1,1,0),(22542,0,122515,'Kalna','Serbia','RS','Kalna (Serbia)',1,1,0),(22543,0,122516,'Kaltacker','Switzerland','CH','Kaltacker (Switzerland)',1,1,0),(22544,0,122517,'Kaltenbach TG','Switzerland','CH','Kaltenbach TG (Switzerland)',1,1,0),(22545,13429,122518,'Kalutara','Sri Lanka','LK','Kalutara (Sri Lanka)',1,1,0),(22546,0,122519,'Kalvag','Norway','NO','Kalvag (Norway)',1,1,0),(22547,0,122520,'Kalvi','Estonia','EE','Kalvi (Estonia)',1,1,0),(22548,0,122521,'Kankainen','Finland','FI','Kankainen (Finland)',1,1,0),(22549,0,122523,'Kantishna','United States of America','US','Kantishna (United States of America)',1,1,0),(22550,0,122524,'Kapovci','Croatia','HR','Kapovci (Croatia)',1,1,0),(22551,0,122526,'Karaburun','Turkey','TR','Karaburun (Turkey)',1,1,0),(22552,0,122527,'Karahayit','Turkey','TR','Karahayit (Turkey)',1,1,0),(22553,13557,122528,'Karatu','Tanzania','TZ','Karatu (Tanzania)',1,1,0),(22554,0,122529,'Karimabad','Pakistan','PK','Karimabad (Pakistan)',1,1,0),(22555,0,122530,'Karl','Austria','AT','Karl (Austria)',1,1,0),(22556,13600,122531,'Karpacz','Poland','PL','Karpacz (Poland)',1,1,0),(22557,13602,122532,'Karpenisi','Greece','GR','Karpenisi (Greece)',1,1,0),(22558,0,122533,'Karsdorf','Germany','DE','Karsdorf (Germany)',1,1,0),(22559,0,122534,'Karteros','Greece','GR','Karteros (Greece)',1,1,0),(22560,13626,122535,'Kasane','Botswana','BW','Kasane (Botswana)',1,1,0),(22561,13633,122536,'Kashihara','Japan','JP','Kashihara (Japan)',1,1,0),(22562,13653,122537,'Kastela','Croatia','HR','Kastela (Croatia)',1,1,0),(22563,0,122538,'Kastellorriso','Greece','GR','Kastellorriso (Greece)',1,1,0),(22564,13661,122539,'Kastri','Greece','GR','Kastri (Greece)',1,1,0),(22565,0,122540,'Kato Gouves','Greece','GR','Kato Gouves (Greece)',1,1,0),(22566,0,122541,'Kato Loutrakion','Greece','GR','Kato Loutrakion (Greece)',1,1,0),(22567,0,122542,'Kato Paphos','Cyprus','CY','Kato Paphos (Cyprus)',1,1,0),(22568,0,122543,'Kattavia','Greece','GR','Kattavia (Greece)',1,1,0),(22569,0,122544,'Katy Rybackie','Poland','PL','Katy Rybackie (Poland)',1,1,0),(22570,0,122545,'Katzenthal','France','FR','Katzenthal (France)',1,1,0),(22571,13735,122546,'Kayseri','Turkey','TR','Kayseri (Turkey)',1,1,0),(22572,13740,122547,'Kazimierz Dolny','Poland','PL','Kazimierz Dolny (Poland)',1,1,0),(22573,13750,122548,'Kearney','United States of America','US','Kearney (United States of America)',1,1,0),(22574,13760,122549,'Kedonganan','Indonesia','ID','Kedonganan (Indonesia)',1,1,0),(22575,13768,122550,'Keetmanshoop','Namibia','NA','Keetmanshoop (Namibia)',1,1,0),(22576,13786,122551,'Keizer','United States of America','US','Keizer (United States of America)',1,1,0),(22577,0,122552,'Kelibia','Tunisia','TN','Kelibia (Tunisia)',1,1,0),(22578,13793,122553,'Kelkheim','Germany','DE','Kelkheim (Germany)',1,1,0),(22579,13808,122554,'Kelsterbach','Germany','DE','Kelsterbach (Germany)',1,1,0),(22580,0,122555,'Kemerovo','Russia','RU','Kemerovo (Russia)',1,1,0),(22581,13820,122556,'Kempten','Germany','DE','Kempten (Germany)',1,1,0),(22582,0,122557,'Kenn','Germany','DE','Kenn (Germany)',1,1,0),(22583,0,122558,'Keno City','Canada','CA','Keno City (Canada)',1,1,0),(22584,0,122559,'Kensaleyre','United Kingdom','UK','Kensaleyre (United Kingdom)',1,1,0),(22585,13865,122560,'Kenton','United States of America','US','Kenton (United States of America)',1,1,0),(22586,13867,122561,'Kenton on Sea','South Africa','ZA','Kenton on Sea (South Africa)',1,1,0),(22587,0,122562,'Kerasia','Greece','GR','Kerasia (Greece)',1,1,0),(22588,0,122563,'Keratea','Greece','GR','Keratea (Greece)',1,1,0),(22589,13884,122564,'Kerkrade','Netherlands','NL','Kerkrade (Netherlands)',1,1,0),(22590,0,122565,'Kernhof','Austria','AT','Kernhof (Austria)',1,1,0),(22591,13889,122566,'Kerns','Switzerland','CH','Kerns (Switzerland)',1,1,0),(22592,13892,122567,'Kerpen','Germany','DE','Kerpen (Germany)',1,1,0),(22593,13894,122568,'Kerrville','United States of America','US','Kerrville (United States of America)',1,1,0),(22594,0,122569,'Kerveli','Greece','GR','Kerveli (Greece)',1,1,0),(22595,13900,122570,'Kesselsdorf','Germany','DE','Kesselsdorf (Germany)',1,1,0),(22596,0,122571,'Keswick','United Kingdom','UK','Keswick (United Kingdom)',1,1,0),(22597,13914,122572,'Keuruu','Finland','FI','Keuruu (Finland)',1,1,0),(22598,13915,122573,'Keutschach','Austria','AT','Keutschach (Austria)',1,1,0),(22599,0,122574,'Kevelaer','Germany','DE','Kevelaer (Germany)',1,1,0),(22600,0,122575,'Kewarra Beach','Australia','AU','Kewarra Beach (Australia)',1,1,0),(22601,31208,122576,'Key Largo','United States of America','US','Key Largo (United States of America)',1,1,0),(22602,13924,122577,'Keystone','United States of America','US','Keystone (United States of America)',1,1,0),(22603,0,122578,'Kezmarok','Slovakia','SK','Kezmarok (Slovakia)',1,1,0),(22604,13925,122579,'Kfar Blum','Israel','IL','Kfar Blum (Israel)',1,1,0),(22605,0,122581,'Khenifra','Morocco','MA','Khenifra (Morocco)',1,1,0),(22606,0,122582,'Khorixas','Namibia','NA','Khorixas (Namibia)',1,1,0),(22607,0,122583,'Kidderminster','United Kingdom','UK','Kidderminster (United Kingdom)',1,1,0),(22608,0,122584,'Kikambala Beach','Kenya','KE','Kikambala Beach (Kenya)',1,1,0),(22609,0,122585,'Kilnsey','United Kingdom','UK','Kilnsey (United Kingdom)',1,1,0),(22610,14044,122586,'Kimberley','Canada','CA','Kimberley (Canada)',1,1,0),(22611,14051,122587,'Kincardine','Canada','CA','Kincardine (Canada)',1,1,0),(22612,14056,122588,'Kinder','United States of America','US','Kinder (United States of America)',1,1,0),(22613,31211,122589,'King','United States of America','US','King (United States of America)',1,1,0),(22614,0,122590,'Kinosaki-gun','Japan','JP','Kinosaki-gun (Japan)',1,1,0),(22615,0,122591,'Kinver','United Kingdom','UK','Kinver (United Kingdom)',1,1,0),(22616,14112,122592,'Kiotari','Greece','GR','Kiotari (Greece)',1,1,0),(22617,0,122593,'Kirchberg an der Pielach','Austria','AT','Kirchberg an der Pielach (Austria)',1,1,0),(22618,14122,122594,'Kirchbichl','Austria','AT','Kirchbichl (Austria)',1,1,0),(22619,14125,122595,'Kirchdorf an der Krems','Austria','AT','Kirchdorf an der Krems (Austria)',1,1,0),(22620,0,122596,'Kirchen (Sieg)','Germany','DE','Kirchen (Sieg) (Germany)',1,1,0),(22621,0,122597,'Kirchhain','Germany','DE','Kirchhain (Germany)',1,1,0),(22622,0,122598,'Kirchheim am Ries','Germany','DE','Kirchheim am Ries (Germany)',1,1,0),(22623,0,122599,'Kirchrarbach','Germany','DE','Kirchrarbach (Germany)',1,1,0),(22624,0,122600,'Kirikhan','Turkey','TR','Kirikhan (Turkey)',1,1,0),(22625,14135,122601,'Kiris','Turkey','TR','Kiris (Turkey)',1,1,0),(22626,0,122602,'Kirkkonummi','Finland','FI','Kirkkonummi (Finland)',1,1,0),(22627,0,122603,'Kirkpatrick Durham','United Kingdom','UK','Kirkpatrick Durham (United Kingdom)',1,1,0),(22628,0,122604,'Kirkuk','Iraq','IQ','Kirkuk (Iraq)',1,1,0),(22629,0,122605,'Kirnbach','Germany','DE','Kirnbach (Germany)',1,1,0),(22630,0,122606,'Kirrweiler','Germany','DE','Kirrweiler (Germany)',1,1,0),(22631,0,122607,'Kissonerga','Cyprus','CY','Kissonerga (Cyprus)',1,1,0),(22632,14178,122608,'Kista','Sweden','SE','Kista (Sweden)',1,1,0),(22633,0,122609,'Kit Carson','United States of America','US','Kit Carson (United States of America)',1,1,0),(22634,14182,122610,'Kitahiroshima','Japan','JP','Kitahiroshima (Japan)',1,1,0),(22635,14184,122611,'Kitakyushu','Japan','JP','Kitakyushu (Japan)',1,1,0),(22636,0,122612,'Kitros','Greece','GR','Kitros (Greece)',1,1,0),(22637,14200,122613,'Kitzingen','Germany','DE','Kitzingen (Germany)',1,1,0),(22638,0,122614,'Kladesholmen','Sweden','SE','Kladesholmen (Sweden)',1,1,0),(22639,0,122615,'Klaus','Austria','AT','Klaus (Austria)',1,1,0),(22640,14224,122616,'Kleinmond','South Africa','ZA','Kleinmond (South Africa)',1,1,0),(22641,0,122617,'Klenci Pod Cherchovem','Czech Republic','CZ','Klenci Pod Cherchovem (Czech Republic)',1,1,0),(22642,0,122618,'Klingenmunster','Germany','DE','Klingenmunster (Germany)',1,1,0),(22643,0,122619,'Klopeiner See (Klopsteiner Lake)','Austria','AT','Klopeiner See (Klopsteiner Lake) (Austria)',1,1,0),(22644,0,122620,'Knutsford','United Kingdom','UK','Knutsford (United Kingdom)',1,1,0),(22645,0,122621,'Ko Nang Yuan Island','Thailand','TH','Ko Nang Yuan Island (Thailand)',1,1,0),(22646,14279,122622,'Kodak','United States of America','US','Kodak (United States of America)',1,1,0),(22647,0,122623,'Kololi Beach','Gambia','GM','Kololi Beach (Gambia)',1,1,0),(22648,14334,122624,'Komandoo','Maldives','MV','Komandoo (Maldives)',1,1,0),(22649,0,122625,'Komiza','Croatia','HR','Komiza (Croatia)',1,1,0),(22650,0,122626,'Komoro','Japan','JP','Komoro (Japan)',1,1,0),(22651,14349,122627,'Kongerslev','Denmark','DK','Kongerslev (Denmark)',1,1,0),(22652,14354,122628,'Konigsbach-Stein','Germany','DE','Konigsbach-Stein (Germany)',1,1,0),(22653,0,122629,'Konigsbrunn','Germany','DE','Konigsbrunn (Germany)',1,1,0),(22654,0,122630,'Konigshofen an der Heide','Germany','DE','Konigshofen an der Heide (Germany)',1,1,0),(22655,0,122631,'Hrodna','Belarus','BY','Hrodna (Belarus)',1,1,0),(22656,12392,122632,'Hualien','Taiwan','TW','Hualien (Taiwan)',1,1,0),(22657,12394,122633,'Huambo','Angola','AO','Huambo (Angola)',1,1,0),(22658,0,122634,'Huben','Austria','AT','Huben (Austria)',1,1,0),(22659,12414,122635,'Huddinge','Sweden','SE','Huddinge (Sweden)',1,1,0),(22660,12421,122636,'Hue','Vietnam','VN','Hue (Vietnam)',1,1,0),(22661,0,122637,'Huechuraba','Chile','CL','Huechuraba (Chile)',1,1,0),(22662,0,122638,'Huevar del Aljarafe','Spain','ES','Huevar del Aljarafe (Spain)',1,1,0),(22663,0,122639,'Hughesville','United States of America','US','Hughesville (United States of America)',1,1,0),(22664,12444,122640,'Hulett','United States of America','US','Hulett (United States of America)',1,1,0),(22665,0,122641,'Hulhule Island','Maldives','MV','Hulhule Island (Maldives)',1,1,0),(22666,0,122642,'Hummerich','Germany','DE','Hummerich (Germany)',1,1,0),(22667,0,122643,'Hunderdorf','Germany','DE','Hunderdorf (Germany)',1,1,0),(22668,0,122644,'Hundleton','United Kingdom','UK','Hundleton (United Kingdom)',1,1,0),(22669,0,122645,'Hunt Valley','United States of America','US','Hunt Valley (United States of America)',1,1,0),(22670,12479,122646,'Hunter','United States of America','US','Hunter (United States of America)',1,1,0),(22671,0,122647,'Huntingdon','United Kingdom','UK','Huntingdon (United Kingdom)',1,1,0),(22672,0,122648,'Hurricane','United States of America','US','Hurricane (United States of America)',1,1,0),(22673,0,122649,'Hurtgenwald','Germany','DE','Hurtgenwald (Germany)',1,1,0),(22674,12506,122650,'Husi','Romania','RO','Husi (Romania)',1,1,0),(22675,0,122651,'Hutchinson Island','United States of America','US','Hutchinson Island (United States of America)',1,1,0),(22676,0,122652,'Huttenberg','Austria','AT','Huttenberg (Austria)',1,1,0),(22677,0,122653,'Hutthurm','Germany','DE','Hutthurm (Germany)',1,1,0),(22678,0,122654,'Huttonsville','United States of America','US','Huttonsville (United States of America)',1,1,0),(22679,0,122655,'Huzhou','China','CN','Huzhou (China)',1,1,0),(22680,0,122656,'Hvalfjordur','Iceland','IS','Hvalfjordur (Iceland)',1,1,0),(22681,12536,122657,'Hyden','Australia','AU','Hyden (Australia)',1,1,0),(22682,12541,122658,'Hyeres','France','FR','Hyeres (France)',1,1,0),(22683,0,122659,'Hyrynsalmi','Finland','FI','Hyrynsalmi (Finland)',1,1,0),(22684,12554,122660,'Ibarra','Ecuador','EC','Ibarra (Ecuador)',1,1,0),(22685,0,122661,'Igalo','Montenegro','ME','Igalo (Montenegro)',1,1,0),(22686,0,122662,'Igate','Latvia','LV','Igate (Latvia)',1,1,0),(22687,0,122663,'Igrane','Croatia','HR','Igrane (Croatia)',1,1,0),(22688,0,122664,'Igueste','Spain','ES','Igueste (Spain)',1,1,0),(22689,0,122665,'Iida','Japan','JP','Iida (Japan)',1,1,0),(22690,12617,122666,'Ikast','Denmark','DK','Ikast (Denmark)',1,1,0),(22691,0,122667,'Ilanz','Switzerland','CH','Ilanz (Switzerland)',1,1,0),(22692,0,122668,'Ile Goree','Senegal','SN','Ile Goree (Senegal)',1,1,0),(22693,0,122669,'Ile Sainte-Marie','Madagascar','MG','Ile Sainte-Marie (Madagascar)',1,1,0),(22694,12627,122670,'Ilfeld','Germany','DE','Ilfeld (Germany)',1,1,0),(22695,31143,122671,'Ilha Grande','Brazil','BR','Ilha Grande (Brazil)',1,1,0),(22696,12633,122672,'Ilhavo','Portugal','PT','Ilhavo (Portugal)',1,1,0),(22697,12639,122673,'Ilion','United States of America','US','Ilion (United States of America)',1,1,0),(22698,0,122674,'Illhaeusern','France','FR','Illhaeusern (France)',1,1,0),(22699,12655,122675,'Illzach','France','FR','Illzach (France)',1,1,0),(22700,0,122676,'Ilsede','Germany','DE','Ilsede (Germany)',1,1,0),(22701,12663,122677,'Ilwaco','United States of America','US','Ilwaco (United States of America)',1,1,0),(22702,0,122678,'Im Fang','Switzerland','CH','Im Fang (Switzerland)',1,1,0),(22703,0,122679,'Immenstadt im Allgau','Germany','DE','Immenstadt im Allgau (Germany)',1,1,0),(22704,0,122680,'Imnaha','United States of America','US','Imnaha (United States of America)',1,1,0),(22705,12675,122681,'Imola','Italy','IT','Imola (Italy)',1,1,0),(22706,0,122682,'Inden','Germany','DE','Inden (Germany)',1,1,0),(22707,0,122683,'Independence','United States of America','US','Independence (United States of America)',1,1,0),(22708,0,122684,'Independence','United States of America','US','Independence (United States of America)',1,1,0),(22709,31154,122685,'Indian Wells','United States of America','US','Indian Wells (United States of America)',1,1,0),(22710,31155,122686,'Indiana','United States of America','US','Indiana (United States of America)',1,1,0),(22711,0,122687,'Inga','Finland','FI','Inga (Finland)',1,1,0),(22712,0,122688,'Ingliston','United Kingdom','UK','Ingliston (United Kingdom)',1,1,0),(22713,0,122689,'Inishowen','Ireland','IE','Inishowen (Ireland)',1,1,0),(22714,0,122690,'Innertkirchen','Switzerland','CH','Innertkirchen (Switzerland)',1,1,0),(22715,12747,122691,'Innsbruck','Austria','AT','Innsbruck (Austria)',1,1,0),(22716,0,122692,'Insel Besar','Malaysia','MY','Insel Besar (Malaysia)',1,1,0),(22717,0,122693,'Insel Bounty','Fiji Islands','FJ','Insel Bounty (Fiji Islands)',1,1,0),(22718,0,122694,'Insel Dolphin','Fiji Islands','FJ','Insel Dolphin (Fiji Islands)',1,1,0),(22719,0,122695,'Insel Flaton','Sweden','SE','Insel Flaton (Sweden)',1,1,0),(22720,0,122696,'Insel Klang','Thailand','TH','Insel Klang (Thailand)',1,1,0),(22721,0,122697,'Insel Levanzo','Italy','IT','Insel Levanzo (Italy)',1,1,0),(22722,0,122698,'Insel Nosy Saba','Madagascar','MG','Insel Nosy Saba (Madagascar)',1,1,0),(22723,0,122699,'Insel Pag','Croatia','HR','Insel Pag (Croatia)',1,1,0),(22724,0,122700,'Insel Panarea','Italy','IT','Insel Panarea (Italy)',1,1,0),(22725,0,122701,'Insel Zverinac','Croatia','HR','Insel Zverinac (Croatia)',1,1,0),(22726,0,122702,'Interlaken-Sundlauenen','Switzerland','CH','Interlaken-Sundlauenen (Switzerland)',1,1,0),(22727,0,122703,'Inuyama','Japan','JP','Inuyama (Japan)',1,1,0),(22728,12765,122704,'Invercargill','New Zealand','NZ','Invercargill (New Zealand)',1,1,0),(22729,12782,122705,'Inzlingen','Germany','DE','Inzlingen (Germany)',1,1,0),(22730,12786,122706,'Iola','United States of America','US','Iola (United States of America)',1,1,0),(22731,0,122707,'Ipswich','United Kingdom','UK','Ipswich (United Kingdom)',1,1,0),(22732,12808,122708,'Irapuato','Mexico','MX','Irapuato (Mexico)',1,1,0),(22733,12814,122709,'Ireon','Greece','GR','Ireon (Greece)',1,1,0),(22734,12815,122710,'Iria','Greece','GR','Iria (Greece)',1,1,0),(22735,12822,122711,'Ironwood','United States of America','US','Ironwood (United States of America)',1,1,0),(22736,12847,122712,'Ishigaki','Japan','JP','Ishigaki (Japan)',1,1,0),(22737,12852,122713,'Ishpeming','United States of America','US','Ishpeming (United States of America)',1,1,0),(22738,31166,122714,'Isla','Spain','ES','Isla (Spain)',1,1,0),(22739,0,122715,'Isla Holbox','Mexico','MX','Isla Holbox (Mexico)',1,1,0),(22740,12866,122716,'Islamorada','United States of America','US','Islamorada (United States of America)',1,1,0),(22741,12871,122717,'Islares','Spain','ES','Islares (Spain)',1,1,0),(22742,0,122718,'Isle au Haut','United States of America','US','Isle au Haut (United States of America)',1,1,0),(22743,0,122719,'Isle of Shapinsay','United Kingdom','UK','Isle of Shapinsay (United Kingdom)',1,1,0),(22744,0,122720,'Isola 2000','France','FR','Isola 2000 (France)',1,1,0),(22745,0,122721,'Isola del Pescatori','Italy','IT','Isola del Pescatori (Italy)',1,1,0),(22746,0,122722,'Isola delle Femmine','Italy','IT','Isola delle Femmine (Italy)',1,1,0),(22747,0,122723,'Isola La Maddalena','Italy','IT','Isola La Maddalena (Italy)',1,1,0),(22748,0,122724,'Isolaccia','Italy','IT','Isolaccia (Italy)',1,1,0),(22749,12894,122725,'Isovol','Spain','ES','Isovol (Spain)',1,1,0),(22750,12896,122726,'Ispica','Italy','IT','Ispica (Italy)',1,1,0),(22751,12905,122727,'Istanbul','Turkey','TR','Istanbul (Turkey)',1,1,0),(22752,0,122728,'Istanbul-Silivri','Turkey','TR','Istanbul-Silivri (Turkey)',1,1,0),(22753,12911,122729,'Istron','Greece','GR','Istron (Greece)',1,1,0),(22754,12914,122730,'Itacare','Brazil','BR','Itacare (Brazil)',1,1,0),(22755,0,122731,'Itajuba','Brazil','BR','Itajuba (Brazil)',1,1,0),(22756,0,122733,'Itaparica','Brazil','BR','Itaparica (Brazil)',1,1,0),(22757,12922,122734,'Itapecerica da Serra','Brazil','BR','Itapecerica da Serra (Brazil)',1,1,0),(22758,0,122735,'Itapira','Brazil','BR','Itapira (Brazil)',1,1,0),(22759,12931,122736,'Ittigen','Switzerland','CH','Ittigen (Switzerland)',1,1,0),(22760,0,122737,'Ittre','Belgium','BE','Ittre (Belgium)',1,1,0),(22761,0,122738,'Ivanjica','Serbia','RS','Ivanjica (Serbia)',1,1,0),(22762,12944,122739,'Iwaki','Japan','JP','Iwaki (Japan)',1,1,0),(22763,0,122740,'Izalzu','Spain','ES','Izalzu (Spain)',1,1,0),(22764,0,122741,'Izegem','Belgium','BE','Izegem (Belgium)',1,1,0),(22765,0,122742,'Izhevsk','Russia','RU','Izhevsk (Russia)',1,1,0),(22766,0,122743,'Jamesport','United States of America','US','Jamesport (United States of America)',1,1,0),(22767,0,122744,'Jamestown','United States of America','US','Jamestown (United States of America)',1,1,0),(22768,0,122745,'Jandia / Playa de Jandia','Spain','ES','Jandia / Playa de Jandia (Spain)',1,1,0),(22769,13041,122746,'Jarvenpaa','Finland','FI','Jarvenpaa (Finland)',1,1,0),(22770,0,122747,'Jarvso','Sweden','SE','Jarvso (Sweden)',1,1,0),(22771,13052,122748,'Jaux','France','FR','Jaux (France)',1,1,0),(22772,13056,122749,'Javea','Spain','ES','Javea (Spain)',1,1,0),(22773,0,122750,'Javorna','Czech Republic','CZ','Javorna (Czech Republic)',1,1,0),(22774,0,122751,'Jedey','Spain','ES','Jedey (Spain)',1,1,0),(22775,0,122752,'Jedwabno','Poland','PL','Jedwabno (Poland)',1,1,0),(22776,0,122753,'Jefferson','United States of America','US','Jefferson (United States of America)',1,1,0),(22777,0,122754,'Jelgava','Latvia','LV','Jelgava (Latvia)',1,1,0),(22778,13083,122755,'Jenner','United States of America','US','Jenner (United States of America)',1,1,0),(22779,0,122756,'Jermuk','Armenia','AM','Jermuk (Armenia)',1,1,0),(22780,13100,122757,'Jersey City','United States of America','US','Jersey City (United States of America)',1,1,0),(22781,13106,122758,'Jerzu','Italy','IT','Jerzu (Italy)',1,1,0),(22782,13107,122759,'Jesenik','Czech Republic','CZ','Jesenik (Czech Republic)',1,1,0),(22783,13111,122760,'Jessheim','Norway','NO','Jessheim (Norway)',1,1,0),(22784,13114,122761,'Jesup','United States of America','US','Jesup (United States of America)',1,1,0),(22785,0,122762,'Jever','Germany','DE','Jever (Germany)',1,1,0),(22786,13125,122764,'Jiamusi','China','CN','Jiamusi (China)',1,1,0),(22787,0,122765,'Jiayu','China','CN','Jiayu (China)',1,1,0),(22788,13140,122766,'Jiayuguan','China','CN','Jiayuguan (China)',1,1,0),(22789,0,122767,'Jicin','Czech Republic','CZ','Jicin (Czech Republic)',1,1,0),(22790,0,122768,'Jieyang','China','CN','Jieyang (China)',1,1,0),(22791,13144,122769,'Jijona','Spain','ES','Jijona (Spain)',1,1,0),(22792,0,122770,'Jilemnice','Czech Republic','CZ','Jilemnice (Czech Republic)',1,1,0),(22793,13160,122771,'Jinhua','China','CN','Jinhua (China)',1,1,0),(22794,13169,122772,'Jinzhong','China','CN','Jinzhong (China)',1,1,0),(22795,13170,122773,'Jinzhou','China','CN','Jinzhou (China)',1,1,0),(22796,0,122774,'Jirkov','Czech Republic','CZ','Jirkov (Czech Republic)',1,1,0),(22797,0,122775,'Jiyuan','China','CN','Jiyuan (China)',1,1,0),(22798,13178,122776,'Joacaba','Brazil','BR','Joacaba (Brazil)',1,1,0),(22799,0,122777,'Johnson City','United States of America','US','Johnson City (United States of America)',1,1,0),(22800,0,122778,'Johnstown','United States of America','US','Johnstown (United States of America)',1,1,0),(22801,0,122779,'Joncy','France','FR','Joncy (France)',1,1,0),(22802,13219,122780,'Jonesville','United States of America','US','Jonesville (United States of America)',1,1,0),(22803,0,122781,'Jonesville','United States of America','US','Jonesville (United States of America)',1,1,0),(22804,13220,122782,'Jonkoping','Sweden','SE','Jonkoping (Sweden)',1,1,0),(22805,13240,122783,'Jossigny','France','FR','Jossigny (France)',1,1,0),(22806,13245,122784,'Joue-les-Tours','France','FR','Joue-les-Tours (France)',1,1,0),(22807,0,122785,'Jowalbinna','Australia','AU','Jowalbinna (Australia)',1,1,0),(22808,13254,122786,'Jozefow','Poland','PL','Jozefow (Poland)',1,1,0),(22809,13260,122787,'Juayua','El Salvador','SV','Juayua (El Salvador)',1,1,0),(22810,13261,122788,'Juazeiro do Norte','Brazil','BR','Juazeiro do Norte (Brazil)',1,1,0),(22811,0,122789,'Jubail','Saudi Arabia','SA','Jubail (Saudi Arabia)',1,1,0),(22812,0,122790,'Judendorf-Stra?engel','Austria','AT','Judendorf-Stra?engel (Austria)',1,1,0),(22813,0,122791,'Julatten','Australia','AU','Julatten (Australia)',1,1,0),(22814,31200,122792,'Junction','United States of America','US','Junction (United States of America)',1,1,0),(22815,13289,122793,'June Lake','United States of America','US','June Lake (United States of America)',1,1,0),(22816,13292,122794,'Jungfraujoch','Switzerland','CH','Jungfraujoch (Switzerland)',1,1,0),(22817,0,122795,'Juvigny-sous-Andaine','France','FR','Juvigny-sous-Andaine (France)',1,1,0),(22818,0,122796,'Jwaneng','Botswana','BW','Jwaneng (Botswana)',1,1,0),(22819,0,122797,'Kabli','Estonia','EE','Kabli (Estonia)',1,1,0),(22820,13332,122799,'Kafountine','Senegal','SN','Kafountine (Senegal)',1,1,0),(22821,13333,122800,'Kaga','Japan','JP','Kaga (Japan)',1,1,0),(22822,0,122801,'Kaindorf','Austria','AT','Kaindorf (Austria)',1,1,0),(22823,13359,122802,'Kaitaia','New Zealand','NZ','Kaitaia (New Zealand)',1,1,0),(22824,0,122803,'Kakamas','South Africa','ZA','Kakamas (South Africa)',1,1,0),(22825,0,122804,'Kakamega','Kenya','KE','Kakamega (Kenya)',1,1,0),(22826,13374,122805,'Kala Nera','Greece','GR','Kala Nera (Greece)',1,1,0),(22827,13387,122806,'Kalampaka','Greece','GR','Kalampaka (Greece)',1,1,0),(22828,0,122807,'Kalangala','Uganda','UG','Kalangala (Uganda)',1,1,0),(22829,0,122808,'Kalathos','Greece','GR','Kalathos (Greece)',1,1,0),(22830,13393,122809,'Kalavryta','Greece','GR','Kalavryta (Greece)',1,1,0),(22831,13394,122810,'Kalaw','Myanmar','MM','Kalaw (Myanmar)',1,1,0),(22832,0,122811,'Kali','Croatia','HR','Kali (Croatia)',1,1,0),(22833,13399,122812,'Kalibaru','Indonesia','ID','Kalibaru (Indonesia)',1,1,0),(22834,0,122813,'Kaliningrad','Russia','RU','Kaliningrad (Russia)',1,1,0),(22835,0,122814,'Kalkrand','Namibia','NA','Kalkrand (Namibia)',1,1,0),(22836,13413,122815,'Kallithea','Greece','GR','Kallithea (Greece)',1,1,0),(22837,0,122816,'Kalo Livadi','Greece','GR','Kalo Livadi (Greece)',1,1,0),(22838,0,122817,'Kaltenlengsfeld','Germany','DE','Kaltenlengsfeld (Germany)',1,1,0),(22839,13439,122818,'Kamanjab','Namibia','NA','Kamanjab (Namibia)',1,1,0),(22840,0,122819,'Kamenjak','Croatia','HR','Kamenjak (Croatia)',1,1,0),(22841,0,122820,'Kamennomostsky','Russia','RU','Kamennomostsky (Russia)',1,1,0),(22842,13456,122821,'Kameoka','Japan','JP','Kameoka (Japan)',1,1,0),(22843,13464,122822,'Kampala','Uganda','UG','Kampala (Uganda)',1,1,0),(22844,13474,122823,'Kanab','United States of America','US','Kanab (United States of America)',1,1,0),(22845,13499,122825,'Kangaroo Island','Australia','AU','Kangaroo Island (Australia)',1,1,0),(22846,13513,122827,'Kannapolis','United States of America','US','Kannapolis (United States of America)',1,1,0),(22847,0,122828,'Kanzelhohe','Austria','AT','Kanzelhohe (Austria)',1,1,0),(22848,0,122829,'Kaolack','Senegal','SN','Kaolack (Senegal)',1,1,0),(22849,13535,122830,'Kapolei','United States of America','US','Kapolei (United States of America)',1,1,0),(22850,0,122831,'Kappl','Austria','AT','Kappl (Austria)',1,1,0),(22851,13548,122832,'Karaman','Turkey','TR','Karaman (Turkey)',1,1,0),(22852,13549,122833,'Karamay','China','CN','Karamay (China)',1,1,0),(22853,0,122834,'Karamea','New Zealand','NZ','Karamea (New Zealand)',1,1,0),(22854,13551,122835,'Karangasem','Indonesia','ID','Karangasem (Indonesia)',1,1,0),(22855,0,122836,'Karankamaki','Finland','FI','Karankamaki (Finland)',1,1,0),(22856,13555,122837,'Karatsu','Japan','JP','Karatsu (Japan)',1,1,0),(22857,0,122838,'Karerpass','Italy','IT','Karerpass (Italy)',1,1,0),(22858,0,122839,'Kariega Game Reserve','South Africa','ZA','Kariega Game Reserve (South Africa)',1,1,0),(22859,0,122840,'Karimun Island','Indonesia','ID','Karimun Island (Indonesia)',1,1,0),(22860,0,122841,'Karlobag','Croatia','HR','Karlobag (Croatia)',1,1,0),(22861,0,122842,'Karlowo','Bulgaria','BG','Karlowo (Bulgaria)',1,1,0),(22862,13587,122843,'Karlskrona','Sweden','SE','Karlskrona (Sweden)',1,1,0),(22863,0,122844,'Karlslunde','Denmark','DK','Karlslunde (Denmark)',1,1,0),(22864,0,122845,'Karmoy Island','Norway','NO','Karmoy Island (Norway)',1,1,0),(22865,0,122846,'Karnes City','United States of America','US','Karnes City (United States of America)',1,1,0),(22866,13605,122847,'Kars','Turkey','TR','Kars (Turkey)',1,1,0),(22867,0,122849,'Kashary','Russia','RU','Kashary (Russia)',1,1,0),(22868,0,122850,'Kastav','Croatia','HR','Kastav (Croatia)',1,1,0),(22869,0,122851,'Kastelbell-Tschars','Italy','IT','Kastelbell-Tschars (Italy)',1,1,0),(22870,0,122852,'Kastellakia','Greece','GR','Kastellakia (Greece)',1,1,0),(22871,13658,122853,'Kastl','Germany','DE','Kastl (Germany)',1,1,0),(22872,13659,122854,'Kastoria','Greece','GR','Kastoria (Greece)',1,1,0),(22873,0,122855,'Katavi-Nationalpark','Tanzania','TZ','Katavi-Nationalpark (Tanzania)',1,1,0),(22874,13044,122856,'Jasper','Canada','CA','Jasper (Canada)',1,1,0),(22875,13049,122857,'Jaun','Switzerland','CH','Jaun (Switzerland)',1,1,0),(22876,0,122858,'Jefferson','United States of America','US','Jefferson (United States of America)',1,1,0),(22877,0,122859,'Jefferson','United States of America','US','Jefferson (United States of America)',1,1,0),(22878,13069,122860,'Jeffreys Bay','South Africa','ZA','Jeffreys Bay (South Africa)',1,1,0),(22879,0,122861,'Jekabpils','Latvia','LV','Jekabpils (Latvia)',1,1,0),(22880,13075,122862,'Jelenia Gora','Poland','PL','Jelenia Gora (Poland)',1,1,0),(22881,13076,122863,'Jellico','United States of America','US','Jellico (United States of America)',1,1,0),(22882,0,122864,'Jenisov u Lipna','Czech Republic','CZ','Jenisov u Lipna (Czech Republic)',1,1,0),(22883,13084,122865,'Jennersdorf','Austria','AT','Jennersdorf (Austria)',1,1,0),(22884,0,122866,'Jerichow','Germany','DE','Jerichow (Germany)',1,1,0),(22885,13104,122867,'Jerusalem','Israel','IL','Jerusalem (Israel)',1,1,0),(22886,0,122868,'Jevenstedt','Germany','DE','Jevenstedt (Germany)',1,1,0),(22887,13118,122869,'Jevnaker','Norway','NO','Jevnaker (Norway)',1,1,0),(22888,0,122870,'Jewpatorija','Ukraine','UA','Jewpatorija (Ukraine)',1,1,0),(22889,13128,122871,'Jiangmen','China','CN','Jiangmen (China)',1,1,0),(22890,0,122872,'Jiangshan','China','CN','Jiangshan (China)',1,1,0),(22891,13137,122873,'Jiaozuo','China','CN','Jiaozuo (China)',1,1,0),(22892,0,122874,'Jibacoa','Cuba','CU','Jibacoa (Cuba)',1,1,0),(22893,13154,122875,'Jingdezhen','China','CN','Jingdezhen (China)',1,1,0),(22894,13161,122876,'Jining','China','CN','Jining (China)',1,1,0),(22895,13174,122877,'Jiuquan','China','CN','Jiuquan (China)',1,1,0),(22896,13175,122878,'Jiuzhaigou','China','CN','Jiuzhaigou (China)',1,1,0),(22897,13179,122879,'Joachimsthal','Germany','DE','Joachimsthal (Germany)',1,1,0),(22898,13180,122880,'Joanetes','Spain','ES','Joanetes (Spain)',1,1,0),(22899,13185,122881,'Joelton','United States of America','US','Joelton (United States of America)',1,1,0),(22900,0,122882,'Joffreville','Madagascar','MG','Joffreville (Madagascar)',1,1,0),(22901,0,122883,'John Day','United States of America','US','John Day (United States of America)',1,1,0),(22902,0,122884,'Johnson City','United States of America','US','Johnson City (United States of America)',1,1,0),(22903,0,122885,'Johstadt','Germany','DE','Johstadt (Germany)',1,1,0),(22904,0,122886,'Jolly Beach','Antigua & Barbuda','AG','Jolly Beach (Antigua & Barbuda)',1,1,0),(22905,13234,122887,'Joroinen','Finland','FI','Joroinen (Finland)',1,1,0),(22906,0,122888,'Josefuv Dul','Czech Republic','CZ','Josefuv Dul (Czech Republic)',1,1,0),(22907,0,122889,'Jougne','France','FR','Jougne (France)',1,1,0),(22908,13247,122890,'Jounieh','Lebanon','LB','Jounieh (Lebanon)',1,1,0),(22909,0,122891,'Jozini','South Africa','ZA','Jozini (South Africa)',1,1,0),(22910,13265,122892,'Juelsminde','Denmark','DK','Juelsminde (Denmark)',1,1,0),(22911,13273,122893,'Jukkasjarvi','Sweden','SE','Jukkasjarvi (Sweden)',1,1,0),(22912,13276,122894,'Juliaca','Peru','PE','Juliaca (Peru)',1,1,0),(22913,0,122895,'Julianadorp','Netherlands','NL','Julianadorp (Netherlands)',1,1,0),(22914,0,122896,'Julich','Germany','DE','Julich (Germany)',1,1,0),(22915,0,122897,'Jupille','Belgium','BE','Jupille (Belgium)',1,1,0),(22916,0,122898,'Kaapmuiden','South Africa','ZA','Kaapmuiden (South Africa)',1,1,0),(22917,0,122899,'Kagsdorf','Germany','DE','Kagsdorf (Germany)',1,1,0),(22918,0,122900,'Kahl am Main','Germany','DE','Kahl am Main (Germany)',1,1,0),(22919,13343,122901,'Kaifeng','China','CN','Kaifeng (China)',1,1,0),(22920,0,122902,'Kaikenried','Germany','DE','Kaikenried (Germany)',1,1,0),(22921,13345,122903,'Kaikoura','New Zealand','NZ','Kaikoura (New Zealand)',1,1,0),(22922,0,122904,'Kailua','HI',NULL,'Kailua (HI)',1,1,0),(22923,13358,122905,'Kaiserslautern','Germany','DE','Kaiserslautern (Germany)',1,1,0),(22924,13360,122906,'Kaiteriteri','New Zealand','NZ','Kaiteriteri (New Zealand)',1,1,0),(22925,0,122907,'Kalamakia','Greece','GR','Kalamakia (Greece)',1,1,0),(22926,13385,122908,'Kalami','Greece','GR','Kalami (Greece)',1,1,0),(22927,0,122909,'Kalapaki','United States of America','US','Kalapaki (United States of America)',1,1,0),(22928,0,122910,'Kalawana','Sri Lanka','LK','Kalawana (Sri Lanka)',1,1,0),(22929,0,122911,'Kalix','Sweden','SE','Kalix (Sweden)',1,1,0),(22930,13408,122912,'Kalkar','Germany','DE','Kalkar (Germany)',1,1,0),(22931,0,122913,'Kalkfeld','Namibia','NA','Kalkfeld (Namibia)',1,1,0),(22932,13417,122914,'Kalogria','Greece','GR','Kalogria (Greece)',1,1,0),(22933,0,122915,'Kalopanayiotis','Cyprus','CY','Kalopanayiotis (Cyprus)',1,1,0),(22934,0,122916,'Kals','Austria','AT','Kals (Austria)',1,1,0),(22935,0,122917,'Kaltennordheim','Germany','DE','Kaltennordheim (Germany)',1,1,0),(22936,0,122918,'Kaltensundheim','Germany','DE','Kaltensundheim (Germany)',1,1,0),(22937,13432,122919,'Kalyves','Greece','GR','Kalyves (Greece)',1,1,0),(22938,0,122920,'Kamaria','Greece','GR','Kamaria (Greece)',1,1,0),(22939,0,122921,'Kamas','United States of America','US','Kamas (United States of America)',1,1,0),(22940,0,122922,'Kamilari','Greece','GR','Kamilari (Greece)',1,1,0),(22941,0,122923,'Kamiros Skala','Greece','GR','Kamiros Skala (Greece)',1,1,0),(22942,13462,122924,'Kamloops','Canada','CA','Kamloops (Canada)',1,1,0),(22943,13466,122925,'Kamp-Bornhofen','Germany','DE','Kamp-Bornhofen (Germany)',1,1,0),(22944,13470,122926,'Kampos','Greece','GR','Kampos (Greece)',1,1,0),(22945,13475,122927,'Kanagawa','Japan','JP','Kanagawa (Japan)',1,1,0),(22946,13477,122928,'Kananaskis','Canada','CA','Kananaskis (Canada)',1,1,0),(22947,0,122929,'Kanash','Russia','RU','Kanash (Russia)',1,1,0),(22948,13495,122930,'Kaneohe','United States of America','US','Kaneohe (United States of America)',1,1,0),(22949,0,122933,'Kantouni','Greece','GR','Kantouni (Greece)',1,1,0),(22950,13539,122934,'Kappel-Grafenhausen','Germany','DE','Kappel-Grafenhausen (Germany)',1,1,0),(22951,13542,122935,'Kapuskasing','Canada','CA','Kapuskasing (Canada)',1,1,0),(22952,13545,122936,'Karaganda','Kazakhstan','KZ','Karaganda (Kazakhstan)',1,1,0),(22953,13565,122937,'Karesuando','Sweden','SE','Karesuando (Sweden)',1,1,0),(22954,0,122939,'Karinskoye','Russia','RU','Karinskoye (Russia)',1,1,0),(22955,0,122940,'Karjalohja','Finland','FI','Karjalohja (Finland)',1,1,0),(22956,13578,122941,'Karlovac','Croatia','HR','Karlovac (Croatia)',1,1,0),(22957,0,122942,'Karlsbad','Czech Republic','CZ','Karlsbad (Czech Republic)',1,1,0),(22958,0,122943,'Karlsdorf-Neuthard','Germany','DE','Karlsdorf-Neuthard (Germany)',1,1,0),(22959,13583,122944,'Karlshagen','Germany','DE','Karlshagen (Germany)',1,1,0),(22960,13589,122945,'Karlsruhe','Germany','DE','Karlsruhe (Germany)',1,1,0),(22961,0,122946,'Karnobat','Bulgaria','BG','Karnobat (Bulgaria)',1,1,0),(22962,0,122947,'Karoo National Park','South Africa','ZA','Karoo National Park (South Africa)',1,1,0),(22963,13601,122948,'Karpathos','Greece','GR','Karpathos (Greece)',1,1,0),(22964,0,122949,'Karystos','Greece','GR','Karystos (Greece)',1,1,0),(22965,0,122951,'Kaslik','Lebanon','LB','Kaslik (Lebanon)',1,1,0),(22966,0,122952,'Kasseedorf','Germany','DE','Kasseedorf (Germany)',1,1,0),(22967,13651,122953,'Kastamonu','Turkey','TR','Kastamonu (Turkey)',1,1,0),(22968,0,122954,'Kastel Luksic','Croatia','HR','Kastel Luksic (Croatia)',1,1,0),(22969,0,122955,'Katakali','Greece','GR','Katakali (Greece)',1,1,0),(22970,0,122956,'Katapola','Greece','GR','Katapola (Greece)',1,1,0),(22971,0,122957,'Katastari','Greece','GR','Katastari (Greece)',1,1,0),(22972,0,122958,'Kathikas','Cyprus','CY','Kathikas (Cyprus)',1,1,0),(22973,0,122959,'Kato Asites','Greece','GR','Kato Asites (Greece)',1,1,0),(22974,0,122960,'Kato Korakiana','Greece','GR','Kato Korakiana (Greece)',1,1,0),(22975,0,122961,'Kato Nevrokopi','Greece','GR','Kato Nevrokopi (Greece)',1,1,0),(22976,13686,122962,'Katsdorf','Austria','AT','Katsdorf (Austria)',1,1,0),(22977,13692,122963,'Katwoude','Netherlands','NL','Katwoude (Netherlands)',1,1,0),(22978,13693,122964,'Katy','United States of America','US','Katy (United States of America)',1,1,0),(22979,0,122965,'Kaub','Germany','DE','Kaub (Germany)',1,1,0),(22980,13704,122966,'Kaufbeuren','Germany','DE','Kaufbeuren (Germany)',1,1,0),(22981,0,122967,'Kaukoraitti','Finland','FI','Kaukoraitti (Finland)',1,1,0),(22982,0,122968,'Kazimierza Wielka','Poland','PL','Kazimierza Wielka (Poland)',1,1,0),(22983,0,122969,'Keitele','Finland','FI','Keitele (Finland)',1,1,0),(22984,0,122970,'Kejimkujik National P+D6967ark','Canada','CA','Kejimkujik National P+D6967ark (Canada)',1,1,0),(22985,13797,122971,'Keller','United States of America','US','Keller (United States of America)',1,1,0),(22986,13810,122972,'Kemer','Turkey','TR','Kemer (Turkey)',1,1,0),(22987,13819,122973,'Kempsey','Australia','AU','Kempsey (Australia)',1,1,0),(22988,13821,122974,'Kempton Park','South Africa','ZA','Kempton Park (South Africa)',1,1,0),(22989,0,122975,'Kenai Fjords National Park','United States of America','US','Kenai Fjords National Park (United States of America)',1,1,0),(22990,13847,122976,'Kennesaw','United States of America','US','Kennesaw (United States of America)',1,1,0),(22991,0,122977,'Kenogami Lake','Canada','CA','Kenogami Lake (Canada)',1,1,0),(22992,0,122979,'Kerames','Greece','GR','Kerames (Greece)',1,1,0),(22993,0,122980,'Keramoti','Greece','GR','Keramoti (Greece)',1,1,0),(22994,0,122981,'Kercem','Malta','MT','Kercem (Malta)',1,1,0),(22995,0,122982,'Kerhillio','France','FR','Kerhillio (France)',1,1,0),(22996,0,122983,'Kericho','Kenya','KE','Kericho (Kenya)',1,1,0),(22997,13903,122984,'Keszthely','Hungary','HU','Keszthely (Hungary)',1,1,0),(22998,13905,122985,'Ketchikan','United States of America','US','Ketchikan (United States of America)',1,1,0),(22999,0,122986,'Ketchum/ Sun Valley','United States of America','US','Ketchum/ Sun Valley (United States of America)',1,1,0),(23000,0,122987,'Ketrzyn','Poland','PL','Ketrzyn (Poland)',1,1,0),(23001,13907,122988,'Ketsch','Germany','DE','Ketsch (Germany)',1,1,0),(23002,13911,122989,'Kettleman City','United States of America','US','Kettleman City (United States of America)',1,1,0),(23003,13917,122990,'Kewanee','United States of America','US','Kewanee (United States of America)',1,1,0),(23004,31206,122991,'Key Biscayne','United States of America','US','Key Biscayne (United States of America)',1,1,0),(23005,31207,122992,'Key Colony Beach','United States of America','US','Key Colony Beach (United States of America)',1,1,0),(23006,0,122993,'Keynsham','United Kingdom','UK','Keynsham (United Kingdom)',1,1,0),(23007,0,122994,'Khabarovsk','Russia','RU','Khabarovsk (Russia)',1,1,0),(23008,13938,122995,'Khanom','Thailand','TH','Khanom (Thailand)',1,1,0),(23009,0,122996,'Khao Sok','Thailand','TH','Khao Sok (Thailand)',1,1,0),(23010,0,122997,'Khao-Yai-Nationalpark','Thailand','TH','Khao-Yai-Nationalpark (Thailand)',1,1,0),(23011,13964,122999,'Khouribga','Morocco','MA','Khouribga (Morocco)',1,1,0),(23012,0,123000,'Kiedrich','Germany','DE','Kiedrich (Germany)',1,1,0),(23013,0,123001,'Kiefersfelden','Germany','DE','Kiefersfelden (Germany)',1,1,0),(23014,13980,123002,'Kiel','Germany','DE','Kiel (Germany)',1,1,0),(23015,0,123003,'Kifissia','Greece','GR','Kifissia (Greece)',1,1,0),(23016,13995,123004,'Kilchberg','Switzerland','CH','Kilchberg (Switzerland)',1,1,0),(23017,14012,123005,'Killaloe','Ireland','IE','Killaloe (Ireland)',1,1,0),(23018,0,123006,'Killington','United States of America','US','Killington (United States of America)',1,1,0),(23019,0,123007,'Kilmarnock','United Kingdom','UK','Kilmarnock (United Kingdom)',1,1,0),(23020,14046,123008,'Kimberly','United States of America','US','Kimberly (United States of America)',1,1,0),(23021,14058,123009,'Kindersley','Canada','CA','Kindersley (Canada)',1,1,0),(23022,31214,123010,'King George','United States of America','US','King George (United States of America)',1,1,0),(23023,14066,123011,'Kingersheim','France','FR','Kingersheim (France)',1,1,0),(23024,14077,123012,'Kingsford','Australia','AU','Kingsford (Australia)',1,1,0),(23025,14084,123013,'Kingston','United States of America','US','Kingston (United States of America)',1,1,0),(23026,0,123014,'Kingston','United States of America','US','Kingston (United States of America)',1,1,0),(23027,0,123015,'Kingston','Australia','AU','Kingston (Australia)',1,1,0),(23028,14089,123016,'Kingstree','United States of America','US','Kingstree (United States of America)',1,1,0),(23029,0,123017,'Kinloch Rannoch','United Kingdom','UK','Kinloch Rannoch (United Kingdom)',1,1,0),(23030,0,123018,'Kinross','United Kingdom','UK','Kinross (United Kingdom)',1,1,0),(23031,0,123019,'Kintzheim','France','FR','Kintzheim (France)',1,1,0),(23032,0,123020,'Kirchberg am Wagram','Austria','AT','Kirchberg am Wagram (Austria)',1,1,0),(23033,14124,123021,'Kirchdorf','Germany','DE','Kirchdorf (Germany)',1,1,0),(23034,0,123022,'Kirchzell','Germany','DE','Kirchzell (Germany)',1,1,0),(23035,0,123023,'Kircija','Croatia','HR','Kircija (Croatia)',1,1,0),(23036,0,123024,'Kirkby Lonsdale','United Kingdom','UK','Kirkby Lonsdale (United Kingdom)',1,1,0),(23037,0,123025,'Kirkcaldy','United Kingdom','UK','Kirkcaldy (United Kingdom)',1,1,0),(23038,0,123026,'Kirkenaer','Norway','NO','Kirkenaer (Norway)',1,1,0),(23039,14142,123027,'Kirkenes','Norway','NO','Kirkenes (Norway)',1,1,0),(23040,14145,123028,'Kirkjubaejarklaustur','Iceland','IS','Kirkjubaejarklaustur (Iceland)',1,1,0),(23041,14147,123029,'Kirkland','United States of America','US','Kirkland (United States of America)',1,1,0),(23042,14150,123030,'Kirksville','United States of America','US','Kirksville (United States of America)',1,1,0),(23043,14154,123031,'Kirn','Germany','DE','Kirn (Germany)',1,1,0),(23044,0,123032,'Kirschentheuer','Austria','AT','Kirschentheuer (Austria)',1,1,0),(23045,0,123033,'Kiskunmajsa','Hungary','HU','Kiskunmajsa (Hungary)',1,1,0),(23046,14176,123034,'Kissimmee','United States of America','US','Kissimmee (United States of America)',1,1,0),(23047,0,123035,'Kivik','Sweden','SE','Kivik (Sweden)',1,1,0),(23048,0,123036,'Kiwengwa Beach','Tanzania','TZ','Kiwengwa Beach (Tanzania)',1,1,0),(23049,14203,123037,'Kizilagac','Turkey','TR','Kizilagac (Turkey)',1,1,0),(23050,0,123038,'Kizkalesi','Turkey','TR','Kizkalesi (Turkey)',1,1,0),(23051,0,123039,'Klanice','Croatia','HR','Klanice (Croatia)',1,1,0),(23052,0,123040,'Kleines Wiesental','Germany','DE','Kleines Wiesental (Germany)',1,1,0),(23053,0,123041,'Klein-Pochlarn','Austria','AT','Klein-Pochlarn (Austria)',1,1,0),(23054,0,123042,'Kleinsolk','Austria','AT','Kleinsolk (Austria)',1,1,0),(23055,14231,123043,'Klieken','Germany','DE','Klieken (Germany)',1,1,0),(23056,0,123044,'Klingenthal','Germany','DE','Klingenthal (Germany)',1,1,0),(23057,0,123045,'Kluisbergen','Belgium','BE','Kluisbergen (Belgium)',1,1,0),(23058,0,123046,'Knighton','United Kingdom','UK','Knighton (United Kingdom)',1,1,0),(23059,0,123047,'Knik Glacier','United States of America','US','Knik Glacier (United States of America)',1,1,0),(23060,0,123048,'Knivsta','Sweden','SE','Knivsta (Sweden)',1,1,0),(23061,0,123049,'Knockvicar','Ireland','IE','Knockvicar (Ireland)',1,1,0),(23062,0,123050,'Knullwald','Germany','DE','Knullwald (Germany)',1,1,0),(23063,0,123051,'Ko Chang','Thailand','TH','Ko Chang (Thailand)',1,1,0),(23064,0,123052,'Ko Lanta','Thailand','TH','Ko Lanta (Thailand)',1,1,0),(23065,0,123053,'Kobarid','Slovenia','SI','Kobarid (Slovenia)',1,1,0),(23066,14263,123054,'Kobe','Japan','JP','Kobe (Japan)',1,1,0),(23067,0,123055,'Kochel am See','Germany','DE','Kochel am See (Germany)',1,1,0),(23068,0,123056,'Kocicin','Croatia','HR','Kocicin (Croatia)',1,1,0),(23069,14300,123057,'Kohler','United States of America','US','Kohler (United States of America)',1,1,0),(23070,0,123058,'Kojetin','Czech Republic','CZ','Kojetin (Czech Republic)',1,1,0),(23071,14312,123059,'Kolbermoor','Germany','DE','Kolbermoor (Germany)',1,1,0),(23072,0,123060,'Kolbnitz','Austria','AT','Kolbnitz (Austria)',1,1,0),(23073,0,123061,'Kollerschlag','Austria','AT','Kollerschlag (Austria)',1,1,0),(23074,0,123062,'Komorno','Poland','PL','Komorno (Poland)',1,1,0),(23075,0,123063,'Konigstein (Oberpfalz)','Germany','DE','Konigstein (Oberpfalz) (Germany)',1,1,0),(23076,0,123064,'Konigswiesen','Austria','AT','Konigswiesen (Austria)',1,1,0),(23077,0,123065,'Konstanz/Constance','Germany','DE','Konstanz/Constance (Germany)',1,1,0),(23078,0,123066,'Konzell','Germany','DE','Konzell (Germany)',1,1,0),(23079,0,123067,'Korca','Albania','AL','Korca (Albania)',1,1,0),(23080,0,123068,'Korcula (Island)','Croatia','HR','Korcula (Island) (Croatia)',1,1,0),(23081,0,123069,'Korfos Bay','Greece','GR','Korfos Bay (Greece)',1,1,0),(23082,14403,123070,'Korsor','Denmark','DK','Korsor (Denmark)',1,1,0),(23083,0,123071,'Kortgene','Netherlands','NL','Kortgene (Netherlands)',1,1,0),(23084,0,123072,'Korzkiew','Poland','PL','Korzkiew (Poland)',1,1,0),(23085,0,123073,'Kostelec nad Orlici','Czech Republic','CZ','Kostelec nad Orlici (Czech Republic)',1,1,0),(23086,0,123074,'Kota Kinabalu','Malaysia','MY','Kota Kinabalu (Malaysia)',1,1,0),(23087,0,123075,'Kothen','Germany','DE','Kothen (Germany)',1,1,0),(23088,14441,123076,'Kotzebue','United States of America','US','Kotzebue (United States of America)',1,1,0),(23089,0,123077,'Koukla','Greece','GR','Koukla (Greece)',1,1,0),(23090,0,123078,'Kanali','Greece','GR','Kanali (Greece)',1,1,0),(23091,0,123079,'Kanapitsa Beach','Greece','GR','Kanapitsa Beach (Greece)',1,1,0),(23092,0,123080,'Kanawa Island','Indonesia','ID','Kanawa Island (Indonesia)',1,1,0),(23093,0,123081,'Kandava','Latvia','LV','Kandava (Latvia)',1,1,0),(23094,0,123082,'Kandel','Germany','DE','Kandel (Germany)',1,1,0),(23095,0,123083,'Kandern','Germany','DE','Kandern (Germany)',1,1,0),(23096,13524,123085,'Kapaau','United States of America','US','Kapaau (United States of America)',1,1,0),(23097,13526,123086,'Kapalua','United States of America','US','Kapalua (United States of America)',1,1,0),(23098,13540,123087,'Kappeln','Germany','DE','Kappeln (Germany)',1,1,0),(23099,13554,123088,'Karasjok','Norway','NO','Karasjok (Norway)',1,1,0),(23100,13558,123089,'Karavados','Greece','GR','Karavados (Greece)',1,1,0),(23101,0,123090,'Karbala','Iraq','IQ','Karbala (Iraq)',1,1,0),(23102,13567,123091,'Karfas','Greece','GR','Karfas (Greece)',1,1,0),(23103,0,123092,'Karigador','Croatia','HR','Karigador (Croatia)',1,1,0),(23104,0,123093,'Karlsbad','Germany','DE','Karlsbad (Germany)',1,1,0),(23105,13590,123094,'Karlstad','Sweden','SE','Karlstad (Sweden)',1,1,0),(23106,0,123095,'Karmi','Cyprus','CY','Karmi (Cyprus)',1,1,0),(23107,0,123096,'Karolinenkoog','Germany','DE','Karolinenkoog (Germany)',1,1,0),(23108,0,123097,'Karrantza Harana/Valle de Carranza','Spain','ES','Karrantza Harana/Valle de Carranza (Spain)',1,1,0),(23109,0,123099,'Kasanka-Nationalpark','Zambia','ZM','Kasanka-Nationalpark (Zambia)',1,1,0),(23110,13638,123100,'Kassandra','Greece','GR','Kassandra (Greece)',1,1,0),(23111,0,123101,'Kastel Novi','Croatia','HR','Kastel Novi (Croatia)',1,1,0),(23112,0,123102,'Kastel Stari','Croatia','HR','Kastel Stari (Croatia)',1,1,0),(23113,0,123103,'Kastrosikia','Greece','GR','Kastrosikia (Greece)',1,1,0),(23114,0,123104,'Katakolo','Greece','GR','Katakolo (Greece)',1,1,0),(23115,13668,123105,'Kataragama','Sri Lanka','LK','Kataragama (Sri Lanka)',1,1,0),(23116,0,123106,'Katarraktis','Greece','GR','Katarraktis (Greece)',1,1,0),(23117,0,123107,'Katelios','Greece','GR','Katelios (Greece)',1,1,0),(23118,13675,123109,'Katikati','New Zealand','NZ','Katikati (New Zealand)',1,1,0),(23119,13679,123110,'Kato Akourdalia','Cyprus','CY','Kato Akourdalia (Cyprus)',1,1,0),(23120,0,123111,'Kato Drys','Cyprus','CY','Kato Drys (Cyprus)',1,1,0),(23121,0,123112,'Kattowitz','Poland','PL','Kattowitz (Poland)',1,1,0),(23122,0,123113,'Katunayaka','Sri Lanka','LK','Katunayaka (Sri Lanka)',1,1,0),(23123,0,123114,'Katwijk','Netherlands','NL','Katwijk (Netherlands)',1,1,0),(23124,0,123115,'Katy Wroclawskie','Poland','PL','Katy Wroclawskie (Poland)',1,1,0),(23125,0,123116,'Kavaklidere','Turkey','TR','Kavaklidere (Turkey)',1,1,0),(23126,0,123117,'Kazincbarcika','Hungary','HU','Kazincbarcika (Hungary)',1,1,0),(23127,13745,123118,'Kea','Greece','GR','Kea (Greece)',1,1,0),(23128,0,123119,'Keadue','Ireland','IE','Keadue (Ireland)',1,1,0),(23129,0,123120,'Kedainiai','Lithuania','LT','Kedainiai (Lithuania)',1,1,0),(23130,13759,123121,'Kediri','Indonesia','ID','Kediri (Indonesia)',1,1,0),(23131,0,123122,'Kelbrook','United Kingdom','UK','Kelbrook (United Kingdom)',1,1,0),(23132,0,123123,'Kematen','Austria','AT','Kematen (Austria)',1,1,0),(23133,13814,123124,'Kemmel','Belgium','BE','Kemmel (Belgium)',1,1,0),(23134,13815,123125,'Kemmerer','United States of America','US','Kemmerer (United States of America)',1,1,0),(23135,0,123126,'Kempfeld','Germany','DE','Kempfeld (Germany)',1,1,0),(23136,0,123127,'Kendal','United Kingdom','UK','Kendal (United Kingdom)',1,1,0),(23137,13825,123128,'Kendall','United States of America','US','Kendall (United States of America)',1,1,0),(23138,0,123129,'Kendwa','Tanzania','TZ','Kendwa (Tanzania)',1,1,0),(23139,13854,123130,'Kenosha','United States of America','US','Kenosha (United States of America)',1,1,0),(23140,13856,123131,'Kensington','Canada','CA','Kensington (Canada)',1,1,0),(23141,13860,123132,'Kent','United States of America','US','Kent (United States of America)',1,1,0),(23142,13870,123133,'Kentwood','United States of America','US','Kentwood (United States of America)',1,1,0),(23143,13871,123134,'Kenwood','United States of America','US','Kenwood (United States of America)',1,1,0),(23144,13872,123135,'Keokuk','United States of America','US','Keokuk (United States of America)',1,1,0),(23145,13874,123136,'Kep','Cambodia','KH','Kep (Cambodia)',1,1,0),(23146,13878,123137,'Kerch','Ukraine','UA','Kerch (Ukraine)',1,1,0),(23147,0,123138,'Kerfany-les-Pins','France','FR','Kerfany-les-Pins (France)',1,1,0),(23148,0,123139,'Kermanshah','Iran','IR','Kermanshah (Iran)',1,1,0),(23149,13890,123140,'Kernville','United States of America','US','Kernville (United States of America)',1,1,0),(23150,13891,123141,'Kerobokan','Indonesia','ID','Kerobokan (Indonesia)',1,1,0),(23151,0,123142,'Kerr Sering','Gambia','GM','Kerr Sering (Gambia)',1,1,0),(23152,0,123143,'Kerzenheim','Germany','DE','Kerzenheim (Germany)',1,1,0),(23153,0,123144,'Kesalahti','Finland','FI','Kesalahti (Finland)',1,1,0),(23154,0,123145,'Ketpo','Hungary','HU','Ketpo (Hungary)',1,1,0),(23155,13909,123146,'Kettering','Australia','AU','Kettering (Australia)',1,1,0),(23156,0,123147,'Kettlewell','United Kingdom','UK','Kettlewell (United Kingdom)',1,1,0),(23157,13926,123148,'Kfardebiane','Lebanon','LB','Kfardebiane (Lebanon)',1,1,0),(23158,0,123149,'Khomas Hochland','Namibia','NA','Khomas Hochland (Namibia)',1,1,0),(23159,0,123150,'Khon Kaen','Thailand','TH','Khon Kaen (Thailand)',1,1,0),(23160,13961,123151,'Khorfakkan','United Arab Emirates','AE','Khorfakkan (United Arab Emirates)',1,1,0),(23161,0,123152,'Khuzhir','Russia','RU','Khuzhir (Russia)',1,1,0),(23162,0,123153,'Kiato','Greece','GR','Kiato (Greece)',1,1,0),(23163,0,123154,'Kibale Nationalpark','Uganda','UG','Kibale Nationalpark (Uganda)',1,1,0),(23164,0,123155,'Kibuye','Rwanda','RW','Kibuye (Rwanda)',1,1,0),(23165,13981,123156,'Kielce','Poland','PL','Kielce (Poland)',1,1,0),(23166,0,123157,'Kilchrenan','United Kingdom','UK','Kilchrenan (United Kingdom)',1,1,0),(23167,0,123158,'Kilfinane','Ireland','IE','Kilfinane (Ireland)',1,1,0),(23168,14009,123159,'Kilkenny','Ireland','IE','Kilkenny (Ireland)',1,1,0),(23169,0,123160,'Killin','United Kingdom','UK','Killin (United Kingdom)',1,1,0),(23170,14028,123161,'Killybegs','Ireland','IE','Killybegs (Ireland)',1,1,0),(23171,0,123162,'Kilmallock','Ireland','IE','Kilmallock (Ireland)',1,1,0),(23172,0,123163,'Kilmelford','United Kingdom','UK','Kilmelford (United Kingdom)',1,1,0),(23173,0,123164,'Kilstett','France','FR','Kilstett (France)',1,1,0),(23174,0,123165,'Kinclaven/Stanley','United Kingdom','UK','Kinclaven/Stanley (United Kingdom)',1,1,0),(23175,14064,123166,'Kingaroy','Australia','AU','Kingaroy (Australia)',1,1,0),(23176,14065,123167,'Kingdom City','United States of America','US','Kingdom City (United States of America)',1,1,0),(23177,0,123168,'Kings Canyon Nationalpark','United States of America','US','Kings Canyon Nationalpark (United States of America)',1,1,0),(23178,0,123169,'Kings Langley','United Kingdom','UK','Kings Langley (United Kingdom)',1,1,0),(23179,0,123170,'King\'s Lynn','United Kingdom','UK','King\'s Lynn (United Kingdom)',1,1,0),(23180,0,123171,'Kingstown','St. Vincent & the Grenadines','VC','Kingstown (St. Vincent & the Grenadines)',1,1,0),(23181,0,123172,'Kingswear','United Kingdom','UK','Kingswear (United Kingdom)',1,1,0),(23182,0,123173,'Kinna','Sweden','SE','Kinna (Sweden)',1,1,0),(23183,14104,123174,'Kinshasa','Congo (Rep. Dem.)','CD','Kinshasa (Congo (Rep. Dem.))',1,1,0),(23184,14107,123175,'Kintamani','Indonesia','ID','Kintamani (Indonesia)',1,1,0),(23185,14111,123176,'Kinvara','Ireland','IE','Kinvara (Ireland)',1,1,0),(23186,0,123177,'Kippel','Switzerland','CH','Kippel (Switzerland)',1,1,0),(23187,0,123178,'Kirchberg im Wald','Germany','DE','Kirchberg im Wald (Germany)',1,1,0),(23188,0,123179,'Kirchheim','Germany','DE','Kirchheim (Germany)',1,1,0),(23189,0,123180,'Kirchhundem','Germany','DE','Kirchhundem (Germany)',1,1,0),(23190,0,123181,'Kirchundem-Oberhundem','Germany','DE','Kirchundem-Oberhundem (Germany)',1,1,0),(23191,0,123182,'Kirkland Lake','Canada','CA','Kirkland Lake (Canada)',1,1,0),(23192,0,123183,'Kirkwall','United Kingdom','UK','Kirkwall (United Kingdom)',1,1,0),(23193,0,123184,'Kitchener','Canada','CA','Kitchener (Canada)',1,1,0),(23194,14193,123185,'Kittanning','United States of America','US','Kittanning (United States of America)',1,1,0),(23195,0,123186,'Kitzeck im Sausal','Austria','AT','Kitzeck im Sausal (Austria)',1,1,0),(23196,13447,123187,'Kambos','Greece','GR','Kambos (Greece)',1,1,0),(23197,13450,123188,'Kamen','Germany','DE','Kamen (Germany)',1,1,0),(23198,0,123189,'Kamena-Vourla','Greece','GR','Kamena-Vourla (Greece)',1,1,0),(23199,0,123190,'Kamenice nad Lipou','Czech Republic','CZ','Kamenice nad Lipou (Czech Republic)',1,1,0),(23200,0,123191,'Kammerforst','Germany','DE','Kammerforst (Germany)',1,1,0),(23201,13463,123192,'Kamogawa','Japan','JP','Kamogawa (Japan)',1,1,0),(23202,0,123193,'Kampor','Croatia','HR','Kampor (Croatia)',1,1,0),(23203,0,123194,'Kamuela','United States of America','US','Kamuela (United States of America)',1,1,0),(23204,0,123195,'Kandia','Greece','GR','Kandia (Greece)',1,1,0),(23205,13501,123196,'Kangerlussuaq','Greenland','GL','Kangerlussuaq (Greenland)',1,1,0),(23206,0,123197,'Kanilai','Gambia','GM','Kanilai (Gambia)',1,1,0),(23207,0,123198,'Kapetaniana','Greece','GR','Kapetaniana (Greece)',1,1,0),(23208,13529,123199,'Kapfenberg','Austria','AT','Kapfenberg (Austria)',1,1,0),(23209,0,123200,'Kapiti Island','New Zealand','NZ','Kapiti Island (New Zealand)',1,1,0),(23210,13533,123201,'Kaplice','Czech Republic','CZ','Kaplice (Czech Republic)',1,1,0),(23211,0,123202,'Kapolnasnyek','Hungary','HU','Kapolnasnyek (Hungary)',1,1,0),(23212,0,123203,'Kaposvar','Hungary','HU','Kaposvar (Hungary)',1,1,0),(23213,13550,123205,'Karambunai','Malaysia','MY','Karambunai (Malaysia)',1,1,0),(23214,0,123206,'Karavomilos','Greece','GR','Karavomilos (Greece)',1,1,0),(23215,0,123207,'Karawang','Indonesia','ID','Karawang (Indonesia)',1,1,0),(23216,13561,123208,'Kardamili','Greece','GR','Kardamili (Greece)',1,1,0),(23217,0,123209,'Karersee','Italy','IT','Karersee (Italy)',1,1,0),(23218,13572,123210,'Karibib','Namibia','NA','Karibib (Namibia)',1,1,0),(23219,13574,123211,'Karikari Peninsula','New Zealand','NZ','Karikari Peninsula (New Zealand)',1,1,0),(23220,0,123212,'Karkle','Lithuania','LT','Karkle (Lithuania)',1,1,0),(23221,0,123213,'Karlstadt','Germany','DE','Karlstadt (Germany)',1,1,0),(23222,13598,123214,'Karoussades','Greece','GR','Karoussades (Greece)',1,1,0),(23223,0,123215,'Karrebaeksminde','Denmark','DK','Karrebaeksminde (Denmark)',1,1,0),(23224,13610,123216,'Karterados','Greece','GR','Karterados (Greece)',1,1,0),(23225,0,123219,'Kassari','Estonia','EE','Kassari (Estonia)',1,1,0),(23226,13647,123220,'Kassel','Germany','DE','Kassel (Germany)',1,1,0),(23227,0,123221,'Kastelruth','Italy','IT','Kastelruth (Italy)',1,1,0),(23228,13671,123222,'Katherine','Australia','AU','Katherine (Australia)',1,1,0),(23229,13674,123223,'Kathu','Thailand','TH','Kathu (Thailand)',1,1,0),(23230,13688,123224,'Katsuura','Japan','JP','Katsuura (Japan)',1,1,0),(23231,0,123225,'Kauai','United States of America','US','Kauai (United States of America)',1,1,0),(23232,13707,123226,'Kauhava','Finland','FI','Kauhava (Finland)',1,1,0),(23233,13726,123228,'Kawagoe','Japan','JP','Kawagoe (Japan)',1,1,0),(23234,13734,123229,'Kayenta','United States of America','US','Kayenta (United States of America)',1,1,0),(23235,0,123230,'Kearney','United States of America','US','Kearney (United States of America)',1,1,0),(23236,0,123232,'Keel',NULL,NULL,'Keel ()',1,1,0),(23237,13765,123233,'Keene','United States of America','US','Keene (United States of America)',1,1,0),(23238,0,123234,'Kefalari','Greece','GR','Kefalari (Greece)',1,1,0),(23239,0,123235,'Keflafik','Iceland','IS','Keflafik (Iceland)',1,1,0),(23240,0,123236,'Kegworth','United Kingdom','UK','Kegworth (United Kingdom)',1,1,0),(23241,13781,123237,'Keilor','Australia','AU','Keilor (Australia)',1,1,0),(23242,0,123238,'Kelana Jaya','Malaysia','MY','Kelana Jaya (Malaysia)',1,1,0),(23243,13794,123239,'Kell','Germany','DE','Kell (Germany)',1,1,0),(23244,13795,123240,'Kellberg','Germany','DE','Kellberg (Germany)',1,1,0),(23245,0,123241,'Kellerberg','Austria','AT','Kellerberg (Austria)',1,1,0),(23246,0,123242,'Kellington','United Kingdom','UK','Kellington (United Kingdom)',1,1,0),(23247,13800,123243,'Kells','Ireland','IE','Kells (Ireland)',1,1,0),(23248,13807,123244,'Kelso','United States of America','US','Kelso (United States of America)',1,1,0),(23249,0,123245,'Kemble','Canada','CA','Kemble (Canada)',1,1,0),(23250,13843,123246,'Kennebunkport','United States of America','US','Kennebunkport (United States of America)',1,1,0),(23251,13849,123247,'Kennewick','United States of America','US','Kennewick (United States of America)',1,1,0),(23252,13851,123248,'Kennicott','United States of America','US','Kennicott (United States of America)',1,1,0),(23253,0,123249,'Kent','United States of America','US','Kent (United States of America)',1,1,0),(23254,0,123250,'Kent','United States of America','US','Kent (United States of America)',1,1,0),(23255,13881,123251,'Kerhonkson','United States of America','US','Kerhonkson (United States of America)',1,1,0),(23256,0,123252,'Kerpen (Eifel)','Germany','DE','Kerpen (Eifel) (Germany)',1,1,0),(23257,31204,123253,'Kerry','Ireland','IE','Kerry (Ireland)',1,1,0),(23258,13896,123254,'Kerteminde','Denmark','DK','Kerteminde (Denmark)',1,1,0),(23259,13910,123255,'Kettle Falls','United States of America','US','Kettle Falls (United States of America)',1,1,0),(23260,0,123256,'Kgalagadi','South Africa','ZA','Kgalagadi (South Africa)',1,1,0),(23261,0,123257,'Khabez','Russia','RU','Khabez (Russia)',1,1,0),(23262,13983,123260,'Kiental','Switzerland','CH','Kiental (Switzerland)',1,1,0),(23263,0,123261,'Kiepersol','South Africa','ZA','Kiepersol (South Africa)',1,1,0),(23264,0,123262,'Kierspe','Germany','DE','Kierspe (Germany)',1,1,0),(23265,14002,123263,'Kilgore','United States of America','US','Kilgore (United States of America)',1,1,0),(23266,14004,123264,'Kilifi','Kenya','KE','Kilifi (Kenya)',1,1,0),(23267,0,123265,'Kiljava','Finland','FI','Kiljava (Finland)',1,1,0),(23268,14015,123266,'Killarney','Canada','CA','Killarney (Canada)',1,1,0),(23269,0,123267,'Killearn','United Kingdom','UK','Killearn (United Kingdom)',1,1,0),(23270,0,123268,'Kilmuckridge','Ireland','IE','Kilmuckridge (Ireland)',1,1,0),(23271,14059,123269,'Kinding','Germany','DE','Kinding (Germany)',1,1,0),(23272,14061,123270,'Kineta','Greece','GR','Kineta (Greece)',1,1,0),(23273,31216,123271,'King Salmon','United States of America','US','King Salmon (United States of America)',1,1,0),(23274,14067,123272,'Kingfield','United States of America','US','Kingfield (United States of America)',1,1,0),(23275,0,123273,'Kingsbridge','United Kingdom','UK','Kingsbridge (United Kingdom)',1,1,0),(23276,14075,123274,'Kingscliff','Australia','AU','Kingscliff (Australia)',1,1,0),(23277,14083,123275,'Kingston','Jamaica','JM','Kingston (Jamaica)',1,1,0),(23278,0,123276,'Kingston Springs','United States of America','US','Kingston Springs (United States of America)',1,1,0),(23279,0,123277,'Kinyra (Kinira)','Greece','GR','Kinyra (Kinira) (Greece)',1,1,0),(23280,0,123278,'Kirchbach','Austria','AT','Kirchbach (Austria)',1,1,0),(23281,0,123279,'Kirchberg an der Jagst','Germany','DE','Kirchberg an der Jagst (Germany)',1,1,0),(23282,0,123280,'Kirchdorf bei Haag','Germany','DE','Kirchdorf bei Haag (Germany)',1,1,0),(23283,0,123281,'Kirchheim unter Teck','Germany','DE','Kirchheim unter Teck (Germany)',1,1,0),(23284,0,123282,'Kirkan?r','Norway','NO','Kirkan?r (Norway)',1,1,0),(23285,0,123283,'Kirkby Fleetham','United Kingdom','UK','Kirkby Fleetham (United Kingdom)',1,1,0),(23286,0,123284,'Kirkel','Germany','DE','Kirkel (Germany)',1,1,0),(23287,14153,123285,'Kirkwood','South Africa','ZA','Kirkwood (South Africa)',1,1,0),(23288,14152,123286,'Kirkwood','United States of America','US','Kirkwood (United States of America)',1,1,0),(23289,0,123287,'Kirow','Russia','RU','Kirow (Russia)',1,1,0),(23290,0,123288,'Kirrwiller','France','FR','Kirrwiller (France)',1,1,0),(23291,14160,123289,'Kirschau','Germany','DE','Kirschau (Germany)',1,1,0),(23292,0,123290,'Kiskore','Hungary','HU','Kiskore (Hungary)',1,1,0),(23293,14194,123291,'Kittery','United States of America','US','Kittery (United States of America)',1,1,0),(23294,14199,123292,'Kitzbuhel','Austria','AT','Kitzbuhel (Austria)',1,1,0),(23295,0,123293,'Klacken','Sweden','SE','Klacken (Sweden)',1,1,0),(23296,14212,123294,'Klamath','United States of America','US','Klamath (United States of America)',1,1,0),(23297,0,123295,'Klausen','Germany','DE','Klausen (Germany)',1,1,0),(23298,0,123296,'Klein Koris','Germany','DE','Klein Koris (Germany)',1,1,0),(23299,14217,123297,'Klein Nemerow','Germany','DE','Klein Nemerow (Germany)',1,1,0),(23300,0,123298,'Kleindiex','Austria','AT','Kleindiex (Austria)',1,1,0),(23301,0,123299,'Konigssee','Germany','DE','Konigssee (Germany)',1,1,0),(23302,14360,123300,'Konitsa','Greece','GR','Konitsa (Greece)',1,1,0),(23303,0,123301,'Kontomari','Greece','GR','Kontomari (Greece)',1,1,0),(23304,14377,123302,'Kopavogur','Iceland','IS','Kopavogur (Iceland)',1,1,0),(23305,14379,123303,'Koper','Slovenia','SI','Koper (Slovenia)',1,1,0),(23306,14381,123304,'Koprivnica','Croatia','HR','Koprivnica (Croatia)',1,1,0),(23307,0,123305,'Kopriwschtiza','Bulgaria','BG','Kopriwschtiza (Bulgaria)',1,1,0),(23308,0,123306,'Korbielow','Poland','PL','Korbielow (Poland)',1,1,0),(23309,0,123307,'Korfos','Greece','GR','Korfos (Greece)',1,1,0),(23310,0,123308,'Korissia','Greece','GR','Korissia (Greece)',1,1,0),(23311,0,123309,'Korneuburg','Austria','AT','Korneuburg (Austria)',1,1,0),(23312,14404,123310,'Kortenberg','Belgium','BE','Kortenberg (Belgium)',1,1,0),(23313,0,123311,'Kosobudz','Poland','PL','Kosobudz (Poland)',1,1,0),(23314,0,123313,'Kotor','Montenegro','ME','Kotor (Montenegro)',1,1,0),(23315,0,123315,'Kozino','Croatia','HR','Kozino (Croatia)',1,1,0),(23316,0,123316,'Kraj Drage','Croatia','HR','Kraj Drage (Croatia)',1,1,0),(23317,0,123317,'Krakaudorf','Austria','AT','Krakaudorf (Austria)',1,1,0),(23318,14473,123318,'Kraliky','Czech Republic','CZ','Kraliky (Czech Republic)',1,1,0),(23319,0,123319,'Kraljevica','Croatia','HR','Kraljevica (Croatia)',1,1,0),(23320,0,123320,'Kraljevo','Serbia','RS','Kraljevo (Serbia)',1,1,0),(23321,14483,123321,'Krapinske Toplice','Croatia','HR','Krapinske Toplice (Croatia)',1,1,0),(23322,0,123322,'Krassow','Germany','DE','Krassow (Germany)',1,1,0),(23323,14491,123323,'Kratie','Cambodia','KH','Kratie (Cambodia)',1,1,0),(23324,0,123324,'Krattigen','Switzerland','CH','Krattigen (Switzerland)',1,1,0),(23325,0,123325,'Krecovice','Czech Republic','CZ','Krecovice (Czech Republic)',1,1,0),(23326,0,123326,'Krems in Karnten','Austria','AT','Krems in Karnten (Austria)',1,1,0),(23327,14499,123327,'Krestena','Greece','GR','Krestena (Greece)',1,1,0),(23328,0,123328,'Crete','Greece','GR','Crete (Greece)',1,1,0),(23329,0,123329,'Kreuzwertheim','Germany','DE','Kreuzwertheim (Germany)',1,1,0),(23330,14502,123330,'Krieglach','Austria','AT','Krieglach (Austria)',1,1,0),(23331,14507,123331,'Krimml','Austria','AT','Krimml (Austria)',1,1,0),(23332,0,123332,'Kringa','Croatia','HR','Kringa (Croatia)',1,1,0),(23333,0,123333,'Krios-Beach','Greece','GR','Krios-Beach (Greece)',1,1,0),(23334,14513,123335,'Kristinehamn','Sweden','SE','Kristinehamn (Sweden)',1,1,0),(23335,0,123336,'Krokom','Sweden','SE','Krokom (Sweden)',1,1,0),(23336,0,123337,'Krumbach (Vorarlberg)','Austria','AT','Krumbach (Vorarlberg) (Austria)',1,1,0),(23337,0,123338,'Krun','Germany','DE','Krun (Germany)',1,1,0),(23338,0,123339,'Kuala Nerang','Malaysia','MY','Kuala Nerang (Malaysia)',1,1,0),(23339,14543,123340,'Kubu','Indonesia','ID','Kubu (Indonesia)',1,1,0),(23340,14558,123341,'Kuhmo','Finland','FI','Kuhmo (Finland)',1,1,0),(23341,14559,123342,'Kuhtai','Austria','AT','Kuhtai (Austria)',1,1,0),(23342,14560,123343,'Kui Buri','Thailand','TH','Kui Buri (Thailand)',1,1,0),(23343,14587,123345,'Kumluca','Turkey','TR','Kumluca (Turkey)',1,1,0),(23344,0,123346,'Kumul','China','CN','Kumul (China)',1,1,0),(23345,14594,123347,'Kunming','China','CN','Kunming (China)',1,1,0),(23346,0,123348,'Kunow','Poland','PL','Kunow (Poland)',1,1,0),(23347,0,123349,'Kurobe','Japan','JP','Kurobe (Japan)',1,1,0),(23348,0,123350,'Kurrajong Heights','Australia','AU','Kurrajong Heights (Australia)',1,1,0),(23349,0,123351,'Kursk','Russia','RU','Kursk (Russia)',1,1,0),(23350,0,123352,'Kurzras','Italy','IT','Kurzras (Italy)',1,1,0),(23351,0,123353,'Kusatsu (Shiga)','Japan','JP','Kusatsu (Shiga) (Japan)',1,1,0),(23352,14624,123354,'Kusel','Germany','DE','Kusel (Germany)',1,1,0),(23353,14630,123355,'Kusnacht','Switzerland','CH','Kusnacht (Switzerland)',1,1,0),(23354,0,123356,'Kussaberg','Germany','DE','Kussaberg (Germany)',1,1,0),(23355,0,123357,'Kustendil','Bulgaria','BG','Kustendil (Bulgaria)',1,1,0),(23356,14639,123358,'Kutna Hora','Czech Republic','CZ','Kutna Hora (Czech Republic)',1,1,0),(23357,0,123359,'Kuwait City','Kuwait','KW','Kuwait City (Kuwait)',1,1,0),(23358,0,123360,'Kyburg-Buchegg','Switzerland','CH','Kyburg-Buchegg (Switzerland)',1,1,0),(23359,0,123361,'Kyle','Canada','CA','Kyle (Canada)',1,1,0),(23360,0,123362,'Kyongju','South Korea','KR','Kyongju (South Korea)',1,1,0),(23361,14674,123363,'Kyoto','Japan','JP','Kyoto (Japan)',1,1,0),(23362,0,123364,'Kyparissia','Greece','GR','Kyparissia (Greece)',1,1,0),(23363,14679,123365,'Kythnos','Greece','GR','Kythnos (Greece)',1,1,0),(23364,0,123366,'L\' Epine','France','FR','L\' Epine (France)',1,1,0),(23365,0,123367,'La Boisse','France','FR','La Boisse (France)',1,1,0),(23366,0,123368,'La Brasse','France','FR','La Brasse (France)',1,1,0),(23367,31255,123369,'La Calahorra','Spain','ES','La Calahorra (Spain)',1,1,0),(23368,0,123370,'La Caletta','Italy','IT','La Caletta (Italy)',1,1,0),(23369,31259,123371,'La Canourgue','France','FR','La Canourgue (France)',1,1,0),(23370,0,123372,'La Cavalerie','France','FR','La Cavalerie (France)',1,1,0),(23371,0,123373,'La Ceiba','Honduras','HN','La Ceiba (Honduras)',1,1,0),(23372,31270,123374,'La Chapelle-en-Serval','France','FR','La Chapelle-en-Serval (France)',1,1,0),(23373,0,123375,'La Charite sur Loire','France','FR','La Charite sur Loire (France)',1,1,0),(23374,31276,123376,'La Chaussee-Saint-Victor','France','FR','La Chaussee-Saint-Victor (France)',1,1,0),(23375,31285,123377,'La Clusaz','France','FR','La Clusaz (France)',1,1,0),(23376,31289,123378,'La Coquille','France','FR','La Coquille (France)',1,1,0),(23377,31294,123379,'La Couarde-sur-Mer','France','FR','La Couarde-sur-Mer (France)',1,1,0),(23378,0,123380,'La Cueva','Spain','ES','La Cueva (Spain)',1,1,0),(23379,31304,123381,'La Cumbre','Argentina','AR','La Cumbre (Argentina)',1,1,0),(23380,31308,123382,'La Digue Island','Seychelles','SC','La Digue Island (Seychelles)',1,1,0),(23381,31310,123383,'La Escalona','Spain','ES','La Escalona (Spain)',1,1,0),(23382,31315,123384,'La Farlede','France','FR','La Farlede (France)',1,1,0),(23383,0,123385,'La Fayette','United States of America','US','La Fayette (United States of America)',1,1,0),(23384,0,123386,'La Ferte-Saint-Cyr','France','FR','La Ferte-Saint-Cyr (France)',1,1,0),(23385,0,123387,'La Foux-d\'Allos','France','FR','La Foux-d\'Allos (France)',1,1,0),(23386,31345,123388,'La Grange','United States of America','US','La Grange (United States of America)',1,1,0),(23387,31349,123389,'La Grave','France','FR','La Grave (France)',1,1,0),(23388,0,123390,'La Guingueta d\'Aneu','Spain','ES','La Guingueta d\'Aneu (Spain)',1,1,0),(23389,0,123391,'La Houssaye','France','FR','La Houssaye (France)',1,1,0),(23390,31364,123392,'La Jolla','United States of America','US','La Jolla (United States of America)',1,1,0),(23391,31365,123393,'La Jonquera','Spain','ES','La Jonquera (Spain)',1,1,0),(23392,31396,123394,'La Mongie','France','FR','La Mongie (France)',1,1,0),(23393,31402,123395,'La Muela','Spain','ES','La Muela (Spain)',1,1,0),(23394,0,123396,'La Pedera','Uruguay','UY','La Pedera (Uruguay)',1,1,0),(23395,0,123397,'La Pereda','Spain','ES','La Pereda (Spain)',1,1,0),(23396,31426,123398,'La Pine','United States of America','US','La Pine (United States of America)',1,1,0),(23397,31429,123399,'La Place','United States of America','US','La Place (United States of America)',1,1,0),(23398,0,123400,'La Rambla','Spain','ES','La Rambla (Spain)',1,1,0),(23399,31463,123401,'La Roche-Posay','France','FR','La Roche-Posay (France)',1,1,0),(23400,0,123402,'La Roque-Gageac','France','FR','La Roque-Gageac (France)',1,1,0),(23401,31478,123403,'La Salle-les-Alpes','France','FR','La Salle-les-Alpes (France)',1,1,0),(23402,31487,123404,'La Seyne-sur-Mer','France','FR','La Seyne-sur-Mer (France)',1,1,0),(23403,0,123405,'La Tour de Salvagny','France','FR','La Tour de Salvagny (France)',1,1,0),(23404,0,123406,'La Tzoumaz','Switzerland','CH','La Tzoumaz (Switzerland)',1,1,0),(23405,0,123407,'Laaber','Germany','DE','Laaber (Germany)',1,1,0),(23406,0,123408,'Labaroche','France','FR','Labaroche (France)',1,1,0),(23407,12958,123409,'Izmir','Turkey','TR','Izmir (Turkey)',1,1,0),(23408,12959,123410,'Izmit','Turkey','TR','Izmit (Turkey)',1,1,0),(23409,0,123411,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(23410,0,123412,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(23411,0,123413,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(23412,0,123414,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(23413,0,123415,'Jacksonville Beach','United States of America','US','Jacksonville Beach (United States of America)',1,1,0),(23414,0,123416,'Jadranovo','Croatia','HR','Jadranovo (Croatia)',1,1,0),(23415,0,123417,'Jaffna','Sri Lanka','LK','Jaffna (Sri Lanka)',1,1,0),(23416,12988,123418,'Jaffrey','United States of America','US','Jaffrey (United States of America)',1,1,0),(23417,0,123419,'Jafre','Spain','ES','Jafre (Spain)',1,1,0),(23418,13010,123421,'Jalpan de Serra','Mexico','MX','Jalpan de Serra (Mexico)',1,1,0),(23419,0,123423,'Janow Lubelski','Poland','PL','Janow Lubelski (Poland)',1,1,0),(23420,13031,123424,'Jaraba','Spain','ES','Jaraba (Spain)',1,1,0),(23421,0,123425,'Jargeau','France','FR','Jargeau (France)',1,1,0),(23422,0,123426,'Jasna','Slovakia','SK','Jasna (Slovakia)',1,1,0),(23423,0,123427,'Jasper','United States of America','US','Jasper (United States of America)',1,1,0),(23424,0,123428,'Jausern (Saalbach)','Austria','AT','Jausern (Saalbach) (Austria)',1,1,0),(23425,0,123429,'Jaworzno','Poland','PL','Jaworzno (Poland)',1,1,0),(23426,0,123430,'Jefferson','United States of America','US','Jefferson (United States of America)',1,1,0),(23427,0,123431,'Jeffersonville','United States of America','US','Jeffersonville (United States of America)',1,1,0),(23428,13073,123432,'Jekyll Island','United States of America','US','Jekyll Island (United States of America)',1,1,0),(23429,0,123433,'Jelez','Russia','RU','Jelez (Russia)',1,1,0),(23430,0,123434,'Jelov Klanac','Croatia','HR','Jelov Klanac (Croatia)',1,1,0),(23431,13078,123435,'Jember','Indonesia','ID','Jember (Indonesia)',1,1,0),(23432,0,123436,'Jennings','United States of America','US','Jennings (United States of America)',1,1,0),(23433,0,123437,'Jerbourg Point','United Kingdom','UK','Jerbourg Point (United Kingdom)',1,1,0),(23434,0,123438,'Jerez de la Frontera','Spain','ES','Jerez de la Frontera (Spain)',1,1,0),(23435,13102,123439,'Jerte','Spain','ES','Jerte (Spain)',1,1,0),(23436,13103,123440,'Jerudong','Brunei Darussalam','BN','Jerudong (Brunei Darussalam)',1,1,0),(23437,0,123441,'Jezersko','Slovenia','SI','Jezersko (Slovenia)',1,1,0),(23438,13148,123442,'Jimbaran','Indonesia','ID','Jimbaran (Indonesia)',1,1,0),(23439,0,123443,'Jingbian','China','CN','Jingbian (China)',1,1,0),(23440,13162,123444,'Jinja','Uganda','UG','Jinja (Uganda)',1,1,0),(23441,13173,123446,'Jiujiang','China','CN','Jiujiang (China)',1,1,0),(23442,13177,123447,'Jixi','China','CN','Jixi (China)',1,1,0),(23443,13183,123448,'Jocotepec','Mexico','MX','Jocotepec (Mexico)',1,1,0),(23444,0,123449,'Joditz','Germany','DE','Joditz (Germany)',1,1,0),(23445,13195,123450,'Johnson','United States of America','US','Johnson (United States of America)',1,1,0),(23446,13207,123451,'Joliet','United States of America','US','Joliet (United States of America)',1,1,0),(23447,0,123452,'Jonaker','Sweden','SE','Jonaker (Sweden)',1,1,0),(23448,0,123453,'Jones Mills','United States of America','US','Jones Mills (United States of America)',1,1,0),(23449,13216,123454,'Jonesboro','United States of America','US','Jonesboro (United States of America)',1,1,0),(23450,0,123455,'Jonesboro','United States of America','US','Jonesboro (United States of America)',1,1,0),(23451,13222,123456,'Jons','France','FR','Jons (France)',1,1,0),(23452,0,123457,'Jonsdorf','Germany','DE','Jonsdorf (Germany)',1,1,0),(23453,0,123458,'Joshua Tree','United States of America','US','Joshua Tree (United States of America)',1,1,0),(23454,13244,123459,'Joucas','France','FR','Joucas (France)',1,1,0),(23455,13248,123460,'Jourdanton','United States of America','US','Jourdanton (United States of America)',1,1,0),(23456,0,123461,'Juan Griego','Venezuela','VE','Juan Griego (Venezuela)',1,1,0),(23457,13264,123462,'Judenburg','Austria','AT','Judenburg (Austria)',1,1,0),(23458,0,123463,'Julbach-Buch','Germany','DE','Julbach-Buch (Germany)',1,1,0),(23459,13277,123464,'Julian','United States of America','US','Julian (United States of America)',1,1,0),(23460,0,123465,'Juliusruh','Germany','DE','Juliusruh (Germany)',1,1,0),(23461,13283,123466,'Jumieges','France','FR','Jumieges (France)',1,1,0),(23462,13294,123467,'Junin de los Andes','Argentina','AR','Junin de los Andes (Argentina)',1,1,0),(23463,0,123468,'Jurancon','France','FR','Jurancon (France)',1,1,0),(23464,0,123470,'Jyderup','Denmark','DK','Jyderup (Denmark)',1,1,0),(23465,0,123471,'Kaaresuvanto','Finland','FI','Kaaresuvanto (Finland)',1,1,0),(23466,13315,123472,'Kaatsheuvel','Netherlands','NL','Kaatsheuvel (Netherlands)',1,1,0),(23467,0,123473,'Kadan','Czech Republic','CZ','Kadan (Czech Republic)',1,1,0),(23468,13329,123474,'Kadoma','Zimbabwe','ZW','Kadoma (Zimbabwe)',1,1,0),(23469,0,123475,'Kagar','Germany','DE','Kagar (Germany)',1,1,0),(23470,13376,123477,'Kalaheo','United States of America','US','Kalaheo (United States of America)',1,1,0),(23471,0,123478,'Kalamaki (Chania)','Greece','GR','Kalamaki (Chania) (Greece)',1,1,0),(23472,0,123479,'Kalamatiya','Sri Lanka','LK','Kalamatiya (Sri Lanka)',1,1,0),(23473,13383,123480,'Kalamazoo','United States of America','US','Kalamazoo (United States of America)',1,1,0),(23474,0,123481,'Kalamitsi','Greece','GR','Kalamitsi (Greece)',1,1,0),(23475,13395,123482,'Kalbarri','Australia','AU','Kalbarri (Australia)',1,1,0),(23476,0,123483,'Kalk Bay','South Africa','ZA','Kalk Bay (South Africa)',1,1,0),(23477,13410,123484,'Kalkaska','United States of America','US','Kalkaska (United States of America)',1,1,0),(23478,0,123485,'Kallstadt','Germany','DE','Kallstadt (Germany)',1,1,0),(23479,13416,123486,'Kalocsa','Hungary','HU','Kalocsa (Hungary)',1,1,0),(23480,0,123487,'Kalwaria Zebrzydowska','Poland','PL','Kalwaria Zebrzydowska (Poland)',1,1,0),(23481,0,123488,'Kalya','Israel','IL','Kalya (Israel)',1,1,0),(23482,13434,123489,'Kamakura','Japan','JP','Kamakura (Japan)',1,1,0),(23483,0,123490,'Kamien Pomorski','Poland','PL','Kamien Pomorski (Poland)',1,1,0),(23484,0,123491,'Kamienna Gora','Poland','PL','Kamienna Gora (Poland)',1,1,0),(23485,13460,123492,'Kamikawa','Japan','JP','Kamikawa (Japan)',1,1,0),(23486,0,123493,'Kammeltal','Germany','DE','Kammeltal (Germany)',1,1,0),(23487,0,123494,'Kamnik','Slovenia','SI','Kamnik (Slovenia)',1,1,0),(23488,0,123495,'Kamp','Austria','AT','Kamp (Austria)',1,1,0),(23489,0,123496,'Kampen','Netherlands','NL','Kampen (Netherlands)',1,1,0),(23490,13467,123497,'Kamphaeng Phet','Thailand','TH','Kamphaeng Phet (Thailand)',1,1,0),(23491,0,123498,'Kamp-Lintfort','Germany','DE','Kamp-Lintfort (Germany)',1,1,0),(23492,13488,123499,'Kanda','Japan','JP','Kanda (Japan)',1,1,0),(23493,13497,123500,'Kanfanar','Croatia','HR','Kanfanar (Croatia)',1,1,0),(23494,0,123501,'Kansas City','United States of America','US','Kansas City (United States of America)',1,1,0),(23495,0,123502,'Kanturk','Ireland','IE','Kanturk (Ireland)',1,1,0),(23496,0,123504,'Karavostasis','Greece','GR','Karavostasis (Greece)',1,1,0),(23497,0,123505,'Kardamyla','Greece','GR','Kardamyla (Greece)',1,1,0),(23498,0,123506,'Kardaun','Italy','IT','Kardaun (Italy)',1,1,0),(23499,0,123507,'Karijini Nationalpark','Australia','AU','Karijini Nationalpark (Australia)',1,1,0),(23500,13586,123508,'Karlskoga','Sweden','SE','Karlskoga (Sweden)',1,1,0),(23501,13596,123509,'Karon','Thailand','TH','Karon (Thailand)',1,1,0),(23502,0,123510,'Karon Noi Beach','Thailand','TH','Karon Noi Beach (Thailand)',1,1,0),(23503,13604,123511,'Karratha','Australia','AU','Karratha (Australia)',1,1,0),(23504,0,123512,'Kartitssch','Austria','AT','Kartitssch (Austria)',1,1,0),(23505,0,123513,'Kartlow','Germany','DE','Kartlow (Germany)',1,1,0),(23506,0,123514,'Kartung','Gambia','GM','Kartung (Gambia)',1,1,0),(23507,13620,123515,'Kas','Turkey','TR','Kas (Turkey)',1,1,0),(23508,0,123516,'Kasan','Russia','RU','Kasan (Russia)',1,1,0),(23509,0,123517,'Kaschgar','China','CN','Kaschgar (China)',1,1,0),(23510,0,123520,'Kasilof','United States of America','US','Kasilof (United States of America)',1,1,0),(23511,0,123521,'Kaumberg','Austria','AT','Kaumberg (Austria)',1,1,0),(23512,0,123522,'Kaunerberg','Austria','AT','Kaunerberg (Austria)',1,1,0),(23513,13715,123523,'Kaupanger','Norway','NO','Kaupanger (Norway)',1,1,0),(23514,0,123524,'Kavango','Namibia','NA','Kavango (Namibia)',1,1,0),(23515,13739,123525,'Kazanlak','Bulgaria','BG','Kazanlak (Bulgaria)',1,1,0),(23516,0,123526,'Kazaviti','Greece','GR','Kazaviti (Greece)',1,1,0),(23517,0,123528,'Kedro Beach','Greece','GR','Kedro Beach (Greece)',1,1,0),(23518,0,123529,'Keighley','United Kingdom','UK','Keighley (United Kingdom)',1,1,0),(23519,0,123530,'Kelchsau','Austria','AT','Kelchsau (Austria)',1,1,0),(23520,13799,123531,'Kellogg','United States of America','US','Kellogg (United States of America)',1,1,0),(23521,0,123532,'Kelso','South Africa','ZA','Kelso (South Africa)',1,1,0),(23522,13812,123533,'Kemi','Finland','FI','Kemi (Finland)',1,1,0),(23523,0,123534,'Kemmern','Germany','DE','Kemmern (Germany)',1,1,0),(23524,13817,123535,'Kempele','Finland','FI','Kempele (Finland)',1,1,0),(23525,13827,123536,'Kendari','Indonesia','ID','Kendari (Indonesia)',1,1,0),(23526,13842,123537,'Kennebunk','United States of America','US','Kennebunk (United States of America)',1,1,0),(23527,13853,123538,'Kenora','Canada','CA','Kenora (Canada)',1,1,0),(23528,0,123539,'Kensington','Australia','AU','Kensington (Australia)',1,1,0),(23529,0,123540,'Kerambitan','Indonesia','ID','Kerambitan (Indonesia)',1,1,0),(23530,0,123541,'Kerken','Germany','DE','Kerken (Germany)',1,1,0),(23531,0,123542,'Kesan','Turkey','TR','Kesan (Turkey)',1,1,0),(23532,0,123543,'Kestel','Turkey','TR','Kestel (Turkey)',1,1,0),(23533,0,123544,'Kestert','Germany','DE','Kestert (Germany)',1,1,0),(23534,0,123545,'Keswick Island','Australia','AU','Keswick Island (Australia)',1,1,0),(23535,0,123546,'Keystone','United States of America','US','Keystone (United States of America)',1,1,0),(23536,0,123547,'Kfar Giladi','Israel','IL','Kfar Giladi (Israel)',1,1,0),(23537,0,123548,'Khuk Khak Beach','Thailand','TH','Khuk Khak Beach (Thailand)',1,1,0),(23538,0,123549,'Kijangwani','Tanzania','TZ','Kijangwani (Tanzania)',1,1,0),(23539,0,123550,'Kijkduin','Netherlands','NL','Kijkduin (Netherlands)',1,1,0),(23540,13992,123551,'Kikuchi','Japan','JP','Kikuchi (Japan)',1,1,0),(23541,0,123552,'Kil','Sweden','SE','Kil (Sweden)',1,1,0),(23542,0,123553,'Kilbirnie','United Kingdom','UK','Kilbirnie (United Kingdom)',1,1,0),(23543,14007,123554,'Kilkee','Ireland','IE','Kilkee (Ireland)',1,1,0),(23544,31210,123555,'Kill Devil Hills','United States of America','US','Kill Devil Hills (United States of America)',1,1,0),(23545,14014,123556,'Killarney','Ireland','IE','Killarney (Ireland)',1,1,0),(23546,0,123557,'Killdeer','United States of America','US','Killdeer (United States of America)',1,1,0),(23547,0,123558,'Kilwinning','United Kingdom','UK','Kilwinning (United Kingdom)',1,1,0),(23548,0,123559,'Kimball','United States of America','US','Kimball (United States of America)',1,1,0),(23549,31212,123560,'King City','United States of America','US','King City (United States of America)',1,1,0),(23550,14070,123561,'Kingman','United States of America','US','Kingman (United States of America)',1,1,0),(23551,0,123562,'Kings Beach','United States of America','US','Kings Beach (United States of America)',1,1,0),(23552,0,123563,'Kings Mountain','United States of America','US','Kings Mountain (United States of America)',1,1,0),(23553,0,123564,'Kings Nympton','United Kingdom','UK','Kings Nympton (United Kingdom)',1,1,0),(23554,14076,123565,'Kingscourt','Ireland','IE','Kingscourt (Ireland)',1,1,0),(23555,0,123566,'Kingston upon Thames','United Kingdom','UK','Kingston upon Thames (United Kingdom)',1,1,0),(23556,0,123567,'Kington','United Kingdom','UK','Kington (United Kingdom)',1,1,0),(23557,0,123568,'Kingwood','United States of America','US','Kingwood (United States of America)',1,1,0),(23558,0,123569,'Kinlochleven','United Kingdom','UK','Kinlochleven (United Kingdom)',1,1,0),(23559,0,123570,'Kipoi','Greece','GR','Kipoi (Greece)',1,1,0),(23560,0,123571,'Kira Panaghia','Greece','GR','Kira Panaghia (Greece)',1,1,0),(23561,14121,123572,'Kirchberg','Austria','AT','Kirchberg (Austria)',1,1,0),(23562,0,123573,'Kirchberg am Wechsel','Austria','AT','Kirchberg am Wechsel (Austria)',1,1,0),(23563,0,123574,'Kirchdorf am Inn','Austria','AT','Kirchdorf am Inn (Austria)',1,1,0),(23564,0,123575,'Kirchdorf im Wald','Germany','DE','Kirchdorf im Wald (Germany)',1,1,0),(23565,0,123576,'Kirchham','Germany','DE','Kirchham (Germany)',1,1,0),(23566,0,123577,'Kirchheim','Austria','AT','Kirchheim (Austria)',1,1,0),(23567,0,123578,'Kirchheim bei Munchen','Germany','DE','Kirchheim bei Munchen (Germany)',1,1,0),(23568,14134,123579,'Kirinda','Sri Lanka','LK','Kirinda (Sri Lanka)',1,1,0),(23569,0,123580,'Kirkbymoorside','United Kingdom','UK','Kirkbymoorside (United Kingdom)',1,1,0),(23570,0,123581,'Kirriemuir','United Kingdom','UK','Kirriemuir (United Kingdom)',1,1,0),(23571,14168,123582,'Kish Island','Iran','IR','Kish Island (Iran)',1,1,0),(23572,14179,123583,'Kisumu','Kenya','KE','Kisumu (Kenya)',1,1,0),(23573,14183,123584,'Kitakami','Japan','JP','Kitakami (Japan)',1,1,0),(23574,0,123585,'Kivijarvi','Finland','FI','Kivijarvi (Finland)',1,1,0),(23575,0,123586,'Klamath Falls','United States of America','US','Klamath Falls (United States of America)',1,1,0),(23576,0,123587,'Klanovice','Czech Republic','CZ','Klanovice (Czech Republic)',1,1,0),(23577,0,123588,'Klausdorf/Flaming','Germany','DE','Klausdorf/Flaming (Germany)',1,1,0),(23578,14223,123589,'Kleinmachnow','Germany','DE','Kleinmachnow (Germany)',1,1,0),(23579,0,123590,'Kleinwalsertal','Austria','AT','Kleinwalsertal (Austria)',1,1,0),(23580,0,123591,'Klein-Wien','Austria','AT','Klein-Wien (Austria)',1,1,0),(23581,14229,123592,'Klerksdorp','South Africa','ZA','Klerksdorp (South Africa)',1,1,0),(23582,0,123593,'Klettgau','Germany','DE','Klettgau (Germany)',1,1,0),(23583,14230,123594,'Kleve','Germany','DE','Kleve (Germany)',1,1,0),(23584,0,123595,'Klietz','Germany','DE','Klietz (Germany)',1,1,0),(23585,0,123596,'Klima','Greece','GR','Klima (Greece)',1,1,0),(23586,0,123597,'Klingenberg','Germany','DE','Klingenberg (Germany)',1,1,0),(23587,0,123598,'Klingenberg am Main','Germany','DE','Klingenberg am Main (Germany)',1,1,0),(23588,0,123599,'Kloch','Austria','AT','Kloch (Austria)',1,1,0),(23589,0,123600,'Klosterkumbd','Germany','DE','Klosterkumbd (Germany)',1,1,0),(23590,14243,123601,'Klosters','Switzerland','CH','Klosters (Switzerland)',1,1,0),(23591,14244,123602,'Kloten','Switzerland','CH','Kloten (Switzerland)',1,1,0),(23592,0,123603,'Klucenice','Czech Republic','CZ','Klucenice (Czech Republic)',1,1,0),(23593,0,123604,'Kluczbork','Poland','PL','Kluczbork (Poland)',1,1,0),(23594,0,123605,'Knight\'s Town','Ireland','IE','Knight\'s Town (Ireland)',1,1,0),(23595,0,123606,'Koblach','Austria','AT','Koblach (Austria)',1,1,0),(23596,14274,123607,'Kochi','Japan','JP','Kochi (Japan)',1,1,0),(23597,14290,123609,'Koforidua','Ghana','GH','Koforidua (Ghana)',1,1,0),(23598,0,123610,'Kohfidisch','Austria','AT','Kohfidisch (Austria)',1,1,0),(23599,0,123611,'Kokhma','Russia','RU','Kokhma (Russia)',1,1,0),(23600,14306,123612,'Kokomo','United States of America','US','Kokomo (United States of America)',1,1,0),(23601,14307,123613,'Koksijde','Belgium','BE','Koksijde (Belgium)',1,1,0),(23602,14310,123614,'Kolari','Finland','FI','Kolari (Finland)',1,1,0),(23603,0,123615,'Kolsva','Sweden','SE','Kolsva (Sweden)',1,1,0),(23604,0,123616,'Kolymbari (Kolumbari)','Greece','GR','Kolymbari (Kolumbari) (Greece)',1,1,0),(23605,0,123617,'Komarom','Hungary','HU','Komarom (Hungary)',1,1,0),(23606,14339,123618,'Kommetjie','South Africa','ZA','Kommetjie (South Africa)',1,1,0),(23607,0,123619,'Konigsdorf','Germany','DE','Konigsdorf (Germany)',1,1,0),(23608,14356,123620,'Konigslutter','Germany','DE','Konigslutter (Germany)',1,1,0),(23609,0,123621,'Konigstein im Taunus','Germany','DE','Konigstein im Taunus (Germany)',1,1,0),(23610,0,123622,'Konnersreuth','Germany','DE','Konnersreuth (Germany)',1,1,0),(23611,0,123623,'Konz','Germany','DE','Konz (Germany)',1,1,0),(23612,0,123624,'Korinos','Greece','GR','Korinos (Greece)',1,1,0),(23613,0,123625,'Kornati Islands','Croatia','HR','Kornati Islands (Croatia)',1,1,0),(23614,0,123626,'Korobitsyno','Russia','RU','Korobitsyno (Russia)',1,1,0),(23615,0,123627,'Koscierzyna','Poland','PL','Koscierzyna (Poland)',1,1,0),(23616,0,123628,'Kosermuhle','Germany','DE','Kosermuhle (Germany)',1,1,0),(23617,0,123629,'Kosovija','Croatia','HR','Kosovija (Croatia)',1,1,0),(23618,0,123630,'Kostendorf','Austria','AT','Kostendorf (Austria)',1,1,0),(23619,0,123631,'Kostroma','Russia','RU','Kostroma (Russia)',1,1,0),(23620,0,123632,'Kota Belud','Malaysia','MY','Kota Belud (Malaysia)',1,1,0),(23621,13677,123633,'Katlenburg-Lindau','Germany','DE','Katlenburg-Lindau (Germany)',1,1,0),(23622,0,123634,'Kato Pavliana','Greece','GR','Kato Pavliana (Greece)',1,1,0),(23623,0,123635,'Kato Symi','Greece','GR','Kato Symi (Greece)',1,1,0),(23624,13681,123636,'Katouna','Greece','GR','Katouna (Greece)',1,1,0),(23625,13705,123637,'Kaufman','United States of America','US','Kaufman (United States of America)',1,1,0),(23626,0,123638,'Kaufungen','Germany','DE','Kaufungen (Germany)',1,1,0),(23627,13712,123639,'Kaunas','Lithuania','LT','Kaunas (Lithuania)',1,1,0),(23628,0,123640,'Kaustinen','Finland','FI','Kaustinen (Finland)',1,1,0),(23629,0,123641,'Kavadarci','Macedonia','MK','Kavadarci (Macedonia)',1,1,0),(23630,0,123642,'Kawarna','Bulgaria','BG','Kawarna (Bulgaria)',1,1,0),(23631,13731,123643,'Kawazu','Japan','JP','Kawazu (Japan)',1,1,0),(23632,13736,123644,'Kaysersberg','France','FR','Kaysersberg (France)',1,1,0),(23633,0,123645,'Kedzierzyn-Kozle','Poland','PL','Kedzierzyn-Kozle (Poland)',1,1,0),(23634,13763,123646,'Keedysville','United States of America','US','Keedysville (United States of America)',1,1,0),(23635,0,123647,'Kefalos','Greece','GR','Kefalos (Greece)',1,1,0),(23636,13778,123648,'Kehidakustany','Hungary','HU','Kehidakustany (Hungary)',1,1,0),(23637,0,123649,'Kelbra','Germany','DE','Kelbra (Germany)',1,1,0),(23638,0,123650,'Keleviz','Hungary','HU','Keleviz (Hungary)',1,1,0),(23639,0,123651,'Kelheim','Germany','DE','Kelheim (Germany)',1,1,0),(23640,13801,123652,'Kelmis','Belgium','BE','Kelmis (Belgium)',1,1,0),(23641,13802,123653,'Kelowna','Canada','CA','Kelowna (Canada)',1,1,0),(23642,13813,123654,'Kemijarvi','Finland','FI','Kemijarvi (Finland)',1,1,0),(23643,0,123655,'Keminmaa','Finland','FI','Keminmaa (Finland)',1,1,0),(23644,0,123656,'Kemnath','Germany','DE','Kemnath (Germany)',1,1,0),(23645,13816,123657,'Kemnitz','Germany','DE','Kemnitz (Germany)',1,1,0),(23646,13822,123658,'Kenai','United States of America','US','Kenai (United States of America)',1,1,0),(23647,13828,123659,'Kendenup','Australia','AU','Kendenup (Australia)',1,1,0),(23648,13829,123660,'Kenedy','United States of America','US','Kenedy (United States of America)',1,1,0),(23649,0,123661,'Kenilworth','Australia','AU','Kenilworth (Australia)',1,1,0),(23650,13848,123662,'Kennett','United States of America','US','Kennett (United States of America)',1,1,0),(23651,0,123663,'Kenzingen','Germany','DE','Kenzingen (Germany)',1,1,0),(23652,0,123664,'Kerekegyhaza','Hungary','HU','Kerekegyhaza (Hungary)',1,1,0),(23653,13883,123665,'Kerimaki','Finland','FI','Kerimaki (Finland)',1,1,0),(23654,13885,123666,'Kerman','Iran','IR','Kerman (Iran)',1,1,0),(23655,0,123667,'Kernave','Lithuania','LT','Kernave (Lithuania)',1,1,0),(23656,13888,123668,'Kernersville','United States of America','US','Kernersville (United States of America)',1,1,0),(23657,13897,123669,'Kervignac','France','FR','Kervignac (France)',1,1,0),(23658,0,123670,'Kety','Poland','PL','Kety (Poland)',1,1,0),(23659,13918,123671,'Kewaunee','United States of America','US','Kewaunee (United States of America)',1,1,0),(23660,31209,123672,'Key West','United States of America','US','Key West (United States of America)',1,1,0),(23661,0,123673,'Keysborough','Australia','AU','Keysborough (Australia)',1,1,0),(23662,0,123674,'Khaudum Nationalpark','Namibia','NA','Khaudum Nationalpark (Namibia)',1,1,0),(23663,0,123675,'Khawa','Nepal','NP','Khawa (Nepal)',1,1,0),(23664,0,123677,'Kicking Horse','Canada','CA','Kicking Horse (Canada)',1,1,0),(23665,0,123678,'Kijal Beach','Malaysia','MY','Kijal Beach (Malaysia)',1,1,0),(23666,0,123679,'Kilauea','United States of America','US','Kilauea (United States of America)',1,1,0),(23667,13997,123680,'Kildare','Ireland','IE','Kildare (Ireland)',1,1,0),(23668,14005,123681,'Kilimanjaro','Tanzania','TZ','Kilimanjaro (Tanzania)',1,1,0),(23669,14010,123682,'Kilkis','Greece','GR','Kilkis (Greece)',1,1,0),(23670,14020,123683,'Killenard','Ireland','IE','Killenard (Ireland)',1,1,0),(23671,14030,123684,'Kilmarnock','United States of America','US','Kilmarnock (United States of America)',1,1,0),(23672,14036,123685,'Kiltimagh','Ireland','IE','Kiltimagh (Ireland)',1,1,0),(23673,0,123686,'Kincraig','United Kingdom','UK','Kincraig (United Kingdom)',1,1,0),(23674,0,123687,'Kineshma','Russia','RU','Kineshma (Russia)',1,1,0),(23675,0,123688,'Kingham','United Kingdom','UK','Kingham (United Kingdom)',1,1,0),(23676,0,123689,'Kingisepp','Russia','RU','Kingisepp (Russia)',1,1,0),(23677,14074,123690,'Kingsburg','United States of America','US','Kingsburg (United States of America)',1,1,0),(23678,14079,123691,'Kingsland','United States of America','US','Kingsland (United States of America)',1,1,0),(23679,14080,123692,'Kingsport','United States of America','US','Kingsport (United States of America)',1,1,0),(23680,14085,123693,'Kingston','Canada','CA','Kingston (Canada)',1,1,0),(23681,14090,123694,'Kingsville','United States of America','US','Kingsville (United States of America)',1,1,0),(23682,0,123695,'Kinheim','Germany','DE','Kinheim (Germany)',1,1,0),(23683,0,123696,'Kintai','Lithuania','LT','Kintai (Lithuania)',1,1,0),(23684,14115,123697,'Kipfenberg','Germany','DE','Kipfenberg (Germany)',1,1,0),(23685,0,123698,'Kipos','Greece','GR','Kipos (Greece)',1,1,0),(23686,0,123699,'Kippenheim','Germany','DE','Kippenheim (Germany)',1,1,0),(23687,0,123700,'Kirchberg vorm Wald','Germany','DE','Kirchberg vorm Wald (Germany)',1,1,0),(23688,14126,123701,'Kirchensittenbach','Germany','DE','Kirchensittenbach (Germany)',1,1,0),(23689,14131,123702,'Kirchzarten','Germany','DE','Kirchzarten (Germany)',1,1,0),(23690,0,123703,'Kirknewton','United Kingdom','UK','Kirknewton (United Kingdom)',1,1,0),(23691,0,123704,'Kirovsk','Russia','RU','Kirovsk (Russia)',1,1,0),(23692,0,123705,'Kirowohrad','Ukraine','UA','Kirowohrad (Ukraine)',1,1,0),(23693,14161,123706,'Kirsehir','Turkey','TR','Kirsehir (Turkey)',1,1,0),(23694,14208,123707,'Klagenfurt','Austria','AT','Klagenfurt (Austria)',1,1,0),(23695,14210,123708,'Klaipeda','Lithuania','LT','Klaipeda (Lithuania)',1,1,0),(23696,0,123709,'Klais bei Mittenwald','Germany','DE','Klais bei Mittenwald (Germany)',1,1,0),(23697,0,123710,'Klarici','Croatia','HR','Klarici (Croatia)',1,1,0),(23698,0,123711,'Klaserie Private Nature Reserve','South Africa','ZA','Klaserie Private Nature Reserve (South Africa)',1,1,0),(23699,14215,123712,'Klawock','United States of America','US','Klawock (United States of America)',1,1,0),(23700,0,123713,'Klein Labenz','Germany','DE','Klein Labenz (Germany)',1,1,0),(23701,0,123714,'Kleinheringen','Germany','DE','Kleinheringen (Germany)',1,1,0),(23702,0,123715,'Kleinluder','Germany','DE','Kleinluder (Germany)',1,1,0),(23703,0,123716,'Klek','Croatia','HR','Klek (Croatia)',1,1,0),(23704,0,123717,'Klingenbach','Austria','AT','Klingenbach (Austria)',1,1,0),(23705,0,123718,'Klintehamn','Sweden','SE','Klintehamn (Sweden)',1,1,0),(23706,14234,123719,'Klippan','Sweden','SE','Klippan (Sweden)',1,1,0),(23707,0,123720,'Klobenstein','Italy','IT','Klobenstein (Italy)',1,1,0),(23708,0,123721,'Klong Dao Beach','Thailand','TH','Klong Dao Beach (Thailand)',1,1,0),(23709,0,123722,'Klong Muang Beach','Thailand','TH','Klong Muang Beach (Thailand)',1,1,0),(23710,14241,123723,'Kloster Zinna','Germany','DE','Kloster Zinna (Germany)',1,1,0),(23711,0,123724,'Klotten','Germany','DE','Klotten (Germany)',1,1,0),(23712,0,123725,'Klovedal','Sweden','SE','Klovedal (Sweden)',1,1,0),(23713,0,123726,'Kluis','Germany','DE','Kluis (Germany)',1,1,0),(23714,0,123727,'Knock','Ireland','IE','Knock (Ireland)',1,1,0),(23715,0,123728,'Knottingley','United Kingdom','UK','Knottingley (United Kingdom)',1,1,0),(23716,0,123729,'Knowle','United Kingdom','UK','Knowle (United Kingdom)',1,1,0),(23717,0,123730,'Ko Mak','Thailand','TH','Ko Mak (Thailand)',1,1,0),(23718,0,123731,'Ko Phangan','Thailand','TH','Ko Phangan (Thailand)',1,1,0),(23719,0,123732,'Ko Sukorn','Thailand','TH','Ko Sukorn (Thailand)',1,1,0),(23720,0,123733,'Kobern-Gondorf','Germany','DE','Kobern-Gondorf (Germany)',1,1,0),(23721,14281,123734,'Kodiak','United States of America','US','Kodiak (United States of America)',1,1,0),(23722,0,123735,'Kohala','United States of America','US','Kohala (United States of America)',1,1,0),(23723,0,123736,'Koilani','Cyprus','CY','Koilani (Cyprus)',1,1,0),(23724,0,123737,'Koldingen','Germany','DE','Koldingen (Germany)',1,1,0),(23725,14322,123738,'Kolios','Greece','GR','Kolios (Greece)',1,1,0),(23726,0,123739,'Kolno','Poland','PL','Kolno (Poland)',1,1,0),(23727,0,123740,'Kolomna','Russia','RU','Kolomna (Russia)',1,1,0),(23728,0,123741,'Kolomyja','Ukraine','UA','Kolomyja (Ukraine)',1,1,0),(23729,0,123742,'Kolzin','Germany','DE','Kolzin (Germany)',1,1,0),(23730,14335,123743,'Komatipoort','South Africa','ZA','Komatipoort (South Africa)',1,1,0),(23731,14343,123744,'Komotini','Greece','GR','Komotini (Greece)',1,1,0),(23732,0,123745,'Komsomolsk Na Amure','Russia','RU','Komsomolsk Na Amure (Russia)',1,1,0),(23733,14448,123746,'Koumeika','Greece','GR','Koumeika (Greece)',1,1,0),(23734,0,123747,'Kountourata','Greece','GR','Kountourata (Greece)',1,1,0),(23735,14454,123748,'Kouvola','Finland','FI','Kouvola (Finland)',1,1,0),(23736,14468,123749,'Kragero','Norway','NO','Kragero (Norway)',1,1,0),(23737,0,123750,'Krakauschatten','Austria','AT','Krakauschatten (Austria)',1,1,0),(23738,0,123751,'Kralendijk','Bonaire Sint Eustatius and Saba',NULL,'Kralendijk (Bonaire Sint Eustatius and Saba)',1,1,0),(23739,0,123752,'Kranzbach','Germany','DE','Kranzbach (Germany)',1,1,0),(23740,0,123753,'Krasnaja Poljana','Russia','RU','Krasnaja Poljana (Russia)',1,1,0),(23741,0,123754,'Kratzeburg','Germany','DE','Kratzeburg (Germany)',1,1,0),(23742,0,123755,'Kremenez','Ukraine','UA','Kremenez (Ukraine)',1,1,0),(23743,14498,123756,'Kressbronn','Germany','DE','Kressbronn (Germany)',1,1,0),(23744,0,123757,'Kreuzegg','Germany','DE','Kreuzegg (Germany)',1,1,0),(23745,0,123758,'Kreuzwald','France','FR','Kreuzwald (France)',1,1,0),(23746,0,123759,'Krippehna','Germany','DE','Krippehna (Germany)',1,1,0),(23747,0,123760,'Kritzmow','Germany','DE','Kritzmow (Germany)',1,1,0),(23748,0,123761,'Kroatisch Minihof','Austria','AT','Kroatisch Minihof (Austria)',1,1,0),(23749,0,123762,'Kronberg im Taunus','Germany','DE','Kronberg im Taunus (Germany)',1,1,0),(23750,0,123763,'Krummenau','Switzerland','CH','Krummenau (Switzerland)',1,1,0),(23751,0,123764,'Krummendeich','Germany','DE','Krummendeich (Germany)',1,1,0),(23752,0,123765,'Kruncici','Croatia','HR','Kruncici (Croatia)',1,1,0),(23753,0,123766,'Kruth','France','FR','Kruth (France)',1,1,0),(23754,0,123767,'Ksiaz Wielki','Poland','PL','Ksiaz Wielki (Poland)',1,1,0),(23755,30568,123768,'Kuala Lumpur','Malaysia','MY','Kuala Lumpur (Malaysia)',1,1,0),(23756,0,123769,'Selangor','Malaysia','MY','Selangor (Malaysia)',1,1,0),(23757,0,123770,'Kuda Huraa','Maldives','MV','Kuda Huraa (Maldives)',1,1,0),(23758,14549,123771,'Kudat','Malaysia','MY','Kudat (Malaysia)',1,1,0),(23759,0,123772,'Kuju','Japan','JP','Kuju (Japan)',1,1,0),(23760,14574,123773,'Kumagaya','Japan','JP','Kumagaya (Japan)',1,1,0),(23761,0,123775,'Kummerow','Germany','DE','Kummerow (Germany)',1,1,0),(23762,0,123776,'Kummersbruck','Germany','DE','Kummersbruck (Germany)',1,1,0),(23763,14590,123777,'Kungsbacka','Sweden','SE','Kungsbacka (Sweden)',1,1,0),(23764,14600,123778,'Kuopio','Finland','FI','Kuopio (Finland)',1,1,0),(23765,14610,123779,'Kuressaare','Estonia','EE','Kuressaare (Estonia)',1,1,0),(23766,0,123780,'Kurortne','Ukraine','UA','Kurortne (Ukraine)',1,1,0),(23767,0,123781,'Kurtatsch an der Weinstra?e','Italy','IT','Kurtatsch an der Weinstra?e (Italy)',1,1,0),(23768,14620,123782,'Kuruman','South Africa','ZA','Kuruman (South Africa)',1,1,0),(23769,0,123783,'Kuslin','Poland','PL','Kuslin (Poland)',1,1,0),(23770,0,123784,'Kusten','Germany','DE','Kusten (Germany)',1,1,0),(23771,0,123785,'Kusterdingen','Germany','DE','Kusterdingen (Germany)',1,1,0),(23772,14635,123786,'Kutaisi','Georgia','GE','Kutaisi (Georgia)',1,1,0),(23773,14636,123787,'Kutas','Hungary','HU','Kutas (Hungary)',1,1,0),(23774,0,123788,'KwaDukuza','South Africa','ZA','KwaDukuza (South Africa)',1,1,0),(23775,14662,123789,'Kwidzyn','Poland','PL','Kwidzyn (Poland)',1,1,0),(23776,0,123790,'Kyaikhto','Myanmar','MM','Kyaikhto (Myanmar)',1,1,0),(23777,0,123791,'Kyllburg','Germany','DE','Kyllburg (Germany)',1,1,0),(23778,14673,123792,'Kyotango','Japan','JP','Kyotango (Japan)',1,1,0),(23779,31232,123793,'La Algaba','Spain','ES','La Algaba (Spain)',1,1,0),(23780,0,123794,'La Barre-de-Monts','France','FR','La Barre-de-Monts (France)',1,1,0),(23781,31239,123795,'La Bastide-Clairence','France','FR','La Bastide-Clairence (France)',1,1,0),(23782,31268,123796,'La Chapelle-d\'Abondance','France','FR','La Chapelle-d\'Abondance (France)',1,1,0),(23783,31271,123797,'La Chapelle-Saint-Luc','France','FR','La Chapelle-Saint-Luc (France)',1,1,0),(23784,0,123798,'La Coma','Spain','ES','La Coma (Spain)',1,1,0),(23785,31296,123799,'La Couronne','France','FR','La Couronne (France)',1,1,0),(23786,0,123800,'La Flocelliere','France','FR','La Flocelliere (France)',1,1,0),(23787,0,123801,'La Grange','United States of America','US','La Grange (United States of America)',1,1,0),(23788,31357,123802,'La Herradura','Spain','ES','La Herradura (Spain)',1,1,0),(23789,31362,123803,'La Iruela','Spain','ES','La Iruela (Spain)',1,1,0),(23790,0,123804,'La Jaille-Yvon','France','FR','La Jaille-Yvon (France)',1,1,0),(23791,0,123805,'La Jou du Loup','France','FR','La Jou du Loup (France)',1,1,0),(23792,0,123806,'La Linea de la Conception','Spain','ES','La Linea de la Conception (Spain)',1,1,0),(23793,0,123807,'La Madeleine (Nord)','France','FR','La Madeleine (Nord) (France)',1,1,0),(23794,0,123808,'La Marina','Spain','ES','La Marina (Spain)',1,1,0),(23795,31387,123809,'La Martre','France','FR','La Martre (France)',1,1,0),(23796,0,123810,'La Massana','Andorra','AD','La Massana (Andorra)',1,1,0),(23797,31401,123811,'La Motte','France','FR','La Motte (France)',1,1,0),(23798,0,123812,'La Nucia','Spain','ES','La Nucia (Spain)',1,1,0),(23799,31407,123813,'La Orotava','Spain','ES','La Orotava (Spain)',1,1,0),(23800,31419,123814,'La Penne-sur-Huveaune','France','FR','La Penne-sur-Huveaune (France)',1,1,0),(23801,0,123815,'La Pierre Saint-Martin','France','FR','La Pierre Saint-Martin (France)',1,1,0),(23802,31430,123816,'La Plagne','France','FR','La Plagne (France)',1,1,0),(23803,0,123817,'La Pobla de Benifassa','Spain','ES','La Pobla de Benifassa (Spain)',1,1,0),(23804,0,123818,'La Pobla de Segur','Spain','ES','La Pobla de Segur (Spain)',1,1,0),(23805,0,123819,'La Possession','Reunion','RE','La Possession (Reunion)',1,1,0),(23806,0,123820,'La Preneuse','Mauritius','MU','La Preneuse (Mauritius)',1,1,0),(23807,0,123821,'La Queue-en-Brie','France','FR','La Queue-en-Brie (France)',1,1,0),(23808,0,123822,'La Riviere-Saint-Sauveur','France','FR','La Riviere-Saint-Sauveur (France)',1,1,0),(23809,0,123823,'La Rochefoucauld','France','FR','La Rochefoucauld (France)',1,1,0),(23810,0,123824,'La Roda','Spain','ES','La Roda (Spain)',1,1,0),(23811,14688,123825,'La Romana','Dominican Republic','DO','La Romana (Dominican Republic)',1,1,0),(23812,0,123826,'La Sarraz','Switzerland','CH','La Sarraz (Switzerland)',1,1,0),(23813,31484,123827,'La Serena','Chile','CL','La Serena (Chile)',1,1,0),(23814,31489,123828,'La Spezia','Italy','IT','La Spezia (Italy)',1,1,0),(23815,0,123829,'La Trinite-sur Mer','France','FR','La Trinite-sur Mer (France)',1,1,0),(23816,31508,123830,'La Turbie','France','FR','La Turbie (France)',1,1,0),(23817,31513,123831,'La Valette-du-Var','France','FR','La Valette-du-Var (France)',1,1,0),(23818,0,123832,'La Vilavella','Spain','ES','La Vilavella (Spain)',1,1,0),(23819,31525,123833,'La Wantzenau','France','FR','La Wantzenau (France)',1,1,0),(23820,31526,123834,'La Zubia','Spain','ES','La Zubia (Spain)',1,1,0),(23821,0,123835,'Labastide-d\'Anjou','France','FR','Labastide-d\'Anjou (France)',1,1,0),(23822,31534,123836,'Lac la Hache','Canada','CA','Lac la Hache (Canada)',1,1,0),(23823,14713,123837,'Lacapelle-Marival','France','FR','Lacapelle-Marival (France)',1,1,0),(23824,14722,123838,'Lacey','United States of America','US','Lacey (United States of America)',1,1,0),(23825,0,123839,'Lachen SZ','Switzerland','CH','Lachen SZ (Switzerland)',1,1,0),(23826,0,123840,'Lacolle','Canada','CA','Lacolle (Canada)',1,1,0),(23827,0,123841,'Lacy Lakeview','United States of America','US','Lacy Lakeview (United States of America)',1,1,0),(23828,14739,123842,'Ladoga','United States of America','US','Ladoga (United States of America)',1,1,0),(23829,14742,123843,'Lady Elliot Island','Australia','AU','Lady Elliot Island (Australia)',1,1,0),(23830,14748,123844,'Lae','Papua New Guinea','PG','Lae (Papua New Guinea)',1,1,0),(23831,0,123845,'Laem Yai Bay','Thailand','TH','Laem Yai Bay (Thailand)',1,1,0),(23832,0,123846,'Laer','Germany','DE','Laer (Germany)',1,1,0),(23833,14758,123847,'Lagen Island','Philippines','PH','Lagen Island (Philippines)',1,1,0),(23834,14761,123848,'Lagi','Vietnam','VN','Lagi (Vietnam)',1,1,0),(23835,0,123849,'Kiveri','Greece','GR','Kiveri (Greece)',1,1,0),(23836,0,123850,'Kizilot','Turkey','TR','Kizilot (Turkey)',1,1,0),(23837,0,123851,'Kjos - Hornindal','Norway','NO','Kjos - Hornindal (Norway)',1,1,0),(23838,0,123852,'Kladen','Germany','DE','Kladen (Germany)',1,1,0),(23839,0,123853,'Klaffer am Hochficht','Austria','AT','Klaffer am Hochficht (Austria)',1,1,0),(23840,0,123854,'Klausen','Italy','IT','Klausen (Italy)',1,1,0),(23841,0,123855,'Kleinlobming','Austria','AT','Kleinlobming (Austria)',1,1,0),(23842,14226,123856,'Kleinzerlang','Germany','DE','Kleinzerlang (Germany)',1,1,0),(23843,0,123857,'Klenovica','Croatia','HR','Klenovica (Croatia)',1,1,0),(23844,0,123858,'Kliczkow','Poland','PL','Kliczkow (Poland)',1,1,0),(23845,0,123859,'Klingenthal','France','FR','Klingenthal (France)',1,1,0),(23846,0,123860,'Kloster Lehnin','Germany','DE','Kloster Lehnin (Germany)',1,1,0),(23847,14242,123861,'Klosterneuburg','Austria','AT','Klosterneuburg (Austria)',1,1,0),(23848,0,123862,'Kluse','Germany','DE','Kluse (Germany)',1,1,0),(23849,0,123863,'Knokke','Belgium','BE','Knokke (Belgium)',1,1,0),(23850,31221,123864,'Knoxville','United States of America','US','Knoxville (United States of America)',1,1,0),(23851,0,123865,'Ko Hae',NULL,NULL,'Ko Hae ()',1,1,0),(23852,0,123866,'Koblenz-Guls','Germany','DE','Koblenz-Guls (Germany)',1,1,0),(23853,14272,123867,'Kocaeli','Turkey','TR','Kocaeli (Turkey)',1,1,0),(23854,0,123868,'Kocani','Macedonia','MK','Kocani (Macedonia)',1,1,0),(23855,14289,123869,'Koflach','Austria','AT','Koflach (Austria)',1,1,0),(23856,14295,123870,'Koggala','Sri Lanka','LK','Koggala (Sri Lanka)',1,1,0),(23857,0,123871,'Koka','Japan','JP','Koka (Japan)',1,1,0),(23858,14303,123872,'Kokkari','Greece','GR','Kokkari (Greece)',1,1,0),(23859,0,123873,'Kolasin','Montenegro','ME','Kolasin (Montenegro)',1,1,0),(23860,14315,123874,'Kolding','Denmark','DK','Kolding (Denmark)',1,1,0),(23861,0,123876,'Kolkwitz','Germany','DE','Kolkwitz (Germany)',1,1,0),(23862,14325,123878,'Kolobrzeg','Poland','PL','Kolobrzeg (Poland)',1,1,0),(23863,0,123880,'Konigsbronn','Germany','DE','Konigsbronn (Germany)',1,1,0),(23864,14362,123881,'Konolfingen','Switzerland','CH','Konolfingen (Switzerland)',1,1,0),(23865,0,123882,'Konopiste','Czech Republic','CZ','Konopiste (Czech Republic)',1,1,0),(23866,0,123883,'Kopfing im Innviertel','Austria','AT','Kopfing im Innviertel (Austria)',1,1,0),(23867,14387,123884,'Korenica','Croatia','HR','Korenica (Croatia)',1,1,0),(23868,0,123885,'Korntal-Munchingen','Germany','DE','Korntal-Munchingen (Germany)',1,1,0),(23869,0,123886,'Korolyov','Russia','RU','Korolyov (Russia)',1,1,0),(23870,0,123887,'Korswandt','Germany','DE','Korswandt (Germany)',1,1,0),(23871,0,123888,'Kosakowo','Poland','PL','Kosakowo (Poland)',1,1,0),(23872,14409,123889,'Kosgoda','Sri Lanka','LK','Kosgoda (Sri Lanka)',1,1,0),(23873,0,123890,'Kosulino','Russia','RU','Kosulino (Russia)',1,1,0),(23874,0,123892,'Kottmannsdorf','Austria','AT','Kottmannsdorf (Austria)',1,1,0),(23875,0,123893,'Koudekerke','Netherlands','NL','Koudekerke (Netherlands)',1,1,0),(23876,0,123894,'Koundouros','Greece','GR','Koundouros (Greece)',1,1,0),(23877,0,123895,'Koutouloufari','Greece','GR','Koutouloufari (Greece)',1,1,0),(23878,0,123896,'Kouty nad Desnou','Czech Republic','CZ','Kouty nad Desnou (Czech Republic)',1,1,0),(23879,0,123898,'Kowary','Poland','PL','Kowary (Poland)',1,1,0),(23880,0,123899,'Koycegiz / Mugla','Turkey','TR','Koycegiz / Mugla (Turkey)',1,1,0),(23881,14479,123900,'Kranj','Slovenia','SI','Kranj (Slovenia)',1,1,0),(23882,0,123901,'Kraslice','Czech Republic','CZ','Kraslice (Czech Republic)',1,1,0),(23883,0,123902,'Kremenje','Croatia','HR','Kremenje (Croatia)',1,1,0),(23884,0,123903,'Krems','Austria','AT','Krems (Austria)',1,1,0),(23885,0,123904,'Kreuztal','Germany','DE','Kreuztal (Germany)',1,1,0),(23886,14501,123905,'Kribi','Cameroon','CM','Kribi (Cameroon)',1,1,0),(23887,0,123906,'Krispl','Austria','AT','Krispl (Austria)',1,1,0),(23888,14510,123907,'Kristianstad','Sweden','SE','Kristianstad (Sweden)',1,1,0),(23889,0,123908,'Kronach','Germany','DE','Kronach (Germany)',1,1,0),(23890,0,123909,'Kronwinkl','Germany','DE','Kronwinkl (Germany)',1,1,0),(23891,0,123910,'Krumbach (Niederosterreich)','Austria','AT','Krumbach (Niederosterreich) (Austria)',1,1,0),(23892,0,123911,'Krumpendorf','Austria','AT','Krumpendorf (Austria)',1,1,0),(23893,0,123912,'Ksamil','Albania','AL','Ksamil (Albania)',1,1,0),(23894,0,123913,'Kuala Nerus','Malaysia','MY','Kuala Nerus (Malaysia)',1,1,0),(23895,14575,123915,'Kumamoto','Japan','JP','Kumamoto (Japan)',1,1,0),(23896,0,123916,'Kunene','Namibia','NA','Kunene (Namibia)',1,1,0),(23897,0,123917,'Kurili','Croatia','HR','Kurili (Croatia)',1,1,0),(23898,14626,123918,'Kushimoto','Japan','JP','Kushimoto (Japan)',1,1,0),(23899,0,123919,'Kuta (Lombok)','Indonesia','ID','Kuta (Lombok) (Indonesia)',1,1,0),(23900,0,123920,'Kvamskogen - Norheimsund','Norway','NO','Kvamskogen - Norheimsund (Norway)',1,1,0),(23901,0,123921,'Kvenv?r','Norway','NO','Kvenv?r (Norway)',1,1,0),(23902,14654,123922,'Kvinesdal','Norway','NO','Kvinesdal (Norway)',1,1,0),(23903,0,123923,'Kylesalia','Ireland','IE','Kylesalia (Ireland)',1,1,0),(23904,0,123924,'Kyllini','Greece','GR','Kyllini (Greece)',1,1,0),(23905,14676,123925,'Kyrenia','Cyprus','CY','Kyrenia (Cyprus)',1,1,0),(23906,0,123926,'Kyselka','Czech Republic','CZ','Kyselka (Czech Republic)',1,1,0),(23907,0,123927,'L\' Aiguillon sur Mer','France','FR','L\' Aiguillon sur Mer (France)',1,1,0),(23908,0,123928,'La Cadiere','France','FR','La Cadiere (France)',1,1,0),(23909,0,123929,'La Caleta de Famara','Spain','ES','La Caleta de Famara (Spain)',1,1,0),(23910,0,123930,'La Cellera de Ter','Spain','ES','La Cellera de Ter (Spain)',1,1,0),(23911,31275,123931,'La Chatre','France','FR','La Chatre (France)',1,1,0),(23912,31277,123932,'La Chaussee-sur-Marne','France','FR','La Chaussee-sur-Marne (France)',1,1,0),(23913,0,123933,'La Crouzille','France','FR','La Crouzille (France)',1,1,0),(23914,0,123934,'La Farga De Moles','Spain','ES','La Farga De Moles (Spain)',1,1,0),(23915,0,123935,'La Foa','New Caledonia','NC','La Foa (New Caledonia)',1,1,0),(23916,31332,123936,'La Fortuna','Costa Rica','CR','La Fortuna (Costa Rica)',1,1,0),(23917,0,123937,'La Giettaz','France','FR','La Giettaz (France)',1,1,0),(23918,0,123938,'La Guerinere','France','FR','La Guerinere (France)',1,1,0),(23919,0,123939,'La Hoya','Spain','ES','La Hoya (Spain)',1,1,0),(23920,31369,123940,'La Junta','United States of America','US','La Junta (United States of America)',1,1,0),(23921,0,123941,'La Longuera','Spain','ES','La Longuera (Spain)',1,1,0),(23922,0,123942,'La Manga','Spain','ES','La Manga (Spain)',1,1,0),(23923,31386,123943,'La Marque','United States of America','US','La Marque (United States of America)',1,1,0),(23924,0,123944,'La Morera de Montsant','Spain','ES','La Morera de Montsant (Spain)',1,1,0),(23925,31400,123945,'La Mothe-Achard','France','FR','La Mothe-Achard (France)',1,1,0),(23926,31404,123946,'La Mure','France','FR','La Mure (France)',1,1,0),(23927,31406,123947,'La Napoule','France','FR','La Napoule (France)',1,1,0),(23928,31410,123948,'La Palma','United States of America','US','La Palma (United States of America)',1,1,0),(23929,0,123949,'La Passe','Seychelles','SC','La Passe (Seychelles)',1,1,0),(23930,31425,123950,'La Piedad','Mexico','MX','La Piedad (Mexico)',1,1,0),(23931,0,123951,'La Plaine sur Mer','France','FR','La Plaine sur Mer (France)',1,1,0),(23932,31432,123952,'La Plata','United States of America','US','La Plata (United States of America)',1,1,0),(23933,31460,123953,'La Roche-en-Ardenne','Belgium','BE','La Roche-en-Ardenne (Belgium)',1,1,0),(23934,0,123954,'La Roche-Guyon','France','FR','La Roche-Guyon (France)',1,1,0),(23935,31461,123955,'La Roche-l\'Abeille','France','FR','La Roche-l\'Abeille (France)',1,1,0),(23936,31466,123956,'La Rochette','France','FR','La Rochette (France)',1,1,0),(23937,0,123957,'Klingberg','Germany','DE','Klingberg (Germany)',1,1,0),(23938,0,123958,'Klink on the Muritz','Germany','DE','Klink on the Muritz (Germany)',1,1,0),(23939,0,123959,'Klisoura','Greece','GR','Klisoura (Greece)',1,1,0),(23940,14239,123960,'Klong Prao Beach','Thailand','TH','Klong Prao Beach (Thailand)',1,1,0),(23941,0,123961,'Klosterbuch','Germany','DE','Klosterbuch (Germany)',1,1,0),(23942,0,123962,'Klosterle','Austria','AT','Klosterle (Austria)',1,1,0),(23943,0,123963,'Knebel','Denmark','DK','Knebel (Denmark)',1,1,0),(23944,0,123964,'Knistad','Sweden','SE','Knistad (Sweden)',1,1,0),(23945,14254,123965,'Knittelfeld','Austria','AT','Knittelfeld (Austria)',1,1,0),(23946,0,123966,'Knob Noster','United States of America','US','Knob Noster (United States of America)',1,1,0),(23947,0,123967,'Knokke-Zoute','Belgium','BE','Knokke-Zoute (Belgium)',1,1,0),(23948,14258,123968,'Knowlton','Canada','CA','Knowlton (Canada)',1,1,0),(23949,0,123969,'Knoxville','United States of America','US','Knoxville (United States of America)',1,1,0),(23950,0,123970,'Knoxville','United States of America','US','Knoxville (United States of America)',1,1,0),(23951,14261,123971,'Knysna','South Africa','ZA','Knysna (South Africa)',1,1,0),(23952,0,123972,'Kocevje','Slovenia','SI','Kocevje (Slovenia)',1,1,0),(23953,0,123973,'Koenigsdorf','Austria','AT','Koenigsdorf (Austria)',1,1,0),(23954,14297,123974,'Koh Kong','Cambodia','KH','Koh Kong (Cambodia)',1,1,0),(23955,0,123975,'Koh Muk','Thailand','TH','Koh Muk (Thailand)',1,1,0),(23956,0,123976,'Kokkini Hani','Greece','GR','Kokkini Hani (Greece)',1,1,0),(23957,0,123977,'Koleczkowo','Poland','PL','Koleczkowo (Poland)',1,1,0),(23958,14317,123978,'Koli','Finland','FI','Koli (Finland)',1,1,0),(23959,14321,123979,'Kolin','Czech Republic','CZ','Kolin (Czech Republic)',1,1,0),(23960,0,123980,'Kolleda','Germany','DE','Kolleda (Germany)',1,1,0),(23961,0,123981,'Kollmar','Germany','DE','Kollmar (Germany)',1,1,0),(23962,0,123982,'Kollnburg','Germany','DE','Kollnburg (Germany)',1,1,0),(23963,31223,123983,'Koloa','United States of America','US','Koloa (United States of America)',1,1,0),(23964,0,123984,'Kolocep Island','Croatia','HR','Kolocep Island (Croatia)',1,1,0),(23965,0,123985,'Kolpinsee','Germany','DE','Kolpinsee (Germany)',1,1,0),(23966,14330,123986,'Kolsassberg','Austria','AT','Kolsassberg (Austria)',1,1,0),(23967,0,123987,'Kombi','Greece','GR','Kombi (Greece)',1,1,0),(23968,0,123988,'Komeno','Greece','GR','Komeno (Greece)',1,1,0),(23969,0,123989,'Kondili','Greece','GR','Kondili (Greece)',1,1,0),(23970,0,123990,'Konigsbruck','Germany','DE','Konigsbruck (Germany)',1,1,0),(23971,14357,123991,'Konigstein','Germany','DE','Konigstein (Germany)',1,1,0),(23972,0,123992,'Konskie','Poland','PL','Konskie (Poland)',1,1,0),(23973,0,123993,'Konyaalti','Turkey','TR','Konyaalti (Turkey)',1,1,0),(23974,0,123994,'Kootenay-Nationalpark','Canada','CA','Kootenay-Nationalpark (Canada)',1,1,0),(23975,0,123995,'Kootwijk','Netherlands','NL','Kootwijk (Netherlands)',1,1,0),(23976,31226,123996,'Koping','Sweden','SE','Koping (Sweden)',1,1,0),(23977,0,123997,'Kopp','Germany','DE','Kopp (Germany)',1,1,0),(23978,0,123998,'Koprivnice','Czech Republic','CZ','Koprivnice (Czech Republic)',1,1,0),(23979,0,123999,'Kordel','Germany','DE','Kordel (Germany)',1,1,0),(23980,0,124000,'Korenov','Czech Republic','CZ','Korenov (Czech Republic)',1,1,0),(23981,0,124001,'Korkuteli','Turkey','TR','Korkuteli (Turkey)',1,1,0),(23982,0,124002,'Korperich','Germany','DE','Korperich (Germany)',1,1,0),(23983,0,124003,'Koschariza','Bulgaria','BG','Koschariza (Bulgaria)',1,1,0),(23984,0,124004,'Koscian','Poland','PL','Koscian (Poland)',1,1,0),(23985,0,124005,'Koskinou','Greece','GR','Koskinou (Greece)',1,1,0),(23986,0,124006,'Kota','Japan','JP','Kota (Japan)',1,1,0),(23987,0,124007,'Kota Tinggi','Malaysia','MY','Kota Tinggi (Malaysia)',1,1,0),(23988,0,124009,'Kotschach-Mauthen','Austria','AT','Kotschach-Mauthen (Austria)',1,1,0),(23989,14444,124010,'Kouklia','Cyprus','CY','Kouklia (Cyprus)',1,1,0),(23990,0,124011,'Kouloura','Greece','GR','Kouloura (Greece)',1,1,0),(23991,14453,124012,'Koutsounari','Greece','GR','Koutsounari (Greece)',1,1,0),(23992,0,124013,'Kovarska','Czech Republic','CZ','Kovarska (Czech Republic)',1,1,0),(23993,0,124014,'Kowerich (Mosel)','Germany','DE','Kowerich (Mosel) (Germany)',1,1,0),(23994,14466,124015,'Krabi','Thailand','TH','Krabi (Thailand)',1,1,0),(23995,0,124016,'Krakauebene','Austria','AT','Krakauebene (Austria)',1,1,0),(23996,14476,124017,'Kramfors','Sweden','SE','Kramfors (Sweden)',1,1,0),(23997,14481,124018,'Kranzberg','Germany','DE','Kranzberg (Germany)',1,1,0),(23998,0,124019,'Krasiczyn','Poland','PL','Krasiczyn (Poland)',1,1,0),(23999,0,124020,'Kreischa','Germany','DE','Kreischa (Germany)',1,1,0),(24000,14494,124021,'Kremasti','Greece','GR','Kremasti (Greece)',1,1,0),(24001,14495,124022,'Kremmling','United States of America','US','Kremmling (United States of America)',1,1,0),(24002,0,124023,'Kreuzkap','Namibia','NA','Kreuzkap (Namibia)',1,1,0),(24003,0,124024,'Kritzendorf','Austria','AT','Kritzendorf (Austria)',1,1,0),(24004,0,124025,'Krokkleiva','Norway','NO','Krokkleiva (Norway)',1,1,0),(24005,14519,124026,'Kronenburg','Germany','DE','Kronenburg (Germany)',1,1,0),(24006,0,124027,'Krsan','Croatia','HR','Krsan (Croatia)',1,1,0),(24007,0,124028,'Kruchten','Germany','DE','Kruchten (Germany)',1,1,0),(24008,14524,124029,'Kruger National Park','South Africa','ZA','Kruger National Park (South Africa)',1,1,0),(24009,14526,124030,'Kruiningen','Netherlands','NL','Kruiningen (Netherlands)',1,1,0),(24010,0,124031,'Kruklanki','Poland','PL','Kruklanki (Poland)',1,1,0),(24011,0,124032,'Krusevo','Macedonia','MK','Krusevo (Macedonia)',1,1,0),(24012,0,124033,'Kuala Besut','Malaysia','MY','Kuala Besut (Malaysia)',1,1,0),(24013,14540,124034,'Kuantan','Malaysia','MY','Kuantan (Malaysia)',1,1,0),(24014,0,124035,'Kublis','Switzerland','CH','Kublis (Switzerland)',1,1,0),(24015,0,124036,'Kubschutz','Germany','DE','Kubschutz (Germany)',1,1,0),(24016,14561,124037,'Kuils River','South Africa','ZA','Kuils River (South Africa)',1,1,0),(24017,14569,124038,'Kulim','Malaysia','MY','Kulim (Malaysia)',1,1,0),(24018,14571,124039,'Kulmbach','Germany','DE','Kulmbach (Germany)',1,1,0),(24019,14573,124040,'Kulusuk','Greenland','GL','Kulusuk (Greenland)',1,1,0),(24020,0,124041,'Kumanovo','Macedonia','MK','Kumanovo (Macedonia)',1,1,0),(24021,0,124042,'Kundasang','Malaysia','MY','Kundasang (Malaysia)',1,1,0),(24022,14604,124043,'Kuqa','China','CN','Kuqa (China)',1,1,0),(24023,14634,124046,'Kutahya','Turkey','TR','Kutahya (Turkey)',1,1,0),(24024,0,124047,'Kutzenhausen','Germany','DE','Kutzenhausen (Germany)',1,1,0),(24025,0,124048,'Kuurne','Belgium','BE','Kuurne (Belgium)',1,1,0),(24026,0,124049,'Kvam','Norway','NO','Kvam (Norway)',1,1,0),(24027,0,124050,'Kyritz','Germany','DE','Kyritz (Germany)',1,1,0),(24028,14678,124051,'Kythira','Greece','GR','Kythira (Greece)',1,1,0),(24029,0,124052,'La Balise Marina','Mauritius','MU','La Balise Marina (Mauritius)',1,1,0),(24030,31244,124053,'La Bisbal d\'Emporda','Spain','ES','La Bisbal d\'Emporda (Spain)',1,1,0),(24031,0,124054,'La Brevine','Switzerland','CH','La Brevine (Switzerland)',1,1,0),(24032,0,124055,'La Bussiere-sur-Ouche','France','FR','La Bussiere-sur-Ouche (France)',1,1,0),(24033,0,124056,'La Canonja','Spain','ES','La Canonja (Spain)',1,1,0),(24034,0,124057,'La Caridad','Spain','ES','La Caridad (Spain)',1,1,0),(24035,31261,124058,'La Carlota','Spain','ES','La Carlota (Spain)',1,1,0),(24036,31263,124059,'La Celle','France','FR','La Celle (France)',1,1,0),(24037,31273,124060,'La Chartre-sur-le-Loir','France','FR','La Chartre-sur-le-Loir (France)',1,1,0),(24038,0,124061,'La Chaussee-d\'Ivry','France','FR','La Chaussee-d\'Ivry (France)',1,1,0),(24039,31286,124062,'La Colle-sur-Loup','France','FR','La Colle-sur-Loup (France)',1,1,0),(24040,0,124063,'La Coma i La Pedra','Spain','ES','La Coma i La Pedra (Spain)',1,1,0),(24041,0,124064,'La Conia','Italy','IT','La Conia (Italy)',1,1,0),(24042,0,124065,'La Cortinada','Andorra','AD','La Cortinada (Andorra)',1,1,0),(24043,0,124066,'La Cote-Saint-Andre','France','FR','La Cote-Saint-Andre (France)',1,1,0),(24044,0,124067,'Labasheeda','Ireland','IE','Labasheeda (Ireland)',1,1,0),(24045,14697,124068,'Labastide-Murat','France','FR','Labastide-Murat (France)',1,1,0),(24046,14706,124069,'Labuan','Malaysia','MY','Labuan (Malaysia)',1,1,0),(24047,14714,124070,'Lacaune','France','FR','Lacaune (France)',1,1,0),(24048,14737,124071,'Ladispoli','Italy','IT','Ladispoli (Italy)',1,1,0),(24049,14745,124072,'Ladysmith','South Africa','ZA','Ladysmith (South Africa)',1,1,0),(24050,14752,124073,'Lafayette','United States of America','US','Lafayette (United States of America)',1,1,0),(24051,0,124074,'Laforet','Belgium','BE','Laforet (Belgium)',1,1,0),(24052,14756,124075,'Lagarrigue','France','FR','Lagarrigue (France)',1,1,0),(24053,14762,124076,'Laglio','Italy','IT','Laglio (Italy)',1,1,0),(24054,0,124077,'Lagolo','Italy','IT','Lagolo (Italy)',1,1,0),(24055,14770,124078,'Lagonissi','Greece','GR','Lagonissi (Greece)',1,1,0),(24056,14775,124079,'Lagrand','France','FR','Lagrand (France)',1,1,0),(24057,0,124080,'Laguepie','France','FR','Laguepie (France)',1,1,0),(24058,0,124081,'Laholm - Skummelov','Sweden','SE','Laholm - Skummelov (Sweden)',1,1,0),(24059,14795,124082,'Lahti','Finland','FI','Lahti (Finland)',1,1,0),(24060,0,124083,'Laikipia','Kenya','KE','Laikipia (Kenya)',1,1,0),(24061,0,124084,'Laiwu','China','CN','Laiwu (China)',1,1,0),(24062,0,124085,'Lajatico','Italy','IT','Lajatico (Italy)',1,1,0),(24063,0,124086,'Lake Bogoria','Kenya','KE','Lake Bogoria (Kenya)',1,1,0),(24064,0,124087,'Lake City','United States of America','US','Lake City (United States of America)',1,1,0),(24065,31560,124088,'Lake Forest','United States of America','US','Lake Forest (United States of America)',1,1,0),(24066,31562,124089,'Lake George','United States of America','US','Lake George (United States of America)',1,1,0),(24067,31564,124090,'Lake Harmony','United States of America','US','Lake Harmony (United States of America)',1,1,0),(24068,31565,124091,'Lake Havasu City','United States of America','US','Lake Havasu City (United States of America)',1,1,0),(24069,31577,124092,'Lake Mary','United States of America','US','Lake Mary (United States of America)',1,1,0),(24070,0,124093,'Lake Muhazi','Rwanda','RW','Lake Muhazi (Rwanda)',1,1,0),(24071,0,124094,'Lake Victoria','Kenya','KE','Lake Victoria (Kenya)',1,1,0),(24072,0,124095,'Lake Windermere','United Kingdom','UK','Lake Windermere (United Kingdom)',1,1,0),(24073,0,124096,'Lakeville','United States of America','US','Lakeville (United States of America)',1,1,0),(24074,14832,124097,'Lakeway','United States of America','US','Lakeway (United States of America)',1,1,0),(24075,0,124098,'Lakhkolampi','Russia','RU','Lakhkolampi (Russia)',1,1,0),(24076,0,124099,'Lalendorf','Germany','DE','Lalendorf (Germany)',1,1,0),(24077,14844,124100,'Lalibela','Ethiopia','ET','Lalibela (Ethiopia)',1,1,0),(24078,0,124101,'Lalla Takerkoust','Morocco','MA','Lalla Takerkoust (Morocco)',1,1,0),(24079,0,124102,'L\'Altet','Spain','ES','L\'Altet (Spain)',1,1,0),(24080,14862,124103,'Lamesa','United States of America','US','Lamesa (United States of America)',1,1,0),(24081,0,124104,'Lampe','United States of America','US','Lampe (United States of America)',1,1,0),(24082,14881,124105,'Lampedusa','Italy','IT','Lampedusa (Italy)',1,1,0),(24083,14882,124106,'Lampertheim','Germany','DE','Lampertheim (Germany)',1,1,0),(24084,14888,124107,'Lamporecchio','Italy','IT','Lamporecchio (Italy)',1,1,0),(24085,14891,124108,'Lanaken','Belgium','BE','Lanaken (Belgium)',1,1,0),(24086,0,124109,'Lanark','United Kingdom','UK','Lanark (United Kingdom)',1,1,0),(24087,0,124110,'Lancashire','United Kingdom','UK','Lancashire (United Kingdom)',1,1,0),(24088,0,124111,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(24089,0,124112,'Lancieux','France','FR','Lancieux (France)',1,1,0),(24090,14910,124113,'Landgraaf','Netherlands','NL','Landgraaf (Netherlands)',1,1,0),(24091,0,124114,'Landkern','Germany','DE','Landkern (Germany)',1,1,0),(24092,0,124115,'Landquart','Switzerland','CH','Landquart (Switzerland)',1,1,0),(24093,0,124116,'Landskron','Austria','AT','Landskron (Austria)',1,1,0),(24094,0,124117,'Langballig','Germany','DE','Langballig (Germany)',1,1,0),(24095,14939,124118,'Langenfeld','Austria','AT','Langenfeld (Austria)',1,1,0),(24096,0,124119,'Langensendelbach','Germany','DE','Langensendelbach (Germany)',1,1,0),(24097,14947,124120,'Langfang','China','CN','Langfang (China)',1,1,0),(24098,14951,124121,'Langhirano','Italy','IT','Langhirano (Italy)',1,1,0),(24099,14956,124122,'Langley','Canada','CA','Langley (Canada)',1,1,0),(24100,14958,124123,'Langnau im Emmental','Switzerland','CH','Langnau im Emmental (Switzerland)',1,1,0),(24101,0,124124,'Langweid am Lech','Germany','DE','Langweid am Lech (Germany)',1,1,0),(24102,0,124125,'Langwiesen','Switzerland','CH','Langwiesen (Switzerland)',1,1,0),(24103,0,124126,'Langzhong','China','CN','Langzhong (China)',1,1,0),(24104,0,124127,'Lanloup','France','FR','Lanloup (France)',1,1,0),(24105,0,124128,'L\'Anse au Clair','Canada','CA','L\'Anse au Clair (Canada)',1,1,0),(24106,14980,124129,'Lanseria','South Africa','ZA','Lanseria (South Africa)',1,1,0),(24107,0,124130,'Lansing','United States of America','US','Lansing (United States of America)',1,1,0),(24108,14985,124131,'Lantana','United States of America','US','Lantana (United States of America)',1,1,0),(24109,0,124132,'Lanuvio','Italy','IT','Lanuvio (Italy)',1,1,0),(24110,0,124133,'Lanzac','France','FR','Lanzac (France)',1,1,0),(24111,15006,124134,'Laon','France','FR','Laon (France)',1,1,0),(24112,0,124135,'Lapoutroie','France','FR','Lapoutroie (France)',1,1,0),(24113,15014,124136,'Lappeenranta','Finland','FI','Lappeenranta (Finland)',1,1,0),(24114,0,124137,'Lapta','Cyprus','CY','Lapta (Cyprus)',1,1,0),(24115,15021,124138,'Laramie','United States of America','US','Laramie (United States of America)',1,1,0),(24116,15028,124139,'Laredo','Spain','ES','Laredo (Spain)',1,1,0),(24117,0,124140,'Largentiere','France','FR','Largentiere (France)',1,1,0),(24118,0,124141,'Laroles','Spain','ES','Laroles (Spain)',1,1,0),(24119,31610,124142,'Las Animas','United States of America','US','Las Animas (United States of America)',1,1,0),(24120,31613,124143,'Las Cabezas de San Juan','Spain','ES','Las Cabezas de San Juan (Spain)',1,1,0),(24121,31620,124144,'Las Gabias','Spain','ES','Las Gabias (Spain)',1,1,0),(24122,0,124145,'Las Herrerias de Valcarce','Spain','ES','Las Herrerias de Valcarce (Spain)',1,1,0),(24123,0,124146,'Las Lajas','Panama','PA','Las Lajas (Panama)',1,1,0),(24124,31625,124147,'Las Negras','Spain','ES','Las Negras (Spain)',1,1,0),(24125,0,124148,'Las Nieves - Velhoco','Spain','ES','Las Nieves - Velhoco (Spain)',1,1,0),(24126,0,124149,'Las Playacitas','Spain','ES','Las Playacitas (Spain)',1,1,0),(24127,31629,124150,'Las Rosas','Spain','ES','Las Rosas (Spain)',1,1,0),(24128,0,124151,'Las Zocas','Spain','ES','Las Zocas (Spain)',1,1,0),(24129,0,124152,'Lasberg','Austria','AT','Lasberg (Austria)',1,1,0),(24130,0,124153,'Lassekrog','Sweden','SE','Lassekrog (Sweden)',1,1,0),(24131,15075,124154,'Latham','United States of America','US','Latham (United States of America)',1,1,0),(24132,0,124155,'Latsch','Italy','IT','Latsch (Italy)',1,1,0),(24133,0,124156,'Lattakia','Syria',NULL,'Lattakia (Syria)',1,1,0),(24134,0,124157,'Lattrop-Breklenkamp','Netherlands','NL','Lattrop-Breklenkamp (Netherlands)',1,1,0),(24135,0,124158,'Lauchheim','Germany','DE','Lauchheim (Germany)',1,1,0),(24136,15096,124159,'Lauderdale-by-the-Sea','United States of America','US','Lauderdale-by-the-Sea (United States of America)',1,1,0),(24137,0,124160,'Lauf an der Pegnitz','Germany','DE','Lauf an der Pegnitz (Germany)',1,1,0),(24138,15101,124161,'Laugarbakki','Iceland','IS','Laugarbakki (Iceland)',1,1,0),(24139,0,124162,'Lauingen (Donau)','Germany','DE','Lauingen (Donau) (Germany)',1,1,0),(24140,15113,124163,'Laupheim','Germany','DE','Laupheim (Germany)',1,1,0),(24141,0,124164,'Laurel','United States of America','US','Laurel (United States of America)',1,1,0),(24142,0,124165,'Lauro de Freitas','Brazil','BR','Lauro de Freitas (Brazil)',1,1,0),(24143,15122,124166,'Lauscha','Germany','DE','Lauscha (Germany)',1,1,0),(24144,0,124167,'Lauterach','Austria','AT','Lauterach (Austria)',1,1,0),(24145,15130,124168,'Lauzerte','France','FR','Lauzerte (France)',1,1,0),(24146,0,124169,'Laval','France','FR','Laval (France)',1,1,0),(24147,0,124170,'Lavamund','Austria','AT','Lavamund (Austria)',1,1,0),(24148,0,124171,'Lavey-les-Bains','Switzerland','CH','Lavey-les-Bains (Switzerland)',1,1,0),(24149,0,124172,'Layton','United States of America','US','Layton (United States of America)',1,1,0),(24150,15159,124173,'Lazaro Cardenas','Mexico','MX','Lazaro Cardenas (Mexico)',1,1,0),(24151,15162,124174,'Lazzaro','Italy','IT','Lazzaro (Italy)',1,1,0),(24152,13650,124175,'Kasson','United States of America','US','Kasson (United States of America)',1,1,0),(24153,0,124176,'Kastel Stafilic','Croatia','HR','Kastel Stafilic (Croatia)',1,1,0),(24154,13654,124177,'Kastelir','Croatia','HR','Kastelir (Croatia)',1,1,0),(24155,13657,124178,'Kasterlee','Belgium','BE','Kasterlee (Belgium)',1,1,0),(24156,0,124179,'Kata Noi Beach','Thailand','TH','Kata Noi Beach (Thailand)',1,1,0),(24157,13670,124180,'Katerini','Greece','GR','Katerini (Greece)',1,1,0),(24158,0,124181,'Kato Daratsos','Greece','GR','Kato Daratsos (Greece)',1,1,0),(24159,0,124182,'Kato Tripodo','Greece','GR','Kato Tripodo (Greece)',1,1,0),(24160,0,124183,'Kato Zakros','Greece','GR','Kato Zakros (Greece)',1,1,0),(24161,13684,124185,'Katrineholm','Sweden','SE','Katrineholm (Sweden)',1,1,0),(24162,0,124186,'Katsarou','Greece','GR','Katsarou (Greece)',1,1,0),(24163,13708,124187,'Kaukauna','United States of America','US','Kaukauna (United States of America)',1,1,0),(24164,0,124188,'Kaunertal','Austria','AT','Kaunertal (Austria)',1,1,0),(24165,0,124189,'Kautenbach','Luxembourg','LU','Kautenbach (Luxembourg)',1,1,0),(24166,13720,124190,'Kavala','Greece','GR','Kavala (Greece)',1,1,0),(24167,13723,124191,'Kavieng','Papua New Guinea','PG','Kavieng (Papua New Guinea)',1,1,0),(24168,13730,124192,'Kawasaki','Japan','JP','Kawasaki (Japan)',1,1,0),(24169,0,124193,'Kayu Putih','Indonesia','ID','Kayu Putih (Indonesia)',1,1,0),(24170,13743,124194,'Kazuno','Japan','JP','Kazuno (Japan)',1,1,0),(24171,13746,124195,'Keaau','United States of America','US','Keaau (United States of America)',1,1,0),(24172,13756,124196,'Kecskemet','Hungary','HU','Kecskemet (Hungary)',1,1,0),(24173,13764,124197,'Keelung','Taiwan','TW','Keelung (Taiwan)',1,1,0),(24174,0,124198,'Kefalas','Greece','GR','Kefalas (Greece)',1,1,0),(24175,13770,124199,'Kefalonia','Greece','GR','Kefalonia (Greece)',1,1,0),(24176,13779,124200,'Kehl','Germany','DE','Kehl (Germany)',1,1,0),(24177,0,124201,'Kei Mouth','South Africa','ZA','Kei Mouth (South Africa)',1,1,0),(24178,0,124202,'Keimoes','South Africa','ZA','Keimoes (South Africa)',1,1,0),(24179,13785,124203,'Keitum','Germany','DE','Keitum (Germany)',1,1,0),(24180,0,124204,'Kelberg','Germany','DE','Kelberg (Germany)',1,1,0),(24181,0,124205,'Kellinghusen','Germany','DE','Kellinghusen (Germany)',1,1,0),(24182,13804,124206,'Kelseyville','United States of America','US','Kelseyville (United States of America)',1,1,0),(24183,0,124207,'Kelso','United Kingdom','UK','Kelso (United Kingdom)',1,1,0),(24184,0,124208,'Kemio','Finland','FI','Kemio (Finland)',1,1,0),(24185,13818,124209,'Kempen','Germany','DE','Kempen (Germany)',1,1,0),(24186,13826,124210,'Kendallville','United States of America','US','Kendallville (United States of America)',1,1,0),(24187,0,124211,'Kenilworth','United Kingdom','UK','Kenilworth (United Kingdom)',1,1,0),(24188,13833,124212,'Kenitra','Morocco','MA','Kenitra (Morocco)',1,1,0),(24189,13838,124213,'Kenmore','United States of America','US','Kenmore (United States of America)',1,1,0),(24190,0,124214,'Kennebunk Beach','United States of America','US','Kennebunk Beach (United States of America)',1,1,0),(24191,13846,124215,'Kenner','United States of America','US','Kenner (United States of America)',1,1,0),(24192,0,124216,'Kent','United Kingdom','UK','Kent (United Kingdom)',1,1,0),(24193,13864,124217,'Kentland','United States of America','US','Kentland (United States of America)',1,1,0),(24194,0,124218,'Kenton-on-Sea','South Africa','ZA','Kenton-on-Sea (South Africa)',1,1,0),(24195,13869,124219,'Kentville','Canada','CA','Kentville (Canada)',1,1,0),(24196,0,124220,'Keratokambos','Greece','GR','Keratokambos (Greece)',1,1,0),(24197,13882,124221,'Kerikeri','New Zealand','NZ','Kerikeri (New Zealand)',1,1,0),(24198,0,124222,'Kernen im Remstal','Germany','DE','Kernen im Remstal (Germany)',1,1,0),(24199,13904,124223,'Ketapang','Indonesia','ID','Ketapang (Indonesia)',1,1,0),(24200,0,124224,'Kettering','United Kingdom','UK','Kettering (United Kingdom)',1,1,0),(24201,0,124225,'Kettershausen','Germany','DE','Kettershausen (Germany)',1,1,0),(24202,0,124226,'Ketzin','Germany','DE','Ketzin (Germany)',1,1,0),(24203,0,124227,'Kew','Australia','AU','Kew (Australia)',1,1,0),(24204,13923,124228,'Keyser','United States of America','US','Keyser (United States of America)',1,1,0),(24205,0,124229,'Khao Lak','Thailand','TH','Khao Lak (Thailand)',1,1,0),(24206,13946,124230,'Khartoum','Sudan','SD','Khartoum (Sudan)',1,1,0),(24207,13947,124231,'Khasab','Oman','OM','Khasab (Oman)',1,1,0),(24208,13968,124232,'Kiama','Australia','AU','Kiama (Australia)',1,1,0),(24209,13972,124233,'Kibaek','Denmark','DK','Kibaek (Denmark)',1,1,0),(24210,0,124234,'Kijac','Croatia','HR','Kijac (Croatia)',1,1,0),(24211,0,124235,'Kijac Njivice','Croatia','HR','Kijac Njivice (Croatia)',1,1,0),(24212,0,124236,'Kildrummy by Alford','United Kingdom','UK','Kildrummy by Alford (United Kingdom)',1,1,0),(24213,0,124237,'Kilimani','Tanzania','TZ','Kilimani (Tanzania)',1,1,0),(24214,14019,124238,'Killeen','United States of America','US','Killeen (United States of America)',1,1,0),(24215,14033,124239,'Kilmessan','Ireland','IE','Kilmessan (Ireland)',1,1,0),(24216,14034,124240,'Kilpisjarvi','Finland','FI','Kilpisjarvi (Finland)',1,1,0),(24217,0,124241,'Kimberley','Australia','AU','Kimberley (Australia)',1,1,0),(24218,0,124242,'Kinabalu Nationalpark','Malaysia','MY','Kinabalu Nationalpark (Malaysia)',1,1,0),(24219,0,124243,'King Island','Australia','AU','King Island (Australia)',1,1,0),(24220,31215,124244,'King of Prussia','United States of America','US','King of Prussia (United States of America)',1,1,0),(24221,0,124245,'Kings Canyon','Australia','AU','Kings Canyon (Australia)',1,1,0),(24222,0,124246,'Kingscote','Australia','AU','Kingscote (Australia)',1,1,0),(24223,0,124247,'Kini','Greece','GR','Kini (Greece)',1,1,0),(24224,14101,124248,'Kinsale','Ireland','IE','Kinsale (Ireland)',1,1,0),(24225,14103,124249,'Kinsarvik','Norway','NO','Kinsarvik (Norway)',1,1,0),(24226,14106,124250,'Kinston','United States of America','US','Kinston (United States of America)',1,1,0),(24227,14113,124251,'Kiowa','United States of America','US','Kiowa (United States of America)',1,1,0),(24228,0,124252,'Kirchberg (Hunsruck)','Germany','DE','Kirchberg (Hunsruck) (Germany)',1,1,0),(24229,0,124253,'Kirchdorf','Austria','AT','Kirchdorf (Austria)',1,1,0),(24230,0,124254,'Kirchlinteln','Germany','DE','Kirchlinteln (Germany)',1,1,0),(24231,14130,124255,'Kirchwalsede','Germany','DE','Kirchwalsede (Germany)',1,1,0),(24232,14136,124256,'Kirishima','Japan','JP','Kirishima (Japan)',1,1,0),(24233,0,124257,'Kislovodsk','Russia','RU','Kislovodsk (Russia)',1,1,0),(24234,0,124258,'Kist','Germany','DE','Kist (Germany)',1,1,0),(24235,14187,124259,'Kitee','Finland','FI','Kitee (Finland)',1,1,0),(24236,0,124260,'Kittelfjall','Sweden','SE','Kittelfjall (Sweden)',1,1,0),(24237,0,124261,'Kittendorf','Germany','DE','Kittendorf (Germany)',1,1,0),(24238,0,124262,'Kitty Hawk Beach','United States of America','US','Kitty Hawk Beach (United States of America)',1,1,0),(24239,0,124263,'Kiuruvesi','Finland','FI','Kiuruvesi (Finland)',1,1,0),(24240,0,124264,'Kjollefjord','Norway','NO','Kjollefjord (Norway)',1,1,0),(24241,14205,124265,'Kladno','Czech Republic','CZ','Kladno (Czech Republic)',1,1,0),(24242,0,124266,'Klais','Germany','DE','Klais (Germany)',1,1,0),(24243,14214,124267,'Klatovy','Czech Republic','CZ','Klatovy (Czech Republic)',1,1,0),(24244,14216,124268,'Kleena Kleene','Canada','CA','Kleena Kleene (Canada)',1,1,0),(24245,0,124269,'Kleinblittersdorf','Germany','DE','Kleinblittersdorf (Germany)',1,1,0),(24246,0,124270,'Kleindembach','Germany','DE','Kleindembach (Germany)',1,1,0),(24247,0,124271,'Kleinhohenrain','Germany','DE','Kleinhohenrain (Germany)',1,1,0),(24248,0,124272,'Kleinostheim','Germany','DE','Kleinostheim (Germany)',1,1,0),(24249,0,124273,'Kleinzell','Austria','AT','Kleinzell (Austria)',1,1,0),(24250,14227,124274,'Klemtu','Canada','CA','Klemtu (Canada)',1,1,0),(24251,0,124275,'Klettwitz','Germany','DE','Klettwitz (Germany)',1,1,0),(24252,0,124276,'Klipphausen','Germany','DE','Klipphausen (Germany)',1,1,0),(24253,0,124277,'Klodawa','Poland','PL','Klodawa (Poland)',1,1,0),(24254,0,124278,'Klodzko','Poland','PL','Klodzko (Poland)',1,1,0),(24255,0,124279,'Klotze','Germany','DE','Klotze (Germany)',1,1,0),(24256,0,124280,'Knappenberg','Austria','AT','Knappenberg (Austria)',1,1,0),(24257,14250,124281,'Knesselare','Belgium','BE','Knesselare (Belgium)',1,1,0),(24258,0,124282,'Ko Samed','Thailand','TH','Ko Samed (Thailand)',1,1,0),(24259,14266,124283,'Koblenz','Germany','DE','Koblenz (Germany)',1,1,0),(24260,14268,124284,'Kobuleti','Georgia','GE','Kobuleti (Georgia)',1,1,0),(24261,0,124285,'Koes','Namibia','NA','Koes (Namibia)',1,1,0),(24262,0,124286,'Kota Bharu','Malaysia','MY','Kota Bharu (Malaysia)',1,1,0),(24263,0,124287,'Kota Rembang','Indonesia','ID','Kota Rembang (Indonesia)',1,1,0),(24264,0,124288,'Kottenheim','Germany','DE','Kottenheim (Germany)',1,1,0),(24265,0,124289,'Koue','Estonia','EE','Koue (Estonia)',1,1,0),(24266,0,124290,'Kounoupidiana','Greece','GR','Kounoupidiana (Greece)',1,1,0),(24267,0,124291,'Koya-san','Japan','JP','Koya-san (Japan)',1,1,0),(24268,14463,124292,'Kozani','Greece','GR','Kozani (Greece)',1,1,0),(24269,14471,124293,'Krakow','Poland','PL','Krakow (Poland)',1,1,0),(24270,0,124294,'Kramesau','Austria','AT','Kramesau (Austria)',1,1,0),(24271,14477,124295,'Kramsach','Austria','AT','Kramsach (Austria)',1,1,0),(24272,14478,124296,'Kranenburg','Germany','DE','Kranenburg (Germany)',1,1,0),(24273,0,124297,'Krauchenwies','Germany','DE','Krauchenwies (Germany)',1,1,0),(24274,0,124298,'Kravsko','Czech Republic','CZ','Kravsko (Czech Republic)',1,1,0),(24275,14492,124299,'Krefeld','Germany','DE','Krefeld (Germany)',1,1,0),(24276,14497,124300,'Kremsmunster','Austria','AT','Kremsmunster (Austria)',1,1,0),(24277,0,124301,'Kre?berg','Germany','DE','Kre?berg (Germany)',1,1,0),(24278,0,124302,'Krinau','Switzerland','CH','Krinau (Switzerland)',1,1,0),(24279,0,124303,'Krizine','Croatia','HR','Krizine (Croatia)',1,1,0),(24280,14516,124304,'Krk','Croatia','HR','Krk (Croatia)',1,1,0),(24281,0,124305,'Krombach','Germany','DE','Krombach (Germany)',1,1,0),(24282,0,124306,'Krompachy','Slovakia','SK','Krompachy (Slovakia)',1,1,0),(24283,0,124307,'Kroslin','Germany','DE','Kroslin (Germany)',1,1,0),(24284,0,124308,'Kruszyn','Poland','PL','Kruszyn (Poland)',1,1,0),(24285,0,124309,'Krynica Morska','Poland','PL','Krynica Morska (Poland)',1,1,0),(24286,0,124310,'Krywyj Rih','Ukraine','UA','Krywyj Rih (Ukraine)',1,1,0),(24287,14536,124311,'Kuah','Malaysia','MY','Kuah (Malaysia)',1,1,0),(24288,14548,124312,'Kucukkuyu','Turkey','TR','Kucukkuyu (Turkey)',1,1,0),(24289,0,124313,'Kuklowka Zarzeczna','Poland','PL','Kuklowka Zarzeczna (Poland)',1,1,0),(24290,0,124314,'Kukmirn','Austria','AT','Kukmirn (Austria)',1,1,0),(24291,14572,124315,'Kulpsville','United States of America','US','Kulpsville (United States of America)',1,1,0),(24292,0,124316,'Kumai','Indonesia','ID','Kumai (Indonesia)',1,1,0),(24293,0,124317,'Kumhausen','Germany','DE','Kumhausen (Germany)',1,1,0),(24294,14593,124318,'Kuningan','Indonesia','ID','Kuningan (Indonesia)',1,1,0),(24295,0,124319,'Kunzell','Germany','DE','Kunzell (Germany)',1,1,0),(24296,0,124320,'Kuortane','Finland','FI','Kuortane (Finland)',1,1,0),(24297,14606,124321,'Kurashiki','Japan','JP','Kurashiki (Japan)',1,1,0),(24298,0,124322,'Kurdejov','Czech Republic','CZ','Kurdejov (Czech Republic)',1,1,0),(24299,0,124323,'Kurnbach','Germany','DE','Kurnbach (Germany)',1,1,0),(24300,14642,124324,'Kuttawa','United States of America','US','Kuttawa (United States of America)',1,1,0),(24301,14655,124325,'Kvitfjell','Norway','NO','Kvitfjell (Norway)',1,1,0),(24302,0,124326,'Kwazulu Natal','South Africa','ZA','Kwazulu Natal (South Africa)',1,1,0),(24303,0,124327,'Kyabram','Australia','AU','Kyabram (Australia)',1,1,0),(24304,0,124328,'Kyburz','United States of America','US','Kyburz (United States of America)',1,1,0),(24305,0,124329,'Kymi','Greece','GR','Kymi (Greece)',1,1,0),(24306,0,124330,'Kyrks?terora','Norway','NO','Kyrks?terora (Norway)',1,1,0),(24307,31231,124331,'La Alberca','Spain','ES','La Alberca (Spain)',1,1,0),(24308,0,124332,'La Alcaidesa','Spain','ES','La Alcaidesa (Spain)',1,1,0),(24309,31243,124333,'La Bernerie en Retz','France','FR','La Bernerie en Retz (France)',1,1,0),(24310,0,124334,'La Bree les Bains','France','FR','La Bree les Bains (France)',1,1,0),(24311,0,124335,'La Bussiere (Loiret)','France','FR','La Bussiere (Loiret) (France)',1,1,0),(24312,0,124336,'La Caillere-Saint-Hilaire','France','FR','La Caillere-Saint-Hilaire (France)',1,1,0),(24313,31257,124337,'La Caleta','Spain','ES','La Caleta (Spain)',1,1,0),(24314,31272,124338,'La Chapelle-Saint-Mesmin','France','FR','La Chapelle-Saint-Mesmin (France)',1,1,0),(24315,31274,124339,'La Chatelaine','France','FR','La Chatelaine (France)',1,1,0),(24316,31288,124340,'La Conner','United States of America','US','La Conner (United States of America)',1,1,0),(24317,0,124341,'La Croix Valmer','France','FR','La Croix Valmer (France)',1,1,0),(24318,31306,124342,'La Defense','France','FR','La Defense (France)',1,1,0),(24319,31319,124343,'La Ferte-Bernard','France','FR','La Ferte-Bernard (France)',1,1,0),(24320,0,124344,'La Ferte-Gaucher','France','FR','La Ferte-Gaucher (France)',1,1,0),(24321,0,124345,'La Freissinouse','France','FR','La Freissinouse (France)',1,1,0),(24322,0,124346,'La Gacilly','France','FR','La Gacilly (France)',1,1,0),(24323,0,124347,'La Garita','Costa Rica','CR','La Garita (Costa Rica)',1,1,0),(24324,31341,124348,'La Gouesniere','France','FR','La Gouesniere (France)',1,1,0),(24325,0,124349,'La Gudina','Spain','ES','La Gudina (Spain)',1,1,0),(24326,0,124350,'La Mora','Spain','ES','La Mora (Spain)',1,1,0),(24327,31414,124351,'La Paz','Mexico','MX','La Paz (Mexico)',1,1,0),(24328,31423,124352,'La Petite Pierre','France','FR','La Petite Pierre (France)',1,1,0),(24329,0,124353,'La Pineda de Salou','Spain','ES','La Pineda de Salou (Spain)',1,1,0),(24330,31431,124354,'La Plata','Argentina','AR','La Plata (Argentina)',1,1,0),(24331,0,124355,'La Pointe Jerome','Mauritius','MU','La Pointe Jerome (Mauritius)',1,1,0),(24332,31440,124356,'La Puebla de Valverde','Spain','ES','La Puebla de Valverde (Spain)',1,1,0),(24333,0,124357,'La Punta','Spain','ES','La Punta (Spain)',1,1,0),(24334,0,124358,'La Quiaca','Argentina','AR','La Quiaca (Argentina)',1,1,0),(24335,31443,124359,'La Quinta','United States of America','US','La Quinta (United States of America)',1,1,0),(24336,0,124360,'La Remigeasse','France','FR','La Remigeasse (France)',1,1,0),(24337,31462,124361,'La Rochelle','France','FR','La Rochelle (France)',1,1,0),(24338,0,124362,'La Roque-sur-Pernes','France','FR','La Roque-sur-Pernes (France)',1,1,0),(24339,0,124363,'La Rothiere','France','FR','La Rothiere (France)',1,1,0),(24340,31474,124364,'La Sabina','Spain','ES','La Sabina (Spain)',1,1,0),(24341,31481,124365,'La Selva del Camp','Spain','ES','La Selva del Camp (Spain)',1,1,0),(24342,31503,124366,'La Tremblade','France','FR','La Tremblade (France)',1,1,0),(24343,14690,124367,'La Trinite','Martinique','MQ','La Trinite (Martinique)',1,1,0),(24344,31509,124368,'La Union','El Salvador','SV','La Union (El Salvador)',1,1,0),(24345,0,124369,'La Union','Spain','ES','La Union (Spain)',1,1,0),(24346,0,124370,'La Vall De Bianya','Spain','ES','La Vall De Bianya (Spain)',1,1,0),(24347,0,124371,'La Zenia','Spain','ES','La Zenia (Spain)',1,1,0),(24348,0,124372,'Laamu Atoll','Maldives','MV','Laamu Atoll (Maldives)',1,1,0),(24349,0,124373,'Laanemaa','Estonia','EE','Laanemaa (Estonia)',1,1,0),(24350,14693,124374,'Laatzen','Germany','DE','Laatzen (Germany)',1,1,0),(24351,14696,124375,'Labasa','Fiji Islands','FJ','Labasa (Fiji Islands)',1,1,0),(24352,0,124376,'La-Baule-Les-Pins','France','FR','La-Baule-Les-Pins (France)',1,1,0),(24353,0,124377,'Lac Bay','Bonaire Sint Eustatius and Saba',NULL,'Lac Bay (Bonaire Sint Eustatius and Saba)',1,1,0),(24354,0,124378,'Lac Rose','Senegal','SN','Lac Rose (Senegal)',1,1,0),(24355,0,124379,'Lacalm','France','FR','Lacalm (France)',1,1,0),(24356,14717,124380,'Lacco Ameno','Italy','IT','Lacco Ameno (Italy)',1,1,0),(24357,0,124381,'Lachapelle-Auzac','France','FR','Lachapelle-Auzac (France)',1,1,0),(24358,14725,124382,'Lachine','Canada','CA','Lachine (Canada)',1,1,0),(24359,0,124383,'Lackenhauser','Germany','DE','Lackenhauser (Germany)',1,1,0),(24360,0,124384,'Lacona','Italy','IT','Lacona (Italy)',1,1,0),(24361,14732,124385,'Laconia','United States of America','US','Laconia (United States of America)',1,1,0),(24362,0,124386,'Ladbergen','Germany','DE','Ladbergen (Germany)',1,1,0),(24363,0,124387,'Ladurns/Pflerschtal','Italy','IT','Ladurns/Pflerschtal (Italy)',1,1,0),(24364,0,124388,'Ladybrand','South Africa','ZA','Ladybrand (South Africa)',1,1,0),(24365,14744,124389,'Ladysmith','United States of America','US','Ladysmith (United States of America)',1,1,0),(24366,14746,124390,'Ladysmith','Canada','CA','Ladysmith (Canada)',1,1,0),(24367,0,124391,'Laem Tong Beach','Thailand','TH','Laem Tong Beach (Thailand)',1,1,0),(24368,0,124392,'Lago Puelo','Argentina','AR','Lago Puelo (Argentina)',1,1,0),(24369,0,124393,'Lago Vista','United States of America','US','Lago Vista (United States of America)',1,1,0),(24370,14352,124394,'Kongsberg','Norway','NO','Kongsberg (Norway)',1,1,0),(24371,0,124395,'Konigs Wusterhausen','Germany','DE','Konigs Wusterhausen (Germany)',1,1,0),(24372,14355,124396,'Konigsfeld','Germany','DE','Konigsfeld (Germany)',1,1,0),(24373,0,124397,'Konstantinovy Lazne','Czech Republic','CZ','Konstantinovy Lazne (Czech Republic)',1,1,0),(24374,0,124398,'Kontias','Greece','GR','Kontias (Greece)',1,1,0),(24375,0,124399,'Kontokali','Greece','GR','Kontokali (Greece)',1,1,0),(24376,14368,124400,'Konya','Turkey','TR','Konya (Turkey)',1,1,0),(24377,0,124401,'Korbach','Germany','DE','Korbach (Germany)',1,1,0),(24378,14399,124402,'Koropove','Ukraine','UA','Koropove (Ukraine)',1,1,0),(24379,31227,124403,'Kos','Greece','GR','Kos (Greece)',1,1,0),(24380,14407,124404,'Kosciusko','United States of America','US','Kosciusko (United States of America)',1,1,0),(24381,14418,124405,'Kospallag','Hungary','HU','Kospallag (Hungary)',1,1,0),(24382,14420,124406,'Kosrae','Micronesia','FM','Kosrae (Micronesia)',1,1,0),(24383,14422,124407,'Kostelany','Czech Republic','CZ','Kostelany (Czech Republic)',1,1,0),(24384,0,124408,'Kostrzyn nad Odra','Poland','PL','Kostrzyn nad Odra (Poland)',1,1,0),(24385,0,124409,'Kottingbrunn','Austria','AT','Kottingbrunn (Austria)',1,1,0),(24386,14440,124410,'Kotu','Gambia','GM','Kotu (Gambia)',1,1,0),(24387,0,124411,'Koudum','Netherlands','NL','Koudum (Netherlands)',1,1,0),(24388,14445,124412,'Koukounaries','Greece','GR','Koukounaries (Greece)',1,1,0),(24389,14449,124413,'Kountze','United States of America','US','Kountze (United States of America)',1,1,0),(24390,14450,124414,'Kourou','French Guiana','GF','Kourou (French Guiana)',1,1,0),(24391,0,124415,'Koutsouras','Greece','GR','Koutsouras (Greece)',1,1,0),(24392,0,124416,'Kowel','Ukraine','UA','Kowel (Ukraine)',1,1,0),(24393,0,124417,'Kozljak','Croatia','HR','Kozljak (Croatia)',1,1,0),(24394,0,124418,'Krag','Poland','PL','Krag (Poland)',1,1,0),(24395,0,124419,'Krajcar Breg','Croatia','HR','Krajcar Breg (Croatia)',1,1,0),(24396,0,124420,'Kramatorsk','Ukraine','UA','Kramatorsk (Ukraine)',1,1,0),(24397,0,124421,'Kranevo','Bulgaria','BG','Kranevo (Bulgaria)',1,1,0),(24398,14480,124422,'Kranjska Gora','Slovenia','SI','Kranjska Gora (Slovenia)',1,1,0),(24399,0,124423,'Krautscheid','Germany','DE','Krautscheid (Germany)',1,1,0),(24400,14496,124424,'Kremnica','Slovakia','SK','Kremnica (Slovakia)',1,1,0),(24401,0,124425,'Kreuth','Germany','DE','Kreuth (Germany)',1,1,0),(24402,0,124426,'Kreuzkamp','Germany','DE','Kreuzkamp (Germany)',1,1,0),(24403,0,124427,'Kriopigi','Greece','GR','Kriopigi (Greece)',1,1,0),(24404,14509,124428,'Kristiansand','Norway','NO','Kristiansand (Norway)',1,1,0),(24405,0,124429,'Kroczyce','Poland','PL','Kroczyce (Poland)',1,1,0),(24406,0,124430,'Krokowa','Poland','PL','Krokowa (Poland)',1,1,0),(24407,0,124431,'Kropstadt','Germany','DE','Kropstadt (Germany)',1,1,0),(24408,0,124432,'Kroscienko nad Dunajcem','Poland','PL','Kroscienko nad Dunajcem (Poland)',1,1,0),(24409,0,124433,'Krov','Germany','DE','Krov (Germany)',1,1,0),(24410,14529,124434,'Krumbach','Germany','DE','Krumbach (Germany)',1,1,0),(24411,0,124435,'Krummbek','Germany','DE','Krummbek (Germany)',1,1,0),(24412,0,124436,'Krummhorn','Germany','DE','Krummhorn (Germany)',1,1,0),(24413,0,124437,'Ksar Ghilane','Tunisia','TN','Ksar Ghilane (Tunisia)',1,1,0),(24414,0,124438,'Ksiezyno','Poland','PL','Ksiezyno (Poland)',1,1,0),(24415,0,124439,'Kuala Rompin','Malaysia','MY','Kuala Rompin (Malaysia)',1,1,0),(24416,0,124440,'Kuchchaveli','Sri Lanka','LK','Kuchchaveli (Sri Lanka)',1,1,0),(24417,0,124441,'Kuhfelde','Germany','DE','Kuhfelde (Germany)',1,1,0),(24418,0,124442,'Kuhs','Germany','DE','Kuhs (Germany)',1,1,0),(24419,0,124443,'Kuklijca','Croatia','HR','Kuklijca (Croatia)',1,1,0),(24420,14589,124444,'Kungalv','Sweden','SE','Kungalv (Sweden)',1,1,0),(24421,0,124445,'Kungshamn','Sweden','SE','Kungshamn (Sweden)',1,1,0),(24422,0,124446,'Kunj','Croatia','HR','Kunj (Croatia)',1,1,0),(24423,0,124447,'Kupferzell','Germany','DE','Kupferzell (Germany)',1,1,0),(24424,14607,124448,'Kure','Japan','JP','Kure (Japan)',1,1,0),(24425,0,124449,'Kurgan','Russia','RU','Kurgan (Russia)',1,1,0),(24426,0,124450,'Kurim','Czech Republic','CZ','Kurim (Czech Republic)',1,1,0),(24427,14614,124451,'Kurrimine Beach','Australia','AU','Kurrimine Beach (Australia)',1,1,0),(24428,14638,124452,'Kutchan','Japan','JP','Kutchan (Japan)',1,1,0),(24429,0,124453,'Kuusa','Finland','FI','Kuusa (Finland)',1,1,0),(24430,14647,124454,'Kuusamo','Finland','FI','Kuusamo (Finland)',1,1,0),(24431,14652,124455,'Kvanum','Sweden','SE','Kvanum (Sweden)',1,1,0),(24432,0,124456,'Kvilda','Czech Republic','CZ','Kvilda (Czech Republic)',1,1,0),(24433,14667,124457,'Kyjov','Czech Republic','CZ','Kyjov (Czech Republic)',1,1,0),(24434,14675,124458,'Kypseli','Greece','GR','Kypseli (Greece)',1,1,0),(24435,0,124459,'La Almunia de Dona Godina','Spain','ES','La Almunia de Dona Godina (Spain)',1,1,0),(24436,0,124460,'La Asomada','Spain','ES','La Asomada (Spain)',1,1,0),(24437,0,124461,'La Atalaya','Spain','ES','La Atalaya (Spain)',1,1,0),(24438,0,124462,'La Barra de Santiago','El Salvador','SV','La Barra de Santiago (El Salvador)',1,1,0),(24439,0,124463,'La Begude-de-Mazenc','France','FR','La Begude-de-Mazenc (France)',1,1,0),(24440,31248,124464,'La Bourboule','France','FR','La Bourboule (France)',1,1,0),(24441,0,124465,'La Breille-les-Pins','France','FR','La Breille-les-Pins (France)',1,1,0),(24442,31283,124466,'La Ciotat','France','FR','La Ciotat (France)',1,1,0),(24443,0,124467,'La Concha','Spain','ES','La Concha (Spain)',1,1,0),(24444,0,124468,'La Fouly','Switzerland','CH','La Fouly (Switzerland)',1,1,0),(24445,0,124469,'La Fresneda','Spain','ES','La Fresneda (Spain)',1,1,0),(24446,31337,124470,'La Garriga','Spain','ES','La Garriga (Spain)',1,1,0),(24447,0,124471,'La Garrovilla','Spain','ES','La Garrovilla (Spain)',1,1,0),(24448,31342,124472,'La Grande','United States of America','US','La Grande (United States of America)',1,1,0),(24449,31343,124473,'La Grande Motte','France','FR','La Grande Motte (France)',1,1,0),(24450,31351,124474,'La Guaira','Venezuela','VE','La Guaira (Venezuela)',1,1,0),(24451,0,124475,'La Guancha','Spain','ES','La Guancha (Spain)',1,1,0),(24452,0,124476,'La Joue du Loup','France','FR','La Joue du Loup (France)',1,1,0),(24453,31367,124477,'La Joya','Spain','ES','La Joya (Spain)',1,1,0),(24454,31370,124478,'La Lastrilla','Spain','ES','La Lastrilla (Spain)',1,1,0),(24455,31372,124479,'La Libertad','El Salvador','SV','La Libertad (El Salvador)',1,1,0),(24456,31382,124480,'La Malene','France','FR','La Malene (France)',1,1,0),(24457,0,124481,'La Mata','Spain','ES','La Mata (Spain)',1,1,0),(24458,31390,124482,'La Membrolle-sur-Choisille','France','FR','La Membrolle-sur-Choisille (France)',1,1,0),(24459,31391,124483,'La Mesa','United States of America','US','La Mesa (United States of America)',1,1,0),(24460,0,124484,'La Mole','France','FR','La Mole (France)',1,1,0),(24461,31395,124485,'La Molina','Spain','ES','La Molina (Spain)',1,1,0),(24462,0,124486,'La Oliva','Spain','ES','La Oliva (Spain)',1,1,0),(24463,31412,124487,'La Palmyre','France','FR','La Palmyre (France)',1,1,0),(24464,0,124488,'La Penne-sur-l\'Ouveze','France','FR','La Penne-sur-l\'Ouveze (France)',1,1,0),(24465,0,124489,'La Pobla de Vallbona','Spain','ES','La Pobla de Vallbona (Spain)',1,1,0),(24466,31434,124490,'La Pomarede','France','FR','La Pomarede (France)',1,1,0),(24467,31436,124491,'La Pommeraye','France','FR','La Pommeraye (France)',1,1,0),(24468,0,124492,'La Puebla de Castro','Spain','ES','La Puebla de Castro (Spain)',1,1,0),(24469,0,124493,'La Rapita','Spain','ES','La Rapita (Spain)',1,1,0),(24470,0,124494,'La Romieu','France','FR','La Romieu (France)',1,1,0),(24471,31477,124495,'La Salle','Italy','IT','La Salle (Italy)',1,1,0),(24472,0,124496,'La Teste','France','FR','La Teste (France)',1,1,0),(24473,31496,124497,'La Thuile','Italy','IT','La Thuile (Italy)',1,1,0),(24474,31500,124498,'La Toussuire','France','FR','La Toussuire (France)',1,1,0),(24475,31501,124499,'La Tranche-Sur-Mer','France','FR','La Tranche-Sur-Mer (France)',1,1,0),(24476,31506,124500,'La Tuque','Canada','CA','La Tuque (Canada)',1,1,0),(24477,14763,124501,'Lagnes','France','FR','Lagnes (France)',1,1,0),(24478,0,124502,'Lago d\'Iseo','Italy','IT','Lago d\'Iseo (Italy)',1,1,0),(24479,0,124503,'Lagun','Curaçao','CW','Lagun (Curaçao)',1,1,0),(24480,14788,124504,'Lahinch','Ireland','IE','Lahinch (Ireland)',1,1,0),(24481,0,124505,'Lahntal','Germany','DE','Lahntal (Germany)',1,1,0),(24482,0,124506,'Lajido','Portugal','PT','Lajido (Portugal)',1,1,0),(24483,31539,124507,'Lake Ariel','United States of America','US','Lake Ariel (United States of America)',1,1,0),(24484,0,124508,'Lake Geneva','United States of America','US','Lake Geneva (United States of America)',1,1,0),(24485,0,124509,'Lake Kivu','Rwanda','RW','Lake Kivu (Rwanda)',1,1,0),(24486,31589,124510,'Lake Powell','United States of America','US','Lake Powell (United States of America)',1,1,0),(24487,0,124511,'Lakeland','United States of America','US','Lakeland (United States of America)',1,1,0),(24488,14824,124512,'Lakemont','United States of America','US','Lakemont (United States of America)',1,1,0),(24489,14833,124513,'Lakewood','United States of America','US','Lakewood (United States of America)',1,1,0),(24490,0,124515,'Lakopetra','Greece','GR','Lakopetra (Greece)',1,1,0),(24491,14838,124516,'Lakota','United States of America','US','Lakota (United States of America)',1,1,0),(24492,0,124517,'Lallinger Winkel','Germany','DE','Lallinger Winkel (Germany)',1,1,0),(24493,14853,124518,'Lambari','Brazil','BR','Lambari (Brazil)',1,1,0),(24494,0,124519,'Lambi','Greece','GR','Lambi (Greece)',1,1,0),(24495,0,124520,'Lamspringe','Germany','DE','Lamspringe (Germany)',1,1,0),(24496,0,124521,'Lancaster','United Kingdom','UK','Lancaster (United Kingdom)',1,1,0),(24497,0,124522,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(24498,0,124523,'Landl','Austria','AT','Landl (Austria)',1,1,0),(24499,14923,124524,'Lanesboro','United States of America','US','Lanesboro (United States of America)',1,1,0),(24500,14926,124525,'Lanett','United States of America','US','Lanett (United States of America)',1,1,0),(24501,0,124526,'Langen Brutz','Germany','DE','Langen Brutz (Germany)',1,1,0),(24502,0,124527,'Langengrassau','Germany','DE','Langengrassau (Germany)',1,1,0),(24503,14942,124528,'Langenthal','Switzerland','CH','Langenthal (Switzerland)',1,1,0),(24504,0,124529,'Langewiese','Germany','DE','Langewiese (Germany)',1,1,0),(24505,14961,124530,'Langres','France','FR','Langres (France)',1,1,0),(24506,14962,124531,'Langueux','France','FR','Langueux (France)',1,1,0),(24507,0,124532,'Langwedel','Germany','DE','Langwedel (Germany)',1,1,0),(24508,14964,124533,'Lanham','United States of America','US','Lanham (United States of America)',1,1,0),(24509,0,124534,'L\'Anse-a-la-Cabane','Canada','CA','L\'Anse-a-la-Cabane (Canada)',1,1,0),(24510,0,124535,'Lantsch/Lenz','Switzerland','CH','Lantsch/Lenz (Switzerland)',1,1,0),(24511,0,124536,'Lanzenkirchen','Austria','AT','Lanzenkirchen (Austria)',1,1,0),(24512,14999,124537,'Lanzhou','China','CN','Lanzhou (China)',1,1,0),(24513,15020,124538,'Lara','Turkey','TR','Lara (Turkey)',1,1,0),(24514,15040,124539,'Larnaca','Cyprus','CY','Larnaca (Cyprus)',1,1,0),(24515,0,124540,'Larne','United Kingdom','UK','Larne (United Kingdom)',1,1,0),(24516,0,124541,'Larochette','Luxembourg','LU','Larochette (Luxembourg)',1,1,0),(24517,0,124542,'Larres','Spain','ES','Larres (Spain)',1,1,0),(24518,0,124543,'Las Pinas','Philippines','PH','Las Pinas (Philippines)',1,1,0),(24519,31628,124544,'Las Playitas','Spain','ES','Las Playitas (Spain)',1,1,0),(24520,0,124545,'Las Terrazas','Cuba','CU','Las Terrazas (Cuba)',1,1,0),(24521,0,124546,'Las Terrenas','Dominican Republic','DO','Las Terrenas (Dominican Republic)',1,1,0),(24522,0,124547,'Las Tricias','Spain','ES','Las Tricias (Spain)',1,1,0),(24523,0,124548,'LaSalle','United States of America','US','LaSalle (United States of America)',1,1,0),(24524,0,124549,'Lascari','Italy','IT','Lascari (Italy)',1,1,0),(24525,0,124550,'La?nitzhohe','Austria','AT','La?nitzhohe (Austria)',1,1,0),(24526,0,124551,'Latour-de-Carol','France','FR','Latour-de-Carol (France)',1,1,0),(24527,0,124552,'Latschach am Faakersee','Austria','AT','Latschach am Faakersee (Austria)',1,1,0),(24528,15090,124553,'Lattrop','Netherlands','NL','Lattrop (Netherlands)',1,1,0),(24529,0,124554,'Lauder','United Kingdom','UK','Lauder (United Kingdom)',1,1,0),(24530,0,124555,'Laugharne','United Kingdom','UK','Laugharne (United Kingdom)',1,1,0),(24531,15115,124556,'Laurens','United States of America','US','Laurens (United States of America)',1,1,0),(24532,15121,124557,'Lauro','Italy','IT','Lauro (Italy)',1,1,0),(24533,0,124558,'Laveissiere','France','FR','Laveissiere (France)',1,1,0),(24534,15152,124559,'Lawrenceville','United States of America','US','Lawrenceville (United States of America)',1,1,0),(24535,0,124560,'Lazne Libverda','Czech Republic','CZ','Lazne Libverda (Czech Republic)',1,1,0),(24536,0,124561,'L\'Azohia','Spain','ES','L\'Azohia (Spain)',1,1,0),(24537,31638,124562,'Le Beausset','France','FR','Le Beausset (France)',1,1,0),(24538,0,124563,'Le Bec-Hellouin','France','FR','Le Bec-Hellouin (France)',1,1,0),(24539,0,124564,'Le Bic','Canada','CA','Le Bic (Canada)',1,1,0),(24540,0,124565,'Le Bourg-d\'Oisans','France','FR','Le Bourg-d\'Oisans (France)',1,1,0),(24541,31647,124566,'Le Bouscat','France','FR','Le Bouscat (France)',1,1,0),(24542,31650,124567,'Le Breuil-en-Bessin','France','FR','Le Breuil-en-Bessin (France)',1,1,0),(24543,0,124568,'Le Chable','Switzerland','CH','Le Chable (Switzerland)',1,1,0),(24544,0,124569,'Le Chateau-d\'Oleron','France','FR','Le Chateau-d\'Oleron (France)',1,1,0),(24545,31659,124570,'Le Chenit','Switzerland','CH','Le Chenit (Switzerland)',1,1,0),(24546,31661,124571,'Le Claire','United States of America','US','Le Claire (United States of America)',1,1,0),(24547,0,124572,'Le Fenouiller','France','FR','Le Fenouiller (France)',1,1,0),(24548,0,124573,'Le Malzieu-Ville','France','FR','Le Malzieu-Ville (France)',1,1,0),(24549,0,124574,'Le Monetier-les-Bains','France','FR','Le Monetier-les-Bains (France)',1,1,0),(24550,0,124575,'Le Mont-Dore','France','FR','Le Mont-Dore (France)',1,1,0),(24551,0,124576,'Le Morne','Mauritius','MU','Le Morne (Mauritius)',1,1,0),(24552,0,124577,'Le Nouvion-en-Thierache','France','FR','Le Nouvion-en-Thierache (France)',1,1,0),(24553,0,124578,'Le Plessis-Robinson','France','FR','Le Plessis-Robinson (France)',1,1,0),(24554,0,124579,'Le Rheu','France','FR','Le Rheu (France)',1,1,0),(24555,31717,124580,'Le Rouget','France','FR','Le Rouget (France)',1,1,0),(24556,31720,124581,'Le Roy','United States of America','US','Le Roy (United States of America)',1,1,0),(24557,31723,124582,'Le Sauze','France','FR','Le Sauze (France)',1,1,0),(24558,0,124583,'Le Teilleul','France','FR','Le Teilleul (France)',1,1,0),(24559,31730,124584,'Le Tholy','France','FR','Le Tholy (France)',1,1,0),(24560,31732,124585,'Le Thoronet','France','FR','Le Thoronet (France)',1,1,0),(24561,0,124586,'Le Val','France','FR','Le Val (France)',1,1,0),(24562,0,124587,'Le Vaud','Switzerland','CH','Le Vaud (Switzerland)',1,1,0),(24563,15178,124588,'Leba','Poland','PL','Leba (Poland)',1,1,0),(24564,15179,124589,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(24565,0,124590,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(24566,0,124591,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(24567,0,124592,'Lebring','Austria','AT','Lebring (Austria)',1,1,0),(24568,0,124593,'Lectoure','France','FR','Lectoure (France)',1,1,0),(24569,0,124594,'Ledrosee','Italy','IT','Ledrosee (Italy)',1,1,0),(24570,15210,124595,'Leeton','Australia','AU','Leeton (Australia)',1,1,0),(24571,15211,124596,'Leeuwarden','Netherlands','NL','Leeuwarden (Netherlands)',1,1,0),(24572,15214,124597,'Lefkara','Cyprus','CY','Lefkara (Cyprus)',1,1,0),(24573,0,124598,'Lefkes','Greece','GR','Lefkes (Greece)',1,1,0),(24574,0,124599,'Lefktro','Greece','GR','Lefktro (Greece)',1,1,0),(24575,0,124600,'Leggiuno','Italy','IT','Leggiuno (Italy)',1,1,0),(24576,15227,124601,'Legnano','Italy','IT','Legnano (Italy)',1,1,0),(24577,15230,124602,'Lehi','United States of America','US','Lehi (United States of America)',1,1,0),(24578,0,124603,'Lehre','Germany','DE','Lehre (Germany)',1,1,0),(24579,0,124604,'Leibsch','Germany','DE','Leibsch (Germany)',1,1,0),(24580,15254,124605,'Leiro','Spain','ES','Leiro (Spain)',1,1,0),(24581,0,124606,'Leirvik','Norway','NO','Leirvik (Norway)',1,1,0),(24582,0,124607,'Lei?ling','Germany','DE','Lei?ling (Germany)',1,1,0),(24583,0,124608,'Leivi','Italy','IT','Leivi (Italy)',1,1,0),(24584,0,124609,'Leiyang','China','CN','Leiyang (China)',1,1,0),(24585,15272,124610,'Lembruch','Germany','DE','Lembruch (Germany)',1,1,0),(24586,0,124611,'Lemprato','Italy','IT','Lemprato (Italy)',1,1,0),(24587,0,124612,'Lenham','United Kingdom','UK','Lenham (United Kingdom)',1,1,0),(24588,0,124613,'La Roque d\'Antheron','France','FR','La Roque d\'Antheron (France)',1,1,0),(24589,0,124614,'La Sagne','Switzerland','CH','La Sagne (Switzerland)',1,1,0),(24590,0,124615,'La Seo d\'Urgel','Spain','ES','La Seo d\'Urgel (Spain)',1,1,0),(24591,14689,124616,'La Somone','Senegal','SN','La Somone (Senegal)',1,1,0),(24592,0,124617,'La Souterraine','France','FR','La Souterraine (France)',1,1,0),(24593,31493,124618,'La Tania','France','FR','La Tania (France)',1,1,0),(24594,0,124619,'La Tour-de-Treme','Switzerland','CH','La Tour-de-Treme (Switzerland)',1,1,0),(24595,0,124620,'La Vid','Spain','ES','La Vid (Spain)',1,1,0),(24596,31523,124621,'La Vinuela','Spain','ES','La Vinuela (Spain)',1,1,0),(24597,0,124622,'La Zarza','Spain','ES','La Zarza (Spain)',1,1,0),(24598,14694,124623,'Laax','Switzerland','CH','Laax (Switzerland)',1,1,0),(24599,0,124624,'Labastide-de-Virac','France','FR','Labastide-de-Virac (France)',1,1,0),(24600,0,124625,'LaBelle','United States of America','US','LaBelle (United States of America)',1,1,0),(24601,0,124626,'Labenne-Ocean','France','FR','Labenne-Ocean (France)',1,1,0),(24602,0,124627,'Labergement-Sainte-Marie','France','FR','Labergement-Sainte-Marie (France)',1,1,0),(24603,0,124628,'Lac Brome','Canada','CA','Lac Brome (Canada)',1,1,0),(24604,0,124629,'Lacapelle-Viescamp','France','FR','Lacapelle-Viescamp (France)',1,1,0),(24605,14721,124630,'Lac-Etchemin','Canada','CA','Lac-Etchemin (Canada)',1,1,0),(24606,0,124631,'Lac-Saguay','Canada','CA','Lac-Saguay (Canada)',1,1,0),(24607,14743,124632,'Lady Lake','United States of America','US','Lady Lake (United States of America)',1,1,0),(24608,14754,124633,'Lagan','Sweden','SE','Lagan (Sweden)',1,1,0),(24609,14755,124634,'Laganas','Greece','GR','Laganas (Greece)',1,1,0),(24610,0,124635,'Lage','Germany','DE','Lage (Germany)',1,1,0),(24611,14760,124636,'Laghy','Ireland','IE','Laghy (Ireland)',1,1,0),(24612,14779,124637,'Laguiole','France','FR','Laguiole (France)',1,1,0),(24613,14787,124638,'Lahaska','United States of America','US','Lahaska (United States of America)',1,1,0),(24614,14790,124639,'Lahnstein','Germany','DE','Lahnstein (Germany)',1,1,0),(24615,14802,124640,'Lainate','Italy','IT','Lainate (Italy)',1,1,0),(24616,0,124641,'Lake Bosomtwe','Ghana','GH','Lake Bosomtwe (Ghana)',1,1,0),(24617,0,124642,'Lake Clear','United States of America','US','Lake Clear (United States of America)',1,1,0),(24618,0,124643,'Lake Elmentaita','Kenya','KE','Lake Elmentaita (Kenya)',1,1,0),(24619,0,124644,'Lake Malawi National Park','Malawi','MW','Lake Malawi National Park (Malawi)',1,1,0),(24620,0,124645,'Lake Toba','Indonesia','ID','Lake Toba (Indonesia)',1,1,0),(24621,31598,124646,'Lake Village','United States of America','US','Lake Village (United States of America)',1,1,0),(24622,0,124647,'Lakeland','United States of America','US','Lakeland (United States of America)',1,1,0),(24623,0,124648,'Lakeville','United States of America','US','Lakeville (United States of America)',1,1,0),(24624,14842,124649,'L\'Aldosa','Andorra','AD','L\'Aldosa (Andorra)',1,1,0),(24625,14845,124650,'Lalinde','France','FR','Lalinde (France)',1,1,0),(24626,14848,124651,'Lam','Germany','DE','Lam (Germany)',1,1,0),(24627,14850,124652,'Lamar','United States of America','US','Lamar (United States of America)',1,1,0),(24628,14856,124653,'Lambertville','United States of America','US','Lambertville (United States of America)',1,1,0),(24629,14867,124654,'Lamia','Greece','GR','Lamia (Greece)',1,1,0),(24630,14879,124655,'Lampasas','United States of America','US','Lampasas (United States of America)',1,1,0),(24631,31604,124656,'Lana','Italy','IT','Lana (Italy)',1,1,0),(24632,0,124657,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(24633,0,124658,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(24634,0,124659,'Lancon','France','FR','Lancon (France)',1,1,0),(24635,0,124660,'Landau an der Isar','Germany','DE','Landau an der Isar (Germany)',1,1,0),(24636,0,124661,'Landeira','Portugal','PT','Landeira (Portugal)',1,1,0),(24637,0,124662,'Landrellec','France','FR','Landrellec (France)',1,1,0),(24638,14914,124663,'Landrethun-le-Nord','France','FR','Landrethun-le-Nord (France)',1,1,0),(24639,14917,124664,'Landshut','Germany','DE','Landshut (Germany)',1,1,0),(24640,14918,124665,'Landskrona','Sweden','SE','Landskrona (Sweden)',1,1,0),(24641,0,124666,'Langbank','United Kingdom','UK','Langbank (United Kingdom)',1,1,0),(24642,14937,124667,'Langenargen','Germany','DE','Langenargen (Germany)',1,1,0),(24643,0,124668,'Langgons','Germany','DE','Langgons (Germany)',1,1,0),(24644,0,124669,'Langouvardos','Greece','GR','Langouvardos (Greece)',1,1,0),(24645,0,124670,'Lanhouarneau','France','FR','Lanhouarneau (France)',1,1,0),(24646,14965,124671,'Lanjaron','Spain','ES','Lanjaron (Spain)',1,1,0),(24647,0,124672,'Lanvollon','France','FR','Lanvollon (France)',1,1,0),(24648,15001,124673,'Lao Cai','Vietnam','VN','Lao Cai (Vietnam)',1,1,0),(24649,0,124674,'Lapinjarvi','Finland','FI','Lapinjarvi (Finland)',1,1,0),(24650,0,124675,'Lappach','Italy','IT','Lappach (Italy)',1,1,0),(24651,0,124676,'Laqueuille','France','FR','Laqueuille (France)',1,1,0),(24652,15026,124677,'Lardos','Greece','GR','Lardos (Greece)',1,1,0),(24653,15027,124678,'Laredo','United States of America','US','Laredo (United States of America)',1,1,0),(24654,15030,124679,'Largo','United States of America','US','Largo (United States of America)',1,1,0),(24655,0,124680,'Larkhall','United Kingdom','UK','Larkhall (United Kingdom)',1,1,0),(24656,0,124681,'Larressore','France','FR','Larressore (France)',1,1,0),(24657,31630,124682,'Las Rozas','Spain','ES','Las Rozas (Spain)',1,1,0),(24658,0,124683,'Lashio','Myanmar','MM','Lashio (Myanmar)',1,1,0),(24659,0,124684,'Lassi','Greece','GR','Lassi (Greece)',1,1,0),(24660,0,124685,'Laterns','Austria','AT','Laterns (Austria)',1,1,0),(24661,15081,124686,'Latille','France','FR','Latille (France)',1,1,0),(24662,15085,124687,'Latrobe','United States of America','US','Latrobe (United States of America)',1,1,0),(24663,0,124688,'Latsi (Latchi)','Cyprus','CY','Latsi (Latchi) (Cyprus)',1,1,0),(24664,0,124689,'Lauben (Oberallgau)','Germany','DE','Lauben (Oberallgau) (Germany)',1,1,0),(24665,0,124690,'Laudio','Spain','ES','Laudio (Spain)',1,1,0),(24666,0,124691,'Lauenburg/Elbe','Germany','DE','Lauenburg/Elbe (Germany)',1,1,0),(24667,0,124692,'Laufelfingen','Switzerland','CH','Laufelfingen (Switzerland)',1,1,0),(24668,0,124693,'Laufen (Salzach)','Germany','DE','Laufen (Salzach) (Germany)',1,1,0),(24669,15106,124694,'Laujar de Andarax','Spain','ES','Laujar de Andarax (Spain)',1,1,0),(24670,0,124695,'Lauklines','Norway','NO','Lauklines (Norway)',1,1,0),(24671,0,124696,'Lautenthal','Germany','DE','Lautenthal (Germany)',1,1,0),(24672,0,124697,'Lavant','Austria','AT','Lavant (Austria)',1,1,0),(24673,15134,124698,'Lavarone','Italy','IT','Lavarone (Italy)',1,1,0),(24674,0,124699,'Laveno-Mombello','Italy','IT','Laveno-Mombello (Italy)',1,1,0),(24675,15144,124700,'Lavonia','United States of America','US','Lavonia (United States of America)',1,1,0),(24676,0,124701,'Lavorgo','Switzerland','CH','Lavorgo (Switzerland)',1,1,0),(24677,15149,124702,'Lawndale','United States of America','US','Lawndale (United States of America)',1,1,0),(24678,15151,124703,'Lawrenceburg','United States of America','US','Lawrenceburg (United States of America)',1,1,0),(24679,0,124704,'Layton','United States of America','US','Layton (United States of America)',1,1,0),(24680,0,124705,'Lazdijai','Lithuania','LT','Lazdijai (Lithuania)',1,1,0),(24681,15160,124706,'Laze v Tuhinju','Slovenia','SI','Laze v Tuhinju (Slovenia)',1,1,0),(24682,31644,124707,'Le Boulou','France','FR','Le Boulou (France)',1,1,0),(24683,31649,124708,'Le Brassus','Switzerland','CH','Le Brassus (Switzerland)',1,1,0),(24684,0,124709,'Le Change','France','FR','Le Change (France)',1,1,0),(24685,31658,124710,'Le Chatellier','France','FR','Le Chatellier (France)',1,1,0),(24686,31664,124711,'Le Coudray-Montceaux','France','FR','Le Coudray-Montceaux (France)',1,1,0),(24687,0,124712,'Le Faouet','France','FR','Le Faouet (France)',1,1,0),(24688,0,124713,'Le Fuilet','France','FR','Le Fuilet (France)',1,1,0),(24689,31681,124714,'Le Hohwald','France','FR','Le Hohwald (France)',1,1,0),(24690,31686,124715,'Le Locle','Switzerland','CH','Le Locle (Switzerland)',1,1,0),(24691,31695,124716,'Le Mont-Saint-Michel','France','FR','Le Mont-Saint-Michel (France)',1,1,0),(24692,31697,124717,'Le Muy','France','FR','Le Muy (France)',1,1,0),(24693,31736,124718,'Le Tronchet','France','FR','Le Tronchet (France)',1,1,0),(24694,15169,124719,'League City','United States of America','US','League City (United States of America)',1,1,0),(24695,0,124720,'Lebach','Germany','DE','Lebach (Germany)',1,1,0),(24696,0,124721,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(24697,0,124722,'La Crosse','United States of America','US','La Crosse (United States of America)',1,1,0),(24698,0,124723,'La Esperanza','Spain','ES','La Esperanza (Spain)',1,1,0),(24699,0,124724,'La Ferriere','Switzerland','CH','La Ferriere (Switzerland)',1,1,0),(24700,31324,124725,'La Fleche','France','FR','La Fleche (France)',1,1,0),(24701,0,124726,'La Flotte-en-Re','France','FR','La Flotte-en-Re (France)',1,1,0),(24702,31338,124727,'La Gaude','France','FR','La Gaude (France)',1,1,0),(24703,0,124728,'La Geria','Spain','ES','La Geria (Spain)',1,1,0),(24704,31339,124729,'La Glacerie','France','FR','La Glacerie (France)',1,1,0),(24705,0,124730,'La Laguna','Spain','ES','La Laguna (Spain)',1,1,0),(24706,0,124731,'La Laja','Spain','ES','La Laja (Spain)',1,1,0),(24707,31393,124732,'La Mirada','United States of America','US','La Mirada (United States of America)',1,1,0),(24708,31399,124733,'La Morra','Italy','IT','La Morra (Italy)',1,1,0),(24709,0,124734,'La Motte-du-Caire','France','FR','La Motte-du-Caire (France)',1,1,0),(24710,31411,124735,'La Palma del Condado','Spain','ES','La Palma del Condado (Spain)',1,1,0),(24711,0,124736,'La Pared','Spain','ES','La Pared (Spain)',1,1,0),(24712,31413,124737,'La Paz','Bolivia','BO','La Paz (Bolivia)',1,1,0),(24713,31437,124738,'La Porte','United States of America','US','La Porte (United States of America)',1,1,0),(24714,0,124739,'La Puebla de los Infantes','Spain','ES','La Puebla de los Infantes (Spain)',1,1,0),(24715,31441,124740,'La Puente','United States of America','US','La Puente (United States of America)',1,1,0),(24716,0,124741,'La Punt-Chamues-ch','Switzerland','CH','La Punt-Chamues-ch (Switzerland)',1,1,0),(24717,31444,124742,'La Ravoire','France','FR','La Ravoire (France)',1,1,0),(24718,31465,124743,'La Roche-sur-Yon','France','FR','La Roche-sur-Yon (France)',1,1,0),(24719,0,124744,'La Rosa','Switzerland','CH','La Rosa (Switzerland)',1,1,0),(24720,31520,124745,'La Villa','Italy','IT','La Villa (Italy)',1,1,0),(24721,31521,124746,'La Ville-aux-Clercs','France','FR','La Ville-aux-Clercs (France)',1,1,0),(24722,14691,124747,'Laa an der Thaya','Austria','AT','Laa an der Thaya (Austria)',1,1,0),(24723,0,124748,'Laaben','Austria','AT','Laaben (Austria)',1,1,0),(24724,0,124749,'Labastide-Beauvoir','France','FR','Labastide-Beauvoir (France)',1,1,0),(24725,14700,124750,'Labin','Croatia','HR','Labin (Croatia)',1,1,0),(24726,0,124751,'Laborie','Saint Lucia','LC','Laborie (Saint Lucia)',1,1,0),(24727,14728,124752,'Lackawaxen','United States of America','US','Lackawaxen (United States of America)',1,1,0),(24728,0,124753,'Lafayette','United States of America','US','Lafayette (United States of America)',1,1,0),(24729,0,124754,'Lages','Brazil','BR','Lages (Brazil)',1,1,0),(24730,0,124755,'Lago di Misurina','Italy','IT','Lago di Misurina (Italy)',1,1,0),(24731,0,124756,'Lago General Carrera','Chile','CL','Lago General Carrera (Chile)',1,1,0),(24732,0,124757,'Lago Gutierrez','Argentina','AR','Lago Gutierrez (Argentina)',1,1,0),(24733,0,124758,'Lago San Pablo','Ecuador','EC','Lago San Pablo (Ecuador)',1,1,0),(24734,14776,124759,'Lagrange','United States of America','US','Lagrange (United States of America)',1,1,0),(24735,0,124760,'Laguna Garzon','Uruguay','UY','Laguna Garzon (Uruguay)',1,1,0),(24736,14798,124761,'Laias','Spain','ES','Laias (Spain)',1,1,0),(24737,0,124762,'Laichingen','Germany','DE','Laichingen (Germany)',1,1,0),(24738,14799,124763,'Laie','United States of America','US','Laie (United States of America)',1,1,0),(24739,14801,124764,'Laigueglia','Italy','IT','Laigueglia (Italy)',1,1,0),(24740,0,124765,'Lajares','Spain','ES','Lajares (Spain)',1,1,0),(24741,0,124766,'Lajen','Italy','IT','Lajen (Italy)',1,1,0),(24742,0,124767,'Lajosmizse','Hungary','HU','Lajosmizse (Hungary)',1,1,0),(24743,31542,124768,'Lake Bluff','United States of America','US','Lake Bluff (United States of America)',1,1,0),(24744,0,124769,'Lake Chini','Malaysia','MY','Lake Chini (Malaysia)',1,1,0),(24745,0,124770,'Lake City','United States of America','US','Lake City (United States of America)',1,1,0),(24746,0,124771,'Lake City','United States of America','US','Lake City (United States of America)',1,1,0),(24747,0,124772,'Lake Erie','United States of America','US','Lake Erie (United States of America)',1,1,0),(24748,0,124773,'Lake Magadi','Kenya','KE','Lake Magadi (Kenya)',1,1,0),(24749,31578,124774,'Lake Mills','United States of America','US','Lake Mills (United States of America)',1,1,0),(24750,31582,124775,'Lake Orion','United States of America','US','Lake Orion (United States of America)',1,1,0),(24751,31584,124776,'Lake Ozark','United States of America','US','Lake Ozark (United States of America)',1,1,0),(24752,31585,124777,'Lake Park','United States of America','US','Lake Park (United States of America)',1,1,0),(24753,0,124778,'Lake Ullswater','United Kingdom','UK','Lake Ullswater (United Kingdom)',1,1,0),(24754,0,124779,'Lakithra','Greece','GR','Lakithra (Greece)',1,1,0),(24755,0,124780,'Laktasi','Bosnia and Herzegowina','BA','Laktasi (Bosnia and Herzegowina)',1,1,0),(24756,0,124781,'L\'Alcudia','Spain','ES','L\'Alcudia (Spain)',1,1,0),(24757,0,124782,'Lalitpur','Nepal','NP','Lalitpur (Nepal)',1,1,0),(24758,0,124783,'Lamagistere','France','FR','Lamagistere (France)',1,1,0),(24759,0,124784,'Lamar','United States of America','US','Lamar (United States of America)',1,1,0),(24760,0,124785,'Lamarche-sur-Saone','France','FR','Lamarche-sur-Saone (France)',1,1,0),(24761,0,124786,'Lamberts Bay','South Africa','ZA','Lamberts Bay (South Africa)',1,1,0),(24762,14860,124787,'Lamego','Portugal','PT','Lamego (Portugal)',1,1,0),(24763,14870,124788,'Lamington National Park','Australia','AU','Lamington National Park (Australia)',1,1,0),(24764,0,124789,'Lammhult','Sweden','SE','Lammhult (Sweden)',1,1,0),(24765,14874,124790,'Lamoni','United States of America','US','Lamoni (United States of America)',1,1,0),(24766,14886,124791,'L\'Ampolla','Spain','ES','L\'Ampolla (Spain)',1,1,0),(24767,0,124792,'Lancing','United Kingdom','UK','Lancing (United Kingdom)',1,1,0),(24768,0,124793,'Lancken-Granitz','Germany','DE','Lancken-Granitz (Germany)',1,1,0),(24769,14908,124794,'Landerneau','France','FR','Landerneau (France)',1,1,0),(24770,0,124795,'Landford','United Kingdom','UK','Landford (United Kingdom)',1,1,0),(24771,0,124796,'Landry','France','FR','Landry (France)',1,1,0),(24772,0,124797,'Landsberg am Lech','Germany','DE','Landsberg am Lech (Germany)',1,1,0),(24773,14927,124798,'Lang Co','Vietnam','VN','Lang Co (Vietnam)',1,1,0),(24774,14935,124799,'Langebaan','South Africa','ZA','Langebaan (South Africa)',1,1,0),(24775,0,124800,'Langenau','Germany','DE','Langenau (Germany)',1,1,0),(24776,0,124801,'Langenbielau','Poland','PL','Langenbielau (Poland)',1,1,0),(24777,0,124802,'Langenburg','Germany','DE','Langenburg (Germany)',1,1,0),(24778,0,124803,'Langenhorn','Germany','DE','Langenhorn (Germany)',1,1,0),(24779,0,124804,'Langenwang','Austria','AT','Langenwang (Austria)',1,1,0),(24780,14943,124805,'Langenzenn','Germany','DE','Langenzenn (Germany)',1,1,0),(24781,0,124806,'Langschlag','Austria','AT','Langschlag (Austria)',1,1,0),(24782,0,124807,'Lanke','Germany','DE','Lanke (Germany)',1,1,0),(24783,0,124808,'Lanoraie','Canada','CA','Lanoraie (Canada)',1,1,0),(24784,0,124809,'Lans-en-Vercors','France','FR','Lans-en-Vercors (France)',1,1,0),(24785,0,124810,'Lansing','United States of America','US','Lansing (United States of America)',1,1,0),(24786,0,124811,'Lanslebourg-Mont-Cenis','France','FR','Lanslebourg-Mont-Cenis (France)',1,1,0),(24787,0,124812,'Laos','LAOS','LA','Laos (LAOS)',1,1,0),(24788,0,124813,'Lapeyrouse-Mornay','France','FR','Lapeyrouse-Mornay (France)',1,1,0),(24789,0,124814,'LaPlace','United States of America','US','LaPlace (United States of America)',1,1,0),(24790,0,124815,'Lappajarvi','Finland','FI','Lappajarvi (Finland)',1,1,0),(24791,15019,124816,'L\'Aquila','Italy','IT','L\'Aquila (Italy)',1,1,0),(24792,0,124817,'Laroquebrou','France','FR','Laroquebrou (France)',1,1,0),(24793,15044,124818,'Larressingle','France','FR','Larressingle (France)',1,1,0),(24794,0,124819,'Laruns','France','FR','Laruns (France)',1,1,0),(24795,15046,124820,'Larvik','Norway','NO','Larvik (Norway)',1,1,0),(24796,0,124821,'Las Lenas','Argentina','AR','Las Lenas (Argentina)',1,1,0),(24797,0,124822,'La-Saline-les-Bains','Reunion','RE','La-Saline-les-Bains (Reunion)',1,1,0),(24798,0,124823,'Lasse','France','FR','Lasse (France)',1,1,0),(24799,15062,124824,'Lasso','Ecuador','EC','Lasso (Ecuador)',1,1,0),(24800,15068,124825,'Lastra a Signa','Italy','IT','Lastra a Signa (Italy)',1,1,0),(24801,15073,124826,'Latera','Italy','IT','Latera (Italy)',1,1,0),(24802,0,124827,'Lathen','Germany','DE','Lathen (Germany)',1,1,0),(24803,15078,124828,'Lathrop','United States of America','US','Lathrop (United States of America)',1,1,0),(24804,0,124829,'Lathuile','France','FR','Lathuile (France)',1,1,0),(24805,15086,124830,'Latronquiere','France','FR','Latronquiere (France)',1,1,0),(24806,15089,124831,'Lattes','France','FR','Lattes (France)',1,1,0),(24807,0,124832,'Le Bouveret','Switzerland','CH','Le Bouveret (Switzerland)',1,1,0),(24808,0,124833,'Le Chambon-sur-Lignon','France','FR','Le Chambon-sur-Lignon (France)',1,1,0),(24809,31663,124834,'Le Coteau','France','FR','Le Coteau (France)',1,1,0),(24810,31666,124835,'Le Croisic','France','FR','Le Croisic (France)',1,1,0),(24811,31675,124836,'Le Grand-Saconnex','Switzerland','CH','Le Grand-Saconnex (Switzerland)',1,1,0),(24812,0,124837,'Le Grand-Serre','France','FR','Le Grand-Serre (France)',1,1,0),(24813,31677,124838,'Le Gua','France','FR','Le Gua (France)',1,1,0),(24814,0,124839,'Le Guilvinec','France','FR','Le Guilvinec (France)',1,1,0),(24815,31706,124840,'Le Poinconnet','France','FR','Le Poinconnet (France)',1,1,0),(24816,31707,124841,'Le Pontet','France','FR','Le Pontet (France)',1,1,0),(24817,0,124842,'Le Pradet','France','FR','Le Pradet (France)',1,1,0),(24818,0,124843,'Le Relecq Kerhuon','France','FR','Le Relecq Kerhuon (France)',1,1,0),(24819,0,124844,'Le Rozel','France','FR','Le Rozel (France)',1,1,0),(24820,0,124845,'Le Temple-sur-Lot','France','FR','Le Temple-sur-Lot (France)',1,1,0),(24821,31734,124846,'Le Touquet','France','FR','Le Touquet (France)',1,1,0),(24822,0,124847,'Le Vaudioux','France','FR','Le Vaudioux (France)',1,1,0),(24823,0,124848,'Le Warang','Senegal','SN','Le Warang (Senegal)',1,1,0),(24824,0,124849,'Leamington Spa','United Kingdom','UK','Leamington Spa (United Kingdom)',1,1,0),(24825,15187,124850,'Lech','Austria','AT','Lech (Austria)',1,1,0),(24826,15188,124851,'Lechaschau','Austria','AT','Lechaschau (Austria)',1,1,0),(24827,0,124852,'Lednice na Morave','Czech Republic','CZ','Lednice na Morave (Czech Republic)',1,1,0),(24828,31746,124853,'Lee','United States of America','US','Lee (United States of America)',1,1,0),(24829,15208,124854,'Leesburg','United States of America','US','Leesburg (United States of America)',1,1,0),(24830,0,124855,'Leichlingen','Germany','DE','Leichlingen (Germany)',1,1,0),(24831,0,124856,'Leinefelde-Worbis','Germany','DE','Leinefelde-Worbis (Germany)',1,1,0),(24832,0,124857,'Leith','United Kingdom','UK','Leith (United Kingdom)',1,1,0),(24833,15262,124858,'Lekeitio','Spain','ES','Lekeitio (Spain)',1,1,0),(24834,0,124859,'Lembach','Austria','AT','Lembach (Austria)',1,1,0),(24835,0,124860,'Lembeke','Belgium','BE','Lembeke (Belgium)',1,1,0),(24836,0,124861,'Lena','Spain','ES','Lena (Spain)',1,1,0),(24837,15279,124862,'Lendava','Slovenia','SI','Lendava (Slovenia)',1,1,0),(24838,0,124863,'Lenti','Hungary','HU','Lenti (Hungary)',1,1,0),(24839,0,124864,'Lenting','Germany','DE','Lenting (Germany)',1,1,0),(24840,15299,124865,'Lentini','Italy','IT','Lentini (Italy)',1,1,0),(24841,0,124866,'Lenzkirch','Germany','DE','Lenzkirch (Germany)',1,1,0),(24842,0,124867,'Lenzumo','Italy','IT','Lenzumo (Italy)',1,1,0),(24843,0,124868,'Leominster','United Kingdom','UK','Leominster (United Kingdom)',1,1,0),(24844,0,124869,'Leonidio','Greece','GR','Leonidio (Greece)',1,1,0),(24845,15315,124870,'Lepe','Spain','ES','Lepe (Spain)',1,1,0),(24846,15327,124871,'Lerma','Spain','ES','Lerma (Spain)',1,1,0),(24847,0,124872,'Les Beaumettes En Luberon','France','FR','Les Beaumettes En Luberon (France)',1,1,0),(24848,31769,124873,'Les Brenets','Switzerland','CH','Les Brenets (Switzerland)',1,1,0),(24849,31776,124874,'Les Deserts','France','FR','Les Deserts (France)',1,1,0),(24850,31778,124875,'Les Diablerets','Switzerland','CH','Les Diablerets (Switzerland)',1,1,0),(24851,0,124876,'Les Hubits','United Kingdom','UK','Les Hubits (United Kingdom)',1,1,0),(24852,31789,124877,'Les Issambres','France','FR','Les Issambres (France)',1,1,0),(24853,0,124878,'Les Marecottes','Switzerland','CH','Les Marecottes (Switzerland)',1,1,0),(24854,0,124879,'Les Pieux','France','FR','Les Pieux (France)',1,1,0),(24855,31800,124880,'Les Portes-en-Re','France','FR','Les Portes-en-Re (France)',1,1,0),(24856,31802,124881,'Les Rousses','France','FR','Les Rousses (France)',1,1,0),(24857,0,124882,'Les Salles','France','FR','Les Salles (France)',1,1,0),(24858,0,124883,'Les Sciernes d\'Albeuve','Switzerland','CH','Les Sciernes d\'Albeuve (Switzerland)',1,1,0),(24859,0,124884,'Les Trois llets','Martinique','MQ','Les Trois llets (Martinique)',1,1,0),(24860,0,124885,'Lesconil','France','FR','Lesconil (France)',1,1,0),(24861,15338,124886,'Leshan','China','CN','Leshan (China)',1,1,0),(24862,15346,124887,'Lesperon','France','FR','Lesperon (France)',1,1,0),(24863,15352,124888,'Lestelle-Betharram','France','FR','Lestelle-Betharram (France)',1,1,0),(24864,0,124889,'Letham','United Kingdom','UK','Letham (United Kingdom)',1,1,0),(24865,15361,124890,'Letojanni','Italy','IT','Letojanni (Italy)',1,1,0),(24866,0,124891,'Leucate-Plage','France','FR','Leucate-Plage (France)',1,1,0),(24867,15376,124892,'Leuven','Belgium','BE','Leuven (Belgium)',1,1,0),(24868,15384,124893,'Levelland','United States of America','US','Levelland (United States of America)',1,1,0),(24869,0,124894,'Levie','France','FR','Levie (France)',1,1,0),(24870,0,124895,'Lewes','United Kingdom','UK','Lewes (United Kingdom)',1,1,0),(24871,15401,124896,'Lewisburg','United States of America','US','Lewisburg (United States of America)',1,1,0),(24872,15407,124897,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(24873,15415,124898,'Lezignan-Corbieres','France','FR','Lezignan-Corbieres (France)',1,1,0),(24874,0,124899,'L\'Hospitalet','Spain','ES','L\'Hospitalet (Spain)',1,1,0),(24875,15433,124900,'Liberec','Czech Republic','CZ','Liberec (Czech Republic)',1,1,0),(24876,0,124901,'Libertador General San Martin','Argentina','AR','Libertador General San Martin (Argentina)',1,1,0),(24877,0,124902,'Liberty','United States of America','US','Liberty (United States of America)',1,1,0),(24878,0,124903,'Liberty','United States of America','US','Liberty (United States of America)',1,1,0),(24879,0,124904,'Licques','France','FR','Licques (France)',1,1,0),(24880,15456,124905,'Lidingo','Sweden','SE','Lidingo (Sweden)',1,1,0),(24881,0,124906,'Lido de la Marana','France','FR','Lido de la Marana (France)',1,1,0),(24882,0,124907,'Lido delle Nazioni','Italy','IT','Lido delle Nazioni (Italy)',1,1,0),(24883,31817,124908,'Lido di Venezia','Italy','IT','Lido di Venezia (Italy)',1,1,0),(24884,0,124909,'Lieser','Germany','DE','Lieser (Germany)',1,1,0),(24885,15476,124910,'Liezen','Austria','AT','Liezen (Austria)',1,1,0),(24886,15477,124911,'Liezey','France','FR','Liezey (France)',1,1,0),(24887,0,124912,'Lihme','Denmark','DK','Lihme (Denmark)',1,1,0),(24888,0,124913,'Lihue','United States of America','US','Lihue (United States of America)',1,1,0),(24889,15506,124914,'Lillington','United States of America','US','Lillington (United States of America)',1,1,0),(24890,0,124915,'Lima','Peru','PE','Lima (Peru)',1,1,0),(24891,0,124916,'Lima','United States of America','US','Lima (United States of America)',1,1,0),(24892,15513,124917,'Limbang','Malaysia','MY','Limbang (Malaysia)',1,1,0),(24893,15516,124918,'Limbiate','Italy','IT','Limbiate (Italy)',1,1,0),(24894,0,124919,'Limburg an der Lahn','Germany','DE','Limburg an der Lahn (Germany)',1,1,0),(24895,15522,124920,'Limenaria','Greece','GR','Limenaria (Greece)',1,1,0),(24896,0,124921,'Lincoln City','United States of America','US','Lincoln City (United States of America)',1,1,0),(24897,15555,124922,'Lindale','United States of America','US','Lindale (United States of America)',1,1,0),(24898,0,124923,'Lindau','Germany','DE','Lindau (Germany)',1,1,0),(24899,0,124924,'Linden','Germany','DE','Linden (Germany)',1,1,0),(24900,15574,124925,'Linfen','China','CN','Linfen (China)',1,1,0),(24901,0,124926,'Linguizetta','France','FR','Linguizetta (France)',1,1,0),(24902,15592,124927,'Linyi','China','CN','Linyi (China)',1,1,0),(24903,0,124928,'Liptovsky Hradok','Slovakia','SK','Liptovsky Hradok (Slovakia)',1,1,0),(24904,15607,124929,'Liptovsky Jan','Slovakia','SK','Liptovsky Jan (Slovakia)',1,1,0),(24905,0,124930,'Liscia di Vacca','Italy','IT','Liscia di Vacca (Italy)',1,1,0),(24906,0,124931,'Lissendorf','Germany','DE','Lissendorf (Germany)',1,1,0),(24907,0,124932,'Little Compton','United States of America','US','Little Compton (United States of America)',1,1,0),(24908,0,124933,'Little Shemogue','Canada','CA','Little Shemogue (Canada)',1,1,0),(24909,0,124934,'Littleover','United Kingdom','UK','Littleover (United Kingdom)',1,1,0),(24910,15651,124935,'Littleton','United States of America','US','Littleton (United States of America)',1,1,0),(24911,0,124936,'Livadi','Greece','GR','Livadi (Greece)',1,1,0),(24912,15682,124937,'Ljubljana','Slovenia','SI','Ljubljana (Slovenia)',1,1,0),(24913,15691,124938,'Llanars','Spain','ES','Llanars (Spain)',1,1,0),(24914,15694,124939,'Llanca','Spain','ES','Llanca (Spain)',1,1,0),(24915,0,124940,'Llanelli','United Kingdom','UK','Llanelli (United Kingdom)',1,1,0),(24916,0,124941,'Lloret de Vistalegre','Spain','ES','Lloret de Vistalegre (Spain)',1,1,0),(24917,14294,124942,'Koge','Denmark','DK','Koge (Denmark)',1,1,0),(24918,0,124943,'Koh Samui','Thailand','TH','Koh Samui (Thailand)',1,1,0),(24919,0,124944,'Koh Tao','Thailand','TH','Koh Tao (Thailand)',1,1,0),(24920,14305,124945,'Kokkoni','Greece','GR','Kokkoni (Greece)',1,1,0),(24921,0,124946,'Kokopo','Papua New Guinea','PG','Kokopo (Papua New Guinea)',1,1,0),(24922,0,124947,'Kolinec u Klatov','Czech Republic','CZ','Kolinec u Klatov (Czech Republic)',1,1,0),(24923,0,124948,'Komarno','Slovakia','SK','Komarno (Slovakia)',1,1,0),(24924,14336,124949,'Komatsu','Japan','JP','Komatsu (Japan)',1,1,0),(24925,14347,124950,'Kone','New Caledonia','NC','Kone (New Caledonia)',1,1,0),(24926,0,124951,'Konigsee-Rottenbach','Germany','DE','Konigsee-Rottenbach (Germany)',1,1,0),(24927,0,124952,'Konigsleiten','Austria','AT','Konigsleiten (Austria)',1,1,0),(24928,0,124953,'Konigsmachern','France','FR','Konigsmachern (France)',1,1,0),(24929,14358,124954,'Konigswinter','Germany','DE','Konigswinter (Germany)',1,1,0),(24930,14359,124955,'Konin','Poland','PL','Konin (Poland)',1,1,0),(24931,14364,124956,'Konstancin-Jeziorna','Poland','PL','Konstancin-Jeziorna (Poland)',1,1,0),(24932,0,124957,'Korfez','Turkey','TR','Korfez (Turkey)',1,1,0),(24933,0,124958,'Korinth','Greece','GR','Korinth (Greece)',1,1,0),(24934,14391,124959,'Koriyama','Japan','JP','Koriyama (Japan)',1,1,0),(24935,14405,124960,'Kortrijk','Belgium','BE','Kortrijk (Belgium)',1,1,0),(24936,31229,124961,'Kos Town','Greece','GR','Kos Town (Greece)',1,1,0),(24937,0,124962,'Kosi Bay','South Africa','ZA','Kosi Bay (South Africa)',1,1,0),(24938,0,124963,'Kosovska Mitrovica','Serbia','RS','Kosovska Mitrovica (Serbia)',1,1,0),(24939,14424,124964,'Koszalin','Poland','PL','Koszalin (Poland)',1,1,0),(24940,14425,124965,'Koszeg','Hungary','HU','Koszeg (Hungary)',1,1,0),(24941,14443,124967,'Koufonisi','Greece','GR','Koufonisi (Greece)',1,1,0),(24942,0,124968,'Kounopetra','Greece','GR','Kounopetra (Greece)',1,1,0),(24943,0,124969,'Kournas','Greece','GR','Kournas (Greece)',1,1,0),(24944,0,124970,'Kowloon','Hong Kong','HK','Kowloon (Hong Kong)',1,1,0),(24945,0,124971,'Kragujevac','Serbia','RS','Kragujevac (Serbia)',1,1,0),(24946,0,124972,'Krakow at the+D1854 Lake','Germany','DE','Krakow at the+D1854 Lake (Germany)',1,1,0),(24947,0,124973,'Kranjcici','Croatia','HR','Kranjcici (Croatia)',1,1,0),(24948,0,124974,'Krasnodar','Russia','RU','Krasnodar (Russia)',1,1,0),(24949,0,124975,'Krautheim','Germany','DE','Krautheim (Germany)',1,1,0),(24950,0,124976,'Kreipitzsch','Germany','DE','Kreipitzsch (Germany)',1,1,0),(24951,0,124977,'Kreuzau','Germany','DE','Kreuzau (Germany)',1,1,0),(24952,0,124978,'Kreuzlingen','Switzerland','CH','Kreuzlingen (Switzerland)',1,1,0),(24953,14503,124979,'Kriegstetten','Switzerland','CH','Kriegstetten (Switzerland)',1,1,0),(24954,14504,124980,'Kriens','Switzerland','CH','Kriens (Switzerland)',1,1,0),(24955,0,124981,'Kriessern','Switzerland','CH','Kriessern (Switzerland)',1,1,0),(24956,14511,124982,'Kristiansund','Norway','NO','Kristiansund (Norway)',1,1,0),(24957,0,124983,'Krnov','Czech Republic','CZ','Krnov (Czech Republic)',1,1,0),(24958,0,124984,'Kronsgaard','Germany','DE','Kronsgaard (Germany)',1,1,0),(24959,14522,124985,'Krotoszyn','Poland','PL','Krotoszyn (Poland)',1,1,0),(24960,0,124986,'Kroussonas','Greece','GR','Kroussonas (Greece)',1,1,0),(24961,0,124987,'Krpacovo','Slovakia','SK','Krpacovo (Slovakia)',1,1,0),(24962,0,124988,'Krusevac','Serbia','RS','Krusevac (Serbia)',1,1,0),(24963,0,124989,'Krutyn','Poland','PL','Krutyn (Poland)',1,1,0),(24964,0,124990,'Krynica-Zdroj','Poland','PL','Krynica-Zdroj (Poland)',1,1,0),(24965,0,124991,'Krystofovo Udoli','Czech Republic','CZ','Krystofovo Udoli (Czech Republic)',1,1,0),(24966,0,124992,'Kuala Lipis','Malaysia','MY','Kuala Lipis (Malaysia)',1,1,0),(24967,0,124993,'Kuala Terengganu','Malaysia','MY','Kuala Terengganu (Malaysia)',1,1,0),(24968,0,124994,'Kuba','Azerbaijan','AZ','Kuba (Azerbaijan)',1,1,0),(24969,14542,124995,'Kubova Hut','Czech Republic','CZ','Kubova Hut (Czech Republic)',1,1,0),(24970,14545,124996,'Kuching','Malaysia','MY','Kuching (Malaysia)',1,1,0),(24971,0,124998,'Kudus','Indonesia','ID','Kudus (Indonesia)',1,1,0),(24972,0,124999,'Kuhlungsborn','Germany','DE','Kuhlungsborn (Germany)',1,1,0),(24973,0,125000,'Kulmain','Germany','DE','Kulmain (Germany)',1,1,0),(24974,14577,125001,'Kumara','New Zealand','NZ','Kumara (New Zealand)',1,1,0),(24975,0,125003,'Kumkoy','Turkey','TR','Kumkoy (Turkey)',1,1,0),(24976,0,125004,'Kumlubuk','Turkey','TR','Kumlubuk (Turkey)',1,1,0),(24977,0,125005,'Kuncice','Czech Republic','CZ','Kuncice (Czech Republic)',1,1,0),(24978,14597,125006,'Kunshan','China','CN','Kunshan (China)',1,1,0),(24979,14602,125007,'Kupang','Indonesia','ID','Kupang (Indonesia)',1,1,0),(24980,0,125008,'Kups','Germany','DE','Kups (Germany)',1,1,0),(24981,0,125009,'Kurkimaki','Finland','FI','Kurkimaki (Finland)',1,1,0),(24982,0,125010,'Kurschskaja Kossa','Russia','RU','Kurschskaja Kossa (Russia)',1,1,0),(24983,14621,125011,'Kurume','Japan','JP','Kurume (Japan)',1,1,0),(24984,0,125012,'Kurzeme','Latvia','LV','Kurzeme (Latvia)',1,1,0),(24985,14622,125013,'Kusadasi','Turkey','TR','Kusadasi (Turkey)',1,1,0),(24986,0,125014,'Kusatsu (Gunma)','Japan','JP','Kusatsu (Gunma) (Japan)',1,1,0),(24987,14628,125015,'Kushiro','Japan','JP','Kushiro (Japan)',1,1,0),(24988,14633,125016,'Kuta','Indonesia','ID','Kuta (Indonesia)',1,1,0),(24989,0,125017,'Kutacane','Indonesia','ID','Kutacane (Indonesia)',1,1,0),(24990,14650,125018,'Kuwana','Japan','JP','Kuwana (Japan)',1,1,0),(24991,0,125019,'Kuzikus','Namibia','NA','Kuzikus (Namibia)',1,1,0),(24992,0,125020,'Kwa-Madwala-Wildreservat','South Africa','ZA','Kwa-Madwala-Wildreservat (South Africa)',1,1,0),(24993,0,125021,'Kyle of Lochalsh','United Kingdom','UK','Kyle of Lochalsh (United Kingdom)',1,1,0),(24994,0,125022,'La Adrada','Spain','ES','La Adrada (Spain)',1,1,0),(24995,0,125023,'La Aldea de San Nicolas','Spain','ES','La Aldea de San Nicolas (Spain)',1,1,0),(24996,0,125024,'La Balme-de-Sillingy','France','FR','La Balme-de-Sillingy (France)',1,1,0),(24997,0,125025,'La Baneza','Spain','ES','La Baneza (Spain)',1,1,0),(24998,0,125026,'La Bastide-de-Serou','France','FR','La Bastide-de-Serou (France)',1,1,0),(24999,0,125027,'La Brague','Seychelles','SC','La Brague (Seychelles)',1,1,0),(25000,0,125028,'La Brelotte Bay','Saint Lucia','LC','La Brelotte Bay (Saint Lucia)',1,1,0),(25001,31249,125029,'La Bresse','France','FR','La Bresse (France)',1,1,0),(25002,0,125030,'La Calzada','Spain','ES','La Calzada (Spain)',1,1,0),(25003,31262,125031,'La Carolina','Spain','ES','La Carolina (Spain)',1,1,0),(25004,0,125032,'La Carrera (Catamarca)','Argentina','AR','La Carrera (Catamarca) (Argentina)',1,1,0),(25005,0,125033,'La Chapelle-Hermier','France','FR','La Chapelle-Hermier (France)',1,1,0),(25006,31279,125034,'La Chaux-de-Fonds','Switzerland','CH','La Chaux-de-Fonds (Switzerland)',1,1,0),(25007,0,125035,'La Chaux-du-Milieu','Switzerland','CH','La Chaux-du-Milieu (Switzerland)',1,1,0),(25008,0,125036,'La Clayette','France','FR','La Clayette (France)',1,1,0),(25009,31297,125037,'La Creche','France','FR','La Creche (France)',1,1,0),(25010,31305,125038,'La Cumbrecita','Argentina','AR','La Cumbrecita (Argentina)',1,1,0),(25011,0,125039,'La Escala','Spain','ES','La Escala (Spain)',1,1,0),(25012,31314,125040,'La Farge','United States of America','US','La Farge (United States of America)',1,1,0),(25013,0,125041,'La Fere','France','FR','La Fere (France)',1,1,0),(25014,0,125042,'La Ferte-Imbault','France','FR','La Ferte-Imbault (France)',1,1,0),(25015,0,125043,'La Ferte-Saint-Aubin','France','FR','La Ferte-Saint-Aubin (France)',1,1,0),(25016,0,125044,'La Ferte-sous-Jouarre','France','FR','La Ferte-sous-Jouarre (France)',1,1,0),(25017,31336,125045,'La Garde','France','FR','La Garde (France)',1,1,0),(25018,0,125046,'La Gleize','Belgium','BE','La Gleize (Belgium)',1,1,0),(25019,0,125047,'La Grand-Croix','France','FR','La Grand-Croix (France)',1,1,0),(25020,31348,125048,'La Granja de San Ildefonso','Spain','ES','La Granja de San Ildefonso (Spain)',1,1,0),(25021,0,125049,'La Guajira','Colombia','CO','La Guajira (Colombia)',1,1,0),(25022,0,125050,'Lagoa Santa','Brazil','BR','Lagoa Santa (Brazil)',1,1,0),(25023,0,125051,'Lagoon Pocket','Australia','AU','Lagoon Pocket (Australia)',1,1,0),(25024,14771,125052,'Lagos','Portugal','PT','Lagos (Portugal)',1,1,0),(25025,14772,125053,'Lagos','Nigeria','NG','Lagos (Nigeria)',1,1,0),(25026,0,125054,'Lagow','Poland','PL','Lagow (Poland)',1,1,0),(25027,0,125055,'Laguna Beach','United States of America','US','Laguna Beach (United States of America)',1,1,0),(25028,0,125056,'Laguna Hills','United States of America','US','Laguna Hills (United States of America)',1,1,0),(25029,0,125057,'Laguna Woods','United States of America','US','Laguna Woods (United States of America)',1,1,0),(25030,14794,125058,'Lahr','Germany','DE','Lahr (Germany)',1,1,0),(25031,14800,125059,'L\'Aigle','France','FR','L\'Aigle (France)',1,1,0),(25032,31551,125060,'Lake Country','Canada','CA','Lake Country (Canada)',1,1,0),(25033,0,125061,'Lake Entrance','Australia','AU','Lake Entrance (Australia)',1,1,0),(25034,0,125062,'Lake Louise Village','Canada','CA','Lake Louise Village (Canada)',1,1,0),(25035,31580,125063,'Lake Montezuma','United States of America','US','Lake Montezuma (United States of America)',1,1,0),(25036,31599,125064,'Lake Wales','United States of America','US','Lake Wales (United States of America)',1,1,0),(25037,0,125065,'Lakeville','United States of America','US','Lakeville (United States of America)',1,1,0),(25038,14851,125066,'Lamballe','France','FR','Lamballe (France)',1,1,0),(25039,14864,125067,'L\'Ametlla de Mar','Spain','ES','L\'Ametlla de Mar (Spain)',1,1,0),(25040,0,125068,'Lamm','Austria','AT','Lamm (Austria)',1,1,0),(25041,0,125069,'Lammari','Italy','IT','Lammari (Italy)',1,1,0),(25042,14878,125070,'Lampang','Thailand','TH','Lampang (Thailand)',1,1,0),(25043,0,125071,'Lampeter','United Kingdom','UK','Lampeter (United Kingdom)',1,1,0),(25044,0,125072,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(25045,0,125073,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(25046,14898,125074,'Lanciano','Italy','IT','Lanciano (Italy)',1,1,0),(25047,0,125075,'Landmannalaugar','Iceland','IS','Landmannalaugar (Iceland)',1,1,0),(25048,14916,125076,'Landsberg','Germany','DE','Landsberg (Germany)',1,1,0),(25049,0,125077,'Landscheid','Germany','DE','Landscheid (Germany)',1,1,0),(25050,14920,125078,'Landudec','France','FR','Landudec (France)',1,1,0),(25051,0,125079,'Langenberg','Germany','DE','Langenberg (Germany)',1,1,0),(25052,14941,125080,'Langenselbold','Germany','DE','Langenselbold (Germany)',1,1,0),(25053,0,125081,'Langeoog Island','Germany','DE','Langeoog Island (Germany)',1,1,0),(25054,0,125082,'Langfurth','Germany','DE','Langfurth (Germany)',1,1,0),(25055,14960,125083,'Langreo','Spain','ES','Langreo (Spain)',1,1,0),(25056,0,125084,'Lanklaar','Belgium','BE','Lanklaar (Belgium)',1,1,0),(25057,14969,125085,'Lannach','Austria','AT','Lannach (Austria)',1,1,0),(25058,0,125086,'Lans','Austria','AT','Lans (Austria)',1,1,0),(25059,0,125087,'L\'Anse aux Epines','Grenada','GD','L\'Anse aux Epines (Grenada)',1,1,0),(25060,15002,125088,'Laoag','Philippines','PH','Laoag (Philippines)',1,1,0),(25061,0,125089,'Lappersdorf','Germany','DE','Lappersdorf (Germany)',1,1,0),(25062,0,125090,'Lapu-Lapu City','Philippines','PH','Lapu-Lapu City (Philippines)',1,1,0),(25063,15025,125091,'Larciano','Italy','IT','Larciano (Italy)',1,1,0),(25064,15032,125092,'Larisa','Greece','GR','Larisa (Greece)',1,1,0),(25065,15039,125093,'Larmor-Plage','France','FR','Larmor-Plage (France)',1,1,0),(25066,0,125094,'Laroya','Spain','ES','Laroya (Spain)',1,1,0),(25067,31621,125095,'Las Galletas','Spain','ES','Las Galletas (Spain)',1,1,0),(25068,0,125096,'Las Herencias','Spain','ES','Las Herencias (Spain)',1,1,0),(25069,31622,125097,'Las Matas','Spain','ES','Las Matas (Spain)',1,1,0),(25070,0,125098,'Las Rosas','Argentina','AR','Las Rosas (Argentina)',1,1,0),(25071,31631,125099,'Las Vegas','United States of America','US','Las Vegas (United States of America)',1,1,0),(25072,0,125100,'Lat Bua Khao','Thailand','TH','Lat Bua Khao (Thailand)',1,1,0),(25073,31632,125101,'Latina','Italy','IT','Latina (Italy)',1,1,0),(25074,15088,125102,'Latta','United States of America','US','Latta (United States of America)',1,1,0),(25075,0,125103,'Laufenburg','Germany','DE','Laufenburg (Germany)',1,1,0),(25076,0,125104,'Lauter','Germany','DE','Lauter (Germany)',1,1,0),(25077,0,125105,'Lauterbourg','France','FR','Lauterbourg (France)',1,1,0),(25078,0,125106,'Lauwersmeer','Netherlands','NL','Lauwersmeer (Netherlands)',1,1,0),(25079,15131,125107,'Lavagna','Italy','IT','Lavagna (Italy)',1,1,0),(25080,15132,125108,'Laval','Canada','CA','Laval (Canada)',1,1,0),(25081,0,125109,'Lavenham','United Kingdom','UK','Lavenham (United Kingdom)',1,1,0),(25082,0,125110,'Lavey-Village','Switzerland','CH','Lavey-Village (Switzerland)',1,1,0),(25083,15143,125111,'Lavis','Italy','IT','Lavis (Italy)',1,1,0),(25084,0,125112,'Lavre','Portugal','PT','Lavre (Portugal)',1,1,0),(25085,15150,125113,'Lawrence','United States of America','US','Lawrence (United States of America)',1,1,0),(25086,0,125114,'Lawrenceburg','United States of America','US','Lawrenceburg (United States of America)',1,1,0),(25087,15153,125115,'Lawton','United States of America','US','Lawton (United States of America)',1,1,0),(25088,15154,125116,'Laxe','Spain','ES','Laxe (Spain)',1,1,0),(25089,0,125117,'Lazne Bohdanec','Czech Republic','CZ','Lazne Bohdanec (Czech Republic)',1,1,0),(25090,31643,125118,'Le Bonhomme','France','FR','Le Bonhomme (France)',1,1,0),(25091,31646,125119,'Le Bourget-du-Lac','France','FR','Le Bourget-du-Lac (France)',1,1,0),(25092,31667,125120,'Le Crotoy','France','FR','Le Crotoy (France)',1,1,0),(25093,0,125121,'Le Fugeret','France','FR','Le Fugeret (France)',1,1,0),(25094,31680,125122,'Le Havre','France','FR','Le Havre (France)',1,1,0),(25095,0,125123,'Le Lamentin','Martinique','MQ','Le Lamentin (Martinique)',1,1,0),(25096,0,125124,'Le Petit-Quevilly','France','FR','Le Petit-Quevilly (France)',1,1,0),(25097,31703,125125,'Le Pian-Medoc','France','FR','Le Pian-Medoc (France)',1,1,0),(25098,31713,125126,'Le Puy-en-Velay','France','FR','Le Puy-en-Velay (France)',1,1,0),(25099,31714,125127,'Le Puy-Notre-Dame','France','FR','Le Puy-Notre-Dame (France)',1,1,0),(25100,0,125128,'Le Rayol Canadel sur Mer','France','FR','Le Rayol Canadel sur Mer (France)',1,1,0),(25101,0,125129,'Le Sauze-du-Lac','France','FR','Le Sauze-du-Lac (France)',1,1,0),(25102,31729,125130,'Le Thillot','France','FR','Le Thillot (France)',1,1,0),(25103,31742,125131,'Le Vigeant','France','FR','Le Vigeant (France)',1,1,0),(25104,0,125132,'Le Vivier-sur-Mer','France','FR','Le Vivier-sur-Mer (France)',1,1,0),(25105,0,125133,'Leakey','United States of America','US','Leakey (United States of America)',1,1,0),(25106,15171,125134,'Leamington','Canada','CA','Leamington (Canada)',1,1,0),(25107,15176,125135,'Leavenworth','United States of America','US','Leavenworth (United States of America)',1,1,0),(25108,0,125136,'Leavenworth','United States of America','US','Leavenworth (United States of America)',1,1,0),(25109,0,125137,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(25110,15184,125138,'Lecce','Italy','IT','Lecce (Italy)',1,1,0),(25111,0,125139,'Lechlade','United Kingdom','UK','Lechlade (United Kingdom)',1,1,0),(25112,0,125140,'Ledsham','United Kingdom','UK','Ledsham (United Kingdom)',1,1,0),(25113,31747,125141,'Lee Vining','United States of America','US','Lee Vining (United States of America)',1,1,0),(25114,0,125142,'Leesburg','United States of America','US','Leesburg (United States of America)',1,1,0),(25115,15226,125143,'Legnago','Italy','IT','Legnago (Italy)',1,1,0),(25116,0,125145,'Lehestein','Germany','DE','Lehestein (Germany)',1,1,0),(25117,0,125146,'Leinsweiler','Germany','DE','Leinsweiler (Germany)',1,1,0),(25118,0,125147,'Leipe','Germany','DE','Leipe (Germany)',1,1,0),(25119,15252,125148,'Leipheim','Germany','DE','Leipheim (Germany)',1,1,0),(25120,15263,125149,'Lekkerkerk','Netherlands','NL','Lekkerkerk (Netherlands)',1,1,0),(25121,0,125150,'Lembras','France','FR','Lembras (France)',1,1,0),(25122,15286,125151,'Leni','Italy','IT','Leni (Italy)',1,1,0),(25123,0,125152,'Lenno','Italy','IT','Lenno (Italy)',1,1,0),(25124,0,125153,'Lenzing','Austria','AT','Lenzing (Austria)',1,1,0),(25125,15302,125154,'Leoben','Austria','AT','Leoben (Austria)',1,1,0),(25126,15307,125155,'Leon','Mexico','MX','Leon (Mexico)',1,1,0),(25127,0,125156,'Leopoldsburg','Belgium','BE','Leopoldsburg (Belgium)',1,1,0),(25128,15320,125157,'Lequile','Italy','IT','Lequile (Italy)',1,1,0),(25129,15324,125158,'Lerici','Italy','IT','Lerici (Italy)',1,1,0),(25130,31764,125159,'Les Arcs','France','FR','Les Arcs (France)',1,1,0),(25131,0,125160,'La Vancelle','France','FR','La Vancelle (France)',1,1,0),(25132,0,125161,'Laane-Virumaa','Estonia','EE','Laane-Virumaa (Estonia)',1,1,0),(25133,0,125162,'Labenne','France','FR','Labenne (France)',1,1,0),(25134,0,125163,'Labini','Greece','GR','Labini (Greece)',1,1,0),(25135,0,125164,'Laboe','Germany','DE','Laboe (Germany)',1,1,0),(25136,14703,125165,'Labrador','Australia','AU','Labrador (Australia)',1,1,0),(25137,0,125166,'Labro','Italy','IT','Labro (Italy)',1,1,0),(25138,31532,125167,'Lac du Flambeau','United States of America','US','Lac du Flambeau (United States of America)',1,1,0),(25139,0,125168,'Lachania','Greece','GR','Lachania (Greece)',1,1,0),(25140,0,125169,'Ladek Zdroj','Poland','PL','Ladek Zdroj (Poland)',1,1,0),(25141,0,125170,'Ladenburg','Germany','DE','Ladenburg (Germany)',1,1,0),(25142,14765,125171,'Lago Agrio','Ecuador','EC','Lago Agrio (Ecuador)',1,1,0),(25143,0,125172,'Lagopodo','Greece','GR','Lagopodo (Greece)',1,1,0),(25144,0,125173,'Laguna De Duero','Spain','ES','Laguna De Duero (Spain)',1,1,0),(25145,0,125174,'Laguna Niguel','United States of America','US','Laguna Niguel (United States of America)',1,1,0),(25146,0,125175,'Lahat Datu','Malaysia','MY','Lahat Datu (Malaysia)',1,1,0),(25147,14793,125176,'Lahore','Pakistan','PK','Lahore (Pakistan)',1,1,0),(25148,14807,125177,'Lajitas','United States of America','US','Lajitas (United States of America)',1,1,0),(25149,14811,125178,'Lake Baringo','Kenya','KE','Lake Baringo (Kenya)',1,1,0),(25150,31544,125179,'Lake Buena Vista','United States of America','US','Lake Buena Vista (United States of America)',1,1,0),(25151,31571,125180,'Lake Junaluska','United States of America','US','Lake Junaluska (United States of America)',1,1,0),(25152,31574,125181,'Lake Lure','United States of America','US','Lake Lure (United States of America)',1,1,0),(25153,0,125182,'Lake Manyara National Park','Tanzania','TZ','Lake Manyara National Park (Tanzania)',1,1,0),(25154,0,125183,'Lake Moeraki','New Zealand','NZ','Lake Moeraki (New Zealand)',1,1,0),(25155,31583,125184,'Lake Oswego','United States of America','US','Lake Oswego (United States of America)',1,1,0),(25156,0,125185,'Lake Placid','United States of America','US','Lake Placid (United States of America)',1,1,0),(25157,0,125186,'Lakeview','United States of America','US','Lakeview (United States of America)',1,1,0),(25158,14831,125187,'Lakeville','United States of America','US','Lakeville (United States of America)',1,1,0),(25159,0,125188,'Lakewood','United States of America','US','Lakewood (United States of America)',1,1,0),(25160,0,125189,'Lakewood','United States of America','US','Lakewood (United States of America)',1,1,0),(25161,14837,125190,'Lakonia','Greece','GR','Lakonia (Greece)',1,1,0),(25162,0,125191,'Lalibela Game Reserve','South Africa','ZA','Lalibela Game Reserve (South Africa)',1,1,0),(25163,0,125192,'Lamadrid','Spain','ES','Lamadrid (Spain)',1,1,0),(25164,0,125193,'Lamalou Les Bains','France','FR','Lamalou Les Bains (France)',1,1,0),(25165,14875,125194,'Lamont','United States of America','US','Lamont (United States of America)',1,1,0),(25166,0,125195,'Lamotte-Beuvron','France','FR','Lamotte-Beuvron (France)',1,1,0),(25167,0,125196,'Lampaul Guimiliau','France','FR','Lampaul Guimiliau (France)',1,1,0),(25168,0,125197,'Lamure-sur-Azergues','France','FR','Lamure-sur-Azergues (France)',1,1,0),(25169,0,125198,'Lanai City','United States of America','US','Lanai City (United States of America)',1,1,0),(25170,0,125199,'Lanchares','Spain','ES','Lanchares (Spain)',1,1,0),(25171,0,125200,'Landau in der Pfalz','Germany','DE','Landau in der Pfalz (Germany)',1,1,0),(25172,0,125201,'Landgraff','United States of America','US','Landgraff (United States of America)',1,1,0),(25173,0,125202,'Landschlacht','Switzerland','CH','Landschlacht (Switzerland)',1,1,0),(25174,14930,125203,'Langdon','United States of America','US','Langdon (United States of America)',1,1,0),(25175,14932,125204,'Langdorf','Germany','DE','Langdorf (Germany)',1,1,0),(25176,14936,125205,'Langelsheim','Germany','DE','Langelsheim (Germany)',1,1,0),(25177,14938,125206,'Langenfeld','Germany','DE','Langenfeld (Germany)',1,1,0),(25178,0,125207,'Langenlebarn','Austria','AT','Langenlebarn (Austria)',1,1,0),(25179,14946,125208,'Langesund','Norway','NO','Langesund (Norway)',1,1,0),(25180,0,125209,'Langho','United Kingdom','UK','Langho (United Kingdom)',1,1,0),(25181,0,125210,'Langholm','United Kingdom','UK','Langholm (United Kingdom)',1,1,0),(25182,0,125211,'Langquaid','Germany','DE','Langquaid (Germany)',1,1,0),(25183,0,125212,'Langsa','Indonesia','ID','Langsa (Indonesia)',1,1,0),(25184,14963,125213,'Langweiler','Germany','DE','Langweiler (Germany)',1,1,0),(25185,0,125214,'Langwies','Switzerland','CH','Langwies (Switzerland)',1,1,0),(25186,0,125215,'Lankupiai','Lithuania','LT','Lankupiai (Lithuania)',1,1,0),(25187,14974,125216,'Lansdowne','Canada','CA','Lansdowne (Canada)',1,1,0),(25188,0,125217,'Lantau Island','Hong Kong','HK','Lantau Island (Hong Kong)',1,1,0),(25189,15008,125218,'Lapeer','United States of America','US','Lapeer (United States of America)',1,1,0),(25190,0,125219,'Lapeyrouse','France','FR','Lapeyrouse (France)',1,1,0),(25191,0,125220,'Larena','Philippines','PH','Larena (Philippines)',1,1,0),(25192,0,125221,'Lari','Italy','IT','Lari (Italy)',1,1,0),(25193,15043,125222,'Larrabetzu','Spain','ES','Larrabetzu (Spain)',1,1,0),(25194,0,125223,'Larrau','France','FR','Larrau (France)',1,1,0),(25195,15049,125224,'Las Galeras','Dominican Republic','DO','Las Galeras (Dominican Republic)',1,1,0),(25196,0,125225,'Las Manchas','Spain','ES','Las Manchas (Spain)',1,1,0),(25197,31623,125226,'Las Mestas','Spain','ES','Las Mestas (Spain)',1,1,0),(25198,0,125227,'Las Tunas','Cuba','CU','Las Tunas (Cuba)',1,1,0),(25199,0,125228,'Lastres','Spain','ES','Lastres (Spain)',1,1,0),(25200,15074,125229,'Laterina','Italy','IT','Laterina (Italy)',1,1,0),(25201,0,125230,'Latronico','Italy','IT','Latronico (Italy)',1,1,0),(25202,0,125231,'Lauchhammer','Germany','DE','Lauchhammer (Germany)',1,1,0),(25203,0,125232,'Laudenbach (Unterfranken)','Germany','DE','Laudenbach (Unterfranken) (Germany)',1,1,0),(25204,0,125233,'Lauen - Birkeland','Norway','NO','Lauen - Birkeland (Norway)',1,1,0),(25205,0,125234,'Laufersweiler','Germany','DE','Laufersweiler (Germany)',1,1,0),(25206,0,125235,'Launois-sur-Vence','France','FR','Launois-sur-Vence (France)',1,1,0),(25207,15117,125236,'Lauria','Italy','IT','Lauria (Italy)',1,1,0),(25208,0,125237,'Laussa','Austria','AT','Laussa (Austria)',1,1,0),(25209,15125,125238,'Lauterbach','Germany','DE','Lauterbach (Germany)',1,1,0),(25210,0,125239,'Lautertal (Odenwald)','Germany','DE','Lautertal (Odenwald) (Germany)',1,1,0),(25211,0,125240,'Lautrach','Germany','DE','Lautrach (Germany)',1,1,0),(25212,0,125241,'Lauwersoog','Netherlands','NL','Lauwersoog (Netherlands)',1,1,0),(25213,0,125242,'Lava Hot Springs','United States of America','US','Lava Hot Springs (United States of America)',1,1,0),(25214,0,125243,'Lavello','Italy','IT','Lavello (Italy)',1,1,0),(25215,0,125244,'Lavena Ponte Tresa','Italy','IT','Lavena Ponte Tresa (Italy)',1,1,0),(25216,0,125245,'Laviyani Atoll','Maldives','MV','Laviyani Atoll (Maldives)',1,1,0),(25217,0,125246,'Lawrenceville','United States of America','US','Lawrenceville (United States of America)',1,1,0),(25218,15157,125247,'Layos','Spain','ES','Layos (Spain)',1,1,0),(25219,0,125248,'Le Bareares','France','FR','Le Bareares (France)',1,1,0),(25220,0,125249,'Le Barroux','France','FR','Le Barroux (France)',1,1,0),(25221,31639,125250,'Le Blanc','France','FR','Le Blanc (France)',1,1,0),(25222,0,125251,'Le Bois Plage','France','FR','Le Bois Plage (France)',1,1,0),(25223,0,125252,'Le Bono','France','FR','Le Bono (France)',1,1,0),(25224,31651,125253,'Le Bugue','France','FR','Le Bugue (France)',1,1,0),(25225,0,125254,'Le Chatelet','France','FR','Le Chatelet (France)',1,1,0),(25226,31660,125255,'Le Chesnay','France','FR','Le Chesnay (France)',1,1,0),(25227,0,125256,'Le Crestet','France','FR','Le Crestet (France)',1,1,0),(25228,31674,125257,'Le Grand-Bornand','France','FR','Le Grand-Bornand (France)',1,1,0),(25229,0,125258,'Le Grand-Pressigny','France','FR','Le Grand-Pressigny (France)',1,1,0),(25230,31684,125259,'Le Lavandou','France','FR','Le Lavandou (France)',1,1,0),(25231,31689,125260,'Le Mans','France','FR','Le Mans (France)',1,1,0),(25232,31692,125261,'Le Mesnil-Amelot','France','FR','Le Mesnil-Amelot (France)',1,1,0),(25233,0,125262,'Le Mesnil-en-Vallee','France','FR','Le Mesnil-en-Vallee (France)',1,1,0),(25234,0,125263,'Le Monastere','France','FR','Le Monastere (France)',1,1,0),(25235,31693,125264,'Le Monastier-sur-Gazeille','France','FR','Le Monastier-sur-Gazeille (France)',1,1,0),(25236,0,125265,'Le Neubourg','France','FR','Le Neubourg (France)',1,1,0),(25237,31698,125266,'Le Noirmont','Switzerland','CH','Le Noirmont (Switzerland)',1,1,0),(25238,0,125267,'Lenz','Germany','DE','Lenz (Germany)',1,1,0),(25239,15308,125268,'Leon','Nicaragua','NI','Leon (Nicaragua)',1,1,0),(25240,0,125269,'Leontica','Switzerland','CH','Leontica (Switzerland)',1,1,0),(25241,15317,125270,'Leporano','Italy','IT','Leporano (Italy)',1,1,0),(25242,15319,125271,'Leptokaria','Greece','GR','Leptokaria (Greece)',1,1,0),(25243,0,125272,'Les','Spain','ES','Les (Spain)',1,1,0),(25244,0,125273,'Les Almadies','Senegal','SN','Les Almadies (Senegal)',1,1,0),(25245,0,125274,'Les Angles','France','FR','Les Angles (France)',1,1,0),(25246,0,125275,'Les Baux de Provence','France','FR','Les Baux de Provence (France)',1,1,0),(25247,31781,125276,'Les Estables','France','FR','Les Estables (France)',1,1,0),(25248,0,125277,'Les Sables d\'Olonne','France','FR','Les Sables d\'Olonne (France)',1,1,0),(25249,0,125278,'Les Saintes','Guadeloupe','GP','Les Saintes (Guadeloupe)',1,1,0),(25250,0,125279,'Les Salines','Martinique','MQ','Les Salines (Martinique)',1,1,0),(25251,31813,125280,'Lesa','Italy','IT','Lesa (Italy)',1,1,0),(25252,15347,125281,'L\'Espluga de Francoli','Spain','ES','L\'Espluga de Francoli (Spain)',1,1,0),(25253,0,125282,'Lesterre Bay','St. Vincent & the Grenadines','VC','Lesterre Bay (St. Vincent & the Grenadines)',1,1,0),(25254,0,125283,'Lestina','Czech Republic','CZ','Lestina (Czech Republic)',1,1,0),(25255,15375,125284,'Leutschach','Austria','AT','Leutschach (Austria)',1,1,0),(25256,15390,125285,'Levico Terme','Italy','IT','Levico Terme (Italy)',1,1,0),(25257,0,125286,'Lewisporte','Canada','CA','Lewisporte (Canada)',1,1,0),(25258,15405,125287,'Lewisville','United States of America','US','Lewisville (United States of America)',1,1,0),(25259,0,125288,'Lexington Park','United States of America','US','Lexington Park (United States of America)',1,1,0),(25260,0,125289,'Lezhe','Albania','AL','Lezhe (Albania)',1,1,0),(25261,0,125290,'L\'Hospitalet-du-Larzac','France','FR','L\'Hospitalet-du-Larzac (France)',1,1,0),(25262,15426,125291,'Lianyungang','China','CN','Lianyungang (China)',1,1,0),(25263,15448,125292,'Lichtenstein','Germany','DE','Lichtenstein (Germany)',1,1,0),(25264,0,125293,'Lido degli Estensi','Italy','IT','Lido degli Estensi (Italy)',1,1,0),(25265,0,125294,'Lido di Classe','Italy','IT','Lido di Classe (Italy)',1,1,0),(25266,0,125295,'Liebenfels','Austria','AT','Liebenfels (Austria)',1,1,0),(25267,0,125296,'Liebstadt','Germany','DE','Liebstadt (Germany)',1,1,0),(25268,0,125297,'Liederbach','Germany','DE','Liederbach (Germany)',1,1,0),(25269,0,125298,'Lielvarde','Latvia','LV','Lielvarde (Latvia)',1,1,0),(25270,0,125299,'Lienen','Germany','DE','Lienen (Germany)',1,1,0),(25271,15475,125300,'Lieusaint','France','FR','Lieusaint (France)',1,1,0),(25272,0,125301,'Lignano Riviera','Italy','IT','Lignano Riviera (Italy)',1,1,0),(25273,15494,125302,'Likoma Island','Malawi','MW','Likoma Island (Malawi)',1,1,0),(25274,0,125303,'L\'Ile-d\'Yeu','France','FR','L\'Ile-d\'Yeu (France)',1,1,0),(25275,15502,125304,'Lille','France','FR','Lille (France)',1,1,0),(25276,15512,125305,'Limay','France','FR','Limay (France)',1,1,0),(25277,0,125306,'Limnionas','Greece','GR','Limnionas (Greece)',1,1,0),(25278,0,125307,'Limnos','Greece','GR','Limnos (Greece)',1,1,0),(25279,0,125308,'Limpopo','Mozambique','MZ','Limpopo (Mozambique)',1,1,0),(25280,15542,125309,'Linares','Chile','CL','Linares (Chile)',1,1,0),(25281,0,125310,'Linares de Mora','Spain','ES','Linares de Mora (Spain)',1,1,0),(25282,0,125311,'Lincoln Park','United States of America','US','Lincoln Park (United States of America)',1,1,0),(25283,15549,125312,'Lincolnshire','United States of America','US','Lincolnshire (United States of America)',1,1,0),(25284,15550,125313,'Lincolnton','United States of America','US','Lincolnton (United States of America)',1,1,0),(25285,0,125314,'Lindarski Katun','Croatia','HR','Lindarski Katun (Croatia)',1,1,0),(25286,0,125315,'Linum','Germany','DE','Linum (Germany)',1,1,0),(25287,15605,125316,'Lippstadt','Germany','DE','Lippstadt (Germany)',1,1,0),(25288,15610,125317,'Lisbon','United States of America','US','Lisbon (United States of America)',1,1,0),(25289,0,125318,'Lisle','United States of America','US','Lisle (United States of America)',1,1,0),(25290,15626,125319,'L\'Isle-sur-la-Sorgue','France','FR','L\'Isle-sur-la-Sorgue (France)',1,1,0),(25291,0,125320,'Lissewege','Belgium','BE','Lissewege (Belgium)',1,1,0),(25292,15632,125321,'Lissieu','France','FR','Lissieu (France)',1,1,0),(25293,0,125322,'Listerfehrda','Germany','DE','Listerfehrda (Germany)',1,1,0),(25294,0,125323,'Litomerice','Czech Republic','CZ','Litomerice (Czech Republic)',1,1,0),(25295,0,125324,'Little Weighton','United Kingdom','UK','Little Weighton (United Kingdom)',1,1,0),(25296,0,125325,'Liupanshui','China','CN','Liupanshui (China)',1,1,0),(25297,0,125326,'Live Oak','United States of America','US','Live Oak (United States of America)',1,1,0),(25298,0,125327,'Livingston','United Kingdom','UK','Livingston (United Kingdom)',1,1,0),(25299,15665,125328,'Livingston','United States of America','US','Livingston (United States of America)',1,1,0),(25300,0,125329,'Livonia','United States of America','US','Livonia (United States of America)',1,1,0),(25301,0,125330,'Livron-sur-Drome','France','FR','Livron-sur-Drome (France)',1,1,0),(25302,0,125331,'Lizard','United Kingdom','UK','Lizard (United Kingdom)',1,1,0),(25303,0,125332,'Ljugarn','Sweden','SE','Ljugarn (Sweden)',1,1,0),(25304,0,125333,'Llandovery','United Kingdom','UK','Llandovery (United Kingdom)',1,1,0),(25305,0,125334,'Llandudno','United Kingdom','UK','Llandudno (United Kingdom)',1,1,0),(25306,0,125335,'Llanos','Venezuela','VE','Llanos (Venezuela)',1,1,0),(25307,0,125336,'Llanrug','United Kingdom','UK','Llanrug (United Kingdom)',1,1,0),(25308,0,125337,'Llanwddyn','United Kingdom','UK','Llanwddyn (United Kingdom)',1,1,0),(25309,0,125338,'Llanwrtyd Wells','United Kingdom','UK','Llanwrtyd Wells (United Kingdom)',1,1,0),(25310,31824,125339,'Loa','United States of America','US','Loa (United States of America)',1,1,0),(25311,15742,125340,'Lobios','Spain','ES','Lobios (Spain)',1,1,0),(25312,0,125341,'Lobras','Spain','ES','Lobras (Spain)',1,1,0),(25313,0,125342,'Loch Fyne','United Kingdom','UK','Loch Fyne (United Kingdom)',1,1,0),(25314,0,125343,'Loch Harray','United Kingdom','UK','Loch Harray (United Kingdom)',1,1,0),(25315,0,125344,'Lochcarron','United Kingdom','UK','Lochcarron (United Kingdom)',1,1,0),(25316,0,125345,'Lochgilphead','United Kingdom','UK','Lochgilphead (United Kingdom)',1,1,0),(25317,0,125346,'Locmariaquer','France','FR','Locmariaquer (France)',1,1,0),(25318,15760,125347,'Loctudy','France','FR','Loctudy (France)',1,1,0),(25319,0,125348,'Locust Grove','United States of America','US','Locust Grove (United States of America)',1,1,0),(25320,15767,125349,'Lodeve','France','FR','Lodeve (France)',1,1,0),(25321,15769,125350,'Lodi','Italy','IT','Lodi (Italy)',1,1,0),(25322,15768,125351,'Lodi','United States of America','US','Lodi (United States of America)',1,1,0),(25323,0,125352,'Lodi','United States of America','US','Lodi (United States of America)',1,1,0),(25324,0,125353,'Lof','Germany','DE','Lof (Germany)',1,1,0),(25325,0,125354,'Logan','United States of America','US','Logan (United States of America)',1,1,0),(25326,0,125355,'Lohnberg','Germany','DE','Lohnberg (Germany)',1,1,0),(25327,0,125356,'Lohsa','Germany','DE','Lohsa (Germany)',1,1,0),(25328,0,125357,'Lokve','Croatia','HR','Lokve (Croatia)',1,1,0),(25329,15823,125358,'Lome','Togo','TG','Lome (Togo)',1,1,0),(25330,0,125359,'Lone Tree','United States of America','US','Lone Tree (United States of America)',1,1,0),(25331,0,125360,'Long Beach','United States of America','US','Long Beach (United States of America)',1,1,0),(25332,0,125361,'Long Beach','United States of America','US','Long Beach (United States of America)',1,1,0),(25333,0,125362,'Long Compton','United Kingdom','UK','Long Compton (United Kingdom)',1,1,0),(25334,0,125363,'Long Key','United States of America','US','Long Key (United States of America)',1,1,0),(25335,0,125364,'Long Lake','United States of America','US','Long Lake (United States of America)',1,1,0),(25336,15861,125365,'Longiano','Italy','IT','Longiano (Italy)',1,1,0),(25337,0,125366,'Longview','United States of America','US','Longview (United States of America)',1,1,0),(25338,15873,125367,'Longyan','China','CN','Longyan (China)',1,1,0),(25339,15893,125368,'Lord Howe Island','Australia','AU','Lord Howe Island (Australia)',1,1,0),(25340,15897,125369,'Lorenzago di Cadore','Italy','IT','Lorenzago di Cadore (Italy)',1,1,0),(25341,0,125370,'Loreto Aprutino','Italy','IT','Loreto Aprutino (Italy)',1,1,0),(25342,0,125371,'Loretto di Casinca','France','FR','Loretto di Casinca (France)',1,1,0),(25343,15902,125372,'Lorgues','France','FR','Lorgues (France)',1,1,0),(25344,0,125373,'Los Acevinos','Spain','ES','Los Acevinos (Spain)',1,1,0),(25345,31835,125374,'Los Alamitos','United States of America','US','Los Alamitos (United States of America)',1,1,0),(25346,0,125375,'Los Alcazares / Mar Menor','Spain','ES','Los Alcazares / Mar Menor (Spain)',1,1,0),(25347,0,125376,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(25348,0,125377,'Lechbruck on Sea','Germany','DE','Lechbruck on Sea (Germany)',1,1,0),(25349,15203,125378,'Leegebruch','Germany','DE','Leegebruch (Germany)',1,1,0),(25350,0,125379,'Leerdam','Netherlands','NL','Leerdam (Netherlands)',1,1,0),(25351,0,125380,'Leezdorf','Germany','DE','Leezdorf (Germany)',1,1,0),(25352,15212,125381,'Leffe','Italy','IT','Leffe (Italy)',1,1,0),(25353,0,125382,'Lege Cap Ferret','France','FR','Lege Cap Ferret (France)',1,1,0),(25354,0,125383,'Legowo','Poland','PL','Legowo (Poland)',1,1,0),(25355,0,125384,'Lehmkuhlen','Germany','DE','Lehmkuhlen (Germany)',1,1,0),(25356,15239,125385,'Leiden','Netherlands','NL','Leiden (Netherlands)',1,1,0),(25357,15240,125386,'Leiderdorp','Netherlands','NL','Leiderdorp (Netherlands)',1,1,0),(25358,15241,125387,'Leidschendam','Netherlands','NL','Leidschendam (Netherlands)',1,1,0),(25359,0,125388,'Leiston','United Kingdom','UK','Leiston (United Kingdom)',1,1,0),(25360,0,125389,'Leiwen','Germany','DE','Leiwen (Germany)',1,1,0),(25361,15260,125390,'Leixlip','Ireland','IE','Leixlip (Ireland)',1,1,0),(25362,15265,125391,'Leksand','Sweden','SE','Leksand (Sweden)',1,1,0),(25363,0,125392,'Lemele','Netherlands','NL','Lemele (Netherlands)',1,1,0),(25364,31752,125393,'Lemon Cove','United States of America','US','Lemon Cove (United States of America)',1,1,0),(25365,0,125394,'Lendelede','Belgium','BE','Lendelede (Belgium)',1,1,0),(25366,0,125395,'Lendorf','Austria','AT','Lendorf (Austria)',1,1,0),(25367,0,125396,'Lengefeld','Germany','DE','Lengefeld (Germany)',1,1,0),(25368,0,125397,'Lens','France','FR','Lens (France)',1,1,0),(25369,0,125398,'Lentas','Greece','GR','Lentas (Greece)',1,1,0),(25370,15300,125399,'Lenzburg','Switzerland','CH','Lenzburg (Switzerland)',1,1,0),(25371,0,125400,'Lerwick','United Kingdom','UK','Lerwick (United Kingdom)',1,1,0),(25372,31763,125401,'Les Andelys','France','FR','Les Andelys (France)',1,1,0),(25373,0,125402,'Les Billaux','France','FR','Les Billaux (France)',1,1,0),(25374,0,125403,'Les Breuleux','Switzerland','CH','Les Breuleux (Switzerland)',1,1,0),(25375,0,125404,'Les Claux','France','FR','Les Claux (France)',1,1,0),(25376,31775,125405,'Les Contamines-Montjoie','France','FR','Les Contamines-Montjoie (France)',1,1,0),(25377,31785,125406,'Les Gets','France','FR','Les Gets (France)',1,1,0),(25378,0,125407,'Les Hauderes','Switzerland','CH','Les Hauderes (Switzerland)',1,1,0),(25379,0,125408,'Les Praz-de-Chamonix','France','FR','Les Praz-de-Chamonix (France)',1,1,0),(25380,0,125409,'Lessay','France','FR','Lessay (France)',1,1,0),(25381,0,125410,'Lethem','Guyana','GY','Lethem (Guyana)',1,1,0),(25382,0,125411,'Leubsdorf (Sachsen)','Germany','DE','Leubsdorf (Sachsen) (Germany)',1,1,0),(25383,0,125412,'Leutkirch im Allgau','Germany','DE','Leutkirch im Allgau (Germany)',1,1,0),(25384,15379,125413,'Levallois-Perret','France','FR','Levallois-Perret (France)',1,1,0),(25385,0,125414,'Leverano','Italy','IT','Leverano (Italy)',1,1,0),(25386,0,125415,'Levice','Slovakia','SK','Levice (Slovakia)',1,1,0),(25387,0,125416,'Levignac','France','FR','Levignac (France)',1,1,0),(25388,0,125417,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(25389,0,125418,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(25390,0,125419,'Leyland','United Kingdom','UK','Leyland (United Kingdom)',1,1,0),(25391,15417,125420,'Lezoux','France','FR','Lezoux (France)',1,1,0),(25392,0,125421,'L\'Horme','France','FR','L\'Horme (France)',1,1,0),(25393,0,125422,'Liapades','Greece','GR','Liapades (Greece)',1,1,0),(25394,15430,125423,'Libby','United States of America','US','Libby (United States of America)',1,1,0),(25395,0,125424,'Liberty Lake','United States of America','US','Liberty Lake (United States of America)',1,1,0),(25396,15437,125425,'Libertyville','United States of America','US','Libertyville (United States of America)',1,1,0),(25397,15439,125426,'Libramont','Belgium','BE','Libramont (Belgium)',1,1,0),(25398,0,125427,'Lichfield','United Kingdom','UK','Lichfield (United Kingdom)',1,1,0),(25399,0,125428,'Lichovy Zrubek','Czech Republic','CZ','Lichovy Zrubek (Czech Republic)',1,1,0),(25400,0,125429,'Lichtenau (Baden)','Germany','DE','Lichtenau (Baden) (Germany)',1,1,0),(25401,0,125430,'Lido Adriano','Italy','IT','Lido Adriano (Italy)',1,1,0),(25402,0,125431,'Lido del Sole','Italy','IT','Lido del Sole (Italy)',1,1,0),(25403,31814,125432,'Lido di Camaiore','Italy','IT','Lido di Camaiore (Italy)',1,1,0),(25404,0,125433,'Lido di Capoliveri','Italy','IT','Lido di Capoliveri (Italy)',1,1,0),(25405,31816,125434,'Lido di Ostia','Italy','IT','Lido di Ostia (Italy)',1,1,0),(25406,15478,125435,'Lifford','Ireland','IE','Lifford (Ireland)',1,1,0),(25407,0,125436,'Lifjell','Norway','NO','Lifjell (Norway)',1,1,0),(25408,0,125437,'Ligatne','Latvia','LV','Ligatne (Latvia)',1,1,0),(25409,15487,125438,'Ligonier','United States of America','US','Ligonier (United States of America)',1,1,0),(25410,0,125439,'Likely','United States of America','US','Likely (United States of America)',1,1,0),(25411,15507,125440,'Lillooet','Canada','CA','Lillooet (Canada)',1,1,0),(25412,15519,125441,'Limburgerhof','Germany','DE','Limburgerhof (Germany)',1,1,0),(25413,15520,125442,'Limeira','Brazil','BR','Limeira (Brazil)',1,1,0),(25414,15535,125443,'Limoux','France','FR','Limoux (France)',1,1,0),(25415,15536,125444,'Limpias','Spain','ES','Limpias (Spain)',1,1,0),(25416,15541,125445,'Linares','Spain','ES','Linares (Spain)',1,1,0),(25417,0,125446,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(25418,15558,125447,'Lindberg','Germany','DE','Lindberg (Germany)',1,1,0),(25419,15572,125448,'Lindsay','United States of America','US','Lindsay (United States of America)',1,1,0),(25420,15571,125449,'Lindsay','Canada','CA','Lindsay (Canada)',1,1,0),(25421,0,125450,'Lingchuan','China','CN','Lingchuan (China)',1,1,0),(25422,0,125451,'Linhares','Brazil','BR','Linhares (Brazil)',1,1,0),(25423,15586,125452,'Linn','United States of America','US','Linn (United States of America)',1,1,0),(25424,0,125453,'Linnich','Germany','DE','Linnich (Germany)',1,1,0),(25425,0,125454,'Linwood','United States of America','US','Linwood (United States of America)',1,1,0),(25426,0,125455,'Linyola','Spain','ES','Linyola (Spain)',1,1,0),(25427,0,125456,'Linz am Rhein','Germany','DE','Linz am Rhein (Germany)',1,1,0),(25428,0,125457,'Liphook','United Kingdom','UK','Liphook (United Kingdom)',1,1,0),(25429,0,125458,'Lipova-lazne','Czech Republic','CZ','Lipova-lazne (Czech Republic)',1,1,0),(25430,0,125459,'Lipperswil','Switzerland','CH','Lipperswil (Switzerland)',1,1,0),(25431,0,125460,'Lippetal','Germany','DE','Lippetal (Germany)',1,1,0),(25432,0,125461,'Lipsi','Greece','GR','Lipsi (Greece)',1,1,0),(25433,0,125462,'Liptovsky Trnovec','Slovakia','SK','Liptovsky Trnovec (Slovakia)',1,1,0),(25434,0,125463,'Lisbon','United States of America','US','Lisbon (United States of America)',1,1,0),(25435,0,125464,'Lisburn','United Kingdom','UK','Lisburn (United Kingdom)',1,1,0),(25436,0,125465,'Lissac-sur-Couze','France','FR','Lissac-sur-Couze (France)',1,1,0),(25437,0,125466,'Little Bay','Sint Maarten (Dutch part)','SX','Little Bay (Sint Maarten (Dutch part))',1,1,0),(25438,0,125467,'Little Chute','United States of America','US','Little Chute (United States of America)',1,1,0),(25439,0,125468,'Little Corn Island','Nicaragua','NI','Little Corn Island (Nicaragua)',1,1,0),(25440,0,125469,'Little Falls','United States of America','US','Little Falls (United States of America)',1,1,0),(25441,0,125470,'Little Falls','United States of America','US','Little Falls (United States of America)',1,1,0),(25442,0,125471,'Little River','United States of America','US','Little River (United States of America)',1,1,0),(25443,0,125472,'Little River','New Zealand','NZ','Little River (New Zealand)',1,1,0),(25444,0,125473,'Little York','Canada','CA','Little York (Canada)',1,1,0),(25445,15649,125474,'Littlefield','United States of America','US','Littlefield (United States of America)',1,1,0),(25446,0,125475,'Littleton','United States of America','US','Littleton (United States of America)',1,1,0),(25447,15654,125476,'Livadia','Greece','GR','Livadia (Greece)',1,1,0),(25448,15657,125477,'Livermore','United States of America','US','Livermore (United States of America)',1,1,0),(25449,0,125478,'Liverpool','United Kingdom','UK','Liverpool (United Kingdom)',1,1,0),(25450,15658,125479,'Liverpool','United States of America','US','Liverpool (United States of America)',1,1,0),(25451,0,125480,'Livingston','United States of America','US','Livingston (United States of America)',1,1,0),(25452,15669,125481,'Livingstone','Zambia','ZM','Livingstone (Zambia)',1,1,0),(25453,0,125482,'Ljordalen','Norway','NO','Ljordalen (Norway)',1,1,0),(25454,0,125483,'Llanboidy','United Kingdom','UK','Llanboidy (United Kingdom)',1,1,0),(25455,0,125484,'Llandrindod Wells','United Kingdom','UK','Llandrindod Wells (United Kingdom)',1,1,0),(25456,0,125486,'Laubach','Germany','DE','Laubach (Germany)',1,1,0),(25457,15093,125487,'Lauda-Konigshofen','Germany','DE','Lauda-Konigshofen (Germany)',1,1,0),(25458,15099,125488,'Lauenen','Switzerland','CH','Lauenen (Switzerland)',1,1,0),(25459,15107,125489,'Laukaa','Finland','FI','Laukaa (Finland)',1,1,0),(25460,31634,125490,'Lausanne','Switzerland','CH','Lausanne (Switzerland)',1,1,0),(25461,0,125491,'Lavergne','France','FR','Lavergne (France)',1,1,0),(25462,0,125492,'Lavilledieu','France','FR','Lavilledieu (France)',1,1,0),(25463,0,125493,'Lawrence','United States of America','US','Lawrence (United States of America)',1,1,0),(25464,15155,125494,'Laxou','France','FR','Laxou (France)',1,1,0),(25465,0,125495,'Lazne Belohrad','Czech Republic','CZ','Lazne Belohrad (Czech Republic)',1,1,0),(25466,0,125496,'Le Barp','France','FR','Le Barp (France)',1,1,0),(25467,31637,125497,'Le Beage','France','FR','Le Beage (France)',1,1,0),(25468,0,125498,'Le Boupere','France','FR','Le Boupere (France)',1,1,0),(25469,31652,125499,'Le Buisson-de-Cadouin','France','FR','Le Buisson-de-Cadouin (France)',1,1,0),(25470,0,125500,'Le Busseau','France','FR','Le Busseau (France)',1,1,0),(25471,15163,125501,'Le Carbet','Martinique','MQ','Le Carbet (Martinique)',1,1,0),(25472,0,125502,'Le Castella','Italy','IT','Le Castella (Italy)',1,1,0),(25473,31655,125503,'Le Castellet','France','FR','Le Castellet (France)',1,1,0),(25474,0,125504,'Le Grau Du Roi','France','FR','Le Grau Du Roi (France)',1,1,0),(25475,0,125505,'Le Grau-d\'Agde','France','FR','Le Grau-d\'Agde (France)',1,1,0),(25476,0,125506,'Le Kremlin-Bicetre','France','FR','Le Kremlin-Bicetre (France)',1,1,0),(25477,31687,125507,'Le Lude','France','FR','Le Lude (France)',1,1,0),(25478,31691,125508,'Le Mars','United States of America','US','Le Mars (United States of America)',1,1,0),(25479,0,125509,'Le Menil','France','FR','Le Menil (France)',1,1,0),(25480,31699,125510,'Le Palais','France','FR','Le Palais (France)',1,1,0),(25481,0,125511,'Le Paquier','Switzerland','CH','Le Paquier (Switzerland)',1,1,0),(25482,0,125512,'Le Pechereau','France','FR','Le Pechereau (France)',1,1,0),(25483,31711,125513,'Le Pouzin','France','FR','Le Pouzin (France)',1,1,0),(25484,0,125514,'Le Prese','Switzerland','CH','Le Prese (Switzerland)',1,1,0),(25485,31718,125515,'Le Rouret','France','FR','Le Rouret (France)',1,1,0),(25486,31724,125516,'Le Sentier','Switzerland','CH','Le Sentier (Switzerland)',1,1,0),(25487,31726,125517,'Le Sueur','United States of America','US','Le Sueur (United States of America)',1,1,0),(25488,31728,125518,'Le Teich','France','FR','Le Teich (France)',1,1,0),(25489,31731,125519,'Le Thor','France','FR','Le Thor (France)',1,1,0),(25490,31735,125520,'Le Treport','France','FR','Le Treport (France)',1,1,0),(25491,31738,125521,'Le Val-Saint-Pere','France','FR','Le Val-Saint-Pere (France)',1,1,0),(25492,0,125522,'Leatherhead','United Kingdom','UK','Leatherhead (United Kingdom)',1,1,0),(25493,15177,125523,'Leawood','United States of America','US','Leawood (United States of America)',1,1,0),(25494,0,125524,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(25495,15181,125525,'Lebec','United States of America','US','Lebec (United States of America)',1,1,0),(25496,0,125526,'Lecci de Porto-Vecchio','France','FR','Lecci de Porto-Vecchio (France)',1,1,0),(25497,0,125527,'Leck','Germany','DE','Leck (Germany)',1,1,0),(25498,15204,125528,'Leenane','Ireland','IE','Leenane (Ireland)',1,1,0),(25499,15218,125529,'Lefkos','Greece','GR','Lefkos (Greece)',1,1,0),(25500,15219,125530,'Leganes','Spain','ES','Leganes (Spain)',1,1,0),(25501,15220,125531,'Legaspi','Philippines','PH','Legaspi (Philippines)',1,1,0),(25502,15231,125532,'Lehigh Acres','United States of America','US','Lehigh Acres (United States of America)',1,1,0),(25503,15232,125533,'Lehighton','United States of America','US','Lehighton (United States of America)',1,1,0),(25504,0,125534,'Leiben','Austria','AT','Leiben (Austria)',1,1,0),(25505,15253,125535,'Leiria','Portugal','PT','Leiria (Portugal)',1,1,0),(25506,0,125536,'Leisnig','Germany','DE','Leisnig (Germany)',1,1,0),(25507,15257,125537,'Leitchfield','United States of America','US','Leitchfield (United States of America)',1,1,0),(25508,0,125538,'Lempdes sur allagnon','France','FR','Lempdes sur allagnon (France)',1,1,0),(25509,15277,125539,'Lemvig','Denmark','DK','Lemvig (Denmark)',1,1,0),(25510,15278,125540,'Lencois','Brazil','BR','Lencois (Brazil)',1,1,0),(25511,15281,125541,'Lengenfeld','Germany','DE','Lengenfeld (Germany)',1,1,0),(25512,15295,125542,'Lenoir','United States of America','US','Lenoir (United States of America)',1,1,0),(25513,0,125543,'Lens VS','Switzerland','CH','Lens VS (Switzerland)',1,1,0),(25514,0,125544,'Lephalale','South Africa','ZA','Lephalale (South Africa)',1,1,0),(25515,15318,125545,'Leppavirta','Finland','FI','Leppavirta (Finland)',1,1,0),(25516,0,125546,'Les Charbonnieres','Switzerland','CH','Les Charbonnieres (Switzerland)',1,1,0),(25517,0,125547,'Les Collons','Switzerland','CH','Les Collons (Switzerland)',1,1,0),(25518,31777,125548,'Les Deux Alpes','France','FR','Les Deux Alpes (France)',1,1,0),(25519,31779,125549,'Les Epesses','France','FR','Les Epesses (France)',1,1,0),(25520,31783,125550,'Les Eyzies-de-Tayac-Sireuil','France','FR','Les Eyzies-de-Tayac-Sireuil (France)',1,1,0),(25521,0,125551,'Les Forges (Deux-Sevres)','France','FR','Les Forges (Deux-Sevres) (France)',1,1,0),(25522,31788,125552,'Les Houches','France','FR','Les Houches (France)',1,1,0),(25523,31791,125553,'Les Mathes','France','FR','Les Mathes (France)',1,1,0),(25524,0,125554,'Lesbos','Greece','GR','Lesbos (Greece)',1,1,0),(25525,15348,125555,'Lesquin','France','FR','Lesquin (France)',1,1,0),(25526,15355,125556,'Leszno','Poland','PL','Leszno (Poland)',1,1,0),(25527,15359,125557,'Lethbridge','Canada','CA','Lethbridge (Canada)',1,1,0),(25528,15362,125558,'Letsitele','South Africa','ZA','Letsitele (South Africa)',1,1,0),(25529,15363,125559,'Lettere','Italy','IT','Lettere (Italy)',1,1,0),(25530,0,125560,'Leuk','Switzerland','CH','Leuk (Switzerland)',1,1,0),(25531,15374,125561,'Leutasch','Austria','AT','Leutasch (Austria)',1,1,0),(25532,0,125562,'Leven','United Kingdom','UK','Leven (United Kingdom)',1,1,0),(25533,15388,125563,'Levernois','France','FR','Levernois (France)',1,1,0),(25534,0,125564,'Lewisburg','United States of America','US','Lewisburg (United States of America)',1,1,0),(25535,0,125565,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(25536,15438,125566,'Libourne','France','FR','Libourne (France)',1,1,0),(25537,0,125567,'Lic','Croatia','HR','Lic (Croatia)',1,1,0),(25538,15444,125568,'Lichtenau','Germany','DE','Lichtenau (Germany)',1,1,0),(25539,0,125569,'Liddes','Switzerland','CH','Liddes (Switzerland)',1,1,0),(25540,0,125570,'Lido degli Scacchi','Italy','IT','Lido degli Scacchi (Italy)',1,1,0),(25541,31815,125571,'Lido di Jesolo','Italy','IT','Lido di Jesolo (Italy)',1,1,0),(25542,0,125572,'Lido di Savio','Italy','IT','Lido di Savio (Italy)',1,1,0),(25543,0,125573,'Liegnitz','Poland','PL','Liegnitz (Poland)',1,1,0),(25544,15463,125574,'Lieksa','Finland','FI','Lieksa (Finland)',1,1,0),(25545,0,125575,'Liepvre','France','FR','Liepvre (France)',1,1,0),(25546,0,125576,'Lierna','Italy','IT','Lierna (Italy)',1,1,0),(25547,0,125577,'Liesberg','Switzerland','CH','Liesberg (Switzerland)',1,1,0),(25548,15473,125578,'Liestal','Switzerland','CH','Liestal (Switzerland)',1,1,0),(25549,0,125579,'Lignan','France','FR','Lignan (France)',1,1,0),(25550,31820,125580,'Lignano Sabbiadoro','Italy','IT','Lignano Sabbiadoro (Italy)',1,1,0),(25551,0,125581,'Lignieres (Cher)','France','FR','Lignieres (Cher) (France)',1,1,0),(25552,15489,125582,'Liguge','France','FR','Liguge (France)',1,1,0),(25553,0,125583,'Limbazi','Latvia','LV','Limbazi (Latvia)',1,1,0),(25554,15514,125584,'Limbe','Cameroon','CM','Limbe (Cameroon)',1,1,0),(25555,15524,125585,'Limerick','Ireland','IE','Limerick (Ireland)',1,1,0),(25556,0,125586,'Limite sull\' Arno','Italy','IT','Limite sull\' Arno (Italy)',1,1,0),(25557,0,125587,'Linari','Italy','IT','Linari (Italy)',1,1,0),(25558,0,125588,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(25559,0,125589,'Linda-a-Velha','Portugal','PT','Linda-a-Velha (Portugal)',1,1,0),(25560,0,125590,'Linden','United States of America','US','Linden (United States of America)',1,1,0),(25561,0,125591,'Lindewitt','Germany','DE','Lindewitt (Germany)',1,1,0),(25562,0,125592,'Lindisfarne (Insel)','United Kingdom','UK','Lindisfarne (Insel) (United Kingdom)',1,1,0),(25563,0,125593,'Lindow (Mark)','Germany','DE','Lindow (Mark) (Germany)',1,1,0),(25564,0,125594,'Lindwedel','Germany','DE','Lindwedel (Germany)',1,1,0),(25565,0,125595,'Lloydminster (Alberta)','Canada','CA','Lloydminster (Alberta) (Canada)',1,1,0),(25566,0,125596,'Lochen','Austria','AT','Lochen (Austria)',1,1,0),(25567,0,125597,'Lockenhaus','Austria','AT','Lockenhaus (Austria)',1,1,0),(25568,0,125598,'Lockerbie','United Kingdom','UK','Lockerbie (United Kingdom)',1,1,0),(25569,15766,125599,'Loderup','Sweden','SE','Loderup (Sweden)',1,1,0),(25570,0,125600,'Log pod Mangartom','Slovenia','SI','Log pod Mangartom (Slovenia)',1,1,0),(25571,0,125601,'Logonna - Daoulas','France','FR','Logonna - Daoulas (France)',1,1,0),(25572,15787,125602,'Lohberg','Germany','DE','Lohberg (Germany)',1,1,0),(25573,0,125603,'Lohr am Main','Germany','DE','Lohr am Main (Germany)',1,1,0),(25574,0,125604,'Loich','Austria','AT','Loich (Austria)',1,1,0),(25575,0,125605,'Lojt Kirkeby','Denmark','DK','Lojt Kirkeby (Denmark)',1,1,0),(25576,0,125606,'Lollar','Germany','DE','Lollar (Germany)',1,1,0),(25577,0,125607,'L\'Olleria','Spain','ES','L\'Olleria (Spain)',1,1,0),(25578,15824,125608,'Lomianki','Poland','PL','Lomianki (Poland)',1,1,0),(25579,15831,125609,'Lonate Pozzolo','Italy','IT','Lonate Pozzolo (Italy)',1,1,0),(25580,0,125610,'Lone Wolf','United States of America','US','Lone Wolf (United States of America)',1,1,0),(25581,15844,125611,'Long Island','Antigua & Barbuda','AG','Long Island (Antigua & Barbuda)',1,1,0),(25582,0,125612,'Longeville sur Mer','France','FR','Longeville sur Mer (France)',1,1,0),(25583,15875,125613,'Longyearbyen','Norway','NO','Longyearbyen (Norway)',1,1,0),(25584,0,125614,'Loningen','Germany','DE','Loningen (Germany)',1,1,0),(25585,15886,125615,'Loosdrecht','Netherlands','NL','Loosdrecht (Netherlands)',1,1,0),(25586,0,125616,'Lorsch','Germany','DE','Lorsch (Germany)',1,1,0),(25587,0,125617,'Los Gavilanes','Spain','ES','Los Gavilanes (Spain)',1,1,0),(25588,0,125618,'Losne','France','FR','Losne (France)',1,1,0),(25589,0,125619,'Losone','Switzerland','CH','Losone (Switzerland)',1,1,0),(25590,0,125620,'Lo?nitz','Germany','DE','Lo?nitz (Germany)',1,1,0),(25591,0,125621,'Lost Hills','United States of America','US','Lost Hills (United States of America)',1,1,0),(25592,15925,125622,'Lotung','Taiwan','TW','Lotung (Taiwan)',1,1,0),(25593,15934,125623,'Loudon','United States of America','US','Loudon (United States of America)',1,1,0),(25594,0,125624,'Lough Erne','United Kingdom','UK','Lough Erne (United Kingdom)',1,1,0),(25595,0,125625,'Louisville','United States of America','US','Louisville (United States of America)',1,1,0),(25596,15951,125626,'Lourdata','Greece','GR','Lourdata (Greece)',1,1,0),(25597,15955,125627,'Lourmarin','France','FR','Lourmarin (France)',1,1,0),(25598,0,125628,'Loutra Edipsou','Greece','GR','Loutra Edipsou (Greece)',1,1,0),(25599,15965,125629,'Louviers','France','FR','Louviers (France)',1,1,0),(25600,15969,125630,'Lovedale','Australia','AU','Lovedale (Australia)',1,1,0),(25601,0,125631,'Lovere','Italy','IT','Lovere (Italy)',1,1,0),(25602,0,125632,'Lovina Beach','Indonesia','ID','Lovina Beach (Indonesia)',1,1,0),(25603,0,125633,'Lowell','United States of America','US','Lowell (United States of America)',1,1,0),(25604,0,125634,'Lower Slaughter','United Kingdom','UK','Lower Slaughter (United Kingdom)',1,1,0),(25605,0,125635,'Lozari','France','FR','Lozari (France)',1,1,0),(25606,0,125636,'Lubbecke','Germany','DE','Lubbecke (Germany)',1,1,0),(25607,16006,125637,'Lublin','Poland','PL','Lublin (Poland)',1,1,0),(25608,0,125638,'Lubomierz','Poland','PL','Lubomierz (Poland)',1,1,0),(25609,16008,125639,'Lubumbashi','Congo (Rep. Dem.)','CD','Lubumbashi (Congo (Rep. Dem.))',1,1,0),(25610,16021,125640,'Lucera','Italy','IT','Lucera (Italy)',1,1,0),(25611,0,125641,'Luga','Russia','RU','Luga (Russia)',1,1,0),(25612,0,125642,'Lugaignac en Gironde','France','FR','Lugaignac en Gironde (France)',1,1,0),(25613,16056,125643,'Lugo','Spain','ES','Lugo (Spain)',1,1,0),(25614,0,125644,'Luhansk','Ukraine','UA','Luhansk (Ukraine)',1,1,0),(25615,16062,125645,'Luhme','Germany','DE','Luhme (Germany)',1,1,0),(25616,0,125646,'Lujan de Cuyo','Argentina','AR','Lujan de Cuyo (Argentina)',1,1,0),(25617,16071,125647,'Lukta','Poland','PL','Lukta (Poland)',1,1,0),(25618,16077,125648,'Lumbarda','Croatia','HR','Lumbarda (Croatia)',1,1,0),(25619,16087,125649,'Lun','Croatia','HR','Lun (Croatia)',1,1,0),(25620,16098,125650,'Lunenburg','Canada','CA','Lunenburg (Canada)',1,1,0),(25621,16104,125652,'L\'Union','France','FR','L\'Union (France)',1,1,0),(25622,0,125653,'Lurcy-Levis','France','FR','Lurcy-Levis (France)',1,1,0),(25623,0,125654,'Lutter','France','FR','Lutter (France)',1,1,0),(25624,0,125655,'Lutzelbourg','France','FR','Lutzelbourg (France)',1,1,0),(25625,16142,125656,'Lutzmannsburg','Austria','AT','Lutzmannsburg (Austria)',1,1,0),(25626,16147,125657,'Lux','France','FR','Lux (France)',1,1,0),(25627,16153,125658,'Luxor','Egypt','EG','Luxor (Egypt)',1,1,0),(25628,16156,125659,'Luynes','France','FR','Luynes (France)',1,1,0),(25629,0,125660,'Luzk','Ukraine','UA','Luzk (Ukraine)',1,1,0),(25630,16191,125661,'Lynnwood','United States of America','US','Lynnwood (United States of America)',1,1,0),(25631,0,125662,'Lysekil','Sweden','SE','Lysekil (Sweden)',1,1,0),(25632,0,125663,'Lyss','Switzerland','CH','Lyss (Switzerland)',1,1,0),(25633,0,125664,'Ma Constance','Seychelles','SC','Ma Constance (Seychelles)',1,1,0),(25634,16220,125665,'Mabank','United States of America','US','Mabank (United States of America)',1,1,0),(25635,16224,125666,'Mableton','United States of America','US','Mableton (United States of America)',1,1,0),(25636,16234,125667,'Maccagno','Italy','IT','Maccagno (Italy)',1,1,0),(25637,16236,125668,'Macclenny','United States of America','US','Macclenny (United States of America)',1,1,0),(25638,16242,125669,'Maceio','Brazil','BR','Maceio (Brazil)',1,1,0),(25639,0,125670,'Machadodorp','South Africa','ZA','Machadodorp (South Africa)',1,1,0),(25640,0,125671,'Machecoul','France','FR','Machecoul (France)',1,1,0),(25641,0,125672,'Macleay Island','Australia','AU','Macleay Island (Australia)',1,1,0),(25642,16264,125673,'Macon','United States of America','US','Macon (United States of America)',1,1,0),(25643,16275,125674,'Madang','Papua New Guinea','PG','Madang (Papua New Guinea)',1,1,0),(25644,0,125675,'Madeley','United Kingdom','UK','Madeley (United Kingdom)',1,1,0),(25645,16293,125676,'Madelia','United States of America','US','Madelia (United States of America)',1,1,0),(25646,0,125677,'Mae Rim','Thailand','TH','Mae Rim (Thailand)',1,1,0),(25647,16320,125678,'Maebashi','Japan','JP','Maebashi (Japan)',1,1,0),(25648,16330,125679,'Mafra','Portugal','PT','Mafra (Portugal)',1,1,0),(25649,16337,125680,'Magaluf','Spain','ES','Magaluf (Spain)',1,1,0),(25650,16348,125681,'Magescq','France','FR','Magescq (France)',1,1,0),(25651,16365,125682,'Magnolia','United States of America','US','Magnolia (United States of America)',1,1,0),(25652,0,125683,'Magomadas','Italy','IT','Magomadas (Italy)',1,1,0),(25653,16378,125685,'Mahajanga','Madagascar','MG','Mahajanga (Madagascar)',1,1,0),(25654,0,125686,'Mahale-Mountains-Nationalpark','Tanzania','TZ','Mahale-Mountains-Nationalpark (Tanzania)',1,1,0),(25655,0,125687,'Maidenhead','United Kingdom','UK','Maidenhead (United Kingdom)',1,1,0),(25656,0,125688,'Maillat','France','FR','Maillat (France)',1,1,0),(25657,31884,125689,'Main Beach','Australia','AU','Main Beach (Australia)',1,1,0),(25658,0,125690,'Mainburg','Germany','DE','Mainburg (Germany)',1,1,0),(25659,16417,125691,'Mainz-Kastel','Germany','DE','Mainz-Kastel (Germany)',1,1,0),(25660,0,125692,'Maiton Island','Thailand','TH','Maiton Island (Thailand)',1,1,0),(25661,16455,125693,'Makati','Philippines','PH','Makati (Philippines)',1,1,0),(25662,16458,125694,'Makena','United States of America','US','Makena (United States of America)',1,1,0),(25663,0,125695,'Makkum','Netherlands','NL','Makkum (Netherlands)',1,1,0),(25664,16468,125696,'Makriyialos','Greece','GR','Makriyialos (Greece)',1,1,0),(25665,0,125697,'Makunduchi','Tanzania','TZ','Makunduchi (Tanzania)',1,1,0),(25666,0,125698,'Mala Moravka','Czech Republic','CZ','Mala Moravka (Czech Republic)',1,1,0),(25667,0,125699,'Mala Upa','Czech Republic','CZ','Mala Upa (Czech Republic)',1,1,0),(25668,16487,125700,'Malalbergo','Italy','IT','Malalbergo (Italy)',1,1,0),(25669,16494,125701,'Malataverne','France','FR','Malataverne (France)',1,1,0),(25670,16495,125702,'Malatiny','Slovakia','SK','Malatiny (Slovakia)',1,1,0),(25671,16496,125703,'Malatya','Turkey','TR','Malatya (Turkey)',1,1,0),(25672,16510,125704,'Maleme','Greece','GR','Maleme (Greece)',1,1,0),(25673,0,125705,'Malemort-sur-Correze','France','FR','Malemort-sur-Correze (France)',1,1,0),(25674,16512,125706,'Maleny','Australia','AU','Maleny (Australia)',1,1,0),(25675,0,125707,'Malesherbes (Loiret)','France','FR','Malesherbes (Loiret) (France)',1,1,0),(25676,31353,125708,'La Habra','United States of America','US','La Habra (United States of America)',1,1,0),(25677,31358,125709,'La Herradura','El Salvador','SV','La Herradura (El Salvador)',1,1,0),(25678,31361,125710,'La Iglesuela del Cid','Spain','ES','La Iglesuela del Cid (Spain)',1,1,0),(25679,31366,125711,'La Joya','United States of America','US','La Joya (United States of America)',1,1,0),(25680,31378,125712,'La Louviere','Belgium','BE','La Louviere (Belgium)',1,1,0),(25681,0,125713,'La Matanza','Spain','ES','La Matanza (Spain)',1,1,0),(25682,31405,125714,'La Mure-Argens','France','FR','La Mure-Argens (France)',1,1,0),(25683,0,125715,'La Petite-Verriere','France','FR','La Petite-Verriere (France)',1,1,0),(25684,0,125716,'La Puebla de Roda','Spain','ES','La Puebla de Roda (Spain)',1,1,0),(25685,0,125717,'La Real Labranza Villasevil','Spain','ES','La Real Labranza Villasevil (Spain)',1,1,0),(25686,31447,125718,'La Richardais','France','FR','La Richardais (France)',1,1,0),(25687,31448,125719,'La Rinconada','Spain','ES','La Rinconada (Spain)',1,1,0),(25688,31459,125720,'La Roche-Bernard','France','FR','La Roche-Bernard (France)',1,1,0),(25689,31464,125721,'La Roche-sur-Foron','France','FR','La Roche-sur-Foron (France)',1,1,0),(25690,0,125722,'La Roquette-sur-Var','France','FR','La Roquette-sur-Var (France)',1,1,0),(25691,0,125723,'La Rotta','Italy','IT','La Rotta (Italy)',1,1,0),(25692,31482,125724,'La Senia','Spain','ES','La Senia (Spain)',1,1,0),(25693,0,125725,'La Tour d\'Aigues','France','FR','La Tour d\'Aigues (France)',1,1,0),(25694,0,125726,'La Tour-d\'Auvergne','France','FR','La Tour-d\'Auvergne (France)',1,1,0),(25695,31512,125727,'La Vale','United States of America','US','La Vale (United States of America)',1,1,0),(25696,0,125728,'La Virgen','Costa Rica','CR','La Virgen (Costa Rica)',1,1,0),(25697,0,125729,'Labastide-d’Armagnac','France','FR','Labastide-d’Armagnac (France)',1,1,0),(25698,0,125730,'L\'Abbaye','Switzerland','CH','L\'Abbaye (Switzerland)',1,1,0),(25699,14698,125731,'Labege','France','FR','Labege (France)',1,1,0),(25700,14704,125732,'Labrador City','Canada','CA','Labrador City (Canada)',1,1,0),(25701,14707,125733,'Labuan Bajo','Indonesia','ID','Labuan Bajo (Indonesia)',1,1,0),(25702,14711,125734,'Lacanau','France','FR','Lacanau (France)',1,1,0),(25703,14712,125735,'Lacanau-Ocean','France','FR','Lacanau-Ocean (France)',1,1,0),(25704,14715,125736,'Lacave','France','FR','Lacave (France)',1,1,0),(25705,0,125737,'Lack','Poland','PL','Lack (Poland)',1,1,0),(25706,0,125738,'Lackenhof','Austria','AT','Lackenhof (Austria)',1,1,0),(25707,0,125739,'Lac-Megantic','Canada','CA','Lac-Megantic (Canada)',1,1,0),(25708,0,125740,'Ladis','Austria','AT','Ladis (Austria)',1,1,0),(25709,14741,125741,'Ladson','United States of America','US','Ladson (United States of America)',1,1,0),(25710,14751,125742,'Laerdal','Norway','NO','Laerdal (Norway)',1,1,0),(25711,0,125743,'Lafayette','United States of America','US','Lafayette (United States of America)',1,1,0),(25712,0,125744,'Lafayette Hill','United States of America','US','Lafayette Hill (United States of America)',1,1,0),(25713,14753,125745,'Lafitte','United States of America','US','Lafitte (United States of America)',1,1,0),(25714,14767,125746,'Lagoa','Portugal','PT','Lagoa (Portugal)',1,1,0),(25715,0,125747,'Lagorce','France','FR','Lagorce (France)',1,1,0),(25716,14773,125748,'Lagos De Moreno','Mexico','MX','Lagos De Moreno (Mexico)',1,1,0),(25717,0,125749,'L\'Agulhas','South Africa','ZA','L\'Agulhas (South Africa)',1,1,0),(25718,0,125750,'Laingsburg','South Africa','ZA','Laingsburg (South Africa)',1,1,0),(25719,14806,125751,'Lajas','Puerto Rico','PR','Lajas (Puerto Rico)',1,1,0),(25720,0,125752,'Lajes do Pico','Portugal','PT','Lajes do Pico (Portugal)',1,1,0),(25721,31553,125753,'Lake Dallas','United States of America','US','Lake Dallas (United States of America)',1,1,0),(25722,31559,125754,'Lake Elsinore','United States of America','US','Lake Elsinore (United States of America)',1,1,0),(25723,0,125755,'Lake Naivasha','Kenya','KE','Lake Naivasha (Kenya)',1,1,0),(25724,0,125756,'Lake Nakuru','Kenya','KE','Lake Nakuru (Kenya)',1,1,0),(25725,0,125757,'Lake Natron','Tanzania','TZ','Lake Natron (Tanzania)',1,1,0),(25726,14826,125758,'Lakeport','United States of America','US','Lakeport (United States of America)',1,1,0),(25727,14828,125759,'Lakeside','United States of America','US','Lakeside (United States of America)',1,1,0),(25728,0,125760,'Lakka','Greece','GR','Lakka (Greece)',1,1,0),(25729,0,125761,'Lakones','Greece','GR','Lakones (Greece)',1,1,0),(25730,14839,125762,'Lakselv','Norway','NO','Lakselv (Norway)',1,1,0),(25731,0,125763,'Lamai Beach','Thailand','TH','Lamai Beach (Thailand)',1,1,0),(25732,0,125764,'Lamar','United States of America','US','Lamar (United States of America)',1,1,0),(25733,0,125765,'Lamberg','Russia','RU','Lamberg (Russia)',1,1,0),(25734,0,125766,'Lambert Bay','British Virgin Islands','VG','Lambert Bay (British Virgin Islands)',1,1,0),(25735,0,125767,'Lampertswalde','Germany','DE','Lampertswalde (Germany)',1,1,0),(25736,0,125768,'Lancut','Poland','PL','Lancut (Poland)',1,1,0),(25737,14902,125769,'Lancy','Switzerland','CH','Lancy (Switzerland)',1,1,0),(25738,14913,125770,'Landover','United States of America','US','Landover (United States of America)',1,1,0),(25739,14919,125771,'Landstuhl','Germany','DE','Landstuhl (Germany)',1,1,0),(25740,0,125772,'Lang Son','Vietnam','VN','Lang Son (Vietnam)',1,1,0),(25741,0,125773,'Langemark-Poelkapelle','Belgium','BE','Langemark-Poelkapelle (Belgium)',1,1,0),(25742,0,125774,'Langenbach','Germany','DE','Langenbach (Germany)',1,1,0),(25743,0,125775,'Langenegg','Austria','AT','Langenegg (Austria)',1,1,0),(25744,0,125776,'Langenlois','Austria','AT','Langenlois (Austria)',1,1,0),(25745,14954,125777,'Langhorne','United States of America','US','Langhorne (United States of America)',1,1,0),(25746,0,125778,'Langport','United Kingdom','UK','Langport (United Kingdom)',1,1,0),(25747,0,125779,'Langre','Spain','ES','Langre (Spain)',1,1,0),(25748,0,125780,'Langsur','Germany','DE','Langsur (Germany)',1,1,0),(25749,0,125781,'Lanisce','Croatia','HR','Lanisce (Croatia)',1,1,0),(25750,14971,125782,'Lannion','France','FR','Lannion (France)',1,1,0),(25751,0,125783,'Lanouaille','France','FR','Lanouaille (France)',1,1,0),(25752,14973,125784,'Lansdale','United States of America','US','Lansdale (United States of America)',1,1,0),(25753,14992,125785,'Lanxi','China','CN','Lanxi (China)',1,1,0),(25754,15013,125786,'Laplume','France','FR','Laplume (France)',1,1,0),(25755,0,125787,'Largo','United States of America','US','Largo (United States of America)',1,1,0),(25756,31616,125788,'Las Caletillas','Spain','ES','Las Caletillas (Spain)',1,1,0),(25757,0,125789,'Las Cruces','Spain','ES','Las Cruces (Spain)',1,1,0),(25758,31624,125790,'Las Navas del Marques','Spain','ES','Las Navas del Marques (Spain)',1,1,0),(25759,0,125791,'Las Puntas de Frontera','Spain','ES','Las Puntas de Frontera (Spain)',1,1,0),(25760,0,125792,'Las Vegas','United States of America','US','Las Vegas (United States of America)',1,1,0),(25761,15054,125793,'Lasby','Denmark','DK','Lasby (Denmark)',1,1,0),(25762,15055,125794,'Lascabanes','France','FR','Lascabanes (France)',1,1,0),(25763,0,125795,'Lauco','Italy','IT','Lauco (Italy)',1,1,0),(25764,0,125796,'Lauf (Baden)','Germany','DE','Lauf (Baden) (Germany)',1,1,0),(25765,0,125797,'Laufeld','Germany','DE','Laufeld (Germany)',1,1,0),(25766,15100,125798,'Laugar','Iceland','IS','Laugar (Iceland)',1,1,0),(25767,15104,125799,'Laughlin','United States of America','US','Laughlin (United States of America)',1,1,0),(25768,15109,125800,'Launceston','Australia','AU','Launceston (Australia)',1,1,0),(25769,0,125801,'Launceston','United Kingdom','UK','Launceston (United Kingdom)',1,1,0),(25770,0,125802,'Lauragh','Ireland','IE','Lauragh (Ireland)',1,1,0),(25771,0,125803,'Laurenburg an der Lahn','Germany','DE','Laurenburg an der Lahn (Germany)',1,1,0),(25772,15118,125804,'Laurie','United States of America','US','Laurie (United States of America)',1,1,0),(25773,15127,125805,'Lautoka','Fiji Islands','FJ','Lautoka (Fiji Islands)',1,1,0),(25774,15136,125806,'Lavaur','France','FR','Lavaur (France)',1,1,0),(25775,0,125807,'Layan Beach','Thailand','TH','Layan Beach (Thailand)',1,1,0),(25776,15161,125808,'Lazise','Italy','IT','Lazise (Italy)',1,1,0),(25777,0,125809,'Lazy','Poland','PL','Lazy (Poland)',1,1,0),(25778,31636,125810,'Le Bar-sur-Loup','France','FR','Le Bar-sur-Loup (France)',1,1,0),(25779,31641,125811,'Le Blanc-Mesnil','France','FR','Le Blanc-Mesnil (France)',1,1,0),(25780,0,125812,'Le Cateau-Cambresis','France','FR','Le Cateau-Cambresis (France)',1,1,0),(25781,31665,125813,'Le Creusot','France','FR','Le Creusot (France)',1,1,0),(25782,0,125814,'Le Girmont val d\'Ajol','France','FR','Le Girmont val d\'Ajol (France)',1,1,0),(25783,0,125815,'Le Grand-Bourg','France','FR','Le Grand-Bourg (France)',1,1,0),(25784,31725,125816,'Le Subdray','France','FR','Le Subdray (France)',1,1,0),(25785,15333,125817,'Les Escaldes','Andorra','AD','Les Escaldes (Andorra)',1,1,0),(25786,31780,125818,'Les Escoumins','Canada','CA','Les Escoumins (Canada)',1,1,0),(25787,0,125819,'Les Hautes-Rivieres','France','FR','Les Hautes-Rivieres (France)',1,1,0),(25788,31792,125820,'Les Menuires','France','FR','Les Menuires (France)',1,1,0),(25789,0,125821,'Les Milles','France','FR','Les Milles (France)',1,1,0),(25790,0,125822,'Les Ollieres-sur-Eyrieux','France','FR','Les Ollieres-sur-Eyrieux (France)',1,1,0),(25791,31809,125823,'Les Tourrettes','France','FR','Les Tourrettes (France)',1,1,0),(25792,31810,125824,'Les Ulis','France','FR','Les Ulis (France)',1,1,0),(25793,31811,125825,'Les Vans','France','FR','Les Vans (France)',1,1,0),(25794,15335,125826,'Lesaka','Spain','ES','Lesaka (Spain)',1,1,0),(25795,15339,125827,'Lesigny','France','FR','Lesigny (France)',1,1,0),(25796,0,125828,'Lesneven','France','FR','Lesneven (France)',1,1,0),(25797,0,125829,'Letchworth','United Kingdom','UK','Letchworth (United Kingdom)',1,1,0),(25798,0,125830,'Leura','Australia','AU','Leura (Australia)',1,1,0),(25799,15389,125831,'Levi','Finland','FI','Levi (Finland)',1,1,0),(25800,15393,125832,'Levittown','United States of America','US','Levittown (United States of America)',1,1,0),(25801,15411,125833,'Leysin','Switzerland','CH','Leysin (Switzerland)',1,1,0),(25802,0,125834,'Lhoksuemawe','Indonesia','ID','Lhoksuemawe (Indonesia)',1,1,0),(25803,15428,125835,'Liaocheng','China','CN','Liaocheng (China)',1,1,0),(25804,15440,125836,'Libreville','Gabon','GA','Libreville (Gabon)',1,1,0),(25805,0,125837,'Licata','Italy','IT','Licata (Italy)',1,1,0),(25806,0,125838,'Lido Altanea','Italy','IT','Lido Altanea (Italy)',1,1,0),(25807,0,125839,'Lidzbark Warminski','Poland','PL','Lidzbark Warminski (Poland)',1,1,0),(25808,0,125840,'Liebenau','Austria','AT','Liebenau (Austria)',1,1,0),(25809,15459,125841,'Liebenwalde','Germany','DE','Liebenwalde (Germany)',1,1,0),(25810,15465,125842,'Liendo','Spain','ES','Liendo (Spain)',1,1,0),(25811,0,125843,'Liepen','Germany','DE','Liepen (Germany)',1,1,0),(25812,15469,125844,'Lier','Belgium','BE','Lier (Belgium)',1,1,0),(25813,0,125845,'Lierneux','Belgium','BE','Lierneux (Belgium)',1,1,0),(25814,0,125846,'Liesing Im Lesachtal','Austria','AT','Liesing Im Lesachtal (Austria)',1,1,0),(25815,0,125847,'Lietzow','Germany','DE','Lietzow (Germany)',1,1,0),(25816,0,125848,'Ligny-le-Chatel','France','FR','Ligny-le-Chatel (France)',1,1,0),(25817,15491,125849,'Lijiang','China','CN','Lijiang (China)',1,1,0),(25818,0,125850,'L\'Ile-d\'Olonne','France','FR','L\'Ile-d\'Olonne (France)',1,1,0),(25819,0,125851,'Lilikas','Greece','GR','Lilikas (Greece)',1,1,0),(25820,15501,125852,'Lillafured','Hungary','HU','Lillafured (Hungary)',1,1,0),(25821,15508,125853,'Lilongwe','Malawi','MW','Lilongwe (Malawi)',1,1,0),(25822,15510,125854,'Limassol','Cyprus','CY','Limassol (Cyprus)',1,1,0),(25823,0,125855,'Limeuil','France','FR','Limeuil (France)',1,1,0),(25824,15531,125856,'Limon','Costa Rica','CR','Limon (Costa Rica)',1,1,0),(25825,15533,125857,'Limone Piemonte','Italy','IT','Limone Piemonte (Italy)',1,1,0),(25826,15543,125858,'Linas','France','FR','Linas (France)',1,1,0),(25827,0,125859,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(25828,15561,125860,'Linden','United States of America','US','Linden (United States of America)',1,1,0),(25829,0,125861,'Lingfield','United Kingdom','UK','Lingfield (United Kingdom)',1,1,0),(25830,0,125862,'Lintig','Germany','DE','Lintig (Germany)',1,1,0),(25831,15593,125863,'Linz','Austria','AT','Linz (Austria)',1,1,0),(25832,0,125864,'Linzhou','China','CN','Linzhou (China)',1,1,0),(25833,15599,125865,'Lipari','Italy','IT','Lipari (Italy)',1,1,0),(25834,0,125866,'Lipowa','Poland','PL','Lipowa (Poland)',1,1,0),(25835,15624,125867,'L\'Isle-d\'Abeau','France','FR','L\'Isle-d\'Abeau (France)',1,1,0),(25836,15627,125868,'Lismore','Australia','AU','Lismore (Australia)',1,1,0),(25837,0,125869,'Lisogne','Belgium','BE','Lisogne (Belgium)',1,1,0),(25838,15630,125870,'Lisse','Netherlands','NL','Lisse (Netherlands)',1,1,0),(25839,0,125871,'Listaros','Greece','GR','Listaros (Greece)',1,1,0),(25840,15636,125872,'Litchfield','United States of America','US','Litchfield (United States of America)',1,1,0),(25841,0,125873,'Litchfield','United States of America','US','Litchfield (United States of America)',1,1,0),(25842,0,125874,'Lithakia','Greece','GR','Lithakia (Greece)',1,1,0),(25843,15640,125875,'Lithonia','United States of America','US','Lithonia (United States of America)',1,1,0),(25844,0,125876,'Litschau','Austria','AT','Litschau (Austria)',1,1,0),(25845,0,125877,'Little Torch Key','United States of America','US','Little Torch Key (United States of America)',1,1,0),(25846,0,125878,'Litzendorf','Germany','DE','Litzendorf (Germany)',1,1,0),(25847,15684,125879,'Ljungbyhed','Sweden','SE','Ljungbyhed (Sweden)',1,1,0),(25848,0,125880,'Llanarmon Dyffryn Ceiriog','United Kingdom','UK','Llanarmon Dyffryn Ceiriog (United Kingdom)',1,1,0),(25849,0,125881,'Llandybie','United Kingdom','UK','Llandybie (United Kingdom)',1,1,0),(25850,15704,125882,'Llanera','Spain','ES','Llanera (Spain)',1,1,0),(25851,15740,125883,'Loano','Italy','IT','Loano (Italy)',1,1,0),(25852,0,125884,'Lobau','Germany','DE','Lobau (Germany)',1,1,0),(25853,0,125885,'Lochau am Bodensee','Austria','AT','Lochau am Bodensee (Austria)',1,1,0),(25854,0,125886,'Lochinver','United Kingdom','UK','Lochinver (United Kingdom)',1,1,0),(25855,0,125887,'Lochow','Poland','PL','Lochow (Poland)',1,1,0),(25856,0,125888,'Locmaria-Plouzane','France','FR','Locmaria-Plouzane (France)',1,1,0),(25857,15759,125889,'Locorotondo','Italy','IT','Locorotondo (Italy)',1,1,0),(25858,0,125890,'Locunel - Lanester','France','FR','Locunel - Lanester (France)',1,1,0),(25859,15782,125891,'Logansport','United States of America','US','Logansport (United States of America)',1,1,0),(25860,15793,125892,'Loiano','Italy','IT','Loiano (Italy)',1,1,0),(25861,0,125893,'Lolworth','United Kingdom','UK','Lolworth (United Kingdom)',1,1,0),(25862,15815,125894,'Lomazzo','Italy','IT','Lomazzo (Italy)',1,1,0),(25863,0,125895,'Lomener','France','FR','Lomener (France)',1,1,0),(25864,0,125896,'Lompoul','Senegal','SN','Lompoul (Senegal)',1,1,0),(25865,0,125897,'Lonato del Garda','Italy','IT','Lonato del Garda (Italy)',1,1,0),(25866,0,125898,'Long Sutton','United Kingdom','UK','Long Sutton (United Kingdom)',1,1,0),(25867,15846,125899,'Longa','Italy','IT','Longa (Italy)',1,1,0),(25868,0,125900,'Longford','Ireland','IE','Longford (Ireland)',1,1,0),(25869,15862,125901,'Longmont','United States of America','US','Longmont (United States of America)',1,1,0),(25870,0,125902,'Lopud Island','Croatia','HR','Lopud Island (Croatia)',1,1,0),(25871,0,125903,'Lords Cove','Canada','CA','Lords Cove (Canada)',1,1,0),(25872,15898,125904,'Loreto','Mexico','MX','Loreto (Mexico)',1,1,0),(25873,0,125905,'Lorris','France','FR','Lorris (France)',1,1,0),(25874,15916,125906,'Lorton','United States of America','US','Lorton (United States of America)',1,1,0),(25875,31836,125907,'Los Alamos','United States of America','US','Los Alamos (United States of America)',1,1,0),(25876,31839,125908,'Los Angeles','United States of America','US','Los Angeles (United States of America)',1,1,0),(25877,31841,125909,'Los Arcos','Spain','ES','Los Arcos (Spain)',1,1,0),(25878,0,125910,'Los Arenales del Sol','Spain','ES','Los Arenales del Sol (Spain)',1,1,0),(25879,31856,125911,'Los Gatos','United States of America','US','Los Gatos (United States of America)',1,1,0),(25880,31864,125912,'Los Palacios y Villafranca','Spain','ES','Los Palacios y Villafranca (Spain)',1,1,0),(25881,31866,125913,'Los Realejos','Spain','ES','Los Realejos (Spain)',1,1,0),(25882,15918,125914,'Los Roques','Venezuela','VE','Los Roques (Venezuela)',1,1,0),(25883,0,125915,'Losenitz','Germany','DE','Losenitz (Germany)',1,1,0),(25884,0,125916,'Lost Pines','United States of America','US','Lost Pines (United States of America)',1,1,0),(25885,15930,125917,'Loubressac','France','FR','Loubressac (France)',1,1,0),(25886,15950,125918,'Loule','Portugal','PT','Loule (Portugal)',1,1,0),(25887,15960,125919,'Loutra Killinis','Greece','GR','Loutra Killinis (Greece)',1,1,0),(25888,15972,125920,'Lovelock','United States of America','US','Lovelock (United States of America)',1,1,0),(25889,15979,125921,'Loviste','Croatia','HR','Loviste (Croatia)',1,1,0),(25890,0,125922,'Lowestoft','United Kingdom','UK','Lowestoft (United Kingdom)',1,1,0),(25891,16002,125923,'Lubbenau','Germany','DE','Lubbenau (Germany)',1,1,0),(25892,16010,125924,'Lucan','Ireland','IE','Lucan (Ireland)',1,1,0),(25893,0,125925,'Lucena del Cid','Spain','ES','Lucena del Cid (Spain)',1,1,0),(25894,16020,125926,'Lucenec','Slovakia','SK','Lucenec (Slovakia)',1,1,0),(25895,16030,125927,'Luc-Sur-Mer','France','FR','Luc-Sur-Mer (France)',1,1,0),(25896,31709,125929,'Le Pouldu','France','FR','Le Pouldu (France)',1,1,0),(25897,31710,125930,'Le Pouliguen','France','FR','Le Pouliguen (France)',1,1,0),(25898,0,125931,'Le Tholonet','France','FR','Le Tholonet (France)',1,1,0),(25899,0,125932,'Le Valtin','France','FR','Le Valtin (France)',1,1,0),(25900,0,125933,'Le Vauclin','Martinique','MQ','Le Vauclin (Martinique)',1,1,0),(25901,31741,125934,'Le Veurdre','France','FR','Le Veurdre (France)',1,1,0),(25902,15165,125935,'Lead','United States of America','US','Lead (United States of America)',1,1,0),(25903,15166,125936,'Leadville','United States of America','US','Leadville (United States of America)',1,1,0),(25904,0,125937,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(25905,15186,125938,'Lecco','Italy','IT','Lecco (Italy)',1,1,0),(25906,15196,125939,'Ledenitzen','Austria','AT','Ledenitzen (Austria)',1,1,0),(25907,15197,125940,'Ledgewood','United States of America','US','Ledgewood (United States of America)',1,1,0),(25908,15199,125941,'Leduc','Canada','CA','Leduc (Canada)',1,1,0),(25909,0,125942,'Leechburg','United States of America','US','Leechburg (United States of America)',1,1,0),(25910,15205,125943,'Leende','Netherlands','NL','Leende (Netherlands)',1,1,0),(25911,15206,125944,'Leer','Germany','DE','Leer (Germany)',1,1,0),(25912,0,125945,'Leernes','Belgium','BE','Leernes (Belgium)',1,1,0),(25913,0,125946,'Leezen','Germany','DE','Leezen (Germany)',1,1,0),(25914,0,125947,'Lefaga','Samoa','WS','Lefaga (Samoa)',1,1,0),(25915,15213,125948,'Lefkada','Greece','GR','Lefkada (Greece)',1,1,0),(25916,15236,125949,'Leicester','United States of America','US','Leicester (United States of America)',1,1,0),(25917,0,125950,'Leigh','United Kingdom','UK','Leigh (United Kingdom)',1,1,0),(25918,15248,125951,'Leinfelden-Echterdingen','Germany','DE','Leinfelden-Echterdingen (Germany)',1,1,0),(25919,15258,125952,'Leitrim','Ireland','IE','Leitrim (Ireland)',1,1,0),(25920,15268,125953,'L\'Eliana','Spain','ES','L\'Eliana (Spain)',1,1,0),(25921,0,125954,'Lembang','Indonesia','ID','Lembang (Indonesia)',1,1,0),(25922,0,125955,'Lemberg','Germany','DE','Lemberg (Germany)',1,1,0),(25923,15273,125956,'Lemgo','Germany','DE','Lemgo (Germany)',1,1,0),(25924,31753,125957,'Lemon Grove','United States of America','US','Lemon Grove (United States of America)',1,1,0),(25925,0,125958,'Lempaala','Finland','FI','Lempaala (Finland)',1,1,0),(25926,0,125959,'Lengerich (Westfalen)','Germany','DE','Lengerich (Westfalen) (Germany)',1,1,0),(25927,15284,125960,'Lengnau','Switzerland','CH','Lengnau (Switzerland)',1,1,0),(25928,15288,125961,'Lenk','Switzerland','CH','Lenk (Switzerland)',1,1,0),(25929,0,125962,'Lenoir City','United States of America','US','Lenoir City (United States of America)',1,1,0),(25930,15296,125963,'Lenox','United States of America','US','Lenox (United States of America)',1,1,0),(25931,0,125964,'Lentiira','Finland','FI','Lentiira (Finland)',1,1,0),(25932,15305,125965,'Leominster','United States of America','US','Leominster (United States of America)',1,1,0),(25933,31756,125966,'Leon','Spain','ES','Leon (Spain)',1,1,0),(25934,0,125967,'Leonforte','Italy','IT','Leonforte (Italy)',1,1,0),(25935,0,125968,'Lepuix','France','FR','Lepuix (France)',1,1,0),(25936,15325,125969,'Lerida','Spain','ES','Lerida (Spain)',1,1,0),(25937,0,125970,'Lermos','Austria','AT','Lermos (Austria)',1,1,0),(25938,0,125971,'Les Adrets de lZEsterel','France','FR','Les Adrets de lZEsterel (France)',1,1,0),(25939,0,125972,'Les Carroz d\' Araches','France','FR','Les Carroz d\' Araches (France)',1,1,0),(25940,0,125973,'Les Chapelles-Bourbon','France','FR','Les Chapelles-Bourbon (France)',1,1,0),(25941,0,125974,'Les Ecrennes','France','FR','Les Ecrennes (France)',1,1,0),(25942,31787,125975,'Les Herbiers','France','FR','Les Herbiers (France)',1,1,0),(25943,0,125976,'Les Planes d\'Hostoles','Spain','ES','Les Planes d\'Hostoles (Spain)',1,1,0),(25944,31798,125977,'Les Ponts-de-Ce','France','FR','Les Ponts-de-Ce (France)',1,1,0),(25945,0,125978,'Les Riceys','France','FR','Les Riceys (France)',1,1,0),(25946,0,125979,'Les Trois-Epis','France','FR','Les Trois-Epis (France)',1,1,0),(25947,0,125980,'L\'Escarene','France','FR','L\'Escarene (France)',1,1,0),(25948,0,125981,'Lesce','Slovenia','SI','Lesce (Slovenia)',1,1,0),(25949,0,125982,'Lesina','Italy','IT','Lesina (Italy)',1,1,0),(25950,0,125983,'Lethe','Jamaica','JM','Lethe (Jamaica)',1,1,0),(25951,15360,125984,'Leticia','Colombia','CO','Leticia (Colombia)',1,1,0),(25952,15370,125985,'Leukerbad','Switzerland','CH','Leukerbad (Switzerland)',1,1,0),(25953,0,125986,'Leutenberg','Germany','DE','Leutenberg (Germany)',1,1,0),(25954,0,125987,'Leutershausen/Altmuhltal (Altmuhl Valley)','Germany','DE','Leutershausen/Altmuhltal (Altmuhl Valley) (Germany)',1,1,0),(25955,0,125988,'Levens','France','FR','Levens (France)',1,1,0),(25956,0,125989,'Lewisburg','United States of America','US','Lewisburg (United States of America)',1,1,0),(25957,0,125990,'Lewiston','United States of America','US','Lewiston (United States of America)',1,1,0),(25958,0,125991,'Lewiston','United States of America','US','Lewiston (United States of America)',1,1,0),(25959,0,125992,'Lewiston','United States of America','US','Lewiston (United States of America)',1,1,0),(25960,0,125993,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(25961,15434,125994,'Liberia','Costa Rica','CR','Liberia (Costa Rica)',1,1,0),(25962,0,125995,'Libohost','Czech Republic','CZ','Libohost (Czech Republic)',1,1,0),(25963,0,125996,'Lichte','Germany','DE','Lichte (Germany)',1,1,0),(25964,0,125997,'Lichtenberg','Austria','AT','Lichtenberg (Austria)',1,1,0),(25965,0,125998,'Lichuan','China','CN','Lichuan (China)',1,1,0),(25966,0,125999,'Lido di Dante','Italy','IT','Lido di Dante (Italy)',1,1,0),(25967,0,126000,'Lido Marini','Italy','IT','Lido Marini (Italy)',1,1,0),(25968,15466,126001,'Lienz','Austria','AT','Lienz (Austria)',1,1,0),(25969,15467,126002,'Liepaja','Latvia','LV','Liepaja (Latvia)',1,1,0),(25970,0,126003,'Lievelde','Netherlands','NL','Lievelde (Netherlands)',1,1,0),(25971,0,126004,'Lievin','France','FR','Lievin (France)',1,1,0),(25972,15480,126005,'Lifou','New Caledonia','NC','Lifou (New Caledonia)',1,1,0),(25973,0,126006,'Ligia','Greece','GR','Ligia (Greece)',1,1,0),(25974,0,126007,'Ligist','Austria','AT','Ligist (Austria)',1,1,0),(25975,0,126008,'Lignano Pineta','Italy','IT','Lignano Pineta (Italy)',1,1,0),(25976,0,126009,'Ligneuville','Belgium','BE','Ligneuville (Belgium)',1,1,0),(25977,0,126010,'Lily','Maldives','MV','Lily (Maldives)',1,1,0),(25978,0,126011,'Limbach-Oberfrohna','Germany','DE','Limbach-Oberfrohna (Germany)',1,1,0),(25979,0,126012,'Limberg','Germany','DE','Limberg (Germany)',1,1,0),(25980,15521,126013,'Limelette','Belgium','BE','Limelette (Belgium)',1,1,0),(25981,0,126014,'Limeni','Greece','GR','Limeni (Greece)',1,1,0),(25982,15525,126015,'Limerick','United States of America','US','Limerick (United States of America)',1,1,0),(25983,0,126016,'Limont','Belgium','BE','Limont (Belgium)',1,1,0),(25984,15540,126017,'Lin\'an','China','CN','Lin\'an (China)',1,1,0),(25985,0,126018,'Linas de Broto','Spain','ES','Linas de Broto (Spain)',1,1,0),(25986,15551,126019,'Lincolnville','United States of America','US','Lincolnville (United States of America)',1,1,0),(25987,0,126020,'Lind','Germany','DE','Lind (Germany)',1,1,0),(25988,15557,126021,'Lindas','Norway','NO','Lindas (Norway)',1,1,0),(25989,15569,126022,'Lindos','Greece','GR','Lindos (Greece)',1,1,0),(25990,0,126023,'Linge','France','FR','Linge (France)',1,1,0),(25991,0,126024,'Linhares','Portugal','PT','Linhares (Portugal)',1,1,0),(25992,15589,126025,'Lins','Brazil','BR','Lins (Brazil)',1,1,0),(25993,0,126026,'Linthe','Germany','DE','Linthe (Germany)',1,1,0),(25994,0,126027,'Linthicum Heights','United States of America','US','Linthicum Heights (United States of America)',1,1,0),(25995,15598,126028,'Lipa Noi','Thailand','TH','Lipa Noi (Thailand)',1,1,0),(25996,15606,126029,'Liptovska Sielnica','Slovakia','SK','Liptovska Sielnica (Slovakia)',1,1,0),(25997,0,126030,'Lisberg','Germany','DE','Lisberg (Germany)',1,1,0),(25998,0,126031,'Lisbon','United States of America','US','Lisbon (United States of America)',1,1,0),(25999,15619,126032,'Lisdoonvarna','Ireland','IE','Lisdoonvarna (Ireland)',1,1,0),(26000,0,126033,'Liskeard','United Kingdom','UK','Liskeard (United Kingdom)',1,1,0),(26001,0,126034,'L\'Isle-Adam','France','FR','L\'Isle-Adam (France)',1,1,0),(26002,15638,126035,'Lithgow','Australia','AU','Lithgow (Australia)',1,1,0),(26003,15639,126036,'Lithia Springs','United States of America','US','Lithia Springs (United States of America)',1,1,0),(26004,0,126037,'Little Current','Canada','CA','Little Current (Canada)',1,1,0),(26005,0,126038,'Little Hallingbury','United Kingdom','UK','Little Hallingbury (United Kingdom)',1,1,0),(26006,0,126039,'Little Rock','United States of America','US','Little Rock (United States of America)',1,1,0),(26007,0,126040,'Little Rockley Bay','Trinidad and Tobago','TT','Little Rockley Bay (Trinidad and Tobago)',1,1,0),(26008,31843,126041,'Los Banos','United States of America','US','Los Banos (United States of America)',1,1,0),(26009,31860,126042,'Los Marines','Spain','ES','Los Marines (Spain)',1,1,0),(26010,0,126043,'Los Montesinos','Spain','ES','Los Montesinos (Spain)',1,1,0),(26011,0,126044,'Lothiarika','Greece','GR','Lothiarika (Greece)',1,1,0),(26012,0,126045,'Loucen','Czech Republic','CZ','Loucen (Czech Republic)',1,1,0),(26013,0,126046,'Louis Trichardt','South Africa','ZA','Louis Trichardt (South Africa)',1,1,0),(26014,0,126047,'Loupian','France','FR','Loupian (France)',1,1,0),(26015,15952,126048,'Lourdes','France','FR','Lourdes (France)',1,1,0),(26016,0,126049,'Louvetot','France','FR','Louvetot (France)',1,1,0),(26017,15971,126050,'Lovell','United States of America','US','Lovell (United States of America)',1,1,0),(26018,0,126051,'Lowenberg in Schlesien','Poland','PL','Lowenberg in Schlesien (Poland)',1,1,0),(26019,0,126052,'Lowick','United Kingdom','UK','Lowick (United Kingdom)',1,1,0),(26020,0,126053,'Lowlands Beach','Trinidad and Tobago','TT','Lowlands Beach (Trinidad and Tobago)',1,1,0),(26021,0,126054,'Lozenets','Bulgaria','BG','Lozenets (Bulgaria)',1,1,0),(26022,0,126055,'Lu’an','China','CN','Lu’an (China)',1,1,0),(26023,0,126056,'Lubuk Linggau','Indonesia','ID','Lubuk Linggau (Indonesia)',1,1,0),(26024,0,126057,'Lubz','Germany','DE','Lubz (Germany)',1,1,0),(26025,0,126058,'Lucany nad Nisou','Czech Republic','CZ','Lucany nad Nisou (Czech Republic)',1,1,0),(26026,16015,126059,'Lucciana','France','FR','Lucciana (France)',1,1,0),(26027,0,126060,'Luchow','Germany','DE','Luchow (Germany)',1,1,0),(26028,0,126061,'Luckau','Germany','DE','Luckau (Germany)',1,1,0),(26029,0,126062,'Lucon','France','FR','Lucon (France)',1,1,0),(26030,0,126063,'Luding','China','CN','Luding (China)',1,1,0),(26031,0,126064,'Ludinghausen','Germany','DE','Ludinghausen (Germany)',1,1,0),(26032,16035,126065,'Ludlow','United States of America','US','Ludlow (United States of America)',1,1,0),(26033,0,126066,'Lugano','Switzerland','CH','Lugano (Switzerland)',1,1,0),(26034,0,126067,'Lugnorre','Switzerland','CH','Lugnorre (Switzerland)',1,1,0),(26035,0,126068,'Lugos','France','FR','Lugos (France)',1,1,0),(26036,0,126069,'Luisago','Italy','IT','Luisago (Italy)',1,1,0),(26037,0,126070,'Lukovo','Croatia','HR','Lukovo (Croatia)',1,1,0),(26038,16074,126071,'Luling','United States of America','US','Luling (United States of America)',1,1,0),(26039,16086,126072,'Lumut','Malaysia','MY','Lumut (Malaysia)',1,1,0),(26040,16096,126073,'Lunel','France','FR','Lunel (France)',1,1,0),(26041,16101,126074,'Lungern','Switzerland','CH','Lungern (Switzerland)',1,1,0),(26042,16114,126075,'Luoyang','China','CN','Luoyang (China)',1,1,0),(26043,16123,126076,'Lusignan','France','FR','Lusignan (France)',1,1,0),(26044,0,126077,'Lutherstadt Eisleben','Germany','DE','Lutherstadt Eisleben (Germany)',1,1,0),(26045,0,126078,'Lutjenburg','Germany','DE','Lutjenburg (Germany)',1,1,0),(26046,0,126079,'Lutterloh','Germany','DE','Lutterloh (Germany)',1,1,0),(26047,0,126080,'Lutzville','South Africa','ZA','Lutzville (South Africa)',1,1,0),(26048,0,126081,'Luyksgestel','Netherlands','NL','Luyksgestel (Netherlands)',1,1,0),(26049,16161,126082,'Luzhou','China','CN','Luzhou (China)',1,1,0),(26050,0,126083,'Luzy','France','FR','Luzy (France)',1,1,0),(26051,16166,126084,'Lvov','Ukraine','UA','Lvov (Ukraine)',1,1,0),(26052,16170,126085,'Lycksele','Sweden','SE','Lycksele (Sweden)',1,1,0),(26053,0,126086,'Lyndhurst','United Kingdom','UK','Lyndhurst (United Kingdom)',1,1,0),(26054,16185,126087,'Lyngdal','Norway','NO','Lyngdal (Norway)',1,1,0),(26055,16193,126088,'Lynwood','United States of America','US','Lynwood (United States of America)',1,1,0),(26056,0,126089,'Lyon','France','FR','Lyon (France)',1,1,0),(26057,16194,126090,'Lyons','United States of America','US','Lyons (United States of America)',1,1,0),(26058,16195,126091,'Lyons-la-Foret','France','FR','Lyons-la-Foret (France)',1,1,0),(26059,0,126092,'Lyskovo','Russia','RU','Lyskovo (Russia)',1,1,0),(26060,0,126093,'Maalot Tarshiha','Israel','IL','Maalot Tarshiha (Israel)',1,1,0),(26061,0,126094,'Mabou','Canada','CA','Mabou (Canada)',1,1,0),(26062,16228,126095,'Macae','Brazil','BR','Macae (Brazil)',1,1,0),(26063,0,126096,'Macau','China','CN','Macau (China)',1,1,0),(26064,0,126097,'Macher','Spain','ES','Macher (Spain)',1,1,0),(26065,16249,126098,'Machico','Portugal','PT','Machico (Portugal)',1,1,0),(26066,0,126099,'Macon','France','FR','Macon (France)',1,1,0),(26067,0,126100,'Macon','United States of America','US','Macon (United States of America)',1,1,0),(26068,0,126101,'Macreddin','Ireland','IE','Macreddin (Ireland)',1,1,0),(26069,16282,126102,'Madeira Park','Canada','CA','Madeira Park (Canada)',1,1,0),(26070,0,126103,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(26071,0,126104,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(26072,16306,126105,'Madiun','Indonesia','ID','Madiun (Indonesia)',1,1,0),(26073,16328,126106,'Mafia Island','Tanzania','TZ','Mafia Island (Tanzania)',1,1,0),(26074,16338,126107,'Magaz de Pisuerga','Spain','ES','Magaz de Pisuerga (Spain)',1,1,0),(26075,0,126108,'Maggia','Switzerland','CH','Maggia (Switzerland)',1,1,0),(26076,16349,126109,'Maggie Valley','United States of America','US','Maggie Valley (United States of America)',1,1,0),(26077,0,126110,'Maggio di Cremeno','Italy','IT','Maggio di Cremeno (Italy)',1,1,0),(26078,0,126111,'Magherafelt','United Kingdom','UK','Magherafelt (United Kingdom)',1,1,0),(26079,16355,126112,'Maglie','Italy','IT','Maglie (Italy)',1,1,0),(26080,0,126113,'Magnac-Bourg','France','FR','Magnac-Bourg (France)',1,1,0),(26081,16361,126114,'Magnetic Island','Australia','AU','Magnetic Island (Australia)',1,1,0),(26082,0,126115,'Magnitogorsk','Russia','RU','Magnitogorsk (Russia)',1,1,0),(26083,0,126116,'Magor','United Kingdom','UK','Magor (United Kingdom)',1,1,0),(26084,0,126118,'Mahahual','Mexico','MX','Mahahual (Mexico)',1,1,0),(26085,16395,126119,'Mahon','Spain','ES','Mahon (Spain)',1,1,0),(26086,0,126120,'Mahopac','United States of America','US','Mahopac (United States of America)',1,1,0),(26087,0,126121,'Mahora','Spain','ES','Mahora (Spain)',1,1,0),(26088,16398,126122,'Mahwah','United States of America','US','Mahwah (United States of America)',1,1,0),(26089,0,126123,'Mai Khao Beach','Thailand','TH','Mai Khao Beach (Thailand)',1,1,0),(26090,0,126124,'Maidstone','United Kingdom','UK','Maidstone (United Kingdom)',1,1,0),(26091,0,126125,'Maikop','Russia','RU','Maikop (Russia)',1,1,0),(26092,0,126126,'Mainhardt','Germany','DE','Mainhardt (Germany)',1,1,0),(26093,0,126127,'Mainleus','Germany','DE','Mainleus (Germany)',1,1,0),(26094,16416,126128,'Mainz','Germany','DE','Mainz (Germany)',1,1,0),(26095,0,126129,'Mairinque','Brazil','BR','Mairinque (Brazil)',1,1,0),(26096,0,126130,'Majdanpek','Serbia','RS','Majdanpek (Serbia)',1,1,0),(26097,0,126131,'Mal Abrigo','Uruguay','UY','Mal Abrigo (Uruguay)',1,1,0),(26098,0,126132,'Mal Pas','Spain','ES','Mal Pas (Spain)',1,1,0),(26099,16517,126133,'Malibu','United States of America','US','Malibu (United States of America)',1,1,0),(26100,16548,126134,'Malmedy','Belgium','BE','Malmedy (Belgium)',1,1,0),(26101,16555,126135,'Malone','United States of America','US','Malone (United States of America)',1,1,0),(26102,0,126136,'Malpica','Spain','ES','Malpica (Spain)',1,1,0),(26103,16571,126137,'Malvern','United States of America','US','Malvern (United States of America)',1,1,0),(26104,16575,126138,'Mamaia','Romania','RO','Mamaia (Romania)',1,1,0),(26105,16601,126140,'Manassas','United States of America','US','Manassas (United States of America)',1,1,0),(26106,16603,126141,'Manaus','Brazil','BR','Manaus (Brazil)',1,1,0),(26107,16604,126142,'Manavgat','Turkey','TR','Manavgat (Turkey)',1,1,0),(26108,0,126143,'Manawan','Canada','CA','Manawan (Canada)',1,1,0),(26109,0,126144,'Mancha Real','Spain','ES','Mancha Real (Spain)',1,1,0),(26110,0,126145,'Mandelieu','France','FR','Mandelieu (France)',1,1,0),(26111,0,126146,'Mandello del Lario','Italy','IT','Mandello del Lario (Italy)',1,1,0),(26112,0,126147,'Manderscheid','Germany','DE','Manderscheid (Germany)',1,1,0),(26113,16626,126148,'Mandraki','Greece','GR','Mandraki (Greece)',1,1,0),(26114,16629,126149,'Mandurah','Australia','AU','Mandurah (Australia)',1,1,0),(26115,16640,126150,'Mangareva','French Polynesia','PF','Mangareva (French Polynesia)',1,1,0),(26116,0,126151,'Manhattan Beach','United States of America','US','Manhattan Beach (United States of America)',1,1,0),(26117,16657,126152,'Manihi','French Polynesia','PF','Manihi (French Polynesia)',1,1,0),(26118,0,126153,'Maninjau','Indonesia','ID','Maninjau (Indonesia)',1,1,0),(26119,16666,126154,'Manistee','United States of America','US','Manistee (United States of America)',1,1,0),(26120,16673,126155,'Manizales','Colombia','CO','Manizales (Colombia)',1,1,0),(26121,0,126156,'Llanfyllin','United Kingdom','UK','Llanfyllin (United Kingdom)',1,1,0),(26122,0,126157,'Llangammarch Wells','United Kingdom','UK','Llangammarch Wells (United Kingdom)',1,1,0),(26123,0,126158,'Llanymynech','United Kingdom','UK','Llanymynech (United Kingdom)',1,1,0),(26124,31823,126159,'Llo','France','FR','Llo (France)',1,1,0),(26125,15731,126160,'Lloret de Mar','Spain','ES','Lloret de Mar (Spain)',1,1,0),(26126,0,126161,'Loarre','Spain','ES','Loarre (Spain)',1,1,0),(26127,0,126162,'Loborika','Croatia','HR','Loborika (Croatia)',1,1,0),(26128,0,126163,'Locherberg','Germany','DE','Locherberg (Germany)',1,1,0),(26129,0,126164,'Locronan','France','FR','Locronan (France)',1,1,0),(26130,15773,126165,'Loei','Thailand','TH','Loei (Thailand)',1,1,0),(26131,15776,126166,'Lofer','Austria','AT','Lofer (Austria)',1,1,0),(26132,0,126167,'Loffingen','Germany','DE','Loffingen (Germany)',1,1,0),(26133,0,126168,'Lofou','Cyprus','CY','Lofou (Cyprus)',1,1,0),(26134,15779,126169,'Lofthus','Norway','NO','Lofthus (Norway)',1,1,0),(26135,0,126170,'Logatec','Slovenia','SI','Logatec (Slovenia)',1,1,0),(26136,0,126171,'Loggos','Greece','GR','Loggos (Greece)',1,1,0),(26137,15790,126172,'Lohmen','Germany','DE','Lohmen (Germany)',1,1,0),(26138,0,126173,'Lohne (Oldenburg)','Germany','DE','Lohne (Oldenburg) (Germany)',1,1,0),(26139,0,126174,'Loipersdorf bei Furstenfeld','Austria','AT','Loipersdorf bei Furstenfeld (Austria)',1,1,0),(26140,15816,126175,'Lombard','United States of America','US','Lombard (United States of America)',1,1,0),(26141,15825,126176,'Lomira','United States of America','US','Lomira (United States of America)',1,1,0),(26142,15827,126177,'Lomme','France','FR','Lomme (France)',1,1,0),(26143,15830,126178,'Lomza','Poland','PL','Lomza (Poland)',1,1,0),(26144,15837,126179,'London','Canada','CA','London (Canada)',1,1,0),(26145,0,126180,'London','United States of America','US','London (United States of America)',1,1,0),(26146,15838,126181,'Londonderry','United States of America','US','Londonderry (United States of America)',1,1,0),(26147,0,126182,'Londonderry','United States of America','US','Londonderry (United States of America)',1,1,0),(26148,0,126183,'Lone Pine','United States of America','US','Lone Pine (United States of America)',1,1,0),(26149,15866,126184,'Longtan','Taiwan','TW','Longtan (Taiwan)',1,1,0),(26150,15888,126185,'Lopburi','Thailand','TH','Lopburi (Thailand)',1,1,0),(26151,0,126186,'Loray','France','FR','Loray (France)',1,1,0),(26152,0,126187,'Lorch (Rheingau)','Germany','DE','Lorch (Rheingau) (Germany)',1,1,0),(26153,0,126188,'Loredo','Spain','ES','Loredo (Spain)',1,1,0),(26154,31838,126189,'Los Altos','United States of America','US','Los Altos (United States of America)',1,1,0),(26155,31848,126190,'Los Cabos','Mexico','MX','Los Cabos (Mexico)',1,1,0),(26156,0,126191,'Los Cacaos','Dominican Republic','DO','Los Cacaos (Dominican Republic)',1,1,0),(26157,31849,126192,'Los Cancajos','Spain','ES','Los Cancajos (Spain)',1,1,0),(26158,31852,126193,'Los Cristianos','Spain','ES','Los Cristianos (Spain)',1,1,0),(26159,31859,126194,'Los Lunas','United States of America','US','Los Lunas (United States of America)',1,1,0),(26160,0,126195,'Los Mocanes','Spain','ES','Los Mocanes (Spain)',1,1,0),(26161,31865,126196,'Los Palmitos','Spain','ES','Los Palmitos (Spain)',1,1,0),(26162,0,126197,'Los Valles','Spain','ES','Los Valles (Spain)',1,1,0),(26163,0,126198,'Los Villares de Soria','Spain','ES','Los Villares de Soria (Spain)',1,1,0),(26164,0,126199,'Losar de la Vera','Spain','ES','Losar de la Vera (Spain)',1,1,0),(26165,0,126200,'Losheim','Germany','DE','Losheim (Germany)',1,1,0),(26166,0,126201,'Lossiemouth','United Kingdom','UK','Lossiemouth (United Kingdom)',1,1,0),(26167,0,126202,'Lossow','Germany','DE','Lossow (Germany)',1,1,0),(26168,0,126203,'Lotzen','Poland','PL','Lotzen (Poland)',1,1,0),(26169,15927,126204,'Lotzwil','Switzerland','CH','Lotzwil (Switzerland)',1,1,0),(26170,0,126205,'Loucna nad Desnou','Czech Republic','CZ','Loucna nad Desnou (Czech Republic)',1,1,0),(26171,0,126206,'Louette St. Pierre','Belgium','BE','Louette St. Pierre (Belgium)',1,1,0),(26172,0,126207,'Loutra Elenis','Greece','GR','Loutra Elenis (Greece)',1,1,0),(26173,0,126208,'Loutra Kaiafa','Greece','GR','Loutra Kaiafa (Greece)',1,1,0),(26174,15964,126209,'Louveciennes','France','FR','Louveciennes (France)',1,1,0),(26175,0,126210,'Lowell','United States of America','US','Lowell (United States of America)',1,1,0),(26176,0,126211,'Lowenstein - Ho?linsulz','Germany','DE','Lowenstein - Ho?linsulz (Germany)',1,1,0),(26177,15996,126212,'Luanco','Spain','ES','Luanco (Spain)',1,1,0),(26178,15997,126213,'Luanda','Angola','AO','Luanda (Angola)',1,1,0),(26179,34757,126214,'Luang Prabang','LAOS','LA','Luang Prabang (LAOS)',1,1,0),(26180,0,126215,'Luarca','Spain','ES','Luarca (Spain)',1,1,0),(26181,0,126216,'Lubstorf','Germany','DE','Lubstorf (Germany)',1,1,0),(26182,0,126217,'Lubtheen','Germany','DE','Lubtheen (Germany)',1,1,0),(26183,16016,126218,'Luce','France','FR','Luce (France)',1,1,0),(26184,0,126219,'Luchon-Superbagneres','France','FR','Luchon-Superbagneres (France)',1,1,0),(26185,16025,126220,'Lucignano','Italy','IT','Lucignano (Italy)',1,1,0),(26186,0,126221,'Luck','United States of America','US','Luck (United States of America)',1,1,0),(26187,0,126222,'Ludersfeld','Germany','DE','Ludersfeld (Germany)',1,1,0),(26188,0,126223,'Ludlow','United States of America','US','Ludlow (United States of America)',1,1,0),(26189,16041,126224,'Ludwigshafen','Germany','DE','Ludwigshafen (Germany)',1,1,0),(26190,0,126225,'Lugde','Germany','DE','Lugde (Germany)',1,1,0),(26191,16061,126226,'Lugrin','France','FR','Lugrin (France)',1,1,0),(26192,16078,126227,'Lumberton','United States of America','US','Lumberton (United States of America)',1,1,0),(26193,0,126228,'Lumbrein','Switzerland','CH','Lumbrein (Switzerland)',1,1,0),(26194,16082,126229,'Lumbres','France','FR','Lumbres (France)',1,1,0),(26195,16091,126230,'Lund','Sweden','SE','Lund (Sweden)',1,1,0),(26196,0,126231,'Lungotz','Austria','AT','Lungotz (Austria)',1,1,0),(26197,16112,126232,'Luoping','China','CN','Luoping (China)',1,1,0),(26198,0,126233,'Lushnja','Albania','AL','Lushnja (Albania)',1,1,0),(26199,0,126234,'Lushoto','Tanzania','TZ','Lushoto (Tanzania)',1,1,0),(26200,0,126235,'Lustenau','Austria','AT','Lustenau (Austria)',1,1,0),(26201,0,126236,'Luton','United Kingdom','UK','Luton (United Kingdom)',1,1,0),(26202,16135,126237,'Lutry','Switzerland','CH','Lutry (Switzerland)',1,1,0),(26203,0,126238,'Lutzenberg','Switzerland','CH','Lutzenberg (Switzerland)',1,1,0),(26204,16151,126239,'Luxeuil-les-Bains','France','FR','Luxeuil-les-Bains (France)',1,1,0),(26205,0,126240,'Lychen','Germany','DE','Lychen (Germany)',1,1,0),(26206,0,126241,'Lydford','United Kingdom','UK','Lydford (United Kingdom)',1,1,0),(26207,16174,126242,'Lyman','United States of America','US','Lyman (United States of America)',1,1,0),(26208,16178,126243,'Lynchburg','United States of America','US','Lynchburg (United States of America)',1,1,0),(26209,0,126244,'Lyngseidet','Norway','NO','Lyngseidet (Norway)',1,1,0),(26210,16197,126245,'Lysaker','Norway','NO','Lysaker (Norway)',1,1,0),(26211,0,126246,'Lytham St Annes','United Kingdom','UK','Lytham St Annes (United Kingdom)',1,1,0),(26212,0,126247,'Lytton','Canada','CA','Lytton (Canada)',1,1,0),(26213,0,126248,'Maasdam','Netherlands','NL','Maasdam (Netherlands)',1,1,0),(26214,16225,126249,'Mably','France','FR','Mably (France)',1,1,0),(26215,16230,126250,'Macapa','Brazil','BR','Macapa (Brazil)',1,1,0),(26216,0,126251,'Macari','Italy','IT','Macari (Italy)',1,1,0),(26217,0,126252,'Macduff','United Kingdom','UK','Macduff (United Kingdom)',1,1,0),(26218,16244,126253,'Macerata','Italy','IT','Macerata (Italy)',1,1,0),(26219,16246,126254,'Machala','Ecuador','EC','Machala (Ecuador)',1,1,0),(26220,0,126255,'Machu Picchu','Peru','PE','Machu Picchu (Peru)',1,1,0),(26221,0,126256,'Madison','United States of America','US','Madison (United States of America)',1,1,0);
INSERT INTO `tb_master_geo_city_new` VALUES (26222,16304,126257,'Madisonville','United States of America','US','Madisonville (United States of America)',1,1,0),(26223,0,126258,'Madonna di Campiglio','Italy','IT','Madonna di Campiglio (Italy)',1,1,0),(26224,16313,126259,'Madremanya','Spain','ES','Madremanya (Spain)',1,1,0),(26225,16314,126260,'Madrid','Spain','ES','Madrid (Spain)',1,1,0),(26226,0,126261,'Magadino','Switzerland','CH','Magadino (Switzerland)',1,1,0),(26227,0,126262,'Magnant','France','FR','Magnant (France)',1,1,0),(26228,16368,126263,'Magny-le-Hongre','France','FR','Magny-le-Hongre (France)',1,1,0),(26229,0,126264,'Mahalapye','Botswana','BW','Mahalapye (Botswana)',1,1,0),(26230,0,126266,'Mailberg','Austria','AT','Mailberg (Austria)',1,1,0),(26231,16419,126267,'Maiori','Italy','IT','Maiori (Italy)',1,1,0),(26232,15575,126268,'Lingao','China','CN','Lingao (China)',1,1,0),(26233,0,126269,'Lingsar','Indonesia','ID','Lingsar (Indonesia)',1,1,0),(26234,15579,126270,'Lingshui','China','CN','Lingshui (China)',1,1,0),(26235,15580,126271,'Linguaglossa','Italy','IT','Linguaglossa (Italy)',1,1,0),(26236,15584,126272,'Linkoping','Sweden','SE','Linkoping (Sweden)',1,1,0),(26237,0,126273,'Linsengericht','Germany','DE','Linsengericht (Germany)',1,1,0),(26238,0,126274,'Lintha','Myanmar','MM','Lintha (Myanmar)',1,1,0),(26239,0,126275,'Lintsching','Austria','AT','Lintsching (Austria)',1,1,0),(26240,15603,126276,'Lipno nad Vltavou','Czech Republic','CZ','Lipno nad Vltavou (Czech Republic)',1,1,0),(26241,15604,126277,'Lipot','Hungary','HU','Lipot (Hungary)',1,1,0),(26242,0,126278,'Lippersdorf-Erdmannsdorf','Germany','DE','Lippersdorf-Erdmannsdorf (Germany)',1,1,0),(26243,0,126279,'Liria','Spain','ES','Liria (Spain)',1,1,0),(26244,0,126280,'Listvyanka','Russia','RU','Listvyanka (Russia)',1,1,0),(26245,0,126281,'Lit et Mixe','France','FR','Lit et Mixe (France)',1,1,0),(26246,0,126282,'Litchfield Park','United States of America','US','Litchfield Park (United States of America)',1,1,0),(26247,15641,126283,'Lititz','United States of America','US','Lititz (United States of America)',1,1,0),(26248,0,126284,'Litomysl','Czech Republic','CZ','Litomysl (Czech Republic)',1,1,0),(26249,0,126285,'Little Atlin Lake','Canada','CA','Little Atlin Lake (Canada)',1,1,0),(26250,0,126286,'Little Ferry','United States of America','US','Little Ferry (United States of America)',1,1,0),(26251,0,126287,'Little River','United States of America','US','Little River (United States of America)',1,1,0),(26252,0,126288,'Little Sark','United Kingdom','UK','Little Sark (United Kingdom)',1,1,0),(26253,0,126289,'Little Swanport','Australia','AU','Little Swanport (Australia)',1,1,0),(26254,0,126290,'Littlefield','United States of America','US','Littlefield (United States of America)',1,1,0),(26255,0,126291,'Liuyang','China','CN','Liuyang (China)',1,1,0),(26256,15659,126292,'Liverpool','Australia','AU','Liverpool (Australia)',1,1,0),(26257,0,126293,'Livingston','United States of America','US','Livingston (United States of America)',1,1,0),(26258,15677,126294,'Liyang','China','CN','Liyang (China)',1,1,0),(26259,15683,126295,'Ljungby','Sweden','SE','Ljungby (Sweden)',1,1,0),(26260,15685,126296,'Ljungskile','Sweden','SE','Ljungskile (Sweden)',1,1,0),(26261,0,126297,'Lladorre','Spain','ES','Lladorre (Spain)',1,1,0),(26262,15688,126298,'Llafranc','Spain','ES','Llafranc (Spain)',1,1,0),(26263,0,126299,'Llandeilo','United Kingdom','UK','Llandeilo (United Kingdom)',1,1,0),(26264,15730,126300,'Llivia','Spain','ES','Llivia (Spain)',1,1,0),(26265,15733,126301,'Lloseta','Spain','ES','Lloseta (Spain)',1,1,0),(26266,15737,126302,'Llucmajor','Spain','ES','Llucmajor (Spain)',1,1,0),(26267,15741,126303,'Lobbe','Germany','DE','Lobbe (Germany)',1,1,0),(26268,0,126304,'Lobos','Argentina','AR','Lobos (Argentina)',1,1,0),(26269,0,126305,'Locarno Brione s.Minusio','Switzerland','CH','Locarno Brione s.Minusio (Switzerland)',1,1,0),(26270,0,126306,'Loch Lomond','United Kingdom','UK','Loch Lomond (United Kingdom)',1,1,0),(26271,0,126307,'Lockyer Valley','Australia','AU','Lockyer Valley (Australia)',1,1,0),(26272,0,126308,'Locunole','France','FR','Locunole (France)',1,1,0),(26273,0,126309,'Logaras','Greece','GR','Logaras (Greece)',1,1,0),(26274,0,126310,'Logga Charani','Greece','GR','Logga Charani (Greece)',1,1,0),(26275,15784,126311,'Lognes','France','FR','Lognes (France)',1,1,0),(26276,15786,126312,'Logstor','Denmark','DK','Logstor (Denmark)',1,1,0),(26277,15789,126313,'Lohmar','Germany','DE','Lohmar (Germany)',1,1,0),(26278,0,126314,'Loja','Spain','ES','Loja (Spain)',1,1,0),(26279,15803,126315,'Lokeren','Belgium','BE','Lokeren (Belgium)',1,1,0),(26280,15812,126316,'Loma Linda','United States of America','US','Loma Linda (United States of America)',1,1,0),(26281,15828,126317,'Lommel','Belgium','BE','Lommel (Belgium)',1,1,0),(26282,15829,126318,'Lompoc','United States of America','US','Lompoc (United States of America)',1,1,0),(26283,0,126319,'Lonau','Germany','DE','Lonau (Germany)',1,1,0),(26284,0,126320,'Long Hai','Vietnam','VN','Long Hai (Vietnam)',1,1,0),(26285,0,126321,'Long Island/Whitsundays','Australia','AU','Long Island/Whitsundays (Australia)',1,1,0),(26286,0,126322,'Longeau','France','FR','Longeau (France)',1,1,0),(26287,15864,126323,'Longreach','Australia','AU','Longreach (Australia)',1,1,0),(26288,15869,126324,'Longuyon','France','FR','Longuyon (France)',1,1,0),(26289,15872,126325,'Longwy','France','FR','Longwy (France)',1,1,0),(26290,0,126326,'Lonvitz','Germany','DE','Lonvitz (Germany)',1,1,0),(26291,0,126327,'Looe','United Kingdom','UK','Looe (United Kingdom)',1,1,0),(26292,15881,126328,'Lookout Mountain','United States of America','US','Lookout Mountain (United States of America)',1,1,0),(26293,15885,126329,'Loon-Plage','France','FR','Loon-Plage (France)',1,1,0),(26294,0,126330,'Loose','Germany','DE','Loose (Germany)',1,1,0),(26295,15887,126331,'Lopar','Croatia','HR','Lopar (Croatia)',1,1,0),(26296,0,126332,'Loppem','Belgium','BE','Loppem (Belgium)',1,1,0),(26297,0,126333,'Lorca','Spain','ES','Lorca (Spain)',1,1,0),(26298,15896,126334,'Lorenskog','Norway','NO','Lorenskog (Norway)',1,1,0),(26299,15901,126335,'Loretto','United States of America','US','Loretto (United States of America)',1,1,0),(26300,0,126336,'Loriol sur Drome','France','FR','Loriol sur Drome (France)',1,1,0),(26301,15912,126337,'Lorp-Sentaraille','France','FR','Lorp-Sentaraille (France)',1,1,0),(26302,15913,126338,'Lorrach','Germany','DE','Lorrach (Germany)',1,1,0),(26303,31855,126339,'Los Fresnos','United States of America','US','Los Fresnos (United States of America)',1,1,0),(26304,31861,126340,'Los Mochis','Mexico','MX','Los Mochis (Mexico)',1,1,0),(26305,0,126341,'Los Mojones','Spain','ES','Los Mojones (Spain)',1,1,0),(26306,0,126342,'Losser','Netherlands','NL','Losser (Netherlands)',1,1,0),(26307,0,126343,'Lotzorai','Italy','IT','Lotzorai (Italy)',1,1,0),(26308,0,126344,'Louan-Villegruis-Fontaine','France','FR','Louan-Villegruis-Fontaine (France)',1,1,0),(26309,0,126345,'Loucovice','Czech Republic','CZ','Loucovice (Czech Republic)',1,1,0),(26310,0,126346,'Loudun','France','FR','Loudun (France)',1,1,0),(26311,15936,126347,'Loue','France','FR','Loue (France)',1,1,0),(26312,0,126348,'Loughborough','United Kingdom','UK','Loughborough (United Kingdom)',1,1,0),(26313,15939,126349,'Loughrea','Ireland','IE','Loughrea (Ireland)',1,1,0),(26314,15944,126350,'Louisbourg','Canada','CA','Louisbourg (Canada)',1,1,0),(26315,0,126351,'Louth','United Kingdom','UK','Louth (United Kingdom)',1,1,0),(26316,15961,126352,'Loutraki','Greece','GR','Loutraki (Greece)',1,1,0),(26317,15963,126353,'Louvain-la-Neuve','Belgium','BE','Louvain-la-Neuve (Belgium)',1,1,0),(26318,0,126354,'Louvroil','France','FR','Louvroil (France)',1,1,0),(26319,15970,126355,'Loveland','United States of America','US','Loveland (United States of America)',1,1,0),(26320,0,126356,'Lovosice','Czech Republic','CZ','Lovosice (Czech Republic)',1,1,0),(26321,15981,126357,'Lovran','Croatia','HR','Lovran (Croatia)',1,1,0),(26322,0,126358,'Lowell','United States of America','US','Lowell (United States of America)',1,1,0),(26323,15982,126359,'Lowenstein','Germany','DE','Lowenstein (Germany)',1,1,0),(26324,0,126360,'Lower Zambezi National Park','Zambia','ZM','Lower Zambezi National Park (Zambia)',1,1,0),(26325,0,126361,'Lu Monferrato','Italy','IT','Lu Monferrato (Italy)',1,1,0),(26326,16018,126362,'Lucedale','United States of America','US','Lucedale (United States of America)',1,1,0),(26327,16019,126363,'Lucena','Spain','ES','Lucena (Spain)',1,1,0),(26328,16027,126364,'Luckenwalde','Germany','DE','Luckenwalde (Germany)',1,1,0),(26329,0,126365,'Ludenscheid','Germany','DE','Ludenscheid (Germany)',1,1,0),(26330,16031,126366,'Luderitz','Namibia','NA','Luderitz (Namibia)',1,1,0),(26331,16034,126367,'Ludington','United States of America','US','Ludington (United States of America)',1,1,0),(26332,0,126368,'Lugueros','Spain','ES','Lugueros (Spain)',1,1,0),(26333,0,126369,'Luhacovice','Czech Republic','CZ','Luhacovice (Czech Republic)',1,1,0),(26334,0,126370,'Luhnsdorf','Germany','DE','Luhnsdorf (Germany)',1,1,0),(26335,0,126371,'Lukuba Island','Tanzania','TZ','Lukuba Island (Tanzania)',1,1,0),(26336,0,126372,'Lullin','France','FR','Lullin (France)',1,1,0),(26337,16089,126373,'Lunamatrona','Italy','IT','Lunamatrona (Italy)',1,1,0),(26338,16092,126374,'Lund','Canada','CA','Lund (Canada)',1,1,0),(26339,0,126375,'Lunden','Germany','DE','Lunden (Germany)',1,1,0),(26340,0,126376,'Lundin Links','United Kingdom','UK','Lundin Links (United Kingdom)',1,1,0),(26341,16094,126377,'Luneburg','Germany','DE','Luneburg (Germany)',1,1,0),(26342,16516,126378,'Maliano','Spain','ES','Maliano (Spain)',1,1,0),(26343,0,126379,'Malkiyya','Israel','IL','Malkiyya (Israel)',1,1,0),(26344,0,126380,'Mallaig','United Kingdom','UK','Mallaig (United Kingdom)',1,1,0),(26345,0,126381,'Malmantile','Italy','IT','Malmantile (Italy)',1,1,0),(26346,16550,126382,'Malmo','Sweden','SE','Malmo (Sweden)',1,1,0),(26347,0,126383,'Malsburg-Marzell','Germany','DE','Malsburg-Marzell (Germany)',1,1,0),(26348,0,126384,'Maltahohe','Namibia','NA','Maltahohe (Namibia)',1,1,0),(26349,0,126385,'Malters','Switzerland','CH','Malters (Switzerland)',1,1,0),(26350,0,126386,'Mammoth Lakes','United States of America','US','Mammoth Lakes (United States of America)',1,1,0),(26351,0,126387,'Mammoth-Cave-Nationalpark','United States of America','US','Mammoth-Cave-Nationalpark (United States of America)',1,1,0),(26352,16594,126389,'Manama','Bahrain','BH','Manama (Bahrain)',1,1,0),(26353,16607,126390,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(26354,16610,126391,'Manciano','Italy','IT','Manciano (Italy)',1,1,0),(26355,0,126392,'Mandaluyong City','Philippines','PH','Mandaluyong City (Philippines)',1,1,0),(26356,16617,126393,'Mandan','United States of America','US','Mandan (United States of America)',1,1,0),(26357,0,126394,'Mane','France','FR','Mane (France)',1,1,0),(26358,0,126395,'Mangaia Island','Cook Islands','CK','Mangaia Island (Cook Islands)',1,1,0),(26359,16671,126396,'Manitowoc','United States of America','US','Manitowoc (United States of America)',1,1,0),(26360,0,126397,'Mannebach','Germany','DE','Mannebach (Germany)',1,1,0),(26361,16685,126398,'Manocalzati','Italy','IT','Manocalzati (Italy)',1,1,0),(26362,16687,126399,'Manokwari','Indonesia','ID','Manokwari (Indonesia)',1,1,0),(26363,0,126400,'Mansfield','United States of America','US','Mansfield (United States of America)',1,1,0),(26364,16697,126401,'Mansonville','Canada','CA','Mansonville (Canada)',1,1,0),(26365,16706,126402,'Mantes-la-Jolie','France','FR','Mantes-la-Jolie (France)',1,1,0),(26366,0,126403,'Mantta','Finland','FI','Mantta (Finland)',1,1,0),(26367,31892,126404,'Mar de Cristal','Spain','ES','Mar de Cristal (Spain)',1,1,0),(26368,16769,126405,'Marbella','Costa Rica','CR','Marbella (Costa Rica)',1,1,0),(26369,0,126406,'Marche-en-Famenne','Belgium','BE','Marche-en-Famenne (Belgium)',1,1,0),(26370,0,126407,'Marciena','Latvia','LV','Marciena (Latvia)',1,1,0),(26371,0,126408,'Marcon','France','FR','Marcon (France)',1,1,0),(26372,0,126409,'Marennes','France','FR','Marennes (France)',1,1,0),(26373,0,126410,'Margaree Valley','Canada','CA','Margaree Valley (Canada)',1,1,0),(26374,0,126411,'Marguerittes','France','FR','Marguerittes (France)',1,1,0),(26375,0,126412,'Mariapfarr','Austria','AT','Mariapfarr (Austria)',1,1,0),(26376,16833,126413,'Maricao','Puerto Rico','PR','Maricao (Puerto Rico)',1,1,0),(26377,16838,126414,'Mariehamn','Finland','FI','Mariehamn (Finland)',1,1,0),(26378,0,126415,'Marienfeld','Germany','DE','Marienfeld (Germany)',1,1,0),(26379,0,126416,'Marienhafe','Germany','DE','Marienhafe (Germany)',1,1,0),(26380,0,126417,'Marietta','United States of America','US','Marietta (United States of America)',1,1,0),(26381,0,126418,'Marigot','Martinique','MQ','Marigot (Martinique)',1,1,0),(26382,16858,126419,'Marina','United States of America','US','Marina (United States of America)',1,1,0),(26383,0,126420,'Marina del Rey','United States of America','US','Marina del Rey (United States of America)',1,1,0),(26384,31898,126421,'Marina di Camerota','Italy','IT','Marina di Camerota (Italy)',1,1,0),(26385,31900,126422,'Marina di Capitana','Italy','IT','Marina di Capitana (Italy)',1,1,0),(26386,0,126423,'Marina di Massignano','Italy','IT','Marina di Massignano (Italy)',1,1,0),(26387,31909,126424,'Marina di Montenero','Italy','IT','Marina di Montenero (Italy)',1,1,0),(26388,0,126425,'Marina di Varcaturo','Italy','IT','Marina di Varcaturo (Italy)',1,1,0),(26389,31920,126426,'Marino','Italy','IT','Marino (Italy)',1,1,0),(26390,16879,126427,'Markkleeberg','Germany','DE','Markkleeberg (Germany)',1,1,0),(26391,16880,126428,'Markle','United States of America','US','Markle (United States of America)',1,1,0),(26392,0,126429,'Markovac','Croatia','HR','Markovac (Croatia)',1,1,0),(26393,0,126430,'Marktleuthen','Germany','DE','Marktleuthen (Germany)',1,1,0),(26394,0,126431,'Marktrodach','Germany','DE','Marktrodach (Germany)',1,1,0),(26395,16891,126432,'Marlboro','United States of America','US','Marlboro (United States of America)',1,1,0),(26396,0,126433,'Marlborough','United Kingdom','UK','Marlborough (United Kingdom)',1,1,0),(26397,16908,126434,'Marmaris','Turkey','TR','Marmaris (Turkey)',1,1,0),(26398,16911,126435,'Marmora','United States of America','US','Marmora (United States of America)',1,1,0),(26399,0,126436,'Maronti','Italy','IT','Maronti (Italy)',1,1,0),(26400,0,126437,'Marquette','United States of America','US','Marquette (United States of America)',1,1,0),(26401,0,126438,'Marquez','United States of America','US','Marquez (United States of America)',1,1,0),(26402,0,126439,'Marradi','Italy','IT','Marradi (Italy)',1,1,0),(26403,0,126440,'Marsac-sur-l\'Isle','France','FR','Marsac-sur-l\'Isle (France)',1,1,0),(26404,16937,126441,'Marsala','Italy','IT','Marsala (Italy)',1,1,0),(26405,16939,126442,'Marsannay-la-Cote','France','FR','Marsannay-la-Cote (France)',1,1,0),(26406,0,126443,'Marsanne','France','FR','Marsanne (France)',1,1,0),(26407,16943,126444,'Marsciano','Italy','IT','Marsciano (Italy)',1,1,0),(26408,0,126445,'Marseillan-Plage','France','FR','Marseillan-Plage (France)',1,1,0),(26409,0,126446,'Marshall','United States of America','US','Marshall (United States of America)',1,1,0),(26410,0,126447,'Marshall','United States of America','US','Marshall (United States of America)',1,1,0),(26411,0,126448,'Marshfield','United States of America','US','Marshfield (United States of America)',1,1,0),(26412,16982,126449,'Martorell','Spain','ES','Martorell (Spain)',1,1,0),(26413,0,126450,'Marvik','Norway','NO','Marvik (Norway)',1,1,0),(26414,17003,126451,'Maryville','United States of America','US','Maryville (United States of America)',1,1,0),(26415,17007,126452,'Masai Mara','Kenya','KE','Masai Mara (Kenya)',1,1,0),(26416,0,126453,'Mas-Blanc-des-Alpilles','France','FR','Mas-Blanc-des-Alpilles (France)',1,1,0),(26417,17022,126454,'Masera di Padova','Italy','IT','Masera di Padova (Italy)',1,1,0),(26418,0,126455,'Masirah Island','Oman','OM','Masirah Island (Oman)',1,1,0),(26419,0,126456,'Masjid Tanah','Malaysia','MY','Masjid Tanah (Malaysia)',1,1,0),(26420,0,126457,'Massafra','Italy','IT','Massafra (Italy)',1,1,0),(26421,17054,126458,'Massillon','United States of America','US','Massillon (United States of America)',1,1,0),(26422,17055,126459,'Massino Visconti','Italy','IT','Massino Visconti (Italy)',1,1,0),(26423,17057,126460,'Massy','France','FR','Massy (France)',1,1,0),(26424,17077,126461,'Matamoras','United States of America','US','Matamoras (United States of America)',1,1,0),(26425,17084,126462,'Mataro','Spain','ES','Mataro (Spain)',1,1,0),(26426,17098,126463,'Matlacha','United States of America','US','Matlacha (United States of America)',1,1,0),(26427,0,126464,'Matlhagame','South Africa','ZA','Matlhagame (South Africa)',1,1,0),(26428,17100,126465,'Matmata','Tunisia','TN','Matmata (Tunisia)',1,1,0),(26429,0,126466,'Matta e Peru','Italy','IT','Matta e Peru (Italy)',1,1,0),(26430,17122,126467,'Mattoon','United States of America','US','Mattoon (United States of America)',1,1,0),(26431,17133,126468,'Mauguio','France','FR','Mauguio (France)',1,1,0),(26432,17147,126469,'Mauldin','United States of America','US','Mauldin (United States of America)',1,1,0),(26433,17150,126470,'Maumelle','United States of America','US','Maumelle (United States of America)',1,1,0),(26434,0,126471,'Maundays Bay','Anguilla','AI','Maundays Bay (Anguilla)',1,1,0),(26435,17155,126472,'Maupiti','French Polynesia','PF','Maupiti (French Polynesia)',1,1,0),(26436,0,126473,'Mauth','Germany','DE','Mauth (Germany)',1,1,0),(26437,17189,126474,'Mayfield','Canada','CA','Mayfield (Canada)',1,1,0),(26438,0,126475,'Mayreau','St. Vincent & the Grenadines','VC','Mayreau (St. Vincent & the Grenadines)',1,1,0),(26439,0,126476,'Mayville','United States of America','US','Mayville (United States of America)',1,1,0),(26440,0,126477,'Mazeikiai','Lithuania','LT','Mazeikiai (Lithuania)',1,1,0),(26441,17217,126478,'Mazzarino','Italy','IT','Mazzarino (Italy)',1,1,0),(26442,17244,126479,'McCook','United States of America','US','McCook (United States of America)',1,1,0),(26443,17251,126480,'McGaheysville','United States of America','US','McGaheysville (United States of America)',1,1,0),(26444,0,126481,'McMinnville','United States of America','US','McMinnville (United States of America)',1,1,0),(26445,0,126482,'Meaudre','France','FR','Meaudre (France)',1,1,0),(26446,17295,126483,'Medellin','Colombia','CO','Medellin (Colombia)',1,1,0),(26447,0,126484,'Medellin','Spain','ES','Medellin (Spain)',1,1,0),(26448,17303,126485,'Medias','Romania','RO','Medias (Romania)',1,1,0),(26449,17308,126486,'Medina','United States of America','US','Medina (United States of America)',1,1,0),(26450,17329,126487,'Megali Ammos','Greece','GR','Megali Ammos (Greece)',1,1,0),(26451,0,126488,'Le Tour-du-Parc','France','FR','Le Tour-du-Parc (France)',1,1,0),(26452,0,126489,'Le Val Andre','France','FR','Le Val Andre (France)',1,1,0),(26453,0,126490,'Le Vaudreuil','France','FR','Le Vaudreuil (France)',1,1,0),(26454,0,126491,'Lebanon','United States of America','US','Lebanon (United States of America)',1,1,0),(26455,15192,126492,'Leczyca','Poland','PL','Leczyca (Poland)',1,1,0),(26456,0,126493,'Leeden','Germany','DE','Leeden (Germany)',1,1,0),(26457,0,126494,'Leeds','United Kingdom','UK','Leeds (United Kingdom)',1,1,0),(26458,15201,126495,'Leeds','United States of America','US','Leeds (United States of America)',1,1,0),(26459,15209,126496,'Leesville','United States of America','US','Leesville (United States of America)',1,1,0),(26460,15217,126497,'Lefkimmi','Greece','GR','Lefkimmi (Greece)',1,1,0),(26461,15225,126498,'Legian','Indonesia','ID','Legian (Indonesia)',1,1,0),(26462,0,126499,'Legoli','Italy','IT','Legoli (Italy)',1,1,0),(26463,15235,126500,'Leibnitz','Austria','AT','Leibnitz (Austria)',1,1,0),(26464,0,126501,'Leifers','Italy','IT','Leifers (Italy)',1,1,0),(26465,0,126502,'Leighton Buzzard','United Kingdom','UK','Leighton Buzzard (United Kingdom)',1,1,0),(26466,0,126503,'Leipzig','Germany','DE','Leipzig (Germany)',1,1,0),(26467,15264,126504,'Leknes','Norway','NO','Leknes (Norway)',1,1,0),(26468,0,126505,'Lekunberri','Spain','ES','Lekunberri (Spain)',1,1,0),(26469,0,126506,'Lembach','France','FR','Lembach (France)',1,1,0),(26470,0,126507,'Lemkenhafen','Germany','DE','Lemkenhafen (Germany)',1,1,0),(26471,0,126508,'Lemmer','Netherlands','NL','Lemmer (Netherlands)',1,1,0),(26472,0,126509,'Lend','Austria','AT','Lend (Austria)',1,1,0),(26473,0,126510,'Lengede','Germany','DE','Lengede (Germany)',1,1,0),(26474,0,126511,'Lengenwang','Germany','DE','Lengenwang (Germany)',1,1,0),(26475,15283,126512,'Lenggries','Germany','DE','Lenggries (Germany)',1,1,0),(26476,15289,126513,'Lennestadt','Germany','DE','Lennestadt (Germany)',1,1,0),(26477,0,126514,'Lenox','United States of America','US','Lenox (United States of America)',1,1,0),(26478,0,126515,'Lenzen (Elbe)','Germany','DE','Lenzen (Elbe) (Germany)',1,1,0),(26479,15301,126516,'Lenzerheide','Switzerland','CH','Lenzerheide (Switzerland)',1,1,0),(26480,0,126517,'Leonardtown','United States of America','US','Leonardtown (United States of America)',1,1,0),(26481,15329,126518,'Leros','Greece','GR','Leros (Greece)',1,1,0),(26482,15330,126519,'Lerum','Sweden','SE','Lerum (Sweden)',1,1,0),(26483,31762,126520,'Les Ancizes-Comps','France','FR','Les Ancizes-Comps (France)',1,1,0),(26484,0,126521,'Les Crosets','Switzerland','CH','Les Crosets (Switzerland)',1,1,0),(26485,31793,126522,'Les Mureaux','France','FR','Les Mureaux (France)',1,1,0),(26486,31795,126523,'Les Paccots','Switzerland','CH','Les Paccots (Switzerland)',1,1,0),(26487,31797,126524,'Les Pennes-Mirabeau','France','FR','Les Pennes-Mirabeau (France)',1,1,0),(26488,0,126525,'Les Planches-pres-Arbois','France','FR','Les Planches-pres-Arbois (France)',1,1,0),(26489,31805,126526,'Les Saisies','France','FR','Les Saisies (France)',1,1,0),(26490,15337,126527,'Lescar','France','FR','Lescar (France)',1,1,0),(26491,0,126528,'Lesko','Poland','PL','Lesko (Poland)',1,1,0),(26492,0,126529,'Leskovac','Serbia','RS','Leskovac (Serbia)',1,1,0),(26493,0,126530,'Lesna Podlaska','Poland','PL','Lesna Podlaska (Poland)',1,1,0),(26494,15365,126531,'Letterkenny','Ireland','IE','Letterkenny (Ireland)',1,1,0),(26495,0,126532,'Letzlingen','Germany','DE','Letzlingen (Germany)',1,1,0),(26496,15382,126533,'Levanto','Italy','IT','Levanto (Italy)',1,1,0),(26497,15387,126534,'Leverkusen','Germany','DE','Leverkusen (Germany)',1,1,0),(26498,15396,126535,'Levoca','Slovakia','SK','Levoca (Slovakia)',1,1,0),(26499,15400,126536,'Lewes','United States of America','US','Lewes (United States of America)',1,1,0),(26500,0,126537,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(26501,0,126538,'Lexington','United States of America','US','Lexington (United States of America)',1,1,0),(26502,15419,126539,'Lhasa','China','CN','Lhasa (China)',1,1,0),(26503,15421,126540,'L\'Hospitalet de Llobregat','Spain','ES','L\'Hospitalet de Llobregat (Spain)',1,1,0),(26504,0,126541,'Liancheng','China','CN','Liancheng (China)',1,1,0),(26505,0,126542,'Liaoyang','China','CN','Liaoyang (China)',1,1,0),(26506,0,126543,'Liaoyuan','China','CN','Liaoyuan (China)',1,1,0),(26507,0,126544,'Libin','Belgium','BE','Libin (Belgium)',1,1,0),(26508,0,126545,'Libochovice','Czech Republic','CZ','Libochovice (Czech Republic)',1,1,0),(26509,0,126546,'Lich','Germany','DE','Lich (Germany)',1,1,0),(26510,0,126547,'Lido di Spina','Italy','IT','Lido di Spina (Italy)',1,1,0),(26511,0,126548,'Lido Pomposa','Italy','IT','Lido Pomposa (Italy)',1,1,0),(26512,0,126549,'Lidzbark','Poland','PL','Lidzbark (Poland)',1,1,0),(26513,0,126550,'Lieg','Germany','DE','Lieg (Germany)',1,1,0),(26514,15462,126551,'Liege','Belgium','BE','Liege (Belgium)',1,1,0),(26515,15464,126552,'Liencres','Spain','ES','Liencres (Spain)',1,1,0),(26516,0,126553,'Lilla Edet','Sweden','SE','Lilla Edet (Sweden)',1,1,0),(26517,0,126554,'Lima Duarte','Brazil','BR','Lima Duarte (Brazil)',1,1,0),(26518,0,126555,'Limbach','Germany','DE','Limbach (Germany)',1,1,0),(26519,0,126556,'Limbach','Slovakia','SK','Limbach (Slovakia)',1,1,0),(26520,15523,126557,'Limeray','France','FR','Limeray (France)',1,1,0),(26521,15529,126558,'Limoges','France','FR','Limoges (France)',1,1,0),(26522,0,126559,'Limpopo (Provinz)','South Africa','ZA','Limpopo (Provinz) (South Africa)',1,1,0),(26523,0,126560,'Limsdorf','Germany','DE','Limsdorf (Germany)',1,1,0),(26524,0,126561,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(26525,0,126562,'Lincoln','United Kingdom','UK','Lincoln (United Kingdom)',1,1,0),(26526,0,126563,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(26527,0,126564,'Lindaunis','Germany','DE','Lindaunis (Germany)',1,1,0),(26528,0,126565,'Lindenberg','Germany','DE','Lindenberg (Germany)',1,1,0),(26529,0,126566,'Lindenfels','Germany','DE','Lindenfels (Germany)',1,1,0),(26530,15578,126567,'Lingolsheim','France','FR','Lingolsheim (France)',1,1,0),(26531,15581,126568,'Linhai','China','CN','Linhai (China)',1,1,0),(26532,0,126569,'Linne','Netherlands','NL','Linne (Netherlands)',1,1,0),(26533,15590,126570,'Linstow','Germany','DE','Linstow (Germany)',1,1,0),(26534,15591,126571,'Linthicum','United States of America','US','Linthicum (United States of America)',1,1,0),(26535,0,126572,'Linyanti Area','Botswana','BW','Linyanti Area (Botswana)',1,1,0),(26536,0,126573,'Lipperscheid','Luxembourg','LU','Lipperscheid (Luxembourg)',1,1,0),(26537,0,126574,'Liscomb Mills','Canada','CA','Liscomb Mills (Canada)',1,1,0),(26538,15633,126575,'Lissone','Italy','IT','Lissone (Italy)',1,1,0),(26539,0,126576,'List','Germany','DE','List (Germany)',1,1,0),(26540,15634,126577,'Listowel','Ireland','IE','Listowel (Ireland)',1,1,0),(26541,0,126578,'Litchfield','United States of America','US','Litchfield (United States of America)',1,1,0),(26542,0,126579,'Litchfield','United States of America','US','Litchfield (United States of America)',1,1,0),(26543,0,126580,'Litteau','France','FR','Litteau (France)',1,1,0),(26544,15645,126581,'Little America','United States of America','US','Little America (United States of America)',1,1,0),(26545,0,126582,'Little Harbour','British Virgin Islands','VG','Little Harbour (British Virgin Islands)',1,1,0),(26546,0,126583,'Little Hartley','Australia','AU','Little Hartley (Australia)',1,1,0),(26547,0,126584,'Little Malvern','United Kingdom','UK','Little Malvern (United Kingdom)',1,1,0),(26548,0,126585,'Little Petherick','United Kingdom','UK','Little Petherick (United Kingdom)',1,1,0),(26549,15653,126586,'Liuzhou','China','CN','Liuzhou (China)',1,1,0),(26550,15655,126587,'Livange','Luxembourg','LU','Livange (Luxembourg)',1,1,0),(26551,0,126588,'Livingston','United States of America','US','Livingston (United States of America)',1,1,0),(26552,15667,126589,'Livingston','Guatemala','GT','Livingston (Guatemala)',1,1,0),(26553,0,126590,'Liznjan','Croatia','HR','Liznjan (Croatia)',1,1,0),(26554,15681,126591,'Lizzano in Belvedere','Italy','IT','Lizzano in Belvedere (Italy)',1,1,0),(26555,0,126592,'Llanbedr','United Kingdom','UK','Llanbedr (United Kingdom)',1,1,0),(26556,0,126593,'Llandrillo','United Kingdom','UK','Llandrillo (United Kingdom)',1,1,0),(26557,15715,126594,'Llano','United States of America','US','Llano (United States of America)',1,1,0),(26558,15732,126595,'Llorts','Andorra','AD','Llorts (Andorra)',1,1,0),(26559,0,126596,'Llubi','Spain','ES','Llubi (Spain)',1,1,0),(26560,15743,126597,'Locarno','Switzerland','CH','Locarno (Switzerland)',1,1,0),(26561,0,126598,'Lochinvar National Park','Zambia','ZM','Lochinvar National Park (Zambia)',1,1,0),(26562,0,126599,'Livamento','Portugal','PT','Livamento (Portugal)',1,1,0),(26563,15663,126600,'Livigno','Italy','IT','Livigno (Italy)',1,1,0),(26564,15664,126601,'Livinallongo del Col di Lana','Italy','IT','Livinallongo del Col di Lana (Italy)',1,1,0),(26565,15671,126602,'Livorno','Italy','IT','Livorno (Italy)',1,1,0),(26566,0,126603,'Liwonde National Park','Malawi','MW','Liwonde National Park (Malawi)',1,1,0),(26567,15679,126604,'Lizard Island','Australia','AU','Lizard Island (Australia)',1,1,0),(26568,0,126605,'Ljusnedal','Sweden','SE','Ljusnedal (Sweden)',1,1,0),(26569,0,126606,'Llanberis/Snowdonia Park','United Kingdom','UK','Llanberis/Snowdonia Park (United Kingdom)',1,1,0),(26570,15705,126607,'Llanes','Spain','ES','Llanes (Spain)',1,1,0),(26571,0,126608,'Llangollen','United Kingdom','UK','Llangollen (United Kingdom)',1,1,0),(26572,0,126609,'Llano Negro','Spain','ES','Llano Negro (Spain)',1,1,0),(26573,0,126610,'Llanrwst','United Kingdom','UK','Llanrwst (United Kingdom)',1,1,0),(26574,0,126611,'Llora','Spain','ES','Llora (Spain)',1,1,0),(26575,0,126612,'Lluc','Spain','ES','Lluc (Spain)',1,1,0),(26576,0,126613,'Lochailort','United Kingdom','UK','Lochailort (United Kingdom)',1,1,0),(26577,15749,126614,'Loches','France','FR','Loches (France)',1,1,0),(26578,15754,126615,'Lockhart','United States of America','US','Lockhart (United States of America)',1,1,0),(26579,0,126616,'Locmine','France','FR','Locmine (France)',1,1,0),(26580,0,126617,'Locust Grove','United States of America','US','Locust Grove (United States of America)',1,1,0),(26581,0,126618,'Lodi','United States of America','US','Lodi (United States of America)',1,1,0),(26582,0,126619,'Lodz','Poland','PL','Lodz (Poland)',1,1,0),(26583,15777,126620,'Lofoten','Norway','NO','Lofoten (Norway)',1,1,0),(26584,0,126621,'Logan','United States of America','US','Logan (United States of America)',1,1,0),(26585,0,126622,'Logan','United States of America','US','Logan (United States of America)',1,1,0),(26586,15788,126623,'Lohja','Finland','FI','Lohja (Finland)',1,1,0),(26587,15794,126624,'Loibichl','Austria','AT','Loibichl (Austria)',1,1,0),(26588,15800,126625,'Loiu','Spain','ES','Loiu (Spain)',1,1,0),(26589,15805,126626,'Lokken','Denmark','DK','Lokken (Denmark)',1,1,0),(26590,0,126627,'Lomba da Fazenda','Portugal','PT','Lomba da Fazenda (Portugal)',1,1,0),(26591,0,126628,'Lombez','France','FR','Lombez (France)',1,1,0),(26592,0,126629,'Lombok Island','Indonesia','ID','Lombok Island (Indonesia)',1,1,0),(26593,15835,126631,'Londa','Italy','IT','Londa (Italy)',1,1,0),(26594,0,126632,'London','United Kingdom','UK','London (United Kingdom)',1,1,0),(26595,0,126633,'London','United States of America','US','London (United States of America)',1,1,0),(26596,0,126634,'Lone Butte','Canada','CA','Lone Butte (Canada)',1,1,0),(26597,0,126635,'Long Beach','United States of America','US','Long Beach (United States of America)',1,1,0),(26598,0,126636,'Long Prairie','United States of America','US','Long Prairie (United States of America)',1,1,0),(26599,15851,126637,'Longboat Key','United States of America','US','Longboat Key (United States of America)',1,1,0),(26600,0,126638,'Longgueuil','Canada','CA','Longgueuil (Canada)',1,1,0),(26601,0,126639,'Longhorsley','United Kingdom','UK','Longhorsley (United Kingdom)',1,1,0),(26602,0,126640,'Longview','United States of America','US','Longview (United States of America)',1,1,0),(26603,0,126641,'Lonigo','Italy','IT','Lonigo (Italy)',1,1,0),(26604,15877,126642,'Lonoke','United States of America','US','Lonoke (United States of America)',1,1,0),(26605,0,126643,'Loosdorf','Austria','AT','Loosdorf (Austria)',1,1,0),(26606,15894,126644,'Lordsburg','United States of America','US','Lordsburg (United States of America)',1,1,0),(26607,15909,126645,'Lormont','France','FR','Lormont (France)',1,1,0),(26608,0,126646,'L\'Orxa','Spain','ES','L\'Orxa (Spain)',1,1,0),(26609,31846,126647,'Los Barrios','Spain','ES','Los Barrios (Spain)',1,1,0),(26610,31868,126648,'Los Silos','Spain','ES','Los Silos (Spain)',1,1,0),(26611,31869,126649,'Los Yebenes','Spain','ES','Los Yebenes (Spain)',1,1,0),(26612,0,126650,'Losenstein','Austria','AT','Losenstein (Austria)',1,1,0),(26613,15932,126651,'Loudenvielle','France','FR','Loudenvielle (France)',1,1,0),(26614,0,126652,'Loudi','China','CN','Loudi (China)',1,1,0),(26615,0,126653,'Louisville','United States of America','US','Louisville (United States of America)',1,1,0),(26616,15954,126654,'Loures','Portugal','PT','Loures (Portugal)',1,1,0),(26617,15956,126655,'Lousa','Portugal','PT','Lousa (Portugal)',1,1,0),(26618,0,126656,'Loutsa','Greece','GR','Loutsa (Greece)',1,1,0),(26619,0,126657,'Lowenberger Land','Germany','DE','Lowenberger Land (Germany)',1,1,0),(26620,0,126658,'Lower Bay','St. Vincent & the Grenadines','VC','Lower Bay (St. Vincent & the Grenadines)',1,1,0),(26621,0,126659,'Lozorno','Slovakia','SK','Lozorno (Slovakia)',1,1,0),(26622,0,126660,'Lubmin','Germany','DE','Lubmin (Germany)',1,1,0),(26623,0,126661,'Lubok Antu','Malaysia','MY','Lubok Antu (Malaysia)',1,1,0),(26624,0,126662,'Luc en Diois','France','FR','Luc en Diois (France)',1,1,0),(26625,0,126663,'Lucelle','France','FR','Lucelle (France)',1,1,0),(26626,16022,126664,'Lucerne','Switzerland','CH','Lucerne (Switzerland)',1,1,0),(26627,0,126665,'Luckendorf','Germany','DE','Luckendorf (Germany)',1,1,0),(26628,0,126667,'Ludlow','United Kingdom','UK','Ludlow (United Kingdom)',1,1,0),(26629,16038,126668,'Ludvika','Sweden','SE','Ludvika (Sweden)',1,1,0),(26630,0,126669,'Ludwigsdorf','Poland','PL','Ludwigsdorf (Poland)',1,1,0),(26631,16040,126670,'Ludwigsfelde','Germany','DE','Ludwigsfelde (Germany)',1,1,0),(26632,0,126671,'Ludza','Latvia','LV','Ludza (Latvia)',1,1,0),(26633,16055,126672,'Lugo','Italy','IT','Lugo (Italy)',1,1,0),(26634,0,126673,'Luisenthal','Germany','DE','Luisenthal (Germany)',1,1,0),(26635,0,126674,'Lukecin','Poland','PL','Lukecin (Poland)',1,1,0),(26636,0,126675,'Luling','United States of America','US','Luling (United States of America)',1,1,0),(26637,16075,126676,'Lully','Switzerland','CH','Lully (Switzerland)',1,1,0),(26638,16084,126677,'Lummen','Belgium','BE','Lummen (Belgium)',1,1,0),(26639,0,126678,'Lunz am See','Austria','AT','Lunz am See (Austria)',1,1,0),(26640,16110,126679,'Luohe','China','CN','Luohe (China)',1,1,0),(26641,0,126680,'Luperon','Dominican Republic','DO','Luperon (Dominican Republic)',1,1,0),(26642,16120,126681,'Lusaka','Zambia','ZM','Lusaka (Zambia)',1,1,0),(26643,16125,126682,'Lusk','United States of America','US','Lusk (United States of America)',1,1,0),(26644,0,126683,'Luss','United Kingdom','UK','Luss (United Kingdom)',1,1,0),(26645,0,126684,'Lussac-les-Chateaux','France','FR','Lussac-les-Chateaux (France)',1,1,0),(26646,0,126685,'Lutow','Germany','DE','Lutow (Germany)',1,1,0),(26647,16139,126686,'Lutterbach','France','FR','Lutterbach (France)',1,1,0),(26648,0,126687,'Luz','Portugal','PT','Luz (Portugal)',1,1,0),(26649,0,126688,'Luz de Tavira','Portugal','PT','Luz de Tavira (Portugal)',1,1,0),(26650,0,126689,'Lychnos','Greece','GR','Lychnos (Greece)',1,1,0),(26651,0,126690,'Lygaria','Greece','GR','Lygaria (Greece)',1,1,0),(26652,16177,126691,'Lynbrook','United States of America','US','Lynbrook (United States of America)',1,1,0),(26653,0,126692,'Lyng','United Kingdom','UK','Lyng (United Kingdom)',1,1,0),(26654,16200,126693,'Lytle','United States of America','US','Lytle (United States of America)',1,1,0),(26655,0,126694,'M’Chigeeng','Canada','CA','M’Chigeeng (Canada)',1,1,0),(26656,0,126695,'Maalula','Syria',NULL,'Maalula (Syria)',1,1,0),(26657,0,126696,'Ma\'anshan','China','CN','Ma\'anshan (China)',1,1,0),(26658,0,126697,'Maarkedal','Belgium','BE','Maarkedal (Belgium)',1,1,0),(26659,0,126698,'Maasbracht','Netherlands','NL','Maasbracht (Netherlands)',1,1,0),(26660,0,126699,'Mabira','Uganda','UG','Mabira (Uganda)',1,1,0),(26661,0,126700,'Mablethorpe','United Kingdom','UK','Mablethorpe (United Kingdom)',1,1,0),(26662,0,126701,'Machalilla Nationalpark','Ecuador','EC','Machalilla Nationalpark (Ecuador)',1,1,0),(26663,0,126702,'Mache','France','FR','Mache (France)',1,1,0),(26664,16262,126703,'Macomb','United States of America','US','Macomb (United States of America)',1,1,0),(26665,0,126704,'Macon','United States of America','US','Macon (United States of America)',1,1,0),(26666,16269,126705,'Mactier','Canada','CA','Mactier (Canada)',1,1,0),(26667,16270,126706,'Macugnaga','Italy','IT','Macugnaga (Italy)',1,1,0),(26668,16279,126707,'Made','Netherlands','NL','Made (Netherlands)',1,1,0),(26669,0,126708,'Madfeld','Germany','DE','Madfeld (Germany)',1,1,0),(26670,0,126709,'Madidi Nationalpark','Bolivia','BO','Madidi Nationalpark (Bolivia)',1,1,0),(26671,16300,126710,'Madill','United States of America','US','Madill (United States of America)',1,1,0),(26672,0,126711,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(26673,0,126712,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(26674,16037,126713,'Ludres','France','FR','Ludres (France)',1,1,0),(26675,0,126714,'Ludwigsstadt','Germany','DE','Ludwigsstadt (Germany)',1,1,0),(26676,16053,126715,'Luganville','Vanuatu','VU','Luganville (Vanuatu)',1,1,0),(26677,0,126716,'Lugnano in Teverina','Italy','IT','Lugnano in Teverina (Italy)',1,1,0),(26678,16073,126717,'Lulea','Sweden','SE','Lulea (Sweden)',1,1,0),(26679,0,126718,'Lum Sum','Thailand','TH','Lum Sum (Thailand)',1,1,0),(26680,0,126719,'Lumberton','United States of America','US','Lumberton (United States of America)',1,1,0),(26681,16080,126720,'Lumbini','Nepal','NP','Lumbini (Nepal)',1,1,0),(26682,0,126721,'Lumbrales','Spain','ES','Lumbrales (Spain)',1,1,0),(26683,16099,126722,'Luneville','France','FR','Luneville (France)',1,1,0),(26684,0,126723,'Lungsod ng Naga','Philippines','PH','Lungsod ng Naga (Philippines)',1,1,0),(26685,0,126724,'Lunne','Germany','DE','Lunne (Germany)',1,1,0),(26686,0,126725,'Luogosanto','Italy','IT','Luogosanto (Italy)',1,1,0),(26687,0,126726,'Luppe-Violles','France','FR','Luppe-Violles (France)',1,1,0),(26688,16116,126727,'Luras','Italy','IT','Luras (Italy)',1,1,0),(26689,16117,126728,'Luray','United States of America','US','Luray (United States of America)',1,1,0),(26690,0,126729,'Lurbe-Saint-Christau','France','FR','Lurbe-Saint-Christau (France)',1,1,0),(26691,16118,126730,'Lure','France','FR','Lure (France)',1,1,0),(26692,0,126731,'Luri','France','FR','Luri (France)',1,1,0),(26693,0,126732,'Lustin','Belgium','BE','Lustin (Belgium)',1,1,0),(26694,16137,126733,'Lutsen','United States of America','US','Lutsen (United States of America)',1,1,0),(26695,0,126734,'Lutzerath','Germany','DE','Lutzerath (Germany)',1,1,0),(26696,16163,126735,'Luz-Saint-Sauveur','France','FR','Luz-Saint-Sauveur (France)',1,1,0),(26697,0,126736,'Lyme Regis','United Kingdom','UK','Lyme Regis (United Kingdom)',1,1,0),(26698,0,126737,'Lymm','United Kingdom','UK','Lymm (United Kingdom)',1,1,0),(26699,0,126738,'Lynmouth','United Kingdom','UK','Lynmouth (United Kingdom)',1,1,0),(26700,0,126739,'Lynton','United Kingdom','UK','Lynton (United Kingdom)',1,1,0),(26701,0,126740,'Maafushi','Maldives','MV','Maafushi (Maldives)',1,1,0),(26702,16221,126741,'Mabibi','South Africa','ZA','Mabibi (South Africa)',1,1,0),(26703,0,126742,'Mabula Game Reserve','South Africa','ZA','Mabula Game Reserve (South Africa)',1,1,0),(26704,16229,126743,'Macanet de Cabrenys','Spain','ES','Macanet de Cabrenys (Spain)',1,1,0),(26705,0,126744,'Mace','France','FR','Mace (France)',1,1,0),(26706,0,126745,'Maceda','Spain','ES','Maceda (Spain)',1,1,0),(26707,16241,126746,'Macedonia','United States of America','US','Macedonia (United States of America)',1,1,0),(26708,16245,126747,'Macerino','Italy','IT','Macerino (Italy)',1,1,0),(26709,0,126748,'Mactan','Philippines','PH','Mactan (Philippines)',1,1,0),(26710,16277,126749,'Madara','Bulgaria','BG','Madara (Bulgaria)',1,1,0),(26711,16294,126750,'Madesimo','Italy','IT','Madesimo (Italy)',1,1,0),(26712,0,126751,'Madic','France','FR','Madic (France)',1,1,0),(26713,0,126752,'Madikwe Game Reserve','South Africa','ZA','Madikwe Game Reserve (South Africa)',1,1,0),(26714,0,126753,'Madinat Zayed','United Arab Emirates','AE','Madinat Zayed (United Arab Emirates)',1,1,0),(26715,0,126754,'Madiran','France','FR','Madiran (France)',1,1,0),(26716,0,126755,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(26717,0,126756,'Madisonville','United States of America','US','Madisonville (United States of America)',1,1,0),(26718,16305,126757,'Madiswil','Switzerland','CH','Madiswil (Switzerland)',1,1,0),(26719,0,126758,'Mae Chan','Thailand','TH','Mae Chan (Thailand)',1,1,0),(26720,0,126759,'Maffe','Belgium','BE','Maffe (Belgium)',1,1,0),(26721,0,126760,'Magazzini','Italy','IT','Magazzini (Italy)',1,1,0),(26722,16350,126761,'Magglingen','Switzerland','CH','Magglingen (Switzerland)',1,1,0),(26723,16352,126762,'Magione','Italy','IT','Magione (Italy)',1,1,0),(26724,0,126763,'Magliano Sabina','Italy','IT','Magliano Sabina (Italy)',1,1,0),(26725,0,126764,'Magliaso','Switzerland','CH','Magliaso (Switzerland)',1,1,0),(26726,0,126765,'Magnolia','United States of America','US','Magnolia (United States of America)',1,1,0),(26727,16383,126766,'Mahdia','Tunisia','TN','Mahdia (Tunisia)',1,1,0),(26728,16384,126767,'Mahe','Seychelles','SC','Mahe (Seychelles)',1,1,0),(26729,16396,126768,'Mahone Bay','Canada','CA','Mahone Bay (Canada)',1,1,0),(26730,0,126769,'Maierhofen','Germany','DE','Maierhofen (Germany)',1,1,0),(26731,0,126770,'Maimara','Argentina','AR','Maimara (Argentina)',1,1,0),(26732,0,126771,'Maimon','Dominican Republic','DO','Maimon (Dominican Republic)',1,1,0),(26733,0,126772,'Mainvilliers','France','FR','Mainvilliers (France)',1,1,0),(26734,16418,126773,'Maio','Cape Verde','CV','Maio (Cape Verde)',1,1,0),(26735,0,126774,'Mairipora','Brazil','BR','Mairipora (Brazil)',1,1,0),(26736,16432,126775,'Maitencillo','Chile','CL','Maitencillo (Chile)',1,1,0),(26737,16435,126776,'Maizieres-les-Metz','France','FR','Maizieres-les-Metz (France)',1,1,0),(26738,0,126777,'Makrakomi','Greece','GR','Makrakomi (Greece)',1,1,0),(26739,16474,126778,'Mala Mala','South Africa','ZA','Mala Mala (South Africa)',1,1,0),(26740,16477,126779,'Malabo','Equatorial Guinea','GQ','Malabo (Equatorial Guinea)',1,1,0),(26741,0,126780,'Malahide','Ireland','IE','Malahide (Ireland)',1,1,0),(26742,16490,126781,'Malang','Indonesia','ID','Malang (Indonesia)',1,1,0),(26743,16492,126782,'Malargue','Argentina','AR','Malargue (Argentina)',1,1,0),(26744,0,126783,'Malbuisson','France','FR','Malbuisson (France)',1,1,0),(26745,0,126784,'Malbun (Liechtenstein)','Liechtenstein','LI','Malbun (Liechtenstein) (Liechtenstein)',1,1,0),(26746,0,126785,'Malchin','Germany','DE','Malchin (Germany)',1,1,0),(26747,0,126786,'Maldegem','Belgium','BE','Maldegem (Belgium)',1,1,0),(26748,31885,126787,'Male','Italy','IT','Male (Italy)',1,1,0),(26749,16515,126788,'Mali Losinj','Croatia','HR','Mali Losinj (Croatia)',1,1,0),(26750,16520,126789,'Malinska','Croatia','HR','Malinska (Croatia)',1,1,0),(26751,16553,126790,'Malolo Island','Fiji Islands','FJ','Malolo Island (Fiji Islands)',1,1,0),(26752,16556,126791,'Maloy','Norway','NO','Maloy (Norway)',1,1,0),(26753,16563,126792,'Malta','Malta','MT','Malta (Malta)',1,1,0),(26754,0,126793,'Malton','United Kingdom','UK','Malton (United Kingdom)',1,1,0),(26755,0,126794,'Mammern','Switzerland','CH','Mammern (Switzerland)',1,1,0),(26756,0,126795,'Mamoudzou','Comoros','KM','Mamoudzou (Comoros)',1,1,0),(26757,0,126796,'Manacor','Spain','ES','Manacor (Spain)',1,1,0),(26758,0,126797,'Manastirea Humorului','Romania','RO','Manastirea Humorului (Romania)',1,1,0),(26759,0,126798,'Manchester','United Kingdom','UK','Manchester (United Kingdom)',1,1,0),(26760,0,126799,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(26761,0,126800,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(26762,0,126801,'Mandarfen','Austria','AT','Mandarfen (Austria)',1,1,0),(26763,0,126803,'Mandelbachtal','Germany','DE','Mandelbachtal (Germany)',1,1,0),(26764,16634,126804,'Manfredonia','Italy','IT','Manfredonia (Italy)',1,1,0),(26765,16639,126806,'Mangaratiba','Brazil','BR','Mangaratiba (Brazil)',1,1,0),(26766,0,126807,'Mangatawhiri Valley','New Zealand','NZ','Mangatawhiri Valley (New Zealand)',1,1,0),(26767,16644,126808,'Mangilao','Guam','GU','Mangilao (Guam)',1,1,0),(26768,16665,126809,'Manises','Spain','ES','Manises (Spain)',1,1,0),(26769,0,126811,'Mansfield','United States of America','US','Mansfield (United States of America)',1,1,0),(26770,0,126812,'Mansuar','Indonesia','ID','Mansuar (Indonesia)',1,1,0),(26771,16701,126813,'Manteca','United States of America','US','Manteca (United States of America)',1,1,0),(26772,0,126814,'Mantignana di Corciano','Italy','IT','Mantignana di Corciano (Italy)',1,1,0),(26773,16710,126815,'Mantua','Italy','IT','Mantua (Italy)',1,1,0),(26774,0,126816,'Maracas','Trinidad and Tobago','TT','Maracas (Trinidad and Tobago)',1,1,0),(26775,0,126818,'Marat','France','FR','Marat (France)',1,1,0),(26776,16759,126819,'Marathon','Greece','GR','Marathon (Greece)',1,1,0),(26777,0,126820,'Marathon Key','United States of America','US','Marathon Key (United States of America)',1,1,0),(26778,0,126821,'Marbach an der Donau','Austria','AT','Marbach an der Donau (Austria)',1,1,0),(26779,0,126822,'Marcaria','Italy','IT','Marcaria (Italy)',1,1,0),(26780,16777,126823,'Marchaux','France','FR','Marchaux (France)',1,1,0),(26781,0,126824,'Marco de Canaveses','Portugal','PT','Marco de Canaveses (Portugal)',1,1,0),(26782,0,126825,'Mannedorf','Switzerland','CH','Mannedorf (Switzerland)',1,1,0),(26783,31890,126826,'Manor','United States of America','US','Manor (United States of America)',1,1,0),(26784,16690,126827,'Manresa','Spain','ES','Manresa (Spain)',1,1,0),(26785,0,126828,'Mansfield','United States of America','US','Mansfield (United States of America)',1,1,0),(26786,0,126829,'Manu Nationalpark','Peru','PE','Manu Nationalpark (Peru)',1,1,0),(26787,16718,126830,'Manzanares','Spain','ES','Manzanares (Spain)',1,1,0),(26788,0,126831,'Manzanares el Real','Spain','ES','Manzanares el Real (Spain)',1,1,0),(26789,16722,126832,'Manzanita','United States of America','US','Manzanita (United States of America)',1,1,0),(26790,0,126833,'Mao Xian','China','CN','Mao Xian (China)',1,1,0),(26791,16726,126834,'Maoming','China','CN','Maoming (China)',1,1,0),(26792,0,126835,'Maple Grove','United States of America','US','Maple Grove (United States of America)',1,1,0),(26793,16738,126836,'Maquoketa','United States of America','US','Maquoketa (United States of America)',1,1,0),(26794,31891,126837,'Mar De Ajo','Argentina','AR','Mar De Ajo (Argentina)',1,1,0),(26795,16766,126838,'Marawila','Sri Lanka','LK','Marawila (Sri Lanka)',1,1,0),(26796,0,126839,'Marble Falls','United States of America','US','Marble Falls (United States of America)',1,1,0),(26797,0,126840,'Marcey-les-Greves','France','FR','Marcey-les-Greves (France)',1,1,0),(26798,0,126841,'March','United Kingdom','UK','March (United Kingdom)',1,1,0),(26799,0,126842,'Marchegg','Austria','AT','Marchegg (Austria)',1,1,0),(26800,0,126843,'Marchirolo','Italy','IT','Marchirolo (Italy)',1,1,0),(26801,16786,126844,'Marcilla','Spain','ES','Marcilla (Spain)',1,1,0),(26802,16789,126845,'Marcon','Italy','IT','Marcon (Italy)',1,1,0),(26803,16799,126846,'Marechal Deodoro','Brazil','BR','Marechal Deodoro (Brazil)',1,1,0),(26804,0,126847,'Mareit','Italy','IT','Mareit (Italy)',1,1,0),(26805,16801,126848,'Marengo','United States of America','US','Marengo (United States of America)',1,1,0),(26806,0,126849,'Maret','Thailand','TH','Maret (Thailand)',1,1,0),(26807,16806,126850,'Marfa','Malta','MT','Marfa (Malta)',1,1,0),(26808,16814,126851,'Marghera','Italy','IT','Marghera (Italy)',1,1,0),(26809,16819,126852,'Maria Alm','Austria','AT','Maria Alm (Austria)',1,1,0),(26810,0,126853,'Maria Taferl','Austria','AT','Maria Taferl (Austria)',1,1,0),(26811,0,126854,'Marietta','United States of America','US','Marietta (United States of America)',1,1,0),(26812,0,126855,'Marija Bistrica','Croatia','HR','Marija Bistrica (Croatia)',1,1,0),(26813,0,126856,'Marina di Casal Velino','Italy','IT','Marina di Casal Velino (Italy)',1,1,0),(26814,0,126857,'Marina di Nocera Terinese','Italy','IT','Marina di Nocera Terinese (Italy)',1,1,0),(26815,0,126858,'Marina Piccola','Italy','IT','Marina Piccola (Italy)',1,1,0),(26816,0,126859,'Marine de Farinole','France','FR','Marine de Farinole (France)',1,1,0),(26817,0,126860,'Maringues','France','FR','Maringues (France)',1,1,0),(26818,0,126861,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(26819,0,126862,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(26820,0,126863,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(26821,16873,126864,'Markelo','Netherlands','NL','Markelo (Netherlands)',1,1,0),(26822,0,126865,'Markersdorf','Germany','DE','Markersdorf (Germany)',1,1,0),(26823,0,126866,'Market Bosworth','United Kingdom','UK','Market Bosworth (United Kingdom)',1,1,0),(26824,0,126867,'Markisch Buchholz','Germany','DE','Markisch Buchholz (Germany)',1,1,0),(26825,16883,126868,'Marksville','United States of America','US','Marksville (United States of America)',1,1,0),(26826,16884,126869,'Markt Schwaben','Germany','DE','Markt Schwaben (Germany)',1,1,0),(26827,0,126870,'Marktbergel','Germany','DE','Marktbergel (Germany)',1,1,0),(26828,16886,126871,'Marktheidenfeld','Germany','DE','Marktheidenfeld (Germany)',1,1,0),(26829,0,126872,'Marlborough Sounds','New Zealand','NZ','Marlborough Sounds (New Zealand)',1,1,0),(26830,0,126873,'Marmari','Greece','GR','Marmari (Greece)',1,1,0),(26831,16910,126874,'Marmolejo','Spain','ES','Marmolejo (Spain)',1,1,0),(26832,0,126875,'Marnedal','Norway','NO','Marnedal (Norway)',1,1,0),(26833,0,126876,'Marquesas','French Polynesia','PF','Marquesas (French Polynesia)',1,1,0),(26834,0,126877,'Marsaxlokk','Malta','MT','Marsaxlokk (Malta)',1,1,0),(26835,16946,126878,'Marseille','France','FR','Marseille (France)',1,1,0),(26836,0,126879,'Marston Montgomery','United Kingdom','UK','Marston Montgomery (United Kingdom)',1,1,0),(26837,0,126880,'Martelange','Belgium','BE','Martelange (Belgium)',1,1,0),(26838,16963,126881,'Martha\'s Vineyard','United States of America','US','Martha\'s Vineyard (United States of America)',1,1,0),(26839,16971,126882,'Martinborough','New Zealand','NZ','Martinborough (New Zealand)',1,1,0),(26840,16972,126883,'Martinez','United States of America','US','Martinez (United States of America)',1,1,0),(26841,16979,126884,'Martinsicuro','Italy','IT','Martinsicuro (Italy)',1,1,0),(26842,0,126885,'Marton','New Zealand','NZ','Marton (New Zealand)',1,1,0),(26843,16993,126886,'Maryborough','Australia','AU','Maryborough (Australia)',1,1,0),(26844,16996,126887,'Maryland Heights','United States of America','US','Maryland Heights (United States of America)',1,1,0),(26845,0,126888,'Marysville','United States of America','US','Marysville (United States of America)',1,1,0),(26846,0,126889,'Maryville','United States of America','US','Maryville (United States of America)',1,1,0),(26847,0,126890,'Marz','Austria','AT','Marz (Austria)',1,1,0),(26848,0,126891,'Marzling','Germany','DE','Marzling (Germany)',1,1,0),(26849,0,126892,'Mascalucia','Italy','IT','Mascalucia (Italy)',1,1,0),(26850,17023,126893,'Maseru','Lesotho','LS','Maseru (Lesotho)',1,1,0),(26851,0,126894,'Maskall Village','Belize','BZ','Maskall Village (Belize)',1,1,0),(26852,17042,126895,'Massa','Italy','IT','Massa (Italy)',1,1,0),(26853,17049,126896,'Masserberg','Germany','DE','Masserberg (Germany)',1,1,0),(26854,17058,126897,'Masterton','New Zealand','NZ','Masterton (New Zealand)',1,1,0),(26855,17063,126898,'Masvingo','Zimbabwe','ZW','Masvingo (Zimbabwe)',1,1,0),(26856,17071,126899,'Matala','Greece','GR','Matala (Greece)',1,1,0),(26857,17079,126900,'Matane','Canada','CA','Matane (Canada)',1,1,0),(26858,17081,126901,'Matanzas','Cuba','CU','Matanzas (Cuba)',1,1,0),(26859,17082,126902,'Matapedia','Canada','CA','Matapedia (Canada)',1,1,0),(26860,0,126903,'Mathon','Switzerland','CH','Mathon (Switzerland)',1,1,0),(26861,0,126904,'Mati','Greece','GR','Mati (Greece)',1,1,0),(26862,0,126905,'Matusadona-Nationalpark','Zimbabwe','ZW','Matusadona-Nationalpark (Zimbabwe)',1,1,0),(26863,17167,126906,'Maussane-les-Alpilles','France','FR','Maussane-les-Alpilles (France)',1,1,0),(26864,0,126907,'Mauzac - Grand Castang','France','FR','Mauzac - Grand Castang (France)',1,1,0),(26865,17174,126908,'Mavillette','Canada','CA','Mavillette (Canada)',1,1,0),(26866,0,126909,'Mavis Bank','Jamaica','JM','Mavis Bank (Jamaica)',1,1,0),(26867,0,126910,'Mayen','Germany','DE','Mayen (Germany)',1,1,0),(26868,0,126912,'Mazamet','France','FR','Mazamet (France)',1,1,0),(26869,17237,126913,'McCall','United States of America','US','McCall (United States of America)',1,1,0),(26870,17255,126914,'McGregor','United States of America','US','McGregor (United States of America)',1,1,0),(26871,17258,126915,'McHenry','United States of America','US','McHenry (United States of America)',1,1,0),(26872,17266,126916,'McLeansville','United States of America','US','McLeansville (United States of America)',1,1,0),(26873,17277,126917,'Meads Bay','Anguilla','AI','Meads Bay (Anguilla)',1,1,0),(26874,17297,126918,'Medenine','Tunisia','TN','Medenine (Tunisia)',1,1,0),(26875,17309,126919,'Medina-Sidonia','Spain','ES','Medina-Sidonia (Spain)',1,1,0),(26876,0,126920,'Medlow Bath','Australia','AU','Medlow Bath (Australia)',1,1,0),(26877,17314,126921,'Medora','United States of America','US','Medora (United States of America)',1,1,0),(26878,17318,126922,'Medvode','Slovenia','SI','Medvode (Slovenia)',1,1,0),(26879,17325,126923,'Meersburg','Germany','DE','Meersburg (Germany)',1,1,0),(26880,0,126924,'Meganisi','Greece','GR','Meganisi (Greece)',1,1,0),(26881,0,126925,'Mehren','Germany','DE','Mehren (Germany)',1,1,0),(26882,0,126926,'Mehring','Germany','DE','Mehring (Germany)',1,1,0),(26883,17345,126927,'Meiringen','Switzerland','CH','Meiringen (Switzerland)',1,1,0),(26884,17356,126928,'Meknes','Morocco','MA','Meknes (Morocco)',1,1,0),(26885,17369,126929,'Melfort','Canada','CA','Melfort (Canada)',1,1,0),(26886,0,126930,'Melito di Porto Salvo','Italy','IT','Melito di Porto Salvo (Italy)',1,1,0),(26887,17388,126931,'Melmoth','South Africa','ZA','Melmoth (South Africa)',1,1,0),(26888,0,126932,'Melnica','Croatia','HR','Melnica (Croatia)',1,1,0),(26889,0,126933,'Maisonnay','France','FR','Maisonnay (France)',1,1,0),(26890,0,126934,'Maissau','Austria','AT','Maissau (Austria)',1,1,0),(26891,0,126935,'Maitland','Australia','AU','Maitland (Australia)',1,1,0),(26892,16436,126936,'Majadahonda','Spain','ES','Majadahonda (Spain)',1,1,0),(26893,16454,126937,'Makassar','Indonesia','ID','Makassar (Indonesia)',1,1,0),(26894,0,126938,'Makri Gialos','Greece','GR','Makri Gialos (Greece)',1,1,0),(26895,16467,126939,'Makrinitsa','Greece','GR','Makrinitsa (Greece)',1,1,0),(26896,16471,126940,'Makung','Taiwan','TW','Makung (Taiwan)',1,1,0),(26897,0,126941,'Mala Nedelja','Slovenia','SI','Mala Nedelja (Slovenia)',1,1,0),(26898,0,126942,'Mala Skala','Czech Republic','CZ','Mala Skala (Czech Republic)',1,1,0),(26899,0,126943,'Malabar Beach','Saint Lucia','LC','Malabar Beach (Saint Lucia)',1,1,0),(26900,0,126944,'Malansac','France','FR','Malansac (France)',1,1,0),(26901,0,126945,'Malapascua','Philippines','PH','Malapascua (Philippines)',1,1,0),(26902,0,126946,'Malaucene','France','FR','Malaucene (France)',1,1,0),(26903,0,126947,'Malcontenta','Italy','IT','Malcontenta (Italy)',1,1,0),(26904,16504,126948,'Malden','United States of America','US','Malden (United States of America)',1,1,0),(26905,16514,126949,'Malgrat de Mar','Spain','ES','Malgrat de Mar (Spain)',1,1,0),(26906,31886,126950,'Malia','Greece','GR','Malia (Greece)',1,1,0),(26907,0,126951,'Malicorne-sur-Sarthe','France','FR','Malicorne-sur-Sarthe (France)',1,1,0),(26908,16522,126952,'Mallacoota','Australia','AU','Mallacoota (Australia)',1,1,0),(26909,0,126953,'Malmesbury','United Kingdom','UK','Malmesbury (United Kingdom)',1,1,0),(26910,0,126954,'Malpartida de Plasencia','Spain','ES','Malpartida de Plasencia (Spain)',1,1,0),(26911,16562,126955,'Malta','United States of America','US','Malta (United States of America)',1,1,0),(26912,0,126956,'Malterdingen','Germany','DE','Malterdingen (Germany)',1,1,0),(26913,16569,126957,'Malung','Sweden','SE','Malung (Sweden)',1,1,0),(26914,0,126959,'Malvern East','Australia','AU','Malvern East (Australia)',1,1,0),(26915,16588,126960,'Manado','Indonesia','ID','Manado (Indonesia)',1,1,0),(26916,16591,126961,'Manakara','Madagascar','MG','Manakara (Madagascar)',1,1,0),(26917,0,126962,'Manchuli','China','CN','Manchuli (China)',1,1,0),(26918,0,126963,'Mancora','Peru','PE','Mancora (Peru)',1,1,0),(26919,0,126964,'Mandaue City','Philippines','PH','Mandaue City (Philippines)',1,1,0),(26920,0,126965,'Manebach','Germany','DE','Manebach (Germany)',1,1,0),(26921,0,126966,'Manhartsbrunn','Austria','AT','Manhartsbrunn (Austria)',1,1,0),(26922,0,126967,'Manhay','Belgium','BE','Manhay (Belgium)',1,1,0),(26923,0,126968,'Manitoulin Island','Canada','CA','Manitoulin Island (Canada)',1,1,0),(26924,16683,126969,'Manning','United States of America','US','Manning (United States of America)',1,1,0),(26925,0,126970,'Manorbier','United Kingdom','UK','Manorbier (United Kingdom)',1,1,0),(26926,0,126971,'Manou','France','FR','Manou (France)',1,1,0),(26927,16716,126972,'Many','United States of America','US','Many (United States of America)',1,1,0),(26928,0,126973,'Manzac-sur-Vern','France','FR','Manzac-sur-Vern (France)',1,1,0),(26929,0,126974,'Maple Ridge','Canada','CA','Maple Ridge (Canada)',1,1,0),(26930,16732,126975,'Maplewood','United States of America','US','Maplewood (United States of America)',1,1,0),(26931,16742,126976,'Maragogi','Brazil','BR','Maragogi (Brazil)',1,1,0),(26932,0,126977,'Marano di Valpolicella','Italy','IT','Marano di Valpolicella (Italy)',1,1,0),(26933,16756,126978,'Maratea','Italy','IT','Maratea (Italy)',1,1,0),(26934,16764,126979,'Maraval','Trinidad and Tobago','TT','Maraval (Trinidad and Tobago)',1,1,0),(26935,16771,126980,'Marblehead','United States of America','US','Marblehead (United States of America)',1,1,0),(26936,0,126981,'Marblehead','United States of America','US','Marblehead (United States of America)',1,1,0),(26937,16784,126982,'Marciana','Italy','IT','Marciana (Italy)',1,1,0),(26938,0,126983,'Marciljani','Croatia','HR','Marciljani (Croatia)',1,1,0),(26939,16790,126984,'Marcoola','Australia','AU','Marcoola (Australia)',1,1,0),(26940,0,126985,'Margencel','France','FR','Margencel (France)',1,1,0),(26941,0,126986,'Margetshochheim','Germany','DE','Margetshochheim (Germany)',1,1,0),(26942,0,126987,'Margraten','Netherlands','NL','Margraten (Netherlands)',1,1,0),(26943,0,126988,'Maria Enzersdorf am Gebirge','Austria','AT','Maria Enzersdorf am Gebirge (Austria)',1,1,0),(26944,16825,126989,'Marianna','United States of America','US','Marianna (United States of America)',1,1,0),(26945,0,126990,'Marienmunster','Germany','DE','Marienmunster (Germany)',1,1,0),(26946,0,126991,'Marifjora','Norway','NO','Marifjora (Norway)',1,1,0),(26947,0,126992,'Marigot','Saint Martin (French part)','MF','Marigot (Saint Martin (French part))',1,1,0),(26948,16855,126993,'Marilia','Brazil','BR','Marilia (Brazil)',1,1,0),(26949,0,126994,'Marilleva 1440','Italy','IT','Marilleva 1440 (Italy)',1,1,0),(26950,0,126995,'Marina di Cardedu','Italy','IT','Marina di Cardedu (Italy)',1,1,0),(26951,31901,126996,'Marina di Carrara','Italy','IT','Marina di Carrara (Italy)',1,1,0),(26952,0,126997,'Marina di Frigule','Italy','IT','Marina di Frigule (Italy)',1,1,0),(26953,0,126998,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(26954,16869,126999,'Mariposa','United States of America','US','Mariposa (United States of America)',1,1,0),(26955,0,127000,'Markt Taschendorf','Germany','DE','Markt Taschendorf (Germany)',1,1,0),(26956,16885,127001,'Marktbreit','Germany','DE','Marktbreit (Germany)',1,1,0),(26957,0,127002,'Marktl am Inn','Germany','DE','Marktl am Inn (Germany)',1,1,0),(26958,0,127003,'Marktschellenberg','Germany','DE','Marktschellenberg (Germany)',1,1,0),(26959,16898,127004,'Marlin','United States of America','US','Marlin (United States of America)',1,1,0),(26960,0,127005,'Marly','Switzerland','CH','Marly (Switzerland)',1,1,0),(26961,0,127006,'Maroggia','Switzerland','CH','Maroggia (Switzerland)',1,1,0),(26962,16917,127007,'Maronia','Greece','GR','Maronia (Greece)',1,1,0),(26963,16918,127008,'Maroochydore','Australia','AU','Maroochydore (Australia)',1,1,0),(26964,0,127009,'Marsa Matrouh','Egypt','EG','Marsa Matrouh (Egypt)',1,1,0),(26965,16940,127010,'Marsascala','Malta','MT','Marsascala (Malta)',1,1,0),(26966,16960,127011,'Martel','France','FR','Martel (France)',1,1,0),(26967,16968,127012,'Martillac','France','FR','Martillac (France)',1,1,0),(26968,0,127013,'Martin-Eglise','France','FR','Martin-Eglise (France)',1,1,0),(26969,16980,127014,'Martinsville','United States of America','US','Martinsville (United States of America)',1,1,0),(26970,0,127015,'Martock','United Kingdom','UK','Martock (United Kingdom)',1,1,0),(26971,16999,127016,'Marystown','Canada','CA','Marystown (Canada)',1,1,0),(26972,0,127017,'Masachapa','Nicaragua','NI','Masachapa (Nicaragua)',1,1,0),(26973,0,127018,'Masalli','Azerbaijan','AZ','Masalli (Azerbaijan)',1,1,0),(26974,17018,127019,'Mascota','Mexico','MX','Mascota (Mexico)',1,1,0),(26975,17027,127020,'Mashantucket','United States of America','US','Mashantucket (United States of America)',1,1,0),(26976,17028,127021,'Mashhad','Iran','IR','Mashhad (Iran)',1,1,0),(26977,0,127022,'Mashteuiatsh','Canada','CA','Mashteuiatsh (Canada)',1,1,0),(26978,17047,127023,'Massarosa','Italy','IT','Massarosa (Italy)',1,1,0),(26979,17080,127024,'Matangi Island','Fiji Islands','FJ','Matangi Island (Fiji Islands)',1,1,0),(26980,0,127025,'Matara','Sri Lanka','LK','Matara (Sri Lanka)',1,1,0),(26981,17088,127026,'Matelica','Italy','IT','Matelica (Italy)',1,1,0),(26982,0,127027,'Matfen','United Kingdom','UK','Matfen (United Kingdom)',1,1,0),(26983,17103,127028,'Matrahaza','Hungary','HU','Matrahaza (Hungary)',1,1,0),(26984,0,127029,'Matraia','Italy','IT','Matraia (Italy)',1,1,0),(26985,17104,127030,'Matraszentimre','Hungary','HU','Matraszentimre (Hungary)',1,1,0),(26986,17106,127031,'Matrei','Austria','AT','Matrei (Austria)',1,1,0),(26987,17118,127032,'Matteson','United States of America','US','Matteson (United States of America)',1,1,0),(26988,0,127033,'Maui','United States of America','US','Maui (United States of America)',1,1,0),(26989,0,127034,'Maulbronn','Germany','DE','Maulbronn (Germany)',1,1,0),(26990,17169,127035,'Mauston','United States of America','US','Mauston (United States of America)',1,1,0),(26991,0,127036,'Mautern an der Donau','Austria','AT','Mautern an der Donau (Austria)',1,1,0),(26992,0,127037,'Mauthausen','Austria','AT','Mauthausen (Austria)',1,1,0),(26993,0,127038,'Maybole','United Kingdom','UK','Maybole (United Kingdom)',1,1,0),(26994,17206,127039,'Mazama','United States of America','US','Mazama (United States of America)',1,1,0),(26995,17211,127040,'Mazaricos','Spain','ES','Mazaricos (Spain)',1,1,0),(26996,17218,127041,'Mazzaro','Italy','IT','Mazzaro (Italy)',1,1,0),(26997,0,127042,'Luni Mare','Italy','IT','Luni Mare (Italy)',1,1,0),(26998,0,127043,'Luque','Paraguay','PY','Luque (Paraguay)',1,1,0),(26999,0,127044,'Lusen','Italy','IT','Lusen (Italy)',1,1,0),(27000,16126,127045,'Lusk','Ireland','IE','Lusk (Ireland)',1,1,0),(27001,0,127046,'Lus-la-Croix-Haute','France','FR','Lus-la-Croix-Haute (France)',1,1,0),(27002,16131,127047,'Luterbach','Switzerland','CH','Luterbach (Switzerland)',1,1,0),(27003,0,127048,'Lutterworth','United Kingdom','UK','Lutterworth (United Kingdom)',1,1,0),(27004,0,127049,'Lutz','Germany','DE','Lutz (Germany)',1,1,0),(27005,0,127050,'Lutzen','Germany','DE','Lutzen (Germany)',1,1,0),(27006,0,127051,'Lutzensommern','Germany','DE','Lutzensommern (Germany)',1,1,0),(27007,16144,127052,'Luverne','United States of America','US','Luverne (United States of America)',1,1,0),(27008,0,127053,'Luyego de Somoza','Spain','ES','Luyego de Somoza (Spain)',1,1,0),(27009,0,127054,'Lydenburg','South Africa','ZA','Lydenburg (South Africa)',1,1,0),(27010,16180,127055,'Lyndhurst','United States of America','US','Lyndhurst (United States of America)',1,1,0),(27011,0,127056,'Lyons','United States of America','US','Lyons (United States of America)',1,1,0),(27012,0,127057,'Maalefushi','Maldives','MV','Maalefushi (Maldives)',1,1,0),(27013,0,127058,'Machern','Germany','DE','Machern (Germany)',1,1,0),(27014,16253,127059,'Macinaggio','France','FR','Macinaggio (France)',1,1,0),(27015,16257,127060,'Mackinac Island','United States of America','US','Mackinac Island (United States of America)',1,1,0),(27016,0,127061,'Macload Island','Myanmar','MM','Macload Island (Myanmar)',1,1,0),(27017,16268,127062,'Macroom','Ireland','IE','Macroom (Ireland)',1,1,0),(27018,0,127063,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(27019,0,127064,'Madison Heights','United States of America','US','Madison Heights (United States of America)',1,1,0),(27020,16311,127065,'Madras','United States of America','US','Madras (United States of America)',1,1,0),(27021,0,127066,'Madseit','Austria','AT','Madseit (Austria)',1,1,0),(27022,0,127068,'Mae Hong Son','Thailand','TH','Mae Hong Son (Thailand)',1,1,0),(27023,0,127069,'Ma\'erkang','China','CN','Ma\'erkang (China)',1,1,0),(27024,16324,127070,'Maeystown','United States of America','US','Maeystown (United States of America)',1,1,0),(27025,16326,127071,'Maffliers','France','FR','Maffliers (France)',1,1,0),(27026,0,127072,'Mafra','Brazil','BR','Mafra (Brazil)',1,1,0),(27027,0,127073,'Magadan','Russia','RU','Magadan (Russia)',1,1,0),(27028,16333,127074,'Magaliesberg','South Africa','ZA','Magaliesberg (South Africa)',1,1,0),(27029,16334,127075,'Magaliesburg','South Africa','ZA','Magaliesburg (South Africa)',1,1,0),(27030,16344,127076,'Magee','United States of America','US','Magee (United States of America)',1,1,0),(27031,0,127077,'Magliano','Italy','IT','Magliano (Italy)',1,1,0),(27032,0,127078,'Magosa Famagusta','Cyprus','CY','Magosa Famagusta (Cyprus)',1,1,0),(27033,0,127079,'Magreglio','Italy','IT','Magreglio (Italy)',1,1,0),(27034,16385,127080,'Mahebourg','Mauritius','MU','Mahebourg (Mauritius)',1,1,0),(27035,0,127081,'Mahiljou','Belarus','BY','Mahiljou (Belarus)',1,1,0),(27036,0,127082,'Ma\'In Hot Springs','Jordan','JO','Ma\'In Hot Springs (Jordan)',1,1,0),(27037,16423,127083,'Maiquetia','Venezuela','VE','Maiquetia (Venezuela)',1,1,0),(27038,16426,127084,'Maishofen','Austria','AT','Maishofen (Austria)',1,1,0),(27039,16433,127085,'Maitland','United States of America','US','Maitland (United States of America)',1,1,0),(27040,0,127086,'Maizuru','Japan','JP','Maizuru (Japan)',1,1,0),(27041,0,127087,'Majanicho','Spain','ES','Majanicho (Spain)',1,1,0),(27042,0,127088,'Majete Wildlife Reserve','Malawi','MW','Majete Wildlife Reserve (Malawi)',1,1,0),(27043,0,127089,'Makhado','South Africa','ZA','Makhado (South Africa)',1,1,0),(27044,0,127090,'Mala','Spain','ES','Mala (Spain)',1,1,0),(27045,16479,127091,'Malacca','Malaysia','MY','Malacca (Malaysia)',1,1,0),(27046,0,127092,'Malacky','Slovakia','SK','Malacky (Slovakia)',1,1,0),(27047,0,127093,'Maladroscia','Italy','IT','Maladroscia (Italy)',1,1,0),(27048,16480,127094,'Malaga','Spain','ES','Malaga (Spain)',1,1,0),(27049,0,127095,'Malborghetto Valbruna','Italy','IT','Malborghetto Valbruna (Italy)',1,1,0),(27050,16508,127096,'Male','Maldives','MV','Male (Maldives)',1,1,0),(27051,16513,127097,'Malfa','Italy','IT','Malfa (Italy)',1,1,0),(27052,0,127098,'Malilangwe Wildlife Reserve','Zimbabwe','ZW','Malilangwe Wildlife Reserve (Zimbabwe)',1,1,0),(27053,16519,127099,'Malindi','Kenya','KE','Malindi (Kenya)',1,1,0),(27054,16524,127100,'Mallemort','France','FR','Mallemort (France)',1,1,0),(27055,16546,127101,'Mallow','Ireland','IE','Mallow (Ireland)',1,1,0),(27056,0,127102,'Malmkoping','Sweden','SE','Malmkoping (Sweden)',1,1,0),(27057,16552,127103,'Maloja','Switzerland','CH','Maloja (Switzerland)',1,1,0),(27058,0,127104,'Malosco','Italy','IT','Malosco (Italy)',1,1,0),(27059,0,127106,'Mals','Italy','IT','Mals (Italy)',1,1,0),(27060,16564,127107,'Maltepe','Turkey','TR','Maltepe (Turkey)',1,1,0),(27061,0,127108,'Malvern','United States of America','US','Malvern (United States of America)',1,1,0),(27062,0,127109,'Manchester Township','United States of America','US','Manchester Township (United States of America)',1,1,0),(27063,16615,127110,'Mandalong','Australia','AU','Mandalong (Australia)',1,1,0),(27064,0,127111,'Mandatoriccio','Italy','IT','Mandatoriccio (Italy)',1,1,0),(27065,0,127112,'Mandling','Austria','AT','Mandling (Austria)',1,1,0),(27066,16643,127114,'Manggis','Indonesia','ID','Manggis (Indonesia)',1,1,0),(27067,16645,127115,'Mangochi','Malawi','MW','Mangochi (Malawi)',1,1,0),(27068,16659,127116,'Manila','Philippines','PH','Manila (Philippines)',1,1,0),(27069,16668,127117,'Manitou Springs','United States of America','US','Manitou Springs (United States of America)',1,1,0),(27070,16682,127118,'Mannheim','Germany','DE','Mannheim (Germany)',1,1,0),(27071,0,127119,'Mansfield','United States of America','US','Mansfield (United States of America)',1,1,0),(27072,16694,127120,'Mansfield','Australia','AU','Mansfield (Australia)',1,1,0),(27073,16704,127121,'Manteno','United States of America','US','Manteno (United States of America)',1,1,0),(27074,0,127122,'Mantua','United States of America','US','Mantua (United States of America)',1,1,0),(27075,16712,127123,'Manuel Antonio','Costa Rica','CR','Manuel Antonio (Costa Rica)',1,1,0),(27076,0,127124,'Mapello','Italy','IT','Mapello (Italy)',1,1,0),(27077,0,127125,'Maple Falls','United States of America','US','Maple Falls (United States of America)',1,1,0),(27078,16739,127126,'Maraba','Brazil','BR','Maraba (Brazil)',1,1,0),(27079,16749,127127,'Marana','United States of America','US','Marana (United States of America)',1,1,0),(27080,0,127128,'Marano di Napoli','Italy','IT','Marano di Napoli (Italy)',1,1,0),(27081,0,127129,'Marathia','Greece','GR','Marathia (Greece)',1,1,0),(27082,0,127130,'Marathopolis','Greece','GR','Marathopolis (Greece)',1,1,0),(27083,0,127131,'Marathoupoli','Greece','GR','Marathoupoli (Greece)',1,1,0),(27084,0,127132,'Marbach','Switzerland','CH','Marbach (Switzerland)',1,1,0),(27085,16768,127133,'Marbella','Spain','ES','Marbella (Spain)',1,1,0),(27086,0,127134,'Marble Hall','South Africa','ZA','Marble Hall (South Africa)',1,1,0),(27087,16782,127135,'Marciaga','Italy','IT','Marciaga (Italy)',1,1,0),(27088,0,127136,'Marckolsheim','France','FR','Marckolsheim (France)',1,1,0),(27089,16788,127137,'Marco Island','United States of America','US','Marco Island (United States of America)',1,1,0),(27090,0,127138,'Margate','United Kingdom','UK','Margate (United Kingdom)',1,1,0),(27091,16813,127139,'Margaux','France','FR','Margaux (France)',1,1,0),(27092,16817,127140,'Margon','France','FR','Margon (France)',1,1,0),(27093,0,127141,'Maria Luggau','Austria','AT','Maria Luggau (Austria)',1,1,0),(27094,0,127142,'Maria Neustift','Austria','AT','Maria Neustift (Austria)',1,1,0),(27095,0,127143,'Maria Saal','Austria','AT','Maria Saal (Austria)',1,1,0),(27096,0,127144,'Maricana Marina','Italy','IT','Maricana Marina (Italy)',1,1,0),(27097,16839,127145,'Marieholm','Sweden','SE','Marieholm (Sweden)',1,1,0),(27098,0,127146,'Marielyst','Denmark','DK','Marielyst (Denmark)',1,1,0),(27099,0,127147,'Marienburg','Poland','PL','Marienburg (Poland)',1,1,0),(27100,16843,127148,'Marienheide','Germany','DE','Marienheide (Germany)',1,1,0),(27101,16844,127149,'Mariental','Namibia','NA','Mariental (Namibia)',1,1,0),(27102,0,127150,'Marina','Croatia','HR','Marina (Croatia)',1,1,0),(27103,0,127151,'Marina di Bibbona','Italy','IT','Marina di Bibbona (Italy)',1,1,0),(27104,0,127152,'Marina di Castagneto','Italy','IT','Marina di Castagneto (Italy)',1,1,0),(27105,0,127153,'Megali Mantinia','Greece','GR','Megali Mantinia (Greece)',1,1,0),(27106,0,127154,'Megalo Chorio','Greece','GR','Megalo Chorio (Greece)',1,1,0),(27107,0,127155,'Meistervik','Norway','NO','Meistervik (Norway)',1,1,0),(27108,0,127156,'Melbourne','United States of America','US','Melbourne (United States of America)',1,1,0),(27109,17363,127157,'Melbu','Norway','NO','Melbu (Norway)',1,1,0),(27110,17370,127158,'Melgar','Colombia','CO','Melgar (Colombia)',1,1,0),(27111,17372,127159,'Melilla','Spain','ES','Melilla (Spain)',1,1,0),(27112,0,127160,'Melkbosstrand','South Africa','ZA','Melkbosstrand (South Africa)',1,1,0),(27113,0,127161,'Melnik','Czech Republic','CZ','Melnik (Czech Republic)',1,1,0),(27114,0,127162,'Mels','Switzerland','CH','Mels (Switzerland)',1,1,0),(27115,17399,127163,'Melun','France','FR','Melun (France)',1,1,0),(27116,0,127164,'Memmingerberg','Germany','DE','Memmingerberg (Germany)',1,1,0),(27117,0,127165,'Meppen','Netherlands','NL','Meppen (Netherlands)',1,1,0),(27118,0,127166,'Merana','Italy','IT','Merana (Italy)',1,1,0),(27119,0,127167,'Meranges','Spain','ES','Meranges (Spain)',1,1,0),(27120,0,127168,'Merano','Italy','IT','Merano (Italy)',1,1,0),(27121,17468,127169,'Merauke','Indonesia','ID','Merauke (Indonesia)',1,1,0),(27122,0,127170,'Meriden','United Kingdom','UK','Meriden (United Kingdom)',1,1,0),(27123,0,127171,'Merville-Franceville-Plage','France','FR','Merville-Franceville-Plage (France)',1,1,0),(27124,17527,127172,'Merzig','Germany','DE','Merzig (Germany)',1,1,0),(27125,0,127173,'Mesa','United States of America','US','Mesa (United States of America)',1,1,0),(27126,0,127174,'Mesenich','Germany','DE','Mesenich (Germany)',1,1,0),(27127,0,127175,'Mesogi','Greece','GR','Mesogi (Greece)',1,1,0),(27128,0,127176,'Messila','Finland','FI','Messila (Finland)',1,1,0),(27129,17547,127177,'Messinia','Greece','GR','Messinia (Greece)',1,1,0),(27130,0,127178,'Metato','Italy','IT','Metato (Italy)',1,1,0),(27131,17560,127179,'Methoni','Greece','GR','Methoni (Greece)',1,1,0),(27132,17563,127180,'Methven','New Zealand','NZ','Methven (New Zealand)',1,1,0),(27133,17569,127181,'Mettawa','United States of America','US','Mettawa (United States of America)',1,1,0),(27134,0,127182,'Metulla','Israel','IL','Metulla (Israel)',1,1,0),(27135,0,127183,'Meung-sur-Loire','France','FR','Meung-sur-Loire (France)',1,1,0),(27136,17601,127184,'Mezzegra','Italy','IT','Mezzegra (Italy)',1,1,0),(27137,0,127185,'Mfue','Zambia','ZM','Mfue (Zambia)',1,1,0),(27138,0,127186,'Miami','Australia','AU','Miami (Australia)',1,1,0),(27139,0,127187,'Middelkerke','Belgium','BE','Middelkerke (Belgium)',1,1,0),(27140,17631,127188,'Middlebury','United States of America','US','Middlebury (United States of America)',1,1,0),(27141,0,127189,'Middlesbrough','United Kingdom','UK','Middlesbrough (United Kingdom)',1,1,0),(27142,0,127190,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(27143,0,127191,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(27144,0,127192,'Midlum','Germany','DE','Midlum (Germany)',1,1,0),(27145,17652,127193,'Midrand','South Africa','ZA','Midrand (South Africa)',1,1,0),(27146,17656,127194,'Midvale','United States of America','US','Midvale (United States of America)',1,1,0),(27147,0,127195,'Midyat','Turkey','TR','Midyat (Turkey)',1,1,0),(27148,17661,127196,'Miedzyzdroje','Poland','PL','Miedzyzdroje (Poland)',1,1,0),(27149,0,127197,'Mielec','Poland','PL','Mielec (Poland)',1,1,0),(27150,17672,127198,'Mifflinville','United States of America','US','Mifflinville (United States of America)',1,1,0),(27151,17673,127199,'Migliarino','Italy','IT','Migliarino (Italy)',1,1,0),(27152,0,127200,'Miguelturra','Spain','ES','Miguelturra (Spain)',1,1,0),(27153,17676,127201,'Mihara','Japan','JP','Mihara (Japan)',1,1,0),(27154,0,127202,'Milan','United States of America','US','Milan (United States of America)',1,1,0),(27155,17691,127203,'Milbank','United States of America','US','Milbank (United States of America)',1,1,0),(27156,0,127204,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27157,0,127205,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27158,0,127206,'Milford on Sea','United Kingdom','UK','Milford on Sea (United Kingdom)',1,1,0),(27159,17717,127207,'Millen','United States of America','US','Millen (United States of America)',1,1,0),(27160,17718,127208,'Miller','United States of America','US','Miller (United States of America)',1,1,0),(27161,0,127209,'Milna','Croatia','HR','Milna (Croatia)',1,1,0),(27162,0,127210,'Minamiboso','Japan','JP','Minamiboso (Japan)',1,1,0),(27163,17765,127211,'Minden','United States of America','US','Minden (United States of America)',1,1,0),(27164,17769,127212,'Mineola','United States of America','US','Mineola (United States of America)',1,1,0),(27165,17783,127213,'Minneapolis','United States of America','US','Minneapolis (United States of America)',1,1,0),(27166,0,127214,'Mioveni','Romania','RO','Mioveni (Romania)',1,1,0),(27167,0,127215,'Mira','Portugal','PT','Mira (Portugal)',1,1,0),(27168,17815,127216,'Miramare','Italy','IT','Miramare (Italy)',1,1,0),(27169,0,127217,'Miranda del Castanar','Spain','ES','Miranda del Castanar (Spain)',1,1,0),(27170,0,127218,'Miranda do Corvo','Portugal','PT','Miranda do Corvo (Portugal)',1,1,0),(27171,17823,127219,'Miranda do Douro','Portugal','PT','Miranda do Douro (Portugal)',1,1,0),(27172,17824,127220,'Mirandela','Portugal','PT','Mirandela (Portugal)',1,1,0),(27173,17828,127221,'Miremont','France','FR','Miremont (France)',1,1,0),(27174,17834,127222,'Mirihi','Maldives','MV','Mirihi (Maldives)',1,1,0),(27175,0,127223,'Mirissa','Sri Lanka','LK','Mirissa (Sri Lanka)',1,1,0),(27176,17839,127224,'Misano Adriatico','Italy','IT','Misano Adriatico (Italy)',1,1,0),(27177,17851,127225,'Mission','Canada','CA','Mission (Canada)',1,1,0),(27178,17852,127226,'Mississauga','Canada','CA','Mississauga (Canada)',1,1,0),(27179,17859,127227,'Mistretta','Italy','IT','Mistretta (Italy)',1,1,0),(27180,0,127228,'Mitterfirmiansreuth','Germany','DE','Mitterfirmiansreuth (Germany)',1,1,0),(27181,0,127229,'Mitterkirchen im Machland','Austria','AT','Mitterkirchen im Machland (Austria)',1,1,0),(27182,0,127230,'Mittweida','Germany','DE','Mittweida (Germany)',1,1,0),(27183,17889,127231,'Miyazaki','Japan','JP','Miyazaki (Japan)',1,1,0),(27184,31953,127232,'Mo i Rana','Norway','NO','Mo i Rana (Norway)',1,1,0),(27185,0,127233,'Modena','Italy','IT','Modena (Italy)',1,1,0),(27186,17920,127234,'Modlnica','Poland','PL','Modlnica (Poland)',1,1,0),(27187,0,127235,'Mogami','Japan','JP','Mogami (Japan)',1,1,0),(27188,17933,127236,'Moggiona','Italy','IT','Moggiona (Italy)',1,1,0),(27189,0,127237,'Mohlos','Greece','GR','Mohlos (Greece)',1,1,0),(27190,0,127238,'Mohrkirch','Germany','DE','Mohrkirch (Germany)',1,1,0),(27191,17953,127239,'Moirans','France','FR','Moirans (France)',1,1,0),(27192,17954,127240,'Moissac','France','FR','Moissac (France)',1,1,0),(27193,0,127241,'Mojkovac','Montenegro','ME','Mojkovac (Montenegro)',1,1,0),(27194,0,127242,'Molbergen','Germany','DE','Molbergen (Germany)',1,1,0),(27195,0,127243,'Mole','Ghana','GH','Mole (Ghana)',1,1,0),(27196,0,127244,'Molfetta','Italy','IT','Molfetta (Italy)',1,1,0),(27197,0,127245,'Molines-en-Queyras','France','FR','Molines-en-Queyras (France)',1,1,0),(27198,17989,127246,'Mollkirch','France','FR','Mollkirch (France)',1,1,0),(27199,18000,127247,'Mombaruzzo','Italy','IT','Mombaruzzo (Italy)',1,1,0),(27200,0,127248,'Mombasa','Tanzania','TZ','Mombasa (Tanzania)',1,1,0),(27201,18001,127249,'Mombasa','Kenya','KE','Mombasa (Kenya)',1,1,0),(27202,0,127250,'Mompia','Spain','ES','Mompia (Spain)',1,1,0),(27203,0,127251,'Monchberg','Germany','DE','Monchberg (Germany)',1,1,0),(27204,0,127252,'Moncrabeau','France','FR','Moncrabeau (France)',1,1,0),(27205,18039,127253,'Moncucco Torinese','Italy','IT','Moncucco Torinese (Italy)',1,1,0),(27206,0,127254,'Mondavio','Italy','IT','Mondavio (Italy)',1,1,0),(27207,18071,127255,'Monfortinho','Portugal','PT','Monfortinho (Portugal)',1,1,0),(27208,0,127256,'Monichwald','Austria','AT','Monichwald (Austria)',1,1,0),(27209,0,127257,'Monkebude','Germany','DE','Monkebude (Germany)',1,1,0),(27210,0,127258,'Monki','Poland','PL','Monki (Poland)',1,1,0),(27211,0,127259,'Monmouth Junction','United States of America','US','Monmouth Junction (United States of America)',1,1,0),(27212,18089,127260,'Monodendri','Greece','GR','Monodendri (Greece)',1,1,0),(27213,0,127261,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(27214,18096,127262,'Monrovia','United States of America','US','Monrovia (United States of America)',1,1,0),(27215,0,127263,'Mons','France','FR','Mons (France)',1,1,0),(27216,18102,127264,'Monschau','Germany','DE','Monschau (Germany)',1,1,0),(27217,0,127265,'Monsummano Terme','Italy','IT','Monsummano Terme (Italy)',1,1,0),(27218,0,127266,'Mont Albert','Australia','AU','Mont Albert (Australia)',1,1,0),(27219,31828,127267,'Lock Haven','United States of America','US','Lock Haven (United States of America)',1,1,0),(27220,15764,127268,'Loddekopinge','Sweden','SE','Loddekopinge (Sweden)',1,1,0),(27221,0,127269,'Lods','France','FR','Lods (France)',1,1,0),(27222,15778,127270,'Lofsdalen','Sweden','SE','Lofsdalen (Sweden)',1,1,0),(27223,15785,127271,'Logrono','Spain','ES','Logrono (Spain)',1,1,0),(27224,15791,127272,'Lohne','Germany','DE','Lohne (Germany)',1,1,0),(27225,15807,127273,'Lokva Rogoznica','Croatia','HR','Lokva Rogoznica (Croatia)',1,1,0),(27226,0,127274,'Lonay','Switzerland','CH','Lonay (Switzerland)',1,1,0),(27227,0,127275,'Long Bay Beach','British Virgin Islands','VG','Long Bay Beach (British Virgin Islands)',1,1,0),(27228,0,127276,'Long Beach Township','United States of America','US','Long Beach Township (United States of America)',1,1,0),(27229,15843,127277,'Long Island','Bahamas','BS','Long Island (Bahamas)',1,1,0),(27230,0,127278,'Longniddry','United Kingdom','UK','Longniddry (United Kingdom)',1,1,0),(27231,15879,127279,'Lons-le-Saunier','France','FR','Lons-le-Saunier (France)',1,1,0),(27232,0,127280,'Loohorst','Netherlands','NL','Loohorst (Netherlands)',1,1,0),(27233,15905,127281,'Lorient','France','FR','Lorient (France)',1,1,0),(27234,15910,127282,'Lorne','Australia','AU','Lorne (Australia)',1,1,0),(27235,0,127283,'Lorqui','Spain','ES','Lorqui (Spain)',1,1,0),(27236,0,127284,'Los Alamos','United States of America','US','Los Alamos (United States of America)',1,1,0),(27237,0,127285,'Los Angeles','Chile','CL','Los Angeles (Chile)',1,1,0),(27238,31840,127286,'Los Angeles de San Rafael','Spain','ES','Los Angeles de San Rafael (Spain)',1,1,0),(27239,0,127287,'Los Cortos','Spain','ES','Los Cortos (Spain)',1,1,0),(27240,31857,127288,'Los Gigantes','Spain','ES','Los Gigantes (Spain)',1,1,0),(27241,0,127289,'Los Menores','Spain','ES','Los Menores (Spain)',1,1,0),(27242,31862,127290,'Los Olivos','United States of America','US','Los Olivos (United States of America)',1,1,0),(27243,0,127291,'Los Quemados','Spain','ES','Los Quemados (Spain)',1,1,0),(27244,0,127292,'Losevo','Russia','RU','Losevo (Russia)',1,1,0),(27245,0,127293,'Lost River','United States of America','US','Lost River (United States of America)',1,1,0),(27246,0,127294,'Loubaresse','France','FR','Loubaresse (France)',1,1,0),(27247,0,127295,'Loucna-Klinovec','Czech Republic','CZ','Loucna-Klinovec (Czech Republic)',1,1,0),(27248,15931,127296,'Loudeac','France','FR','Loudeac (France)',1,1,0),(27249,0,127297,'Loudon','United States of America','US','Loudon (United States of America)',1,1,0),(27250,15941,127298,'Louhans','France','FR','Louhans (France)',1,1,0),(27251,15943,127299,'Louisa','United States of America','US','Louisa (United States of America)',1,1,0),(27252,15945,127300,'Louisburg','United States of America','US','Louisburg (United States of America)',1,1,0),(27253,15948,127301,'Louisville','United States of America','US','Louisville (United States of America)',1,1,0),(27254,0,127302,'Lourinha','Portugal','PT','Lourinha (Portugal)',1,1,0),(27255,0,127303,'Lousal','Portugal','PT','Lousal (Portugal)',1,1,0),(27256,0,127304,'Louveigne','Belgium','BE','Louveigne (Belgium)',1,1,0),(27257,0,127305,'Lowell','United States of America','US','Lowell (United States of America)',1,1,0),(27258,15992,127306,'Loxton','Australia','AU','Loxton (Australia)',1,1,0),(27259,0,127307,'Lubben','Germany','DE','Lubben (Germany)',1,1,0),(27260,16003,127308,'Lubbock','United States of America','US','Lubbock (United States of America)',1,1,0),(27261,16004,127309,'Lubeck','Germany','DE','Lubeck (Germany)',1,1,0),(27262,0,127310,'Lubin','Poland','PL','Lubin (Poland)',1,1,0),(27263,16013,127311,'Lucas do Rio Verde','Brazil','BR','Lucas do Rio Verde (Brazil)',1,1,0),(27264,16017,127312,'Lucea','Jamaica','JM','Lucea (Jamaica)',1,1,0),(27265,0,127313,'Lucinasco','Italy','IT','Lucinasco (Italy)',1,1,0),(27266,0,127314,'Lucolena','Italy','IT','Lucolena (Italy)',1,1,0),(27267,0,127315,'Ludersburg','Germany','DE','Ludersburg (Germany)',1,1,0),(27268,0,127316,'Ludersdorf','Germany','DE','Ludersdorf (Germany)',1,1,0),(27269,0,127317,'Ludorf-Zielow','Germany','DE','Ludorf-Zielow (Germany)',1,1,0),(27270,16039,127318,'Ludwigsburg','Germany','DE','Ludwigsburg (Germany)',1,1,0),(27271,16042,127319,'Ludwigslust','Germany','DE','Ludwigslust (Germany)',1,1,0),(27272,16049,127320,'Lufkin','United States of America','US','Lufkin (United States of America)',1,1,0),(27273,16050,127321,'Lugagnano','Italy','IT','Lugagnano (Italy)',1,1,0),(27274,16051,127322,'Lugang','Taiwan','TW','Lugang (Taiwan)',1,1,0),(27275,16057,127323,'Lugoff','United States of America','US','Lugoff (United States of America)',1,1,0),(27276,16065,127324,'Lujiang','China','CN','Lujiang (China)',1,1,0),(27277,0,127325,'Lukovit','Bulgaria','BG','Lukovit (Bulgaria)',1,1,0),(27278,16083,127326,'Lumio','France','FR','Lumio (France)',1,1,0),(27279,0,127327,'Lurschau','Germany','DE','Lurschau (Germany)',1,1,0),(27280,16122,127328,'Lushan','China','CN','Lushan (China)',1,1,0),(27281,16141,127329,'Lutz','United States of America','US','Lutz (United States of America)',1,1,0),(27282,0,127330,'Lybster','United Kingdom','UK','Lybster (United Kingdom)',1,1,0),(27283,0,127331,'Lymington','United Kingdom','UK','Lymington (United Kingdom)',1,1,0),(27284,0,127332,'Lyngby','Denmark','DK','Lyngby (Denmark)',1,1,0),(27285,16215,127333,'Maarsbergen','Netherlands','NL','Maarsbergen (Netherlands)',1,1,0),(27286,0,127334,'Maasholm - Bad','Germany','DE','Maasholm - Bad (Germany)',1,1,0),(27287,0,127335,'Maastrich','Netherlands','NL','Maastrich (Netherlands)',1,1,0),(27288,0,127336,'Macchia di Ferrandina','Italy','IT','Macchia di Ferrandina (Italy)',1,1,0),(27289,0,127337,'Machynlleth','United Kingdom','UK','Machynlleth (United Kingdom)',1,1,0),(27290,16258,127338,'Mackinaw City','United States of America','US','Mackinaw City (United States of America)',1,1,0),(27291,0,127339,'Madeira Beach','United States of America','US','Madeira Beach (United States of America)',1,1,0),(27292,0,127340,'Madinah','Saudi Arabia','SA','Madinah (Saudi Arabia)',1,1,0),(27293,16303,127341,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(27294,0,127342,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(27295,0,127344,'Madulain','Switzerland','CH','Madulain (Switzerland)',1,1,0),(27296,0,127345,'Mae Sot','Thailand','TH','Mae Sot (Thailand)',1,1,0),(27297,16343,127346,'Magdeburg','Germany','DE','Magdeburg (Germany)',1,1,0),(27298,0,127347,'Magura','Romania','RO','Magura (Romania)',1,1,0),(27299,0,127348,'Maiernigg','Austria','AT','Maiernigg (Austria)',1,1,0),(27300,0,127349,'Maikammer','Germany','DE','Maikammer (Germany)',1,1,0),(27301,0,127350,'Maisach','Germany','DE','Maisach (Germany)',1,1,0),(27302,0,127351,'Majaelrayo','Spain','ES','Majaelrayo (Spain)',1,1,0),(27303,16453,127353,'Makarska','Croatia','HR','Makarska (Croatia)',1,1,0),(27304,16457,127354,'Makemo','French Polynesia','PF','Makemo (French Polynesia)',1,1,0),(27305,0,127355,'Malabu','New Caledonia','NC','Malabu (New Caledonia)',1,1,0),(27306,16488,127356,'Malamocco','Italy','IT','Malamocco (Italy)',1,1,0),(27307,0,127357,'Malay-le-Petit','France','FR','Malay-le-Petit (France)',1,1,0),(27308,16509,127358,'Malelane','South Africa','ZA','Malelane (South Africa)',1,1,0),(27309,0,127359,'Maleville','France','FR','Maleville (France)',1,1,0),(27310,0,127360,'Malga Ciapela','Italy','IT','Malga Ciapela (Italy)',1,1,0),(27311,16526,127361,'Mallnitz','Austria','AT','Mallnitz (Austria)',1,1,0),(27312,0,127362,'Malpils','Latvia','LV','Malpils (Latvia)',1,1,0),(27313,0,127363,'Malselv','Norway','NO','Malselv (Norway)',1,1,0),(27314,0,127364,'Malta','Austria','AT','Malta (Austria)',1,1,0),(27315,0,127365,'Maltezana','Greece','GR','Maltezana (Greece)',1,1,0),(27316,0,127366,'Mamanuca-Inseln','Fiji Islands','FJ','Mamanuca-Inseln (Fiji Islands)',1,1,0),(27317,16589,127367,'Managua','Nicaragua','NI','Managua (Nicaragua)',1,1,0),(27318,0,127368,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(27319,16609,127369,'Manching','Germany','DE','Manching (Germany)',1,1,0),(27320,16623,127370,'Mandeville','Jamaica','JM','Mandeville (Jamaica)',1,1,0),(27321,16625,127371,'Mandjala','Estonia','EE','Mandjala (Estonia)',1,1,0),(27322,0,127372,'Mandre','Croatia','HR','Mandre (Croatia)',1,1,0),(27323,16630,127373,'Manduria','Italy','IT','Manduria (Italy)',1,1,0),(27324,16631,127374,'Manerba del Garda','Italy','IT','Manerba del Garda (Italy)',1,1,0),(27325,16636,127375,'Mangalia','Romania','RO','Mangalia (Romania)',1,1,0),(27326,0,127376,'Madison Heights','United States of America','US','Madison Heights (United States of America)',1,1,0),(27327,0,127377,'Madisonville','United States of America','US','Madisonville (United States of America)',1,1,0),(27328,0,127378,'Madlitz-Wilmersdorf','Germany','DE','Madlitz-Wilmersdorf (Germany)',1,1,0),(27329,0,127379,'Madonas Novads','Latvia','LV','Madonas Novads (Latvia)',1,1,0),(27330,0,127380,'Madonna dell\'Albero','Italy','IT','Madonna dell\'Albero (Italy)',1,1,0),(27331,0,127381,'Madrigal de las Altas Torres','Spain','ES','Madrigal de las Altas Torres (Spain)',1,1,0),(27332,0,127382,'Mae Sariang','Thailand','TH','Mae Sariang (Thailand)',1,1,0),(27333,0,127383,'Maenam Beach','Thailand','TH','Maenam Beach (Thailand)',1,1,0),(27334,0,127384,'Magnisia','Greece','GR','Magnisia (Greece)',1,1,0),(27335,16367,127385,'Magny-Cours','France','FR','Magny-Cours (France)',1,1,0),(27336,0,127386,'Maho Beach','Sint Maarten (Dutch part)','SX','Maho Beach (Sint Maarten (Dutch part))',1,1,0),(27337,0,127387,'Mahonda','Tanzania','TZ','Mahonda (Tanzania)',1,1,0),(27338,16399,127388,'Maia','Portugal','PT','Maia (Portugal)',1,1,0),(27339,0,127389,'Maia de Montcal','Spain','ES','Maia de Montcal (Spain)',1,1,0),(27340,16424,127390,'Mairena del Aljarafe','Spain','ES','Mairena del Aljarafe (Spain)',1,1,0),(27341,16428,127391,'Maisons-Alfort','France','FR','Maisons-Alfort (France)',1,1,0),(27342,16473,127392,'Mal Pais','Costa Rica','CR','Mal Pais (Costa Rica)',1,1,0),(27343,16482,127393,'Malahat','Canada','CA','Malahat (Canada)',1,1,0),(27344,16485,127394,'Malakoff','France','FR','Malakoff (France)',1,1,0),(27345,0,127395,'Malawi See','Malawi','MW','Malawi See (Malawi)',1,1,0),(27346,0,127396,'Malaxa','Greece','GR','Malaxa (Greece)',1,1,0),(27347,16502,127397,'Malcesine','Italy','IT','Malcesine (Italy)',1,1,0),(27348,16503,127398,'Malchow','Germany','DE','Malchow (Germany)',1,1,0),(27349,0,127399,'Maldon','United Kingdom','UK','Maldon (United Kingdom)',1,1,0),(27350,0,127400,'Malilla','Sweden','SE','Malilla (Sweden)',1,1,0),(27351,0,127401,'Malix','Switzerland','CH','Malix (Switzerland)',1,1,0),(27352,0,127402,'Malvilliers','Switzerland','CH','Malvilliers (Switzerland)',1,1,0),(27353,0,127403,'Mamora Bay','Antigua & Barbuda','AG','Mamora Bay (Antigua & Barbuda)',1,1,0),(27354,0,127404,'Mana Pools National Park','Zimbabwe','ZW','Mana Pools National Park (Zimbabwe)',1,1,0),(27355,0,127405,'Manabi','Ecuador','EC','Manabi (Ecuador)',1,1,0),(27356,16590,127406,'Manahawkin','United States of America','US','Manahawkin (United States of America)',1,1,0),(27357,16598,127407,'Manapouri','New Zealand','NZ','Manapouri (New Zealand)',1,1,0),(27358,16600,127408,'Manasquan','United States of America','US','Manasquan (United States of America)',1,1,0),(27359,16605,127409,'Manawa','United States of America','US','Manawa (United States of America)',1,1,0),(27360,0,127410,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(27361,0,127411,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(27362,0,127412,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(27363,16611,127413,'Mancos','United States of America','US','Mancos (United States of America)',1,1,0),(27364,0,127414,'Manda Wilderness Gebiet','Mozambique','MZ','Manda Wilderness Gebiet (Mozambique)',1,1,0),(27365,16613,127415,'Mandal','Norway','NO','Mandal (Norway)',1,1,0),(27366,16614,127416,'Mandalay','Myanmar','MM','Mandalay (Myanmar)',1,1,0),(27367,0,127417,'Manderen','France','FR','Manderen (France)',1,1,0),(27368,16632,127418,'Manerbio','Italy','IT','Manerbio (Italy)',1,1,0),(27369,16655,127419,'Manheim','United States of America','US','Manheim (United States of America)',1,1,0),(27370,16672,127420,'Maniwaki','Canada','CA','Maniwaki (Canada)',1,1,0),(27371,16675,127421,'Manjimup','Australia','AU','Manjimup (Australia)',1,1,0),(27372,0,127422,'Manjur','China','CN','Manjur (China)',1,1,0),(27373,0,127423,'Manning Provincia Park','Canada','CA','Manning Provincia Park (Canada)',1,1,0),(27374,16684,127424,'Mannum','Australia','AU','Mannum (Australia)',1,1,0),(27375,0,127425,'Mansfield','United Kingdom','UK','Mansfield (United Kingdom)',1,1,0),(27376,16699,127426,'Manta','Ecuador','EC','Manta (Ecuador)',1,1,0),(27377,16702,127427,'Manteigas','Portugal','PT','Manteigas (Portugal)',1,1,0),(27378,16703,127428,'Mantello','Italy','IT','Mantello (Italy)',1,1,0),(27379,16705,127429,'Manteo','United States of America','US','Manteo (United States of America)',1,1,0),(27380,0,127430,'Mantta-Vilppula','Finland','FI','Mantta-Vilppula (Finland)',1,1,0),(27381,16729,127431,'Maple Creek','Canada','CA','Maple Creek (Canada)',1,1,0),(27382,0,127432,'Maple Valley','United States of America','US','Maple Valley (United States of America)',1,1,0),(27383,0,127433,'Maputaland','South Africa','ZA','Maputaland (South Africa)',1,1,0),(27384,31893,127434,'Mar de las Pampas','Argentina','AR','Mar de las Pampas (Argentina)',1,1,0),(27385,16741,127435,'Maracay','Venezuela','VE','Maracay (Venezuela)',1,1,0),(27386,0,127436,'Marakele Nationalpark','South Africa','ZA','Marakele Nationalpark (South Africa)',1,1,0),(27387,16751,127437,'Maranello','Italy','IT','Maranello (Italy)',1,1,0),(27388,16752,127438,'Marang','Malaysia','MY','Marang (Malaysia)',1,1,0),(27389,16753,127439,'Marans','France','FR','Marans (France)',1,1,0),(27390,0,127440,'Marathias','Greece','GR','Marathias (Greece)',1,1,0),(27391,0,127441,'Marazion','United Kingdom','UK','Marazion (United Kingdom)',1,1,0),(27392,0,127442,'Marbach am Neckar','Germany','DE','Marbach am Neckar (Germany)',1,1,0),(27393,0,127443,'Marcelli di Numana','Italy','IT','Marcelli di Numana (Italy)',1,1,0),(27394,16792,127444,'Marcq-en-Baroeul','France','FR','Marcq-en-Baroeul (France)',1,1,0),(27395,0,127445,'Marea del Portillo','Cuba','CU','Marea del Portillo (Cuba)',1,1,0),(27396,0,127446,'Margarita Island','Venezuela','VE','Margarita Island (Venezuela)',1,1,0),(27397,0,127447,'Margreid an der Weinstra?e','Italy','IT','Margreid an der Weinstra?e (Italy)',1,1,0),(27398,0,127448,'Maria de la Salut','Spain','ES','Maria de la Salut (Spain)',1,1,0),(27399,0,127449,'Maria Lankowitz','Austria','AT','Maria Lankowitz (Austria)',1,1,0),(27400,0,127450,'Maria Rain','Austria','AT','Maria Rain (Austria)',1,1,0),(27401,0,127451,'Maria Worth','Austria','AT','Maria Worth (Austria)',1,1,0),(27402,0,127452,'Maria-Lanzendorf','Austria','AT','Maria-Lanzendorf (Austria)',1,1,0),(27403,0,127453,'Marianska','Czech Republic','CZ','Marianska (Czech Republic)',1,1,0),(27404,16826,127454,'Marianske Lazne','Czech Republic','CZ','Marianske Lazne (Czech Republic)',1,1,0),(27405,0,127455,'Mariastein','Austria','AT','Mariastein (Austria)',1,1,0),(27406,0,127456,'Marienstein','Germany','DE','Marienstein (Germany)',1,1,0),(27407,31911,127457,'Marina di Ostuni','Italy','IT','Marina di Ostuni (Italy)',1,1,0),(27408,0,127458,'Marina di Pisticci','Italy','IT','Marina di Pisticci (Italy)',1,1,0),(27409,0,127459,'Marina Vallarta','Mexico','MX','Marina Vallarta (Mexico)',1,1,0),(27410,0,127460,'Markelfingen','Germany','DE','Markelfingen (Germany)',1,1,0),(27411,16875,127461,'Markham','Canada','CA','Markham (Canada)',1,1,0),(27412,0,127462,'Markt Indersdorf','Germany','DE','Markt Indersdorf (Germany)',1,1,0),(27413,16889,127463,'Marl','Germany','DE','Marl (Germany)',1,1,0),(27414,16892,127464,'Marlborough','United States of America','US','Marlborough (United States of America)',1,1,0),(27415,0,127465,'Marlow','Germany','DE','Marlow (Germany)',1,1,0),(27416,16906,127466,'Marmande','France','FR','Marmande (France)',1,1,0),(27417,16914,127467,'Maro','Spain','ES','Maro (Spain)',1,1,0),(27418,16929,127468,'Marquise','France','FR','Marquise (France)',1,1,0),(27419,0,127469,'Marrakesch','Morocco','MA','Marrakesch (Morocco)',1,1,0),(27420,0,127470,'Marshfield','United States of America','US','Marshfield (United States of America)',1,1,0),(27421,16953,127471,'Marsolan','France','FR','Marsolan (France)',1,1,0),(27422,16965,127472,'Martigne-sur-Mayenne','France','FR','Martigne-sur-Mayenne (France)',1,1,0),(27423,16969,127473,'Martin','United States of America','US','Martin (United States of America)',1,1,0),(27424,0,127474,'Martinez','Argentina','AR','Martinez (Argentina)',1,1,0),(27425,0,127475,'Maruggio','Italy','IT','Maruggio (Italy)',1,1,0),(27426,16988,127476,'Marvejols','France','FR','Marvejols (France)',1,1,0),(27427,17000,127477,'Marysville','Australia','AU','Marysville (Australia)',1,1,0),(27428,0,127478,'Marzamemi','Italy','IT','Marzamemi (Italy)',1,1,0),(27429,17020,127479,'Mascoutah','United States of America','US','Mascoutah (United States of America)',1,1,0),(27430,0,127480,'Masdache','Spain','ES','Masdache (Spain)',1,1,0),(27431,0,127481,'Maser','Italy','IT','Maser (Italy)',1,1,0),(27432,0,127482,'Masi','Italy','IT','Masi (Italy)',1,1,0),(27433,0,127483,'Marco Simone','Italy','IT','Marco Simone (Italy)',1,1,0),(27434,16798,127484,'Marebello di Rimini','Italy','IT','Marebello di Rimini (Italy)',1,1,0),(27435,16808,127485,'Margaret River','Australia','AU','Margaret River (Australia)',1,1,0),(27436,0,127486,'Mariahof','Austria','AT','Mariahof (Austria)',1,1,0),(27437,0,127487,'Mariana','Brazil','BR','Mariana (Brazil)',1,1,0),(27438,16832,127488,'Maribor','Slovenia','SI','Maribor (Slovenia)',1,1,0),(27439,16836,127489,'Mariefred','Sweden','SE','Mariefred (Sweden)',1,1,0),(27440,16849,127490,'Marignane','France','FR','Marignane (France)',1,1,0),(27441,16852,127491,'Marigot Bay','Saint Lucia','LC','Marigot Bay (Saint Lucia)',1,1,0),(27442,16856,127492,'Marin','Spain','ES','Marin (Spain)',1,1,0),(27443,0,127493,'Marina di Grosseto','Italy','IT','Marina di Grosseto (Italy)',1,1,0),(27444,31907,127494,'Marina di Massa','Italy','IT','Marina di Massa (Italy)',1,1,0),(27445,31916,127495,'Marina di Ragusa','Italy','IT','Marina di Ragusa (Italy)',1,1,0),(27446,0,127496,'Marina di Sorso','Italy','IT','Marina di Sorso (Italy)',1,1,0),(27447,0,127497,'Maring-Noviand','Germany','DE','Maring-Noviand (Germany)',1,1,0),(27448,0,127498,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(27449,0,127499,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(27450,0,127500,'Markersbach','Germany','DE','Markersbach (Germany)',1,1,0),(27451,0,127501,'Market Harborough','United Kingdom','UK','Market Harborough (United Kingdom)',1,1,0),(27452,0,127502,'Marksuhl','Germany','DE','Marksuhl (Germany)',1,1,0),(27453,0,127503,'Marlia','Italy','IT','Marlia (Italy)',1,1,0),(27454,0,127504,'Marminiac','France','FR','Marminiac (France)',1,1,0),(27455,16921,127505,'Marotta','Italy','IT','Marotta (Italy)',1,1,0),(27456,0,127506,'Maroulas','Greece','GR','Maroulas (Greece)',1,1,0),(27457,0,127507,'Marquartstein','Germany','DE','Marquartstein (Germany)',1,1,0),(27458,16927,127508,'Marquette','United States of America','US','Marquette (United States of America)',1,1,0),(27459,16936,127509,'Marsa Alam','Egypt','EG','Marsa Alam (Egypt)',1,1,0),(27460,16948,127510,'Marshall','United States of America','US','Marshall (United States of America)',1,1,0),(27461,0,127511,'Marshall','United States of America','US','Marshall (United States of America)',1,1,0),(27462,0,127512,'Marshall','United States of America','US','Marshall (United States of America)',1,1,0),(27463,16949,127513,'Marshalls Creek','United States of America','US','Marshalls Creek (United States of America)',1,1,0),(27464,0,127514,'Marston','United Kingdom','UK','Marston (United Kingdom)',1,1,0),(27465,16967,127515,'Martigues','France','FR','Martigues (France)',1,1,0),(27466,16970,127516,'Martina Franca','Italy','IT','Martina Franca (Italy)',1,1,0),(27467,0,127517,'Martirano','Italy','IT','Martirano (Italy)',1,1,0),(27468,16987,127518,'Marvao','Portugal','PT','Marvao (Portugal)',1,1,0),(27469,0,127519,'Marysville','United States of America','US','Marysville (United States of America)',1,1,0),(27470,0,127520,'Maryville','United States of America','US','Maryville (United States of America)',1,1,0),(27471,0,127521,'Marzocca di Senigallia','Italy','IT','Marzocca di Senigallia (Italy)',1,1,0),(27472,0,127522,'Maslacq','France','FR','Maslacq (France)',1,1,0),(27473,0,127523,'Masoala','Madagascar','MG','Masoala (Madagascar)',1,1,0),(27474,0,127524,'Massa Martana','Italy','IT','Massa Martana (Italy)',1,1,0),(27475,17043,127525,'Massalfassar','Spain','ES','Massalfassar (Spain)',1,1,0),(27476,0,127526,'Massalubrense','Italy','IT','Massalubrense (Italy)',1,1,0),(27477,0,127527,'Mataelpino','Spain','ES','Mataelpino (Spain)',1,1,0),(27478,17083,127528,'Mataranka','Australia','AU','Mataranka (Australia)',1,1,0),(27479,0,127529,'Matlock','United Kingdom','UK','Matlock (United Kingdom)',1,1,0),(27480,0,127530,'Matobo National Park','Zimbabwe','ZW','Matobo National Park (Zimbabwe)',1,1,0),(27481,0,127531,'Matohanci','Croatia','HR','Matohanci (Croatia)',1,1,0),(27482,17101,127532,'Matosinhos','Portugal','PT','Matosinhos (Portugal)',1,1,0),(27483,0,127533,'Matouba','Guadeloupe','GP','Matouba (Guadeloupe)',1,1,0),(27484,17110,127534,'Matsue','Japan','JP','Matsue (Japan)',1,1,0),(27485,17113,127535,'Matsusaka','Japan','JP','Matsusaka (Japan)',1,1,0),(27486,17120,127536,'Matthews','United States of America','US','Matthews (United States of America)',1,1,0),(27487,17121,127537,'Mattinata','Italy','IT','Mattinata (Italy)',1,1,0),(27488,17130,127538,'Mauerbach','Austria','AT','Mauerbach (Austria)',1,1,0),(27489,17151,127539,'Maumere','Indonesia','ID','Maumere (Indonesia)',1,1,0),(27490,17158,127540,'Maurepas','France','FR','Maurepas (France)',1,1,0),(27491,0,127541,'Mauroux','France','FR','Mauroux (France)',1,1,0),(27492,0,127542,'Maurs La Jolie','France','FR','Maurs La Jolie (France)',1,1,0),(27493,0,127543,'Mautern in Steiermark','Austria','AT','Mautern in Steiermark (Austria)',1,1,0),(27494,17170,127544,'Mauterndorf','Austria','AT','Mauterndorf (Austria)',1,1,0),(27495,17183,127545,'Mayaguez','Puerto Rico','PR','Mayaguez (Puerto Rico)',1,1,0),(27496,17190,127546,'Mayfield','United States of America','US','Mayfield (United States of America)',1,1,0),(27497,17200,127547,'Mayrhofen','Austria','AT','Mayrhofen (Austria)',1,1,0),(27498,0,127548,'Mayscho?','Germany','DE','Mayscho? (Germany)',1,1,0),(27499,17205,127549,'Mazagon','Spain','ES','Mazagon (Spain)',1,1,0),(27500,17207,127550,'Mazamitla','Mexico','MX','Mazamitla (Mexico)',1,1,0),(27501,17208,127551,'Mazan','France','FR','Mazan (France)',1,1,0),(27502,17213,127552,'Mazarron','Spain','ES','Mazarron (Spain)',1,1,0),(27503,0,127553,'Mazeres (Ariege)','France','FR','Mazeres (Ariege) (France)',1,1,0),(27504,0,127554,'Mazkeret Batya','Israel','IL','Mazkeret Batya (Israel)',1,1,0),(27505,17223,127555,'Mbabane','Swaziland','SZ','Mbabane (Swaziland)',1,1,0),(27506,0,127556,'McGregor','United States of America','US','McGregor (United States of America)',1,1,0),(27507,0,127557,'McLean','United States of America','US','McLean (United States of America)',1,1,0),(27508,0,127558,'Mechow','Germany','DE','Mechow (Germany)',1,1,0),(27509,0,127559,'Meckenbeuren','Germany','DE','Meckenbeuren (Germany)',1,1,0),(27510,17298,127560,'Medesano','Italy','IT','Medesano (Italy)',1,1,0),(27511,0,127561,'Mediglia','Italy','IT','Mediglia (Italy)',1,1,0),(27512,17320,127562,'Meekatharra','Australia','AU','Meekatharra (Australia)',1,1,0),(27513,0,127563,'Meemu Atoll','Maldives','MV','Meemu Atoll (Maldives)',1,1,0),(27514,17331,127564,'Megas Gialos','Greece','GR','Megas Gialos (Greece)',1,1,0),(27515,17332,127565,'Megeve','France','FR','Megeve (France)',1,1,0),(27516,17342,127566,'Meilen','Switzerland','CH','Meilen (Switzerland)',1,1,0),(27517,0,127567,'Mekele','Ethiopia','ET','Mekele (Ethiopia)',1,1,0),(27518,0,127568,'Melchtal','Switzerland','CH','Melchtal (Switzerland)',1,1,0),(27519,0,127569,'Melgaco','Portugal','PT','Melgaco (Portugal)',1,1,0),(27520,0,127570,'Melidoni','Greece','GR','Melidoni (Greece)',1,1,0),(27521,17383,127571,'Mellerud','Sweden','SE','Mellerud (Sweden)',1,1,0),(27522,17411,127572,'Memphis','United States of America','US','Memphis (United States of America)',1,1,0),(27523,0,127573,'Memphis','United States of America','US','Memphis (United States of America)',1,1,0),(27524,0,127574,'Menaldum','Netherlands','NL','Menaldum (Netherlands)',1,1,0),(27525,0,127575,'Mendire','Indonesia','ID','Mendire (Indonesia)',1,1,0),(27526,17424,127576,'Mendota','United States of America','US','Mendota (United States of America)',1,1,0),(27527,17456,127577,'Menthon-Saint-Bernard','France','FR','Menthon-Saint-Bernard (France)',1,1,0),(27528,17474,127578,'Mercer','United States of America','US','Mercer (United States of America)',1,1,0),(27529,0,127579,'Merkendorf','Germany','DE','Merkendorf (Germany)',1,1,0),(27530,0,127580,'Merlines','France','FR','Merlines (France)',1,1,0),(27531,0,127581,'Mero','Dominica','DM','Mero (Dominica)',1,1,0),(27532,17515,127582,'Merseburg','Germany','DE','Merseburg (Germany)',1,1,0),(27533,17517,127583,'Mersing','Malaysia','MY','Mersing (Malaysia)',1,1,0),(27534,17519,127584,'Mertesdorf','Germany','DE','Mertesdorf (Germany)',1,1,0),(27535,0,127585,'Merville (Haute-Garonne)','France','FR','Merville (Haute-Garonne) (France)',1,1,0),(27536,17531,127586,'Mesao Frio','Portugal','PT','Mesao Frio (Portugal)',1,1,0),(27537,17535,127587,'Mesnil-Saint-Pere','France','FR','Mesnil-Saint-Pere (France)',1,1,0),(27538,17540,127588,'Mesquite','United States of America','US','Mesquite (United States of America)',1,1,0),(27539,0,127589,'Messolongi','Greece','GR','Messolongi (Greece)',1,1,0),(27540,17557,127590,'Metaponto','Italy','IT','Metaponto (Italy)',1,1,0),(27541,0,127591,'Meuro','Germany','DE','Meuro (Germany)',1,1,0),(27542,0,127592,'Meursault','France','FR','Meursault (France)',1,1,0),(27543,0,127593,'Miami South Beach','United States of America','US','Miami South Beach (United States of America)',1,1,0),(27544,17391,127594,'Melrose','United States of America','US','Melrose (United States of America)',1,1,0),(27545,17408,127595,'Memmelsdorf','Germany','DE','Memmelsdorf (Germany)',1,1,0),(27546,0,127596,'Menai Bay','Tanzania','TZ','Menai Bay (Tanzania)',1,1,0),(27547,0,127597,'Menges','Slovenia','SI','Menges (Slovenia)',1,1,0),(27548,17436,127598,'Mengzi','China','CN','Mengzi (China)',1,1,0),(27549,17459,127599,'Mentor','United States of America','US','Mentor (United States of America)',1,1,0),(27550,0,127600,'Menz','Germany','DE','Menz (Germany)',1,1,0),(27551,17461,127601,'Meppel','Netherlands','NL','Meppel (Netherlands)',1,1,0),(27552,0,127602,'Meppershall','United Kingdom','UK','Meppershall (United Kingdom)',1,1,0),(27553,0,127603,'Meransen','Italy','IT','Meransen (Italy)',1,1,0),(27554,17470,127604,'Mercatale','Italy','IT','Mercatale (Italy)',1,1,0),(27555,0,127605,'Merching','Germany','DE','Merching (Germany)',1,1,0),(27556,17482,127606,'Meribel','France','FR','Meribel (France)',1,1,0),(27557,0,127607,'Meribel - Mottaret','France','FR','Meribel - Mottaret (France)',1,1,0),(27558,0,127608,'Merklingen','Germany','DE','Merklingen (Germany)',1,1,0),(27559,17502,127609,'Merone','Italy','IT','Merone (Italy)',1,1,0),(27560,17510,127610,'Merrimack','United States of America','US','Merrimack (United States of America)',1,1,0),(27561,17513,127611,'Merritt Island','United States of America','US','Merritt Island (United States of America)',1,1,0),(27562,0,127612,'Merselo','Netherlands','NL','Merselo (Netherlands)',1,1,0),(27563,0,127613,'Mesa Verde National Park','United States of America','US','Mesa Verde National Park (United States of America)',1,1,0),(27564,17533,127614,'Meschede','Germany','DE','Meschede (Germany)',1,1,0),(27565,0,127615,'Mesquite','United States of America','US','Mesquite (United States of America)',1,1,0),(27566,17544,127616,'Messaria','Greece','GR','Messaria (Greece)',1,1,0),(27567,0,127617,'Messokambos','Greece','GR','Messokambos (Greece)',1,1,0),(27568,0,127618,'Me?stetten','Germany','DE','Me?stetten (Germany)',1,1,0),(27569,0,127619,'Metajna','Croatia','HR','Metajna (Croatia)',1,1,0),(27570,17562,127620,'Methuen','United States of America','US','Methuen (United States of America)',1,1,0),(27571,0,127621,'Metochi','Greece','GR','Metochi (Greece)',1,1,0),(27572,17567,127622,'Metropolis','United States of America','US','Metropolis (United States of America)',1,1,0),(27573,17568,127623,'Metsovo','Greece','GR','Metsovo (Greece)',1,1,0),(27574,17578,127624,'Meudon','France','FR','Meudon (France)',1,1,0),(27575,0,127625,'Meymac','France','FR','Meymac (France)',1,1,0),(27576,17596,127626,'Meyrueis','France','FR','Meyrueis (France)',1,1,0),(27577,0,127627,'Miajadas','Spain','ES','Miajadas (Spain)',1,1,0),(27578,0,127628,'Miami','United States of America','US','Miami (United States of America)',1,1,0),(27579,0,127629,'Miami Playa','Spain','ES','Miami Playa (Spain)',1,1,0),(27580,17610,127630,'Miane','Italy','IT','Miane (Italy)',1,1,0),(27581,0,127631,'Micheldorf','Austria','AT','Micheldorf (Austria)',1,1,0),(27582,17625,127632,'Middelfart','Denmark','DK','Middelfart (Denmark)',1,1,0),(27583,17629,127633,'Middleboro','United States of America','US','Middleboro (United States of America)',1,1,0),(27584,17630,127634,'Middleburg','United States of America','US','Middleburg (United States of America)',1,1,0),(27585,0,127635,'Middleham','United Kingdom','UK','Middleham (United Kingdom)',1,1,0),(27586,0,127636,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(27587,0,127637,'Midhurst','United Kingdom','UK','Midhurst (United Kingdom)',1,1,0),(27588,17644,127638,'Midland','Canada','CA','Midland (Canada)',1,1,0),(27589,0,127639,'Midlaren','Netherlands','NL','Midlaren (Netherlands)',1,1,0),(27590,17646,127640,'Midleton','Ireland','IE','Midleton (Ireland)',1,1,0),(27591,0,127641,'Midway','United States of America','US','Midway (United States of America)',1,1,0),(27592,0,127642,'Midwolda','Netherlands','NL','Midwolda (Netherlands)',1,1,0),(27593,0,127643,'Miedzychod','Poland','PL','Miedzychod (Poland)',1,1,0),(27594,0,127644,'Mielan','France','FR','Mielan (France)',1,1,0),(27595,17663,127645,'Mielno','Poland','PL','Mielno (Poland)',1,1,0),(27596,17667,127646,'Mieres','Spain','ES','Mieres (Spain)',1,1,0),(27597,17674,127647,'Mignaloux-Beauvoir','France','FR','Mignaloux-Beauvoir (France)',1,1,0),(27598,17678,127648,'Mijdrecht','Netherlands','NL','Mijdrecht (Netherlands)',1,1,0),(27599,17682,127649,'Mikri Vigla','Greece','GR','Mikri Vigla (Greece)',1,1,0),(27600,0,127650,'Mikumi National Park','Tanzania','TZ','Mikumi National Park (Tanzania)',1,1,0),(27601,17695,127651,'Miles City','United States of America','US','Miles City (United States of America)',1,1,0),(27602,0,127652,'Milia','Greece','GR','Milia (Greece)',1,1,0),(27603,17716,127653,'Milledgeville','United States of America','US','Milledgeville (United States of America)',1,1,0),(27604,17719,127654,'Millersburg','United States of America','US','Millersburg (United States of America)',1,1,0),(27605,0,127655,'Millicent','Australia','AU','Millicent (Australia)',1,1,0),(27606,0,127656,'Millom','United Kingdom','UK','Millom (United Kingdom)',1,1,0),(27607,0,127657,'Milomlyn','Poland','PL','Milomlyn (Poland)',1,1,0),(27608,17733,127658,'Milon-la-Chapelle','France','FR','Milon-la-Chapelle (France)',1,1,0),(27609,0,127659,'Milton','Australia','AU','Milton (Australia)',1,1,0),(27610,0,127660,'Milton','New Zealand','NZ','Milton (New Zealand)',1,1,0),(27611,0,127661,'Milton Keynes','United Kingdom','UK','Milton Keynes (United Kingdom)',1,1,0),(27612,0,127662,'Mimizan-Plage','France','FR','Mimizan-Plage (France)',1,1,0),(27613,17749,127663,'Mina Clavero','Argentina','AR','Mina Clavero (Argentina)',1,1,0),(27614,17756,127664,'Minamiizu','Japan','JP','Minamiizu (Japan)',1,1,0),(27615,0,127665,'Minane Bridge','Ireland','IE','Minane Bridge (Ireland)',1,1,0),(27616,17759,127666,'Minatitlan','Mexico','MX','Minatitlan (Mexico)',1,1,0),(27617,0,127667,'Mindelo / Sao Vicente','Cape Verde','CV','Mindelo / Sao Vicente (Cape Verde)',1,1,0),(27618,0,127668,'Mineral Point','United States of America','US','Mineral Point (United States of America)',1,1,0),(27619,17776,127669,'Minervino di Lecce','Italy','IT','Minervino di Lecce (Italy)',1,1,0),(27620,0,127670,'Miramar','Costa Rica','CR','Miramar (Costa Rica)',1,1,0),(27621,0,127671,'Mirande','France','FR','Mirande (France)',1,1,0),(27622,17825,127672,'Mirano','Italy','IT','Mirano (Italy)',1,1,0),(27623,0,127673,'Mirepeisset','France','FR','Mirepeisset (France)',1,1,0),(27624,0,127674,'Mirmande','France','FR','Mirmande (France)',1,1,0),(27625,0,127675,'Mirsini','Greece','GR','Mirsini (Greece)',1,1,0),(27626,17841,127676,'Mishawaka','United States of America','US','Mishawaka (United States of America)',1,1,0),(27627,17842,127677,'Mishicot','United States of America','US','Mishicot (United States of America)',1,1,0),(27628,0,127678,'Miskolctapolca','Hungary','HU','Miskolctapolca (Hungary)',1,1,0),(27629,0,127679,'Misselwarden','Germany','DE','Misselwarden (Germany)',1,1,0),(27630,0,127680,'Mission','United States of America','US','Mission (United States of America)',1,1,0),(27631,0,127681,'Misson','France','FR','Misson (France)',1,1,0),(27632,17854,127682,'Missouri City','United States of America','US','Missouri City (United States of America)',1,1,0),(27633,0,127683,'Missunde','Germany','DE','Missunde (Germany)',1,1,0),(27634,0,127684,'Mittelbiberach','Germany','DE','Mittelbiberach (Germany)',1,1,0),(27635,0,127685,'Mittelndorf','Germany','DE','Mittelndorf (Germany)',1,1,0),(27636,17874,127686,'Mittenwalde','Germany','DE','Mittenwalde (Germany)',1,1,0),(27637,0,127687,'Mittertrixen','Austria','AT','Mittertrixen (Austria)',1,1,0),(27638,0,127688,'Mizen Head','Ireland','IE','Mizen Head (Ireland)',1,1,0),(27639,17893,127689,'Mjolby','Sweden','SE','Mjolby (Sweden)',1,1,0),(27640,17896,127690,'Mlini','Croatia','HR','Mlini (Croatia)',1,1,0),(27641,0,127691,'Moalboal','Philippines','PH','Moalboal (Philippines)',1,1,0),(27642,17909,127692,'Moberly','United States of America','US','Moberly (United States of America)',1,1,0),(27643,0,127693,'Modra','Slovakia','SK','Modra (Slovakia)',1,1,0),(27644,17923,127694,'Moe','Australia','AU','Moe (Australia)',1,1,0),(27645,0,127695,'Moelfre','United Kingdom','UK','Moelfre (United Kingdom)',1,1,0),(27646,17925,127696,'Moena','Italy','IT','Moena (Italy)',1,1,0),(27647,0,127697,'Moglingen','Germany','DE','Moglingen (Germany)',1,1,0),(27648,0,127698,'Mohelnice','Czech Republic','CZ','Mohelnice (Czech Republic)',1,1,0),(27649,17956,127699,'Moissy-Cramayel','France','FR','Moissy-Cramayel (France)',1,1,0),(27650,17959,127700,'Mojokerto','Indonesia','ID','Mojokerto (Indonesia)',1,1,0),(27651,17991,127701,'Mollo','Spain','ES','Mollo (Spain)',1,1,0),(27652,0,127702,'Momici','Croatia','HR','Momici (Croatia)',1,1,0),(27653,18018,127703,'Monahans','United States of America','US','Monahans (United States of America)',1,1,0),(27654,0,127704,'Monasterevin','Ireland','IE','Monasterevin (Ireland)',1,1,0),(27655,18027,127705,'Moncao','Portugal','PT','Moncao (Portugal)',1,1,0),(27656,0,127706,'Mazzola','France','FR','Mazzola (France)',1,1,0),(27657,17230,127707,'Mbodiene','Senegal','SN','Mbodiene (Senegal)',1,1,0),(27658,17242,127708,'McCloud','United States of America','US','McCloud (United States of America)',1,1,0),(27659,17269,127709,'McMinnville','United States of America','US','McMinnville (United States of America)',1,1,0),(27660,0,127710,'M\'diq','Morocco','MA','M\'diq (Morocco)',1,1,0),(27661,17275,127711,'Meadow Lake','Canada','CA','Meadow Lake (Canada)',1,1,0),(27662,0,127712,'Mechernich','Germany','DE','Mechernich (Germany)',1,1,0),(27663,0,127713,'Medici','Croatia','HR','Medici (Croatia)',1,1,0),(27664,0,127714,'Medina','Hungary','HU','Medina (Hungary)',1,1,0),(27665,0,127715,'Mehrstetten','Germany','DE','Mehrstetten (Germany)',1,1,0),(27666,0,127716,'Meinhard','Germany','DE','Meinhard (Germany)',1,1,0),(27667,0,127717,'Mei?ner (Gemeinde)','Germany','DE','Mei?ner (Gemeinde) (Germany)',1,1,0),(27668,0,127718,'Melbourne','Australia','AU','Melbourne (Australia)',1,1,0),(27669,17375,127719,'Melito di Napoli','Italy','IT','Melito di Napoli (Italy)',1,1,0),(27670,0,127720,'Melitopol','Ukraine','UA','Melitopol (Ukraine)',1,1,0),(27671,0,127721,'Melksham','United Kingdom','UK','Melksham (United Kingdom)',1,1,0),(27672,17389,127722,'Meloneras','Spain','ES','Meloneras (Spain)',1,1,0),(27673,0,127723,'Melton Mowbray','United Kingdom','UK','Melton Mowbray (United Kingdom)',1,1,0),(27674,17418,127724,'Mende','France','FR','Mende (France)',1,1,0),(27675,0,127725,'Mengen','Germany','DE','Mengen (Germany)',1,1,0),(27676,17443,127726,'Menomonie','United States of America','US','Menomonie (United States of America)',1,1,0),(27677,0,127727,'Mentawai Islands','Indonesia','ID','Mentawai Islands (Indonesia)',1,1,0),(27678,17462,127728,'Meppen','Germany','DE','Meppen (Germany)',1,1,0),(27679,0,127729,'Mera','Spain','ES','Mera (Spain)',1,1,0),(27680,0,127730,'Mercatello sul Metauro','Italy','IT','Mercatello sul Metauro (Italy)',1,1,0),(27681,17473,127731,'Mercedes','Uruguay','UY','Mercedes (Uruguay)',1,1,0),(27682,0,127732,'Merchtem','Belgium','BE','Merchtem (Belgium)',1,1,0),(27683,0,127733,'Mercury','France','FR','Mercury (France)',1,1,0),(27684,0,127734,'Mercus-Garrabet','France','FR','Mercus-Garrabet (France)',1,1,0),(27685,0,127735,'Mergo','Italy','IT','Mergo (Italy)',1,1,0),(27686,17491,127736,'Merimbula','Australia','AU','Merimbula (Australia)',1,1,0),(27687,0,127737,'Mering','Germany','DE','Mering (Germany)',1,1,0),(27688,17503,127738,'Merriam','United States of America','US','Merriam (United States of America)',1,1,0),(27689,17505,127739,'Merrickville','Canada','CA','Merrickville (Canada)',1,1,0),(27690,17512,127740,'Merritt','Canada','CA','Merritt (Canada)',1,1,0),(27691,17518,127741,'Mers-les-Bains','France','FR','Mers-les-Bains (France)',1,1,0),(27692,0,127742,'Meru','Kenya','KE','Meru (Kenya)',1,1,0),(27693,0,127743,'Merzhausen','Germany','DE','Merzhausen (Germany)',1,1,0),(27694,17549,127744,'Messonghi','Greece','GR','Messonghi (Greece)',1,1,0),(27695,17555,127745,'Metairie','United States of America','US','Metairie (United States of America)',1,1,0),(27696,0,127746,'Metamorfosis','Greece','GR','Metamorfosis (Greece)',1,1,0),(27697,0,127747,'Metepec (Mexico)','Mexico','MX','Metepec (Mexico) (Mexico)',1,1,0),(27698,0,127748,'Metternich','Germany','DE','Metternich (Germany)',1,1,0),(27699,17575,127749,'Metung','Australia','AU','Metung (Australia)',1,1,0),(27700,0,127750,'Metz','France','FR','Metz (France)',1,1,0),(27701,17579,127751,'Meulan','France','FR','Meulan (France)',1,1,0),(27702,0,127752,'Mexico City','Mexico','MX','Mexico City (Mexico)',1,1,0),(27703,17593,127753,'Meyreuil','France','FR','Meyreuil (France)',1,1,0),(27704,0,127754,'Meyrignac-l\'Eglise','France','FR','Meyrignac-l\'Eglise (France)',1,1,0),(27705,0,127755,'Meyssac','France','FR','Meyssac (France)',1,1,0),(27706,0,127756,'Meze','France','FR','Meze (France)',1,1,0),(27707,0,127757,'Mezidon-Canon','France','FR','Mezidon-Canon (France)',1,1,0),(27708,17598,127758,'Mezokovesd','Hungary','HU','Mezokovesd (Hungary)',1,1,0),(27709,0,127759,'Mgahinga-Gorilla-Nationalpark','Uganda','UG','Mgahinga-Gorilla-Nationalpark (Uganda)',1,1,0),(27710,31940,127760,'Miami Springs','United States of America','US','Miami Springs (United States of America)',1,1,0),(27711,17619,127761,'Michendorf','Germany','DE','Michendorf (Germany)',1,1,0),(27712,17638,127762,'Middleton','United States of America','US','Middleton (United States of America)',1,1,0),(27713,17660,127763,'Miedzybrodzie Bialskie','Poland','PL','Miedzybrodzie Bialskie (Poland)',1,1,0),(27714,0,127764,'Miers','France','FR','Miers (France)',1,1,0),(27715,17670,127765,'Miesbach','Germany','DE','Miesbach (Germany)',1,1,0),(27716,0,127766,'Mieses','Spain','ES','Mieses (Spain)',1,1,0),(27717,17680,127767,'Mikkeli','Finland','FI','Mikkeli (Finland)',1,1,0),(27718,17685,127768,'Milagros','Spain','ES','Milagros (Spain)',1,1,0),(27719,17686,127769,'Milan','Italy','IT','Milan (Italy)',1,1,0),(27720,0,127770,'Mile','China','CN','Mile (China)',1,1,0),(27721,0,127771,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27722,0,127772,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27723,0,127773,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27724,0,127774,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(27725,31944,127775,'Mill Valley','United States of America','US','Mill Valley (United States of America)',1,1,0),(27726,17709,127776,'Millau','France','FR','Millau (France)',1,1,0),(27727,0,127777,'Milnthorpe','United Kingdom','UK','Milnthorpe (United Kingdom)',1,1,0),(27728,0,127778,'Milton','United States of America','US','Milton (United States of America)',1,1,0),(27729,0,127779,'Mimice','Croatia','HR','Mimice (Croatia)',1,1,0),(27730,17766,127780,'Minden','Germany','DE','Minden (Germany)',1,1,0),(27731,17779,127781,'Minhang','China','CN','Minhang (China)',1,1,0),(27732,17781,127782,'Miniloc Island','Philippines','PH','Miniloc Island (Philippines)',1,1,0),(27733,17801,127783,'Minusio','Switzerland','CH','Minusio (Switzerland)',1,1,0),(27734,17816,127784,'Mirambeau','France','FR','Mirambeau (France)',1,1,0),(27735,0,127785,'Miranda','New Zealand','NZ','Miranda (New Zealand)',1,1,0),(27736,17829,127786,'Mirepoix','France','FR','Mirepoix (France)',1,1,0),(27737,17843,127787,'Mishima','Japan','JP','Mishima (Japan)',1,1,0),(27738,17850,127788,'Missillac','France','FR','Missillac (France)',1,1,0),(27739,17863,127789,'Mitchell','United States of America','US','Mitchell (United States of America)',1,1,0),(27740,0,127790,'Mithian','United Kingdom','UK','Mithian (United Kingdom)',1,1,0),(27741,17868,127791,'Mitspeh Ramon','Israel','IL','Mitspeh Ramon (Israel)',1,1,0),(27742,17870,127792,'Mittelberg','Austria','AT','Mittelberg (Austria)',1,1,0),(27743,0,127793,'Mittelhausbergen','France','FR','Mittelhausbergen (France)',1,1,0),(27744,17875,127794,'Mitterfels','Germany','DE','Mitterfels (Germany)',1,1,0),(27745,17878,127795,'Mitwitz','Germany','DE','Mitwitz (Germany)',1,1,0),(27746,0,127796,'Mkhaya Game Reserve','Swaziland','SZ','Mkhaya Game Reserve (Swaziland)',1,1,0),(27747,17895,127797,'Mkuze','South Africa','ZA','Mkuze (South Africa)',1,1,0),(27748,0,127798,'Mlilwane Wildlife Sanctuary','Swaziland','SZ','Mlilwane Wildlife Sanctuary (Swaziland)',1,1,0),(27749,0,127799,'Mmamatlakala','South Africa','ZA','Mmamatlakala (South Africa)',1,1,0),(27750,17910,127800,'Mobile','United States of America','US','Mobile (United States of America)',1,1,0),(27751,17915,127801,'Modane','France','FR','Modane (France)',1,1,0),(27752,0,127802,'Modave','Belgium','BE','Modave (Belgium)',1,1,0),(27753,17922,127803,'Modugno','Italy','IT','Modugno (Italy)',1,1,0),(27754,0,127804,'Moka','Mauritius','MU','Moka (Mauritius)',1,1,0),(27755,0,127805,'Moleson','Switzerland','CH','Moleson (Switzerland)',1,1,0),(27756,0,127806,'Molino del Piano','Italy','IT','Molino del Piano (Italy)',1,1,0),(27757,17982,127807,'Molins de Rei','Spain','ES','Molins de Rei (Spain)',1,1,0),(27758,0,127808,'Molle','Sweden','SE','Molle (Sweden)',1,1,0),(27759,0,127809,'Mollens','Switzerland','CH','Mollens (Switzerland)',1,1,0),(27760,0,127810,'Molln','Austria','AT','Molln (Austria)',1,1,0),(27761,0,127811,'Mombris','Germany','DE','Mombris (Germany)',1,1,0),(27762,0,127812,'Momo','Italy','IT','Momo (Italy)',1,1,0),(27763,0,127813,'Monchegorsk','Russia','RU','Monchegorsk (Russia)',1,1,0),(27764,18034,127814,'Monclova','Mexico','MX','Monclova (Mexico)',1,1,0),(27765,18040,127815,'Monda','Spain','ES','Monda (Spain)',1,1,0),(27766,0,127816,'Marina di Mancaversa','Italy','IT','Marina di Mancaversa (Italy)',1,1,0),(27767,31908,127817,'Marina di Montalto','Italy','IT','Marina di Montalto (Italy)',1,1,0),(27768,0,127818,'Marina di Patti','Italy','IT','Marina di Patti (Italy)',1,1,0),(27769,31912,127819,'Marina di Pescoluse','Italy','IT','Marina di Pescoluse (Italy)',1,1,0),(27770,31914,127820,'Marina di Pietrasanta','Italy','IT','Marina di Pietrasanta (Italy)',1,1,0),(27771,0,127821,'Marinella','Italy','IT','Marinella (Italy)',1,1,0),(27772,0,127822,'Marinella di Sarzana','Italy','IT','Marinella di Sarzana (Italy)',1,1,0),(27773,0,127823,'Marinha Grande','Portugal','PT','Marinha Grande (Portugal)',1,1,0),(27774,0,127824,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(27775,0,127825,'Mariupol','Ukraine','UA','Mariupol (Ukraine)',1,1,0),(27776,0,127826,'Markinch','United Kingdom','UK','Markinch (United Kingdom)',1,1,0),(27777,0,127827,'Markt St. Martin','Austria','AT','Markt St. Martin (Austria)',1,1,0),(27778,0,127828,'Marktleugast','Germany','DE','Marktleugast (Germany)',1,1,0),(27779,0,127829,'Marling','Italy','IT','Marling (Italy)',1,1,0),(27780,0,127830,'Marmoutier','France','FR','Marmoutier (France)',1,1,0),(27781,16920,127831,'Marostica','Italy','IT','Marostica (Italy)',1,1,0),(27782,16932,127832,'Marree','Australia','AU','Marree (Australia)',1,1,0),(27783,16935,127833,'Mars','United States of America','US','Mars (United States of America)',1,1,0),(27784,16942,127834,'Marsberg','Germany','DE','Marsberg (Germany)',1,1,0),(27785,0,127835,'Marsh Lake','Canada','CA','Marsh Lake (Canada)',1,1,0),(27786,0,127836,'Marsiliana','Italy','IT','Marsiliana (Italy)',1,1,0),(27787,16958,127837,'Marstrand','Sweden','SE','Marstrand (Sweden)',1,1,0),(27788,0,127838,'Martano','Italy','IT','Martano (Italy)',1,1,0),(27789,0,127839,'Martins','Brazil','BR','Martins (Brazil)',1,1,0),(27790,0,127840,'Martres-Tolosane','France','FR','Martres-Tolosane (France)',1,1,0),(27791,0,127841,'Maruia Springs','New Zealand','NZ','Maruia Springs (New Zealand)',1,1,0),(27792,17001,127842,'Marysville','United States of America','US','Marysville (United States of America)',1,1,0),(27793,0,127843,'Marysville','United States of America','US','Marysville (United States of America)',1,1,0),(27794,17002,127844,'Maryvale','Australia','AU','Maryvale (Australia)',1,1,0),(27795,0,127845,'Mas D\'Orcieres','France','FR','Mas D\'Orcieres (France)',1,1,0),(27796,0,127846,'Masham','United Kingdom','UK','Masham (United Kingdom)',1,1,0),(27797,0,127847,'Maslianico','Italy','IT','Maslianico (Italy)',1,1,0),(27798,17037,127848,'Masnuy-Saint-Jean','Belgium','BE','Masnuy-Saint-Jean (Belgium)',1,1,0),(27799,17038,127849,'Mason','United States of America','US','Mason (United States of America)',1,1,0),(27800,0,127850,'Mason City','United States of America','US','Mason City (United States of America)',1,1,0),(27801,0,127851,'Masouri','Greece','GR','Masouri (Greece)',1,1,0),(27802,0,127852,'Massaciuccoli','Italy','IT','Massaciuccoli (Italy)',1,1,0),(27803,17066,127853,'Matagalpa','Nicaragua','NI','Matagalpa (Nicaragua)',1,1,0),(27804,17072,127854,'Matalascanas','Spain','ES','Matalascanas (Spain)',1,1,0),(27805,0,127855,'Mataram','Indonesia','ID','Mataram (Indonesia)',1,1,0),(27806,0,127856,'Matemwe Beach','Tanzania','TZ','Matemwe Beach (Tanzania)',1,1,0),(27807,17097,127858,'Matino','Italy','IT','Matino (Italy)',1,1,0),(27808,17102,127859,'Matougues','France','FR','Matougues (France)',1,1,0),(27809,0,127860,'Matrei in Osttirol','Austria','AT','Matrei in Osttirol (Austria)',1,1,0),(27810,17129,127861,'Maubeuge','France','FR','Maubeuge (France)',1,1,0),(27811,0,127862,'Mauron','France','FR','Mauron (France)',1,1,0),(27812,0,127863,'Mavros Kolimbos','Greece','GR','Mavros Kolimbos (Greece)',1,1,0),(27813,0,127864,'Mavrovo','Macedonia','MK','Mavrovo (Macedonia)',1,1,0),(27814,0,127865,'Mayfield Heights','United States of America','US','Mayfield Heights (United States of America)',1,1,0),(27815,17203,127866,'Mayville','United States of America','US','Mayville (United States of America)',1,1,0),(27816,17214,127867,'Mazatlan','Mexico','MX','Mazatlan (Mexico)',1,1,0),(27817,17236,127868,'McBride','Canada','CA','McBride (Canada)',1,1,0),(27818,17243,127869,'McComb','United States of America','US','McComb (United States of America)',1,1,0),(27819,17250,127870,'Mcely','Czech Republic','CZ','Mcely (Czech Republic)',1,1,0),(27820,17252,127871,'McGehee','United States of America','US','McGehee (United States of America)',1,1,0),(27821,0,127872,'Mchangamle','Tanzania','TZ','Mchangamle (Tanzania)',1,1,0),(27822,17264,127873,'McLaren Vale','Australia','AU','McLaren Vale (Australia)',1,1,0),(27823,17273,127874,'McRae','United States of America','US','McRae (United States of America)',1,1,0),(27824,17274,127875,'Mdina','Malta','MT','Mdina (Malta)',1,1,0),(27825,17281,127876,'Mealhada','Portugal','PT','Mealhada (Portugal)',1,1,0),(27826,0,127877,'Mechelen','Netherlands','NL','Mechelen (Netherlands)',1,1,0),(27827,0,127878,'Meckenheim','Germany','DE','Meckenheim (Germany)',1,1,0),(27828,0,127879,'Meda','Portugal','PT','Meda (Portugal)',1,1,0),(27829,17293,127880,'Medebach','Germany','DE','Medebach (Germany)',1,1,0),(27830,17300,127881,'Medford','United States of America','US','Medford (United States of America)',1,1,0),(27831,0,127882,'Medina del Campo','Spain','ES','Medina del Campo (Spain)',1,1,0),(27832,17322,127883,'Meerane','Germany','DE','Meerane (Germany)',1,1,0),(27833,17323,127884,'Meerbusch','Germany','DE','Meerbusch (Germany)',1,1,0),(27834,0,127885,'Meerfeld','Germany','DE','Meerfeld (Germany)',1,1,0),(27835,17328,127886,'Megala Chorafia','Greece','GR','Megala Chorafia (Greece)',1,1,0),(27836,17340,127887,'Meia Praia','Portugal','PT','Meia Praia (Portugal)',1,1,0),(27837,17346,127888,'Meisdorf','Germany','DE','Meisdorf (Germany)',1,1,0),(27838,0,127889,'Mei?en','Germany','DE','Mei?en (Germany)',1,1,0),(27839,17349,127890,'Meissenheim','Germany','DE','Meissenheim (Germany)',1,1,0),(27840,16463,127891,'Makkah','Saudi Arabia','SA','Makkah (Saudi Arabia)',1,1,0),(27841,0,127892,'Melazzo','Italy','IT','Melazzo (Italy)',1,1,0),(27842,0,127893,'Melbourn','United Kingdom','UK','Melbourn (United Kingdom)',1,1,0),(27843,0,127894,'Melbourne Beach','United States of America','US','Melbourne Beach (United States of America)',1,1,0),(27844,17371,127895,'Melide','Switzerland','CH','Melide (Switzerland)',1,1,0),(27845,17380,127896,'Mellau','Austria','AT','Mellau (Austria)',1,1,0),(27846,17385,127897,'Mellingen','Germany','DE','Mellingen (Germany)',1,1,0),(27847,17393,127898,'Melrose','Australia','AU','Melrose (Australia)',1,1,0),(27848,0,127899,'Meltosjarvi','Finland','FI','Meltosjarvi (Finland)',1,1,0),(27849,17409,127900,'Memmingen','Germany','DE','Memmingen (Germany)',1,1,0),(27850,17413,127901,'Mena','United States of America','US','Mena (United States of America)',1,1,0),(27851,17422,127902,'Mendocino','United States of America','US','Mendocino (United States of America)',1,1,0),(27852,17431,127903,'Menfi','Italy','IT','Menfi (Italy)',1,1,0),(27853,0,127904,'Mengkofen','Germany','DE','Mengkofen (Germany)',1,1,0),(27854,0,127905,'Mengwi','Indonesia','ID','Mengwi (Indonesia)',1,1,0),(27855,17454,127906,'Mentana','Italy','IT','Mentana (Italy)',1,1,0),(27856,17458,127907,'Mentone','Australia','AU','Mentone (Australia)',1,1,0),(27857,17464,127908,'Mequon','United States of America','US','Mequon (United States of America)',1,1,0),(27858,17465,127909,'Meracq','France','FR','Meracq (France)',1,1,0),(27859,17467,127910,'Merang','Malaysia','MY','Merang (Malaysia)',1,1,0),(27860,0,127911,'Mercato San Severino','Italy','IT','Mercato San Severino (Italy)',1,1,0),(27861,17477,127912,'Mercues','France','FR','Mercues (France)',1,1,0),(27862,17479,127913,'Meredith','United States of America','US','Meredith (United States of America)',1,1,0),(27863,17480,127914,'Mereville','France','FR','Mereville (France)',1,1,0),(27864,17481,127915,'Mergozzo','Italy','IT','Mergozzo (Italy)',1,1,0),(27865,17486,127916,'Merida','Venezuela','VE','Merida (Venezuela)',1,1,0),(27866,17489,127917,'Meridian','United States of America','US','Meridian (United States of America)',1,1,0),(27867,0,127918,'Merkwiller-Pechelbronn','France','FR','Merkwiller-Pechelbronn (France)',1,1,0),(27868,17500,127919,'Mermaid Beach','Australia','AU','Mermaid Beach (Australia)',1,1,0),(27869,17501,127920,'Merom Golan','Israel','IL','Merom Golan (Israel)',1,1,0),(27870,17528,127921,'Merzouga','Morocco','MA','Merzouga (Morocco)',1,1,0),(27871,17543,127922,'Messanges','France','FR','Messanges (France)',1,1,0),(27872,17546,127923,'Messina','Italy','IT','Messina (Italy)',1,1,0),(27873,0,127924,'Mesta','Greece','GR','Mesta (Greece)',1,1,0),(27874,17571,127925,'Mettingen','Germany','DE','Mettingen (Germany)',1,1,0),(27875,18107,127926,'Monta','Italy','IT','Monta (Italy)',1,1,0),(27876,0,127927,'Montagnat','France','FR','Montagnat (France)',1,1,0),(27877,0,127928,'Montaigu','France','FR','Montaigu (France)',1,1,0),(27878,0,127929,'Montauriol','France','FR','Montauriol (France)',1,1,0),(27879,18139,127930,'Montbard','France','FR','Montbard (France)',1,1,0),(27880,0,127931,'Monte Melino','Italy','IT','Monte Melino (Italy)',1,1,0),(27881,31978,127932,'Monte Pego','Spain','ES','Monte Pego (Spain)',1,1,0),(27882,31980,127933,'Monte Real','Portugal','PT','Monte Real (Portugal)',1,1,0),(27883,0,127934,'Monte Verde','Brazil','BR','Monte Verde (Brazil)',1,1,0),(27884,0,127935,'Montebello di Bertona','Italy','IT','Montebello di Bertona (Italy)',1,1,0),(27885,18180,127936,'Montecopiolo','Italy','IT','Montecopiolo (Italy)',1,1,0),(27886,0,127937,'Montefiore Dell\'aso','Italy','IT','Montefiore Dell\'aso (Italy)',1,1,0),(27887,18185,127938,'Montefrio','Spain','ES','Montefrio (Spain)',1,1,0),(27888,0,127939,'Montelabbate','Italy','IT','Montelabbate (Italy)',1,1,0),(27889,18197,127940,'Montellano','Spain','ES','Montellano (Spain)',1,1,0),(27890,0,127941,'Montelparo','Italy','IT','Montelparo (Italy)',1,1,0),(27891,0,127942,'Montelupo Fiorentino','Italy','IT','Montelupo Fiorentino (Italy)',1,1,0),(27892,0,127943,'Montemassi','Italy','IT','Montemassi (Italy)',1,1,0),(27893,0,127944,'Montemorelos','Mexico','MX','Montemorelos (Mexico)',1,1,0),(27894,18206,127945,'Montemor-O-Novo','Portugal','PT','Montemor-O-Novo (Portugal)',1,1,0),(27895,18234,127946,'Monteveglio','Italy','IT','Monteveglio (Italy)',1,1,0),(27896,18238,127947,'Montevideo','United States of America','US','Montevideo (United States of America)',1,1,0),(27897,0,127948,'Montfort-en-Chalosse','France','FR','Montfort-en-Chalosse (France)',1,1,0),(27898,0,127949,'Montgermont','France','FR','Montgermont (France)',1,1,0),(27899,0,127950,'Montgomery Center','United States of America','US','Montgomery Center (United States of America)',1,1,0),(27900,18256,127951,'Monthey','Switzerland','CH','Monthey (Switzerland)',1,1,0),(27901,18260,127952,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(27902,0,127953,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(27903,0,127954,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(27904,18273,127955,'Montisi','Italy','IT','Montisi (Italy)',1,1,0),(27905,0,127956,'Montitjo','Portugal','PT','Montitjo (Portugal)',1,1,0),(27906,18279,127957,'Montlouis-sur-Loire','France','FR','Montlouis-sur-Loire (France)',1,1,0),(27907,0,127958,'Montopoli in Val d\'Arno','Italy','IT','Montopoli in Val d\'Arno (Italy)',1,1,0),(27908,18299,127959,'Montpelier','United States of America','US','Montpelier (United States of America)',1,1,0),(27909,18301,127960,'Montreal','Canada','CA','Montreal (Canada)',1,1,0),(27910,0,127961,'Montreuil','France','FR','Montreuil (France)',1,1,0),(27911,0,127962,'Montrevel-en-Bresse','France','FR','Montrevel-en-Bresse (France)',1,1,0),(27912,18314,127963,'Montrose','United States of America','US','Montrose (United States of America)',1,1,0),(27913,0,127964,'Montrose','Australia','AU','Montrose (Australia)',1,1,0),(27914,18326,127965,'Montsoult','France','FR','Montsoult (France)',1,1,0),(27915,0,127966,'Monts-sur-Guesnes','France','FR','Monts-sur-Guesnes (France)',1,1,0),(27916,18329,127967,'Montvale','United States of America','US','Montvale (United States of America)',1,1,0),(27917,0,127968,'Monument Valley','United States of America','US','Monument Valley (United States of America)',1,1,0),(27918,0,127969,'Monzingen','Germany','DE','Monzingen (Germany)',1,1,0),(27919,18336,127970,'Monzon','Spain','ES','Monzon (Spain)',1,1,0),(27920,0,127971,'Moore','United States of America','US','Moore (United States of America)',1,1,0),(27921,0,127972,'Mooste','Estonia','EE','Mooste (Estonia)',1,1,0),(27922,18377,127973,'Morana','Spain','ES','Morana (Spain)',1,1,0),(27923,0,127974,'Morbach','Germany','DE','Morbach (Germany)',1,1,0),(27924,18396,127975,'Morden','Canada','CA','Morden (Canada)',1,1,0),(27925,0,127976,'Morgan City','United States of America','US','Morgan City (United States of America)',1,1,0),(27926,18427,127977,'Moriguchi','Japan','JP','Moriguchi (Japan)',1,1,0),(27927,18431,127978,'Moritzburg','Germany','DE','Moritzburg (Germany)',1,1,0),(27928,0,127979,'Morlaas','France','FR','Morlaas (France)',1,1,0),(27929,18433,127980,'Morlaix','France','FR','Morlaix (France)',1,1,0),(27930,0,127981,'Morne Rouge Bay','Grenada','GD','Morne Rouge Bay (Grenada)',1,1,0),(27931,18440,127982,'Mornico Losana','Italy','IT','Mornico Losana (Italy)',1,1,0),(27932,18443,127983,'Morningside','Australia','AU','Morningside (Australia)',1,1,0),(27933,18457,127984,'Morris','Canada','CA','Morris (Canada)',1,1,0),(27934,0,127985,'Morscheid','Germany','DE','Morscheid (Germany)',1,1,0),(27935,0,127986,'Mortagne-du-Nord','France','FR','Mortagne-du-Nord (France)',1,1,0),(27936,18473,127987,'Mortain','France','FR','Mortain (France)',1,1,0),(27937,0,127988,'Mortsund','Norway','NO','Mortsund (Norway)',1,1,0),(27938,0,127989,'Mosbruch','Germany','DE','Mosbruch (Germany)',1,1,0),(27939,18484,127990,'Moscari','Spain','ES','Moscari (Spain)',1,1,0),(27940,18494,127991,'Moses Lake','United States of America','US','Moses Lake (United States of America)',1,1,0),(27941,18508,127992,'Moss Vale','Australia','AU','Moss Vale (Australia)',1,1,0),(27942,0,127993,'Mossautal','Germany','DE','Mossautal (Germany)',1,1,0),(27943,18526,127994,'Motovun','Croatia','HR','Motovun (Croatia)',1,1,0),(27944,18529,127995,'Motta Camastra','Italy','IT','Motta Camastra (Italy)',1,1,0),(27945,0,127996,'Moulton','United Kingdom','UK','Moulton (United Kingdom)',1,1,0),(27946,0,127997,'Mount Edgecombe','South Africa','ZA','Mount Edgecombe (South Africa)',1,1,0),(27947,0,127998,'Mount Elgon','Uganda','UG','Mount Elgon (Uganda)',1,1,0),(27948,32007,127999,'Mount Gilead','United States of America','US','Mount Gilead (United States of America)',1,1,0),(27949,32020,128000,'Mount Joy','United States of America','US','Mount Joy (United States of America)',1,1,0),(27950,0,128001,'Mount Popa','Myanmar','MM','Mount Popa (Myanmar)',1,1,0),(27951,32034,128002,'Mount Prospect','United States of America','US','Mount Prospect (United States of America)',1,1,0),(27952,0,128003,'Mount Royal','Canada','CA','Mount Royal (Canada)',1,1,0),(27953,0,128004,'Mount Storm','United States of America','US','Mount Storm (United States of America)',1,1,0),(27954,32046,128005,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(27955,32054,128006,'Mountain Grove','United States of America','US','Mountain Grove (United States of America)',1,1,0),(27956,18580,128007,'Moyard','Ireland','IE','Moyard (Ireland)',1,1,0),(27957,18584,128008,'Mozaga','Spain','ES','Mozaga (Spain)',1,1,0),(27958,18587,128009,'Mozirje','Slovenia','SI','Mozirje (Slovenia)',1,1,0),(27959,0,128010,'Mt. Buller','Australia','AU','Mt. Buller (Australia)',1,1,0),(27960,18597,128011,'Mtubatuba','South Africa','ZA','Mtubatuba (South Africa)',1,1,0),(27961,0,128012,'Mtwapa Creek','Kenya','KE','Mtwapa Creek (Kenya)',1,1,0),(27962,0,128013,'Mugeba','Croatia','HR','Mugeba (Croatia)',1,1,0),(27963,0,128014,'Mugica','Spain','ES','Mugica (Spain)',1,1,0),(27964,0,128015,'Muhbrook','Germany','DE','Muhbrook (Germany)',1,1,0),(27965,0,128016,'Muhlberg','Germany','DE','Muhlberg (Germany)',1,1,0),(27966,18627,128017,'Muhldorf am Inn','Germany','DE','Muhldorf am Inn (Germany)',1,1,0),(27967,0,128018,'Muhlheim am Main','Germany','DE','Muhlheim am Main (Germany)',1,1,0),(27968,18629,128019,'Muhltal','Germany','DE','Muhltal (Germany)',1,1,0),(27969,0,128020,'Muirfield','United Kingdom','UK','Muirfield (United Kingdom)',1,1,0),(27970,0,128021,'Mukacheve','Ukraine','UA','Mukacheve (Ukraine)',1,1,0),(27971,18643,128022,'Mukilteo','United States of America','US','Mukilteo (United States of America)',1,1,0),(27972,0,128023,'Mula','Spain','ES','Mula (Spain)',1,1,0),(27973,0,128025,'Mullheim (Baden)','Germany','DE','Mullheim (Baden) (Germany)',1,1,0),(27974,18670,128026,'Mullingar','Ireland','IE','Mullingar (Ireland)',1,1,0),(27975,0,128027,'Mullrose','Germany','DE','Mullrose (Germany)',1,1,0),(27976,18684,128028,'Mundaka','Spain','ES','Mundaka (Spain)',1,1,0),(27977,0,128029,'Munkfors','Sweden','SE','Munkfors (Sweden)',1,1,0),(27978,18726,128031,'Murguia','Spain','ES','Murguia (Spain)',1,1,0),(27979,0,128032,'Murillo de Longuida','Spain','ES','Murillo de Longuida (Spain)',1,1,0),(27980,0,128033,'Murlenbach','Germany','DE','Murlenbach (Germany)',1,1,0),(27981,18742,128034,'Murray','United States of America','US','Murray (United States of America)',1,1,0),(27982,0,128035,'Mangapwani','Tanzania','TZ','Mangapwani (Tanzania)',1,1,0),(27983,16647,128036,'Mangonui','New Zealand','NZ','Mangonui (New Zealand)',1,1,0),(27984,16650,128037,'Mangualde','Portugal','PT','Mangualde (Portugal)',1,1,0),(27985,0,128038,'Mangue Seco','Brazil','BR','Mangue Seco (Brazil)',1,1,0),(27986,16654,128039,'Manhattan','United States of America','US','Manhattan (United States of America)',1,1,0),(27987,16656,128040,'Manigod','France','FR','Manigod (France)',1,1,0),(27988,0,128041,'Manilla','Australia','AU','Manilla (Australia)',1,1,0),(27989,0,128042,'Maniwa','Japan','JP','Maniwa (Japan)',1,1,0),(27990,0,128043,'Manjadvorci','Croatia','HR','Manjadvorci (Croatia)',1,1,0),(27991,0,128044,'Mank','Austria','AT','Mank (Austria)',1,1,0),(27992,16677,128045,'Mankato','United States of America','US','Mankato (United States of America)',1,1,0),(27993,16689,128046,'Manosque','France','FR','Manosque (France)',1,1,0),(27994,16693,128047,'Mansfield','United States of America','US','Mansfield (United States of America)',1,1,0),(27995,0,128048,'Mantorp','Sweden','SE','Mantorp (Sweden)',1,1,0),(27996,0,128049,'Manukau City','New Zealand','NZ','Manukau City (New Zealand)',1,1,0),(27997,16720,128050,'Manzanillo','Venezuela','VE','Manzanillo (Venezuela)',1,1,0),(27998,0,128051,'Mapungubwe Nationalpark','South Africa','ZA','Mapungubwe Nationalpark (South Africa)',1,1,0),(27999,0,128052,'Mar de Plata','Argentina','AR','Mar de Plata (Argentina)',1,1,0),(28000,0,128053,'Marangu','Tanzania','TZ','Marangu (Tanzania)',1,1,0),(28001,0,128054,'Marcourt','Belgium','BE','Marcourt (Belgium)',1,1,0),(28002,0,128055,'Mardorf','Germany','DE','Mardorf (Germany)',1,1,0),(28003,0,128056,'Mareuil','France','FR','Mareuil (France)',1,1,0),(28004,0,128057,'Margariiti','Greece','GR','Margariiti (Greece)',1,1,0),(28005,0,128058,'Maria la Gorda','Cuba','CU','Maria la Gorda (Cuba)',1,1,0),(28006,0,128059,'Maria Laach','Austria','AT','Maria Laach (Austria)',1,1,0),(28007,16829,128060,'Mariazell','Austria','AT','Mariazell (Austria)',1,1,0),(28008,16831,128061,'Maribo','Denmark','DK','Maribo (Denmark)',1,1,0),(28009,16847,128062,'Marietta','United States of America','US','Marietta (United States of America)',1,1,0),(28010,0,128063,'Marigny','France','FR','Marigny (France)',1,1,0),(28011,16853,128064,'Marijampole','Lithuania','LT','Marijampole (Lithuania)',1,1,0),(28012,31897,128065,'Marina di Ascea','Italy','IT','Marina di Ascea (Italy)',1,1,0),(28013,0,128066,'Marina di Gioiosa Jonica','Italy','IT','Marina di Gioiosa Jonica (Italy)',1,1,0),(28014,0,128067,'Marina di Nardo','Italy','IT','Marina di Nardo (Italy)',1,1,0),(28015,31915,128068,'Marina di Pisa','Italy','IT','Marina di Pisa (Italy)',1,1,0),(28016,16865,128069,'Maringa','Brazil','BR','Maringa (Brazil)',1,1,0),(28017,0,128070,'Mario Campos','Brazil','BR','Mario Campos (Brazil)',1,1,0),(28018,0,128071,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(28019,0,128072,'Markaryd','Sweden','SE','Markaryd (Sweden)',1,1,0),(28020,0,128073,'Market Lavington','United Kingdom','UK','Market Lavington (United Kingdom)',1,1,0),(28021,0,128074,'Markgroningen','Germany','DE','Markgroningen (Germany)',1,1,0),(28022,0,128075,'Marklissa','Poland','PL','Marklissa (Poland)',1,1,0),(28023,0,128076,'Markranstadt','Germany','DE','Markranstadt (Germany)',1,1,0),(28024,16890,128077,'Marla','Australia','AU','Marla (Australia)',1,1,0),(28025,0,128078,'Marlenheim','France','FR','Marlenheim (France)',1,1,0),(28026,0,128079,'Marloth Park','South Africa','ZA','Marloth Park (South Africa)',1,1,0),(28027,16912,128080,'Marne-la-Vallee','France','FR','Marne-la-Vallee (France)',1,1,0),(28028,16925,128081,'Marquay','France','FR','Marquay (France)',1,1,0),(28029,0,128082,'Mars Hill','United States of America','US','Mars Hill (United States of America)',1,1,0),(28030,16938,128083,'Marsalforn','Malta','MT','Marsalforn (Malta)',1,1,0),(28031,0,128084,'Marseillette','France','FR','Marseillette (France)',1,1,0),(28032,16950,128085,'Marshalltown','United States of America','US','Marshalltown (United States of America)',1,1,0),(28033,16952,128086,'Marshfield','United States of America','US','Marshfield (United States of America)',1,1,0),(28034,16956,128087,'Marston','United States of America','US','Marston (United States of America)',1,1,0),(28035,16959,128088,'Marta','Italy','IT','Marta (Italy)',1,1,0),(28036,16961,128089,'Martellago','Italy','IT','Martellago (Italy)',1,1,0),(28037,16966,128090,'Martigny','Switzerland','CH','Martigny (Switzerland)',1,1,0),(28038,16975,128091,'Martinique','Martinique','MQ','Martinique (Martinique)',1,1,0),(28039,16977,128092,'Martinsburg','United States of America','US','Martinsburg (United States of America)',1,1,0),(28040,0,128093,'Martinscica','Croatia','HR','Martinscica (Croatia)',1,1,0),(28041,0,128094,'Martinski','Croatia','HR','Martinski (Croatia)',1,1,0),(28042,0,128095,'Martinsville','United States of America','US','Martinsville (United States of America)',1,1,0),(28043,0,128096,'Martragny','France','FR','Martragny (France)',1,1,0),(28044,16984,128097,'Marugame','Japan','JP','Marugame (Japan)',1,1,0),(28045,0,128098,'Marusici','Croatia','HR','Marusici (Croatia)',1,1,0),(28046,0,128099,'Mary River National Park','Australia','AU','Mary River National Park (Australia)',1,1,0),(28047,0,128100,'Maryculter','United Kingdom','UK','Maryculter (United Kingdom)',1,1,0),(28048,0,128101,'Marysville','United States of America','US','Marysville (United States of America)',1,1,0),(28049,0,128102,'Masca','Spain','ES','Masca (Spain)',1,1,0),(28050,0,128103,'Mase VS','Switzerland','CH','Mase VS (Switzerland)',1,1,0),(28051,17021,128104,'Maselheim','Germany','DE','Maselheim (Germany)',1,1,0),(28052,0,128105,'Masera','Italy','IT','Masera (Italy)',1,1,0),(28053,17030,128106,'Mashpee','United States of America','US','Mashpee (United States of America)',1,1,0),(28054,0,128107,'Massa Cozzile','Italy','IT','Massa Cozzile (Italy)',1,1,0),(28055,17046,128108,'Massapequa','United States of America','US','Massapequa (United States of America)',1,1,0),(28056,0,128109,'Massenzatico','Italy','IT','Massenzatico (Italy)',1,1,0),(28057,0,128110,'Masseret','France','FR','Masseret (France)',1,1,0),(28058,0,128111,'Massiac','France','FR','Massiac (France)',1,1,0),(28059,0,128112,'Massignieu-de-Rives','France','FR','Massignieu-de-Rives (France)',1,1,0),(28060,0,128113,'Mata-Hotobagy','Hungary','HU','Mata-Hotobagy (Hungary)',1,1,0),(28061,17069,128114,'Mataiva','French Polynesia','PF','Mataiva (French Polynesia)',1,1,0),(28062,0,128115,'Mathews Mountain Range','Kenya','KE','Mathews Mountain Range (Kenya)',1,1,0),(28063,17095,128116,'Mathis','United States of America','US','Mathis (United States of America)',1,1,0),(28064,0,128117,'Matilla de los Canos del Rio','Spain','ES','Matilla de los Canos del Rio (Spain)',1,1,0),(28065,0,128118,'Matinhos','Brazil','BR','Matinhos (Brazil)',1,1,0),(28066,17111,128119,'Matsumoto','Japan','JP','Matsumoto (Japan)',1,1,0),(28067,0,128120,'Mattighofen','Austria','AT','Mattighofen (Austria)',1,1,0),(28068,17154,128121,'Maunaloa','United States of America','US','Maunaloa (United States of America)',1,1,0),(28069,17157,128122,'Maurach','Austria','AT','Maurach (Austria)',1,1,0),(28070,0,128123,'Maussac','France','FR','Maussac (France)',1,1,0),(28071,17179,128124,'Max Meadows','United States of America','US','Max Meadows (United States of America)',1,1,0),(28072,0,128125,'Mayenne','France','FR','Mayenne (France)',1,1,0),(28073,17185,128126,'Mayerling','Austria','AT','Mayerling (Austria)',1,1,0),(28074,0,128127,'Mayet','France','FR','Mayet (France)',1,1,0),(28075,17202,128128,'Maysville','United States of America','US','Maysville (United States of America)',1,1,0),(28076,0,128129,'Mazille','France','FR','Mazille (France)',1,1,0),(28077,17221,128130,'Mazzin','Italy','IT','Mazzin (Italy)',1,1,0),(28078,0,128131,'Mbale','Uganda','UG','Mbale (Uganda)',1,1,0),(28079,0,128132,'M\'Bour','Senegal','SN','M\'Bour (Senegal)',1,1,0),(28080,0,128133,'Mc Minville','United States of America','US','Mc Minville (United States of America)',1,1,0),(28081,17235,128134,'McAllen','United States of America','US','McAllen (United States of America)',1,1,0),(28082,0,128135,'McGregor','South Africa','ZA','McGregor (South Africa)',1,1,0),(28083,0,128136,'McHenry','United States of America','US','McHenry (United States of America)',1,1,0),(28084,17265,128137,'McLean','United States of America','US','McLean (United States of America)',1,1,0),(28085,17279,128138,'Meadville','United States of America','US','Meadville (United States of America)',1,1,0),(28086,17286,128139,'Mebane','United States of America','US','Mebane (United States of America)',1,1,0),(28087,17289,128140,'Mechanicsville','United States of America','US','Mechanicsville (United States of America)',1,1,0),(28088,0,128141,'Medana Beach','Indonesia','ID','Medana Beach (Indonesia)',1,1,0),(28089,0,128142,'Medina de Pomar','Spain','ES','Medina de Pomar (Spain)',1,1,0),(28090,17313,128143,'Medolago','Italy','IT','Medolago (Italy)',1,1,0),(28091,17326,128144,'Meeru','Maldives','MV','Meeru (Maldives)',1,1,0),(28092,17039,128145,'Maspalomas','Spain','ES','Maspalomas (Spain)',1,1,0),(28093,17040,128146,'Maspeth','United States of America','US','Maspeth (United States of America)',1,1,0),(28094,0,128147,'Massa Maritima','Italy','IT','Massa Maritima (Italy)',1,1,0),(28095,17052,128148,'Massieux','France','FR','Massieux (France)',1,1,0),(28096,0,128149,'Mastichari','Greece','GR','Mastichari (Greece)',1,1,0),(28097,0,128150,'Masuren','Poland','PL','Masuren (Poland)',1,1,0),(28098,17075,128151,'Matamanoa Island','Fiji Islands','FJ','Matamanoa Island (Fiji Islands)',1,1,0),(28099,17076,128152,'Matamata','New Zealand','NZ','Matamata (New Zealand)',1,1,0),(28100,17090,128153,'Matera','Italy','IT','Matera (Italy)',1,1,0),(28101,0,128154,'Mato Grosso','Brazil','BR','Mato Grosso (Brazil)',1,1,0),(28102,17115,128155,'Matsuyama','Japan','JP','Matsuyama (Japan)',1,1,0),(28103,17117,128156,'Mattarello','Italy','IT','Mattarello (Italy)',1,1,0),(28104,17123,128157,'Mattsee','Austria','AT','Mattsee (Austria)',1,1,0),(28105,0,128158,'Maulburg','Germany','DE','Maulburg (Germany)',1,1,0),(28106,0,128159,'Mauls','Italy','IT','Mauls (Italy)',1,1,0),(28107,17152,128160,'Maun','Botswana','BW','Maun (Botswana)',1,1,0),(28108,0,128161,'Mauzens-et-Miremont','France','FR','Mauzens-et-Miremont (France)',1,1,0),(28109,0,128162,'Maxhutte-Haidhof','Germany','DE','Maxhutte-Haidhof (Germany)',1,1,0),(28110,17197,128163,'Mayo','Canada','CA','Mayo (Canada)',1,1,0),(28111,0,128164,'Mays Landing','United States of America','US','Mays Landing (United States of America)',1,1,0),(28112,17209,128165,'Mazara del Vallo','Italy','IT','Mazara del Vallo (Italy)',1,1,0),(28113,0,128166,'Mazo','Spain','ES','Mazo (Spain)',1,1,0),(28114,0,128167,'Mc Graw','United States of America','US','Mc Graw (United States of America)',1,1,0),(28115,17233,128168,'McAfee','United States of America','US','McAfee (United States of America)',1,1,0),(28116,17239,128169,'McCamey','United States of America','US','McCamey (United States of America)',1,1,0),(28117,17261,128170,'McKenzie','United States of America','US','McKenzie (United States of America)',1,1,0),(28118,17262,128171,'McKinleyville','United States of America','US','McKinleyville (United States of America)',1,1,0),(28119,17263,128172,'McKinney','United States of America','US','McKinney (United States of America)',1,1,0),(28120,17283,128173,'Meano','Spain','ES','Meano (Spain)',1,1,0),(28121,31926,128174,'Meaux','France','FR','Meaux (France)',1,1,0),(28122,0,128175,'Mecheln','Belgium','BE','Mecheln (Belgium)',1,1,0),(28123,0,128176,'Meckesheim','Germany','DE','Meckesheim (Germany)',1,1,0),(28124,0,128177,'Medan','Indonesia','ID','Medan (Indonesia)',1,1,0),(28125,0,128178,'Medels','Switzerland','CH','Medels (Switzerland)',1,1,0),(28126,17296,128179,'Medemblik','Netherlands','NL','Medemblik (Netherlands)',1,1,0),(28127,0,128180,'Medford','United States of America','US','Medford (United States of America)',1,1,0),(28128,0,128181,'Medina de Rioseco','Spain','ES','Medina de Rioseco (Spain)',1,1,0),(28129,17312,128182,'Medjugorje','Bosnia and Herzegowina','BA','Medjugorje (Bosnia and Herzegowina)',1,1,0),(28130,17324,128183,'Meerkerk','Netherlands','NL','Meerkerk (Netherlands)',1,1,0),(28131,0,128184,'Megalos Prinos','Greece','GR','Megalos Prinos (Greece)',1,1,0),(28132,0,128185,'Megas limionas','Greece','GR','Megas limionas (Greece)',1,1,0),(28133,17338,128186,'Mehamn','Norway','NO','Mehamn (Norway)',1,1,0),(28134,0,128187,'Meisburg','Germany','DE','Meisburg (Germany)',1,1,0),(28135,0,128188,'Meisenheim','Germany','DE','Meisenheim (Germany)',1,1,0),(28136,0,128189,'Meishan','China','CN','Meishan (China)',1,1,0),(28137,0,128190,'Melara','Italy','IT','Melara (Italy)',1,1,0),(28138,17364,128191,'Melchnau','Switzerland','CH','Melchnau (Switzerland)',1,1,0),(28139,0,128192,'Meleto','Italy','IT','Meleto (Italy)',1,1,0),(28140,0,128193,'Melisourgio','Greece','GR','Melisourgio (Greece)',1,1,0),(28141,17377,128194,'Melk','Austria','AT','Melk (Austria)',1,1,0),(28142,0,128195,'Mells','United Kingdom','UK','Mells (United Kingdom)',1,1,0),(28143,0,128196,'Melrose','United Kingdom','UK','Melrose (United Kingdom)',1,1,0),(28144,17404,128197,'Melville','United States of America','US','Melville (United States of America)',1,1,0),(28145,17403,128198,'Melville','Canada','CA','Melville (Canada)',1,1,0),(28146,17406,128199,'Melzo','Italy','IT','Melzo (Italy)',1,1,0),(28147,17427,128200,'Menemsha','United States of America','US','Menemsha (United States of America)',1,1,0),(28148,17429,128201,'Menerbes','France','FR','Menerbes (France)',1,1,0),(28149,17441,128202,'Menominee','United States of America','US','Menominee (United States of America)',1,1,0),(28150,17442,128203,'Menomonee Falls','United States of America','US','Menomonee Falls (United States of America)',1,1,0),(28151,17457,128204,'Menton','France','FR','Menton (France)',1,1,0),(28152,0,128205,'Menzenschwand','Germany','DE','Menzenschwand (Germany)',1,1,0),(28153,17471,128206,'Merced','United States of America','US','Merced (United States of America)',1,1,0),(28154,17472,128207,'Mercedes','United States of America','US','Mercedes (United States of America)',1,1,0),(28155,0,128208,'Mercer Island','United States of America','US','Mercer Island (United States of America)',1,1,0),(28156,0,128209,'Merelbeke','Belgium','BE','Merelbeke (Belgium)',1,1,0),(28157,0,128210,'Mergui','Myanmar','MM','Mergui (Myanmar)',1,1,0),(28158,0,128211,'Meridian','United States of America','US','Meridian (United States of America)',1,1,0),(28159,17498,128212,'Merlo','Argentina','AR','Merlo (Argentina)',1,1,0),(28160,17508,128213,'Merrillville','United States of America','US','Merrillville (United States of America)',1,1,0),(28161,17516,128214,'Mersin','Turkey','TR','Mersin (Turkey)',1,1,0),(28162,0,128215,'Mersrags','Latvia','LV','Mersrags (Latvia)',1,1,0),(28163,0,128216,'Merthyr Tydfil','United Kingdom','UK','Merthyr Tydfil (United Kingdom)',1,1,0),(28164,17526,128217,'Merzifon','Turkey','TR','Merzifon (Turkey)',1,1,0),(28165,17537,128218,'Mespelbrunn','Germany','DE','Mespelbrunn (Germany)',1,1,0),(28166,0,128219,'Messel','Germany','DE','Messel (Germany)',1,1,0),(28167,0,128220,'Mestia','Georgia','GE','Mestia (Georgia)',1,1,0),(28168,0,128221,'Mesto Albrechtice','Czech Republic','CZ','Mesto Albrechtice (Czech Republic)',1,1,0),(28169,0,128222,'Metnitz','Austria','AT','Metnitz (Austria)',1,1,0),(28170,17570,128223,'Metter','United States of America','US','Metter (United States of America)',1,1,0),(28171,17572,128224,'Mettlach','Germany','DE','Mettlach (Germany)',1,1,0),(28172,17576,128225,'Metzingen','Germany','DE','Metzingen (Germany)',1,1,0),(28173,0,128226,'Meura','Germany','DE','Meura (Germany)',1,1,0),(28174,17583,128227,'Mexia','United States of America','US','Mexia (United States of America)',1,1,0),(28175,17585,128228,'Mexico','United States of America','US','Mexico (United States of America)',1,1,0),(28176,0,128229,'Meycauayan','Philippines','PH','Meycauayan (Philippines)',1,1,0),(28177,0,128230,'Mezos','France','FR','Mezos (France)',1,1,0),(28178,0,128231,'Mialet','France','FR','Mialet (France)',1,1,0),(28179,0,128232,'Miami','United States of America','US','Miami (United States of America)',1,1,0),(28180,0,128233,'Miami Beach - Sunny Isles','United States of America','US','Miami Beach - Sunny Isles (United States of America)',1,1,0),(28181,31938,128234,'Miami Lakes','United States of America','US','Miami Lakes (United States of America)',1,1,0),(28182,17612,128235,'Mianyang','China','CN','Mianyang (China)',1,1,0),(28183,0,128236,'Middelie','Netherlands','NL','Middelie (Netherlands)',1,1,0),(28184,17635,128237,'Middlesboro','United States of America','US','Middlesboro (United States of America)',1,1,0),(28185,17659,128238,'Midwest City','United States of America','US','Midwest City (United States of America)',1,1,0),(28186,0,128239,'Miesenbach bei Birkfeld','Austria','AT','Miesenbach bei Birkfeld (Austria)',1,1,0),(28187,17677,128240,'Mijas','Spain','ES','Mijas (Spain)',1,1,0),(28188,17690,128241,'Milazzo','Italy','IT','Milazzo (Italy)',1,1,0),(28189,17699,128242,'Milford','Ireland','IE','Milford (Ireland)',1,1,0),(28190,31943,128243,'Mill Hall','United States of America','US','Mill Hall (United States of America)',1,1,0),(28191,0,128244,'Mille-Isles','Canada','CA','Mille-Isles (Canada)',1,1,0),(28192,0,128245,'Milne Bay','Papua New Guinea','PG','Milne Bay (Papua New Guinea)',1,1,0),(28193,17730,128246,'Milnerton','South Africa','ZA','Milnerton (South Africa)',1,1,0),(28194,0,128247,'Milton','Canada','CA','Milton (Canada)',1,1,0),(28195,17745,128248,'Milwaukie','United States of America','US','Milwaukie (United States of America)',1,1,0),(28196,0,128249,'Minamiuonuma','Japan','JP','Minamiuonuma (Japan)',1,1,0),(28197,17770,128250,'Mineral','United States of America','US','Mineral (United States of America)',1,1,0),(28198,0,128251,'Minga Guazu','Paraguay','PY','Minga Guazu (Paraguay)',1,1,0),(28199,17780,128252,'Minies','Greece','GR','Minies (Greece)',1,1,0),(28200,17788,128253,'Minocqua','United States of America','US','Minocqua (United States of America)',1,1,0),(28201,17802,128254,'Minuwangoda','Sri Lanka','LK','Minuwangoda (Sri Lanka)',1,1,0),(28202,0,128255,'Miranda','Brazil','BR','Miranda (Brazil)',1,1,0),(28203,0,128256,'Mirandola','Italy','IT','Mirandola (Italy)',1,1,0),(28204,0,128257,'Mission','United States of America','US','Mission (United States of America)',1,1,0),(28205,17614,128258,'Miaoli','Taiwan','TW','Miaoli (Taiwan)',1,1,0),(28206,17615,128259,'Micanopy','United States of America','US','Micanopy (United States of America)',1,1,0),(28207,0,128260,'Michalova','Slovakia','SK','Michalova (Slovakia)',1,1,0),(28208,17620,128261,'Michigan City','United States of America','US','Michigan City (United States of America)',1,1,0),(28209,17621,128262,'Micoud','Saint Lucia','LC','Micoud (Saint Lucia)',1,1,0),(28210,0,128263,'Middleburg Heights','United States of America','US','Middleburg Heights (United States of America)',1,1,0),(28211,0,128264,'Middlebury','United States of America','US','Middlebury (United States of America)',1,1,0),(28212,0,128265,'Middleton-in-Teesdale','United Kingdom','UK','Middleton-in-Teesdale (United Kingdom)',1,1,0),(28213,0,128266,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(28214,17651,128267,'Midpines','United States of America','US','Midpines (United States of America)',1,1,0),(28215,0,128268,'Midsland','Netherlands','NL','Midsland (Netherlands)',1,1,0),(28216,0,128269,'Mieders','Austria','AT','Mieders (Austria)',1,1,0),(28217,17668,128270,'Mierlo','Netherlands','NL','Mierlo (Netherlands)',1,1,0),(28218,17679,128271,'Mijoux','France','FR','Mijoux (France)',1,1,0),(28219,17683,128272,'Mikulov','Czech Republic','CZ','Mikulov (Czech Republic)',1,1,0),(28220,0,128273,'Milan','United States of America','US','Milan (United States of America)',1,1,0),(28221,0,128274,'Milebrook','United Kingdom','UK','Milebrook (United Kingdom)',1,1,0),(28222,0,128275,'Milies','Greece','GR','Milies (Greece)',1,1,0),(28223,0,128276,'Milina','Greece','GR','Milina (Greece)',1,1,0),(28224,17705,128277,'Mill','Netherlands','NL','Mill (Netherlands)',1,1,0),(28225,0,128278,'Mill River Provincial Park','Canada','CA','Mill River Provincial Park (Canada)',1,1,0),(28226,17712,128279,'Millbrook','United States of America','US','Millbrook (United States of America)',1,1,0),(28227,17722,128280,'Millington','United States of America','US','Millington (United States of America)',1,1,0),(28228,17726,128281,'Millsboro','United States of America','US','Millsboro (United States of America)',1,1,0),(28229,0,128282,'Milltown Malbay','Ireland','IE','Milltown Malbay (Ireland)',1,1,0),(28230,17737,128283,'Milpitas','United States of America','US','Milpitas (United States of America)',1,1,0),(28231,17739,128284,'Milsons Point','Australia','AU','Milsons Point (Australia)',1,1,0),(28232,17744,128285,'Milwaukee','United States of America','US','Milwaukee (United States of America)',1,1,0),(28233,17750,128286,'Minabe','Japan','JP','Minabe (Japan)',1,1,0),(28234,0,128287,'Minami-Awaji','Japan','JP','Minami-Awaji (Japan)',1,1,0),(28235,0,128288,'Minehead','United Kingdom','UK','Minehead (United Kingdom)',1,1,0),(28236,0,128289,'Mineral Wells','United States of America','US','Mineral Wells (United States of America)',1,1,0),(28237,0,128290,'Mineralny Wody','Russia','RU','Mineralny Wody (Russia)',1,1,0),(28238,17778,128291,'Minett','Canada','CA','Minett (Canada)',1,1,0),(28239,17793,128292,'Minot','United States of America','US','Minot (United States of America)',1,1,0),(28240,0,128293,'Minsen','Germany','DE','Minsen (Germany)',1,1,0),(28241,17809,128294,'Miradolo Terme','Italy','IT','Miradolo Terme (Italy)',1,1,0),(28242,17814,128295,'Miramar','Spain','ES','Miramar (Spain)',1,1,0),(28243,0,128296,'Miramar Beach','United States of America','US','Miramar Beach (United States of America)',1,1,0),(28244,17817,128297,'Miramichi','Canada','CA','Miramichi (Canada)',1,1,0),(28245,17822,128298,'Miranda de Ebro','Spain','ES','Miranda de Ebro (Spain)',1,1,0),(28246,0,128299,'Mirow','Germany','DE','Mirow (Germany)',1,1,0),(28247,17847,128300,'Miskolc','Hungary','HU','Miskolc (Hungary)',1,1,0),(28248,17856,128301,'Misterbianco','Italy','IT','Misterbianco (Italy)',1,1,0),(28249,0,128302,'Mithymna','Greece','GR','Mithymna (Greece)',1,1,0),(28250,0,128303,'Mittenaar','Germany','DE','Mittenaar (Germany)',1,1,0),(28251,0,128304,'Mitterolang','Italy','IT','Mitterolang (Italy)',1,1,0),(28252,0,128305,'Mittlach','France','FR','Mittlach (France)',1,1,0),(28253,0,128306,'Mladejov','Czech Republic','CZ','Mladejov (Czech Republic)',1,1,0),(28254,0,128307,'Mljet Island','Croatia','HR','Mljet Island (Croatia)',1,1,0),(28255,17903,128308,'Moama','Australia','AU','Moama (Australia)',1,1,0),(28256,0,128309,'Mochima Nationalpark','Venezuela','VE','Mochima Nationalpark (Venezuela)',1,1,0),(28257,17914,128310,'Moconesi','Italy','IT','Moconesi (Italy)',1,1,0),(28258,17917,128311,'Modesto','United States of America','US','Modesto (United States of America)',1,1,0),(28259,17918,128312,'Modica','Italy','IT','Modica (Italy)',1,1,0),(28260,0,128313,'Modimolle','South Africa','ZA','Modimolle (South Africa)',1,1,0),(28261,0,128314,'Moffat','United Kingdom','UK','Moffat (United Kingdom)',1,1,0),(28262,0,128315,'Moggers','Austria','AT','Moggers (Austria)',1,1,0),(28263,0,128316,'Moiano di Citta della Pieve','Italy','IT','Moiano di Citta della Pieve (Italy)',1,1,0),(28264,17949,128317,'Moina','Australia','AU','Moina (Australia)',1,1,0),(28265,0,128318,'Moja','Spain','ES','Moja (Spain)',1,1,0),(28266,0,128319,'Mojacar','Spain','ES','Mojacar (Spain)',1,1,0),(28267,17968,128320,'Molazzana','Italy','IT','Molazzana (Italy)',1,1,0),(28268,0,128321,'Mold','United Kingdom','UK','Mold (United Kingdom)',1,1,0),(28269,17971,128322,'Molde','Norway','NO','Molde (Norway)',1,1,0),(28270,0,128323,'Molinos','Argentina','AR','Molinos (Argentina)',1,1,0),(28271,0,128324,'Mollerussa','Spain','ES','Mollerussa (Spain)',1,1,0),(28272,0,128325,'Mollina','Spain','ES','Mollina (Spain)',1,1,0),(28273,0,128326,'Mollosund','Sweden','SE','Mollosund (Sweden)',1,1,0),(28274,0,128327,'Molochkovo','Russia','RU','Molochkovo (Russia)',1,1,0),(28275,0,128328,'Molos','Greece','GR','Molos (Greece)',1,1,0),(28276,0,128329,'Molunat','Croatia','HR','Molunat (Croatia)',1,1,0),(28277,0,128330,'Momignies','Belgium','BE','Momignies (Belgium)',1,1,0),(28278,18012,128331,'Monachil','Spain','ES','Monachil (Spain)',1,1,0),(28279,0,128332,'Monastiri','Greece','GR','Monastiri (Greece)',1,1,0),(28280,18026,128333,'Moncalieri','Italy','IT','Moncalieri (Italy)',1,1,0),(28281,0,128334,'Monchiero','Italy','IT','Monchiero (Italy)',1,1,0),(28282,18038,128335,'Moncton','Canada','CA','Moncton (Canada)',1,1,0),(28283,18042,128336,'Mondariz','Spain','ES','Mondariz (Spain)',1,1,0),(28284,18061,128337,'Moneteau','France','FR','Moneteau (France)',1,1,0),(28285,18066,128338,'Monfalcone','Italy','IT','Monfalcone (Italy)',1,1,0),(28286,0,128339,'Monkton','United Kingdom','UK','Monkton (United Kingdom)',1,1,0),(28287,18094,128340,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28288,31960,128341,'Mont Pelerin','Switzerland','CH','Mont Pelerin (Switzerland)',1,1,0),(28289,0,128342,'Mont St Aubert','Belgium','BE','Mont St Aubert (Belgium)',1,1,0),(28290,18112,128343,'Montagnac','France','FR','Montagnac (France)',1,1,0),(28291,18113,128344,'Montagnac-Montpezat','France','FR','Montagnac-Montpezat (France)',1,1,0),(28292,0,128345,'Montaigut-le-Blanc','France','FR','Montaigut-le-Blanc (France)',1,1,0),(28293,0,128346,'Montanita','Ecuador','EC','Montanita (Ecuador)',1,1,0),(28294,18137,128347,'Montauro','Italy','IT','Montauro (Italy)',1,1,0),(28295,0,128348,'Montbellet','France','FR','Montbellet (France)',1,1,0),(28296,0,128349,'Montcada i Reixac','Spain','ES','Montcada i Reixac (Spain)',1,1,0),(28297,31977,128350,'Monte Grimano Terme','Italy','IT','Monte Grimano Terme (Italy)',1,1,0),(28298,31982,128351,'Monte San Savino','Italy','IT','Monte San Savino (Italy)',1,1,0),(28299,0,128352,'Montebello Ionico','Italy','IT','Montebello Ionico (Italy)',1,1,0),(28300,18175,128353,'Montecassiano','Italy','IT','Montecassiano (Italy)',1,1,0),(28301,0,128354,'Montecchio Maggiore','Italy','IT','Montecchio Maggiore (Italy)',1,1,0),(28302,0,128355,'Montefiascone','Italy','IT','Montefiascone (Italy)',1,1,0),(28303,0,128356,'Montefoscoli','Italy','IT','Montefoscoli (Italy)',1,1,0),(28304,0,128357,'Montegiovi','Italy','IT','Montegiovi (Italy)',1,1,0),(28305,0,128358,'Montegonzi','Italy','IT','Montegonzi (Italy)',1,1,0),(28306,18189,128359,'Montegridolfo','Italy','IT','Montegridolfo (Italy)',1,1,0),(28307,18194,128360,'Monteleone d\'Orvieto','Italy','IT','Monteleone d\'Orvieto (Italy)',1,1,0),(28308,18196,128361,'Montelimar','Nicaragua','NI','Montelimar (Nicaragua)',1,1,0),(28309,18199,128362,'Montelupo Albese','Italy','IT','Montelupo Albese (Italy)',1,1,0),(28310,0,128363,'Montenegro','Portugal','PT','Montenegro (Portugal)',1,1,0),(28311,18211,128364,'Montepaone Lido','Italy','IT','Montepaone Lido (Italy)',1,1,0),(28312,18223,128365,'Montes Claros','Brazil','BR','Montes Claros (Brazil)',1,1,0),(28313,18237,128366,'Montevideo','Uruguay','UY','Montevideo (Uruguay)',1,1,0),(28314,0,128367,'Monceaux-sur-Dordogne','France','FR','Monceaux-sur-Dordogne (France)',1,1,0),(28315,0,128368,'Moncel-les-Luneville','France','FR','Moncel-les-Luneville (France)',1,1,0),(28316,0,128369,'Monchhof','Austria','AT','Monchhof (Austria)',1,1,0),(28317,18032,128370,'Moncks Corner','United States of America','US','Moncks Corner (United States of America)',1,1,0),(28318,18055,128371,'Moneglia','Italy','IT','Moneglia (Italy)',1,1,0),(28319,0,128372,'Monfero','Spain','ES','Monfero (Spain)',1,1,0),(28320,18080,128373,'Monkey Mia','Australia','AU','Monkey Mia (Australia)',1,1,0),(28321,0,128374,'Monolithos-Beach','Greece','GR','Monolithos-Beach (Greece)',1,1,0),(28322,18092,128375,'Monpazier','France','FR','Monpazier (France)',1,1,0),(28323,0,128376,'Monswiller','France','FR','Monswiller (France)',1,1,0),(28324,0,128377,'Montagna Val di Pesa','Italy','IT','Montagna Val di Pesa (Italy)',1,1,0),(28325,0,128378,'Montana VS','Switzerland','CH','Montana VS (Switzerland)',1,1,0),(28326,18133,128379,'Montargil','Portugal','PT','Montargil (Portugal)',1,1,0),(28327,18135,128380,'Montasola','Italy','IT','Montasola (Italy)',1,1,0),(28328,18152,128381,'Montceau-les-Mines','France','FR','Montceau-les-Mines (France)',1,1,0),(28329,18154,128382,'Montchanin','United States of America','US','Montchanin (United States of America)',1,1,0),(28330,18163,128383,'Monte Carlo','Monaco','MC','Monte Carlo (Monaco)',1,1,0),(28331,31975,128384,'Monte Gordo','Portugal','PT','Monte Gordo (Portugal)',1,1,0),(28332,0,128385,'Monte Leon','Spain','ES','Monte Leon (Spain)',1,1,0),(28333,0,128386,'Monte Petrosu','Italy','IT','Monte Petrosu (Italy)',1,1,0),(28334,0,128387,'Monte Sant\' Angelo','Italy','IT','Monte Sant\' Angelo (Italy)',1,1,0),(28335,0,128388,'Montecchio','Italy','IT','Montecchio (Italy)',1,1,0),(28336,18195,128389,'Montelimar','France','FR','Montelimar (France)',1,1,0),(28337,0,128390,'Montenegro','Brazil','BR','Montenegro (Brazil)',1,1,0),(28338,18212,128391,'Monteprandone','Italy','IT','Monteprandone (Italy)',1,1,0),(28339,18214,128392,'Montereale Valcellina','Italy','IT','Montereale Valcellina (Italy)',1,1,0),(28340,18218,128393,'Monteriggioni','Italy','IT','Monteriggioni (Italy)',1,1,0),(28341,18222,128394,'Monterrey','Mexico','MX','Monterrey (Mexico)',1,1,0),(28342,18231,128395,'Monteux','France','FR','Monteux (France)',1,1,0),(28343,0,128396,'Montferrand-du-Perigord','France','FR','Montferrand-du-Perigord (France)',1,1,0),(28344,18252,128397,'Montgomery','United States of America','US','Montgomery (United States of America)',1,1,0),(28345,18255,128398,'Montgomeryville','United States of America','US','Montgomeryville (United States of America)',1,1,0),(28346,0,128399,'Monti','Italy','IT','Monti (Italy)',1,1,0),(28347,0,128400,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(28348,0,128401,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(28349,18269,128402,'Montigny-le-Bretonneux','France','FR','Montigny-le-Bretonneux (France)',1,1,0),(28350,18278,128403,'Mont-Louis','France','FR','Mont-Louis (France)',1,1,0),(28351,18295,128404,'Montory','France','FR','Montory (France)',1,1,0),(28352,18297,128405,'Montoursville','United States of America','US','Montoursville (United States of America)',1,1,0),(28353,0,128406,'Montpezat','France','FR','Montpezat (France)',1,1,0),(28354,18310,128407,'Montriond','France','FR','Montriond (France)',1,1,0),(28355,0,128408,'Montrose','United Kingdom','UK','Montrose (United Kingdom)',1,1,0),(28356,0,128409,'Mont-Saxonnex','France','FR','Mont-Saxonnex (France)',1,1,0),(28357,18325,128410,'Montsoreau','France','FR','Montsoreau (France)',1,1,0),(28358,0,128411,'Mooloolaba','Australia','AU','Mooloolaba (Australia)',1,1,0),(28359,0,128412,'Moonta','Australia','AU','Moonta (Australia)',1,1,0),(28360,18352,128413,'Mooresville','United States of America','US','Mooresville (United States of America)',1,1,0),(28361,0,128414,'Moos','Germany','DE','Moos (Germany)',1,1,0),(28362,0,128415,'Moose Lake','United States of America','US','Moose Lake (United States of America)',1,1,0),(28363,0,128416,'Mopti','Mali','ML','Mopti (Mali)',1,1,0),(28364,18374,128417,'Moraitika','Greece','GR','Moraitika (Greece)',1,1,0),(28365,18382,128418,'Morano Calabro','Italy','IT','Morano Calabro (Italy)',1,1,0),(28366,18403,128419,'Morehead','United States of America','US','Morehead (United States of America)',1,1,0),(28367,0,128420,'Morehead City','United States of America','US','Morehead City (United States of America)',1,1,0),(28368,18420,128421,'Morgedal','Norway','NO','Morgedal (Norway)',1,1,0),(28369,0,128422,'Morgins','Switzerland','CH','Morgins (Switzerland)',1,1,0),(28370,18439,128423,'Mornas','France','FR','Mornas (France)',1,1,0),(28371,0,128424,'Moron','Cuba','CU','Moron (Cuba)',1,1,0),(28372,18461,128425,'Morrisville','United States of America','US','Morrisville (United States of America)',1,1,0),(28373,18472,128426,'Mortagua','Portugal','PT','Mortagua (Portugal)',1,1,0),(28374,0,128427,'Mortera de Pielagos','Spain','ES','Mortera de Pielagos (Spain)',1,1,0),(28375,0,128428,'Morton Grove','United States of America','US','Morton Grove (United States of America)',1,1,0),(28376,0,128429,'Moscardon','Spain','ES','Moscardon (Spain)',1,1,0),(28377,0,128430,'Mosern bei Seefeld','Austria','AT','Mosern bei Seefeld (Austria)',1,1,0),(28378,18517,128431,'Mostoles','Spain','ES','Mostoles (Spain)',1,1,0),(28379,0,128432,'Motorogi Conservancy','Kenya','KE','Motorogi Conservancy (Kenya)',1,1,0),(28380,0,128433,'Moucha','Greece','GR','Moucha (Greece)',1,1,0),(28381,18546,128434,'Moultonborough','United States of America','US','Moultonborough (United States of America)',1,1,0),(28382,18547,128435,'Moultrie','United States of America','US','Moultrie (United States of America)',1,1,0),(28383,31994,128436,'Mount Carmel','United States of America','US','Mount Carmel (United States of America)',1,1,0),(28384,32021,128437,'Mount Juliet','United States of America','US','Mount Juliet (United States of America)',1,1,0),(28385,32031,128438,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(28386,0,128439,'Mount Rainier','United States of America','US','Mount Rainier (United States of America)',1,1,0),(28387,0,128440,'Mount Robson Provincial Park','Canada','CA','Mount Robson Provincial Park (Canada)',1,1,0),(28388,0,128441,'Mount St. Helens','United States of America','US','Mount St. Helens (United States of America)',1,1,0),(28389,0,128442,'Mount Sunapee','United States of America','US','Mount Sunapee (United States of America)',1,1,0),(28390,0,128443,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(28391,0,128444,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(28392,0,128445,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(28393,32053,128446,'Mountain City','United States of America','US','Mountain City (United States of America)',1,1,0),(28394,18563,128447,'Mountainhome','United States of America','US','Mountainhome (United States of America)',1,1,0),(28395,18566,128448,'Mountshannon','Ireland','IE','Mountshannon (Ireland)',1,1,0),(28396,0,128449,'Muang','Thailand','TH','Muang (Thailand)',1,1,0),(28397,0,128450,'Muang Khong','LAOS','LA','Muang Khong (LAOS)',1,1,0),(28398,0,128451,'Muar','Malaysia','MY','Muar (Malaysia)',1,1,0),(28399,0,128452,'Much Wenlock','United Kingdom','UK','Much Wenlock (United Kingdom)',1,1,0),(28400,18623,128453,'Mugla','Turkey','TR','Mugla (Turkey)',1,1,0),(28401,0,128454,'Muhlacker','Germany','DE','Muhlacker (Germany)',1,1,0),(28402,0,128455,'Muhlbach','Austria','AT','Muhlbach (Austria)',1,1,0),(28403,0,128456,'Muhlbach','Italy','IT','Muhlbach (Italy)',1,1,0),(28404,0,128457,'Muhlbach im Pinzgau','Austria','AT','Muhlbach im Pinzgau (Austria)',1,1,0),(28405,0,128458,'Muhlenbach','Germany','DE','Muhlenbach (Germany)',1,1,0),(28406,0,128459,'Muhlenholz','Germany','DE','Muhlenholz (Germany)',1,1,0),(28407,0,128460,'Muhlhausen-Ehingen','Germany','DE','Muhlhausen-Ehingen (Germany)',1,1,0),(28408,0,128461,'Muhltal','Austria','AT','Muhltal (Austria)',1,1,0),(28409,18641,128462,'Mukdahan','Thailand','TH','Mukdahan (Thailand)',1,1,0),(28410,18660,128463,'Mulfingen','Germany','DE','Mulfingen (Germany)',1,1,0),(28411,0,128464,'Mullagh','Ireland','IE','Mullagh (Ireland)',1,1,0),(28412,0,128465,'Mulrany','Ireland','IE','Mulrany (Ireland)',1,1,0),(28413,0,128466,'Mumbles','United Kingdom','UK','Mumbles (United Kingdom)',1,1,0),(28414,0,128467,'Munchwilen','Switzerland','CH','Munchwilen (Switzerland)',1,1,0),(28415,18689,128468,'Munduk','Indonesia','ID','Munduk (Indonesia)',1,1,0),(28416,0,128469,'Munster-Sarmsheim','Germany','DE','Munster-Sarmsheim (Germany)',1,1,0),(28417,0,128470,'Muodoslompolo','Sweden','SE','Muodoslompolo (Sweden)',1,1,0),(28418,18044,128471,'Mondello','Italy','IT','Mondello (Italy)',1,1,0),(28419,18047,128472,'Mondim de Basto','Portugal','PT','Mondim de Basto (Portugal)',1,1,0),(28420,0,128473,'Monesterio','Spain','ES','Monesterio (Spain)',1,1,0),(28421,18060,128474,'Monestier','France','FR','Monestier (France)',1,1,0),(28422,0,128475,'Monleale','Italy','IT','Monleale (Italy)',1,1,0),(28423,18093,128476,'Monreale','Italy','IT','Monreale (Italy)',1,1,0),(28424,18095,128477,'Monroeville','United States of America','US','Monroeville (United States of America)',1,1,0),(28425,0,128478,'Monroeville','United States of America','US','Monroeville (United States of America)',1,1,0),(28426,18108,128479,'Montabaur','Germany','DE','Montabaur (Germany)',1,1,0),(28427,0,128480,'Montagny-les-Beaune','France','FR','Montagny-les-Beaune (France)',1,1,0),(28428,0,128481,'Montalcinello','Italy','IT','Montalcinello (Italy)',1,1,0),(28429,0,128482,'Montalto di Castro','Italy','IT','Montalto di Castro (Italy)',1,1,0),(28430,0,128483,'Montana','Bulgaria','BG','Montana (Bulgaria)',1,1,0),(28431,0,128484,'Montauban de Bretagne','France','FR','Montauban de Bretagne (France)',1,1,0),(28432,0,128485,'Montbonnot St. Martin','France','FR','Montbonnot St. Martin (France)',1,1,0),(28433,18144,128486,'Montboucher-sur-Jabron','France','FR','Montboucher-sur-Jabron (France)',1,1,0),(28434,18155,128487,'Montchavin','France','FR','Montchavin (France)',1,1,0),(28435,0,128488,'Monte del Lago','Italy','IT','Monte del Lago (Italy)',1,1,0),(28436,18169,128489,'Montebello','United States of America','US','Montebello (United States of America)',1,1,0),(28437,0,128490,'Montecampione','Italy','IT','Montecampione (Italy)',1,1,0),(28438,0,128491,'Montecastelli Pisano','Italy','IT','Montecastelli Pisano (Italy)',1,1,0),(28439,0,128492,'Montecatini Val di Cecina','Italy','IT','Montecatini Val di Cecina (Italy)',1,1,0),(28440,18183,128493,'Montefalco','Italy','IT','Montefalco (Italy)',1,1,0),(28441,0,128494,'Montefranco','Italy','IT','Montefranco (Italy)',1,1,0),(28442,18190,128495,'Montegrotto Terme','Italy','IT','Montegrotto Terme (Italy)',1,1,0),(28443,0,128496,'Montegufoni','Italy','IT','Montegufoni (Italy)',1,1,0),(28444,0,128497,'Monteguidi','Italy','IT','Monteguidi (Italy)',1,1,0),(28445,0,128498,'Montejaque Ronda','Spain','ES','Montejaque Ronda (Spain)',1,1,0),(28446,18203,128499,'Montemerano','Italy','IT','Montemerano (Italy)',1,1,0),(28447,0,128500,'Montemonaco','Italy','IT','Montemonaco (Italy)',1,1,0),(28448,18216,128501,'Monterey','United States of America','US','Monterey (United States of America)',1,1,0),(28449,18221,128502,'Monterotondo','Italy','IT','Monterotondo (Italy)',1,1,0),(28450,18227,128503,'Montescudaio','Italy','IT','Montescudaio (Italy)',1,1,0),(28451,0,128504,'Montesquiou','France','FR','Montesquiou (France)',1,1,0),(28452,18242,128505,'Montezuma','Costa Rica','CR','Montezuma (Costa Rica)',1,1,0),(28453,0,128506,'Montfaucon','Switzerland','CH','Montfaucon (Switzerland)',1,1,0),(28454,0,128507,'Montfort-l\'Amaury','France','FR','Montfort-l\'Amaury (France)',1,1,0),(28455,0,128508,'Montgomery','United States of America','US','Montgomery (United States of America)',1,1,0),(28456,18261,128509,'Montichiari','Italy','IT','Montichiari (Italy)',1,1,0),(28457,18263,128510,'Montieri','Italy','IT','Montieri (Italy)',1,1,0),(28458,0,128511,'Mont-Joli','Canada','CA','Mont-Joli (Canada)',1,1,0),(28459,0,128512,'Montlaur','France','FR','Montlaur (France)',1,1,0),(28460,18282,128513,'Montmagny','Canada','CA','Montmagny (Canada)',1,1,0),(28461,18294,128514,'Montoro','Spain','ES','Montoro (Spain)',1,1,0),(28462,0,128515,'Montoro (Narni)','Italy','IT','Montoro (Narni) (Italy)',1,1,0),(28463,0,128516,'Montpelier','United States of America','US','Montpelier (United States of America)',1,1,0),(28464,18309,128517,'Montrichard','France','FR','Montrichard (France)',1,1,0),(28465,0,128518,'Montsalvy','France','FR','Montsalvy (France)',1,1,0),(28466,18328,128519,'Montuiri','Spain','ES','Montuiri (Spain)',1,1,0),(28467,0,128520,'Montussan','France','FR','Montussan (France)',1,1,0),(28468,18331,128521,'Montville','Australia','AU','Montville (Australia)',1,1,0),(28469,18339,128522,'Moody','United States of America','US','Moody (United States of America)',1,1,0),(28470,0,128523,'Moon Township','United States of America','US','Moon Township (United States of America)',1,1,0),(28471,0,128524,'Moorbad Harbach','Austria','AT','Moorbad Harbach (Austria)',1,1,0),(28472,0,128525,'Moorsel','Belgium','BE','Moorsel (Belgium)',1,1,0),(28473,0,128526,'Mor','Hungary','HU','Mor (Hungary)',1,1,0),(28474,0,128527,'Moralina de Sayago','Spain','ES','Moralina de Sayago (Spain)',1,1,0),(28475,18378,128528,'Moranbah','Australia','AU','Moranbah (Australia)',1,1,0),(28476,18385,128529,'Moratuwa','Sri Lanka','LK','Moratuwa (Sri Lanka)',1,1,0),(28477,0,128530,'Moret-sur-Loing','France','FR','Moret-sur-Loing (France)',1,1,0),(28478,0,128531,'Morgan Bay','South Africa','ZA','Morgan Bay (South Africa)',1,1,0),(28479,18418,128532,'Morgantown','United States of America','US','Morgantown (United States of America)',1,1,0),(28480,0,128533,'Morpeth','United Kingdom','UK','Morpeth (United Kingdom)',1,1,0),(28481,18460,128534,'Morristown','United States of America','US','Morristown (United States of America)',1,1,0),(28482,18463,128535,'Morro de Sao Paulo','Brazil','BR','Morro de Sao Paulo (Brazil)',1,1,0),(28483,0,128536,'Morsano al Tagliamento','Italy','IT','Morsano al Tagliamento (Italy)',1,1,0),(28484,0,128537,'Morsdorf','Germany','DE','Morsdorf (Germany)',1,1,0),(28485,18474,128538,'Mortelle','Italy','IT','Mortelle (Italy)',1,1,0),(28486,0,128539,'Morton\'s Gap','United States of America','US','Morton\'s Gap (United States of America)',1,1,0),(28487,18479,128540,'Morwell','Australia','AU','Morwell (Australia)',1,1,0),(28488,0,128541,'Mosi-oa-Tunya-Nationalpark','Zambia','ZM','Mosi-oa-Tunya-Nationalpark (Zambia)',1,1,0),(28489,18509,128542,'Mossel Bay','South Africa','ZA','Mossel Bay (South Africa)',1,1,0),(28490,0,128543,'Mossingen','Germany','DE','Mossingen (Germany)',1,1,0),(28491,18518,128544,'Mostov','Czech Republic','CZ','Mostov (Czech Republic)',1,1,0),(28492,18523,128545,'Motilla del Palancar','Spain','ES','Motilla del Palancar (Spain)',1,1,0),(28493,0,128546,'Moulay Idriss Zerhoun','Morocco','MA','Moulay Idriss Zerhoun (Morocco)',1,1,0),(28494,18550,128547,'Mounds View','United States of America','US','Mounds View (United States of America)',1,1,0),(28495,31988,128548,'Mount Airy','United States of America','US','Mount Airy (United States of America)',1,1,0),(28496,32011,128549,'Mount Holly','United States of America','US','Mount Holly (United States of America)',1,1,0),(28497,32018,128550,'Mount Jackson','United States of America','US','Mount Jackson (United States of America)',1,1,0),(28498,32028,128551,'Mount Olive','United States of America','US','Mount Olive (United States of America)',1,1,0),(28499,32030,128552,'Mount Orab','United States of America','US','Mount Orab (United States of America)',1,1,0),(28500,0,128553,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(28501,32060,128554,'Mountain View','United States of America','US','Mountain View (United States of America)',1,1,0),(28502,0,128555,'Mountain View','United States of America','US','Mountain View (United States of America)',1,1,0),(28503,18568,128556,'Mouresi','Greece','GR','Mouresi (Greece)',1,1,0),(28504,0,128557,'Moureze','France','FR','Moureze (France)',1,1,0),(28505,0,128558,'Mousterlin-Fouesnant','France','FR','Mousterlin-Fouesnant (France)',1,1,0),(28506,0,128559,'Mouthier-Haute-Pierre','France','FR','Mouthier-Haute-Pierre (France)',1,1,0),(28507,0,128560,'Moutier','Switzerland','CH','Moutier (Switzerland)',1,1,0),(28508,0,128561,'Moutiers','France','FR','Moutiers (France)',1,1,0),(28509,18586,128562,'Mozarbez','Spain','ES','Mozarbez (Spain)',1,1,0),(28510,18588,128563,'Mozzo','Italy','IT','Mozzo (Italy)',1,1,0),(28511,18593,128564,'Msambweni','Kenya','KE','Msambweni (Kenya)',1,1,0),(28512,0,128565,'Mszana Dolna','Poland','PL','Mszana Dolna (Poland)',1,1,0),(28513,0,128566,'Muharrak','Bahrain','BH','Muharrak (Bahrain)',1,1,0),(28514,0,128567,'Muhlenbecker Land','Germany','DE','Muhlenbecker Land (Germany)',1,1,0),(28515,18649,128568,'Mukwonago','United States of America','US','Mukwonago (United States of America)',1,1,0),(28516,0,128569,'Mulheim-Karlich','Germany','DE','Mulheim-Karlich (Germany)',1,1,0),(28517,0,128570,'Mullsjo','Sweden','SE','Mullsjo (Sweden)',1,1,0),(28518,18674,128571,'Multan','Pakistan','PK','Multan (Pakistan)',1,1,0),(28519,0,128572,'Mulwala','Australia','AU','Mulwala (Australia)',1,1,0),(28520,18702,128574,'Munstertal','Germany','DE','Munstertal (Germany)',1,1,0),(28521,18706,128575,'Muonio','Finland','FI','Muonio (Finland)',1,1,0),(28522,17590,128576,'Meylan','France','FR','Meylan (France)',1,1,0),(28523,17591,128577,'Meyrals','France','FR','Meyrals (France)',1,1,0),(28524,17597,128578,'Meyzieu','France','FR','Meyzieu (France)',1,1,0),(28525,0,128579,'Mezzocorona','Italy','IT','Mezzocorona (Italy)',1,1,0),(28526,0,128580,'M\'Hamid','Morocco','MA','M\'Hamid (Morocco)',1,1,0),(28527,31934,128581,'Miami Beach','United States of America','US','Miami Beach (United States of America)',1,1,0),(28528,0,128582,'Michurinskoye','Russia','RU','Michurinskoye (Russia)',1,1,0),(28529,17623,128583,'Middelburg','South Africa','ZA','Middelburg (South Africa)',1,1,0),(28530,17634,128584,'Middlemount','Australia','AU','Middlemount (Australia)',1,1,0),(28531,0,128585,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(28532,0,128586,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(28533,0,128587,'Middlewich','United Kingdom','UK','Middlewich (United Kingdom)',1,1,0),(28534,17645,128588,'Midland','United States of America','US','Midland (United States of America)',1,1,0),(28535,17647,128589,'Midlothian','United States of America','US','Midlothian (United States of America)',1,1,0),(28536,17650,128590,'Midoun','Tunisia','TN','Midoun (Tunisia)',1,1,0),(28537,17666,128591,'Miercurea-Ciuc','Romania','RO','Miercurea-Ciuc (Romania)',1,1,0),(28538,0,128592,'Mikra Mantinia','Greece','GR','Mikra Mantinia (Greece)',1,1,0),(28539,0,128593,'Mikulasovice','Czech Republic','CZ','Mikulasovice (Czech Republic)',1,1,0),(28540,0,128594,'Milatos','Greece','GR','Milatos (Greece)',1,1,0),(28541,17697,128595,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(28542,0,128596,'Milford','United States of America','US','Milford (United States of America)',1,1,0),(28543,0,128597,'Milford Haven','United Kingdom','UK','Milford Haven (United Kingdom)',1,1,0),(28544,17700,128598,'Milford Sound','New Zealand','NZ','Milford Sound (New Zealand)',1,1,0),(28545,0,128599,'Milkow','Poland','PL','Milkow (Poland)',1,1,0),(28546,0,128600,'Millerovo','Russia','RU','Millerovo (Russia)',1,1,0),(28547,17720,128601,'Millersville','United States of America','US','Millersville (United States of America)',1,1,0),(28548,0,128602,'Minas de Riotinto','Spain','ES','Minas de Riotinto (Spain)',1,1,0),(28549,17785,128603,'Minnedosa','Canada','CA','Minnedosa (Canada)',1,1,0),(28550,0,128604,'Minsk','Belarus','BY','Minsk (Belarus)',1,1,0),(28551,17799,128605,'Minturn','United States of America','US','Minturn (United States of America)',1,1,0),(28552,17811,128606,'Miraflores de la Sierra','Spain','ES','Miraflores de la Sierra (Spain)',1,1,0),(28553,17812,128607,'Miramar','United States of America','US','Miramar (United States of America)',1,1,0),(28554,17840,128608,'Misawa','Japan','JP','Misawa (Japan)',1,1,0),(28555,17845,128609,'Misiones','Argentina','AR','Misiones (Argentina)',1,1,0),(28556,0,128610,'Missen/Wilhams','Germany','DE','Missen/Wilhams (Germany)',1,1,0),(28557,31951,128611,'Mission Beach','Australia','AU','Mission Beach (Australia)',1,1,0),(28558,0,128612,'Mission Hills','United States of America','US','Mission Hills (United States of America)',1,1,0),(28559,0,128613,'Mistelbach','Austria','AT','Mistelbach (Austria)',1,1,0),(28560,17867,128614,'Mito','Japan','JP','Mito (Japan)',1,1,0),(28561,0,128615,'Mittelwihr','France','FR','Mittelwihr (France)',1,1,0),(28562,17873,128616,'Mittenwald','Germany','DE','Mittenwald (Germany)',1,1,0),(28563,0,128617,'Mixorouma','Greece','GR','Mixorouma (Greece)',1,1,0),(28564,17883,128618,'Miyajima Island','Japan','JP','Miyajima Island (Japan)',1,1,0),(28565,17885,128619,'Miyako Jima Island','Japan','JP','Miyako Jima Island (Japan)',1,1,0),(28566,17887,128620,'Miyakonojo','Japan','JP','Miyakonojo (Japan)',1,1,0),(28567,17890,128621,'Miyazu','Japan','JP','Miyazu (Japan)',1,1,0),(28568,0,128622,'Mlada Boleslav','Czech Republic','CZ','Mlada Boleslav (Czech Republic)',1,1,0),(28569,0,128623,'Mlade Buky','Czech Republic','CZ','Mlade Buky (Czech Republic)',1,1,0),(28570,17905,128624,'Moana','Spain','ES','Moana (Spain)',1,1,0),(28571,0,128625,'Mocejon','Spain','ES','Mocejon (Spain)',1,1,0),(28572,0,128626,'Moclin','Spain','ES','Moclin (Spain)',1,1,0),(28573,17919,128627,'Modling','Austria','AT','Modling (Austria)',1,1,0),(28574,17934,128628,'Mogi das Cruzes','Brazil','BR','Mogi das Cruzes (Brazil)',1,1,0),(28575,0,128629,'Mohacs','Hungary','HU','Mohacs (Hungary)',1,1,0),(28576,0,128630,'Mohnesee','Germany','DE','Mohnesee (Germany)',1,1,0),(28577,0,128631,'Mohrungen (Morag)','Poland','PL','Mohrungen (Morag) (Poland)',1,1,0),(28578,17958,128632,'Mojave','United States of America','US','Mojave (United States of America)',1,1,0),(28579,17961,128633,'Mokena','United States of America','US','Mokena (United States of America)',1,1,0),(28580,17965,128634,'Mokpo','South Korea','KR','Mokpo (South Korea)',1,1,0),(28581,0,128635,'Moletai','Lithuania','LT','Moletai (Lithuania)',1,1,0),(28582,0,128636,'Molfsee','Germany','DE','Molfsee (Germany)',1,1,0),(28583,0,128637,'Moliets','France','FR','Moliets (France)',1,1,0),(28584,0,128638,'Moltedo','Italy','IT','Moltedo (Italy)',1,1,0),(28585,17996,128639,'Moltrasio','Italy','IT','Moltrasio (Italy)',1,1,0),(28586,0,128640,'Momjan','Croatia','HR','Momjan (Croatia)',1,1,0),(28587,0,128641,'Mon Repos','Saint Lucia','LC','Mon Repos (Saint Lucia)',1,1,0),(28588,0,128642,'Monbulk','Australia','AU','Monbulk (Australia)',1,1,0),(28589,0,128643,'Moncalvo','Italy','IT','Moncalvo (Italy)',1,1,0),(28590,18028,128644,'Moncarapacho','Portugal','PT','Moncarapacho (Portugal)',1,1,0),(28591,0,128645,'Monchique','Portugal','PT','Monchique (Portugal)',1,1,0),(28592,18053,128646,'Mondsee','Austria','AT','Mondsee (Austria)',1,1,0),(28593,0,128647,'Monfaucon','France','FR','Monfaucon (France)',1,1,0),(28594,18077,128648,'Moniga del Garda','Italy','IT','Moniga del Garda (Italy)',1,1,0),(28595,0,128649,'Monistrol de Calders','Spain','ES','Monistrol de Calders (Spain)',1,1,0),(28596,0,128650,'Monmouth','United Kingdom','UK','Monmouth (United Kingdom)',1,1,0),(28597,0,128651,'Monor','Hungary','HU','Monor (Hungary)',1,1,0),(28598,0,128652,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28599,0,128653,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28600,0,128654,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28601,18097,128655,'Monrovia','Liberia','LR','Monrovia (Liberia)',1,1,0),(28602,0,128656,'Monroyo','Spain','ES','Monroyo (Spain)',1,1,0),(28603,0,128657,'Mons (Bergen)','Belgium','BE','Mons (Bergen) (Belgium)',1,1,0),(28604,18099,128658,'Monsampolo del Tronto','Italy','IT','Monsampolo del Tronto (Italy)',1,1,0),(28605,18101,128659,'Monsaraz','Portugal','PT','Monsaraz (Portugal)',1,1,0),(28606,0,128660,'Monsec','France','FR','Monsec (France)',1,1,0),(28607,18110,128661,'Montafia','Italy','IT','Montafia (Italy)',1,1,0),(28608,18118,128662,'Montagu Bay','Australia','AU','Montagu Bay (Australia)',1,1,0),(28609,18123,128663,'Montaione','Italy','IT','Montaione (Italy)',1,1,0),(28610,0,128664,'Montalbano Elicona','Italy','IT','Montalbano Elicona (Italy)',1,1,0),(28611,0,128665,'Montan','Italy','IT','Montan (Italy)',1,1,0),(28612,31968,128666,'Montauban','France','FR','Montauban (France)',1,1,0),(28613,18136,128667,'Montauk','United States of America','US','Montauk (United States of America)',1,1,0),(28614,18138,128668,'Montauroux','France','FR','Montauroux (France)',1,1,0),(28615,18141,128669,'Montbeliard','France','FR','Montbeliard (France)',1,1,0),(28616,18150,128670,'Montcaret','France','FR','Montcaret (France)',1,1,0),(28617,18159,128671,'Montclus','France','FR','Montclus (France)',1,1,0),(28618,0,128672,'Mont-de-Lans','France','FR','Mont-de-Lans (France)',1,1,0),(28619,0,128673,'Monte Gordo','Mexico','MX','Monte Gordo (Mexico)',1,1,0),(28620,0,128674,'Monte Rio','United States of America','US','Monte Rio (United States of America)',1,1,0),(28621,0,128675,'Monte Vista','United States of America','US','Monte Vista (United States of America)',1,1,0),(28622,18168,128676,'Monteagudo de las Salinas','Spain','ES','Monteagudo de las Salinas (Spain)',1,1,0),(28623,0,128677,'Montebuono','Italy','IT','Montebuono (Italy)',1,1,0),(28624,18174,128678,'Montecarlo','Italy','IT','Montecarlo (Italy)',1,1,0),(28625,0,128679,'Montecastello Vibio','Italy','IT','Montecastello Vibio (Italy)',1,1,0),(28626,0,128680,'Montecatini Terme','Italy','IT','Montecatini Terme (Italy)',1,1,0),(28627,0,128681,'Montecosaro','Italy','IT','Montecosaro (Italy)',1,1,0),(28628,18188,128682,'Montego Bay','Jamaica','JM','Montego Bay (Jamaica)',1,1,0),(28629,0,128683,'Montemaggiore','Italy','IT','Montemaggiore (Italy)',1,1,0),(28630,18204,128684,'Montemignaio','Italy','IT','Montemignaio (Italy)',1,1,0),(28631,18749,128685,'Murrhardt','Germany','DE','Murrhardt (Germany)',1,1,0),(28632,18753,128686,'Murs','France','FR','Murs (France)',1,1,0),(28633,0,128687,'Murta Maria','Italy','IT','Murta Maria (Italy)',1,1,0),(28634,18758,128688,'Murueta','Spain','ES','Murueta (Spain)',1,1,0),(28635,0,128689,'Murzasichle','Poland','PL','Murzasichle (Poland)',1,1,0),(28636,32067,128690,'Mus','Turkey','TR','Mus (Turkey)',1,1,0),(28637,0,128691,'Musandam','Oman','OM','Musandam (Oman)',1,1,0),(28638,18764,128692,'Muscle Shoals','United States of America','US','Muscle Shoals (United States of America)',1,1,0),(28639,18791,128693,'Mutxamel','Spain','ES','Mutxamel (Spain)',1,1,0),(28640,0,128694,'Muxia','Spain','ES','Muxia (Spain)',1,1,0),(28641,18798,128695,'Mwanza','Tanzania','TZ','Mwanza (Tanzania)',1,1,0),(28642,0,128696,'Mykolajiw','Ukraine','UA','Mykolajiw (Ukraine)',1,1,0),(28643,0,128697,'Myrties','Greece','GR','Myrties (Greece)',1,1,0),(28644,0,128699,'Myto pod Dumbierom','Slovakia','SK','Myto pod Dumbierom (Slovakia)',1,1,0),(28645,0,128700,'Na Nai','Thailand','TH','Na Nai (Thailand)',1,1,0),(28646,18837,128701,'Naalehu','United States of America','US','Naalehu (United States of America)',1,1,0),(28647,0,128702,'Naarn im Machlande','Austria','AT','Naarn im Machlande (Austria)',1,1,0),(28648,0,128703,'Nafels','Switzerland','CH','Nafels (Switzerland)',1,1,0),(28649,0,128704,'Naftalan','Azerbaijan','AZ','Naftalan (Azerbaijan)',1,1,0),(28650,18870,128705,'Nagasaki','Japan','JP','Nagasaki (Japan)',1,1,0),(28651,0,128706,'Naharija','Israel','IL','Naharija (Israel)',1,1,0),(28652,0,128707,'Nailloux','France','FR','Nailloux (France)',1,1,0),(28653,18900,128708,'Nakano','Japan','JP','Nakano (Japan)',1,1,0),(28654,0,128709,'Naltschik','Russia','RU','Naltschik (Russia)',1,1,0),(28655,18918,128710,'Nambucca Heads','Australia','AU','Nambucca Heads (Australia)',1,1,0),(28656,18924,128711,'Nampa','United States of America','US','Nampa (United States of America)',1,1,0),(28657,18933,128712,'Nanaimo','Canada','CA','Nanaimo (Canada)',1,1,0),(28658,0,128713,'Nang Thong Beach','Thailand','TH','Nang Thong Beach (Thailand)',1,1,0),(28659,0,128714,'Nangrong','Thailand','TH','Nangrong (Thailand)',1,1,0),(28660,0,128715,'Nantwich','United Kingdom','UK','Nantwich (United Kingdom)',1,1,0),(28661,18975,128716,'Nanyuki','Kenya','KE','Nanyuki (Kenya)',1,1,0),(28662,32073,128717,'Napa','United States of America','US','Napa (United States of America)',1,1,0),(28663,32074,128718,'Napa Valley','United States of America','US','Napa Valley (United States of America)',1,1,0),(28664,18980,128719,'Napanee','Canada','CA','Napanee (Canada)',1,1,0),(28665,18982,128720,'Naperville','United States of America','US','Naperville (United States of America)',1,1,0),(28666,18987,128721,'Naples','Italy','IT','Naples (Italy)',1,1,0),(28667,18994,128722,'Nappanee','United States of America','US','Nappanee (United States of America)',1,1,0),(28668,0,128723,'Nardaran','Azerbaijan','AZ','Nardaran (Azerbaijan)',1,1,0),(28669,19012,128724,'Narita','Japan','JP','Narita (Japan)',1,1,0),(28670,19016,128725,'Naron','Spain','ES','Naron (Spain)',1,1,0),(28671,19018,128726,'Narrabeen','Australia','AU','Narrabeen (Australia)',1,1,0),(28672,19036,128727,'Nashville','United States of America','US','Nashville (United States of America)',1,1,0),(28673,0,128728,'Naucalpan de Juarez','Mexico','MX','Naucalpan de Juarez (Mexico)',1,1,0),(28674,19071,128729,'Naumburg','Germany','DE','Naumburg (Germany)',1,1,0),(28675,0,128730,'Nautla','Mexico','MX','Nautla (Mexico)',1,1,0),(28676,19077,128731,'Nauvoo','United States of America','US','Nauvoo (United States of America)',1,1,0),(28677,0,128732,'Nava del Barco','Spain','ES','Nava del Barco (Spain)',1,1,0),(28678,0,128733,'Navaluenga','Spain','ES','Navaluenga (Spain)',1,1,0),(28679,19093,128735,'Navia','Spain','ES','Navia (Spain)',1,1,0),(28680,19104,128736,'Naxxar','Malta','MT','Naxxar (Malta)',1,1,0),(28681,19108,128737,'Nazare','Portugal','PT','Nazare (Portugal)',1,1,0),(28682,19109,128738,'Nazareth','Israel','IL','Nazareth (Israel)',1,1,0),(28683,19115,128739,'Ndola','Zambia','ZM','Ndola (Zambia)',1,1,0),(28684,0,128740,'Neckargemund','Germany','DE','Neckargemund (Germany)',1,1,0),(28685,19139,128741,'Neenah','United States of America','US','Neenah (United States of America)',1,1,0),(28686,0,128742,'Neetze','Germany','DE','Neetze (Germany)',1,1,0),(28687,19147,128743,'Negombo','Sri Lanka','LK','Negombo (Sri Lanka)',1,1,0),(28688,19156,128744,'Nejdek','Czech Republic','CZ','Nejdek (Czech Republic)',1,1,0),(28689,0,128745,'Nekor','Czech Republic','CZ','Nekor (Czech Republic)',1,1,0),(28690,19177,128746,'Nemesnep','Hungary','HU','Nemesnep (Hungary)',1,1,0),(28691,0,128747,'Nemira','Croatia','HR','Nemira (Croatia)',1,1,0),(28692,19193,128748,'Nepi','Italy','IT','Nepi (Italy)',1,1,0),(28693,19195,128749,'Neptune Beach','United States of America','US','Neptune Beach (United States of America)',1,1,0),(28694,19196,128750,'Nerac','France','FR','Nerac (France)',1,1,0),(28695,0,128751,'Nerin','Spain','ES','Nerin (Spain)',1,1,0),(28696,0,128752,'Nesselwangle','Austria','AT','Nesselwangle (Austria)',1,1,0),(28697,0,128753,'Nether Whitacre','United Kingdom','UK','Nether Whitacre (United Kingdom)',1,1,0),(28698,0,128754,'Netphen','Germany','DE','Netphen (Germany)',1,1,0),(28699,19219,128755,'Nettuno','Italy','IT','Nettuno (Italy)',1,1,0),(28700,0,128756,'Neu Wulmstorf','Germany','DE','Neu Wulmstorf (Germany)',1,1,0),(28701,19221,128757,'Neubrandenburg','Germany','DE','Neubrandenburg (Germany)',1,1,0),(28702,0,128758,'Neuenburg am Rhein','Germany','DE','Neuenburg am Rhein (Germany)',1,1,0),(28703,0,128759,'Neuenkirchen-Vorden','Germany','DE','Neuenkirchen-Vorden (Germany)',1,1,0),(28704,19226,128760,'Neuerburg','Germany','DE','Neuerburg (Germany)',1,1,0),(28705,0,128761,'Neufchatel-en-Bray','France','FR','Neufchatel-en-Bray (France)',1,1,0),(28706,0,128762,'Neugartheim-Ittlenheim','France','FR','Neugartheim-Ittlenheim (France)',1,1,0),(28707,0,128763,'Neuhaus-Schierschnitz','Germany','DE','Neuhaus-Schierschnitz (Germany)',1,1,0),(28708,0,128764,'Neukamp','Germany','DE','Neukamp (Germany)',1,1,0),(28709,19247,128765,'Neum','Bosnia and Herzegowina','BA','Neum (Bosnia and Herzegowina)',1,1,0),(28710,0,128766,'Neupetershain Nord','Germany','DE','Neupetershain Nord (Germany)',1,1,0),(28711,19255,128767,'Neuruppin','Germany','DE','Neuruppin (Germany)',1,1,0),(28712,0,128768,'Neusa?','Germany','DE','Neusa? (Germany)',1,1,0),(28713,0,128769,'Neustadt an der Orla','Germany','DE','Neustadt an der Orla (Germany)',1,1,0),(28714,0,128770,'Neustadt/Weinstra?e','Germany','DE','Neustadt/Weinstra?e (Germany)',1,1,0),(28715,0,128771,'Neutal','Austria','AT','Neutal (Austria)',1,1,0),(28716,19265,128772,'Neu-Ulm','Germany','DE','Neu-Ulm (Germany)',1,1,0),(28717,0,128773,'Neve Ativ','Israel','IL','Neve Ativ (Israel)',1,1,0),(28718,19278,128774,'Nevez','France','FR','Nevez (France)',1,1,0),(28719,32088,128775,'New Albany','United States of America','US','New Albany (United States of America)',1,1,0),(28720,32093,128776,'New Bern','United States of America','US','New Bern (United States of America)',1,1,0),(28721,32095,128777,'New Braunfels','United States of America','US','New Braunfels (United States of America)',1,1,0),(28722,32098,128778,'New Britain','United States of America','US','New Britain (United States of America)',1,1,0),(28723,32099,128779,'New Brunswick','United States of America','US','New Brunswick (United States of America)',1,1,0),(28724,32104,128780,'New Castle','United States of America','US','New Castle (United States of America)',1,1,0),(28725,32105,128781,'New Church','United States of America','US','New Church (United States of America)',1,1,0),(28726,32129,128782,'New London','United States of America','US','New London (United States of America)',1,1,0),(28727,32141,128783,'New Paris','United States of America','US','New Paris (United States of America)',1,1,0),(28728,0,128784,'New Providence','Bahamas','BS','New Providence (Bahamas)',1,1,0),(28729,0,128785,'New Raymer','United States of America','US','New Raymer (United States of America)',1,1,0),(28730,32147,128786,'New Richmond','United States of America','US','New Richmond (United States of America)',1,1,0),(28731,32148,128787,'New Rochelle','United States of America','US','New Rochelle (United States of America)',1,1,0),(28732,0,128788,'New York - Long Island','United States of America','US','New York - Long Island (United States of America)',1,1,0),(28733,0,128789,'Newbold','United Kingdom','UK','Newbold (United Kingdom)',1,1,0),(28734,19303,128790,'Newbridge','Ireland','IE','Newbridge (Ireland)',1,1,0),(28735,0,128791,'Newbrough','United Kingdom','UK','Newbrough (United Kingdom)',1,1,0),(28736,0,128792,'Newcastle','United Kingdom','UK','Newcastle (United Kingdom)',1,1,0),(28737,0,128793,'Newcastle-under-Lyme','United Kingdom','UK','Newcastle-under-Lyme (United Kingdom)',1,1,0),(28738,0,128794,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(28739,0,128795,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(28740,17335,128796,'Meghauli','Nepal','NP','Meghauli (Nepal)',1,1,0),(28741,17343,128797,'Meina','Italy','IT','Meina (Italy)',1,1,0),(28742,0,128798,'Meinerzhagen','Germany','DE','Meinerzhagen (Germany)',1,1,0),(28743,17344,128799,'Meiningen','Germany','DE','Meiningen (Germany)',1,1,0),(28744,0,128800,'Meisterschwanden','Switzerland','CH','Meisterschwanden (Switzerland)',1,1,0),(28745,17367,128801,'Melendugno','Italy','IT','Melendugno (Italy)',1,1,0),(28746,0,128802,'Melfi','Italy','IT','Melfi (Italy)',1,1,0),(28747,0,128803,'Mellenbach-Glasbach','Germany','DE','Mellenbach-Glasbach (Germany)',1,1,0),(28748,0,128804,'Mellenthin','Germany','DE','Mellenthin (Germany)',1,1,0),(28749,17384,128805,'Mellieha','Malta','MT','Mellieha (Malta)',1,1,0),(28750,0,128806,'Mellrichstadt','Germany','DE','Mellrichstadt (Germany)',1,1,0),(28751,0,128807,'Melnikovo','Russia','RU','Melnikovo (Russia)',1,1,0),(28752,17395,128808,'Melsungen','Germany','DE','Melsungen (Germany)',1,1,0),(28753,17414,128809,'Menaggio','Italy','IT','Menaggio (Italy)',1,1,0),(28754,0,128810,'Menden','Germany','DE','Menden (Germany)',1,1,0),(28755,17423,128811,'Mendon','United States of America','US','Mendon (United States of America)',1,1,0),(28756,17426,128812,'Mendrisio','Switzerland','CH','Mendrisio (Switzerland)',1,1,0),(28757,17428,128813,'Menen','Belgium','BE','Menen (Belgium)',1,1,0),(28758,17439,128814,'Menlo Park','United States of America','US','Menlo Park (United States of America)',1,1,0),(28759,0,128815,'Mennetou-sur-Cher','France','FR','Mennetou-sur-Cher (France)',1,1,0),(28760,0,128816,'Meradhoo Island','Maldives','MV','Meradhoo Island (Maldives)',1,1,0),(28761,0,128817,'Mercogliano','Italy','IT','Mercogliano (Italy)',1,1,0),(28762,17487,128818,'Meriden','United States of America','US','Meriden (United States of America)',1,1,0),(28763,17495,128819,'Merligen','Switzerland','CH','Merligen (Switzerland)',1,1,0),(28764,0,128820,'Merlimont','France','FR','Merlimont (France)',1,1,0),(28765,17506,128821,'Merrijig','Australia','AU','Merrijig (Australia)',1,1,0),(28766,17507,128822,'Merrill','United States of America','US','Merrill (United States of America)',1,1,0),(28767,0,128823,'Mervelier','Switzerland','CH','Mervelier (Switzerland)',1,1,0),(28768,31930,128824,'Mesa','United States of America','US','Mesa (United States of America)',1,1,0),(28769,0,128825,'Messini','Greece','GR','Messini (Greece)',1,1,0),(28770,0,128826,'Me?kirch','Germany','DE','Me?kirch (Germany)',1,1,0),(28771,0,128827,'Mesudiye','Turkey','TR','Mesudiye (Turkey)',1,1,0),(28772,17554,128828,'Meta','Italy','IT','Meta (Italy)',1,1,0),(28773,0,128830,'Metzeral','France','FR','Metzeral (France)',1,1,0),(28774,17577,128831,'Metz-Tessy','France','FR','Metz-Tessy (France)',1,1,0),(28775,0,128832,'Mevagissey','United Kingdom','UK','Mevagissey (United Kingdom)',1,1,0),(28776,0,128833,'Mexican Hat','United States of America','US','Mexican Hat (United States of America)',1,1,0),(28777,17595,128834,'Meyronne','France','FR','Meyronne (France)',1,1,0),(28778,0,128835,'Mezairaa','United Arab Emirates','AE','Mezairaa (United Arab Emirates)',1,1,0),(28779,0,128836,'Mezin','France','FR','Mezin (France)',1,1,0),(28780,0,128837,'Mezowo','Poland','PL','Mezowo (Poland)',1,1,0),(28781,0,128838,'Mezzolago','Italy','IT','Mezzolago (Italy)',1,1,0),(28782,31932,128839,'Miami','United States of America','US','Miami (United States of America)',1,1,0),(28783,0,128840,'Miass','Russia','RU','Miass (Russia)',1,1,0),(28784,17618,128841,'Michelstadt','Germany','DE','Michelstadt (Germany)',1,1,0),(28785,0,128842,'Mickleham','United Kingdom','UK','Mickleham (United Kingdom)',1,1,0),(28786,0,128843,'Midden-Drenthe','Netherlands','NL','Midden-Drenthe (Netherlands)',1,1,0),(28787,0,128844,'Middletown','United States of America','US','Middletown (United States of America)',1,1,0),(28788,0,128845,'Midland','United States of America','US','Midland (United States of America)',1,1,0),(28789,17658,128846,'Midway','United States of America','US','Midway (United States of America)',1,1,0),(28790,0,128847,'Miedzygorze','Poland','PL','Miedzygorze (Poland)',1,1,0),(28791,0,128848,'Miedzyrzec Podlaski','Poland','PL','Miedzyrzec Podlaski (Poland)',1,1,0),(28792,17664,128849,'Mieming','Austria','AT','Mieming (Austria)',1,1,0),(28793,0,128850,'Miercurea Sibiului','Romania','RO','Miercurea Sibiului (Romania)',1,1,0),(28794,0,128851,'Miesenbach','Austria','AT','Miesenbach (Austria)',1,1,0),(28795,0,128852,'Miesitz','Germany','DE','Miesitz (Germany)',1,1,0),(28796,0,128853,'Mihla','Germany','DE','Mihla (Germany)',1,1,0),(28797,17681,128854,'Mikolajki','Poland','PL','Mikolajki (Poland)',1,1,0),(28798,17684,128855,'Milaca','United States of America','US','Milaca (United States of America)',1,1,0),(28799,0,128856,'Milan','United States of America','US','Milan (United States of America)',1,1,0),(28800,0,128857,'Mildenau','Germany','DE','Mildenau (Germany)',1,1,0),(28801,0,128858,'Mildenhall','United Kingdom','UK','Mildenhall (United Kingdom)',1,1,0),(28802,17694,128859,'Mildura','Australia','AU','Mildura (Australia)',1,1,0),(28803,17696,128860,'Milesburg','United States of America','US','Milesburg (United States of America)',1,1,0),(28804,17703,128861,'Miliou','Cyprus','CY','Miliou (Cyprus)',1,1,0),(28805,31941,128862,'Mill City','United States of America','US','Mill City (United States of America)',1,1,0),(28806,0,128863,'Miller Place','United States of America','US','Miller Place (United States of America)',1,1,0),(28807,17727,128864,'Millstatt','Austria','AT','Millstatt (Austria)',1,1,0),(28808,17729,128865,'Millville','United States of America','US','Millville (United States of America)',1,1,0),(28809,0,128866,'Milocer','Montenegro','ME','Milocer (Montenegro)',1,1,0),(28810,0,128867,'Milohnici','Croatia','HR','Milohnici (Croatia)',1,1,0),(28811,17740,128868,'Miltenberg','Germany','DE','Miltenberg (Germany)',1,1,0),(28812,0,128869,'Milton Abbot','United Kingdom','UK','Milton Abbot (United Kingdom)',1,1,0),(28813,17767,128870,'Mindoro','Philippines','PH','Mindoro (Philippines)',1,1,0),(28814,0,128871,'Mineiros','Brazil','BR','Mineiros (Brazil)',1,1,0),(28815,17787,128873,'Minnetonka','United States of America','US','Minnetonka (United States of America)',1,1,0),(28816,17790,128874,'Minonk','United States of America','US','Minonk (United States of America)',1,1,0),(28817,0,128875,'Minyama','Australia','AU','Minyama (Australia)',1,1,0),(28818,17806,128876,'Mionnay','France','FR','Mionnay (France)',1,1,0),(28819,17807,128877,'Mira','Italy','IT','Mira (Italy)',1,1,0),(28820,0,128878,'Mira Porte','Italy','IT','Mira Porte (Italy)',1,1,0),(28821,0,128879,'Mirca','Croatia','HR','Mirca (Croatia)',1,1,0),(28822,17832,128880,'Miri','Malaysia','MY','Miri (Malaysia)',1,1,0),(28823,0,128881,'Miribel-les-Echelles','France','FR','Miribel-les-Echelles (France)',1,1,0),(28824,0,128882,'Mirleft','Morocco','MA','Mirleft (Morocco)',1,1,0),(28825,17871,128883,'Mittelhausen','France','FR','Mittelhausen (France)',1,1,0),(28826,0,128884,'Mitterberg','Austria','AT','Mitterberg (Austria)',1,1,0),(28827,0,128885,'Mkomazi Game Reserve','Tanzania','TZ','Mkomazi Game Reserve (Tanzania)',1,1,0),(28828,0,128886,'Mlynky','Slovakia','SK','Mlynky (Slovakia)',1,1,0),(28829,17900,128887,'Moab','United States of America','US','Moab (United States of America)',1,1,0),(28830,17911,128888,'Mobridge','United States of America','US','Mobridge (United States of America)',1,1,0),(28831,0,128889,'Mockmuhl','Germany','DE','Mockmuhl (Germany)',1,1,0),(28832,17912,128890,'Mocksville','United States of America','US','Mocksville (United States of America)',1,1,0),(28833,17932,128891,'Mogarraz','Spain','ES','Mogarraz (Spain)',1,1,0),(28834,17936,128892,'Mogliano Veneto','Italy','IT','Mogliano Veneto (Italy)',1,1,0),(28835,17937,128893,'Mogro','Spain','ES','Mogro (Spain)',1,1,0),(28836,17941,128894,'Mohammedia','Morocco','MA','Mohammedia (Morocco)',1,1,0),(28837,0,128895,'Moieciu de Sus','Romania','RO','Moieciu de Sus (Romania)',1,1,0),(28838,0,128896,'Moliets Plage','France','FR','Moliets Plage (France)',1,1,0),(28839,17977,128897,'Molina di Ledro','Italy','IT','Molina di Ledro (Italy)',1,1,0),(28840,17987,128898,'Mollet del Valles','Spain','ES','Mollet del Valles (Spain)',1,1,0),(28841,17990,128899,'Molln','Germany','DE','Molln (Germany)',1,1,0),(28842,17994,128900,'Molndal','Sweden','SE','Molndal (Sweden)',1,1,0),(28843,0,128901,'Molten','Italy','IT','Molten (Italy)',1,1,0),(28844,0,128902,'Moltifao','France','FR','Moltifao (France)',1,1,0),(28845,0,128903,'Mon Choisy','Mauritius','MU','Mon Choisy (Mauritius)',1,1,0),(28846,18011,128904,'Monaca','United States of America','US','Monaca (United States of America)',1,1,0),(28847,18021,128905,'Monastir','Tunisia','TN','Monastir (Tunisia)',1,1,0),(28848,18030,128906,'Monchengladbach','Germany','DE','Monchengladbach (Germany)',1,1,0),(28849,18033,128907,'Monclar-de-Quercy','France','FR','Monclar-de-Quercy (France)',1,1,0),(28850,0,128908,'Mission Viejo','United States of America','US','Mission Viejo (United States of America)',1,1,0),(28851,17853,128909,'Missoula','United States of America','US','Missoula (United States of America)',1,1,0),(28852,0,128910,'Missouri Valley','United States of America','US','Missouri Valley (United States of America)',1,1,0),(28853,0,128911,'Mitcham','United Kingdom','UK','Mitcham (United Kingdom)',1,1,0),(28854,0,128912,'Mitchell-River-Nationalpark','Australia','AU','Mitchell-River-Nationalpark (Australia)',1,1,0),(28855,0,128913,'Mitchelstown','Ireland','IE','Mitchelstown (Ireland)',1,1,0),(28856,0,128915,'Mocanal','Spain','ES','Mocanal (Spain)',1,1,0),(28857,0,128916,'Modigliana','Italy','IT','Modigliana (Italy)',1,1,0),(28858,17924,128917,'Moelan-sur-Mer','France','FR','Moelan-sur-Mer (France)',1,1,0),(28859,17946,128918,'Mohill','Ireland','IE','Mohill (Ireland)',1,1,0),(28860,0,128919,'Moin','Costa Rica','CR','Moin (Costa Rica)',1,1,0),(28861,0,128920,'Moissieu-sur-Dolon','France','FR','Moissieu-sur-Dolon (France)',1,1,0),(28862,0,128921,'Mokala','South Africa','ZA','Mokala (South Africa)',1,1,0),(28863,31954,128922,'Mola di Bari','Italy','IT','Mola di Bari (Italy)',1,1,0),(28864,17972,128923,'Mole Creek','Australia','AU','Mole Creek (Australia)',1,1,0),(28865,17974,128924,'Molieres','France','FR','Molieres (France)',1,1,0),(28866,0,128925,'Molina','Italy','IT','Molina (Italy)',1,1,0),(28867,0,128926,'Molinito','Spain','ES','Molinito (Spain)',1,1,0),(28868,0,128927,'Molschow','Germany','DE','Molschow (Germany)',1,1,0),(28869,0,128928,'Monasterio de Rodilla','Spain','ES','Monasterio de Rodilla (Spain)',1,1,0),(28870,0,128929,'Monbazillac','France','FR','Monbazillac (France)',1,1,0),(28871,0,128930,'Monchenholzhausen','Germany','DE','Monchenholzhausen (Germany)',1,1,0),(28872,18043,128931,'Mondejar','Spain','ES','Mondejar (Spain)',1,1,0),(28873,18046,128932,'Mondeville','France','FR','Mondeville (France)',1,1,0),(28874,0,128933,'Mondol Seima','Cambodia','KH','Mondol Seima (Cambodia)',1,1,0),(28875,18052,128934,'Mondragone','Italy','IT','Mondragone (Italy)',1,1,0),(28876,0,128935,'Monee','United States of America','US','Monee (United States of America)',1,1,0),(28877,18063,128936,'Monett','United States of America','US','Monett (United States of America)',1,1,0),(28878,18068,128937,'Monforte','Portugal','PT','Monforte (Portugal)',1,1,0),(28879,0,128938,'Monforte d\'Alba','Italy','IT','Monforte d\'Alba (Italy)',1,1,0),(28880,0,128939,'Monhoudoe','France','FR','Monhoudoe (France)',1,1,0),(28881,0,128940,'Monichkirchen','Austria','AT','Monichkirchen (Austria)',1,1,0),(28882,18078,128941,'Monistrol de Montserrat','Spain','ES','Monistrol de Montserrat (Spain)',1,1,0),(28883,18084,128942,'Monmouth','United States of America','US','Monmouth (United States of America)',1,1,0),(28884,18087,128943,'Monnickendam','Netherlands','NL','Monnickendam (Netherlands)',1,1,0),(28885,18091,128944,'Monopoli','Italy','IT','Monopoli (Italy)',1,1,0),(28886,0,128945,'Monoszlo','Hungary','HU','Monoszlo (Hungary)',1,1,0),(28887,0,128946,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28888,0,128947,'Monroe','United States of America','US','Monroe (United States of America)',1,1,0),(28889,18103,128948,'Monselice','Italy','IT','Monselice (Italy)',1,1,0),(28890,31966,128949,'Mont Tremblant','Canada','CA','Mont Tremblant (Canada)',1,1,0),(28891,0,128950,'Montacute','United Kingdom','UK','Montacute (United Kingdom)',1,1,0),(28892,18111,128951,'Montagano','Italy','IT','Montagano (Italy)',1,1,0),(28893,18114,128952,'Montagnana','Italy','IT','Montagnana (Italy)',1,1,0),(28894,18115,128953,'Montagnole','France','FR','Montagnole (France)',1,1,0),(28895,18119,128954,'Montague','United States of America','US','Montague (United States of America)',1,1,0),(28896,18126,128955,'Montaldo Torinese','Italy','IT','Montaldo Torinese (Italy)',1,1,0),(28897,18127,128956,'Montale','Italy','IT','Montale (Italy)',1,1,0),(28898,0,128957,'Montalieu-Vercieu','France','FR','Montalieu-Vercieu (France)',1,1,0),(28899,18131,128958,'Montano Lucino','Italy','IT','Montano Lucino (Italy)',1,1,0),(28900,18132,128959,'Montara','United States of America','US','Montara (United States of America)',1,1,0),(28901,0,128960,'Montblanc','France','FR','Montblanc (France)',1,1,0),(28902,18142,128961,'Montblanc','Spain','ES','Montblanc (Spain)',1,1,0),(28903,18145,128962,'Montbrio del Camp','Spain','ES','Montbrio del Camp (Spain)',1,1,0),(28904,0,128963,'Montbrun les Bains','France','FR','Montbrun les Bains (France)',1,1,0),(28905,18167,128964,'Monteagle','United States of America','US','Monteagle (United States of America)',1,1,0),(28906,18170,128965,'Montebello','Canada','CA','Montebello (Canada)',1,1,0),(28907,0,128966,'Montebelluna','Italy','IT','Montebelluna (Italy)',1,1,0),(28908,0,128967,'Montedivalli','Italy','IT','Montedivalli (Italy)',1,1,0),(28909,18184,128968,'Montefano','Italy','IT','Montefano (Italy)',1,1,0),(28910,0,128969,'Montefiridolfi','Italy','IT','Montefiridolfi (Italy)',1,1,0),(28911,18202,128970,'Montemarciano','Italy','IT','Montemarciano (Italy)',1,1,0),(28912,18215,128971,'Monterenzio','Italy','IT','Monterenzio (Italy)',1,1,0),(28913,0,128972,'Monteroni d\'Arabia','Italy','IT','Monteroni d\'Arabia (Italy)',1,1,0),(28914,0,128973,'Monterrico','Guatemala','GT','Monterrico (Guatemala)',1,1,0),(28915,18228,128974,'Montesilvano','Italy','IT','Montesilvano (Italy)',1,1,0),(28916,18240,128975,'Montezillon','Switzerland','CH','Montezillon (Switzerland)',1,1,0),(28917,18241,128976,'Montezuma','United States of America','US','Montezuma (United States of America)',1,1,0),(28918,0,128977,'Montferrat','France','FR','Montferrat (France)',1,1,0),(28919,0,128978,'Montgomery','United Kingdom','UK','Montgomery (United Kingdom)',1,1,0),(28920,0,128979,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(28921,0,128980,'Montigny en Morvan','France','FR','Montigny en Morvan (France)',1,1,0),(28922,18270,128981,'Montigny-le-Roi','France','FR','Montigny-le-Roi (France)',1,1,0),(28923,18285,128982,'Montmelian','France','FR','Montmelian (France)',1,1,0),(28924,0,128983,'Mont-Pres-Chambord','France','FR','Mont-Pres-Chambord (France)',1,1,0),(28925,0,128984,'Montreal la Cluse','France','FR','Montreal la Cluse (France)',1,1,0),(28926,18312,128985,'Montrond-les-Bains','France','FR','Montrond-les-Bains (France)',1,1,0),(28927,18316,128986,'Montrouge','France','FR','Montrouge (France)',1,1,0),(28928,18322,128987,'Montseny','Spain','ES','Montseny (Spain)',1,1,0),(28929,18337,128988,'Monzuno','Italy','IT','Monzuno (Italy)',1,1,0),(28930,0,128989,'Mooi River','South Africa','ZA','Mooi River (South Africa)',1,1,0),(28931,0,128990,'Moorenweis','Germany','DE','Moorenweis (Germany)',1,1,0),(28932,18359,128991,'Moose Jaw','Canada','CA','Moose Jaw (Canada)',1,1,0),(28933,18361,128992,'Moosic','United States of America','US','Moosic (United States of America)',1,1,0),(28934,18362,128993,'Mooslargue','France','FR','Mooslargue (France)',1,1,0),(28935,18364,128994,'Moosup','United States of America','US','Moosup (United States of America)',1,1,0),(28936,18366,128995,'Mora','Sweden','SE','Mora (Sweden)',1,1,0),(28937,0,128996,'Mora','Portugal','PT','Mora (Portugal)',1,1,0),(28938,0,128997,'Morahalom','Hungary','HU','Morahalom (Hungary)',1,1,0),(28939,18375,128998,'Moralzarzal','Spain','ES','Moralzarzal (Spain)',1,1,0),(28940,0,128999,'Morbegno','Italy','IT','Morbegno (Italy)',1,1,0),(28941,18401,129000,'Moree','Australia','AU','Moree (Australia)',1,1,0),(28942,0,129001,'Morel-Filet','Switzerland','CH','Morel-Filet (Switzerland)',1,1,0),(28943,18422,129002,'Morges','Switzerland','CH','Morges (Switzerland)',1,1,0),(28944,0,129003,'Morgex','Italy','IT','Morgex (Italy)',1,1,0),(28945,0,129004,'Morillon','France','FR','Morillon (France)',1,1,0),(28946,0,129005,'Morley (Derbyshire)','United Kingdom','UK','Morley (Derbyshire) (United Kingdom)',1,1,0),(28947,18454,129006,'Morrill','United States of America','US','Morrill (United States of America)',1,1,0),(28948,18456,129007,'Morris','United States of America','US','Morris (United States of America)',1,1,0),(28949,0,129008,'Morristown','United States of America','US','Morristown (United States of America)',1,1,0),(28950,18465,129009,'Morrovalle','Italy','IT','Morrovalle (Italy)',1,1,0),(28951,18469,129010,'Morschwiller-le-Bas','France','FR','Morschwiller-le-Bas (France)',1,1,0),(28952,18470,129011,'Mortagne-au-Perche','France','FR','Mortagne-au-Perche (France)',1,1,0),(28953,0,129012,'Mosciano Sant\'Angelo','Italy','IT','Mosciano Sant\'Angelo (Italy)',1,1,0),(28954,18514,129013,'Most na Soci','Slovenia','SI','Most na Soci (Slovenia)',1,1,0),(28955,18530,129014,'Motten','Germany','DE','Motten (Germany)',1,1,0),(28956,0,129015,'Montfalco','Spain','ES','Montfalco (Spain)',1,1,0),(28957,0,129016,'Montherme','France','FR','Montherme (France)',1,1,0),(28958,0,129017,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(28959,0,129018,'Monticello','United States of America','US','Monticello (United States of America)',1,1,0),(28960,18265,129019,'Montignoso','Italy','IT','Montignoso (Italy)',1,1,0),(28961,18274,129020,'Montivilliers','France','FR','Montivilliers (France)',1,1,0),(28962,18275,129021,'Mont-Laurier','Canada','CA','Mont-Laurier (Canada)',1,1,0),(28963,0,129022,'Montoro Inferiore','Italy','IT','Montoro Inferiore (Italy)',1,1,0),(28964,0,129023,'Montpelier','United States of America','US','Montpelier (United States of America)',1,1,0),(28965,0,129024,'Montreal','France','FR','Montreal (France)',1,1,0),(28966,0,129025,'Montroig del Camp','Spain','ES','Montroig del Camp (Spain)',1,1,0),(28967,18323,129026,'Montseret','France','FR','Montseret (France)',1,1,0),(28968,18330,129027,'Montvalezan','France','FR','Montvalezan (France)',1,1,0),(28969,0,129028,'Mook','Netherlands','NL','Mook (Netherlands)',1,1,0),(28970,0,129029,'Mookgopong','South Africa','ZA','Mookgopong (South Africa)',1,1,0),(28971,0,129030,'Moonambel','Australia','AU','Moonambel (Australia)',1,1,0),(28972,18346,129031,'Moorea','French Polynesia','PF','Moorea (French Polynesia)',1,1,0),(28973,0,129032,'Moorgrund','Germany','DE','Moorgrund (Germany)',1,1,0),(28974,0,129033,'Moormerland','Germany','DE','Moormerland (Germany)',1,1,0),(28975,0,129034,'Moosbach','Germany','DE','Moosbach (Germany)',1,1,0),(28976,0,129035,'Moosburg an der Isar','Germany','DE','Moosburg an der Isar (Germany)',1,1,0),(28977,18380,129036,'Morangis','France','FR','Morangis (France)',1,1,0),(28978,0,129037,'Morar','United Kingdom','UK','Morar (United Kingdom)',1,1,0),(28979,18384,129038,'Moratalla','Spain','ES','Moratalla (Spain)',1,1,0),(28980,18387,129039,'Moravske Toplice','Slovenia','SI','Moravske Toplice (Slovenia)',1,1,0),(28981,18392,129040,'Morbisch am See','Austria','AT','Morbisch am See (Austria)',1,1,0),(28982,18405,129041,'Morelia','Mexico','MX','Morelia (Mexico)',1,1,0),(28983,18421,129042,'Morgenrothe-Rautenkranz','Germany','DE','Morgenrothe-Rautenkranz (Germany)',1,1,0),(28984,18429,129043,'Morioka','Japan','JP','Morioka (Japan)',1,1,0),(28985,18437,129045,'Morlon','Switzerland','CH','Morlon (Switzerland)',1,1,0),(28986,0,129046,'Mormoiron','France','FR','Mormoiron (France)',1,1,0),(28987,0,129047,'Morogoro','Tanzania','TZ','Morogoro (Tanzania)',1,1,0),(28988,0,129048,'Morre','Italy','IT','Morre (Italy)',1,1,0),(28989,0,129049,'Morris','United States of America','US','Morris (United States of America)',1,1,0),(28990,0,129050,'Morris Plains','United States of America','US','Morris Plains (United States of America)',1,1,0),(28991,0,129051,'Morrisville','United States of America','US','Morrisville (United States of America)',1,1,0),(28992,0,129052,'Morsasco','Italy','IT','Morsasco (Italy)',1,1,0),(28993,18467,129053,'Morsbronn-les-Bains','France','FR','Morsbronn-les-Bains (France)',1,1,0),(28994,0,129054,'Morsum (Sylt)','Germany','DE','Morsum (Sylt) (Germany)',1,1,0),(28995,0,129055,'Mortschach','Austria','AT','Mortschach (Austria)',1,1,0),(28996,18485,129056,'Moscenicka Draga','Croatia','HR','Moscenicka Draga (Croatia)',1,1,0),(28997,18487,129057,'Moscow','United States of America','US','Moscow (United States of America)',1,1,0),(28998,18498,129058,'Mosinee','United States of America','US','Mosinee (United States of America)',1,1,0),(28999,18499,129059,'Mosjoen','Norway','NO','Mosjoen (Norway)',1,1,0),(29000,0,129060,'Mosnang','Switzerland','CH','Mosnang (Switzerland)',1,1,0),(29001,18503,129061,'Mosnes','France','FR','Mosnes (France)',1,1,0),(29002,18504,129062,'Moso Island','Vanuatu','VU','Moso Island (Vanuatu)',1,1,0),(29003,18512,129063,'Mossoro','Brazil','BR','Mossoro (Brazil)',1,1,0),(29004,18513,129064,'Most','Czech Republic','CZ','Most (Czech Republic)',1,1,0),(29005,18535,129065,'Mouans-Sartoux','France','FR','Mouans-Sartoux (France)',1,1,0),(29006,0,129066,'Moulon','France','FR','Moulon (France)',1,1,0),(29007,0,129067,'Mount Cook National Park','New Zealand','NZ','Mount Cook National Park (New Zealand)',1,1,0),(29008,0,129068,'Mount Kenya','Kenya','KE','Mount Kenya (Kenya)',1,1,0),(29009,18558,129069,'Mount Lavinia','Sri Lanka','LK','Mount Lavinia (Sri Lanka)',1,1,0),(29010,32033,129070,'Mount Pocono','United States of America','US','Mount Pocono (United States of America)',1,1,0),(29011,0,129071,'Mount Shasta City','United States of America','US','Mount Shasta City (United States of America)',1,1,0),(29012,0,129072,'Mount Stewart','Canada','CA','Mount Stewart (Canada)',1,1,0),(29013,0,129073,'Mountnugent','Ireland','IE','Mountnugent (Ireland)',1,1,0),(29014,0,129074,'Moura','Portugal','PT','Moura (Portugal)',1,1,0),(29015,18581,129075,'Moyo Island','Indonesia','ID','Moyo Island (Indonesia)',1,1,0),(29016,0,129076,'Muara Bungo','Indonesia','ID','Muara Bungo (Indonesia)',1,1,0),(29017,18602,129077,'Much','Germany','DE','Much (Germany)',1,1,0),(29018,0,129078,'Muden','Germany','DE','Muden (Germany)',1,1,0),(29019,18609,129079,'Mudjimba','Australia','AU','Mudjimba (Australia)',1,1,0),(29020,0,129080,'Muggendorf','Germany','DE','Muggendorf (Germany)',1,1,0),(29021,0,129081,'Muggensturm','Germany','DE','Muggensturm (Germany)',1,1,0),(29022,0,129082,'Muggio','Italy','IT','Muggio (Italy)',1,1,0),(29023,0,129083,'Muhlhausen (Kraichgau)','Germany','DE','Muhlhausen (Kraichgau) (Germany)',1,1,0),(29024,0,129084,'Muhlwald','Italy','IT','Muhlwald (Italy)',1,1,0),(29025,18634,129085,'Muides-sur-Loire','France','FR','Muides-sur-Loire (France)',1,1,0),(29026,0,129086,'Muldenhammer','Germany','DE','Muldenhammer (Germany)',1,1,0),(29027,18661,129087,'Mulheim','Germany','DE','Mulheim (Germany)',1,1,0),(29028,0,129088,'Mulsen','Germany','DE','Mulsen (Germany)',1,1,0),(29029,0,129089,'Munchberg','Germany','DE','Munchberg (Germany)',1,1,0),(29030,18681,129090,'Muncie','United States of America','US','Muncie (United States of America)',1,1,0),(29031,18685,129091,'Mundelein','United States of America','US','Mundelein (United States of America)',1,1,0),(29032,0,129092,'Mundling-Harburg','Germany','DE','Mundling-Harburg (Germany)',1,1,0),(29033,18690,129093,'Munfordville','United States of America','US','Munfordville (United States of America)',1,1,0),(29034,0,129094,'Munhall','United States of America','US','Munhall (United States of America)',1,1,0),(29035,18695,129095,'Munising','United States of America','US','Munising (United States of America)',1,1,0),(29036,18698,129096,'Munnerstadt','Germany','DE','Munnerstadt (Germany)',1,1,0),(29037,0,129097,'Munsingen','Germany','DE','Munsingen (Germany)',1,1,0),(29038,0,129098,'Munster','Germany','DE','Munster (Germany)',1,1,0),(29039,0,129099,'Munster VS','Switzerland','CH','Munster VS (Switzerland)',1,1,0),(29040,0,129100,'Munster-Geschinen','Switzerland','CH','Munster-Geschinen (Switzerland)',1,1,0),(29041,18705,129101,'Munxar','Malta','MT','Munxar (Malta)',1,1,0),(29042,0,129102,'Murchison Falls Nationalpark','Uganda','UG','Murchison Falls Nationalpark (Uganda)',1,1,0),(29043,18724,129103,'Murfreesboro','United States of America','US','Murfreesboro (United States of America)',1,1,0),(29044,0,129105,'Murmansk','Russia','RU','Murmansk (Russia)',1,1,0),(29045,0,129106,'Muro Leccese','Italy','IT','Muro Leccese (Italy)',1,1,0),(29046,0,129107,'Murom','Russia','RU','Murom (Russia)',1,1,0),(29047,18740,129108,'Murphys','United States of America','US','Murphys (United States of America)',1,1,0),(29048,18743,129109,'Murray Bridge','Australia','AU','Murray Bridge (Australia)',1,1,0),(29049,0,129110,'Murter','Croatia','HR','Murter (Croatia)',1,1,0),(29050,0,129111,'Musselburgh','United Kingdom','UK','Musselburgh (United Kingdom)',1,1,0),(29051,18788,129112,'Mutters','Austria','AT','Mutters (Austria)',1,1,0),(29052,0,129113,'Myanmar','Myanmar','MM','Myanmar (Myanmar)',1,1,0),(29053,0,129114,'Mykonos Town','Greece','GR','Mykonos Town (Greece)',1,1,0),(29054,0,129115,'Myrkdalen','Norway','NO','Myrkdalen (Norway)',1,1,0),(29055,18818,129116,'Myrtos Bay','Greece','GR','Myrtos Bay (Greece)',1,1,0),(29056,0,129117,'Myslakowice','Poland','PL','Myslakowice (Poland)',1,1,0),(29057,18822,129118,'Mystic','United States of America','US','Mystic (United States of America)',1,1,0),(29058,0,129119,'Na\'ama Bay','Egypt','EG','Na\'ama Bay (Egypt)',1,1,0),(29059,0,129120,'Nabq','Egypt','EG','Nabq (Egypt)',1,1,0),(29060,0,129121,'Nabucco Island','Indonesia','ID','Nabucco Island (Indonesia)',1,1,0),(29061,0,129122,'Naceradec','Czech Republic','CZ','Naceradec (Czech Republic)',1,1,0),(29062,0,129123,'Nacula Island','Fiji Islands','FJ','Nacula Island (Fiji Islands)',1,1,0),(29063,0,129124,'Murat','France','FR','Murat (France)',1,1,0),(29064,0,129125,'Murca','Portugal','PT','Murca (Portugal)',1,1,0),(29065,18728,129126,'Muri Beach','Cook Islands','CK','Muri Beach (Cook Islands)',1,1,0),(29066,18730,129127,'Muriedas','Spain','ES','Muriedas (Spain)',1,1,0),(29067,18733,129128,'Murnau','Germany','DE','Murnau (Germany)',1,1,0),(29068,18739,129129,'Murphy','United States of America','US','Murphy (United States of America)',1,1,0),(29069,18748,129130,'Murren','Switzerland','CH','Murren (Switzerland)',1,1,0),(29070,18751,129131,'Murroe','Ireland','IE','Murroe (Ireland)',1,1,0),(29071,0,129132,'Murviel-les-Beziers','France','FR','Murviel-les-Beziers (France)',1,1,0),(29072,0,129133,'Muskiz','Spain','ES','Muskiz (Spain)',1,1,0),(29073,18768,129134,'Muskogee','United States of America','US','Muskogee (United States of America)',1,1,0),(29074,18775,129135,'Mussolente','Italy','IT','Mussolente (Italy)',1,1,0),(29075,0,129136,'Mustair','Switzerland','CH','Mustair (Switzerland)',1,1,0),(29076,0,129137,'Mutigliano','Italy','IT','Mutigliano (Italy)',1,1,0),(29077,0,129138,'Mylau','Germany','DE','Mylau (Germany)',1,1,0),(29078,0,129139,'Mylopotas','Greece','GR','Mylopotas (Greece)',1,1,0),(29079,0,129140,'Mynyddcerrig','United Kingdom','UK','Mynyddcerrig (United Kingdom)',1,1,0),(29080,18812,129141,'Myoko','Japan','JP','Myoko (Japan)',1,1,0),(29081,0,129142,'Nabburg','Germany','DE','Nabburg (Germany)',1,1,0),(29082,0,129143,'Nabinaud','France','FR','Nabinaud (France)',1,1,0),(29083,18851,129144,'Nachod','Czech Republic','CZ','Nachod (Czech Republic)',1,1,0),(29084,0,129145,'Nachodka','Russia','RU','Nachodka (Russia)',1,1,0),(29085,18860,129146,'Naestved','Denmark','DK','Naestved (Denmark)',1,1,0),(29086,18866,129147,'Nagano','Japan','JP','Nagano (Japan)',1,1,0),(29087,18875,129148,'Nagoya','Japan','JP','Nagoya (Japan)',1,1,0),(29088,0,129149,'Nagoya','Indonesia','ID','Nagoya (Indonesia)',1,1,0),(29089,18879,129150,'Nagykanizsa','Hungary','HU','Nagykanizsa (Hungary)',1,1,0),(29090,18889,129151,'Naila','Germany','DE','Naila (Germany)',1,1,0),(29091,18896,129152,'Najera','Spain','ES','Najera (Spain)',1,1,0),(29092,0,129153,'Nakatchafushi','Maldives','MV','Nakatchafushi (Maldives)',1,1,0),(29093,0,129154,'Nals','Italy','IT','Nals (Italy)',1,1,0),(29094,0,129155,'Namest nad Oslavou','Czech Republic','CZ','Namest nad Oslavou (Czech Republic)',1,1,0),(29095,0,129156,'Namestovo','Slovakia','SK','Namestovo (Slovakia)',1,1,0),(29096,32071,129157,'Nan','Thailand','TH','Nan (Thailand)',1,1,0),(29097,18950,129158,'Nankan','Japan','JP','Nankan (Japan)',1,1,0),(29098,18964,129159,'Nanteuil-les-Meaux','France','FR','Nanteuil-les-Meaux (France)',1,1,0),(29099,0,129160,'Nantilly','France','FR','Nantilly (France)',1,1,0),(29100,0,129161,'Nantoux','France','FR','Nantoux (France)',1,1,0),(29101,19006,129162,'Narbonne','France','FR','Narbonne (France)',1,1,0),(29102,0,129164,'Nasavrky','Czech Republic','CZ','Nasavrky (Czech Republic)',1,1,0),(29103,0,129165,'Natadola Beach','Fiji Islands','FJ','Natadola Beach (Fiji Islands)',1,1,0),(29104,19055,129166,'Natchez','United States of America','US','Natchez (United States of America)',1,1,0),(29105,19057,129167,'Naters','Switzerland','CH','Naters (Switzerland)',1,1,0),(29106,19061,129168,'Natick','United States of America','US','Natick (United States of America)',1,1,0),(29107,32075,129169,'National City','United States of America','US','National City (United States of America)',1,1,0),(29108,0,129170,'Nationalpark Cajas','Ecuador','EC','Nationalpark Cajas (Ecuador)',1,1,0),(29109,0,129171,'Nationalpark Volcan Poas','Costa Rica','CR','Nationalpark Volcan Poas (Costa Rica)',1,1,0),(29110,0,129172,'Natters','Austria','AT','Natters (Austria)',1,1,0),(29111,19068,129173,'Nauders','Austria','AT','Nauders (Austria)',1,1,0),(29112,0,129174,'Nauvo','Finland','FI','Nauvo (Finland)',1,1,0),(29113,0,129175,'Navajas','Spain','ES','Navajas (Spain)',1,1,0),(29114,19081,129176,'Navan','Ireland','IE','Navan (Ireland)',1,1,0),(29115,19085,129177,'Navarrenx','France','FR','Navarrenx (France)',1,1,0),(29116,19087,129178,'Navas','Spain','ES','Navas (Spain)',1,1,0),(29117,0,129179,'Naves','France','FR','Naves (France)',1,1,0),(29118,19105,129180,'Nay Pyi Taw','Myanmar','MM','Nay Pyi Taw (Myanmar)',1,1,0),(29119,0,129181,'Nea Kios','Greece','GR','Nea Kios (Greece)',1,1,0),(29120,19119,129182,'Neapoli','Greece','GR','Neapoli (Greece)',1,1,0),(29121,0,129183,'Neath','United Kingdom','UK','Neath (United Kingdom)',1,1,0),(29122,0,129184,'Nebrich','Czech Republic','CZ','Nebrich (Czech Republic)',1,1,0),(29123,0,129185,'Nedvedice','Czech Republic','CZ','Nedvedice (Czech Republic)',1,1,0),(29124,19134,129186,'Needham','United States of America','US','Needham (United States of America)',1,1,0),(29125,19145,129187,'Negaunee','United States of America','US','Negaunee (United States of America)',1,1,0),(29126,0,129188,'Negotino','Macedonia','MK','Negotino (Macedonia)',1,1,0),(29127,19165,129190,'Nellim','Finland','FI','Nellim (Finland)',1,1,0),(29128,19182,129191,'Nenagh','Ireland','IE','Nenagh (Ireland)',1,1,0),(29129,19185,129192,'Nendeln','Liechtenstein','LI','Nendeln (Liechtenstein)',1,1,0),(29130,0,129193,'Neo Klima','Greece','GR','Neo Klima (Greece)',1,1,0),(29131,0,129194,'Neochori','Greece','GR','Neochori (Greece)',1,1,0),(29132,0,129195,'Neokesaria','Greece','GR','Neokesaria (Greece)',1,1,0),(29133,0,129196,'Neptun','Romania','RO','Neptun (Romania)',1,1,0),(29134,0,129197,'Nerondes','France','FR','Nerondes (France)',1,1,0),(29135,0,129198,'Nervesa della Battaglia','Italy','IT','Nervesa della Battaglia (Italy)',1,1,0),(29136,0,129199,'Nesslau','Switzerland','CH','Nesslau (Switzerland)',1,1,0),(29137,0,129200,'Neu Schonberg','Germany','DE','Neu Schonberg (Germany)',1,1,0),(29138,19220,129201,'Neuberg an der Murz','Austria','AT','Neuberg an der Murz (Austria)',1,1,0),(29139,0,129202,'Neubrucke','Germany','DE','Neubrucke (Germany)',1,1,0),(29140,0,129203,'Neuenkirchen (Luneburger Heide)','Germany','DE','Neuenkirchen (Luneburger Heide) (Germany)',1,1,0),(29141,0,129204,'Neufahrn bei Freising','Germany','DE','Neufahrn bei Freising (Germany)',1,1,0),(29142,0,129205,'Neufahrn in Niederbayern','Germany','DE','Neufahrn in Niederbayern (Germany)',1,1,0),(29143,0,129206,'Neufchatel-En-Saosnois','France','FR','Neufchatel-En-Saosnois (France)',1,1,0),(29144,0,129207,'Neuhausen-Schellbronn','Germany','DE','Neuhausen-Schellbronn (Germany)',1,1,0),(29145,0,129208,'Neukirch (bei Tettnang)','Germany','DE','Neukirch (bei Tettnang) (Germany)',1,1,0),(29146,0,129209,'Neumarkt in Steiermark','Austria','AT','Neumarkt in Steiermark (Austria)',1,1,0),(29147,19252,129210,'Neuquen','Argentina','AR','Neuquen (Argentina)',1,1,0),(29148,0,129211,'Neusiedel am See/Neusiedler Lake','Austria','AT','Neusiedel am See/Neusiedler Lake (Austria)',1,1,0),(29149,0,129212,'Neustadt (Wied)','Germany','DE','Neustadt (Wied) (Germany)',1,1,0),(29150,0,129213,'Neustadt an der Donau','Germany','DE','Neustadt an der Donau (Germany)',1,1,0),(29151,0,129214,'Neustadt/Harz','Germany','DE','Neustadt/Harz (Germany)',1,1,0),(29152,0,129215,'Neutraubling','Germany','DE','Neutraubling (Germany)',1,1,0),(29153,19266,129216,'Neuveglise','France','FR','Neuveglise (France)',1,1,0),(29154,0,129217,'Nevada City','United States of America','US','Nevada City (United States of America)',1,1,0),(29155,19275,129218,'Nevers','France','FR','Nevers (France)',1,1,0),(29156,32091,129219,'New Bedford','United States of America','US','New Bedford (United States of America)',1,1,0),(29157,32094,129220,'New Boston','United States of America','US','New Boston (United States of America)',1,1,0),(29158,0,129221,'New Florence','United States of America','US','New Florence (United States of America)',1,1,0),(29159,19288,129222,'New Glasgow','Canada','CA','New Glasgow (Canada)',1,1,0),(29160,19291,129223,'New Norfolk','Australia','AU','New Norfolk (Australia)',1,1,0),(29161,0,129224,'New Port','United States of America','US','New Port (United States of America)',1,1,0),(29162,32145,129225,'New Preston','United States of America','US','New Preston (United States of America)',1,1,0),(29163,0,129226,'New Quay','United Kingdom','UK','New Quay (United Kingdom)',1,1,0),(29164,0,129227,'New Richmond','Canada','CA','New Richmond (Canada)',1,1,0),(29165,0,129228,'Newark','United States of America','US','Newark (United States of America)',1,1,0),(29166,0,129230,'Newark-on-Trent','United Kingdom','UK','Newark-on-Trent (United Kingdom)',1,1,0),(29167,0,129231,'Newbottle','United Kingdom','UK','Newbottle (United Kingdom)',1,1,0),(29168,0,129233,'Murat-le-Quaire','France','FR','Murat-le-Quaire (France)',1,1,0),(29169,0,129234,'Murlo','Italy','IT','Murlo (Italy)',1,1,0),(29170,0,129235,'Murray','United States of America','US','Murray (United States of America)',1,1,0),(29171,18750,129236,'Murrieta','United States of America','US','Murrieta (United States of America)',1,1,0),(29172,0,129237,'Musalez','Croatia','HR','Musalez (Croatia)',1,1,0),(29173,0,129238,'Musetesti','Romania','RO','Musetesti (Romania)',1,1,0),(29174,18780,129239,'Muswellbrook','Australia','AU','Muswellbrook (Australia)',1,1,0),(29175,0,129240,'Muzillac','France','FR','Muzillac (France)',1,1,0),(29176,18813,129241,'Myrina','Greece','GR','Myrina (Greece)',1,1,0),(29177,0,129242,'Mytikas','Greece','GR','Mytikas (Greece)',1,1,0),(29178,0,129243,'Myurelya','Russia','RU','Myurelya (Russia)',1,1,0),(29179,0,129244,'Mzaar Kfardebian','Lebanon','LB','Mzaar Kfardebian (Lebanon)',1,1,0),(29180,0,129245,'Mzimba','Malawi','MW','Mzimba (Malawi)',1,1,0),(29181,18836,129246,'Naaldwijk','Netherlands','NL','Naaldwijk (Netherlands)',1,1,0),(29182,18840,129247,'Naarden','Netherlands','NL','Naarden (Netherlands)',1,1,0),(29183,0,129248,'Nabereschnyje Tschelny','Russia','RU','Nabereschnyje Tschelny (Russia)',1,1,0),(29184,0,129249,'Nachrodt-Wiblingwerde','Germany','DE','Nachrodt-Wiblingwerde (Germany)',1,1,0),(29185,18855,129250,'Nadi','Fiji Islands','FJ','Nadi (Fiji Islands)',1,1,0),(29186,18857,129251,'Nador','Morocco','MA','Nador (Morocco)',1,1,0),(29187,0,129252,'Nagaoka','Japan','JP','Nagaoka (Japan)',1,1,0),(29188,0,129253,'Nagold','Germany','DE','Nagold (Germany)',1,1,0),(29189,0,129254,'Nagybereny','Hungary','HU','Nagybereny (Hungary)',1,1,0),(29190,0,129255,'Nai Thorn','Thailand','TH','Nai Thorn (Thailand)',1,1,0),(29191,0,129256,'Nai Yang Beach','Thailand','TH','Nai Yang Beach (Thailand)',1,1,0),(29192,0,129258,'Naleczow','Poland','PL','Naleczow (Poland)',1,1,0),(29193,18928,129259,'Namsos','Norway','NO','Namsos (Norway)',1,1,0),(29194,18931,129260,'Namur','Belgium','BE','Namur (Belgium)',1,1,0),(29195,0,129261,'Nanango','Australia','AU','Nanango (Australia)',1,1,0),(29196,18940,129262,'Nanchong','China','CN','Nanchong (China)',1,1,0),(29197,18954,129263,'Nanoose Bay','Canada','CA','Nanoose Bay (Canada)',1,1,0),(29198,18956,129264,'Nanping','China','CN','Nanping (China)',1,1,0),(29199,18973,129265,'Nanyang','China','CN','Nanyang (China)',1,1,0),(29200,0,129266,'Naoussa (Imathia)','Greece','GR','Naoussa (Imathia) (Greece)',1,1,0),(29201,0,129267,'Napoleonville','United States of America','US','Napoleonville (United States of America)',1,1,0),(29202,18997,129268,'Naracoorte','Australia','AU','Naracoorte (Australia)',1,1,0),(29203,19005,129269,'Narbolia','Italy','IT','Narbolia (Italy)',1,1,0),(29204,0,129270,'Narra','Philippines','PH','Narra (Philippines)',1,1,0),(29205,19030,129271,'Narvik','Norway','NO','Narvik (Norway)',1,1,0),(29206,19041,129272,'Nassfeld','Austria','AT','Nassfeld (Austria)',1,1,0),(29207,0,129273,'Nassogne','Belgium','BE','Nassogne (Belgium)',1,1,0),(29208,0,129274,'Nationalpark Wolong','China','CN','Nationalpark Wolong (China)',1,1,0),(29209,0,129275,'Nationalpark Yasuni','Ecuador','EC','Nationalpark Yasuni (Ecuador)',1,1,0),(29210,0,129276,'Natzwiller','France','FR','Natzwiller (France)',1,1,0),(29211,0,129277,'Nauheim','Germany','DE','Nauheim (Germany)',1,1,0),(29212,0,129278,'Navoiy','Uzbekistan','UZ','Navoiy (Uzbekistan)',1,1,0),(29213,19095,129279,'Navojoa','Mexico','MX','Navojoa (Mexico)',1,1,0),(29214,19110,129280,'Nazca','Peru','PE','Nazca (Peru)',1,1,0),(29215,0,129281,'Nea Kallikratia','Greece','GR','Nea Kallikratia (Greece)',1,1,0),(29216,32083,129282,'Nea Makri','Greece','GR','Nea Makri (Greece)',1,1,0),(29217,0,129283,'Nea Roda','Greece','GR','Nea Roda (Greece)',1,1,0),(29218,0,129284,'Neckarbischofsheim','Germany','DE','Neckarbischofsheim (Germany)',1,1,0),(29219,19126,129285,'Neckarsulm','Germany','DE','Neckarsulm (Germany)',1,1,0),(29220,19131,129286,'Nederland','United States of America','US','Nederland (United States of America)',1,1,0),(29221,19151,129287,'Negril','Jamaica','JM','Negril (Jamaica)',1,1,0),(29222,0,129288,'Nehden','Germany','DE','Nehden (Germany)',1,1,0),(29223,19168,129290,'Nelson','New Zealand','NZ','Nelson (New Zealand)',1,1,0),(29224,0,129291,'Nelson','Canada','CA','Nelson (Canada)',1,1,0),(29225,19175,129292,'Nembro','Italy','IT','Nembro (Italy)',1,1,0),(29226,0,129293,'Neorio','Greece','GR','Neorio (Greece)',1,1,0),(29227,0,129294,'Neos Marmaras','Greece','GR','Neos Marmaras (Greece)',1,1,0),(29228,0,129295,'Nereto','Italy','IT','Nereto (Italy)',1,1,0),(29229,19205,129296,'Nerviano','Italy','IT','Nerviano (Italy)',1,1,0),(29230,19207,129297,'Nesbyen','Norway','NO','Nesbyen (Norway)',1,1,0),(29231,0,129298,'Neu Zauche','Germany','DE','Neu Zauche (Germany)',1,1,0),(29232,0,129299,'Neualbenreuth','Germany','DE','Neualbenreuth (Germany)',1,1,0),(29233,0,129300,'Neuastenberg','Germany','DE','Neuastenberg (Germany)',1,1,0),(29234,0,129301,'Neubeuern','Germany','DE','Neubeuern (Germany)',1,1,0),(29235,0,129302,'Neubiberg','Germany','DE','Neubiberg (Germany)',1,1,0),(29236,0,129303,'Neubulach','Germany','DE','Neubulach (Germany)',1,1,0),(29237,0,129304,'Neuburg am Rhein','Germany','DE','Neuburg am Rhein (Germany)',1,1,0),(29238,0,129305,'Neuburg an der Kammel','Germany','DE','Neuburg an der Kammel (Germany)',1,1,0),(29239,0,129306,'Neuenburg','Germany','DE','Neuenburg (Germany)',1,1,0),(29240,0,129307,'Neuenkruge','Germany','DE','Neuenkruge (Germany)',1,1,0),(29241,19228,129308,'Neuf-Brisach','France','FR','Neuf-Brisach (France)',1,1,0),(29242,0,129309,'Neufchateau (Vosges)','France','FR','Neufchateau (Vosges) (France)',1,1,0),(29243,0,129310,'Neukieritzsch','Germany','DE','Neukieritzsch (Germany)',1,1,0),(29244,0,129311,'Neukirchen','Austria','AT','Neukirchen (Austria)',1,1,0),(29245,0,129312,'Neukirchen bei Heiligen Blut','Germany','DE','Neukirchen bei Heiligen Blut (Germany)',1,1,0),(29246,0,129313,'Neukirchen-Balbini','Germany','DE','Neukirchen-Balbini (Germany)',1,1,0),(29247,0,129314,'Neulu?heim','Germany','DE','Neulu?heim (Germany)',1,1,0),(29248,0,129315,'Neustadt auf d. Heiduckenboden','Hungary','HU','Neustadt auf d. Heiduckenboden (Hungary)',1,1,0),(29249,19262,129316,'Neustadt-Glewe','Germany','DE','Neustadt-Glewe (Germany)',1,1,0),(29250,0,129317,'Neustettin','Poland','PL','Neustettin (Poland)',1,1,0),(29251,0,129318,'Neuville-les-Decize','France','FR','Neuville-les-Decize (France)',1,1,0),(29252,0,129319,'Neuwiller-les-Saverne','France','FR','Neuwiller-les-Saverne (France)',1,1,0),(29253,0,129320,'Neuzelle','Germany','DE','Neuzelle (Germany)',1,1,0),(29254,19274,129321,'Nevada','United States of America','US','Nevada (United States of America)',1,1,0),(29255,19282,129322,'Nevsehir','Turkey','TR','Nevsehir (Turkey)',1,1,0),(29256,0,129323,'New Castle','United States of America','US','New Castle (United States of America)',1,1,0),(29257,0,129324,'New Castle','United States of America','US','New Castle (United States of America)',1,1,0),(29258,0,129325,'New Cumnock','United Kingdom','UK','New Cumnock (United Kingdom)',1,1,0),(29259,0,129326,'New Golden Beach','Greece','GR','New Golden Beach (Greece)',1,1,0),(29260,32115,129327,'New Hampton','United States of America','US','New Hampton (United States of America)',1,1,0),(29261,32118,129328,'New Hartford','United States of America','US','New Hartford (United States of America)',1,1,0),(29262,32124,129329,'New Iberia','United States of America','US','New Iberia (United States of America)',1,1,0),(29263,0,129330,'New Lanark','United Kingdom','UK','New Lanark (United Kingdom)',1,1,0),(29264,32130,129331,'New Market','United States of America','US','New Market (United States of America)',1,1,0),(29265,32137,129332,'New Orleans','United States of America','US','New Orleans (United States of America)',1,1,0),(29266,32142,129333,'New Philadelphia','United States of America','US','New Philadelphia (United States of America)',1,1,0),(29267,0,129334,'New Plymouth','New Zealand','NZ','New Plymouth (New Zealand)',1,1,0),(29268,32150,129335,'New Smyrna Beach','United States of America','US','New Smyrna Beach (United States of America)',1,1,0),(29269,32152,129336,'New Stanton','United States of America','US','New Stanton (United States of America)',1,1,0),(29270,0,129337,'Newark','United States of America','US','Newark (United States of America)',1,1,0),(29271,19322,129338,'Newcomerstown','United States of America','US','Newcomerstown (United States of America)',1,1,0),(29272,0,129339,'Newmarket','Ireland','IE','Newmarket (Ireland)',1,1,0),(29273,0,129340,'Newry','United Kingdom','UK','Newry (United Kingdom)',1,1,0),(29274,0,129341,'Montemolin','Spain','ES','Montemolin (Spain)',1,1,0),(29275,18208,129342,'Montenegro','Montenegro','ME','Montenegro (Montenegro)',1,1,0),(29276,18210,129343,'Montenero','Italy','IT','Montenero (Italy)',1,1,0),(29277,18213,129344,'Montepulciano','Italy','IT','Montepulciano (Italy)',1,1,0),(29278,0,129345,'Monteroni di Lecce','Italy','IT','Monteroni di Lecce (Italy)',1,1,0),(29279,0,129346,'Montesover','Italy','IT','Montesover (Italy)',1,1,0),(29280,18233,129347,'Montevarchi','Italy','IT','Montevarchi (Italy)',1,1,0),(29281,18239,129348,'Montevrain','France','FR','Montevrain (France)',1,1,0),(29282,0,129349,'Montfaucon-en-Velay','France','FR','Montfaucon-en-Velay (France)',1,1,0),(29283,18243,129350,'Montfavet','France','FR','Montfavet (France)',1,1,0),(29284,18250,129351,'Montgenevre','France','FR','Montgenevre (France)',1,1,0),(29285,0,129352,'Montgomery','United States of America','US','Montgomery (United States of America)',1,1,0),(29286,0,129353,'Monticelli Brusati','Italy','IT','Monticelli Brusati (Italy)',1,1,0),(29287,18258,129354,'Monticelli Terme','Italy','IT','Monticelli Terme (Italy)',1,1,0),(29288,18262,129355,'Monticiano','Italy','IT','Monticiano (Italy)',1,1,0),(29289,0,129356,'Montierchaume','France','FR','Montierchaume (France)',1,1,0),(29290,0,129357,'Montliot-et-Courcelles','France','FR','Montliot-et-Courcelles (France)',1,1,0),(29291,18284,129358,'Montmelard','France','FR','Montmelard (France)',1,1,0),(29292,0,129359,'Montmerle-sur-Saone','France','FR','Montmerle-sur-Saone (France)',1,1,0),(29293,0,129360,'Montmort-Lucy','France','FR','Montmort-Lucy (France)',1,1,0),(29294,18289,129361,'Montone','Italy','IT','Montone (Italy)',1,1,0),(29295,18308,129362,'Montreux','Switzerland','CH','Montreux (Switzerland)',1,1,0),(29296,0,129363,'Montricher-Albanne','France','FR','Montricher-Albanne (France)',1,1,0),(29297,0,129364,'Mont-Saint-Hilaire','Canada','CA','Mont-Saint-Hilaire (Canada)',1,1,0),(29298,0,129365,'Montsauche - Les - Settons','France','FR','Montsauche - Les - Settons (France)',1,1,0),(29299,18335,129366,'Monzambano','Italy','IT','Monzambano (Italy)',1,1,0),(29300,18353,129367,'Moorhead','United States of America','US','Moorhead (United States of America)',1,1,0),(29301,31986,129368,'Mora','United States of America','US','Mora (United States of America)',1,1,0),(29302,0,129369,'Moraas','Germany','DE','Moraas (Germany)',1,1,0),(29303,18373,129370,'Moraira','Spain','ES','Moraira (Spain)',1,1,0),(29304,0,129371,'Moravska Trebova','Czech Republic','CZ','Moravska Trebova (Czech Republic)',1,1,0),(29305,0,129372,'Moravske Budejovice','Czech Republic','CZ','Moravske Budejovice (Czech Republic)',1,1,0),(29306,0,129373,'Moravsky Krumlov','Czech Republic','CZ','Moravsky Krumlov (Czech Republic)',1,1,0),(29307,0,129374,'Morbisch','Austria','AT','Morbisch (Austria)',1,1,0),(29308,0,129375,'Morbylanga','Sweden','SE','Morbylanga (Sweden)',1,1,0),(29309,18395,129376,'Mordano','Italy','IT','Mordano (Italy)',1,1,0),(29310,0,129377,'Morecambe','United Kingdom','UK','Morecambe (United Kingdom)',1,1,0),(29311,0,129378,'Moretonhampstead','United Kingdom','UK','Moretonhampstead (United Kingdom)',1,1,0),(29312,18414,129379,'Morfelden-Walldorf','Germany','DE','Morfelden-Walldorf (Germany)',1,1,0),(29313,18417,129380,'Morganton','United States of America','US','Morganton (United States of America)',1,1,0),(29314,0,129381,'Morgantown','United States of America','US','Morgantown (United States of America)',1,1,0),(29315,0,129382,'Moriani Plage','France','FR','Moriani Plage (France)',1,1,0),(29316,0,129383,'Morrisville','United States of America','US','Morrisville (United States of America)',1,1,0),(29317,0,129384,'Mortegliano','Italy','IT','Mortegliano (Italy)',1,1,0),(29318,18482,129385,'Mosbach','Germany','DE','Mosbach (Germany)',1,1,0),(29319,18511,129386,'Mossman','Australia','AU','Mossman (Australia)',1,1,0),(29320,0,129387,'Mosta','Malta','MT','Mosta (Malta)',1,1,0),(29321,18515,129388,'Mostar','Bosnia and Herzegowina','BA','Mostar (Bosnia and Herzegowina)',1,1,0),(29322,18521,129389,'Motala','Sweden','SE','Motala (Sweden)',1,1,0),(29323,0,129390,'Motzen','Germany','DE','Motzen (Germany)',1,1,0),(29324,18543,129391,'Mouleydier','France','FR','Mouleydier (France)',1,1,0),(29325,0,129392,'Mount Barney','Australia','AU','Mount Barney (Australia)',1,1,0),(29326,0,129393,'Mount Buffalo','Australia','AU','Mount Buffalo (Australia)',1,1,0),(29327,31998,129394,'Mount Clemens','United States of America','US','Mount Clemens (United States of America)',1,1,0),(29328,0,129395,'Mount Ephraim','United States of America','US','Mount Ephraim (United States of America)',1,1,0),(29329,32006,129396,'Mount Gambier','Australia','AU','Mount Gambier (Australia)',1,1,0),(29330,32023,129397,'Mount Laurel','United States of America','US','Mount Laurel (United States of America)',1,1,0),(29331,0,129398,'Mount Moreland','South Africa','ZA','Mount Moreland (South Africa)',1,1,0),(29332,0,129399,'Mount Rushmore','United States of America','US','Mount Rushmore (United States of America)',1,1,0),(29333,32041,129400,'Mount Sterling','United States of America','US','Mount Sterling (United States of America)',1,1,0),(29334,0,129401,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(29335,0,129402,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(29336,32055,129403,'Mountain Home','United States of America','US','Mountain Home (United States of America)',1,1,0),(29337,18561,129404,'Mountain Pine Ridge','Belize','BZ','Mountain Pine Ridge (Belize)',1,1,0),(29338,18562,129405,'Mountainair','United States of America','US','Mountainair (United States of America)',1,1,0),(29339,18571,129406,'Mousata','Greece','GR','Mousata (Greece)',1,1,0),(29340,0,129407,'Mousehole','United Kingdom','UK','Mousehole (United Kingdom)',1,1,0),(29341,18591,129408,'Mragowo','Poland','PL','Mragowo (Poland)',1,1,0),(29342,0,129409,'Mrezyno','Poland','PL','Mrezyno (Poland)',1,1,0),(29343,0,129410,'Msida','Malta','MT','Msida (Malta)',1,1,0),(29344,0,129411,'Mt. Carmel','United States of America','US','Mt. Carmel (United States of America)',1,1,0),(29345,0,129412,'Mudanya','Turkey','TR','Mudanya (Turkey)',1,1,0),(29346,0,129413,'Muhlen in Taufers','Italy','IT','Muhlen in Taufers (Italy)',1,1,0),(29347,0,129414,'Mukim Padang','Malaysia','MY','Mukim Padang (Malaysia)',1,1,0),(29348,18653,129416,'Mulberry','United States of America','US','Mulberry (United States of America)',1,1,0),(29349,18657,129417,'Muldrow','United States of America','US','Muldrow (United States of America)',1,1,0),(29350,18658,129418,'Mulege','Mexico','MX','Mulege (Mexico)',1,1,0),(29351,18669,129419,'Mullerthal','Luxembourg','LU','Mullerthal (Luxembourg)',1,1,0),(29352,0,129420,'Mullins Bay','Barbados','BB','Mullins Bay (Barbados)',1,1,0),(29353,0,129421,'Munana','Spain','ES','Munana (Spain)',1,1,0),(29354,0,129422,'Munchenbernsdorf','Germany','DE','Munchenbernsdorf (Germany)',1,1,0),(29355,18680,129423,'Munchendorf','Austria','AT','Munchendorf (Austria)',1,1,0),(29356,0,129424,'Munchenwiler','Switzerland','CH','Munchenwiler (Switzerland)',1,1,0),(29357,0,129425,'Muncho Lake','Canada','CA','Muncho Lake (Canada)',1,1,0),(29358,0,129426,'Munebrega','Spain','ES','Munebrega (Spain)',1,1,0),(29359,0,129427,'Munique','Spain','ES','Munique (Spain)',1,1,0),(29360,0,129428,'Munster','Austria','AT','Munster (Austria)',1,1,0),(29361,18707,129429,'Muotathal','Switzerland','CH','Muotathal (Switzerland)',1,1,0),(29362,32065,129430,'Murcia','Spain','ES','Murcia (Spain)',1,1,0),(29363,0,129431,'Murg','Germany','DE','Murg (Germany)',1,1,0),(29364,0,129432,'Muro de Alcoy','Spain','ES','Muro de Alcoy (Spain)',1,1,0),(29365,18747,129433,'Murrells Inlet','United States of America','US','Murrells Inlet (United States of America)',1,1,0),(29366,18759,129435,'Murwillumbah','Australia','AU','Murwillumbah (Australia)',1,1,0),(29367,18761,129436,'Musashino','Japan','JP','Musashino (Japan)',1,1,0),(29368,18769,129437,'Muskoka','Canada','CA','Muskoka (Canada)',1,1,0),(29369,18772,129438,'Mussanah','Oman','OM','Mussanah (Oman)',1,1,0),(29370,0,129439,'Mutriku','Spain','ES','Mutriku (Spain)',1,1,0),(29371,0,129440,'Mutsu','Japan','JP','Mutsu (Japan)',1,1,0),(29372,0,129441,'Muurame','Finland','FI','Muurame (Finland)',1,1,0),(29373,0,129442,'Muxima','Angola','AO','Muxima (Angola)',1,1,0),(29374,18832,129443,'Mzuzu','Malawi','MW','Mzuzu (Malawi)',1,1,0),(29375,18843,129444,'Nabeul','Tunisia','TN','Nabeul (Tunisia)',1,1,0),(29376,18848,129445,'Nachikatsuura','Japan','JP','Nachikatsuura (Japan)',1,1,0),(29377,0,129446,'Nadschran','Saudi Arabia','SA','Nadschran (Saudi Arabia)',1,1,0),(29378,0,129448,'Nago','Italy','IT','Nago (Italy)',1,1,0),(29379,0,129449,'Newstead','Australia','AU','Newstead (Australia)',1,1,0),(29380,19353,129450,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(29381,0,129451,'Newton Falls','United States of America','US','Newton Falls (United States of America)',1,1,0),(29382,19372,129452,'Ngatangiia','Cook Islands','CK','Ngatangiia (Cook Islands)',1,1,0),(29383,0,129453,'Niamey','Niger','NE','Niamey (Niger)',1,1,0),(29384,0,129454,'Nias Island','Indonesia','ID','Nias Island (Indonesia)',1,1,0),(29385,19398,129455,'Nicolosi','Italy','IT','Nicolosi (Italy)',1,1,0),(29386,0,129456,'Nideggen','Germany','DE','Nideggen (Germany)',1,1,0),(29387,0,129457,'Nieblum','Germany','DE','Nieblum (Germany)',1,1,0),(29388,19405,129458,'Niederau','Austria','AT','Niederau (Austria)',1,1,0),(29389,19408,129459,'Niederbronn-les-Bains','France','FR','Niederbronn-les-Bains (France)',1,1,0),(29390,19409,129460,'Niederfell','Germany','DE','Niederfell (Germany)',1,1,0),(29391,0,129461,'Niedernsill','Austria','AT','Niedernsill (Austria)',1,1,0),(29392,0,129462,'Niederranna','Austria','AT','Niederranna (Austria)',1,1,0),(29393,0,129463,'Niederroth','Germany','DE','Niederroth (Germany)',1,1,0),(29394,0,129464,'Niederstadtfeld','Germany','DE','Niederstadtfeld (Germany)',1,1,0),(29395,19419,129465,'Niederzissen','Germany','DE','Niederzissen (Germany)',1,1,0),(29396,0,129466,'Niefern-Oschelbronn','Germany','DE','Niefern-Oschelbronn (Germany)',1,1,0),(29397,0,129467,'Nienhagen','Germany','DE','Nienhagen (Germany)',1,1,0),(29398,0,129468,'Niepolomice','Poland','PL','Niepolomice (Poland)',1,1,0),(29399,19425,129469,'Nierstein','Germany','DE','Nierstein (Germany)',1,1,0),(29400,19432,129470,'Nieuweschans','Netherlands','NL','Nieuweschans (Netherlands)',1,1,0),(29401,19437,129471,'Niewitz','Germany','DE','Niewitz (Germany)',1,1,0),(29402,0,129472,'Nigran','Spain','ES','Nigran (Spain)',1,1,0),(29403,0,129473,'Nikiski','United States of America','US','Nikiski (United States of America)',1,1,0),(29404,0,129474,'Nikopol','Ukraine','UA','Nikopol (Ukraine)',1,1,0),(29405,19464,129475,'Nilai','Malaysia','MY','Nilai (Malaysia)',1,1,0),(29406,19467,129476,'Niles','United States of America','US','Niles (United States of America)',1,1,0),(29407,19473,129478,'Nimes','France','FR','Nimes (France)',1,1,0),(29408,19474,129479,'Ningbo','China','CN','Ningbo (China)',1,1,0),(29409,0,129480,'Nisporto','Italy','IT','Nisporto (Italy)',1,1,0),(29410,0,129481,'Nitry','France','FR','Nitry (France)',1,1,0),(29411,0,129482,'Nittenau','Germany','DE','Nittenau (Germany)',1,1,0),(29412,19502,129483,'Nivillac','France','FR','Nivillac (France)',1,1,0),(29413,0,129484,'Nobby Beach','Australia','AU','Nobby Beach (Australia)',1,1,0),(29414,19546,129485,'Noisiel','France','FR','Noisiel (France)',1,1,0),(29415,32169,129486,'Nola','Italy','IT','Nola (Italy)',1,1,0),(29416,32170,129487,'Noli','Italy','IT','Noli (Italy)',1,1,0),(29417,0,129488,'Nome','United States of America','US','Nome (United States of America)',1,1,0),(29418,19563,129489,'Noonu Atoll','Maldives','MV','Noonu Atoll (Maldives)',1,1,0),(29419,19574,129490,'Nora','Sweden','SE','Nora (Sweden)',1,1,0),(29420,0,129491,'Nordenau','Germany','DE','Nordenau (Germany)',1,1,0),(29421,0,129492,'Nordhorn','Germany','DE','Nordhorn (Germany)',1,1,0),(29422,0,129493,'Norilsk','Russia','RU','Norilsk (Russia)',1,1,0),(29423,19606,129494,'Normal','United States of America','US','Normal (United States of America)',1,1,0),(29424,32186,129495,'North Bergen','United States of America','US','North Bergen (United States of America)',1,1,0),(29425,32199,129496,'North Chelmsford','United States of America','US','North Chelmsford (United States of America)',1,1,0),(29426,32206,129497,'North Conway','United States of America','US','North Conway (United States of America)',1,1,0),(29427,32209,129498,'North Dartmouth','United States of America','US','North Dartmouth (United States of America)',1,1,0),(29428,32259,129499,'North Olmsted','United States of America','US','North Olmsted (United States of America)',1,1,0),(29429,32276,129500,'North Richland Hills','United States of America','US','North Richland Hills (United States of America)',1,1,0),(29430,0,129501,'North Vancouver','Canada','CA','North Vancouver (Canada)',1,1,0),(29431,32307,129502,'North Wildwood','United States of America','US','North Wildwood (United States of America)',1,1,0),(29432,19660,129503,'Northfield','United States of America','US','Northfield (United States of America)',1,1,0),(29433,0,129504,'Northwold','United Kingdom','UK','Northwold (United Kingdom)',1,1,0),(29434,19683,129505,'Norton','United States of America','US','Norton (United States of America)',1,1,0),(29435,19684,129506,'Norwalk','United States of America','US','Norwalk (United States of America)',1,1,0),(29436,19685,129507,'Norway','United States of America','US','Norway (United States of America)',1,1,0),(29437,19690,129508,'Norwood','United States of America','US','Norwood (United States of America)',1,1,0),(29438,0,129509,'Nosy Iranja','Madagascar','MG','Nosy Iranja (Madagascar)',1,1,0),(29439,0,129510,'Notre-Dame-des-Sept-Douleurs','Canada','CA','Notre-Dame-des-Sept-Douleurs (Canada)',1,1,0),(29440,19705,129511,'Nottwil','Switzerland','CH','Nottwil (Switzerland)',1,1,0),(29441,19707,129512,'Noumea','New Caledonia','NC','Noumea (New Caledonia)',1,1,0),(29442,0,129513,'Nova Iguacu','Brazil','BR','Nova Iguacu (Brazil)',1,1,0),(29443,0,129514,'Nova Lesna','Slovakia','SK','Nova Lesna (Slovakia)',1,1,0),(29444,0,129515,'Nova Lima','Brazil','BR','Nova Lima (Brazil)',1,1,0),(29445,0,129516,'Nove Hamry','Czech Republic','CZ','Nove Hamry (Czech Republic)',1,1,0),(29446,19715,129517,'Nove Mesto na Morave','Czech Republic','CZ','Nove Mesto na Morave (Czech Republic)',1,1,0),(29447,19727,129518,'Novo Mesto','Slovenia','SI','Novo Mesto (Slovenia)',1,1,0),(29448,0,129519,'Novy Bor - Lausitzgebirge/Lausitz Mountains','Czech Republic','CZ','Novy Bor - Lausitzgebirge/Lausitz Mountains (Czech Republic)',1,1,0),(29449,0,129520,'Nowe','Poland','PL','Nowe (Poland)',1,1,0),(29450,0,129521,'Nowe Brzesko','Poland','PL','Nowe Brzesko (Poland)',1,1,0),(29451,0,129522,'Noworossijsk','Russia','RU','Noworossijsk (Russia)',1,1,0),(29452,0,129523,'Nowotscherkassk','Russia','RU','Nowotscherkassk (Russia)',1,1,0),(29453,19745,129524,'Noyelles-sur-Mer','France','FR','Noyelles-sur-Mer (France)',1,1,0),(29454,0,129525,'Nozawaonsen','Japan','JP','Nozawaonsen (Japan)',1,1,0),(29455,0,129526,'Nueva Gerona','Cuba','CU','Nueva Gerona (Cuba)',1,1,0),(29456,19759,129527,'Nufringen','Germany','DE','Nufringen (Germany)',1,1,0),(29457,0,129528,'Nunney','United Kingdom','UK','Nunney (United Kingdom)',1,1,0),(29458,0,129529,'Nuremburg','Germany','DE','Nuremburg (Germany)',1,1,0),(29459,19789,129530,'Nurmes','Finland','FI','Nurmes (Finland)',1,1,0),(29460,0,129531,'Nusa Dua','Indonesia','ID','Nusa Dua (Indonesia)',1,1,0),(29461,0,129532,'Ny','Belgium','BE','Ny (Belgium)',1,1,0),(29462,19800,129533,'Nyack','United States of America','US','Nyack (United States of America)',1,1,0),(29463,0,129534,'Nyali Beach','Kenya','KE','Nyali Beach (Kenya)',1,1,0),(29464,0,129535,'Nybro','Sweden','SE','Nybro (Sweden)',1,1,0),(29465,0,129536,'Nyingchi','China','CN','Nyingchi (China)',1,1,0),(29466,0,129537,'Nyiregyhaza','Hungary','HU','Nyiregyhaza (Hungary)',1,1,0),(29467,32326,129538,'Oak Grove','United States of America','US','Oak Grove (United States of America)',1,1,0),(29468,19842,129539,'Oamaru','New Zealand','NZ','Oamaru (New Zealand)',1,1,0),(29469,0,129540,'Oaxaca','Mexico','MX','Oaxaca (Mexico)',1,1,0),(29470,19846,129541,'Obdach','Austria','AT','Obdach (Austria)',1,1,0),(29471,0,129542,'Obera','Argentina','AR','Obera (Argentina)',1,1,0),(29472,0,129543,'Oberageri','Switzerland','CH','Oberageri (Switzerland)',1,1,0),(29473,19848,129544,'Oberammergau','Germany','DE','Oberammergau (Germany)',1,1,0),(29474,0,129545,'Obercunnersdorf','Germany','DE','Obercunnersdorf (Germany)',1,1,0),(29475,0,129546,'Oberdrauburg','Austria','AT','Oberdrauburg (Austria)',1,1,0),(29476,19856,129547,'Obergesteln','Switzerland','CH','Obergesteln (Switzerland)',1,1,0),(29477,0,129548,'Obergoseln','Germany','DE','Obergoseln (Germany)',1,1,0),(29478,0,129549,'Obergunzburg','Germany','DE','Obergunzburg (Germany)',1,1,0),(29479,19857,129550,'Obergurgl','Austria','AT','Obergurgl (Austria)',1,1,0),(29480,0,129551,'Oberhabach','Austria','AT','Oberhabach (Austria)',1,1,0),(29481,0,129552,'Oberhofen','Switzerland','CH','Oberhofen (Switzerland)',1,1,0),(29482,0,129553,'Oberkochen','Germany','DE','Oberkochen (Germany)',1,1,0),(29483,0,129554,'Oberkreuzberg','Germany','DE','Oberkreuzberg (Germany)',1,1,0),(29484,0,129555,'Oberndorf','Austria','AT','Oberndorf (Austria)',1,1,0),(29485,19875,129556,'Oberried','Germany','DE','Oberried (Germany)',1,1,0),(29486,0,129557,'Obersaxen','Switzerland','CH','Obersaxen (Switzerland)',1,1,0),(29487,0,129558,'Oberschledorn','Germany','DE','Oberschledorn (Germany)',1,1,0),(29488,0,129559,'Monclassico','Italy','IT','Monclassico (Italy)',1,1,0),(29489,18036,129560,'Moncoutant','France','FR','Moncoutant (France)',1,1,0),(29490,18051,129561,'Mondovi','Italy','IT','Mondovi (Italy)',1,1,0),(29491,0,129562,'Moneta','United States of America','US','Moneta (United States of America)',1,1,0),(29492,18067,129563,'Monflanquin','France','FR','Monflanquin (France)',1,1,0),(29493,0,129564,'Mongiove','Italy','IT','Mongiove (Italy)',1,1,0),(29494,0,129565,'Monheim am Rhein','Germany','DE','Monheim am Rhein (Germany)',1,1,0),(29495,0,129566,'Monmouth','United States of America','US','Monmouth (United States of America)',1,1,0),(29496,0,129567,'Monolithos','Greece','GR','Monolithos (Greece)',1,1,0),(29497,18090,129568,'Monona','United States of America','US','Monona (United States of America)',1,1,0),(29498,0,129569,'Monopari','Greece','GR','Monopari (Greece)',1,1,0),(29499,0,129570,'Monsagrati','Italy','IT','Monsagrati (Italy)',1,1,0),(29500,18100,129571,'Monsanto','Portugal','PT','Monsanto (Portugal)',1,1,0),(29501,0,129572,'Montagnieu','France','FR','Montagnieu (France)',1,1,0),(29502,0,129573,'Montagnola','Switzerland','CH','Montagnola (Switzerland)',1,1,0),(29503,18122,129574,'Montailleur','France','FR','Montailleur (France)',1,1,0),(29504,18125,129575,'Montalcino','Italy','IT','Montalcino (Italy)',1,1,0),(29505,18128,129576,'Montalegre','Portugal','PT','Montalegre (Portugal)',1,1,0),(29506,18134,129577,'Montargis','France','FR','Montargis (France)',1,1,0),(29507,0,129578,'Montbenoit','France','FR','Montbenoit (France)',1,1,0),(29508,0,129579,'Montcabrier (Lot)','France','FR','Montcabrier (Lot) (France)',1,1,0),(29509,0,129580,'Monte','Italy','IT','Monte (Italy)',1,1,0),(29510,0,129581,'Monte Bondone','Italy','IT','Monte Bondone (Italy)',1,1,0),(29511,0,129582,'Monte Fleuri','Seychelles','SC','Monte Fleuri (Seychelles)',1,1,0),(29512,18166,129583,'Monte Patria','Chile','CL','Monte Patria (Chile)',1,1,0),(29513,0,129584,'Monteagudo del Castillo','Spain','ES','Monteagudo del Castillo (Spain)',1,1,0),(29514,18171,129585,'Montebello Vicentino','Italy','IT','Montebello Vicentino (Italy)',1,1,0),(29515,18172,129586,'Montebonello','Italy','IT','Montebonello (Italy)',1,1,0),(29516,18173,129587,'Montecalvo in Foglia','Italy','IT','Montecalvo in Foglia (Italy)',1,1,0),(29517,0,129588,'Montecompatri','Italy','IT','Montecompatri (Italy)',1,1,0),(29518,0,129589,'Montegemoli','Italy','IT','Montegemoli (Italy)',1,1,0),(29519,0,129590,'Montelier','France','FR','Montelier (France)',1,1,0),(29520,0,129591,'Montemayor','Spain','ES','Montemayor (Spain)',1,1,0),(29521,0,129592,'Montendre','France','FR','Montendre (France)',1,1,0),(29522,0,129593,'Montenero d\'Orcia','Italy','IT','Montenero d\'Orcia (Italy)',1,1,0),(29523,0,129594,'Montepescali','Italy','IT','Montepescali (Italy)',1,1,0),(29524,0,129595,'Monterado','Italy','IT','Monterado (Italy)',1,1,0),(29525,0,129596,'Monterey','United States of America','US','Monterey (United States of America)',1,1,0),(29526,0,129597,'Monterey Park','United States of America','US','Monterey Park (United States of America)',1,1,0),(29527,18217,129598,'Monteria','Colombia','CO','Monteria (Colombia)',1,1,0),(29528,18229,129599,'Montespertoli','Italy','IT','Montespertoli (Italy)',1,1,0),(29529,18235,129600,'Monteverde','Costa Rica','CR','Monteverde (Costa Rica)',1,1,0),(29530,0,129601,'Monteverdi Marittimo','Italy','IT','Monteverdi Marittimo (Italy)',1,1,0),(29531,0,129602,'Monticchio Bagni','Italy','IT','Monticchio Bagni (Italy)',1,1,0),(29532,0,129603,'Montieramey','France','FR','Montieramey (France)',1,1,0),(29533,18264,129604,'Montignac','France','FR','Montignac (France)',1,1,0),(29534,18280,129605,'Montlucon','France','FR','Montlucon (France)',1,1,0),(29535,18292,129606,'Montorio','Spain','ES','Montorio (Spain)',1,1,0),(29536,18300,129607,'Montpellier','France','FR','Montpellier (France)',1,1,0),(29537,0,129608,'Montpeyroux (Aveyron)','France','FR','Montpeyroux (Aveyron) (France)',1,1,0),(29538,0,129609,'Montrigaud','France','FR','Montrigaud (France)',1,1,0),(29539,18324,129610,'Montserrat','Montserrat','MS','Montserrat (Montserrat)',1,1,0),(29540,0,129611,'Mont-Soleil','Switzerland','CH','Mont-Soleil (Switzerland)',1,1,0),(29541,18345,129612,'Moorabbin','Australia','AU','Moorabbin (Australia)',1,1,0),(29542,0,129613,'Moorhusen','Germany','DE','Moorhusen (Germany)',1,1,0),(29543,0,129614,'Mora','Spain','ES','Mora (Spain)',1,1,0),(29544,18381,129616,'Morannes','France','FR','Morannes (France)',1,1,0),(29545,0,129617,'Morbihan','France','FR','Morbihan (France)',1,1,0),(29546,0,129618,'Moreilles','France','FR','Moreilles (France)',1,1,0),(29547,18406,129619,'Morell','Canada','CA','Morell (Canada)',1,1,0),(29548,0,129620,'Moremi National Park','Botswana','BW','Moremi National Park (Botswana)',1,1,0),(29549,18408,129621,'Moreno Valley','United States of America','US','Moreno Valley (United States of America)',1,1,0),(29550,0,129622,'Moreton-in-Marsh','United Kingdom','UK','Moreton-in-Marsh (United Kingdom)',1,1,0),(29551,18413,129623,'Morey-Saint-Denis','France','FR','Morey-Saint-Denis (France)',1,1,0),(29552,0,129624,'Morgantown','United States of America','US','Morgantown (United States of America)',1,1,0),(29553,0,129625,'Moriani','France','FR','Moriani (France)',1,1,0),(29554,18424,129626,'Moriarty','United States of America','US','Moriarty (United States of America)',1,1,0),(29555,0,129627,'Moriken-Wildegg','Switzerland','CH','Moriken-Wildegg (Switzerland)',1,1,0),(29556,0,129628,'Morin-Heights','Canada','CA','Morin-Heights (Canada)',1,1,0),(29557,0,129629,'Morlet','France','FR','Morlet (France)',1,1,0),(29558,18448,129630,'Morondava','Madagascar','MG','Morondava (Madagascar)',1,1,0),(29559,18450,129631,'Moroni','Comoros','KM','Moroni (Comoros)',1,1,0),(29560,18455,129632,'Morrilton','United States of America','US','Morrilton (United States of America)',1,1,0),(29561,18458,129633,'Morrisburg','Canada','CA','Morrisburg (Canada)',1,1,0),(29562,0,129634,'Morro Branco','Brazil','BR','Morro Branco (Brazil)',1,1,0),(29563,0,129635,'Morro Jable','Spain','ES','Morro Jable (Spain)',1,1,0),(29564,18466,129636,'Morrow','United States of America','US','Morrow (United States of America)',1,1,0),(29565,0,129637,'Morton','France','FR','Morton (France)',1,1,0),(29566,0,129638,'Morz','Germany','DE','Morz (Germany)',1,1,0),(29567,18497,129639,'Moshi','Tanzania','TZ','Moshi (Tanzania)',1,1,0),(29568,18505,129640,'Mosonmagyarovar','Hungary','HU','Mosonmagyarovar (Hungary)',1,1,0),(29569,18506,129641,'Moss','Norway','NO','Moss (Norway)',1,1,0),(29570,0,129642,'Motherwell','United Kingdom','UK','Motherwell (United Kingdom)',1,1,0),(29571,0,129643,'Motta Sant\'Anastasia','Italy','IT','Motta Sant\'Anastasia (Italy)',1,1,0),(29572,18531,129644,'Mottola','Italy','IT','Mottola (Italy)',1,1,0),(29573,0,129645,'Mottram St. Andrew','United Kingdom','UK','Mottram St. Andrew (United Kingdom)',1,1,0),(29574,18533,129646,'Motueka','New Zealand','NZ','Motueka (New Zealand)',1,1,0),(29575,0,129647,'Mou','Denmark','DK','Mou (Denmark)',1,1,0),(29576,18537,129648,'Mougins','France','FR','Mougins (France)',1,1,0),(29577,0,129649,'Moulin Huet Bay','United Kingdom','UK','Moulin Huet Bay (United Kingdom)',1,1,0),(29578,18555,129650,'Mount Hagen','Papua New Guinea','PG','Mount Hagen (Papua New Guinea)',1,1,0),(29579,32013,129651,'Mount Hope','United States of America','US','Mount Hope (United States of America)',1,1,0),(29580,18556,129652,'Mount Hope','Canada','CA','Mount Hope (Canada)',1,1,0),(29581,32025,129653,'Mount Magnet','Australia','AU','Mount Magnet (Australia)',1,1,0),(29582,0,129654,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(29583,0,129655,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(29584,32061,129656,'Mountain Village','United States of America','US','Mountain Village (United States of America)',1,1,0),(29585,0,129657,'Mountain Zebra National Park','South Africa','ZA','Mountain Zebra National Park (South Africa)',1,1,0),(29586,18565,129658,'Mountlake Terrace','United States of America','US','Mountlake Terrace (United States of America)',1,1,0),(29587,18567,129659,'Mountville','United States of America','US','Mountville (United States of America)',1,1,0),(29588,0,129660,'Moxhe','Belgium','BE','Moxhe (Belgium)',1,1,0),(29589,0,129661,'Mozzagrogna','Italy','IT','Mozzagrogna (Italy)',1,1,0),(29590,0,129662,'Mucke','Germany','DE','Mucke (Germany)',1,1,0),(29591,18605,129663,'Mudanjiang','China','CN','Mudanjiang (China)',1,1,0),(29592,0,129664,'Muhlen','Austria','AT','Muhlen (Austria)',1,1,0),(29593,18628,129665,'Muhlhausen','Germany','DE','Muhlhausen (Germany)',1,1,0),(29594,18544,129666,'Moulins','France','FR','Moulins (France)',1,1,0),(29595,18548,129667,'Mound City','United States of America','US','Mound City (United States of America)',1,1,0),(29596,31990,129668,'Mount Arlington','United States of America','US','Mount Arlington (United States of America)',1,1,0),(29597,32001,129669,'Mount Dora','United States of America','US','Mount Dora (United States of America)',1,1,0),(29598,32017,129670,'Mount Isa','Australia','AU','Mount Isa (Australia)',1,1,0),(29599,32022,129671,'Mount Kisco','United States of America','US','Mount Kisco (United States of America)',1,1,0),(29600,0,129672,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(29601,0,129673,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(29602,0,129674,'Mount Sterling','United States of America','US','Mount Sterling (United States of America)',1,1,0),(29603,32044,129675,'Mount Tamborine','Australia','AU','Mount Tamborine (Australia)',1,1,0),(29604,0,129676,'Mount Vernon','United States of America','US','Mount Vernon (United States of America)',1,1,0),(29605,0,129677,'Mountain Home','United States of America','US','Mountain Home (United States of America)',1,1,0),(29606,18572,129678,'Mouscron','Belgium','BE','Mouscron (Belgium)',1,1,0),(29607,0,129679,'Moutiers Sous Chantemerle','France','FR','Moutiers Sous Chantemerle (France)',1,1,0),(29608,18576,129680,'Moville','Ireland','IE','Moville (Ireland)',1,1,0),(29609,18583,129681,'Moyvalley','Ireland','IE','Moyvalley (Ireland)',1,1,0),(29610,0,129682,'Mt. Bromo','Indonesia','ID','Mt. Bromo (Indonesia)',1,1,0),(29611,18598,129683,'Mtunzini','South Africa','ZA','Mtunzini (South Africa)',1,1,0),(29612,0,129684,'Mudumu-Nationalpark','Namibia','NA','Mudumu-Nationalpark (Namibia)',1,1,0),(29613,0,129685,'Muhlbach-Vals','Italy','IT','Muhlbach-Vals (Italy)',1,1,0),(29614,0,129686,'Muhldorf','Austria','AT','Muhldorf (Austria)',1,1,0),(29615,0,129687,'Muhlebach','Switzerland','CH','Muhlebach (Switzerland)',1,1,0),(29616,0,129688,'Muju','South Korea','KR','Muju (South Korea)',1,1,0),(29617,18638,129689,'Mukalla','Yemen','YE','Mukalla (Yemen)',1,1,0),(29618,0,129691,'Mulanje','Malawi','MW','Mulanje (Malawi)',1,1,0),(29619,0,129692,'Mullaghmore','Ireland','IE','Mullaghmore (Ireland)',1,1,0),(29620,0,129693,'Mullinavat','Ireland','IE','Mullinavat (Ireland)',1,1,0),(29621,0,129694,'Mullion','United Kingdom','UK','Mullion (United Kingdom)',1,1,0),(29622,0,129696,'Mumbo Island','Malawi','MW','Mumbo Island (Malawi)',1,1,0),(29623,18679,129697,'Munakata','Japan','JP','Munakata (Japan)',1,1,0),(29624,0,129698,'Munchehofe','Germany','DE','Munchehofe (Germany)',1,1,0),(29625,0,129699,'Mundau','Brazil','BR','Mundau (Brazil)',1,1,0),(29626,0,129700,'Mundesley','United Kingdom','UK','Mundesley (United Kingdom)',1,1,0),(29627,0,129701,'Mundford','United Kingdom','UK','Mundford (United Kingdom)',1,1,0),(29628,0,129702,'Munds Park','United States of America','US','Munds Park (United States of America)',1,1,0),(29629,0,129703,'Munkmarsch (Sylt)','Germany','DE','Munkmarsch (Sylt) (Germany)',1,1,0),(29630,0,129704,'Munzenberg','Germany','DE','Munzenberg (Germany)',1,1,0),(29631,18712,129705,'Murau','Austria','AT','Murau (Austria)',1,1,0),(29632,18713,129706,'Muravera','Italy','IT','Muravera (Italy)',1,1,0),(29633,18715,129707,'Murchison','New Zealand','NZ','Murchison (New Zealand)',1,1,0),(29634,0,129708,'Mur-De-Bretagne','France','FR','Mur-De-Bretagne (France)',1,1,0),(29635,0,129709,'Murg','Switzerland','CH','Murg (Switzerland)',1,1,0),(29636,0,129710,'Muro','Spain','ES','Muro (Spain)',1,1,0),(29637,0,129711,'Murska Sobota / Olsnitz','Slovenia','SI','Murska Sobota / Olsnitz (Slovenia)',1,1,0),(29638,18755,129712,'Murten','Switzerland','CH','Murten (Switzerland)',1,1,0),(29639,18756,129713,'Murtosa','Portugal','PT','Murtosa (Portugal)',1,1,0),(29640,18763,129714,'Muscatine','United States of America','US','Muscatine (United States of America)',1,1,0),(29641,0,129715,'Musina','South Africa','ZA','Musina (South Africa)',1,1,0),(29642,18781,129716,'Muszyna','Poland','PL','Muszyna (Poland)',1,1,0),(29643,18782,129717,'Mutare','Zimbabwe','ZW','Mutare (Zimbabwe)',1,1,0),(29644,0,129718,'Myrtos','Greece','GR','Myrtos (Greece)',1,1,0),(29645,18820,129719,'Myslenice','Poland','PL','Myslenice (Poland)',1,1,0),(29646,18839,129720,'Naantali','Finland','FI','Naantali (Finland)',1,1,0),(29647,0,129721,'Nadur','Malta','MT','Nadur (Malta)',1,1,0),(29648,0,129722,'Nages','France','FR','Nages (France)',1,1,0),(29649,18877,129724,'Nags Head','United States of America','US','Nags Head (United States of America)',1,1,0),(29650,18880,129725,'Naha','Japan','JP','Naha (Japan)',1,1,0),(29651,0,129727,'Nakenstorf','Germany','DE','Nakenstorf (Germany)',1,1,0),(29652,0,129728,'Nakhon Pathom','Thailand','TH','Nakhon Pathom (Thailand)',1,1,0),(29653,0,129729,'Nakhon Sawan','Thailand','TH','Nakhon Sawan (Thailand)',1,1,0),(29654,0,129730,'Nalbach','Germany','DE','Nalbach (Germany)',1,1,0),(29655,0,129731,'Nambiti Game Reserve','South Africa','ZA','Nambiti Game Reserve (South Africa)',1,1,0),(29656,18953,129733,'Nanning','China','CN','Nanning (China)',1,1,0),(29657,18968,129734,'Nantua','France','FR','Nantua (France)',1,1,0),(29658,18969,129735,'Nantucket','United States of America','US','Nantucket (United States of America)',1,1,0),(29659,19001,129736,'Narashino','Japan','JP','Narashino (Japan)',1,1,0),(29660,19031,129737,'Narvon','United States of America','US','Narvon (United States of America)',1,1,0),(29661,0,129738,'Naso','Italy','IT','Naso (Italy)',1,1,0),(29662,19039,129739,'Nassawadox','United States of America','US','Nassawadox (United States of America)',1,1,0),(29663,0,129740,'Natar','Indonesia','ID','Natar (Indonesia)',1,1,0),(29664,0,129741,'National Park Volcan Tenorio','Costa Rica','CR','National Park Volcan Tenorio (Costa Rica)',1,1,0),(29665,19074,129742,'Nauplia','Greece','GR','Nauplia (Greece)',1,1,0),(29666,0,129743,'Navalmoral de la Mata','Spain','ES','Navalmoral de la Mata (Spain)',1,1,0),(29667,0,129744,'Nea Fokea','Greece','GR','Nea Fokea (Greece)',1,1,0),(29668,0,129745,'Nea Potidea','Greece','GR','Nea Potidea (Greece)',1,1,0),(29669,0,129746,'Nea Skioni','Greece','GR','Nea Skioni (Greece)',1,1,0),(29670,0,129747,'Neant-sur-Yvel','France','FR','Neant-sur-Yvel (France)',1,1,0),(29671,0,129748,'Nebbiuno','Italy','IT','Nebbiuno (Italy)',1,1,0),(29672,0,129749,'Nebug','Russia','RU','Nebug (Russia)',1,1,0),(29673,0,129750,'Neckarzimmern','Germany','DE','Neckarzimmern (Germany)',1,1,0),(29674,0,129751,'Neckenmarkt','Austria','AT','Neckenmarkt (Austria)',1,1,0),(29675,0,129752,'Necujam','Croatia','HR','Necujam (Croatia)',1,1,0),(29676,0,129753,'Neetzow','Germany','DE','Neetzow (Germany)',1,1,0),(29677,0,129754,'Nefteyugansk','Russia','RU','Nefteyugansk (Russia)',1,1,0),(29678,0,129755,'Negast','Germany','DE','Negast (Germany)',1,1,0),(29679,0,129756,'Negenborn','Germany','DE','Negenborn (Germany)',1,1,0),(29680,19150,129757,'Negrar','Italy','IT','Negrar (Italy)',1,1,0),(29681,0,129758,'Neiafu','Tonga','TO','Neiafu (Tonga)',1,1,0),(29682,19164,129759,'Nelas','Portugal','PT','Nelas (Portugal)',1,1,0),(29683,0,129760,'Nellingen','Germany','DE','Nellingen (Germany)',1,1,0),(29684,0,129761,'Nemuro','Japan','JP','Nemuro (Japan)',1,1,0),(29685,19184,129762,'Nendaz','Switzerland','CH','Nendaz (Switzerland)',1,1,0),(29686,19199,129763,'Nerezine','Croatia','HR','Nerezine (Croatia)',1,1,0),(29687,19213,129764,'Netanya','Israel','IL','Netanya (Israel)',1,1,0),(29688,0,129765,'Nethy Bridge','United Kingdom','UK','Nethy Bridge (United Kingdom)',1,1,0),(29689,0,129766,'Neu Gaarz','Germany','DE','Neu Gaarz (Germany)',1,1,0),(29690,0,129767,'Neu Kaliss','Germany','DE','Neu Kaliss (Germany)',1,1,0),(29691,0,129768,'Neu-Anspach','Germany','DE','Neu-Anspach (Germany)',1,1,0),(29692,0,129769,'Neuendorf am See','Germany','DE','Neuendorf am See (Germany)',1,1,0),(29693,0,129770,'Neuenkirchen (Rugen)','Germany','DE','Neuenkirchen (Rugen) (Germany)',1,1,0),(29694,19231,129771,'Neufchatel-Hardelot','France','FR','Neufchatel-Hardelot (France)',1,1,0),(29695,0,129772,'Neuhaus (Oste)','Germany','DE','Neuhaus (Oste) (Germany)',1,1,0),(29696,0,129773,'Neuhaus am Rennweg','Germany','DE','Neuhaus am Rennweg (Germany)',1,1,0),(29697,19240,129774,'Neuilly-Plaisance','France','FR','Neuilly-Plaisance (France)',1,1,0),(29698,19244,129775,'Neukirchen','Germany','DE','Neukirchen (Germany)',1,1,0),(29699,18865,129776,'Nagambie','Australia','AU','Nagambie (Australia)',1,1,0),(29700,18888,129779,'Naigani Island','Fiji Islands','FJ','Naigani Island (Fiji Islands)',1,1,0),(29701,18895,129780,'Najac','France','FR','Najac (France)',1,1,0),(29702,0,129781,'Nakhon Si Thammarat','Thailand','TH','Nakhon Si Thammarat (Thailand)',1,1,0),(29703,0,129782,'Naklo','Slovenia','SI','Naklo (Slovenia)',1,1,0),(29704,0,129783,'Nakuru','Kenya','KE','Nakuru (Kenya)',1,1,0),(29705,18925,129784,'Nampont','France','FR','Nampont (France)',1,1,0),(29706,18926,129785,'Nampula','Mozambique','MZ','Nampula (Mozambique)',1,1,0),(29707,0,129786,'Nannup','Australia','AU','Nannup (Australia)',1,1,0),(29708,0,129787,'Nans Les Pins','France','FR','Nans Les Pins (France)',1,1,0),(29709,18966,129788,'Nantong','China','CN','Nantong (China)',1,1,0),(29710,18986,129789,'Naples','United States of America','US','Naples (United States of America)',1,1,0),(29711,0,129790,'Naples','United States of America','US','Naples (United States of America)',1,1,0),(29712,18993,129791,'Napoleon','United States of America','US','Napoleon (United States of America)',1,1,0),(29713,0,129792,'Naracoopa','Australia','AU','Naracoopa (Australia)',1,1,0),(29714,19002,129793,'Narathiwat','Thailand','TH','Narathiwat (Thailand)',1,1,0),(29715,19017,129794,'Narooma','Australia','AU','Narooma (Australia)',1,1,0),(29716,19019,129795,'Narrabri','Australia','AU','Narrabri (Australia)',1,1,0),(29717,19027,129796,'Naruto','Japan','JP','Naruto (Japan)',1,1,0),(29718,0,129797,'Nassau - Weinahr','Germany','DE','Nassau - Weinahr (Germany)',1,1,0),(29719,0,129798,'Nastatten','Germany','DE','Nastatten (Germany)',1,1,0),(29720,0,129799,'Natuna Islands','Indonesia','ID','Natuna Islands (Indonesia)',1,1,0),(29721,0,129800,'Naturno (Naturns)','Italy','IT','Naturno (Naturns) (Italy)',1,1,0),(29722,0,129801,'Nauen','Germany','DE','Nauen (Germany)',1,1,0),(29723,0,129802,'Navacepedilla de Corneja','Spain','ES','Navacepedilla de Corneja (Spain)',1,1,0),(29724,19079,129803,'Navalcarnero','Spain','ES','Navalcarnero (Spain)',1,1,0),(29725,19086,129804,'Navarrete','Spain','ES','Navarrete (Spain)',1,1,0),(29726,0,129805,'Naves','Spain','ES','Naves (Spain)',1,1,0),(29727,0,129806,'Nawapolazk','Belarus','BY','Nawapolazk (Belarus)',1,1,0),(29728,0,129807,'Nea Iraklia','Greece','GR','Nea Iraklia (Greece)',1,1,0),(29729,0,129808,'Nea Iraklitsa','Greece','GR','Nea Iraklitsa (Greece)',1,1,0),(29730,32086,129809,'Nea Styra','Greece','GR','Nea Styra (Greece)',1,1,0),(29731,19123,129810,'Neauphle-le-Chateau','France','FR','Neauphle-le-Chateau (France)',1,1,0),(29732,19124,129811,'Nebouzat','France','FR','Nebouzat (France)',1,1,0),(29733,0,129812,'Neckarsteinach','Germany','DE','Neckarsteinach (Germany)',1,1,0),(29734,0,129813,'Neda','Spain','ES','Neda (Spain)',1,1,0),(29735,0,129814,'Nederland','United States of America','US','Nederland (United States of America)',1,1,0),(29736,19136,129815,'Needles','United States of America','US','Needles (United States of America)',1,1,0),(29737,19140,129817,'Neepawa','Canada','CA','Neepawa (Canada)',1,1,0),(29738,0,129818,'Negara','Indonesia','ID','Negara (Indonesia)',1,1,0),(29739,0,129819,'Negreda','Portugal','PT','Negreda (Portugal)',1,1,0),(29740,19154,129820,'Neillsville','United States of America','US','Neillsville (United States of America)',1,1,0),(29741,19178,129821,'Nemesvita','Hungary','HU','Nemesvita (Hungary)',1,1,0),(29742,0,129822,'Nendaz-Saclentse','Switzerland','CH','Nendaz-Saclentse (Switzerland)',1,1,0),(29743,0,129823,'Nentershausen','Germany','DE','Nentershausen (Germany)',1,1,0),(29744,0,129824,'Neo Chorio','Greece','GR','Neo Chorio (Greece)',1,1,0),(29745,0,129825,'Neptune','United States of America','US','Neptune (United States of America)',1,1,0),(29746,19197,129826,'Neraida','Greece','GR','Neraida (Greece)',1,1,0),(29747,19210,129828,'Neskaupstadur','Iceland','IS','Neskaupstadur (Iceland)',1,1,0),(29748,19212,129829,'Nesselwang','Germany','DE','Nesselwang (Germany)',1,1,0),(29749,0,129830,'Nettersheim','Germany','DE','Nettersheim (Germany)',1,1,0),(29750,0,129831,'Neuburg an der Donau','Germany','DE','Neuburg an der Donau (Germany)',1,1,0),(29751,0,129832,'Neufmoutiers-en-Brie','France','FR','Neufmoutiers-en-Brie (France)',1,1,0),(29752,0,129833,'Neugattersleben','Germany','DE','Neugattersleben (Germany)',1,1,0),(29753,0,129834,'Neuharlingersiel','Germany','DE','Neuharlingersiel (Germany)',1,1,0),(29754,19233,129835,'Neuhaus am Inn','Germany','DE','Neuhaus am Inn (Germany)',1,1,0),(29755,0,129836,'Neuhaus am Klausenbach','Austria','AT','Neuhaus am Klausenbach (Austria)',1,1,0),(29756,19242,129837,'Neu-Isenburg','Germany','DE','Neu-Isenburg (Germany)',1,1,0),(29757,0,129838,'Neukirchen (Nordfriesland)','Germany','DE','Neukirchen (Nordfriesland) (Germany)',1,1,0),(29758,19245,129839,'Neukirchen-Vluyn','Germany','DE','Neukirchen-Vluyn (Germany)',1,1,0),(29759,0,129840,'Neumagen-Dhron','Germany','DE','Neumagen-Dhron (Germany)',1,1,0),(29760,0,129841,'Neunkirchen','Germany','DE','Neunkirchen (Germany)',1,1,0),(29761,0,129842,'Neunkirchen am Brand','Germany','DE','Neunkirchen am Brand (Germany)',1,1,0),(29762,0,129843,'Neurode','Poland','PL','Neurode (Poland)',1,1,0),(29763,0,129844,'Neuschonau','Germany','DE','Neuschonau (Germany)',1,1,0),(29764,0,129845,'Neusitz','Germany','DE','Neusitz (Germany)',1,1,0),(29765,0,129846,'Neustadt am Rennsteig','Germany','DE','Neustadt am Rennsteig (Germany)',1,1,0),(29766,0,129847,'Neustadt in Holstein','Germany','DE','Neustadt in Holstein (Germany)',1,1,0),(29767,0,129848,'Neustadtlein','Germany','DE','Neustadtlein (Germany)',1,1,0),(29768,0,129849,'Neuvy-Pailloux','France','FR','Neuvy-Pailloux (France)',1,1,0),(29769,0,129850,'Neuweiler','Germany','DE','Neuweiler (Germany)',1,1,0),(29770,0,129851,'Nevropoli','Greece','GR','Nevropoli (Greece)',1,1,0),(29771,0,129852,'New Abirem','Ghana','GH','New Abirem (Ghana)',1,1,0),(29772,32089,129853,'New Ashford','United States of America','US','New Ashford (United States of America)',1,1,0),(29773,32092,129854,'New Berlinville','United States of America','US','New Berlinville (United States of America)',1,1,0),(29774,32101,129855,'New Canaan','United States of America','US','New Canaan (United States of America)',1,1,0),(29775,32109,129856,'New Cumberland','United States of America','US','New Cumberland (United States of America)',1,1,0),(29776,0,129857,'New Gloucester','United States of America','US','New Gloucester (United States of America)',1,1,0),(29777,32122,129858,'New Hope','United States of America','US','New Hope (United States of America)',1,1,0),(29778,32126,129859,'New Kensington','United States of America','US','New Kensington (United States of America)',1,1,0),(29779,0,129860,'New Liskeard','Canada','CA','New Liskeard (Canada)',1,1,0),(29780,32140,129861,'New Paltz','United States of America','US','New Paltz (United States of America)',1,1,0),(29781,19292,129862,'New Ross','Ireland','IE','New Ross (Ireland)',1,1,0),(29782,0,129863,'Newbiggin-by-the-Sea','United Kingdom','UK','Newbiggin-by-the-Sea (United Kingdom)',1,1,0),(29783,0,129864,'Newcastle Emlyn','United Kingdom','UK','Newcastle Emlyn (United Kingdom)',1,1,0),(29784,0,129865,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(29785,0,129866,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(29786,0,129867,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(29787,0,129868,'Neyruz','Switzerland','CH','Neyruz (Switzerland)',1,1,0),(29788,19367,129869,'Ngamba Island','Uganda','UG','Ngamba Island (Uganda)',1,1,0),(29789,0,129870,'Nhulunbuy','Australia','AU','Nhulunbuy (Australia)',1,1,0),(29790,0,129871,'Nickenich','Germany','DE','Nickenich (Germany)',1,1,0),(29791,19399,129872,'Nicosia','Cyprus','CY','Nicosia (Cyprus)',1,1,0),(29792,0,129873,'Niederalteich','Germany','DE','Niederalteich (Germany)',1,1,0),(29793,0,129874,'Niedereschach','Germany','DE','Niedereschach (Germany)',1,1,0),(29794,0,129875,'Niederrasen','Italy','IT','Niederrasen (Italy)',1,1,0),(29795,0,129876,'Niedersfeld','Germany','DE','Niedersfeld (Germany)',1,1,0),(29796,0,129877,'Niedersonthofen','Germany','DE','Niedersonthofen (Germany)',1,1,0),(29797,0,129878,'Niederthai','Austria','AT','Niederthai (Austria)',1,1,0),(29798,0,129879,'Niederwolz','Austria','AT','Niederwolz (Austria)',1,1,0),(29799,0,129880,'Niewiesze','Poland','PL','Niewiesze (Poland)',1,1,0),(29800,19305,129881,'Newburgh','United States of America','US','Newburgh (United States of America)',1,1,0),(29801,0,129882,'Newburgh','United Kingdom','UK','Newburgh (United Kingdom)',1,1,0),(29802,19313,129883,'Newcastle','Australia','AU','Newcastle (Australia)',1,1,0),(29803,0,129884,'Newcastlewest','Ireland','IE','Newcastlewest (Ireland)',1,1,0),(29804,19340,129885,'Newmarket','Canada','CA','Newmarket (Canada)',1,1,0),(29805,0,129886,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(29806,0,129887,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(29807,0,129888,'Ngercheu (Carp Island)','Palau','PW','Ngercheu (Carp Island) (Palau)',1,1,0),(29808,19376,129889,'Ngongotaha','New Zealand','NZ','Ngongotaha (New Zealand)',1,1,0),(29809,0,129890,'Niagara on the Lake','Canada','CA','Niagara on the Lake (Canada)',1,1,0),(29810,0,129891,'Nidfurn','Switzerland','CH','Nidfurn (Switzerland)',1,1,0),(29811,0,129892,'Niederbergheim','Germany','DE','Niederbergheim (Germany)',1,1,0),(29812,0,129893,'Niedererbach','Germany','DE','Niedererbach (Germany)',1,1,0),(29813,0,129894,'Niederfinow','Germany','DE','Niederfinow (Germany)',1,1,0),(29814,19411,129895,'Niederkassel','Germany','DE','Niederkassel (Germany)',1,1,0),(29815,0,129896,'Niederschona','Germany','DE','Niederschona (Germany)',1,1,0),(29816,0,129897,'Niederwurschnitz','Germany','DE','Niederwurschnitz (Germany)',1,1,0),(29817,0,129898,'Nienburg (Weser)','Germany','DE','Nienburg (Weser) (Germany)',1,1,0),(29818,0,129899,'Nigel','South Africa','ZA','Nigel (South Africa)',1,1,0),(29819,0,129900,'Niksic','Montenegro','ME','Niksic (Montenegro)',1,1,0),(29820,19477,129901,'Ninh Binh','Vietnam','VN','Ninh Binh (Vietnam)',1,1,0),(29821,19478,129902,'Ninilchik','United States of America','US','Ninilchik (United States of America)',1,1,0),(29822,0,129903,'Nisdorf','Germany','DE','Nisdorf (Germany)',1,1,0),(29823,19488,129904,'Nishinomiya','Japan','JP','Nishinomiya (Japan)',1,1,0),(29824,19490,129905,'Nishiwaki','Japan','JP','Nishiwaki (Japan)',1,1,0),(29825,19495,129906,'Niteroi','Brazil','BR','Niteroi (Brazil)',1,1,0),(29826,0,129907,'Nitra','Slovakia','SK','Nitra (Slovakia)',1,1,0),(29827,19520,129908,'Noble Park','Australia','AU','Noble Park (Australia)',1,1,0),(29828,0,129909,'Nocera Umbra','Italy','IT','Nocera Umbra (Italy)',1,1,0),(29829,0,129910,'Nochia','Greece','GR','Nochia (Greece)',1,1,0),(29830,0,129911,'Nochling','Austria','AT','Nochling (Austria)',1,1,0),(29831,19532,129912,'Nogales','Mexico','MX','Nogales (Mexico)',1,1,0),(29832,19533,129913,'Nogara','Italy','IT','Nogara (Italy)',1,1,0),(29833,19535,129914,'Nogarole Rocca','Italy','IT','Nogarole Rocca (Italy)',1,1,0),(29834,0,129915,'Nogent-sur-Seine','France','FR','Nogent-sur-Seine (France)',1,1,0),(29835,0,129916,'Nolay','France','FR','Nolay (France)',1,1,0),(29836,0,129917,'Nonnweiler','Germany','DE','Nonnweiler (Germany)',1,1,0),(29837,19564,129918,'Noorbeek','Netherlands','NL','Noorbeek (Netherlands)',1,1,0),(29838,0,129919,'Noordoewer','Namibia','NA','Noordoewer (Namibia)',1,1,0),(29839,19571,129920,'Noosaville','Australia','AU','Noosaville (Australia)',1,1,0),(29840,19580,129921,'Nordborg','Denmark','DK','Nordborg (Denmark)',1,1,0),(29841,0,129922,'Nordhalben','Germany','DE','Nordhalben (Germany)',1,1,0),(29842,0,129923,'Nordhastedt','Germany','DE','Nordhastedt (Germany)',1,1,0),(29843,0,129924,'Nordkirchen','Germany','DE','Nordkirchen (Germany)',1,1,0),(29844,0,129925,'Nordrach','Germany','DE','Nordrach (Germany)',1,1,0),(29845,0,129926,'Nordstemmen','Germany','DE','Nordstemmen (Germany)',1,1,0),(29846,0,129927,'Nordwestisland','Iceland','IS','Nordwestisland (Iceland)',1,1,0),(29847,19600,129928,'Noresund','Norway','NO','Noresund (Norway)',1,1,0),(29848,19607,129929,'Norman','United States of America','US','Norman (United States of America)',1,1,0),(29849,19622,129930,'North Ari Atoll','Maldives','MV','North Ari Atoll (Maldives)',1,1,0),(29850,0,129931,'North Berwick','United Kingdom','UK','North Berwick (United Kingdom)',1,1,0),(29851,0,129932,'North Coast','Mauritius','MU','North Coast (Mauritius)',1,1,0),(29852,32213,129933,'North East','United States of America','US','North East (United States of America)',1,1,0),(29853,32240,129934,'North Kingstown','United States of America','US','North Kingstown (United States of America)',1,1,0),(29854,32264,129935,'North Plainfield','United States of America','US','North Plainfield (United States of America)',1,1,0),(29855,19639,129936,'Northborough','United States of America','US','Northborough (United States of America)',1,1,0),(29856,19663,129937,'Northgate','Australia','AU','Northgate (Australia)',1,1,0),(29857,0,129938,'Northleach','United Kingdom','UK','Northleach (United Kingdom)',1,1,0),(29858,0,129939,'Northwich','United Kingdom','UK','Northwich (United Kingdom)',1,1,0),(29859,0,129940,'Norton','United States of America','US','Norton (United States of America)',1,1,0),(29860,19703,129941,'Notting Hill','Australia','AU','Notting Hill (Australia)',1,1,0),(29861,0,129942,'Nouan-le-Fuzelier','France','FR','Nouan-le-Fuzelier (France)',1,1,0),(29862,0,129943,'Nouzerines','France','FR','Nouzerines (France)',1,1,0),(29863,0,129944,'Nova Bystrice','Czech Republic','CZ','Nova Bystrice (Czech Republic)',1,1,0),(29864,0,129945,'Nova Role','Czech Republic','CZ','Nova Role (Czech Republic)',1,1,0),(29865,19716,129946,'Nove Zamky','Slovakia','SK','Nove Zamky (Slovakia)',1,1,0),(29866,19718,129947,'Novello','Italy','IT','Novello (Italy)',1,1,0),(29867,0,129948,'Novi Beograd','Serbia','RS','Novi Beograd (Serbia)',1,1,0),(29868,19722,129949,'Novi Sad','Serbia','RS','Novi Sad (Serbia)',1,1,0),(29869,0,129950,'Novosibirsk','Russia','RU','Novosibirsk (Russia)',1,1,0),(29870,0,129951,'Nueva Vizcaya','Mexico','MX','Nueva Vizcaya (Mexico)',1,1,0),(29871,0,129952,'Nuevo Vallarta','Mexico','MX','Nuevo Vallarta (Mexico)',1,1,0),(29872,19762,129953,'Nuits-Saint-Georges','France','FR','Nuits-Saint-Georges (France)',1,1,0),(29873,19773,129954,'Numbrecht','Germany','DE','Numbrecht (Germany)',1,1,0),(29874,0,129955,'Nunomoral','Spain','ES','Nunomoral (Spain)',1,1,0),(29875,0,129956,'Nusajaya','Malaysia','MY','Nusajaya (Malaysia)',1,1,0),(29876,0,129957,'Nusttal','Germany','DE','Nusttal (Germany)',1,1,0),(29877,0,129958,'Nyika Nationalpark','Malawi','MW','Nyika Nationalpark (Malawi)',1,1,0),(29878,0,129959,'Oahu','United States of America','US','Oahu (United States of America)',1,1,0),(29879,32323,129960,'Oak Brook','United States of America','US','Oak Brook (United States of America)',1,1,0),(29880,0,129961,'Oak Grove','United States of America','US','Oak Grove (United States of America)',1,1,0),(29881,0,129962,'Oakbank','Australia','AU','Oakbank (Australia)',1,1,0),(29882,19831,129963,'Oakland','United States of America','US','Oakland (United States of America)',1,1,0),(29883,19833,129964,'Oakley','United States of America','US','Oakley (United States of America)',1,1,0),(29884,0,129965,'Oberahr','Germany','DE','Oberahr (Germany)',1,1,0),(29885,0,129966,'Oberasbach','Germany','DE','Oberasbach (Germany)',1,1,0),(29886,19849,129967,'Oberau','Austria','AT','Oberau (Austria)',1,1,0),(29887,0,129968,'Oberbrombach','Germany','DE','Oberbrombach (Germany)',1,1,0),(29888,0,129969,'Obergoms','Switzerland','CH','Obergoms (Switzerland)',1,1,0),(29889,0,129970,'Oberlech','Austria','AT','Oberlech (Austria)',1,1,0),(29890,0,129971,'Obernburg','Germany','DE','Obernburg (Germany)',1,1,0),(29891,0,129972,'Oberrohrdorf','Switzerland','CH','Oberrohrdorf (Switzerland)',1,1,0),(29892,0,129973,'Obersammelsdorf','Austria','AT','Obersammelsdorf (Austria)',1,1,0),(29893,0,129974,'Obersteinbach','France','FR','Obersteinbach (France)',1,1,0),(29894,19885,129975,'Oberthal','Germany','DE','Oberthal (Germany)',1,1,0),(29895,0,129976,'Obertilliach','Austria','AT','Obertilliach (Austria)',1,1,0),(29896,19887,129977,'Obertrubach','Germany','DE','Obertrubach (Germany)',1,1,0),(29897,0,129978,'Obertshausen','Germany','DE','Obertshausen (Germany)',1,1,0),(29898,19889,129979,'Oberursel','Germany','DE','Oberursel (Germany)',1,1,0),(29899,0,129980,'Oberwossen','Germany','DE','Oberwossen (Germany)',1,1,0),(29900,0,129981,'Ockenheim','Germany','DE','Ockenheim (Germany)',1,1,0),(29901,0,129982,'Odintsovo','Russia','RU','Odintsovo (Russia)',1,1,0),(29902,0,129983,'Odzun','Armenia','AM','Odzun (Armenia)',1,1,0),(29903,19938,129984,'Oegstgeest','Netherlands','NL','Oegstgeest (Netherlands)',1,1,0),(29904,19945,129985,'Oetztal','Austria','AT','Oetztal (Austria)',1,1,0),(29905,0,129986,'Offenbach am Main','Germany','DE','Offenbach am Main (Germany)',1,1,0),(29906,0,129987,'Ofterschwang','Germany','DE','Ofterschwang (Germany)',1,1,0),(29907,19981,129988,'Ojai','United States of America','US','Ojai (United States of America)',1,1,0),(29908,0,129989,'Ojochal','Costa Rica','CR','Ojochal (Costa Rica)',1,1,0),(29909,0,129990,'Newton Stewart','United Kingdom','UK','Newton Stewart (United Kingdom)',1,1,0),(29910,0,129991,'Ngala','South Africa','ZA','Ngala (South Africa)',1,1,0),(29911,0,129992,'Ngwe Saung','Myanmar','MM','Ngwe Saung (Myanmar)',1,1,0),(29912,19385,129993,'Niantic','United States of America','US','Niantic (United States of America)',1,1,0),(29913,0,129994,'Nidau','Switzerland','CH','Nidau (Switzerland)',1,1,0),(29914,0,129995,'Niebull','Germany','DE','Niebull (Germany)',1,1,0),(29915,19406,129996,'Niederau','Germany','DE','Niederau (Germany)',1,1,0),(29916,0,129997,'Niederfullbach','Germany','DE','Niederfullbach (Germany)',1,1,0),(29917,0,129998,'Niederkruchten','Germany','DE','Niederkruchten (Germany)',1,1,0),(29918,0,129999,'Niederzier','Germany','DE','Niederzier (Germany)',1,1,0),(29919,19421,130000,'Nieheim','Germany','DE','Nieheim (Germany)',1,1,0),(29920,19429,130001,'Nieuwegein','Netherlands','NL','Nieuwegein (Netherlands)',1,1,0),(29921,0,130002,'Nieuwe-Niedorp','Netherlands','NL','Nieuwe-Niedorp (Netherlands)',1,1,0),(29922,0,130003,'Nieuwvliet-Bad','Netherlands','NL','Nieuwvliet-Bad (Netherlands)',1,1,0),(29923,0,130004,'Nikoi Island','Indonesia','ID','Nikoi Island (Indonesia)',1,1,0),(29924,0,130005,'Nikolaewka','Ukraine','UA','Nikolaewka (Ukraine)',1,1,0),(29925,19484,130006,'Nipomo','United States of America','US','Nipomo (United States of America)',1,1,0),(29926,0,130007,'Nis','Serbia','RS','Nis (Serbia)',1,1,0),(29927,0,130008,'Nitrianske Rudno','Slovakia','SK','Nitrianske Rudno (Slovakia)',1,1,0),(29928,19497,130009,'Nittel','Germany','DE','Nittel (Germany)',1,1,0),(29929,19521,130010,'Noblesville','United States of America','US','Noblesville (United States of America)',1,1,0),(29930,0,130011,'Nocera Inferiore','Italy','IT','Nocera Inferiore (Italy)',1,1,0),(29931,0,130012,'Nomborn','Germany','DE','Nomborn (Germany)',1,1,0),(29932,19562,130013,'Nontron','France','FR','Nontron (France)',1,1,0),(29933,19568,130014,'Noordwijkerhout','Netherlands','NL','Noordwijkerhout (Netherlands)',1,1,0),(29934,19570,130015,'Noosa','Australia','AU','Noosa (Australia)',1,1,0),(29935,19587,130016,'Norderney','Germany','DE','Norderney (Germany)',1,1,0),(29936,19601,130017,'Norfolk','United States of America','US','Norfolk (United States of America)',1,1,0),(29937,0,130018,'Norg','Netherlands','NL','Norg (Netherlands)',1,1,0),(29938,32182,130019,'North Bay Village','United States of America','US','North Bay Village (United States of America)',1,1,0),(29939,32189,130020,'North Bonneville','United States of America','US','North Bonneville (United States of America)',1,1,0),(29940,0,130021,'North Coast','Kenya','KE','North Coast (Kenya)',1,1,0),(29941,0,130022,'North Reddington Beach','United States of America','US','North Reddington Beach (United States of America)',1,1,0),(29942,19633,130023,'North Side','Cayman Islands','KY','North Side (Cayman Islands)',1,1,0),(29943,0,130024,'Northam','United Kingdom','UK','Northam (United Kingdom)',1,1,0),(29944,19637,130025,'Northampton','United States of America','US','Northampton (United States of America)',1,1,0),(29945,19641,130026,'Northbrook','United States of America','US','Northbrook (United States of America)',1,1,0),(29946,0,130027,'Northern Tuli Game Reserve','Botswana','BW','Northern Tuli Game Reserve (Botswana)',1,1,0),(29947,0,130028,'Nosy Be','Madagascar','MG','Nosy Be (Madagascar)',1,1,0),(29948,19695,130029,'Noszvaj','Hungary','HU','Noszvaj (Hungary)',1,1,0),(29949,0,130030,'Noth','France','FR','Noth (France)',1,1,0),(29950,0,130031,'Notre-Dame-de-Gravenchon','France','FR','Notre-Dame-de-Gravenchon (France)',1,1,0),(29951,0,130032,'Notteroy','Norway','NO','Notteroy (Norway)',1,1,0),(29952,0,130033,'Nottingham','United Kingdom','UK','Nottingham (United Kingdom)',1,1,0),(29953,19706,130034,'Nouakchott','Mauritania','MR','Nouakchott (Mauritania)',1,1,0),(29954,0,130035,'Nova Vas','Croatia','HR','Nova Vas (Croatia)',1,1,0),(29955,0,130036,'Nove Hrady','Czech Republic','CZ','Nove Hrady (Czech Republic)',1,1,0),(29956,19717,130037,'Novegro','Italy','IT','Novegro (Italy)',1,1,0),(29957,0,130038,'Novi','United States of America','US','Novi (United States of America)',1,1,0),(29958,0,130039,'Novigrad (Zadar)','Croatia','HR','Novigrad (Zadar) (Croatia)',1,1,0),(29959,0,130040,'Novo Hamburgo','Brazil','BR','Novo Hamburgo (Brazil)',1,1,0),(29960,19736,130041,'Novy Smokovec','Slovakia','SK','Novy Smokovec (Slovakia)',1,1,0),(29961,19742,130042,'Noyant-de-Touraine','France','FR','Noyant-de-Touraine (France)',1,1,0),(29962,0,130043,'Noyers-sur-Cher','France','FR','Noyers-sur-Cher (France)',1,1,0),(29963,0,130044,'Nucet','Romania','RO','Nucet (Romania)',1,1,0),(29964,0,130045,'Nueva de Llanes','Spain','ES','Nueva de Llanes (Spain)',1,1,0),(29965,0,130046,'Nuevo Arenal','Costa Rica','CR','Nuevo Arenal (Costa Rica)',1,1,0),(29966,19771,130047,'Numana','Italy','IT','Numana (Italy)',1,1,0),(29967,0,130048,'Nungwi','Tanzania','TZ','Nungwi (Tanzania)',1,1,0),(29968,0,130049,'Nuqui','Colombia','CO','Nuqui (Colombia)',1,1,0),(29969,19785,130050,'Nurburg','Germany','DE','Nurburg (Germany)',1,1,0),(29970,19791,130051,'Nurtingen','Germany','DE','Nurtingen (Germany)',1,1,0),(29971,32320,130052,'Nus','Italy','IT','Nus (Italy)',1,1,0),(29972,0,130053,'Nu?dorf im Chiemgau','Germany','DE','Nu?dorf im Chiemgau (Germany)',1,1,0),(29973,0,130054,'Nutfield','United Kingdom','UK','Nutfield (United Kingdom)',1,1,0),(29974,0,130055,'O Corgo','Spain','ES','O Corgo (Spain)',1,1,0),(29975,19818,130056,'O Pino','Spain','ES','O Pino (Spain)',1,1,0),(29976,32327,130057,'Oak Harbor','United States of America','US','Oak Harbor (United States of America)',1,1,0),(29977,32332,130058,'Oak Park','United States of America','US','Oak Park (United States of America)',1,1,0),(29978,19828,130059,'Oakdale','United States of America','US','Oakdale (United States of America)',1,1,0),(29979,0,130060,'Oakdale','United States of America','US','Oakdale (United States of America)',1,1,0),(29980,0,130061,'Oakham','United Kingdom','UK','Oakham (United Kingdom)',1,1,0),(29981,19832,130062,'Oakleigh','Australia','AU','Oakleigh (Australia)',1,1,0),(29982,19843,130063,'Obama','Japan','JP','Obama (Japan)',1,1,0),(29983,0,130064,'Ober Kahlbude','Poland','PL','Ober Kahlbude (Poland)',1,1,0),(29984,0,130065,'Oberbernhards','Germany','DE','Oberbernhards (Germany)',1,1,0),(29985,0,130066,'Oberbronn','France','FR','Oberbronn (France)',1,1,0),(29986,19854,130067,'Oberentfelden','Switzerland','CH','Oberentfelden (Switzerland)',1,1,0),(29987,0,130068,'Oberheimbach','Germany','DE','Oberheimbach (Germany)',1,1,0),(29988,19862,130069,'Oberhof','Germany','DE','Oberhof (Germany)',1,1,0),(29989,0,130070,'Oberjoch','Germany','DE','Oberjoch (Germany)',1,1,0),(29990,19863,130071,'Oberkirch','Germany','DE','Oberkirch (Germany)',1,1,0),(29991,0,130072,'Oberland am Rennsteig','Germany','DE','Oberland am Rennsteig (Germany)',1,1,0),(29992,0,130073,'Obermieming','Austria','AT','Obermieming (Austria)',1,1,0),(29993,19868,130074,'Obernai','France','FR','Obernai (France)',1,1,0),(29994,0,130075,'Oberstadion','Germany','DE','Oberstadion (Germany)',1,1,0),(29995,19880,130076,'Oberstdorf','Germany','DE','Oberstdorf (Germany)',1,1,0),(29996,0,130077,'Oberstreu','Germany','DE','Oberstreu (Germany)',1,1,0),(29997,0,130078,'Oberviechtach','Germany','DE','Oberviechtach (Germany)',1,1,0),(29998,19894,130079,'Obetz','United States of America','US','Obetz (United States of America)',1,1,0),(29999,0,130080,'Obrnice','Czech Republic','CZ','Obrnice (Czech Republic)',1,1,0),(30000,0,130081,'Ocean Grove','United States of America','US','Ocean Grove (United States of America)',1,1,0),(30001,0,130082,'Ocean Isle Beach','United States of America','US','Ocean Isle Beach (United States of America)',1,1,0),(30002,0,130083,'Ocean Park','United States of America','US','Ocean Park (United States of America)',1,1,0),(30003,0,130084,'Oceanside','United States of America','US','Oceanside (United States of America)',1,1,0),(30004,19924,130085,'Odder','Denmark','DK','Odder (Denmark)',1,1,0),(30005,0,130086,'Odeceixe','Portugal','PT','Odeceixe (Portugal)',1,1,0),(30006,0,130087,'Oderwitz','Germany','DE','Oderwitz (Germany)',1,1,0),(30007,0,130088,'Odessa','United States of America','US','Odessa (United States of America)',1,1,0),(30008,19935,130089,'Odoorn','Netherlands','NL','Odoorn (Netherlands)',1,1,0),(30009,0,130090,'Oedelsheim','Germany','DE','Oedelsheim (Germany)',1,1,0),(30010,0,130091,'Oedheim','Germany','DE','Oedheim (Germany)',1,1,0),(30011,0,130092,'Oeiras','Portugal','PT','Oeiras (Portugal)',1,1,0),(30012,0,130093,'Oelde','Germany','DE','Oelde (Germany)',1,1,0),(30013,0,130094,'Oeselgem','Belgium','BE','Oeselgem (Belgium)',1,1,0),(30014,0,130095,'Oetzen','Germany','DE','Oetzen (Germany)',1,1,0),(30015,19951,130096,'Ofir','Portugal','PT','Ofir (Portugal)',1,1,0),(30016,19955,130097,'Ogden','United States of America','US','Ogden (United States of America)',1,1,0),(30017,19959,130098,'Oglesby','United States of America','US','Oglesby (United States of America)',1,1,0),(30018,19996,130099,'Okemah','United States of America','US','Okemah (United States of America)',1,1,0),(30019,19999,130100,'Okiep','South Africa','ZA','Okiep (South Africa)',1,1,0),(30020,18874,130101,'Nago','Japan','JP','Nago (Japan)',1,1,0),(30021,18894,130102,'Nairobi','Kenya','KE','Nairobi (Kenya)',1,1,0),(30022,0,130103,'Nakalay Bay','Thailand','TH','Nakalay Bay (Thailand)',1,1,0),(30023,0,130104,'Nakijin','Japan','JP','Nakijin (Japan)',1,1,0),(30024,0,130106,'Namaqua National Park','South Africa','ZA','Namaqua National Park (South Africa)',1,1,0),(30025,0,130107,'Namibia','Namibia','NA','Namibia (Namibia)',1,1,0),(30026,18939,130108,'Nanchang','China','CN','Nanchang (China)',1,1,0),(30027,18961,130109,'Nanterre','France','FR','Nanterre (France)',1,1,0),(30028,18967,130110,'Nantou','Taiwan','TW','Nantou (Taiwan)',1,1,0),(30029,18978,130111,'Naoussa','Greece','GR','Naoussa (Greece)',1,1,0),(30030,18984,130112,'Napier','New Zealand','NZ','Napier (New Zealand)',1,1,0),(30031,0,130113,'Naples','United States of America','US','Naples (United States of America)',1,1,0),(30032,18996,130114,'Nara','Japan','JP','Nara (Japan)',1,1,0),(30033,19007,130115,'Narbonne-Plage','France','FR','Narbonne-Plage (France)',1,1,0),(30034,0,130116,'Narpes','Finland','FI','Narpes (Finland)',1,1,0),(30035,19028,130117,'Narva','Estonia','EE','Narva (Estonia)',1,1,0),(30036,19035,130118,'Nashua','United States of America','US','Nashua (United States of America)',1,1,0),(30037,0,130119,'Nassau','Bahamas','BS','Nassau (Bahamas)',1,1,0),(30038,19040,130120,'Nassereith','Austria','AT','Nassereith (Austria)',1,1,0),(30039,19049,130121,'Natal','Brazil','BR','Natal (Brazil)',1,1,0),(30040,19056,130122,'Natchitoches','United States of America','US','Natchitoches (United States of America)',1,1,0),(30041,19059,130123,'Nathrop','United States of America','US','Nathrop (United States of America)',1,1,0),(30042,32076,130124,'National Harbor','United States of America','US','National Harbor (United States of America)',1,1,0),(30043,32077,130125,'National Park','New Zealand','NZ','National Park (New Zealand)',1,1,0),(30044,0,130126,'Nationalpark Tayrona','Colombia','CO','Nationalpark Tayrona (Colombia)',1,1,0),(30045,0,130127,'Natternbach','Austria','AT','Natternbach (Austria)',1,1,0),(30046,0,130128,'Natz','Italy','IT','Natz (Italy)',1,1,0),(30047,19072,130129,'Naunhof','Germany','DE','Naunhof (Germany)',1,1,0),(30048,0,130130,'Naurath (Eifel)','Germany','DE','Naurath (Eifel) (Germany)',1,1,0),(30049,0,130131,'Naurath (Wald)','Germany','DE','Naurath (Wald) (Germany)',1,1,0),(30050,0,130132,'Navas del Madrono','Spain','ES','Navas del Madrono (Spain)',1,1,0),(30051,32078,130133,'Nea Anchialos','Greece','GR','Nea Anchialos (Greece)',1,1,0),(30052,0,130134,'Neau','France','FR','Neau (France)',1,1,0),(30053,19127,130135,'Necochea','Argentina','AR','Necochea (Argentina)',1,1,0),(30054,0,130136,'Nedescina','Croatia','HR','Nedescina (Croatia)',1,1,0),(30055,0,130138,'Neinstedt','Germany','DE','Neinstedt (Germany)',1,1,0),(30056,19155,130139,'Neive','Italy','IT','Neive (Italy)',1,1,0),(30057,19162,130140,'Nekso','Denmark','DK','Nekso (Denmark)',1,1,0),(30058,0,130141,'Neman','Russia','RU','Neman (Russia)',1,1,0),(30059,0,130142,'Nemcicky u Hustopece','Czech Republic','CZ','Nemcicky u Hustopece (Czech Republic)',1,1,0),(30060,19186,130143,'Nennig','Germany','DE','Nennig (Germany)',1,1,0),(30061,19192,130144,'Nephi','United States of America','US','Nephi (United States of America)',1,1,0),(30062,19202,130145,'Neris-les-Bains','France','FR','Neris-les-Bains (France)',1,1,0),(30063,19203,130146,'Nerja','Spain','ES','Nerja (Spain)',1,1,0),(30064,0,130147,'Nes','Netherlands','NL','Nes (Netherlands)',1,1,0),(30065,0,130148,'Nes Amim','Israel','IL','Nes Amim (Israel)',1,1,0),(30066,0,130149,'Nether Kellet','United Kingdom','UK','Nether Kellet (United Kingdom)',1,1,0),(30067,0,130150,'Neuchatel','Switzerland','CH','Neuchatel (Switzerland)',1,1,0),(30068,0,130151,'Neudorfl','Austria','AT','Neudorfl (Austria)',1,1,0),(30069,0,130152,'Neuenrade','Germany','DE','Neuenrade (Germany)',1,1,0),(30070,0,130153,'Neuenstein','Germany','DE','Neuenstein (Germany)',1,1,0),(30071,19234,130154,'Neuhausen','Germany','DE','Neuhausen (Germany)',1,1,0),(30072,0,130155,'Neuillay-les-Bois','France','FR','Neuillay-les-Bois (France)',1,1,0),(30073,0,130156,'Neuille-le-Lierre','France','FR','Neuille-le-Lierre (France)',1,1,0),(30074,0,130157,'Neujellingsdorf','Germany','DE','Neujellingsdorf (Germany)',1,1,0),(30075,0,130158,'Neukirchen (Ostholstein)','Germany','DE','Neukirchen (Ostholstein) (Germany)',1,1,0),(30076,0,130159,'Neukirchen vorm Wald','Germany','DE','Neukirchen vorm Wald (Germany)',1,1,0),(30077,0,130160,'Neusorg','Germany','DE','Neusorg (Germany)',1,1,0),(30078,0,130161,'Neustift','Austria','AT','Neustift (Austria)',1,1,0),(30079,0,130162,'Neustift im Muhlkreis','Austria','AT','Neustift im Muhlkreis (Austria)',1,1,0),(30080,0,130163,'New Berlin','United States of America','US','New Berlin (United States of America)',1,1,0),(30081,0,130164,'New Castle','United States of America','US','New Castle (United States of America)',1,1,0),(30082,32128,130165,'New Lisbon','United States of America','US','New Lisbon (United States of America)',1,1,0),(30083,32134,130166,'New Milford','United States of America','US','New Milford (United States of America)',1,1,0),(30084,0,130167,'New Milford','United States of America','US','New Milford (United States of America)',1,1,0),(30085,32156,130168,'New Ulm','United States of America','US','New Ulm (United States of America)',1,1,0),(30086,0,130169,'New Westminster','Canada','CA','New Westminster (Canada)',1,1,0),(30087,0,130170,'Newark','United States of America','US','Newark (United States of America)',1,1,0),(30088,0,130171,'Newbury','United Kingdom','UK','Newbury (United Kingdom)',1,1,0),(30089,19325,130172,'Newell','United States of America','US','Newell (United States of America)',1,1,0),(30090,0,130173,'Newland','United Kingdom','UK','Newland (United Kingdom)',1,1,0),(30091,19337,130174,'Newman','Australia','AU','Newman (Australia)',1,1,0),(30092,0,130175,'Newmarket','United Kingdom','UK','Newmarket (United Kingdom)',1,1,0),(30093,0,130176,'Newmarket-on-Fergus','Ireland','IE','Newmarket-on-Fergus (Ireland)',1,1,0),(30094,0,130177,'Newport','United Kingdom','UK','Newport (United Kingdom)',1,1,0),(30095,0,130178,'Newport Pagnell','United Kingdom','UK','Newport Pagnell (United Kingdom)',1,1,0),(30096,0,130179,'Newton Abbot','United Kingdom','UK','Newton Abbot (United Kingdom)',1,1,0),(30097,0,130180,'Ngadisari','Indonesia','ID','Ngadisari (Indonesia)',1,1,0),(30098,0,130181,'Ngorongoro Conservation Area','Tanzania','TZ','Ngorongoro Conservation Area (Tanzania)',1,1,0),(30099,0,130182,'Nha Trang','Vietnam','VN','Nha Trang (Vietnam)',1,1,0),(30100,19388,130183,'Nibe','Denmark','DK','Nibe (Denmark)',1,1,0),(30101,19393,130184,'Nichelino','Italy','IT','Nichelino (Italy)',1,1,0),(30102,0,130185,'Nidda','Germany','DE','Nidda (Germany)',1,1,0),(30103,0,130186,'Nidri','Greece','GR','Nidri (Greece)',1,1,0),(30104,0,130187,'Niederelsungen','Germany','DE','Niederelsungen (Germany)',1,1,0),(30105,0,130188,'Niederndorf','Austria','AT','Niederndorf (Austria)',1,1,0),(30106,0,130189,'Niederried','Switzerland','CH','Niederried (Switzerland)',1,1,0),(30107,0,130190,'Niederschaeffolsheim','France','FR','Niederschaeffolsheim (France)',1,1,0),(30108,0,130191,'Niederwald','Switzerland','CH','Niederwald (Switzerland)',1,1,0),(30109,19422,130192,'Niemegk','Germany','DE','Niemegk (Germany)',1,1,0),(30110,0,130193,'Niestetal','Germany','DE','Niestetal (Germany)',1,1,0),(30111,19426,130194,'Nieuil','France','FR','Nieuil (France)',1,1,0),(30112,0,130195,'Nieuw-Milligen','Netherlands','NL','Nieuw-Milligen (Netherlands)',1,1,0),(30113,0,130196,'Nikoleika','Greece','GR','Nikoleika (Greece)',1,1,0),(30114,0,130197,'Nine Mile Falls','United States of America','US','Nine Mile Falls (United States of America)',1,1,0),(30115,19475,130198,'Ningde','China','CN','Ningde (China)',1,1,0),(30116,19513,130199,'Noain','Spain','ES','Noain (Spain)',1,1,0),(30117,19514,130200,'Noalla','Spain','ES','Noalla (Spain)',1,1,0),(30118,0,130201,'Nobeoka','Japan','JP','Nobeoka (Japan)',1,1,0),(30119,0,130202,'Nockberge National Park','Austria','AT','Nockberge National Park (Austria)',1,1,0),(30120,19534,130203,'Nogaro','France','FR','Nogaro (France)',1,1,0),(30121,0,130204,'Nohant En Gracay','France','FR','Nohant En Gracay (France)',1,1,0),(30122,0,130206,'Obersiggenthal','Switzerland','CH','Obersiggenthal (Switzerland)',1,1,0),(30123,19879,130207,'Oberstaufen','Germany','DE','Oberstaufen (Germany)',1,1,0),(30124,19881,130208,'Obersteigen','France','FR','Obersteigen (France)',1,1,0),(30125,0,130209,'Oberteuringen','Germany','DE','Oberteuringen (Germany)',1,1,0),(30126,0,130210,'Obertraubling','Germany','DE','Obertraubling (Germany)',1,1,0),(30127,0,130211,'Oberwart','Austria','AT','Oberwart (Austria)',1,1,0),(30128,0,130212,'Oberwil BL','Switzerland','CH','Oberwil BL (Switzerland)',1,1,0),(30129,0,130213,'Ocean Beach','Australia','AU','Ocean Beach (Australia)',1,1,0),(30130,0,130214,'Odeshog','Sweden','SE','Odeshog (Sweden)',1,1,0),(30131,0,130215,'Oederan','Germany','DE','Oederan (Germany)',1,1,0),(30132,0,130216,'Oelshausen','Germany','DE','Oelshausen (Germany)',1,1,0),(30133,0,130217,'Oerlenbach','Germany','DE','Oerlenbach (Germany)',1,1,0),(30134,19944,130218,'Oetz','Austria','AT','Oetz (Austria)',1,1,0),(30135,0,130219,'O\'Fallon','United States of America','US','O\'Fallon (United States of America)',1,1,0),(30136,0,130220,'Ohkay Owingeh','United States of America','US','Ohkay Owingeh (United States of America)',1,1,0),(30137,19968,130221,'Ohlstadt','Germany','DE','Ohlstadt (Germany)',1,1,0),(30138,0,130222,'Ohorn','Germany','DE','Ohorn (Germany)',1,1,0),(30139,19971,130223,'Oia','Greece','GR','Oia (Greece)',1,1,0),(30140,19974,130224,'Oiso','Japan','JP','Oiso (Japan)',1,1,0),(30141,0,130225,'Oix','Spain','ES','Oix (Spain)',1,1,0),(30142,19991,130226,'Okayama','Japan','JP','Okayama (Japan)',1,1,0),(30143,20009,130227,'Okoboji','United States of America','US','Okoboji (United States of America)',1,1,0),(30144,20029,130228,'Olching','Germany','DE','Olching (Germany)',1,1,0),(30145,32344,130229,'Old Greenwich','United States of America','US','Old Greenwich (United States of America)',1,1,0),(30146,32349,130230,'Old Orchard Beach','United States of America','US','Old Orchard Beach (United States of America)',1,1,0),(30147,32352,130231,'Old Town','United States of America','US','Old Town (United States of America)',1,1,0),(30148,20037,130232,'Olds','Canada','CA','Olds (Canada)',1,1,0),(30149,0,130233,'Oliana','Spain','ES','Oliana (Spain)',1,1,0),(30150,20055,130234,'Olinda','Australia','AU','Olinda (Australia)',1,1,0),(30151,20063,130235,'Oliver','Canada','CA','Oliver (Canada)',1,1,0),(30152,0,130236,'Oliveros','Argentina','AR','Oliveros (Argentina)',1,1,0),(30153,20066,130237,'Oliveto Citra','Italy','IT','Oliveto Citra (Italy)',1,1,0),(30154,0,130238,'Olm','Luxembourg','LU','Olm (Luxembourg)',1,1,0),(30155,0,130239,'Olmillos de Sasamon','Spain','ES','Olmillos de Sasamon (Spain)',1,1,0),(30156,20090,130240,'Olvega','Spain','ES','Olvega (Spain)',1,1,0),(30157,0,130241,'Olympic Valley','United States of America','US','Olympic Valley (United States of America)',1,1,0),(30158,0,130242,'Omagh','United Kingdom','UK','Omagh (United Kingdom)',1,1,0),(30159,0,130243,'Omiya','Japan','JP','Omiya (Japan)',1,1,0),(30160,0,130244,'Omsk','Russia','RU','Omsk (Russia)',1,1,0),(30161,20115,130245,'Onalaska','United States of America','US','Onalaska (United States of America)',1,1,0),(30162,20123,130246,'Ondara','Spain','ES','Ondara (Spain)',1,1,0),(30163,20152,130247,'Oosterbeek','Netherlands','NL','Oosterbeek (Netherlands)',1,1,0),(30164,0,130248,'Oppenheim','Germany','DE','Oppenheim (Germany)',1,1,0),(30165,20189,130249,'Orangeville','Canada','CA','Orangeville (Canada)',1,1,0),(30166,20193,130250,'Oranjewoud','Netherlands','NL','Oranjewoud (Netherlands)',1,1,0),(30167,0,130251,'Orbe','Switzerland','CH','Orbe (Switzerland)',1,1,0),(30168,20216,130253,'Orduna','Spain','ES','Orduna (Spain)',1,1,0),(30169,0,130254,'Orio al Serio','Italy','IT','Orio al Serio (Italy)',1,1,0),(30170,20254,130255,'Orleans','France','FR','Orleans (France)',1,1,0),(30171,0,130256,'Orleans','United States of America','US','Orleans (United States of America)',1,1,0),(30172,0,130257,'Ormoy (Essonne)','France','FR','Ormoy (Essonne) (France)',1,1,0),(30173,0,130258,'Ormskirk','United Kingdom','UK','Ormskirk (United Kingdom)',1,1,0),(30174,20267,130259,'Ornskoldsvik','Sweden','SE','Ornskoldsvik (Sweden)',1,1,0),(30175,20268,130260,'Orocue','Colombia','CO','Orocue (Colombia)',1,1,0),(30176,0,130261,'Oronoz-Mugaire','Spain','ES','Oronoz-Mugaire (Spain)',1,1,0),(30177,32371,130262,'Orr','United States of America','US','Orr (United States of America)',1,1,0),(30178,20283,130263,'Orscholz','Germany','DE','Orscholz (Germany)',1,1,0),(30179,0,130264,'Ortakent','Turkey','TR','Ortakent (Turkey)',1,1,0),(30180,32374,130265,'Orte','Italy','IT','Orte (Italy)',1,1,0),(30181,20289,130266,'Ortonville','United States of America','US','Ortonville (United States of America)',1,1,0),(30182,20293,130267,'Osage','United States of America','US','Osage (United States of America)',1,1,0),(30183,0,130268,'Osann-Monzel','Germany','DE','Osann-Monzel (Germany)',1,1,0),(30184,0,130269,'Osieki','Poland','PL','Osieki (Poland)',1,1,0),(30185,20309,130270,'Osimo','Italy','IT','Osimo (Italy)',1,1,0),(30186,20312,130271,'Oskarshamn','Sweden','SE','Oskarshamn (Sweden)',1,1,0),(30187,0,130272,'Osses','France','FR','Osses (France)',1,1,0),(30188,20342,130273,'Ossona','Italy','IT','Ossona (Italy)',1,1,0),(30189,0,130274,'Ostarski Stanovi','Croatia','HR','Ostarski Stanovi (Croatia)',1,1,0),(30190,20352,130275,'Osterode am Harz','Germany','DE','Osterode am Harz (Germany)',1,1,0),(30191,0,130276,'Osterspai','Germany','DE','Osterspai (Germany)',1,1,0),(30192,0,130277,'Osterwick','Germany','DE','Osterwick (Germany)',1,1,0),(30193,0,130278,'Ostkuste','Sri Lanka','LK','Ostkuste (Sri Lanka)',1,1,0),(30194,20361,130279,'Ostravice','Czech Republic','CZ','Ostravice (Czech Republic)',1,1,0),(30195,20363,130280,'Ostroda','Poland','PL','Ostroda (Poland)',1,1,0),(30196,0,130281,'Ostseebad Wustrow','Germany','DE','Ostseebad Wustrow (Germany)',1,1,0),(30197,20367,130282,'Ostuni','Italy','IT','Ostuni (Italy)',1,1,0),(30198,0,130283,'Otigheim','Germany','DE','Otigheim (Germany)',1,1,0),(30199,20391,130284,'Otricoli','Italy','IT','Otricoli (Italy)',1,1,0),(30200,20393,130285,'Otta','Norway','NO','Otta (Norway)',1,1,0),(30201,0,130286,'Otterburn','United Kingdom','UK','Otterburn (United Kingdom)',1,1,0),(30202,0,130287,'Otura','Spain','ES','Otura (Spain)',1,1,0),(30203,20426,130288,'Oudtshoorn','South Africa','ZA','Oudtshoorn (South Africa)',1,1,0),(30204,0,130289,'Ouffet','Belgium','BE','Ouffet (Belgium)',1,1,0),(30205,0,130290,'Ouled Berhil','Morocco','MA','Ouled Berhil (Morocco)',1,1,0),(30206,20437,130291,'Oullins','France','FR','Oullins (France)',1,1,0),(30207,20448,130292,'Ouro Preto','Brazil','BR','Ouro Preto (Brazil)',1,1,0),(30208,0,130293,'Oust','France','FR','Oust (France)',1,1,0),(30209,0,130294,'Outes','Spain','ES','Outes (Spain)',1,1,0),(30210,20452,130295,'Outjo','Namibia','NA','Outjo (Namibia)',1,1,0),(30211,0,130296,'Ouy Nhon','Vietnam','VN','Ouy Nhon (Vietnam)',1,1,0),(30212,20481,130297,'Ovronnaz','Switzerland','CH','Ovronnaz (Switzerland)',1,1,0),(30213,0,130298,'Owschlag','Germany','DE','Owschlag (Germany)',1,1,0),(30214,0,130299,'Oxbow','Lesotho','LS','Oxbow (Lesotho)',1,1,0),(30215,0,130300,'Oybin','Germany','DE','Oybin (Germany)',1,1,0),(30216,20510,130301,'Oystese','Norway','NO','Oystese (Norway)',1,1,0),(30217,20521,130302,'Paarl','South Africa','ZA','Paarl (South Africa)',1,1,0),(30218,0,130303,'Paceville','Malta','MT','Paceville (Malta)',1,1,0),(30219,20530,130304,'Pacific Harbour','Fiji Islands','FJ','Pacific Harbour (Fiji Islands)',1,1,0),(30220,20532,130305,'Pacifica','United States of America','US','Pacifica (United States of America)',1,1,0),(30221,20537,130306,'Paco de Arcos','Portugal','PT','Paco de Arcos (Portugal)',1,1,0),(30222,0,130307,'Pacung','Indonesia','ID','Pacung (Indonesia)',1,1,0),(30223,0,130308,'Padang Bai','Indonesia','ID','Padang Bai (Indonesia)',1,1,0),(30224,0,130309,'Padang Sidempuan','Indonesia','ID','Padang Sidempuan (Indonesia)',1,1,0),(30225,0,130310,'Padirac','France','FR','Padirac (France)',1,1,0),(30226,0,130311,'Padua','Italy','IT','Padua (Italy)',1,1,0),(30227,0,130312,'Paisley','United Kingdom','UK','Paisley (United Kingdom)',1,1,0),(30228,0,130313,'Pakarang Beach','Thailand','TH','Pakarang Beach (Thailand)',1,1,0),(30229,20598,130314,'Palafolls','Spain','ES','Palafolls (Spain)',1,1,0),(30230,20605,130315,'Palamos','Spain','ES','Palamos (Spain)',1,1,0),(30231,0,130317,'Palapye','Botswana','BW','Palapye (Botswana)',1,1,0),(30232,20611,130318,'Palas de Rei','Spain','ES','Palas de Rei (Spain)',1,1,0),(30233,0,130319,'Palasari','Indonesia','ID','Palasari (Indonesia)',1,1,0),(30234,20613,130320,'Palatka','United States of America','US','Palatka (United States of America)',1,1,0),(30235,18632,130321,'Mui Ne','Vietnam','VN','Mui Ne (Vietnam)',1,1,0),(30236,18655,130322,'Muldersdrift','South Africa','ZA','Muldersdrift (South Africa)',1,1,0),(30237,0,130323,'Multyfarnham','Ireland','IE','Multyfarnham (Ireland)',1,1,0),(30238,0,130324,'Muncheberg','Germany','DE','Muncheberg (Germany)',1,1,0),(30239,0,130325,'Mundal','Norway','NO','Mundal (Norway)',1,1,0),(30240,0,130326,'Munderkingen','Germany','DE','Munderkingen (Germany)',1,1,0),(30241,0,130327,'Munichreith-Laimbach','Austria','AT','Munichreith-Laimbach (Austria)',1,1,0),(30242,18700,130328,'Munster','United States of America','US','Munster (United States of America)',1,1,0),(30243,0,130329,'Munster (Ortze)','Germany','DE','Munster (Ortze) (Germany)',1,1,0),(30244,0,130330,'Muntic','Croatia','HR','Muntic (Croatia)',1,1,0),(30245,0,130331,'Mura-Montaione','Italy','IT','Mura-Montaione (Italy)',1,1,0),(30246,18722,130332,'Murdo','United States of America','US','Murdo (United States of America)',1,1,0),(30247,0,130333,'Murillo el Fruto','Spain','ES','Murillo el Fruto (Spain)',1,1,0),(30248,18735,130334,'Muro Alto','Brazil','BR','Muro Alto (Brazil)',1,1,0),(30249,0,130335,'Muros','Spain','ES','Muros (Spain)',1,1,0),(30250,18738,130336,'Muros de Nalon','Spain','ES','Muros de Nalon (Spain)',1,1,0),(30251,0,130337,'Murree','Pakistan','PK','Murree (Pakistan)',1,1,0),(30252,0,130338,'Murzsteg','Austria','AT','Murzsteg (Austria)',1,1,0),(30253,0,130339,'Musquodoboit Harbour','Canada','CA','Musquodoboit Harbour (Canada)',1,1,0),(30254,0,130340,'Musso','Italy','IT','Musso (Italy)',1,1,0),(30255,0,130342,'Mustique','St. Vincent & the Grenadines','VC','Mustique (St. Vincent & the Grenadines)',1,1,0),(30256,18796,130343,'Muzaffarabad','Pakistan','PK','Muzaffarabad (Pakistan)',1,1,0),(30257,0,130344,'Mwandi','Zambia','ZM','Mwandi (Zambia)',1,1,0),(30258,0,130345,'Myrtia','Greece','GR','Myrtia (Greece)',1,1,0),(30259,18816,130346,'Myrtle Beach','United States of America','US','Myrtle Beach (United States of America)',1,1,0),(30260,18829,130347,'Myvatn','Iceland','IS','Myvatn (Iceland)',1,1,0),(30261,18841,130348,'Naas','Ireland','IE','Naas (Ireland)',1,1,0),(30262,0,130349,'Nachtsheim','Germany','DE','Nachtsheim (Germany)',1,1,0),(30263,0,130350,'Nacka Strand','Sweden','SE','Nacka Strand (Sweden)',1,1,0),(30264,0,130351,'Nadrin','Belgium','BE','Nadrin (Belgium)',1,1,0),(30265,18861,130353,'Nafpaktos','Greece','GR','Nafpaktos (Greece)',1,1,0),(30266,0,130355,'Nai Harn Beach','Thailand','TH','Nai Harn Beach (Thailand)',1,1,0),(30267,0,130356,'Nairn','United Kingdom','UK','Nairn (United Kingdom)',1,1,0),(30268,0,130359,'Namib Rand','Namibia','NA','Namib Rand (Namibia)',1,1,0),(30269,0,130360,'Namyslow','Poland','PL','Namyslow (Poland)',1,1,0),(30270,0,130361,'Nandaihe','China','CN','Nandaihe (China)',1,1,0),(30271,18949,130362,'Nanjing','China','CN','Nanjing (China)',1,1,0),(30272,18972,130363,'Nanuya Lailai Island','Fiji Islands','FJ','Nanuya Lailai Island (Fiji Islands)',1,1,0),(30273,19021,130364,'Narragansett','United States of America','US','Narragansett (United States of America)',1,1,0),(30274,19023,130365,'Narre Warren','Australia','AU','Narre Warren (Australia)',1,1,0),(30275,19025,130366,'Narsarsuaq','Greenland','GL','Narsarsuaq (Greenland)',1,1,0),(30276,0,130367,'Narzole','Italy','IT','Narzole (Italy)',1,1,0),(30277,0,130368,'Nashville','United States of America','US','Nashville (United States of America)',1,1,0),(30278,0,130369,'Nassau (Lahn)','Germany','DE','Nassau (Lahn) (Germany)',1,1,0),(30279,0,130370,'Natien Beach','Thailand','TH','Natien Beach (Thailand)',1,1,0),(30280,0,130371,'Natitingou','Benin','BJ','Natitingou (Benin)',1,1,0),(30281,19062,130372,'Natural Bridge','United States of America','US','Natural Bridge (United States of America)',1,1,0),(30282,0,130373,'Naukluft Park','Namibia','NA','Naukluft Park (Namibia)',1,1,0),(30283,0,130374,'Naussac (Lozere)','France','FR','Naussac (Lozere) (France)',1,1,0),(30284,0,130375,'Nava','Spain','ES','Nava (Spain)',1,1,0),(30285,0,130376,'Navara','Spain','ES','Navara (Spain)',1,1,0),(30286,19083,130377,'Navarre','United States of America','US','Navarre (United States of America)',1,1,0),(30287,19089,130378,'Navasota','United States of America','US','Navasota (United States of America)',1,1,0),(30288,0,130379,'Naxos City','Greece','GR','Naxos City (Greece)',1,1,0),(30289,0,130380,'Nazaret','Spain','ES','Nazaret (Spain)',1,1,0),(30290,0,130381,'Nea Vrasna','Greece','GR','Nea Vrasna (Greece)',1,1,0),(30291,0,130382,'Nebra (Unstrut)','Germany','DE','Nebra (Unstrut) (Germany)',1,1,0),(30292,19125,130383,'Nebraska City','United States of America','US','Nebraska City (United States of America)',1,1,0),(30293,0,130384,'Needhams Point','Barbados','BB','Needhams Point (Barbados)',1,1,0),(30294,0,130385,'Negra','France','FR','Negra (France)',1,1,0),(30295,0,130386,'Negros','Philippines','PH','Negros (Philippines)',1,1,0),(30296,0,130387,'Nehren','Germany','DE','Nehren (Germany)',1,1,0),(30297,0,130388,'Neiva','Colombia','CO','Neiva (Colombia)',1,1,0),(30298,0,130389,'Nelly Bay','Australia','AU','Nelly Bay (Australia)',1,1,0),(30299,19167,130390,'Nellysford','United States of America','US','Nellysford (United States of America)',1,1,0),(30300,19173,130391,'Nelspruit','South Africa','ZA','Nelspruit (South Africa)',1,1,0),(30301,0,130392,'Neo Chorio','Cyprus','CY','Neo Chorio (Cyprus)',1,1,0),(30302,19189,130393,'Neosho','United States of America','US','Neosho (United States of America)',1,1,0),(30303,0,130394,'Neraidochori','Greece','GR','Neraidochori (Greece)',1,1,0),(30304,0,130395,'Neresheim','Germany','DE','Neresheim (Germany)',1,1,0),(30305,19204,130396,'Nerola','Italy','IT','Nerola (Italy)',1,1,0),(30306,0,130397,'Neroth','Germany','DE','Neroth (Germany)',1,1,0),(30307,0,130398,'Nesse','Germany','DE','Nesse (Germany)',1,1,0),(30308,0,130399,'Nessmersiel','Germany','DE','Nessmersiel (Germany)',1,1,0),(30309,0,130400,'Nesso','Italy','IT','Nesso (Italy)',1,1,0),(30310,0,130401,'Neuberg','Germany','DE','Neuberg (Germany)',1,1,0),(30311,0,130402,'Neubukow','Germany','DE','Neubukow (Germany)',1,1,0),(30312,19230,130403,'Neufchateau','Belgium','BE','Neufchateau (Belgium)',1,1,0),(30313,0,130404,'Neugersdorf','Germany','DE','Neugersdorf (Germany)',1,1,0),(30314,0,130405,'Neuhofen bei Ried','Austria','AT','Neuhofen bei Ried (Austria)',1,1,0),(30315,0,130406,'Neulengbach','Austria','AT','Neulengbach (Austria)',1,1,0),(30316,0,130407,'Neumarkt','Austria','AT','Neumarkt (Austria)',1,1,0),(30317,0,130408,'Neumarkt St. Veit','Germany','DE','Neumarkt St. Veit (Germany)',1,1,0),(30318,19250,130409,'Neumunster','Germany','DE','Neumunster (Germany)',1,1,0),(30319,19251,130410,'Neunburg vorm Wald','Germany','DE','Neunburg vorm Wald (Germany)',1,1,0),(30320,0,130411,'Neunkirchen-Seelscheid','Germany','DE','Neunkirchen-Seelscheid (Germany)',1,1,0),(30321,19261,130412,'Neuss','Germany','DE','Neuss (Germany)',1,1,0),(30322,0,130413,'Neustadt (Dosse)','Germany','DE','Neustadt (Dosse) (Germany)',1,1,0),(30323,0,130414,'Neustadt am Rubenberge','Germany','DE','Neustadt am Rubenberge (Germany)',1,1,0),(30324,0,130415,'Neustadt an der Warthe','Poland','PL','Neustadt an der Warthe (Poland)',1,1,0),(30325,19264,130416,'Neustrelitz','Germany','DE','Neustrelitz (Germany)',1,1,0),(30326,19272,130417,'Neuwied','Germany','DE','Neuwied (Germany)',1,1,0),(30327,0,130418,'Neuwiese','Germany','DE','Neuwiese (Germany)',1,1,0),(30328,19281,130419,'Nevis','St. Kitts and Nevis','KN','Nevis (St. Kitts and Nevis)',1,1,0),(30329,32100,130420,'New Buffalo','United States of America','US','New Buffalo (United States of America)',1,1,0),(30330,32103,130421,'New Carrollton','United States of America','US','New Carrollton (United States of America)',1,1,0),(30331,32107,130422,'New Columbia','United States of America','US','New Columbia (United States of America)',1,1,0),(30332,32112,130423,'New Freedom','United States of America','US','New Freedom (United States of America)',1,1,0),(30333,0,130424,'New Hampton','United States of America','US','New Hampton (United States of America)',1,1,0),(30334,32121,130425,'New Holland','United States of America','US','New Holland (United States of America)',1,1,0),(30335,0,130426,'New London','United States of America','US','New London (United States of America)',1,1,0),(30336,32158,130427,'New Windsor','United States of America','US','New Windsor (United States of America)',1,1,0),(30337,0,130428,'Newark','United States of America','US','Newark (United States of America)',1,1,0),(30338,19298,130429,'Newaygo','United States of America','US','Newaygo (United States of America)',1,1,0),(30339,19308,130430,'Newbury','United States of America','US','Newbury (United States of America)',1,1,0),(30340,0,130431,'Neumarkt in der Oberpfalz','Germany','DE','Neumarkt in der Oberpfalz (Germany)',1,1,0),(30341,0,130432,'Neuried (Baden)','Germany','DE','Neuried (Baden) (Germany)',1,1,0),(30342,0,130433,'Neusalza-Spremberg','Germany','DE','Neusalza-Spremberg (Germany)',1,1,0),(30343,0,130434,'Neu?en','Germany','DE','Neu?en (Germany)',1,1,0),(30344,0,130435,'Neustadt an der Aisch','Germany','DE','Neustadt an der Aisch (Germany)',1,1,0),(30345,0,130436,'Neustadt bei Coburg','Germany','DE','Neustadt bei Coburg (Germany)',1,1,0),(30346,19267,130437,'Neuvic','France','FR','Neuvic (France)',1,1,0),(30347,0,130438,'Nevada','United States of America','US','Nevada (United States of America)',1,1,0),(30348,0,130439,'Neve Ilan','Israel','IL','Neve Ilan (Israel)',1,1,0),(30349,19279,130440,'Neviano','Italy','IT','Neviano (Italy)',1,1,0),(30350,0,130441,'New Albany','United States of America','US','New Albany (United States of America)',1,1,0),(30351,32108,130442,'New Concord','United States of America','US','New Concord (United States of America)',1,1,0),(30352,32117,130444,'New Harmony','United States of America','US','New Harmony (United States of America)',1,1,0),(30353,32119,130445,'New Haven','United States of America','US','New Haven (United States of America)',1,1,0),(30354,0,130446,'New Haven','United States of America','US','New Haven (United States of America)',1,1,0),(30355,0,130447,'New Haven','United States of America','US','New Haven (United States of America)',1,1,0),(30356,0,130448,'New Hazelton','Canada','CA','New Hazelton (Canada)',1,1,0),(30357,0,130449,'New Prague','United States of America','US','New Prague (United States of America)',1,1,0),(30358,32146,130450,'New Providence','United States of America','US','New Providence (United States of America)',1,1,0),(30359,0,130451,'New Windsor','United States of America','US','New Windsor (United States of America)',1,1,0),(30360,32159,130452,'New York','United States of America','US','New York (United States of America)',1,1,0),(30361,19300,130453,'Newberg','United States of America','US','Newberg (United States of America)',1,1,0),(30362,19301,130454,'Newberry','United States of America','US','Newberry (United States of America)',1,1,0),(30363,0,130455,'Newby Bridge','United Kingdom','UK','Newby Bridge (United Kingdom)',1,1,0),(30364,19315,130456,'Newcastle','South Africa','ZA','Newcastle (South Africa)',1,1,0),(30365,0,130457,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(30366,0,130458,'Newport Coast','United States of America','US','Newport Coast (United States of America)',1,1,0),(30367,0,130459,'Newport',NULL,NULL,'Newport ()',1,1,0),(30368,0,130460,'Newquay','United Kingdom','UK','Newquay (United Kingdom)',1,1,0),(30369,19351,130461,'Newry','United States of America','US','Newry (United States of America)',1,1,0),(30370,0,130462,'Newton Solney','United Kingdom','UK','Newton Solney (United Kingdom)',1,1,0),(30371,19359,130463,'Newtown','United States of America','US','Newtown (United States of America)',1,1,0),(30372,0,130464,'Nice','United States of America','US','Nice (United States of America)',1,1,0),(30373,0,130465,'Niederaula','Germany','DE','Niederaula (Germany)',1,1,0),(30374,0,130466,'Niederdorf','Italy','IT','Niederdorf (Italy)',1,1,0),(30375,0,130467,'Niederehe','Germany','DE','Niederehe (Germany)',1,1,0),(30376,0,130468,'Niedergottsau','Germany','DE','Niedergottsau (Germany)',1,1,0),(30377,19413,130469,'Niedernhausen','Germany','DE','Niedernhausen (Germany)',1,1,0),(30378,19416,130470,'Niederstotzingen','Germany','DE','Niederstotzingen (Germany)',1,1,0),(30379,0,130471,'Nienburg (Saale)','Germany','DE','Nienburg (Saale) (Germany)',1,1,0),(30380,19424,130472,'Niendorf','Germany','DE','Niendorf (Germany)',1,1,0),(30381,0,130473,'Nienstadt','Germany','DE','Nienstadt (Germany)',1,1,0),(30382,19427,130474,'Nieul','France','FR','Nieul (France)',1,1,0),(30383,0,130475,'Nievole','Italy','IT','Nievole (Italy)',1,1,0),(30384,19441,130476,'Nigde','Turkey','TR','Nigde (Turkey)',1,1,0),(30385,0,130477,'Nigoi','Spain','ES','Nigoi (Spain)',1,1,0),(30386,19445,130478,'Niigata','Japan','JP','Niigata (Japan)',1,1,0),(30387,19449,130479,'Nijmegen','Netherlands','NL','Nijmegen (Netherlands)',1,1,0),(30388,0,130480,'Nijverdal','Netherlands','NL','Nijverdal (Netherlands)',1,1,0),(30389,0,130481,'Nilaveli','Sri Lanka','LK','Nilaveli (Sri Lanka)',1,1,0),(30390,0,130482,'Niles','United States of America','US','Niles (United States of America)',1,1,0),(30391,0,130483,'Nindorf am Walde','Germany','DE','Nindorf am Walde (Germany)',1,1,0),(30392,0,130484,'Ninove','Belgium','BE','Ninove (Belgium)',1,1,0),(30393,0,130485,'Nischnewartowsk','Russia','RU','Nischnewartowsk (Russia)',1,1,0),(30394,0,130486,'Nisportino','Italy','IT','Nisportino (Italy)',1,1,0),(30395,0,130487,'Nissan les Enserune','France','FR','Nissan les Enserune (France)',1,1,0),(30396,0,130488,'Nistertal','Germany','DE','Nistertal (Germany)',1,1,0),(30397,0,130489,'Niue Island','Niue','NU','Niue Island (Niue)',1,1,0),(30398,0,130490,'Nizhniy Novgorod','Russia','RU','Nizhniy Novgorod (Russia)',1,1,0),(30399,19507,130491,'Nizwa','Oman','OM','Nizwa (Oman)',1,1,0),(30400,0,130492,'Nkhotakota','Malawi','MW','Nkhotakota (Malawi)',1,1,0),(30401,19529,130493,'Noeux-les-Mines','France','FR','Noeux-les-Mines (France)',1,1,0),(30402,19538,130494,'Nogent-le-Rotrou','France','FR','Nogent-le-Rotrou (France)',1,1,0),(30403,0,130495,'Noicattaro','Italy','IT','Noicattaro (Italy)',1,1,0),(30404,19551,130496,'Nokia','Finland','FI','Nokia (Finland)',1,1,0),(30405,19557,130497,'Nong Khai','Thailand','TH','Nong Khai (Thailand)',1,1,0),(30406,19566,130498,'Noordhoek','South Africa','ZA','Noordhoek (South Africa)',1,1,0),(30407,19567,130499,'Noordwijk','Netherlands','NL','Noordwijk (Netherlands)',1,1,0),(30408,0,130500,'Noordwijk aan Zee','Netherlands','NL','Noordwijk aan Zee (Netherlands)',1,1,0),(30409,0,130501,'Nord Huvadhu Atoll','Maldives','MV','Nord Huvadhu Atoll (Maldives)',1,1,0),(30410,19582,130502,'Norddeich','Germany','DE','Norddeich (Germany)',1,1,0),(30411,19585,130503,'Norden','Germany','DE','Norden (Germany)',1,1,0),(30412,19586,130504,'Nordenham','Germany','DE','Nordenham (Germany)',1,1,0),(30413,0,130505,'Nordhummling','Germany','DE','Nordhummling (Germany)',1,1,0),(30414,0,130506,'Norfolk','United States of America','US','Norfolk (United States of America)',1,1,0),(30415,0,130507,'Norfolk','United States of America','US','Norfolk (United States of America)',1,1,0),(30416,0,130508,'Norfolk Island','Australia','AU','Norfolk Island (Australia)',1,1,0),(30417,19611,130509,'Normanville','Australia','AU','Normanville (Australia)',1,1,0),(30418,19618,130510,'Norseman','Australia','AU','Norseman (Australia)',1,1,0),(30419,0,130511,'Norsjo','Sweden','SE','Norsjo (Sweden)',1,1,0),(30420,0,130512,'Nortallje','Sweden','SE','Nortallje (Sweden)',1,1,0),(30421,19620,130513,'Norten-Hardenberg','Germany','DE','Norten-Hardenberg (Germany)',1,1,0),(30422,19623,130514,'North Battleford','Canada','CA','North Battleford (Canada)',1,1,0),(30423,32185,130515,'North Bend','United States of America','US','North Bend (United States of America)',1,1,0),(30424,0,130516,'North Caicos','Turks & Caicos Islands',NULL,'North Caicos (Turks & Caicos Islands)',1,1,0),(30425,32195,130517,'North Canton','United States of America','US','North Canton (United States of America)',1,1,0),(30426,32198,130518,'North Charleston','United States of America','US','North Charleston (United States of America)',1,1,0),(30427,0,130519,'North Hatley','Canada','CA','North Hatley (Canada)',1,1,0),(30428,32227,130520,'North Haven','United States of America','US','North Haven (United States of America)',1,1,0),(30429,32250,130521,'North Little Rock','United States of America','US','North Little Rock (United States of America)',1,1,0),(30430,32282,130522,'North Salt Lake','United States of America','US','North Salt Lake (United States of America)',1,1,0),(30431,0,130523,'North Tamerton','United Kingdom','UK','North Tamerton (United Kingdom)',1,1,0),(30432,32302,130524,'North Vernon','United States of America','US','North Vernon (United States of America)',1,1,0),(30433,0,130525,'Northallerton','United Kingdom','UK','Northallerton (United Kingdom)',1,1,0),(30434,0,130526,'Northampton','United Kingdom','UK','Northampton (United Kingdom)',1,1,0),(30435,19672,130527,'Northport','United States of America','US','Northport (United States of America)',1,1,0),(30436,19675,130528,'Northville','United States of America','US','Northville (United States of America)',1,1,0),(30437,0,130529,'Northwood','United States of America','US','Northwood (United States of America)',1,1,0),(30438,0,130530,'Norwalk','United States of America','US','Norwalk (United States of America)',1,1,0),(30439,0,130531,'Norwich','United Kingdom','UK','Norwich (United Kingdom)',1,1,0),(30440,19689,130532,'Norwich','United States of America','US','Norwich (United States of America)',1,1,0),(30441,0,130533,'Norwood','United States of America','US','Norwood (United States of America)',1,1,0),(30442,0,130534,'Nottingham Road','South Africa','ZA','Nottingham Road (South Africa)',1,1,0),(30443,0,130535,'Nottuln','Germany','DE','Nottuln (Germany)',1,1,0),(30444,19708,130536,'Nova Gorica','Slovenia','SI','Nova Gorica (Slovenia)',1,1,0),(30445,19713,130537,'Novato','United States of America','US','Novato (United States of America)',1,1,0),(30446,0,130538,'Nowecin','Poland','PL','Nowecin (Poland)',1,1,0),(30447,19448,130539,'Nijkerk','Netherlands','NL','Nijkerk (Netherlands)',1,1,0),(30448,19453,130540,'Nikko','Japan','JP','Nikko (Japan)',1,1,0),(30449,19455,130541,'Niklasdorf','Austria','AT','Niklasdorf (Austria)',1,1,0),(30450,19501,130542,'Nivelles','Belgium','BE','Nivelles (Belgium)',1,1,0),(30451,0,130543,'Nizza (Nice)','France','FR','Nizza (Nice) (France)',1,1,0),(30452,19525,130544,'Noci','Italy','IT','Noci (Italy)',1,1,0),(30453,19531,130545,'Nogales','United States of America','US','Nogales (United States of America)',1,1,0),(30454,19539,130546,'Nogent-sur-Marne','France','FR','Nogent-sur-Marne (France)',1,1,0),(30455,19542,130547,'Nohfelden','Germany','DE','Nohfelden (Germany)',1,1,0),(30456,0,130548,'Nooitgedacht','Netherlands','NL','Nooitgedacht (Netherlands)',1,1,0),(30457,0,130549,'Noordoostpolder','Netherlands','NL','Noordoostpolder (Netherlands)',1,1,0),(30458,0,130550,'Norberg','Sweden','SE','Norberg (Sweden)',1,1,0),(30459,0,130551,'Nordanstig','Sweden','SE','Nordanstig (Sweden)',1,1,0),(30460,19591,130552,'Nordhausen','Germany','DE','Nordhausen (Germany)',1,1,0),(30461,0,130553,'Nordheimsund','Norway','NO','Nordheimsund (Norway)',1,1,0),(30462,19599,130554,'Norena','Spain','ES','Norena (Spain)',1,1,0),(30463,0,130555,'Normanton','United Kingdom','UK','Normanton (United Kingdom)',1,1,0),(30464,0,130556,'North Bay','Canada','CA','North Bay (Canada)',1,1,0),(30465,32183,130557,'North Beach','Australia','AU','North Beach (Australia)',1,1,0),(30466,0,130558,'North Bethesda','United States of America','US','North Bethesda (United States of America)',1,1,0),(30467,32192,130559,'North Branch','United States of America','US','North Branch (United States of America)',1,1,0),(30468,32232,130560,'North Hollywood','United States of America','US','North Hollywood (United States of America)',1,1,0),(30469,0,130561,'North Island','Seychelles','SC','North Island (Seychelles)',1,1,0),(30470,0,130562,'North Male Atoll','Maldives','MV','North Male Atoll (Maldives)',1,1,0),(30471,32265,130563,'North Platte','United States of America','US','North Platte (United States of America)',1,1,0),(30472,32277,130564,'North Ridgeville','United States of America','US','North Ridgeville (United States of America)',1,1,0),(30473,32280,130565,'North Ryde','Australia','AU','North Ryde (Australia)',1,1,0),(30474,32283,130566,'North Scituate','United States of America','US','North Scituate (United States of America)',1,1,0),(30475,32303,130567,'North Wales','United States of America','US','North Wales (United States of America)',1,1,0),(30476,0,130568,'North Walsham','United Kingdom','UK','North Walsham (United Kingdom)',1,1,0),(30477,19648,130569,'Northeim','Germany','DE','Northeim (Germany)',1,1,0),(30478,19682,130570,'Northwood','United States of America','US','Northwood (United States of America)',1,1,0),(30479,0,130571,'Norton','United States of America','US','Norton (United States of America)',1,1,0),(30480,0,130572,'Nort-sur-Erdre','France','FR','Nort-sur-Erdre (France)',1,1,0),(30481,19691,130573,'Nosara','Costa Rica','CR','Nosara (Costa Rica)',1,1,0),(30482,19698,130574,'Notodden','Norway','NO','Notodden (Norway)',1,1,0),(30483,19700,130575,'Notre-Dame-de-Bellecombe','France','FR','Notre-Dame-de-Bellecombe (France)',1,1,0),(30484,0,130576,'Nova Prata','Brazil','BR','Nova Prata (Brazil)',1,1,0),(30485,0,130577,'Nove','Italy','IT','Nove (Italy)',1,1,0),(30486,0,130578,'Nove Straseci','Czech Republic','CZ','Nove Straseci (Czech Republic)',1,1,0),(30487,0,130579,'Novi Grad','Bosnia and Herzegowina','BA','Novi Grad (Bosnia and Herzegowina)',1,1,0),(30488,0,130580,'Nowogrodziec','Poland','PL','Nowogrodziec (Poland)',1,1,0),(30489,0,130581,'Nowy Targ','Poland','PL','Nowy Targ (Poland)',1,1,0),(30490,0,130582,'Nowy Tomysl','Poland','PL','Nowy Tomysl (Poland)',1,1,0),(30491,0,130583,'Nsukka','Nigeria','NG','Nsukka (Nigeria)',1,1,0),(30492,19764,130584,'Nuku Hiva','French Polynesia','PF','Nuku Hiva (French Polynesia)',1,1,0),(30493,19784,130585,'Nuoro','Italy','IT','Nuoro (Italy)',1,1,0),(30494,0,130586,'Nustrow','Germany','DE','Nustrow (Germany)',1,1,0),(30495,0,130587,'Nuvilly','Switzerland','CH','Nuvilly (Switzerland)',1,1,0),(30496,0,130588,'Nuzidersberg','Austria','AT','Nuzidersberg (Austria)',1,1,0),(30497,19804,130589,'Nyborg','Denmark','DK','Nyborg (Denmark)',1,1,0),(30498,0,130590,'Nyeri','Kenya','KE','Nyeri (Kenya)',1,1,0),(30499,19815,130591,'Nyons','France','FR','Nyons (France)',1,1,0),(30500,32322,130592,'Oak Bluffs','United States of America','US','Oak Bluffs (United States of America)',1,1,0),(30501,32328,130593,'Oak Hill','United States of America','US','Oak Hill (United States of America)',1,1,0),(30502,32335,130594,'Oak View','United States of America','US','Oak View (United States of America)',1,1,0),(30503,0,130595,'Oakley','United States of America','US','Oakley (United States of America)',1,1,0),(30504,0,130596,'Oberaurach','Germany','DE','Oberaurach (Germany)',1,1,0),(30505,0,130597,'Oberdachstetten','Germany','DE','Oberdachstetten (Germany)',1,1,0),(30506,0,130598,'Obereggenen','Germany','DE','Obereggenen (Germany)',1,1,0),(30507,19858,130599,'Oberharmersbach','Germany','DE','Oberharmersbach (Germany)',1,1,0),(30508,0,130600,'Obernberg im Wipptal','Austria','AT','Obernberg im Wipptal (Austria)',1,1,0),(30509,0,130601,'Obernheim','Germany','DE','Obernheim (Germany)',1,1,0),(30510,0,130602,'Oberthulba','Germany','DE','Oberthulba (Germany)',1,1,0),(30511,19891,130603,'Oberwesel','Germany','DE','Oberwesel (Germany)',1,1,0),(30512,0,130604,'Oberwil','Switzerland','CH','Oberwil (Switzerland)',1,1,0),(30513,19896,130605,'Obihiro','Japan','JP','Obihiro (Japan)',1,1,0),(30514,19899,130606,'Obuasi','Ghana','GH','Obuasi (Ghana)',1,1,0),(30515,0,130607,'Ocquier','Belgium','BE','Ocquier (Belgium)',1,1,0),(30516,19923,130608,'Odda','Norway','NO','Odda (Norway)',1,1,0),(30517,0,130609,'Oevenum','Germany','DE','Oevenum (Germany)',1,1,0),(30518,0,130610,'O\'Fallon','United States of America','US','O\'Fallon (United States of America)',1,1,0),(30519,0,130611,'Offingerwier/Sneeker Meer','Netherlands','NL','Offingerwier/Sneeker Meer (Netherlands)',1,1,0),(30520,19954,130612,'Ogallala','United States of America','US','Ogallala (United States of America)',1,1,0),(30521,19956,130613,'Ogdensburg','United States of America','US','Ogdensburg (United States of America)',1,1,0),(30522,0,130614,'Ogulin','Croatia','HR','Ogulin (Croatia)',1,1,0),(30523,19970,130615,'Ohrigstad','South Africa','ZA','Ohrigstad (South Africa)',1,1,0),(30524,0,130616,'Ohringen','Germany','DE','Ohringen (Germany)',1,1,0),(30525,20012,130617,'Okotoks','Canada','CA','Okotoks (Canada)',1,1,0),(30526,20014,130618,'Okrug Donji','Croatia','HR','Okrug Donji (Croatia)',1,1,0),(30527,0,130619,'Okurcalar - Karaburun','Turkey','TR','Okurcalar - Karaburun (Turkey)',1,1,0),(30528,0,130620,'Ol Pejeta','Kenya','KE','Ol Pejeta (Kenya)',1,1,0),(30529,20033,130621,'Oldenburg','Germany','DE','Oldenburg (Germany)',1,1,0),(30530,0,130622,'Olderdalen','Norway','NO','Olderdalen (Norway)',1,1,0),(30531,20073,130623,'Olmeto','France','FR','Olmeto (France)',1,1,0),(30532,20079,130624,'Olomouc','Czech Republic','CZ','Olomouc (Czech Republic)',1,1,0),(30533,0,130625,'Olonne-sur-Mer','France','FR','Olonne-sur-Mer (France)',1,1,0),(30534,20082,130626,'Oloron-Sainte-Marie','France','FR','Oloron-Sainte-Marie (France)',1,1,0),(30535,20093,130627,'Olympia','Greece','GR','Olympia (Greece)',1,1,0),(30536,0,130628,'Oman','Oman','OM','Oman (Oman)',1,1,0),(30537,20103,130629,'Omegna','Italy','IT','Omegna (Italy)',1,1,0),(30538,20112,130630,'Omro','United States of America','US','Omro (United States of America)',1,1,0),(30539,20116,130631,'Onamia','United States of America','US','Onamia (United States of America)',1,1,0),(30540,32360,130632,'Onda','Spain','ES','Onda (Spain)',1,1,0),(30541,20124,130633,'Ondres','France','FR','Ondres (France)',1,1,0),(30542,0,130634,'Onich','United Kingdom','UK','Onich (United Kingdom)',1,1,0),(30543,32365,130635,'Onis','Spain','ES','Onis (Spain)',1,1,0),(30544,20146,130636,'Onzain','France','FR','Onzain (France)',1,1,0),(30545,0,130637,'Oodnadatta','Australia','AU','Oodnadatta (Australia)',1,1,0),(30546,0,130638,'Oosterend','Netherlands','NL','Oosterend (Netherlands)',1,1,0),(30547,0,130639,'Opava','Czech Republic','CZ','Opava (Czech Republic)',1,1,0),(30548,0,130640,'Opelika','United States of America','US','Opelika (United States of America)',1,1,0),(30549,0,130641,'Opfingen','Germany','DE','Opfingen (Germany)',1,1,0),(30550,0,130642,'Opoczno','Poland','PL','Opoczno (Poland)',1,1,0),(30551,0,130643,'Oponice','Slovakia','SK','Oponice (Slovakia)',1,1,0),(30552,0,130644,'Opratija','Croatia','HR','Opratija (Croatia)',1,1,0),(30553,20176,130645,'Opua','New Zealand','NZ','Opua (New Zealand)',1,1,0),(30554,20181,130646,'Oraison','France','FR','Oraison (France)',1,1,0),(30555,0,130647,'Oral','Kazakhstan','KZ','Oral (Kazakhstan)',1,1,0),(30556,20184,130648,'Orange','United States of America','US','Orange (United States of America)',1,1,0),(30557,0,130649,'Oravi','Finland','FI','Oravi (Finland)',1,1,0),(30558,0,130650,'Oravska Lesna','Slovakia','SK','Oravska Lesna (Slovakia)',1,1,0),(30559,0,130651,'Orbanici','Croatia','HR','Orbanici (Croatia)',1,1,0),(30560,19994,130652,'Okeechobee','United States of America','US','Okeechobee (United States of America)',1,1,0),(30561,0,130653,'Okinawa','Japan','JP','Okinawa (Japan)',1,1,0),(30562,0,130654,'Okrug Gornji','Croatia','HR','Okrug Gornji (Croatia)',1,1,0),(30563,0,130655,'Oksbol','Denmark','DK','Oksbol (Denmark)',1,1,0),(30564,0,130656,'Olaberria','Spain','ES','Olaberria (Spain)',1,1,0),(30565,20019,130657,'Olafsvik','Iceland','IS','Olafsvik (Iceland)',1,1,0),(30566,20026,130658,'Olbersdorf','Germany','DE','Olbersdorf (Germany)',1,1,0),(30567,0,130659,'Old Alresford','United Kingdom','UK','Old Alresford (United Kingdom)',1,1,0),(30568,20042,130660,'Oleiros','Spain','ES','Oleiros (Spain)',1,1,0),(30569,20053,130661,'Oliena','Italy','IT','Oliena (Italy)',1,1,0),(30570,20054,130662,'Olinda','Brazil','BR','Olinda (Brazil)',1,1,0),(30571,0,130663,'Oliveira de Frades','Portugal','PT','Oliveira de Frades (Portugal)',1,1,0),(30572,20061,130664,'Olivella','Spain','ES','Olivella (Spain)',1,1,0),(30573,0,130665,'Olsztynek','Poland','PL','Olsztynek (Poland)',1,1,0),(30574,20089,130666,'Olten','Switzerland','CH','Olten (Switzerland)',1,1,0),(30575,0,130667,'Oludeniz','Turkey','TR','Oludeniz (Turkey)',1,1,0),(30576,0,130668,'Omihachiman','Japan','JP','Omihachiman (Japan)',1,1,0),(30577,20118,130669,'Onanole','Canada','CA','Onanole (Canada)',1,1,0),(30578,20131,130670,'Oneonta','United States of America','US','Oneonta (United States of America)',1,1,0),(30579,20141,130671,'Ontario','United States of America','US','Ontario (United States of America)',1,1,0),(30580,20143,130672,'Ontinyent','Spain','ES','Ontinyent (Spain)',1,1,0),(30581,20147,130673,'Ooij','Netherlands','NL','Ooij (Netherlands)',1,1,0),(30582,20153,130674,'Oosterhout','Netherlands','NL','Oosterhout (Netherlands)',1,1,0),(30583,32366,130675,'Opp','United States of America','US','Opp (United States of America)',1,1,0),(30584,0,130676,'Oraefi','Iceland','IS','Oraefi (Iceland)',1,1,0),(30585,0,130677,'Orange','United States of America','US','Orange (United States of America)',1,1,0),(30586,20192,130678,'Oranjestad','Aruba','AW','Oranjestad (Aruba)',1,1,0),(30587,0,130679,'Oranjestad','Bonaire Sint Eustatius and Saba',NULL,'Oranjestad (Bonaire Sint Eustatius and Saba)',1,1,0),(30588,0,130680,'Orbacem','Portugal','PT','Orbacem (Portugal)',1,1,0),(30589,0,130681,'Orchard Park','United States of America','US','Orchard Park (United States of America)',1,1,0),(30590,0,130682,'Orciatico','Italy','IT','Orciatico (Italy)',1,1,0),(30591,0,130683,'Oregon','United States of America','US','Oregon (United States of America)',1,1,0),(30592,0,130684,'Orena','Spain','ES','Orena (Spain)',1,1,0),(30593,20232,130685,'Orgeval','France','FR','Orgeval (France)',1,1,0),(30594,0,130686,'Orgnac-l\'Aven','France','FR','Orgnac-l\'Aven (France)',1,1,0),(30595,0,130687,'Orion Township','United States of America','US','Orion Township (United States of America)',1,1,0),(30596,20245,130688,'Oriskany','United States of America','US','Oriskany (United States of America)',1,1,0),(30597,0,130689,'Orjaku','Estonia','EE','Orjaku (Estonia)',1,1,0),(30598,0,130690,'Orland Park','United States of America','US','Orland Park (United States of America)',1,1,0),(30599,0,130691,'Orlenbach','Germany','DE','Orlenbach (Germany)',1,1,0),(30600,20261,130692,'Ormond Beach','United States of America','US','Ormond Beach (United States of America)',1,1,0),(30601,0,130693,'Ormos','Greece','GR','Ormos (Greece)',1,1,0),(30602,0,130694,'Ormsary','United Kingdom','UK','Ormsary (United Kingdom)',1,1,0),(30603,0,130695,'Oro-Medonte','Canada','CA','Oro-Medonte (Canada)',1,1,0),(30604,20274,130696,'Orosei','Italy','IT','Orosei (Italy)',1,1,0),(30605,20277,130697,'Oroville','United States of America','US','Oroville (United States of America)',1,1,0),(30606,0,130698,'Orsova','Romania','RO','Orsova (Romania)',1,1,0),(30607,0,130699,'Ortenberg','Germany','DE','Ortenberg (Germany)',1,1,0),(30608,0,130700,'Osdorf','Germany','DE','Osdorf (Germany)',1,1,0),(30609,0,130701,'Osio Sotto','Italy','IT','Osio Sotto (Italy)',1,1,0),(30610,20325,130702,'Osmo','Sweden','SE','Osmo (Sweden)',1,1,0),(30611,0,130703,'Osno Lubuskie','Poland','PL','Osno Lubuskie (Poland)',1,1,0),(30612,20331,130704,'Osoyoos','Canada','CA','Osoyoos (Canada)',1,1,0),(30613,20334,130705,'Ospedaletto d\'Alpinolo','Italy','IT','Ospedaletto d\'Alpinolo (Italy)',1,1,0),(30614,20337,130706,'Osseja','France','FR','Osseja (France)',1,1,0),(30615,20347,130707,'Osten','Germany','DE','Osten (Germany)',1,1,0),(30616,0,130708,'Osterholz-Scharmbeck','Germany','DE','Osterholz-Scharmbeck (Germany)',1,1,0),(30617,20351,130709,'Ostermundigen','Switzerland','CH','Ostermundigen (Switzerland)',1,1,0),(30618,0,130710,'Ostheim','Germany','DE','Ostheim (Germany)',1,1,0),(30619,0,130711,'Ostritz','Germany','DE','Ostritz (Germany)',1,1,0),(30620,0,130712,'Ostroleka','Poland','PL','Ostroleka (Poland)',1,1,0),(30621,0,130713,'Ostrowo','Poland','PL','Ostrowo (Poland)',1,1,0),(30622,0,130714,'Oswestry','United Kingdom','UK','Oswestry (United Kingdom)',1,1,0),(30623,0,130715,'Otavi','Namibia','NA','Otavi (Namibia)',1,1,0),(30624,20386,130716,'Otjiwarongo','Namibia','NA','Otjiwarongo (Namibia)',1,1,0),(30625,0,130717,'Oto','Spain','ES','Oto (Spain)',1,1,0),(30626,20389,130718,'Otofuke','Japan','JP','Otofuke (Japan)',1,1,0),(30627,0,130719,'Otranto','Italy','IT','Otranto (Italy)',1,1,0),(30628,0,130720,'Otrokovice','Czech Republic','CZ','Otrokovice (Czech Republic)',1,1,0),(30629,20398,130721,'Ottawa','Canada','CA','Ottawa (Canada)',1,1,0),(30630,0,130722,'Otterfing','Germany','DE','Otterfing (Germany)',1,1,0),(30631,0,130723,'Otterskirchen','Germany','DE','Otterskirchen (Germany)',1,1,0),(30632,0,130724,'Ottignies','Belgium','BE','Ottignies (Belgium)',1,1,0),(30633,20406,130725,'Ottmarsheim','France','FR','Ottmarsheim (France)',1,1,0),(30634,0,130726,'Ottweiler','Germany','DE','Ottweiler (Germany)',1,1,0),(30635,0,130727,'Ouddorp','Netherlands','NL','Ouddorp (Netherlands)',1,1,0),(30636,20439,130728,'Oulu','Finland','FI','Oulu (Finland)',1,1,0),(30637,0,130729,'Ouren','Belgium','BE','Ouren (Belgium)',1,1,0),(30638,20447,130730,'Ourense','Spain','ES','Ourense (Spain)',1,1,0),(30639,0,130731,'Ovens','Ireland','IE','Ovens (Ireland)',1,1,0),(30640,0,130732,'Overkalix','Sweden','SE','Overkalix (Sweden)',1,1,0),(30641,0,130733,'Overloon','Netherlands','NL','Overloon (Netherlands)',1,1,0),(30642,0,130734,'Owani','Japan','JP','Owani (Japan)',1,1,0),(30643,20485,130735,'Owego','United States of America','US','Owego (United States of America)',1,1,0),(30644,20490,130736,'Owings Mills','United States of America','US','Owings Mills (United States of America)',1,1,0),(30645,20503,130737,'Oy-Mittelberg','Germany','DE','Oy-Mittelberg (Germany)',1,1,0),(30646,0,130738,'Pabianice','Poland','PL','Pabianice (Poland)',1,1,0),(30647,0,130739,'Pacaya Samiria Nationalpark','Peru','PE','Pacaya Samiria Nationalpark (Peru)',1,1,0),(30648,0,130740,'Pachis','Greece','GR','Pachis (Greece)',1,1,0),(30649,20535,130741,'Packwood','United States of America','US','Packwood (United States of America)',1,1,0),(30650,0,130742,'Padangbai','Indonesia','ID','Padangbai (Indonesia)',1,1,0),(30651,20558,130743,'Paganica','Italy','IT','Paganica (Italy)',1,1,0),(30652,20559,130744,'Pageland','United States of America','US','Pageland (United States of America)',1,1,0),(30653,20560,130745,'Paget','Bermuda','BM','Paget (Bermuda)',1,1,0),(30654,0,130746,'Paia','United States of America','US','Paia (United States of America)',1,1,0),(30655,20577,130747,'Paimpont','France','FR','Paimpont (France)',1,1,0),(30656,20600,130748,'Palaia','Italy','IT','Palaia (Italy)',1,1,0),(30657,0,130750,'Palatine Bridge','United States of America','US','Palatine Bridge (United States of America)',1,1,0),(30658,20626,130751,'Paleokastritsa','Greece','GR','Paleokastritsa (Greece)',1,1,0),(30659,20636,130752,'Palestine','United States of America','US','Palestine (United States of America)',1,1,0),(30660,0,130753,'Palm Beach Gardens','United States of America','US','Palm Beach Gardens (United States of America)',1,1,0),(30661,0,130754,'Palm Harbor','United States of America','US','Palm Harbor (United States of America)',1,1,0),(30662,20651,130755,'Palmanova','Italy','IT','Palmanova (Italy)',1,1,0),(30663,0,130756,'Palmarejo Baixo da Paria','Cape Verde','CV','Palmarejo Baixo da Paria (Cape Verde)',1,1,0),(30664,20657,130757,'Palmeira','Spain','ES','Palmeira (Spain)',1,1,0),(30665,20658,130758,'Palmela','Portugal','PT','Palmela (Portugal)',1,1,0),(30666,0,130759,'Palmiye','Turkey','TR','Palmiye (Turkey)',1,1,0),(30667,20681,130760,'Pamhagen','Austria','AT','Pamhagen (Austria)',1,1,0),(30668,20682,130761,'Pamiers','France','FR','Pamiers (France)',1,1,0),(30669,20684,130762,'Pampatar','Venezuela','VE','Pampatar (Venezuela)',1,1,0),(30670,0,130763,'Panaca','United States of America','US','Panaca (United States of America)',1,1,0),(30671,20692,130764,'Panama','Panama','PA','Panama (Panama)',1,1,0),(30672,0,130765,'Pancar','Spain','ES','Pancar (Spain)',1,1,0),(30673,0,130766,'Panchia','Italy','IT','Panchia (Italy)',1,1,0),(30674,0,130767,'Olang','Italy','IT','Olang (Italy)',1,1,0),(30675,20023,130768,'Olathe','United States of America','US','Olathe (United States of America)',1,1,0),(30676,0,130769,'Olawa','Poland','PL','Olawa (Poland)',1,1,0),(30677,32350,130770,'Old Saybrook','United States of America','US','Old Saybrook (United States of America)',1,1,0),(30678,0,130771,'Oleggio Castello','Italy','IT','Oleggio Castello (Italy)',1,1,0),(30679,0,130772,'Olesno','Poland','PL','Olesno (Poland)',1,1,0),(30680,0,130773,'Olgiate Olona','Italy','IT','Olgiate Olona (Italy)',1,1,0),(30681,20050,130774,'Olhao','Portugal','PT','Olhao (Portugal)',1,1,0),(30682,20056,130775,'Olite','Spain','ES','Olite (Spain)',1,1,0),(30683,0,130776,'Oliva','Spain','ES','Oliva (Spain)',1,1,0),(30684,20062,130777,'Olivenza','Spain','ES','Olivenza (Spain)',1,1,0),(30685,0,130778,'Olkusz','Poland','PL','Olkusz (Poland)',1,1,0),(30686,0,130779,'Ollioules','France','FR','Ollioules (France)',1,1,0),(30687,20129,130780,'O\'Neill','United States of America','US','O\'Neill (United States of America)',1,1,0),(30688,0,130781,'Oostmahorn','Netherlands','NL','Oostmahorn (Netherlands)',1,1,0),(30689,0,130782,'Oostwold','Netherlands','NL','Oostwold (Netherlands)',1,1,0),(30690,20160,130783,'Ootmarsum','Netherlands','NL','Ootmarsum (Netherlands)',1,1,0),(30691,0,130784,'Open Door','Argentina','AR','Open Door (Argentina)',1,1,0),(30692,0,130785,'Opmeer','Netherlands','NL','Opmeer (Netherlands)',1,1,0),(30693,0,130786,'Oppeln','Poland','PL','Oppeln (Poland)',1,1,0),(30694,20174,130787,'Oppenau','Germany','DE','Oppenau (Germany)',1,1,0),(30695,0,130788,'Opric','Croatia','HR','Opric (Croatia)',1,1,0),(30696,20183,130789,'Oran','Algeria','DZ','Oran (Algeria)',1,1,0),(30697,0,130790,'Orange Park','United States of America','US','Orange Park (United States of America)',1,1,0),(30698,20188,130791,'Orangeburg','United States of America','US','Orangeburg (United States of America)',1,1,0),(30699,0,130792,'Orangeburg','United States of America','US','Orangeburg (United States of America)',1,1,0),(30700,20198,130793,'Orbec','France','FR','Orbec (France)',1,1,0),(30701,0,130794,'Ordos','China','CN','Ordos (China)',1,1,0),(30702,20215,130795,'Ordu','Turkey','TR','Ordu (Turkey)',1,1,0),(30703,0,130796,'Orensehir','Turkey','TR','Orensehir (Turkey)',1,1,0),(30704,20227,130797,'Orewa','New Zealand','NZ','Orewa (New Zealand)',1,1,0),(30705,20234,130798,'Orgon','France','FR','Orgon (France)',1,1,0),(30706,20246,130800,'Oristano','Italy','IT','Oristano (Italy)',1,1,0),(30707,0,130801,'Ormos Emporios','Greece','GR','Ormos Emporios (Greece)',1,1,0),(30708,0,130802,'Ormos Marathokambos','Greece','GR','Ormos Marathokambos (Greece)',1,1,0),(30709,0,130803,'Ormos Panagias','Greece','GR','Ormos Panagias (Greece)',1,1,0),(30710,0,130804,'Orneta','Poland','PL','Orneta (Poland)',1,1,0),(30711,0,130805,'Ornos','Greece','GR','Ornos (Greece)',1,1,0),(30712,20270,130806,'Oromocto','Canada','CA','Oromocto (Canada)',1,1,0),(30713,20271,130807,'Orono','United States of America','US','Orono (United States of America)',1,1,0),(30714,0,130808,'Orozko','Spain','ES','Orozko (Spain)',1,1,0),(30715,20280,130809,'Orrtanna','United States of America','US','Orrtanna (United States of America)',1,1,0),(30716,0,130810,'Ortano','Italy','IT','Ortano (Italy)',1,1,0),(30717,0,130811,'Orth','Germany','DE','Orth (Germany)',1,1,0),(30718,0,130812,'Ortona','Italy','IT','Ortona (Italy)',1,1,0),(30719,32378,130813,'Osaka','Japan','JP','Osaka (Japan)',1,1,0),(30720,20298,130814,'Osby','Sweden','SE','Osby (Sweden)',1,1,0),(30721,20305,130815,'Oshawa','Canada','CA','Oshawa (Canada)',1,1,0),(30722,20313,130816,'Oskemen','Kazakhstan','KZ','Oskemen (Kazakhstan)',1,1,0),(30723,20329,130817,'Osorno','Chile','CL','Osorno (Chile)',1,1,0),(30724,20336,130818,'Osprey','United States of America','US','Osprey (United States of America)',1,1,0),(30725,0,130819,'Ossa de Montiel','Spain','ES','Ossa de Montiel (Spain)',1,1,0),(30726,0,130820,'Ossana','Italy','IT','Ossana (Italy)',1,1,0),(30727,20338,130821,'Osseo','United States of America','US','Osseo (United States of America)',1,1,0),(30728,20341,130822,'Ossiacher Lake','Austria','AT','Ossiacher Lake (Austria)',1,1,0),(30729,0,130823,'Ostend','Belgium','BE','Ostend (Belgium)',1,1,0),(30730,20357,130824,'Osthofen','Germany','DE','Osthofen (Germany)',1,1,0),(30731,0,130825,'Osthouse','France','FR','Osthouse (France)',1,1,0),(30732,20360,130826,'Ostrava','Czech Republic','CZ','Ostrava (Czech Republic)',1,1,0),(30733,20368,130827,'Ostwald','France','FR','Ostwald (France)',1,1,0),(30734,20387,130828,'Otocec','Slovenia','SI','Otocec (Slovenia)',1,1,0),(30735,32382,130829,'Otsu','Japan','JP','Otsu (Japan)',1,1,0),(30736,0,130830,'Ottenschlag','Austria','AT','Ottenschlag (Austria)',1,1,0),(30737,0,130831,'Otter Rock','United States of America','US','Otter Rock (United States of America)',1,1,0),(30738,0,130832,'Otterbach','Germany','DE','Otterbach (Germany)',1,1,0),(30739,0,130833,'Otterlo','Netherlands','NL','Otterlo (Netherlands)',1,1,0),(30740,0,130834,'Ottershaw','United Kingdom','UK','Ottershaw (United Kingdom)',1,1,0),(30741,20418,130835,'Ouarzazate','Morocco','MA','Ouarzazate (Morocco)',1,1,0),(30742,20434,130836,'Oujda','Morocco','MA','Oujda (Morocco)',1,1,0),(30743,20435,130837,'Oukaimeden','Morocco','MA','Oukaimeden (Morocco)',1,1,0),(30744,20476,130838,'Ovifat','Belgium','BE','Ovifat (Belgium)',1,1,0),(30745,20483,130839,'Owasso','United States of America','US','Owasso (United States of America)',1,1,0),(30746,0,130840,'Owingen','Germany','DE','Owingen (Germany)',1,1,0),(30747,20495,130841,'Oxford','United States of America','US','Oxford (United States of America)',1,1,0),(30748,0,130842,'Oxford','United States of America','US','Oxford (United States of America)',1,1,0),(30749,20498,130843,'Oxnard','United States of America','US','Oxnard (United States of America)',1,1,0),(30750,20499,130844,'Oxon Hill','United States of America','US','Oxon Hill (United States of America)',1,1,0),(30751,0,130845,'Oye','Norway','NO','Oye (Norway)',1,1,0),(30752,20513,130846,'Ozark','United States of America','US','Ozark (United States of America)',1,1,0),(30753,0,130847,'Ozoir-la-Ferriere','France','FR','Ozoir-la-Ferriere (France)',1,1,0),(30754,20517,130848,'Ozona','United States of America','US','Ozona (United States of America)',1,1,0),(30755,0,130849,'Pacengo','Italy','IT','Pacengo (Italy)',1,1,0),(30756,0,130850,'Pacific City','United States of America','US','Pacific City (United States of America)',1,1,0),(30757,20539,130851,'Padang','Indonesia','ID','Padang (Indonesia)',1,1,0),(30758,0,130853,'Paderno Dugnano','Italy','IT','Paderno Dugnano (Italy)',1,1,0),(30759,20549,130854,'Paducah','United States of America','US','Paducah (United States of America)',1,1,0),(30760,20556,130855,'Pag','Croatia','HR','Pag (Croatia)',1,1,0),(30761,0,130856,'Paganico','Italy','IT','Paganico (Italy)',1,1,0),(30762,0,130857,'Pagny-sur-Meuse','France','FR','Pagny-sur-Meuse (France)',1,1,0),(30763,20562,130858,'Pagosa Springs','United States of America','US','Pagosa Springs (United States of America)',1,1,0),(30764,0,130859,'Paguera','Spain','ES','Paguera (Spain)',1,1,0),(30765,0,130860,'Pailherols','France','FR','Pailherols (France)',1,1,0),(30766,20576,130861,'Paimpol','France','FR','Paimpol (France)',1,1,0),(30767,0,130862,'Painted Post','United States of America','US','Painted Post (United States of America)',1,1,0),(30768,0,130863,'Paitone','Italy','IT','Paitone (Italy)',1,1,0),(30769,20586,130864,'Pajala','Sweden','SE','Pajala (Sweden)',1,1,0),(30770,0,130865,'Paje','Tanzania','TZ','Paje (Tanzania)',1,1,0),(30771,0,130866,'Palaios Panteleimonas','Greece','GR','Palaios Panteleimonas (Greece)',1,1,0),(30772,20616,130867,'Palavas-les-Flots','France','FR','Palavas-les-Flots (France)',1,1,0),(30773,20624,130868,'Palenville','United States of America','US','Palenville (United States of America)',1,1,0),(30774,0,130869,'Paleopolis','Greece','GR','Paleopolis (Greece)',1,1,0),(30775,20637,130870,'Palestrina','Italy','IT','Palestrina (Italy)',1,1,0),(30776,20638,130871,'Palhoca','Brazil','BR','Palhoca (Brazil)',1,1,0),(30777,0,130872,'Paliouri','Greece','GR','Paliouri (Greece)',1,1,0),(30778,20648,130873,'Palm Island','St. Vincent & the Grenadines','VC','Palm Island (St. Vincent & the Grenadines)',1,1,0),(30779,20655,130874,'Palmas','Brazil','BR','Palmas (Brazil)',1,1,0),(30780,0,130875,'Paluds de Noves','France','FR','Paluds de Noves (France)',1,1,0),(30781,20678,130876,'Pamalican Island','Philippines','PH','Pamalican Island (Philippines)',1,1,0),(30782,20685,130877,'Pamplona','Spain','ES','Pamplona (Spain)',1,1,0),(30783,0,130878,'Panama Beach','Costa Rica','CR','Panama Beach (Costa Rica)',1,1,0),(30784,0,130879,'Pangururan','Indonesia','ID','Pangururan (Indonesia)',1,1,0),(30785,0,130880,'Panora','United States of America','US','Panora (United States of America)',1,1,0),(30786,0,130881,'Panormos','Greece','GR','Panormos (Greece)',1,1,0),(30787,20734,130882,'Pantanal','Brazil','BR','Pantanal (Brazil)',1,1,0),(30788,19544,130883,'Noirefontaine','Belgium','BE','Noirefontaine (Belgium)',1,1,0),(30789,19545,130884,'Noirmoutier','France','FR','Noirmoutier (France)',1,1,0),(30790,19548,130885,'Noizay','France','FR','Noizay (France)',1,1,0),(30791,0,130886,'Nojabrsk','Russia','RU','Nojabrsk (Russia)',1,1,0),(30792,0,130887,'Nong Prue','Thailand','TH','Nong Prue (Thailand)',1,1,0),(30793,0,130888,'Noord-Scharwoude','Netherlands','NL','Noord-Scharwoude (Netherlands)',1,1,0),(30794,19576,130889,'Norco','United States of America','US','Norco (United States of America)',1,1,0),(30795,19577,130890,'Norcross','United States of America','US','Norcross (United States of America)',1,1,0),(30796,19590,130891,'Nordfjordeid','Norway','NO','Nordfjordeid (Norway)',1,1,0),(30797,0,130892,'Nordheim v.d. Rhon','Germany','DE','Nordheim v.d. Rhon (Germany)',1,1,0),(30798,0,130893,'Nordstrand','Germany','DE','Nordstrand (Germany)',1,1,0),(30799,32178,130894,'North Augusta','United States of America','US','North Augusta (United States of America)',1,1,0),(30800,32208,130895,'North Creek','United States of America','US','North Creek (United States of America)',1,1,0),(30801,32246,130896,'North Liberty','United States of America','US','North Liberty (United States of America)',1,1,0),(30802,0,130897,'North Luangwa National Park','Zambia','ZM','North Luangwa National Park (Zambia)',1,1,0),(30803,0,130898,'North Shields','United Kingdom','UK','North Shields (United Kingdom)',1,1,0),(30804,32295,130899,'North Sutton','United States of America','US','North Sutton (United States of America)',1,1,0),(30805,0,130900,'North Sydney','Canada','CA','North Sydney (Canada)',1,1,0),(30806,32300,130901,'North Truro','United States of America','US','North Truro (United States of America)',1,1,0),(30807,0,130902,'Northeast Harbor','United States of America','US','Northeast Harbor (United States of America)',1,1,0),(30808,0,130903,'Norton Fitzwarren','United Kingdom','UK','Norton Fitzwarren (United Kingdom)',1,1,0),(30809,0,130904,'Nossa Senhora da Graca de Povoa e Meada','Portugal','PT','Nossa Senhora da Graca de Povoa e Meada (Portugal)',1,1,0),(30810,0,130905,'Nosy Boraha','Madagascar','MG','Nosy Boraha (Madagascar)',1,1,0),(30811,19696,130906,'Noto','Italy','IT','Noto (Italy)',1,1,0),(30812,0,130907,'Nouilhan','France','FR','Nouilhan (France)',1,1,0),(30813,0,130908,'Nova Petropolis','Brazil','BR','Nova Petropolis (Brazil)',1,1,0),(30814,19721,130909,'Novi Ligure','Italy','IT','Novi Ligure (Italy)',1,1,0),(30815,0,130910,'Novi Pazar','Serbia','RS','Novi Pazar (Serbia)',1,1,0),(30816,0,130911,'Nowokusnezk','Russia','RU','Nowokusnezk (Russia)',1,1,0),(30817,0,130912,'Noyal-sur-Vilaine','France','FR','Noyal-sur-Vilaine (France)',1,1,0),(30818,19743,130913,'Noyelles-Godault','France','FR','Noyelles-Godault (France)',1,1,0),(30819,19756,130914,'Nuevalos','Spain','ES','Nuevalos (Spain)',1,1,0),(30820,19757,130915,'Nuevo Horizonte','Spain','ES','Nuevo Horizonte (Spain)',1,1,0),(30821,19772,130916,'Numazu','Japan','JP','Numazu (Japan)',1,1,0),(30822,19777,130917,'Nunawading','Australia','AU','Nunawading (Australia)',1,1,0),(30823,0,130918,'Nusbaum','Germany','DE','Nusbaum (Germany)',1,1,0),(30824,0,130919,'Nusfjord','Norway','NO','Nusfjord (Norway)',1,1,0),(30825,0,130920,'Nu?dorf am Attersee','Austria','AT','Nu?dorf am Attersee (Austria)',1,1,0),(30826,0,130921,'Nu?dorf am Inn','Germany','DE','Nu?dorf am Inn (Germany)',1,1,0),(30827,0,130922,'Nu?loch','Germany','DE','Nu?loch (Germany)',1,1,0),(30828,0,130923,'Nxai-Pan Nationalpark','Botswana','BW','Nxai-Pan Nationalpark (Botswana)',1,1,0),(30829,19809,130924,'Nylstroom','South Africa','ZA','Nylstroom (South Africa)',1,1,0),(30830,0,130925,'Nymfaio','Greece','GR','Nymfaio (Greece)',1,1,0),(30831,19817,130926,'O Grove','Spain','ES','O Grove (Spain)',1,1,0),(30832,0,130927,'O Porrino','Spain','ES','O Porrino (Spain)',1,1,0),(30833,32334,130928,'Oak Ridge','United States of America','US','Oak Ridge (United States of America)',1,1,0),(30834,19827,130929,'Oakbrook Terrace','United States of America','US','Oakbrook Terrace (United States of America)',1,1,0),(30835,0,130930,'Oberbipp','France','FR','Oberbipp (France)',1,1,0),(30836,0,130931,'Oberding','Germany','DE','Oberding (Germany)',1,1,0),(30837,19866,130932,'Oberlin','United States of America','US','Oberlin (United States of America)',1,1,0),(30838,0,130933,'Obermoschel','Germany','DE','Obermoschel (Germany)',1,1,0),(30839,0,130934,'Oberreute (Allgau)','Germany','DE','Oberreute (Allgau) (Germany)',1,1,0),(30840,0,130935,'Oberschona','Germany','DE','Oberschona (Germany)',1,1,0),(30841,19884,130936,'Oberterzen','Switzerland','CH','Oberterzen (Switzerland)',1,1,0),(30842,0,130937,'Oberwang','Austria','AT','Oberwang (Austria)',1,1,0),(30843,0,130938,'Oberwolz','Austria','AT','Oberwolz (Austria)',1,1,0),(30844,0,130939,'Oberzeiring','Austria','AT','Oberzeiring (Austria)',1,1,0),(30845,0,130940,'Obing','Germany','DE','Obing (Germany)',1,1,0),(30846,0,130941,'Obrovac','Croatia','HR','Obrovac (Croatia)',1,1,0),(30847,19902,130942,'Obzor','Bulgaria','BG','Obzor (Bulgaria)',1,1,0),(30848,0,130943,'Ocean City','United States of America','US','Ocean City (United States of America)',1,1,0),(30849,0,130944,'Ocean Shores','United States of America','US','Ocean Shores (United States of America)',1,1,0),(30850,0,130945,'Ochsengarten','Austria','AT','Ochsengarten (Austria)',1,1,0),(30851,0,130946,'Ockley','United Kingdom','UK','Ockley (United Kingdom)',1,1,0),(30852,0,130947,'Ocquerre','France','FR','Ocquerre (France)',1,1,0),(30853,19921,130948,'Ocracoke','United States of America','US','Ocracoke (United States of America)',1,1,0),(30854,0,130949,'Odelzhausen','Germany','DE','Odelzhausen (Germany)',1,1,0),(30855,19926,130950,'Odense','Denmark','DK','Odense (Denmark)',1,1,0),(30856,19929,130951,'Oderzo','Italy','IT','Oderzo (Italy)',1,1,0),(30857,0,130952,'Oedingen','Germany','DE','Oedingen (Germany)',1,1,0),(30858,0,130953,'Oelsnitz','Germany','DE','Oelsnitz (Germany)',1,1,0),(30859,19946,130954,'Oeversee','Germany','DE','Oeversee (Germany)',1,1,0),(30860,0,130955,'Offenbach-Hundheim','Germany','DE','Offenbach-Hundheim (Germany)',1,1,0),(30861,19953,130956,'Ogaki','Japan','JP','Ogaki (Japan)',1,1,0),(30862,0,130957,'Ogliastro Marina','Italy','IT','Ogliastro Marina (Italy)',1,1,0),(30863,19964,130958,'Ogunquit','United States of America','US','Ogunquit (United States of America)',1,1,0),(30864,0,130959,'Ohningen','Germany','DE','Ohningen (Germany)',1,1,0),(30865,0,130960,'Ohrdruf','Germany','DE','Ohrdruf (Germany)',1,1,0),(30866,19969,130961,'Ohrid','Macedonia','MK','Ohrid (Macedonia)',1,1,0),(30867,0,130962,'Ojebar','Spain','ES','Ojebar (Spain)',1,1,0),(30868,19989,130963,'Okawville','United States of America','US','Okawville (United States of America)',1,1,0),(30869,0,130964,'Olanesti','Romania','RO','Olanesti (Romania)',1,1,0),(30870,32347,130965,'Old Lyme','United States of America','US','Old Lyme (United States of America)',1,1,0),(30871,0,130966,'Oldenzaal','Netherlands','NL','Oldenzaal (Netherlands)',1,1,0),(30872,20039,130967,'Olean','United States of America','US','Olean (United States of America)',1,1,0),(30873,0,130968,'Olecko','Poland','PL','Olecko (Poland)',1,1,0),(30874,20047,130969,'Oletta','France','FR','Oletta (France)',1,1,0),(30875,20059,130970,'Olive Branch','United States of America','US','Olive Branch (United States of America)',1,1,0),(30876,0,130971,'Oliveri','Italy','IT','Oliveri (Italy)',1,1,0),(30877,0,130972,'Olivese','France','FR','Olivese (France)',1,1,0),(30878,0,130973,'Ollieres','France','FR','Ollieres (France)',1,1,0),(30879,20078,130974,'Olofstrom','Sweden','SE','Olofstrom (Sweden)',1,1,0),(30880,0,130975,'Olongapo City','Philippines','PH','Olongapo City (Philippines)',1,1,0),(30881,0,130976,'Olula del Rio','Spain','ES','Olula del Rio (Spain)',1,1,0),(30882,20091,130977,'Olvera','Spain','ES','Olvera (Spain)',1,1,0),(30883,20092,130978,'Olympia','United States of America','US','Olympia (United States of America)',1,1,0),(30884,20101,130979,'Omaruru','Namibia','NA','Omaruru (Namibia)',1,1,0),(30885,20121,130980,'Onawa','United States of America','US','Onawa (United States of America)',1,1,0),(30886,0,130981,'Ondrejov u Prahy','Czech Republic','CZ','Ondrejov u Prahy (Czech Republic)',1,1,0),(30887,20127,130982,'Oneida','United States of America','US','Oneida (United States of America)',1,1,0),(30888,20130,130983,'Onekama','United States of America','US','Onekama (United States of America)',1,1,0),(30889,32362,130984,'Onet Le Chateau','France','FR','Onet Le Chateau (France)',1,1,0),(30890,0,130985,'Onhaye','Belgium','BE','Onhaye (Belgium)',1,1,0),(30891,0,130986,'Onnion','France','FR','Onnion (France)',1,1,0),(30892,0,130987,'Onomichi','Japan','JP','Onomichi (Japan)',1,1,0),(30893,0,130988,'Ontario','United States of America','US','Ontario (United States of America)',1,1,0),(30894,20155,130989,'Oostkamp','Belgium','BE','Oostkamp (Belgium)',1,1,0),(30895,20164,130991,'Opatija','Croatia','HR','Opatija (Croatia)',1,1,0),(30896,0,130992,'Opfenbach','Germany','DE','Opfenbach (Germany)',1,1,0),(30897,0,130993,'Palazzolo Acreide','Italy','IT','Palazzolo Acreide (Italy)',1,1,0),(30898,0,130994,'Palazzolo dello Stella','Italy','IT','Palazzolo dello Stella (Italy)',1,1,0),(30899,20646,130995,'Palm Bay','United States of America','US','Palm Bay (United States of America)',1,1,0),(30900,0,130996,'Palma di Montechiaro','Italy','IT','Palma di Montechiaro (Italy)',1,1,0),(30901,20668,130997,'Palmi','Italy','IT','Palmi (Italy)',1,1,0),(30902,0,130998,'Paltinis (Sibiu)','Romania','RO','Paltinis (Sibiu) (Romania)',1,1,0),(30903,20683,130999,'Pampa','United States of America','US','Pampa (United States of America)',1,1,0),(30904,20687,131000,'Pamukkale','Turkey','TR','Pamukkale (Turkey)',1,1,0),(30905,0,131001,'Pamunugama','Sri Lanka','LK','Pamunugama (Sri Lanka)',1,1,0),(30906,0,131003,'Pangkal Pinang','Indonesia','ID','Pangkal Pinang (Indonesia)',1,1,0),(30907,0,131004,'Pano Chersonissos','Greece','GR','Pano Chersonissos (Greece)',1,1,0),(30908,0,131005,'Pansea - Phuket','Thailand','TH','Pansea - Phuket (Thailand)',1,1,0),(30909,20737,131006,'Panticosa','Spain','ES','Panticosa (Spain)',1,1,0),(30910,20746,131007,'Paonia','United States of America','US','Paonia (United States of America)',1,1,0),(30911,0,131008,'Papantla','Mexico','MX','Papantla (Mexico)',1,1,0),(30912,0,131009,'Papingo','Greece','GR','Papingo (Greece)',1,1,0),(30913,0,131010,'Paradise Valley','United States of America','US','Paradise Valley (United States of America)',1,1,0),(30914,0,131011,'Paramythia','Greece','GR','Paramythia (Greece)',1,1,0),(30915,0,131012,'Parenti','Italy','IT','Parenti (Italy)',1,1,0),(30916,0,131013,'Paripueira','Brazil','BR','Paripueira (Brazil)',1,1,0),(30917,32404,131014,'Park Falls','United States of America','US','Park Falls (United States of America)',1,1,0),(30918,0,131015,'Parsdorf bei Munchen','Germany','DE','Parsdorf bei Munchen (Germany)',1,1,0),(30919,20870,131016,'Parthenay','France','FR','Parthenay (France)',1,1,0),(30920,0,131017,'Partschins','Italy','IT','Partschins (Italy)',1,1,0),(30921,20874,131018,'Pasadena','United States of America','US','Pasadena (United States of America)',1,1,0),(30922,20880,131019,'Pasewalk','Germany','DE','Pasewalk (Germany)',1,1,0),(30923,0,131020,'Pasig City','Philippines','PH','Pasig City (Philippines)',1,1,0),(30924,20885,131021,'Paso De La Patria','Argentina','AR','Paso De La Patria (Argentina)',1,1,0),(30925,0,131022,'Passa Quatro','Brazil','BR','Passa Quatro (Brazil)',1,1,0),(30926,20889,131023,'Passau','Germany','DE','Passau (Germany)',1,1,0),(30927,0,131024,'Pastida','Greece','GR','Pastida (Greece)',1,1,0),(30928,20895,131025,'Paszkowka','Poland','PL','Paszkowka (Poland)',1,1,0),(30929,0,131026,'Patalavaca','Spain','ES','Patalavaca (Spain)',1,1,0),(30930,0,131029,'Patong','Thailand','TH','Patong (Thailand)',1,1,0),(30931,20931,131030,'Patzcuaro','Mexico','MX','Patzcuaro (Mexico)',1,1,0),(30932,20945,131031,'Pavone Canavese','Italy','IT','Pavone Canavese (Italy)',1,1,0),(30933,20958,131032,'Paynesville','United States of America','US','Paynesville (United States of America)',1,1,0),(30934,0,131033,'Pechon','Spain','ES','Pechon (Spain)',1,1,0),(30935,20991,131034,'Pedara','Italy','IT','Pedara (Italy)',1,1,0),(30936,0,131035,'Pei?enberg','Germany','DE','Pei?enberg (Germany)',1,1,0),(30937,21022,131036,'Peiting','Germany','DE','Peiting (Germany)',1,1,0),(30938,0,131037,'Peitz','Germany','DE','Peitz (Germany)',1,1,0),(30939,21055,131038,'Pemberton','United States of America','US','Pemberton (United States of America)',1,1,0),(30940,0,131039,'Pembroke','United Kingdom','UK','Pembroke (United Kingdom)',1,1,0),(30941,0,131040,'Pembrokeshire','United Kingdom','UK','Pembrokeshire (United Kingdom)',1,1,0),(30942,0,131041,'Penally','United Kingdom','UK','Penally (United Kingdom)',1,1,0),(30943,21100,131042,'Pennsville','United States of America','US','Pennsville (United States of America)',1,1,0),(30944,21101,131043,'Penola','Australia','AU','Penola (Australia)',1,1,0),(30945,0,131044,'Pensa','Russia','RU','Pensa (Russia)',1,1,0),(30946,0,131045,'Penzance','United Kingdom','UK','Penzance (United Kingdom)',1,1,0),(30947,21117,131046,'Penzberg','Germany','DE','Penzberg (Germany)',1,1,0),(30948,0,131047,'Percha','Italy','IT','Percha (Italy)',1,1,0),(30949,0,131048,'Perdido Key','United States of America','US','Perdido Key (United States of America)',1,1,0),(30950,0,131049,'Perignat-Les-Sarliere','France','FR','Perignat-Les-Sarliere (France)',1,1,0),(30951,0,131050,'Perivoli','Greece','GR','Perivoli (Greece)',1,1,0),(30952,0,131051,'Perleberg','Germany','DE','Perleberg (Germany)',1,1,0),(30953,21160,131052,'Perledo','Italy','IT','Perledo (Italy)',1,1,0),(30954,0,131053,'Perlen','Switzerland','CH','Perlen (Switzerland)',1,1,0),(30955,0,131054,'Pernera','Cyprus','CY','Pernera (Cyprus)',1,1,0),(30956,21169,131055,'Peronne','France','FR','Peronne (France)',1,1,0),(30957,0,131056,'Peroulia','Greece','GR','Peroulia (Greece)',1,1,0),(30958,0,131057,'Perrier','France','FR','Perrier (France)',1,1,0),(30959,21175,131058,'Perris','United States of America','US','Perris (United States of America)',1,1,0),(30960,0,131059,'Perth','Australia','AU','Perth (Australia)',1,1,0),(30961,0,131060,'Perugia','Italy','IT','Perugia (Italy)',1,1,0),(30962,0,131061,'Perwang am Grabensee','Austria','AT','Perwang am Grabensee (Austria)',1,1,0),(30963,0,131062,'Pery','Switzerland','CH','Pery (Switzerland)',1,1,0),(30964,0,131063,'Pesaguero','Spain','ES','Pesaguero (Spain)',1,1,0),(30965,21217,131064,'Peten','Guatemala','GT','Peten (Guatemala)',1,1,0),(30966,21226,131065,'Petersburg','United States of America','US','Petersburg (United States of America)',1,1,0),(30967,0,131066,'Petit-Palais-et-Cornemps','France','FR','Petit-Palais-et-Cornemps (France)',1,1,0),(30968,0,131067,'Petrich','Bulgaria','BG','Petrich (Bulgaria)',1,1,0),(30969,0,131068,'Pettigoe','Ireland','IE','Pettigoe (Ireland)',1,1,0),(30970,0,131069,'Peyrignac','France','FR','Peyrignac (France)',1,1,0),(30971,0,131070,'Pfaffenhofen an der Ilm','Germany','DE','Pfaffenhofen an der Ilm (Germany)',1,1,0),(30972,0,131071,'Pfaffenweiler','Germany','DE','Pfaffenweiler (Germany)',1,1,0),(30973,0,131072,'Pfaffikon ZH','Switzerland','CH','Pfaffikon ZH (Switzerland)',1,1,0),(30974,0,131073,'Pfiffelbach','Germany','DE','Pfiffelbach (Germany)',1,1,0),(30975,0,131074,'Pfrungen','Germany','DE','Pfrungen (Germany)',1,1,0),(30976,0,131075,'Phang Tru','Thailand','TH','Phang Tru (Thailand)',1,1,0),(30977,0,131076,'Phi Phi Island / Ko Pee Pee','Thailand','TH','Phi Phi Island / Ko Pee Pee (Thailand)',1,1,0),(30978,0,131077,'Pianello Vallesina','Italy','IT','Pianello Vallesina (Italy)',1,1,0),(30979,0,131078,'Pianfei','Italy','IT','Pianfei (Italy)',1,1,0),(30980,0,131079,'Piazze','Italy','IT','Piazze (Italy)',1,1,0),(30981,0,131080,'Pierrefontaine-les-Varans','France','FR','Pierrefontaine-les-Varans (France)',1,1,0),(30982,0,131081,'Pieterburen','Netherlands','NL','Pieterburen (Netherlands)',1,1,0),(30983,0,131082,'Pietrapaola Mare','Italy','IT','Pietrapaola Mare (Italy)',1,1,0),(30984,0,131083,'Pieve di Cento','Italy','IT','Pieve di Cento (Italy)',1,1,0),(30985,0,131084,'Pieve di Soligo','Italy','IT','Pieve di Soligo (Italy)',1,1,0),(30986,0,131085,'Pigna','Italy','IT','Pigna (Italy)',1,1,0),(30987,21401,131086,'Piketon','United States of America','US','Piketon (United States of America)',1,1,0),(30988,21404,131087,'Pila','Italy','IT','Pila (Italy)',1,1,0),(30989,0,131088,'Pinarellu','France','FR','Pinarellu (France)',1,1,0),(30990,21419,131089,'Pincher Creek','Canada','CA','Pincher Creek (Canada)',1,1,0),(30991,21425,131090,'Pinebluff','United States of America','US','Pinebluff (United States of America)',1,1,0),(30992,21427,131091,'Pineda de Mar','Spain','ES','Pineda de Mar (Spain)',1,1,0),(30993,21439,131092,'Pingdingshan','China','CN','Pingdingshan (China)',1,1,0),(30994,0,131093,'Pinos Genil','Spain','ES','Pinos Genil (Spain)',1,1,0),(30995,0,131094,'Pioppi','Italy','IT','Pioppi (Italy)',1,1,0),(30996,21465,131095,'Pipestone','United States of America','US','Pipestone (United States of America)',1,1,0),(30997,0,131096,'Piscadera Bay','Curaçao','CW','Piscadera Bay (Curaçao)',1,1,0),(30998,21486,131097,'Pisciotta','Italy','IT','Pisciotta (Italy)',1,1,0),(30999,0,131098,'Piskopiano','Greece','GR','Piskopiano (Greece)',1,1,0),(31000,0,131099,'Plai Laem','Thailand','TH','Plai Laem (Thailand)',1,1,0),(31001,0,131100,'Newbury','United States of America','US','Newbury (United States of America)',1,1,0),(31002,19314,131101,'Newcastle','St. Kitts and Nevis','KN','Newcastle (St. Kitts and Nevis)',1,1,0),(31003,19312,131102,'Newcastle','United States of America','US','Newcastle (United States of America)',1,1,0),(31004,0,131103,'Newcastle upon Tyne','United Kingdom','UK','Newcastle upon Tyne (United Kingdom)',1,1,0),(31005,19327,131104,'Newfane','United States of America','US','Newfane (United States of America)',1,1,0),(31006,19336,131105,'Newland','United States of America','US','Newland (United States of America)',1,1,0),(31007,0,131106,'Newmachar','United Kingdom','UK','Newmachar (United Kingdom)',1,1,0),(31008,19343,131107,'Newnan','United States of America','US','Newnan (United States of America)',1,1,0),(31009,0,131108,'Newport (Mayo)','Ireland','IE','Newport (Mayo) (Ireland)',1,1,0),(31010,0,131109,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(31011,0,131110,'Newton-le-Willows','United Kingdom','UK','Newton-le-Willows (United Kingdom)',1,1,0),(31012,0,131111,'Newtonmore','United Kingdom','UK','Newtonmore (United Kingdom)',1,1,0),(31013,0,131112,'Newtownards','United Kingdom','UK','Newtownards (United Kingdom)',1,1,0),(31014,19363,131113,'Newtownmountkennedy','Ireland','IE','Newtownmountkennedy (Ireland)',1,1,0),(31015,19381,131114,'Nhill','Australia','AU','Nhill (Australia)',1,1,0),(31016,19383,131115,'Niagara Falls','United States of America','US','Niagara Falls (United States of America)',1,1,0),(31017,19382,131116,'Niagara Falls','Canada','CA','Niagara Falls (Canada)',1,1,0),(31018,0,131117,'Niassa Wildreservat','Mozambique','MZ','Niassa Wildreservat (Mozambique)',1,1,0),(31019,0,131118,'Nicoteria','Italy','IT','Nicoteria (Italy)',1,1,0),(31020,19402,131119,'Nida','Lithuania','LT','Nida (Lithuania)',1,1,0),(31021,0,131120,'Nidd','United Kingdom','UK','Nidd (United Kingdom)',1,1,0),(31022,0,131121,'Nidderau','Germany','DE','Nidderau (Germany)',1,1,0),(31023,0,131122,'Niechorze','Poland','PL','Niechorze (Poland)',1,1,0),(31024,0,131123,'Niedenstein','Germany','DE','Niedenstein (Germany)',1,1,0),(31025,0,131124,'Nieder-Olm','Germany','DE','Nieder-Olm (Germany)',1,1,0),(31026,0,131125,'Niederwaldkirchen','Austria','AT','Niederwaldkirchen (Austria)',1,1,0),(31027,0,131126,'Niedzica','Poland','PL','Niedzica (Poland)',1,1,0),(31028,19433,131127,'Nieuwpoort','Belgium','BE','Nieuwpoort (Belgium)',1,1,0),(31029,0,131128,'Nieuwpoort','Curaçao','CW','Nieuwpoort (Curaçao)',1,1,0),(31030,0,131129,'Nijaning','Senegal','SN','Nijaning (Senegal)',1,1,0),(31031,19447,131130,'Nijar','Spain','ES','Nijar (Spain)',1,1,0),(31032,19451,131131,'Nikiana','Greece','GR','Nikiana (Greece)',1,1,0),(31033,0,131132,'Nikolsdorf','Austria','AT','Nikolsdorf (Austria)',1,1,0),(31034,19471,131133,'Nilsia','Finland','FI','Nilsia (Finland)',1,1,0),(31035,0,131134,'Nin','Croatia','HR','Nin (Croatia)',1,1,0),(31036,19476,131135,'Ninghai','China','CN','Ninghai (China)',1,1,0),(31037,19486,131136,'Niseko','Japan','JP','Niseko (Japan)',1,1,0),(31038,0,131137,'Nishiwaga','Japan','JP','Nishiwaga (Japan)',1,1,0),(31039,19491,131138,'Nisku','Canada','CA','Nisku (Canada)',1,1,0),(31040,19492,131139,'Nissaki','Greece','GR','Nissaki (Greece)',1,1,0),(31041,0,131140,'Nissi Beach','Cyprus','CY','Nissi Beach (Cyprus)',1,1,0),(31042,19504,131141,'Nixa','United States of America','US','Nixa (United States of America)',1,1,0),(31043,19509,131142,'Njivice','Croatia','HR','Njivice (Croatia)',1,1,0),(31044,0,131143,'Njoro','Kenya','KE','Njoro (Kenya)',1,1,0),(31045,0,131144,'N\'Koub','Morocco','MA','N\'Koub (Morocco)',1,1,0),(31046,19522,131145,'Noboribetsu','Japan','JP','Noboribetsu (Japan)',1,1,0),(31047,19526,131146,'Nods','Switzerland','CH','Nods (Switzerland)',1,1,0),(31048,0,131147,'Nogent','France','FR','Nogent (France)',1,1,0),(31049,0,131148,'Nohra (bei Weimar)','Germany','DE','Nohra (bei Weimar) (Germany)',1,1,0),(31050,0,131149,'Noia','Spain','ES','Noia (Spain)',1,1,0),(31051,0,131150,'Noisy le Grand','France','FR','Noisy le Grand (France)',1,1,0),(31052,0,131151,'Nomi','Japan','JP','Nomi (Japan)',1,1,0),(31053,0,131152,'Nominingue','Canada','CA','Nominingue (Canada)',1,1,0),(31054,0,131153,'Nonnenhorn','Germany','DE','Nonnenhorn (Germany)',1,1,0),(31055,19575,131154,'Norcia','Italy','IT','Norcia (Italy)',1,1,0),(31056,19583,131155,'Norddorf','Germany','DE','Norddorf (Germany)',1,1,0),(31057,19588,131156,'Norderstedt','Germany','DE','Norderstedt (Germany)',1,1,0),(31058,19589,131157,'Nordeste','Portugal','PT','Nordeste (Portugal)',1,1,0),(31059,0,131158,'Nordseter','Norway','NO','Nordseter (Norway)',1,1,0),(31060,0,131159,'Norefjell','Norway','NO','Norefjell (Norway)',1,1,0),(31061,19610,131160,'Normanton','Australia','AU','Normanton (Australia)',1,1,0),(31062,19615,131161,'Norristown','United States of America','US','Norristown (United States of America)',1,1,0),(31063,32194,131162,'North Brunswick','United States of America','US','North Brunswick (United States of America)',1,1,0),(31064,0,131163,'North Chicago','United States of America','US','North Chicago (United States of America)',1,1,0),(31065,0,131164,'North East','United States of America','US','North East (United States of America)',1,1,0),(31066,0,131165,'North Kilworth','United Kingdom','UK','North Kilworth (United Kingdom)',1,1,0),(31067,32254,131166,'North Miami Beach','United States of America','US','North Miami Beach (United States of America)',1,1,0),(31068,32257,131167,'North Myrtle Beach','United States of America','US','North Myrtle Beach (United States of America)',1,1,0),(31069,32287,131168,'North Sioux City','United States of America','US','North Sioux City (United States of America)',1,1,0),(31070,32291,131169,'North Stonington','United States of America','US','North Stonington (United States of America)',1,1,0),(31071,32309,131170,'North Woodstock','United States of America','US','North Woodstock (United States of America)',1,1,0),(31072,19667,131171,'Northlake','United States of America','US','Northlake (United States of America)',1,1,0),(31073,0,131172,'Northop','United Kingdom','UK','Northop (United Kingdom)',1,1,0),(31074,19673,131173,'Northridge','United States of America','US','Northridge (United States of America)',1,1,0),(31075,0,131174,'Norwalk','United States of America','US','Norwalk (United States of America)',1,1,0),(31076,0,131175,'Norwich','United States of America','US','Norwich (United States of America)',1,1,0),(31077,0,131176,'Nossebro','Sweden','SE','Nossebro (Sweden)',1,1,0),(31078,0,131177,'Nouvelle','Canada','CA','Nouvelle (Canada)',1,1,0),(31079,19719,131178,'Noventa di Piave','Italy','IT','Noventa di Piave (Italy)',1,1,0),(31080,0,131179,'Novi Velia','Italy','IT','Novi Velia (Italy)',1,1,0),(31081,0,131180,'Novo Airao','Brazil','BR','Novo Airao (Brazil)',1,1,0),(31082,19728,131181,'Novo Sancti Petri','Spain','ES','Novo Sancti Petri (Spain)',1,1,0),(31083,0,131182,'Novy Bydzov','Czech Republic','CZ','Novy Bydzov (Czech Republic)',1,1,0),(31084,19735,131183,'Novy Jicin','Czech Republic','CZ','Novy Jicin (Czech Republic)',1,1,0),(31085,0,131184,'Nowogard','Poland','PL','Nowogard (Poland)',1,1,0),(31086,19738,131185,'Nowogrod','Poland','PL','Nowogrod (Poland)',1,1,0),(31087,0,131186,'Nowy Dwor Mazowiecki','Poland','PL','Nowy Dwor Mazowiecki (Poland)',1,1,0),(31088,19797,131187,'Nuwara Eliya','Sri Lanka','LK','Nuwara Eliya (Sri Lanka)',1,1,0),(31089,0,131188,'Nuziders','Austria','AT','Nuziders (Austria)',1,1,0),(31090,0,131189,'Nyadal','Sweden','SE','Nyadal (Sweden)',1,1,0),(31091,0,131190,'Nydalen','Norway','NO','Nydalen (Norway)',1,1,0),(31092,0,131191,'Nyhamnslage','Sweden','SE','Nyhamnslage (Sweden)',1,1,0),(31093,0,131192,'Nykobing Falster','Denmark','DK','Nykobing Falster (Denmark)',1,1,0),(31094,0,131193,'Nykobing Mors','Denmark','DK','Nykobing Mors (Denmark)',1,1,0),(31095,19808,131194,'Nykoping','Sweden','SE','Nykoping (Sweden)',1,1,0),(31096,0,131195,'Nyrsko','Czech Republic','CZ','Nyrsko (Czech Republic)',1,1,0),(31097,0,131196,'Nysa','Poland','PL','Nysa (Poland)',1,1,0),(31098,19819,131197,'Oacoma','United States of America','US','Oacoma (United States of America)',1,1,0),(31099,0,131198,'Oakdale','United States of America','US','Oakdale (United States of America)',1,1,0),(31100,19839,131199,'Oakville','Canada','CA','Oakville (Canada)',1,1,0),(31101,19840,131200,'Oakwood','United States of America','US','Oakwood (United States of America)',1,1,0),(31102,0,131201,'Oakwood Village','United States of America','US','Oakwood Village (United States of America)',1,1,0),(31103,0,131202,'Obburgen','Switzerland','CH','Obburgen (Switzerland)',1,1,0),(31104,19853,131203,'Obereggen','Italy','IT','Obereggen (Italy)',1,1,0),(31105,0,131204,'Oberelsbach','Germany','DE','Oberelsbach (Germany)',1,1,0),(31106,0,131205,'Oberhambach','Germany','DE','Oberhambach (Germany)',1,1,0),(31107,0,131206,'Oberhofen','Austria','AT','Oberhofen (Austria)',1,1,0),(31108,0,131207,'Oberiberg','Switzerland','CH','Oberiberg (Switzerland)',1,1,0),(31109,19865,131208,'Oberlahr','Germany','DE','Oberlahr (Germany)',1,1,0),(31110,0,131209,'Oberlarg','France','FR','Oberlarg (France)',1,1,0),(31111,19740,131210,'Nowy Sacz','Poland','PL','Nowy Sacz (Poland)',1,1,0),(31112,19747,131211,'Noyon','France','FR','Noyon (France)',1,1,0),(31113,0,131212,'Nuevo Casas Grandes','Mexico','MX','Nuevo Casas Grandes (Mexico)',1,1,0),(31114,19758,131213,'Nuevo Laredo','Mexico','MX','Nuevo Laredo (Mexico)',1,1,0),(31115,0,131214,'Nules - La Villavieja','Spain','ES','Nules - La Villavieja (Spain)',1,1,0),(31116,0,131215,'Nuneaton','United Kingdom','UK','Nuneaton (United Kingdom)',1,1,0),(31117,0,131216,'Nuthe-Urstromtal','Germany','DE','Nuthe-Urstromtal (Germany)',1,1,0),(31118,19810,131217,'Nymburk','Czech Republic','CZ','Nymburk (Czech Republic)',1,1,0),(31119,19814,131218,'Nyon','Switzerland','CH','Nyon (Switzerland)',1,1,0),(31120,0,131219,'O Barco','Spain','ES','O Barco (Spain)',1,1,0),(31121,0,131220,'Oakdale','United States of America','US','Oakdale (United States of America)',1,1,0),(31122,19837,131221,'Oakridge','United States of America','US','Oakridge (United States of America)',1,1,0),(31123,0,131222,'Oase Fayoum','Egypt','EG','Oase Fayoum (Egypt)',1,1,0),(31124,0,131223,'Oaxtepec','Mexico','MX','Oaxtepec (Mexico)',1,1,0),(31125,0,131224,'Oberau','Germany','DE','Oberau (Germany)',1,1,0),(31126,0,131225,'Oberderdingen','Germany','DE','Oberderdingen (Germany)',1,1,0),(31127,0,131226,'Obereggingen','Germany','DE','Obereggingen (Germany)',1,1,0),(31128,0,131227,'Oberhaching','Germany','DE','Oberhaching (Germany)',1,1,0),(31129,0,131228,'Oberhofen im Inntal','Austria','AT','Oberhofen im Inntal (Austria)',1,1,0),(31130,0,131229,'Obermuhl','Austria','AT','Obermuhl (Austria)',1,1,0),(31131,0,131230,'Obernburg am Main','Germany','DE','Obernburg am Main (Germany)',1,1,0),(31132,0,131231,'Oberndorf am Neckar','Germany','DE','Oberndorf am Neckar (Germany)',1,1,0),(31133,19874,131232,'Oberraden','Germany','DE','Oberraden (Germany)',1,1,0),(31134,0,131233,'Oberrasen','Italy','IT','Oberrasen (Italy)',1,1,0),(31135,0,131234,'Oberscheidweiler','Germany','DE','Oberscheidweiler (Germany)',1,1,0),(31136,0,131235,'Oberteisbach','Germany','DE','Oberteisbach (Germany)',1,1,0),(31137,19892,131236,'Oberwiesenthal','Germany','DE','Oberwiesenthal (Germany)',1,1,0),(31138,0,131237,'Oca','Spain','ES','Oca (Spain)',1,1,0),(31139,19905,131238,'Ocana','Spain','ES','Ocana (Spain)',1,1,0),(31140,0,131239,'Ocean Springs','United States of America','US','Ocean Springs (United States of America)',1,1,0),(31141,0,131240,'Ockholm','Germany','DE','Ockholm (Germany)',1,1,0),(31142,19915,131241,'Ocna Sibiului','Romania','RO','Ocna Sibiului (Romania)',1,1,0),(31143,19916,131242,'Ocoee','United States of America','US','Ocoee (United States of America)',1,1,0),(31144,19919,131243,'Oconomowoc','United States of America','US','Oconomowoc (United States of America)',1,1,0),(31145,19932,131244,'Odessa','Ukraine','UA','Odessa (Ukraine)',1,1,0),(31146,19931,131245,'Odessa','United States of America','US','Odessa (United States of America)',1,1,0),(31147,19934,131246,'Odivelas','Portugal','PT','Odivelas (Portugal)',1,1,0),(31148,19937,131247,'Odos','France','FR','Odos (France)',1,1,0),(31149,0,131248,'Oehna','Germany','DE','Oehna (Germany)',1,1,0),(31150,19939,131249,'Oelwein','United States of America','US','Oelwein (United States of America)',1,1,0),(31151,0,131250,'Oettingen in Bayern','Germany','DE','Oettingen in Bayern (Germany)',1,1,0),(31152,0,131251,'Offenheim','Germany','DE','Offenheim (Germany)',1,1,0),(31153,0,131252,'Oga','Italy','IT','Oga (Italy)',1,1,0),(31154,19958,131253,'Ogijares','Spain','ES','Ogijares (Spain)',1,1,0),(31155,19973,131254,'Oiartzun','Spain','ES','Oiartzun (Spain)',1,1,0),(31156,0,131255,'Oil City','United States of America','US','Oil City (United States of America)',1,1,0),(31157,19976,131256,'Oisterwijk','Netherlands','NL','Oisterwijk (Netherlands)',1,1,0),(31158,19986,131257,'Okanagan Falls','Canada','CA','Okanagan Falls (Canada)',1,1,0),(31159,0,131258,'Oklahoma City','United States of America','US','Oklahoma City (United States of America)',1,1,0),(31160,20008,131259,'Okmulgee','United States of America','US','Okmulgee (United States of America)',1,1,0),(31161,0,131260,'Oland','Sweden','SE','Oland (Sweden)',1,1,0),(31162,0,131261,'Olavarria','Argentina','AR','Olavarria (Argentina)',1,1,0),(31163,32343,131262,'Old Forge','United States of America','US','Old Forge (United States of America)',1,1,0),(31164,0,131263,'Oldham','United Kingdom','UK','Oldham (United Kingdom)',1,1,0),(31165,0,131264,'Oldsum / Fohr','Germany','DE','Oldsum / Fohr (Germany)',1,1,0),(31166,20041,131265,'Oleggio','Italy','IT','Oleggio (Italy)',1,1,0),(31167,0,131266,'Oleiros','Portugal','PT','Oleiros (Portugal)',1,1,0),(31168,0,131267,'Olginka','Russia','RU','Olginka (Russia)',1,1,0),(31169,20060,131268,'Oliveira de Azemeis','Portugal','PT','Oliveira de Azemeis (Portugal)',1,1,0),(31170,20069,131269,'Olivone','Switzerland','CH','Olivone (Switzerland)',1,1,0),(31171,20072,131270,'Olmedo','Spain','ES','Olmedo (Spain)',1,1,0),(31172,0,131271,'Olympia','Namibia','NA','Olympia (Namibia)',1,1,0),(31173,0,131272,'Olympic National Park (Seattle)','United States of America','US','Olympic National Park (Seattle) (United States of America)',1,1,0),(31174,0,131273,'Omachi','Japan','JP','Omachi (Japan)',1,1,0),(31175,20100,131274,'Omarama','New Zealand','NZ','Omarama (New Zealand)',1,1,0),(31176,20108,131275,'Omisalj','Croatia','HR','Omisalj (Croatia)',1,1,0),(31177,20120,131277,'Onati','Spain','ES','Onati (Spain)',1,1,0),(31178,0,131278,'Oneonta','United States of America','US','Oneonta (United States of America)',1,1,0),(31179,20150,131279,'Oostduinkerke','Belgium','BE','Oostduinkerke (Belgium)',1,1,0),(31180,0,131280,'Oosterleek','Netherlands','NL','Oosterleek (Netherlands)',1,1,0),(31181,0,131281,'Opuzen','Croatia','HR','Opuzen (Croatia)',1,1,0),(31182,20185,131282,'Orange','France','FR','Orange (France)',1,1,0),(31183,20186,131283,'Orange','Australia','AU','Orange (Australia)',1,1,0),(31184,0,131284,'Orange Beach','United States of America','US','Orange Beach (United States of America)',1,1,0),(31185,20187,131285,'Orange Walk','Belize','BZ','Orange Walk (Belize)',1,1,0),(31186,0,131286,'Oranienbaum','Germany','DE','Oranienbaum (Germany)',1,1,0),(31187,0,131287,'Orbicciano','Italy','IT','Orbicciano (Italy)',1,1,0),(31188,20201,131288,'Orbost','Australia','AU','Orbost (Australia)',1,1,0),(31189,0,131289,'Orchies','France','FR','Orchies (France)',1,1,0),(31190,0,131290,'Oregon City','United States of America','US','Oregon City (United States of America)',1,1,0),(31191,20223,131291,'Orelle','France','FR','Orelle (France)',1,1,0),(31192,20226,131292,'Orestiada','Greece','GR','Orestiada (Greece)',1,1,0),(31193,0,131293,'Orford','Canada','CA','Orford (Canada)',1,1,0),(31194,20233,131294,'Orgiva','Spain','ES','Orgiva (Spain)',1,1,0),(31195,20236,131295,'Orient','Spain','ES','Orient (Spain)',1,1,0),(31196,0,131296,'Orihi','Croatia','HR','Orihi (Croatia)',1,1,0),(31197,0,131297,'Orillia','Canada','CA','Orillia (Canada)',1,1,0),(31198,20247,131298,'Orizaba','Mexico','MX','Orizaba (Mexico)',1,1,0),(31199,0,131299,'Orjol','Russia','RU','Orjol (Russia)',1,1,0),(31200,20248,131300,'Orkanger','Norway','NO','Orkanger (Norway)',1,1,0),(31201,20256,131301,'Orly','France','FR','Orly (France)',1,1,0),(31202,0,131302,'Orma','Greece','GR','Orma (Greece)',1,1,0),(31203,20265,131303,'Ornaisons','France','FR','Ornaisons (France)',1,1,0),(31204,32370,131304,'Oro Valley','United States of America','US','Oro Valley (United States of America)',1,1,0),(31205,20269,131305,'Orofino','United States of America','US','Orofino (United States of America)',1,1,0),(31206,0,131306,'Oropesa del Mar','Spain','ES','Oropesa del Mar (Spain)',1,1,0),(31207,0,131307,'Oroshaza','Hungary','HU','Oroshaza (Hungary)',1,1,0),(31208,0,131308,'Orosi Tal','Costa Rica','CR','Orosi Tal (Costa Rica)',1,1,0),(31209,0,131309,'Orpierre','France','FR','Orpierre (France)',1,1,0),(31210,0,131310,'Orsara Bormida','Italy','IT','Orsara Bormida (Italy)',1,1,0),(31211,20284,131311,'Orselina','Switzerland','CH','Orselina (Switzerland)',1,1,0),(31212,20285,131312,'Orsta','Norway','NO','Orsta (Norway)',1,1,0),(31213,0,131313,'Orturano di Bagnone','Italy','IT','Orturano di Bagnone (Italy)',1,1,0),(31214,20314,131314,'Oslo','Norway','NO','Oslo (Norway)',1,1,0),(31215,0,131315,'Osmangazi','Turkey','TR','Osmangazi (Turkey)',1,1,0),(31216,20333,131316,'Ospedaletti','Italy','IT','Ospedaletti (Italy)',1,1,0),(31217,0,131317,'Ospedaletto Lodigiano','Italy','IT','Ospedaletto Lodigiano (Italy)',1,1,0),(31218,0,131318,'Osta','Sweden','SE','Osta (Sweden)',1,1,0),(31219,20346,131319,'Ostellato','Italy','IT','Ostellato (Italy)',1,1,0),(31220,0,131320,'Osterronfeld','Germany','DE','Osterronfeld (Germany)',1,1,0),(31221,0,131321,'Orcas Island','United States of America','US','Orcas Island (United States of America)',1,1,0),(31222,0,131322,'Orce','Spain','ES','Orce (Spain)',1,1,0),(31223,0,131323,'Orchamps-Vennes','France','FR','Orchamps-Vennes (France)',1,1,0),(31224,20212,131324,'Ordino','Andorra','AD','Ordino (Andorra)',1,1,0),(31225,0,131325,'Orellana la Vieja','Spain','ES','Orellana la Vieja (Spain)',1,1,0),(31226,20224,131326,'Orem','United States of America','US','Orem (United States of America)',1,1,0),(31227,0,131327,'Oribi Gorge','South Africa','ZA','Oribi Gorge (South Africa)',1,1,0),(31228,20263,131328,'Ormont-Dessus','Switzerland','CH','Ormont-Dessus (Switzerland)',1,1,0),(31229,0,131329,'Ornans','France','FR','Ornans (France)',1,1,0),(31230,20276,131330,'Oroso','Spain','ES','Oroso (Spain)',1,1,0),(31231,20278,131331,'Orpheus Island','Australia','AU','Orpheus Island (Australia)',1,1,0),(31232,0,131332,'Orta Nova','Italy','IT','Orta Nova (Italy)',1,1,0),(31233,0,131333,'Ortahisar','Turkey','TR','Ortahisar (Turkey)',1,1,0),(31234,0,131334,'Ortigueira','Spain','ES','Ortigueira (Spain)',1,1,0),(31235,0,131335,'Ortuella','Spain','ES','Ortuella (Spain)',1,1,0),(31236,0,131336,'Osage Beach','United States of America','US','Osage Beach (United States of America)',1,1,0),(31237,20299,131337,'Osceola','United States of America','US','Osceola (United States of America)',1,1,0),(31238,0,131338,'Oseja de Sajambre','Spain','ES','Oseja de Sajambre (Spain)',1,1,0),(31239,20326,131339,'Osnabruck','Germany','DE','Osnabruck (Germany)',1,1,0),(31240,0,131340,'Ossendrecht','Netherlands','NL','Ossendrecht (Netherlands)',1,1,0),(31241,20340,131341,'Ossiach','Austria','AT','Ossiach (Austria)',1,1,0),(31242,0,131342,'Osteel','Germany','DE','Osteel (Germany)',1,1,0),(31243,0,131343,'Oster Hurup','Denmark','DK','Oster Hurup (Denmark)',1,1,0),(31244,0,131344,'Osterburg','Germany','DE','Osterburg (Germany)',1,1,0),(31245,0,131345,'Osterfarnebo','Sweden','SE','Osterfarnebo (Sweden)',1,1,0),(31246,0,131346,'Osterwieck','Germany','DE','Osterwieck (Germany)',1,1,0),(31247,0,131347,'Osthoffen','France','FR','Osthoffen (France)',1,1,0),(31248,0,131348,'Ostrhauderfehn','Germany','DE','Ostrhauderfehn (Germany)',1,1,0),(31249,20370,131349,'Osuna','Spain','ES','Osuna (Spain)',1,1,0),(31250,20379,131350,'Otaru','Japan','JP','Otaru (Japan)',1,1,0),(31251,20380,131351,'Otavalo','Ecuador','EC','Otavalo (Ecuador)',1,1,0),(31252,20392,131352,'Otsego','United States of America','US','Otsego (United States of America)',1,1,0),(31253,20404,131353,'Ottertail','United States of America','US','Ottertail (United States of America)',1,1,0),(31254,0,131354,'Ottiglio','Italy','IT','Ottiglio (Italy)',1,1,0),(31255,20408,131355,'Ottobrunn','Germany','DE','Ottobrunn (Germany)',1,1,0),(31256,20412,131356,'Ottumwa','United States of America','US','Ottumwa (United States of America)',1,1,0),(31257,0,131357,'Oucques','France','FR','Oucques (France)',1,1,0),(31258,0,131358,'Oudemirdum','Netherlands','NL','Oudemirdum (Netherlands)',1,1,0),(31259,20421,131359,'Oudenaarde','Belgium','BE','Oudenaarde (Belgium)',1,1,0),(31260,0,131360,'Oundle','United Kingdom','UK','Oundle (United Kingdom)',1,1,0),(31261,20444,131361,'Ouranoupolis','Greece','GR','Ouranoupolis (Greece)',1,1,0),(31262,0,131362,'Ourika','Morocco','MA','Ourika (Morocco)',1,1,0),(31263,0,131363,'Ouroux-en-Morvan','France','FR','Ouroux-en-Morvan (France)',1,1,0),(31264,0,131364,'Outram','New Zealand','NZ','Outram (New Zealand)',1,1,0),(31265,20463,131365,'Ovar','Portugal','PT','Ovar (Portugal)',1,1,0),(31266,20474,131366,'Oviedo','Spain','ES','Oviedo (Spain)',1,1,0),(31267,20477,131367,'Oviglio','Italy','IT','Oviglio (Italy)',1,1,0),(31268,0,131368,'Oxford','United States of America','US','Oxford (United States of America)',1,1,0),(31269,0,131369,'Oyster Pond','Saint Martin (French part)','MF','Oyster Pond (Saint Martin (French part))',1,1,0),(31270,0,131370,'Ozark','United States of America','US','Ozark (United States of America)',1,1,0),(31271,20528,131371,'Paciano','Italy','IT','Paciano (Italy)',1,1,0),(31272,20531,131372,'Pacific Palms','Australia','AU','Pacific Palms (Australia)',1,1,0),(31273,20542,131373,'Padenghe Sul Garda','Italy','IT','Padenghe Sul Garda (Italy)',1,1,0),(31274,20544,131374,'Paderno del Grappa','Italy','IT','Paderno del Grappa (Italy)',1,1,0),(31275,0,131376,'Pahena','Greece','GR','Pahena (Greece)',1,1,0),(31276,20569,131377,'Pahrump','United States of America','US','Pahrump (United States of America)',1,1,0),(31277,0,131378,'Paignton','United Kingdom','UK','Paignton (United Kingdom)',1,1,0),(31278,20574,131379,'Pailin','Cambodia','KH','Pailin (Cambodia)',1,1,0),(31279,20587,131380,'Pajara','Spain','ES','Pajara (Spain)',1,1,0),(31280,20590,131381,'Paka','Malaysia','MY','Paka (Malaysia)',1,1,0),(31281,0,131382,'Pakiri','New Zealand','NZ','Pakiri (New Zealand)',1,1,0),(31282,0,131383,'Paknambran','Thailand','TH','Paknambran (Thailand)',1,1,0),(31283,0,131384,'Palacios de Valduerna','Spain','ES','Palacios de Valduerna (Spain)',1,1,0),(31284,20614,131385,'Palau','Italy','IT','Palau (Italy)',1,1,0),(31285,20617,131386,'Palawan','Philippines','PH','Palawan (Philippines)',1,1,0),(31286,20623,131387,'Palenque','Mexico','MX','Palenque (Mexico)',1,1,0),(31287,0,131388,'Palermo','Italy','IT','Palermo (Italy)',1,1,0),(31288,0,131389,'Palfau','Austria','AT','Palfau (Austria)',1,1,0),(31289,0,131390,'Pallas-Yllastunturi-Nationalpark','Finland','FI','Pallas-Yllastunturi-Nationalpark (Finland)',1,1,0),(31290,34739,131391,'Palm Cove','Australia','AU','Palm Cove (Australia)',1,1,0),(31291,0,131393,'Panama City Beach','United States of America','US','Panama City Beach (United States of America)',1,1,0),(31292,20705,131395,'Pandeglang','Indonesia','ID','Pandeglang (Indonesia)',1,1,0),(31293,0,131396,'Pando','Spain','ES','Pando (Spain)',1,1,0),(31294,20709,131397,'Panevezys','Lithuania','LT','Panevezys (Lithuania)',1,1,0),(31295,20725,131399,'Panker','Germany','DE','Panker (Germany)',1,1,0),(31296,0,131400,'Pantai Kok','Malaysia','MY','Pantai Kok (Malaysia)',1,1,0),(31297,20735,131401,'Pantelleria','Italy','IT','Pantelleria (Italy)',1,1,0),(31298,0,131402,'Panza','Italy','IT','Panza (Italy)',1,1,0),(31299,20750,131403,'Papallacta','Ecuador','EC','Papallacta (Ecuador)',1,1,0),(31300,0,131404,'Paquera','Costa Rica','CR','Paquera (Costa Rica)',1,1,0),(31301,0,131405,'Paradsasvar','Hungary','HU','Paradsasvar (Hungary)',1,1,0),(31302,0,131407,'Parchtitz','Germany','DE','Parchtitz (Germany)',1,1,0),(31303,20822,131408,'Paris','France','FR','Paris (France)',1,1,0),(31304,0,131409,'Parkers Prairie','United States of America','US','Parkers Prairie (United States of America)',1,1,0),(31305,20843,131410,'Parnaiba','Brazil','BR','Parnaiba (Brazil)',1,1,0),(31306,0,131411,'Paros','Greece','GR','Paros (Greece)',1,1,0),(31307,20854,131412,'Parowan','United States of America','US','Parowan (United States of America)',1,1,0),(31308,0,131413,'Parroquia Chontayacu','Ecuador','EC','Parroquia Chontayacu (Ecuador)',1,1,0),(31309,20863,131414,'Parrottsville','United States of America','US','Parrottsville (United States of America)',1,1,0),(31310,20871,131415,'Parthenonas','Greece','GR','Parthenonas (Greece)',1,1,0),(31311,20873,131416,'Pas de la Casa','Andorra','AD','Pas de la Casa (Andorra)',1,1,0),(31312,0,131417,'Pasadena','United States of America','US','Pasadena (United States of America)',1,1,0),(31313,20875,131418,'Pasaron de la Vera','Spain','ES','Pasaron de la Vera (Spain)',1,1,0),(31314,0,131419,'Pastrana','Spain','ES','Pastrana (Spain)',1,1,0),(31315,0,131420,'Pastviny','Czech Republic','CZ','Pastviny (Czech Republic)',1,1,0),(31316,20898,131421,'Patara','Turkey','TR','Patara (Turkey)',1,1,0),(31317,20904,131422,'Paternoster','South Africa','ZA','Paternoster (South Africa)',1,1,0),(31318,0,131423,'Patsch','Austria','AT','Patsch (Austria)',1,1,0),(31319,0,131424,'Pattingham','United Kingdom','UK','Pattingham (United Kingdom)',1,1,0),(31320,20940,131425,'Paulpietersburg','South Africa','ZA','Paulpietersburg (South Africa)',1,1,0),(31321,20947,131426,'Paw Paw','United States of America','US','Paw Paw (United States of America)',1,1,0),(31322,0,131427,'Payerne','Switzerland','CH','Payerne (Switzerland)',1,1,0),(31323,20961,131428,'Payson','United States of America','US','Payson (United States of America)',1,1,0),(31324,0,131429,'Peal de Becerro','Spain','ES','Peal de Becerro (Spain)',1,1,0),(31325,20976,131430,'Pearsall','United States of America','US','Pearsall (United States of America)',1,1,0),(31326,20982,131431,'Peccioli','Italy','IT','Peccioli (Italy)',1,1,0),(31327,0,131432,'Pedaso','Italy','IT','Pedaso (Italy)',1,1,0),(31328,0,131433,'Pandan Indah','Malaysia','MY','Pandan Indah (Malaysia)',1,1,0),(31329,0,131434,'Pangkor Laut','Malaysia','MY','Pangkor Laut (Malaysia)',1,1,0),(31330,20720,131435,'Panguitch','United States of America','US','Panguitch (United States of America)',1,1,0),(31331,0,131436,'Panketal','Germany','DE','Panketal (Germany)',1,1,0),(31332,0,131438,'Pannegamuwa','Sri Lanka','LK','Pannegamuwa (Sri Lanka)',1,1,0),(31333,0,131439,'Pannes','France','FR','Pannes (France)',1,1,0),(31334,0,131440,'Pansfelde','Germany','DE','Pansfelde (Germany)',1,1,0),(31335,20740,131441,'Panton','Spain','ES','Panton (Spain)',1,1,0),(31336,0,131442,'Papa','Hungary','HU','Papa (Hungary)',1,1,0),(31337,0,131443,'Papara','French Polynesia','PF','Papara (French Polynesia)',1,1,0),(31338,20757,131444,'Papenburg','Germany','DE','Papenburg (Germany)',1,1,0),(31339,0,131445,'Paracuru','Brazil','BR','Paracuru (Brazil)',1,1,0),(31340,20772,131446,'Paradise','United States of America','US','Paradise (United States of America)',1,1,0),(31341,20782,131447,'Paraiso','Mexico','MX','Paraiso (Mexico)',1,1,0),(31342,0,131448,'Parajuru','Brazil','BR','Parajuru (Brazil)',1,1,0),(31343,20785,131449,'Paralio Astros','Greece','GR','Paralio Astros (Greece)',1,1,0),(31344,20787,131450,'Paramus','United States of America','US','Paramus (United States of America)',1,1,0),(31345,20794,131451,'Paraparaumu','New Zealand','NZ','Paraparaumu (New Zealand)',1,1,0),(31346,0,131452,'Parasporos','Greece','GR','Parasporos (Greece)',1,1,0),(31347,0,131453,'Parauapebas','Brazil','BR','Parauapebas (Brazil)',1,1,0),(31348,20828,131454,'Parkes','Australia','AU','Parkes (Australia)',1,1,0),(31349,20836,131455,'Parksville','Canada','CA','Parksville (Canada)',1,1,0),(31350,20846,131456,'Parndorf','Austria','AT','Parndorf (Austria)',1,1,0),(31351,0,131457,'Parnica','Slovakia','SK','Parnica (Slovakia)',1,1,0),(31352,20857,131458,'Parramatta','Australia','AU','Parramatta (Australia)',1,1,0),(31353,20861,131459,'Parrita','Costa Rica','CR','Parrita (Costa Rica)',1,1,0),(31354,0,131460,'Partenen','Austria','AT','Partenen (Austria)',1,1,0),(31355,20878,131461,'Pasco','United States of America','US','Pasco (United States of America)',1,1,0),(31356,0,131462,'Pasman','Croatia','HR','Pasman (Croatia)',1,1,0),(31357,0,131463,'Passade','Germany','DE','Passade (Germany)',1,1,0),(31358,0,131464,'Passekudah','Sri Lanka','LK','Passekudah (Sri Lanka)',1,1,0),(31359,0,131465,'Passos','Brazil','BR','Passos (Brazil)',1,1,0),(31360,0,131466,'Pastrengo','Italy','IT','Pastrengo (Italy)',1,1,0),(31361,20903,131467,'Paterna','Spain','ES','Paterna (Spain)',1,1,0),(31362,20906,131468,'Paterson','United States of America','US','Paterson (United States of America)',1,1,0),(31363,0,131469,'Patterdale','United Kingdom','UK','Patterdale (United Kingdom)',1,1,0),(31364,20928,131470,'Patti','Italy','IT','Patti (Italy)',1,1,0),(31365,0,131471,'Pau','France','FR','Pau (France)',1,1,0),(31366,20936,131472,'Paul do Mar','Portugal','PT','Paul do Mar (Portugal)',1,1,0),(31367,20941,131473,'Pauls Valley','United States of America','US','Pauls Valley (United States of America)',1,1,0),(31368,20955,131474,'Payerbach','Austria','AT','Payerbach (Austria)',1,1,0),(31369,20993,131475,'Pedemonte','Italy','IT','Pedemonte (Italy)',1,1,0),(31370,0,131476,'Pedhoulas','Cyprus','CY','Pedhoulas (Cyprus)',1,1,0),(31371,21005,131477,'Peer','Belgium','BE','Peer (Belgium)',1,1,0),(31372,21007,131478,'Pefkos','Greece','GR','Pefkos (Greece)',1,1,0),(31373,21016,131479,'Peillon','France','FR','Peillon (France)',1,1,0),(31374,0,131480,'Peio Terme','Italy','IT','Peio Terme (Italy)',1,1,0),(31375,0,131481,'Pejo Fonti','Italy','IT','Pejo Fonti (Italy)',1,1,0),(31376,21027,131482,'Pekin','United States of America','US','Pekin (United States of America)',1,1,0),(31377,21033,131483,'Pelago','Italy','IT','Pelago (Italy)',1,1,0),(31378,21052,131484,'Pemba','Mozambique','MZ','Pemba (Mozambique)',1,1,0),(31379,21064,131485,'Pemuteran','Indonesia','ID','Pemuteran (Indonesia)',1,1,0),(31380,0,131486,'Penalva de Alva','Portugal','PT','Penalva de Alva (Portugal)',1,1,0),(31381,21083,131487,'Penestin','France','FR','Penestin (France)',1,1,0),(31382,0,131488,'Penghu','Taiwan','TW','Penghu (Taiwan)',1,1,0),(31383,0,131489,'Pengkalan Gawi','Malaysia','MY','Pengkalan Gawi (Malaysia)',1,1,0),(31384,0,131490,'Penicuik','United Kingdom','UK','Penicuik (United Kingdom)',1,1,0),(31385,21095,131491,'Penneshaw','Australia','AU','Penneshaw (Australia)',1,1,0),(31386,21105,131492,'Penrith','Australia','AU','Penrith (Australia)',1,1,0),(31387,0,131493,'Pentakomo','Cyprus','CY','Pentakomo (Cyprus)',1,1,0),(31388,21114,131494,'Pentwater','United States of America','US','Pentwater (United States of America)',1,1,0),(31389,0,131495,'Peraia','Greece','GR','Peraia (Greece)',1,1,0),(31390,21128,131496,'Perce','Canada','CA','Perce (Canada)',1,1,0),(31391,0,131497,'Perea','Greece','GR','Perea (Greece)',1,1,0),(31392,0,131498,'Perigueux-Chancelade','France','FR','Perigueux-Chancelade (France)',1,1,0),(31393,21151,131499,'Perissa','Greece','GR','Perissa (Greece)',1,1,0),(31394,21154,131500,'Perivolos','Greece','GR','Perivolos (Greece)',1,1,0),(31395,0,131501,'Perm','Russia','RU','Perm (Russia)',1,1,0),(31396,0,131502,'Pernes Les Fontaines','France','FR','Pernes Les Fontaines (France)',1,1,0),(31397,21177,131503,'Perry','United States of America','US','Perry (United States of America)',1,1,0),(31398,0,131504,'Perstorp','Sweden','SE','Perstorp (Sweden)',1,1,0),(31399,0,131505,'Peruyes','Spain','ES','Peruyes (Spain)',1,1,0),(31400,0,131506,'Pervouralsk','Russia','RU','Pervouralsk (Russia)',1,1,0),(31401,0,131507,'Peschtera','Bulgaria','BG','Peschtera (Bulgaria)',1,1,0),(31402,0,131508,'Pesterwitz','Germany','DE','Pesterwitz (Germany)',1,1,0),(31403,0,131509,'Peterhead','United Kingdom','UK','Peterhead (United Kingdom)',1,1,0),(31404,0,131510,'Petershagen/Eggersdorf','Germany','DE','Petershagen/Eggersdorf (Germany)',1,1,0),(31405,0,131511,'Petkus','Germany','DE','Petkus (Germany)',1,1,0),(31406,0,131512,'Petrosani','Romania','RO','Petrosani (Romania)',1,1,0),(31407,0,131513,'Petten','Netherlands','NL','Petten (Netherlands)',1,1,0),(31408,21259,131514,'Pettenasco','Italy','IT','Pettenasco (Italy)',1,1,0),(31409,0,131515,'Petworth','United Kingdom','UK','Petworth (United Kingdom)',1,1,0),(31410,21268,131516,'Pewaukee','United States of America','US','Pewaukee (United States of America)',1,1,0),(31411,0,131517,'Peymeinnade','France','FR','Peymeinnade (France)',1,1,0),(31412,0,131518,'Pezinok','Slovakia','SK','Pezinok (Slovakia)',1,1,0),(31413,0,131519,'Pfarrweisach','Germany','DE','Pfarrweisach (Germany)',1,1,0),(31414,0,131520,'Pfons','Austria','AT','Pfons (Austria)',1,1,0),(31415,21282,131521,'Pforzheim','Germany','DE','Pforzheim (Germany)',1,1,0),(31416,21285,131522,'Pfullingen','Germany','DE','Pfullingen (Germany)',1,1,0),(31417,0,131524,'Philippsheim','Germany','DE','Philippsheim (Germany)',1,1,0),(31418,21303,131525,'Philipsburg','United States of America','US','Philipsburg (United States of America)',1,1,0),(31419,21306,131526,'Phillips','United States of America','US','Phillips (United States of America)',1,1,0),(31420,21313,131527,'Phnom Penh','Cambodia','KH','Phnom Penh (Cambodia)',1,1,0),(31421,0,131528,'Phonsavan','LAOS','LA','Phonsavan (LAOS)',1,1,0),(31422,21319,131529,'Phuket','Thailand','TH','Phuket (Thailand)',1,1,0),(31423,0,131530,'Piacabucu','Brazil','BR','Piacabucu (Brazil)',1,1,0),(31424,0,131531,'Pian Cavallo','Italy','IT','Pian Cavallo (Italy)',1,1,0),(31425,21342,131532,'Picerno','Italy','IT','Picerno (Italy)',1,1,0),(31426,21364,131533,'Piedmont','Canada','CA','Piedmont (Canada)',1,1,0),(31427,21367,131534,'Piegaro','Italy','IT','Piegaro (Italy)',1,1,0),(31428,21369,131535,'Pienza','Italy','IT','Pienza (Italy)',1,1,0),(31429,21380,131536,'Pierrelatte','France','FR','Pierrelatte (France)',1,1,0),(31430,0,131537,'Piesport','Germany','DE','Piesport (Germany)',1,1,0),(31431,21383,131538,'Pietermaritzburg','South Africa','ZA','Pietermaritzburg (South Africa)',1,1,0),(31432,0,131539,'Pigi','Greece','GR','Pigi (Greece)',1,1,0),(31433,0,131540,'Pigianos Kambos','Greece','GR','Pigianos Kambos (Greece)',1,1,0),(31434,0,131541,'Piispala','Finland','FI','Piispala (Finland)',1,1,0),(31435,21407,131542,'Pilar','Argentina','AR','Pilar (Argentina)',1,1,0),(31436,0,131543,'Pilgrim\' s Rest','South Africa','ZA','Pilgrim\' s Rest (South Africa)',1,1,0),(31437,0,131545,'Pany','Switzerland','CH','Pany (Switzerland)',1,1,0),(31438,20745,131546,'Paola','United States of America','US','Paola (United States of America)',1,1,0),(31439,0,131547,'Papa Nero-Beach','Greece','GR','Papa Nero-Beach (Greece)',1,1,0),(31440,20756,131548,'Papeete','French Polynesia','PF','Papeete (French Polynesia)',1,1,0),(31441,0,131549,'Paradise','United States of America','US','Paradise (United States of America)',1,1,0),(31442,0,131550,'Paragominas','Brazil','BR','Paragominas (Brazil)',1,1,0),(31443,20795,131551,'Parapat','Indonesia','ID','Parapat (Indonesia)',1,1,0),(31444,0,131553,'Parike-Brakel','Belgium','BE','Parike-Brakel (Belgium)',1,1,0),(31445,0,131554,'Parikkala','Finland','FI','Parikkala (Finland)',1,1,0),(31446,0,131555,'Paris','United States of America','US','Paris (United States of America)',1,1,0),(31447,0,131556,'Parkano','Finland','FI','Parkano (Finland)',1,1,0),(31448,20825,131557,'Parker','United States of America','US','Parker (United States of America)',1,1,0),(31449,20827,131558,'Parkersburg','United States of America','US','Parkersburg (United States of America)',1,1,0),(31450,0,131559,'Parres','Spain','ES','Parres (Spain)',1,1,0),(31451,20864,131560,'Parry Sound','Canada','CA','Parry Sound (Canada)',1,1,0),(31452,20865,131561,'Parsberg','Germany','DE','Parsberg (Germany)',1,1,0),(31453,20869,131562,'Parsons','United States of America','US','Parsons (United States of America)',1,1,0),(31454,0,131563,'Pasay City','Philippines','PH','Pasay City (Philippines)',1,1,0),(31455,0,131564,'Pasir Puteh','Malaysia','MY','Pasir Puteh (Malaysia)',1,1,0),(31456,0,131565,'Paternion','Austria','AT','Paternion (Austria)',1,1,0),(31457,0,131566,'Paterzell','Germany','DE','Paterzell (Germany)',1,1,0),(31458,0,131567,'Pathhead','United Kingdom','UK','Pathhead (United Kingdom)',1,1,0),(31459,0,131568,'Patitiri','Greece','GR','Patitiri (Greece)',1,1,0),(31460,20932,131569,'Pauanui','New Zealand','NZ','Pauanui (New Zealand)',1,1,0),(31461,0,131570,'Pauli Arbarei','Italy','IT','Pauli Arbarei (Italy)',1,1,0),(31462,0,131571,'Paulo Afonso','Brazil','BR','Paulo Afonso (Brazil)',1,1,0),(31463,0,131572,'Pavicini','Croatia','HR','Pavicini (Croatia)',1,1,0),(31464,20948,131573,'Pawcatuck','United States of America','US','Pawcatuck (United States of America)',1,1,0),(31465,20954,131574,'Payangan','Indonesia','ID','Payangan (Indonesia)',1,1,0),(31466,0,131575,'Pazardzhik','Bulgaria','BG','Pazardzhik (Bulgaria)',1,1,0),(31467,20964,131576,'Peabody','United States of America','US','Peabody (United States of America)',1,1,0),(31468,0,131577,'Peach Spring','United States of America','US','Peach Spring (United States of America)',1,1,0),(31469,20970,131578,'Pearce','United States of America','US','Pearce (United States of America)',1,1,0),(31470,20972,131579,'Pearl','United States of America','US','Pearl (United States of America)',1,1,0),(31471,0,131580,'Pecem','Brazil','BR','Pecem (Brazil)',1,1,0),(31472,20987,131581,'Pecos','United States of America','US','Pecos (United States of America)',1,1,0),(31473,0,131582,'Pedernales','Dominican Republic','DO','Pedernales (Dominican Republic)',1,1,0),(31474,0,131583,'Pefkari','Greece','GR','Pefkari (Greece)',1,1,0),(31475,0,131584,'Pelekas','Greece','GR','Pelekas (Greece)',1,1,0),(31476,21036,131585,'Pelham','United States of America','US','Pelham (United States of America)',1,1,0),(31477,0,131586,'Pellaro','Italy','IT','Pellaro (Italy)',1,1,0),(31478,21050,131587,'Pelvoux','France','FR','Pelvoux (France)',1,1,0),(31479,0,131588,'Pelzerhaken Seaside Resort','Germany','DE','Pelzerhaken Seaside Resort (Germany)',1,1,0),(31480,0,131589,'Pematang Siantar','Indonesia','ID','Pematang Siantar (Indonesia)',1,1,0),(31481,21067,131590,'Penafiel','Spain','ES','Penafiel (Spain)',1,1,0),(31482,0,131591,'Penafirme','Portugal','PT','Penafirme (Portugal)',1,1,0),(31483,21102,131592,'Penonome','Panama','PA','Penonome (Panama)',1,1,0),(31484,21132,131593,'Perdika','Greece','GR','Perdika (Greece)',1,1,0),(31485,0,131594,'Pereybere','Belgium','BE','Pereybere (Belgium)',1,1,0),(31486,0,131595,'Perez Zeledon','Costa Rica','CR','Perez Zeledon (Costa Rica)',1,1,0),(31487,0,131596,'Pergine Val d\'Arno','Italy','IT','Pergine Val d\'Arno (Italy)',1,1,0),(31488,21170,131598,'Peroulades','Greece','GR','Peroulades (Greece)',1,1,0),(31489,0,131599,'Perranporth','United Kingdom','UK','Perranporth (United Kingdom)',1,1,0),(31490,0,131600,'Perrefitte','Switzerland','CH','Perrefitte (Switzerland)',1,1,0),(31491,0,131601,'Pertosa','Italy','IT','Pertosa (Italy)',1,1,0),(31492,0,131602,'Peru','United States of America','US','Peru (United States of America)',1,1,0),(31493,0,131603,'Pescul','Italy','IT','Pescul (Italy)',1,1,0),(31494,21209,131604,'Peso da Regua','Portugal','PT','Peso da Regua (Portugal)',1,1,0),(31495,21211,131605,'Pessac','France','FR','Pessac (France)',1,1,0),(31496,21215,131606,'Petawawa','Canada','CA','Petawawa (Canada)',1,1,0),(31497,21234,131607,'Petite-Foret','France','FR','Petite-Foret (France)',1,1,0),(31498,0,131608,'Petite-Riviere-Saint-Francois','Canada','CA','Petite-Riviere-Saint-Francois (Canada)',1,1,0),(31499,32417,131609,'Petra','Greece','GR','Petra (Greece)',1,1,0),(31500,0,131610,'Petriti','Greece','GR','Petriti (Greece)',1,1,0),(31501,0,131611,'Petronell-Carnuntum','Austria','AT','Petronell-Carnuntum (Austria)',1,1,0),(31502,21270,131612,'Peyia','Cyprus','CY','Peyia (Cyprus)',1,1,0),(31503,0,131613,'Pfaffendorf','Germany','DE','Pfaffendorf (Germany)',1,1,0),(31504,0,131614,'Pfelders','Italy','IT','Pfelders (Italy)',1,1,0),(31505,0,131615,'Pfunds','Austria','AT','Pfunds (Austria)',1,1,0),(31506,0,131616,'Phalsbourg','France','FR','Phalsbourg (France)',1,1,0),(31507,21295,131617,'Phelan','United States of America','US','Phelan (United States of America)',1,1,0),(31508,21296,131618,'Phelps','United States of America','US','Phelps (United States of America)',1,1,0),(31509,0,131619,'Philipp Island','Australia','AU','Philipp Island (Australia)',1,1,0),(31510,21317,131620,'Phrae','Thailand','TH','Phrae (Thailand)',1,1,0),(31511,21324,131621,'Piana degli Albanesi','Italy','IT','Piana degli Albanesi (Italy)',1,1,0),(31512,21327,131622,'Pianella','Italy','IT','Pianella (Italy)',1,1,0),(31513,21328,131623,'Pianezza','Italy','IT','Pianezza (Italy)',1,1,0),(31514,32423,131624,'Piano di Sorrento','Italy','IT','Piano di Sorrento (Italy)',1,1,0),(31515,21329,131625,'Pianopoli','Italy','IT','Pianopoli (Italy)',1,1,0),(31516,0,131626,'Piatra Fantanele','Romania','RO','Piatra Fantanele (Romania)',1,1,0),(31517,21335,131627,'Piatra Neamt','Romania','RO','Piatra Neamt (Romania)',1,1,0),(31518,0,131628,'Pico','Portugal','PT','Pico (Portugal)',1,1,0),(31519,0,131629,'Pico do Arieiro','Portugal','PT','Pico do Arieiro (Portugal)',1,1,0),(31520,0,131630,'Pidre','Spain','ES','Pidre (Spain)',1,1,0),(31521,21384,131631,'Pietra Ligure','Italy','IT','Pietra Ligure (Italy)',1,1,0),(31522,0,131632,'Pieve di Compito','Italy','IT','Pieve di Compito (Italy)',1,1,0),(31523,0,131633,'Pieve di Ledro','Italy','IT','Pieve di Ledro (Italy)',1,1,0),(31524,21390,131634,'Pievescola','Italy','IT','Pievescola (Italy)',1,1,0),(31525,0,131635,'Pifo','Ecuador','EC','Pifo (Ecuador)',1,1,0),(31526,0,131636,'Pigadakia','Greece','GR','Pigadakia (Greece)',1,1,0),(31527,0,131637,'Pigeon Forge','United States of America','US','Pigeon Forge (United States of America)',1,1,0),(31528,0,131638,'Pill','Austria','AT','Pill (Austria)',1,1,0),(31529,0,131639,'Pillersee','Austria','AT','Pillersee (Austria)',1,1,0),(31530,21412,131640,'Pilona','Spain','ES','Pilona (Spain)',1,1,0),(31531,0,131641,'Pina de Esgueva','Spain','ES','Pina de Esgueva (Spain)',1,1,0),(31532,0,131642,'Pine Cay','Turks & Caicos Islands',NULL,'Pine Cay (Turks & Caicos Islands)',1,1,0),(31533,21438,131643,'Piney','France','FR','Piney (France)',1,1,0),(31534,21441,131644,'Pinghu','China','CN','Pinghu (China)',1,1,0),(31535,21447,131645,'Pinhao','Portugal','PT','Pinhao (Portugal)',1,1,0),(31536,0,131646,'Pino Santo','Spain','ES','Pino Santo (Spain)',1,1,0),(31537,0,131647,'Pinofranqueado','Spain','ES','Pinofranqueado (Spain)',1,1,0),(31538,0,131648,'Piossasco','Italy','IT','Piossasco (Italy)',1,1,0),(31539,21470,131649,'Piraino','Italy','IT','Piraino (Italy)',1,1,0),(31540,0,131650,'Pirassununga','Brazil','BR','Pirassununga (Brazil)',1,1,0),(31541,21479,131651,'Pisac','Peru','PE','Pisac (Peru)',1,1,0),(31542,0,131652,'Pischelsdorf','Austria','AT','Pischelsdorf (Austria)',1,1,0),(31543,21498,131653,'Pitea','Sweden','SE','Pitea (Sweden)',1,1,0),(31544,0,131654,'Pittenhart','Germany','DE','Pittenhart (Germany)',1,1,0),(31545,21509,131655,'Pittsburg','United States of America','US','Pittsburg (United States of America)',1,1,0),(31546,0,131656,'Oradour-sur-Vayres','France','FR','Oradour-sur-Vayres (France)',1,1,0),(31547,0,131657,'Orange','United States of America','US','Orange (United States of America)',1,1,0),(31548,0,131658,'Orange City','United States of America','US','Orange City (United States of America)',1,1,0),(31549,0,131659,'Oranienburg','Germany','DE','Oranienburg (Germany)',1,1,0),(31550,20195,131660,'Oranmore','Ireland','IE','Oranmore (Ireland)',1,1,0),(31551,20197,131661,'Orbassano','Italy','IT','Orbassano (Italy)',1,1,0),(31552,20199,131662,'Orbetello','Italy','IT','Orbetello (Italy)',1,1,0),(31553,20200,131663,'Orbey','France','FR','Orbey (France)',1,1,0),(31554,0,131664,'Oren / Mugla','Turkey','TR','Oren / Mugla (Turkey)',1,1,0),(31555,0,131665,'Orenburg','Russia','RU','Orenburg (Russia)',1,1,0),(31556,20242,131666,'Orihuela','Spain','ES','Orihuela (Spain)',1,1,0),(31557,0,131667,'Orimattila','Finland','FI','Orimattila (Finland)',1,1,0),(31558,0,131668,'Orinoco Delta','Venezuela','VE','Orinoco Delta (Venezuela)',1,1,0),(31559,0,131669,'Orio','Spain','ES','Orio (Spain)',1,1,0),(31560,0,131670,'Orlowka','Russia','RU','Orlowka (Russia)',1,1,0),(31561,0,131671,'Ornolac-Ussat-les-Bains','France','FR','Ornolac-Ussat-les-Bains (France)',1,1,0),(31562,20273,131672,'Oropesa','Spain','ES','Oropesa (Spain)',1,1,0),(31563,0,131673,'Orta San Giulio','Italy','IT','Orta San Giulio (Italy)',1,1,0),(31564,0,131674,'Orth an der Donau','Austria','AT','Orth an der Donau (Austria)',1,1,0),(31565,20287,131675,'Orthez','France','FR','Orthez (France)',1,1,0),(31566,0,131676,'Ortigosa','Spain','ES','Ortigosa (Spain)',1,1,0),(31567,0,131677,'Orzola','Spain','ES','Orzola (Spain)',1,1,0),(31568,0,131678,'Osceola','United States of America','US','Osceola (United States of America)',1,1,0),(31569,0,131679,'Oschatz','Germany','DE','Oschatz (Germany)',1,1,0),(31570,0,131680,'Oschersleben (Bode)','Germany','DE','Oschersleben (Bode) (Germany)',1,1,0),(31571,0,131681,'Osco','Switzerland','CH','Osco (Switzerland)',1,1,0),(31572,20301,131682,'Oscoda','United States of America','US','Oscoda (United States of America)',1,1,0),(31573,20304,131683,'Oshakati','Namibia','NA','Oshakati (Namibia)',1,1,0),(31574,20308,131684,'Osijek','Croatia','HR','Osijek (Croatia)',1,1,0),(31575,20348,131685,'Osterfeld','Germany','DE','Osterfeld (Germany)',1,1,0),(31576,20353,131686,'Ostersund','Sweden','SE','Ostersund (Sweden)',1,1,0),(31577,20355,131687,'Ostfildern','Germany','DE','Ostfildern (Germany)',1,1,0),(31578,0,131688,'Osthammar','Sweden','SE','Osthammar (Sweden)',1,1,0),(31579,0,131689,'Ostional','Costa Rica','CR','Ostional (Costa Rica)',1,1,0),(31580,0,131690,'Ostrich-Winkel','Germany','DE','Ostrich-Winkel (Germany)',1,1,0),(31581,20362,131691,'Ostringen','Germany','DE','Ostringen (Germany)',1,1,0),(31582,0,131692,'Ostrow Wielki','Poland','PL','Ostrow Wielki (Poland)',1,1,0),(31583,0,131693,'Ostrowiec Swietokrzyski','Poland','PL','Ostrowiec Swietokrzyski (Poland)',1,1,0),(31584,20371,131694,'Oswego','United States of America','US','Oswego (United States of America)',1,1,0),(31585,20383,131695,'Otepaa','Estonia','EE','Otepaa (Estonia)',1,1,0),(31586,0,131696,'Otopeni','Romania','RO','Otopeni (Romania)',1,1,0),(31587,20397,131697,'Ottawa','United States of America','US','Ottawa (United States of America)',1,1,0),(31588,20399,131698,'Otterberg','Germany','DE','Otterberg (Germany)',1,1,0),(31589,20422,131699,'Oudenburg','Belgium','BE','Oudenburg (Belgium)',1,1,0),(31590,20425,131700,'Oudkerk','Netherlands','NL','Oudkerk (Netherlands)',1,1,0),(31591,20432,131701,'Ouirgane','Morocco','MA','Ouirgane (Morocco)',1,1,0),(31592,0,131702,'Oura-Beach','Portugal','PT','Oura-Beach (Portugal)',1,1,0),(31593,0,131703,'Ousse','France','FR','Ousse (France)',1,1,0),(31594,0,131704,'Ouzoud','Morocco','MA','Ouzoud (Morocco)',1,1,0),(31595,0,131705,'Ovacik','Turkey','TR','Ovacik (Turkey)',1,1,0),(31596,20460,131706,'Ovada','Italy','IT','Ovada (Italy)',1,1,0),(31597,20461,131707,'Ovalle','Chile','CL','Ovalle (Chile)',1,1,0),(31598,20478,131708,'Ovindoli','Italy','IT','Ovindoli (Italy)',1,1,0),(31599,20494,131709,'Oxelosund','Sweden','SE','Oxelosund (Sweden)',1,1,0),(31600,0,131710,'Paajarvi','Finland','FI','Paajarvi (Finland)',1,1,0),(31601,0,131711,'Paal','Belgium','BE','Paal (Belgium)',1,1,0),(31602,0,131712,'Pacific Grove','United States of America','US','Pacific Grove (United States of America)',1,1,0),(31603,0,131713,'Padborg','Denmark','DK','Padborg (Denmark)',1,1,0),(31604,0,131714,'Padis','Romania','RO','Padis (Romania)',1,1,0),(31605,0,131715,'Padstow','United Kingdom','UK','Padstow (United Kingdom)',1,1,0),(31606,0,131716,'Padul','Spain','ES','Padul (Spain)',1,1,0),(31607,20554,131717,'Paestum','Italy','IT','Paestum (Italy)',1,1,0),(31608,20565,131718,'Pahala','United States of America','US','Pahala (United States of America)',1,1,0),(31609,20571,131719,'Paide','Estonia','EE','Paide (Estonia)',1,1,0),(31610,20578,131720,'Painesville','United States of America','US','Painesville (United States of America)',1,1,0),(31611,20592,131722,'Pakostane','Croatia','HR','Pakostane (Croatia)',1,1,0),(31612,20596,131723,'Palacios','United States of America','US','Palacios (United States of America)',1,1,0),(31613,0,131724,'Palaja','France','FR','Palaja (France)',1,1,0),(31614,0,131725,'Paldau','Austria','AT','Paldau (Austria)',1,1,0),(31615,20620,131726,'Palekastro','Greece','GR','Palekastro (Greece)',1,1,0),(31616,0,131727,'Paleloni/Vamos','Greece','GR','Paleloni/Vamos (Greece)',1,1,0),(31617,0,131728,'Paleochora','Greece','GR','Paleochora (Greece)',1,1,0),(31618,0,131729,'Pali','Greece','GR','Pali (Greece)',1,1,0),(31619,0,131730,'Paliano','Italy','IT','Paliano (Italy)',1,1,0),(31620,0,131731,'Palisade','United States of America','US','Palisade (United States of America)',1,1,0),(31621,0,131732,'Paliseul','Belgium','BE','Paliseul (Belgium)',1,1,0),(31622,0,131733,'Paliski','Croatia','HR','Paliski (Croatia)',1,1,0),(31623,0,131734,'Palkane','Finland','FI','Palkane (Finland)',1,1,0),(31624,0,131735,'Palm Beach','Australia','AU','Palm Beach (Australia)',1,1,0),(31625,20669,131736,'Palmyra','United States of America','US','Palmyra (United States of America)',1,1,0),(31626,20708,131737,'Panes','Spain','ES','Panes (Spain)',1,1,0),(31627,0,131738,'Pankakoski','Finland','FI','Pankakoski (Finland)',1,1,0),(31628,0,131739,'Panormo','Greece','GR','Panormo (Greece)',1,1,0),(31629,0,131740,'Panschwitz-Kuckau','Germany','DE','Panschwitz-Kuckau (Germany)',1,1,0),(31630,0,131741,'Pantalla','Italy','IT','Pantalla (Italy)',1,1,0),(31631,20742,131742,'Panyu','China','CN','Panyu (China)',1,1,0),(31632,20758,131743,'Papendrecht','Netherlands','NL','Papendrecht (Netherlands)',1,1,0),(31633,20762,131744,'Papillion','United States of America','US','Papillion (United States of America)',1,1,0),(31634,0,131745,'Papstdorf','Germany','DE','Papstdorf (Germany)',1,1,0),(31635,20768,131746,'Paracas','Peru','PE','Paracas (Peru)',1,1,0),(31636,0,131747,'Paracuellos De Jiloca','Spain','ES','Paracuellos De Jiloca (Spain)',1,1,0),(31637,0,131748,'Paradfurdo','Hungary','HU','Paradfurdo (Hungary)',1,1,0),(31638,0,131749,'Paradise','United States of America','US','Paradise (United States of America)',1,1,0),(31639,20774,131750,'Paradise Island','Bahamas','BS','Paradise Island (Bahamas)',1,1,0),(31640,0,131751,'Paradiz','Croatia','HR','Paradiz (Croatia)',1,1,0),(31641,20778,131752,'Paragould','United States of America','US','Paragould (United States of America)',1,1,0),(31642,0,131753,'Paralia Agias Foteinis','Greece','GR','Paralia Agias Foteinis (Greece)',1,1,0),(31643,20786,131754,'Paramaribo','Suriname','SR','Paramaribo (Suriname)',1,1,0),(31644,0,131755,'Paranhos','Portugal','PT','Paranhos (Portugal)',1,1,0),(31645,20798,131756,'Paraty','Brazil','BR','Paraty (Brazil)',1,1,0),(31646,20807,131757,'Pardubice','Czech Republic','CZ','Pardubice (Czech Republic)',1,1,0),(31647,20808,131758,'Paredes','Portugal','PT','Paredes (Portugal)',1,1,0),(31648,20811,131759,'Parentis-en-Born','France','FR','Parentis-en-Born (France)',1,1,0),(31649,0,131760,'Pare-Pare','Indonesia','ID','Pare-Pare (Indonesia)',1,1,0),(31650,0,131761,'Paris','United States of America','US','Paris (United States of America)',1,1,0),(31651,32410,131762,'Park Ridge','United States of America','US','Park Ridge (United States of America)',1,1,0),(31652,20840,131763,'Parla','Spain','ES','Parla (Spain)',1,1,0),(31653,20841,131764,'Parma','Italy','IT','Parma (Italy)',1,1,0),(31654,0,131765,'Parrsboro','Canada','CA','Parrsboro (Canada)',1,1,0),(31655,20868,131766,'Parsippany','United States of America','US','Parsippany (United States of America)',1,1,0),(31656,0,131767,'Parsteinsee','Germany','DE','Parsteinsee (Germany)',1,1,0),(31657,0,131768,'Passo dei Carpinelli','Italy','IT','Passo dei Carpinelli (Italy)',1,1,0),(31658,21530,131769,'Plainfield','United States of America','US','Plainfield (United States of America)',1,1,0),(31659,32443,131770,'Plan','Spain','ES','Plan (Spain)',1,1,0),(31660,0,131771,'Planicka','Czech Republic','CZ','Planicka (Czech Republic)',1,1,0),(31661,0,131772,'Platanes','Greece','GR','Platanes (Greece)',1,1,0),(31662,0,131773,'Platanias (Rethymnon)','Greece','GR','Platanias (Rethymnon) (Greece)',1,1,0),(31663,0,131774,'Platanias-Beach','Greece','GR','Platanias-Beach (Greece)',1,1,0),(31664,0,131775,'Plattling','Germany','DE','Plattling (Germany)',1,1,0),(31665,0,131776,'Playa de Fanabe','Spain','ES','Playa de Fanabe (Spain)',1,1,0),(31666,0,131777,'Playa de Santa Cristina','Spain','ES','Playa de Santa Cristina (Spain)',1,1,0),(31667,21571,131778,'Playa del Rey','United States of America','US','Playa del Rey (United States of America)',1,1,0),(31668,0,131779,'Playa Herradura','Costa Rica','CR','Playa Herradura (Costa Rica)',1,1,0),(31669,0,131780,'Playa Papagayo','Costa Rica','CR','Playa Papagayo (Costa Rica)',1,1,0),(31670,0,131781,'Playa Zancudo','Costa Rica','CR','Playa Zancudo (Costa Rica)',1,1,0),(31671,0,131782,'Playas del Coco','Costa Rica','CR','Playas del Coco (Costa Rica)',1,1,0),(31672,21579,131783,'Pleidelsheim','Germany','DE','Pleidelsheim (Germany)',1,1,0),(31673,21583,131784,'Pleneuf Val Andre','France','FR','Pleneuf Val Andre (France)',1,1,0),(31674,0,131785,'Plescop','France','FR','Plescop (France)',1,1,0),(31675,0,131786,'Plitvica Selo','Croatia','HR','Plitvica Selo (Croatia)',1,1,0),(31676,0,131787,'Pljevlja','Montenegro','ME','Pljevlja (Montenegro)',1,1,0),(31677,21603,131788,'Ploemeur','France','FR','Ploemeur (France)',1,1,0),(31678,0,131789,'Ploerdut','France','FR','Ploerdut (France)',1,1,0),(31679,0,131790,'Plomin','Croatia','HR','Plomin (Croatia)',1,1,0),(31680,0,131791,'Plothen','Germany','DE','Plothen (Germany)',1,1,0),(31681,0,131792,'Plougastel','France','FR','Plougastel (France)',1,1,0),(31682,21618,131793,'Plouharnel','France','FR','Plouharnel (France)',1,1,0),(31683,0,131794,'Plouneour Trez','France','FR','Plouneour Trez (France)',1,1,0),(31684,21624,131795,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(31685,21633,131796,'Pobershau','Germany','DE','Pobershau (Germany)',1,1,0),(31686,0,131797,'Poddebice','Poland','PL','Poddebice (Poland)',1,1,0),(31687,0,131798,'Podkowa Lesna','Poland','PL','Podkowa Lesna (Poland)',1,1,0),(31688,32468,131799,'Point Arena','United States of America','US','Point Arena (United States of America)',1,1,0),(31689,0,131800,'Pointe aux Piments','Mauritius','MU','Pointe aux Piments (Mauritius)',1,1,0),(31690,21675,131801,'Pointe-Claire','Canada','CA','Pointe-Claire (Canada)',1,1,0),(31691,21680,131802,'Poio','Spain','ES','Poio (Spain)',1,1,0),(31692,21698,131803,'Polichrono','Greece','GR','Polichrono (Greece)',1,1,0),(31693,0,131804,'Polyana','Ukraine','UA','Polyana (Ukraine)',1,1,0),(31694,0,131805,'Pom Pom Island','Malaysia','MY','Pom Pom Island (Malaysia)',1,1,0),(31695,21734,131806,'Pommelsbrunn','Germany','DE','Pommelsbrunn (Germany)',1,1,0),(31696,0,131807,'Pompano Beach/Fort Lauderdale','United States of America','US','Pompano Beach/Fort Lauderdale (United States of America)',1,1,0),(31697,21750,131808,'Ponsacco','Italy','IT','Ponsacco (Italy)',1,1,0),(31698,0,131809,'Pont Aven','France','FR','Pont Aven (France)',1,1,0),(31699,0,131810,'Pont d\'Ouilly','France','FR','Pont d\'Ouilly (France)',1,1,0),(31700,0,131811,'Ponta do Pargo','Portugal','PT','Ponta do Pargo (Portugal)',1,1,0),(31701,0,131812,'Pontasieve','Italy','IT','Pontasieve (Italy)',1,1,0),(31702,21766,131813,'Pont-du-Chateau','France','FR','Pont-du-Chateau (France)',1,1,0),(31703,0,131814,'Ponte Caffaro','Italy','IT','Ponte Caffaro (Italy)',1,1,0),(31704,32490,131815,'Ponte di Piave','Italy','IT','Ponte di Piave (Italy)',1,1,0),(31705,0,131816,'Ponte Pattoli','Italy','IT','Ponte Pattoli (Italy)',1,1,0),(31706,21770,131817,'Pontebba','Italy','IT','Pontebba (Italy)',1,1,0),(31707,0,131818,'Pontecagnano Faiano','Italy','IT','Pontecagnano Faiano (Italy)',1,1,0),(31708,21776,131819,'Ponteranica','Italy','IT','Ponteranica (Italy)',1,1,0),(31709,21782,131820,'Pontiac','United States of America','US','Pontiac (United States of America)',1,1,0),(31710,21783,131821,'Pontianak','Indonesia','ID','Pontianak (Indonesia)',1,1,0),(31711,21793,131822,'Pontotoc','United States of America','US','Pontotoc (United States of America)',1,1,0),(31712,0,131823,'Pontremoli','Italy','IT','Pontremoli (Italy)',1,1,0),(31713,0,131824,'Porcieu-Amblagnieu','France','FR','Porcieu-Amblagnieu (France)',1,1,0),(31714,21825,131825,'Porirua','New Zealand','NZ','Porirua (New Zealand)',1,1,0),(31715,0,131826,'Porlezza','Italy','IT','Porlezza (Italy)',1,1,0),(31716,32508,131827,'Port Augusta','Australia','AU','Port Augusta (Australia)',1,1,0),(31717,0,131828,'Port Aux Basques','Canada','CA','Port Aux Basques (Canada)',1,1,0),(31718,0,131829,'Port Bourgenay','France','FR','Port Bourgenay (France)',1,1,0),(31719,0,131830,'Port des Canonge','Spain','ES','Port des Canonge (Spain)',1,1,0),(31720,21841,131831,'Port el Kantaoui','Tunisia','TN','Port el Kantaoui (Tunisia)',1,1,0),(31721,0,131832,'Port Erin','United Kingdom','UK','Port Erin (United Kingdom)',1,1,0),(31722,21842,131833,'Port Gentil','Gabon','GA','Port Gentil (Gabon)',1,1,0),(31723,32550,131834,'Port Hope Simpson','Canada','CA','Port Hope Simpson (Canada)',1,1,0),(31724,32556,131835,'Port Jefferson','United States of America','US','Port Jefferson (United States of America)',1,1,0),(31725,0,131836,'Port Launay','Seychelles','SC','Port Launay (Seychelles)',1,1,0),(31726,0,131837,'Port Louis','France','FR','Port Louis (France)',1,1,0),(31727,21845,131838,'Port Moresby','Papua New Guinea','PG','Port Moresby (Papua New Guinea)',1,1,0),(31728,21846,131839,'Port of Spain','Trinidad and Tobago','TT','Port of Spain (Trinidad and Tobago)',1,1,0),(31729,32590,131840,'Port Wentworth','United States of America','US','Port Wentworth (United States of America)',1,1,0),(31730,0,131841,'Portarlington','Australia','AU','Portarlington (Australia)',1,1,0),(31731,0,131842,'Port-au-Prince','Haiti','HT','Port-au-Prince (Haiti)',1,1,0),(31732,21868,131843,'Porter','United States of America','US','Porter (United States of America)',1,1,0),(31733,0,131844,'Porter','United States of America','US','Porter (United States of America)',1,1,0),(31734,0,131845,'Porters Lake','Canada','CA','Porters Lake (Canada)',1,1,0),(31735,21881,131846,'Portimao','Portugal','PT','Portimao (Portugal)',1,1,0),(31736,21887,131847,'Portland','Australia','AU','Portland (Australia)',1,1,0),(31737,0,131848,'Portnoo','Ireland','IE','Portnoo (Ireland)',1,1,0),(31738,32595,131849,'Porto','Portugal','PT','Porto (Portugal)',1,1,0),(31739,0,131850,'Porto Koufo','Greece','GR','Porto Koufo (Greece)',1,1,0),(31740,0,131851,'Porto Mantovano','Italy','IT','Porto Mantovano (Italy)',1,1,0),(31741,0,131852,'Porto Seguro','Brazil','BR','Porto Seguro (Brazil)',1,1,0),(31742,21900,131853,'Portoferraio','Italy','IT','Portoferraio (Italy)',1,1,0),(31743,21901,131854,'Portofino','Italy','IT','Portofino (Italy)',1,1,0),(31744,21905,131855,'Portomarin','Spain','ES','Portomarin (Spain)',1,1,0),(31745,21940,131856,'Posio','Finland','FI','Posio (Finland)',1,1,0),(31746,0,131857,'Posterholt','Netherlands','NL','Posterholt (Netherlands)',1,1,0),(31747,0,131858,'Potistika','Greece','GR','Potistika (Greece)',1,1,0),(31748,21975,131859,'Pouilly-en-Auxois','France','FR','Pouilly-en-Auxois (France)',1,1,0),(31749,21990,131860,'Povegliano','Italy','IT','Povegliano (Italy)',1,1,0),(31750,0,131861,'Povoa das Quartas','Portugal','PT','Povoa das Quartas (Portugal)',1,1,0),(31751,21998,131862,'Powell','United States of America','US','Powell (United States of America)',1,1,0),(31752,22003,131863,'Poza Rica','Mexico','MX','Poza Rica (Mexico)',1,1,0),(31753,22026,131864,'Prague','Czech Republic','CZ','Prague (Czech Republic)',1,1,0),(31754,0,131865,'Praia da Falesia','Portugal','PT','Praia da Falesia (Portugal)',1,1,0),(31755,0,131866,'Praia Da Luz','Portugal','PT','Praia Da Luz (Portugal)',1,1,0),(31756,0,131867,'Praia do Forte','Brazil','BR','Praia do Forte (Brazil)',1,1,0),(31757,0,131868,'Pralognan','France','FR','Pralognan (France)',1,1,0),(31758,22035,131869,'Pran Buri','Thailand','TH','Pran Buri (Thailand)',1,1,0),(31759,22037,131870,'Prangins','Switzerland','CH','Prangins (Switzerland)',1,1,0),(31760,0,131871,'Prato Nevoso','Italy','IT','Prato Nevoso (Italy)',1,1,0),(31761,0,131872,'Pratovecchio','Italy','IT','Pratovecchio (Italy)',1,1,0),(31762,0,131873,'Prats','Spain','ES','Prats (Spain)',1,1,0),(31763,0,131874,'Oberleichtersbach','Germany','DE','Oberleichtersbach (Germany)',1,1,0),(31764,0,131875,'Obermollrich','Germany','DE','Obermollrich (Germany)',1,1,0),(31765,19869,131876,'Obernberg am Brenner','Austria','AT','Obernberg am Brenner (Austria)',1,1,0),(31766,0,131877,'Oberndorf','Germany','DE','Oberndorf (Germany)',1,1,0),(31767,0,131878,'Oberperfuss','Austria','AT','Oberperfuss (Austria)',1,1,0),(31768,0,131879,'Oberroth','Germany','DE','Oberroth (Germany)',1,1,0),(31769,0,131880,'Oberstenfeld','Germany','DE','Oberstenfeld (Germany)',1,1,0),(31770,19883,131881,'Obertauern','Austria','AT','Obertauern (Austria)',1,1,0),(31771,19890,131882,'Oberwald','Switzerland','CH','Oberwald (Switzerland)',1,1,0),(31772,0,131883,'Oberweid','Germany','DE','Oberweid (Germany)',1,1,0),(31773,0,131884,'Obninsk','Russia','RU','Obninsk (Russia)',1,1,0),(31774,19903,131885,'Ocala','United States of America','US','Ocala (United States of America)',1,1,0),(31775,19914,131886,'Ochsenhausen','Germany','DE','Ochsenhausen (Germany)',1,1,0),(31776,0,131887,'Odiaxere','Portugal','PT','Odiaxere (Portugal)',1,1,0),(31777,0,131888,'Odintsovskiy','Russia','RU','Odintsovskiy (Russia)',1,1,0),(31778,19936,131889,'Odorheiu Secuiesc','Romania','RO','Odorheiu Secuiesc (Romania)',1,1,0),(31779,0,131890,'Oensingen','Switzerland','CH','Oensingen (Switzerland)',1,1,0),(31780,0,131891,'Oepfershausen','Germany','DE','Oepfershausen (Germany)',1,1,0),(31781,0,131892,'Oer-Erkenschwick','Germany','DE','Oer-Erkenschwick (Germany)',1,1,0),(31782,0,131893,'Oerlinghausen','Germany','DE','Oerlinghausen (Germany)',1,1,0),(31783,19949,131894,'Offenburg','Germany','DE','Offenburg (Germany)',1,1,0),(31784,0,131895,'Oftersheim','Germany','DE','Oftersheim (Germany)',1,1,0),(31785,0,131896,'Ogbourne Saint George','United Kingdom','UK','Ogbourne Saint George (United Kingdom)',1,1,0),(31786,19957,131897,'Oggebbio','Italy','IT','Oggebbio (Italy)',1,1,0),(31787,19965,131898,'Ohakune','New Zealand','NZ','Ohakune (New Zealand)',1,1,0),(31788,0,131899,'Ohlsbach','Germany','DE','Ohlsbach (Germany)',1,1,0),(31789,0,131900,'Oia-Finikia','Greece','GR','Oia-Finikia (Greece)',1,1,0),(31790,19979,131901,'Oizon','France','FR','Oizon (France)',1,1,0),(31791,0,131902,'Ojedo','Spain','ES','Ojedo (Spain)',1,1,0),(31792,19992,131903,'Okazaki','Japan','JP','Okazaki (Japan)',1,1,0),(31793,0,131904,'Okehampton','United Kingdom','UK','Okehampton (United Kingdom)',1,1,0),(31794,20018,131905,'Olafsfjordur','Iceland','IS','Olafsfjordur (Iceland)',1,1,0),(31795,20024,131906,'Olave','Spain','ES','Olave (Spain)',1,1,0),(31796,20025,131907,'Olbernhau','Germany','DE','Olbernhau (Germany)',1,1,0),(31797,0,131908,'Old Bar','Australia','AU','Old Bar (Australia)',1,1,0),(31798,20040,131909,'O\'Leary','Canada','CA','O\'Leary (Canada)',1,1,0),(31799,0,131910,'Olesnica','Poland','PL','Olesnica (Poland)',1,1,0),(31800,20051,131911,'Olhos de Agua','Portugal','PT','Olhos de Agua (Portugal)',1,1,0),(31801,0,131912,'Olimp','Romania','RO','Olimp (Romania)',1,1,0),(31802,20070,131913,'Ollantaytambo','Peru','PE','Ollantaytambo (Peru)',1,1,0),(31803,20075,131914,'Olney','United States of America','US','Olney (United States of America)',1,1,0),(31804,20076,131915,'Olocau del Rey','Spain','ES','Olocau del Rey (Spain)',1,1,0),(31805,0,131916,'Olot','Spain','ES','Olot (Spain)',1,1,0),(31806,0,131917,'Olpe','Germany','DE','Olpe (Germany)',1,1,0),(31807,20085,131918,'Olsberg','Germany','DE','Olsberg (Germany)',1,1,0),(31808,0,131919,'Olympiada','Greece','GR','Olympiada (Greece)',1,1,0),(31809,0,131920,'Olympiaki Akti','Greece','GR','Olympiaki Akti (Greece)',1,1,0),(31810,0,131921,'Olympos','Turkey','TR','Olympos (Turkey)',1,1,0),(31811,20098,131922,'Omak','United States of America','US','Omak (United States of America)',1,1,0),(31812,0,131923,'Omeo','Australia','AU','Omeo (Australia)',1,1,0),(31813,20107,131924,'Omis','Croatia','HR','Omis (Croatia)',1,1,0),(31814,20122,131925,'Ondangwa','Namibia','NA','Ondangwa (Namibia)',1,1,0),(31815,0,131926,'Onley','United States of America','US','Onley (United States of America)',1,1,0),(31816,0,131927,'Oostermeer','Netherlands','NL','Oostermeer (Netherlands)',1,1,0),(31817,20159,131928,'Ootha','Australia','AU','Ootha (Australia)',1,1,0),(31818,20167,131929,'Opfikon','Switzerland','CH','Opfikon (Switzerland)',1,1,0),(31819,20171,131930,'Opononi','New Zealand','NZ','Opononi (New Zealand)',1,1,0),(31820,20177,131931,'Opuwo','Namibia','NA','Opuwo (Namibia)',1,1,0),(31821,20178,131932,'Oracabessa','Jamaica','JM','Oracabessa (Jamaica)',1,1,0),(31822,0,131933,'Oranzherei','Russia','RU','Oranzherei (Russia)',1,1,0),(31823,20196,131934,'Orasac','Croatia','HR','Orasac (Croatia)',1,1,0),(31824,20209,131935,'Orcines','France','FR','Orcines (France)',1,1,0),(31825,0,131936,'Ordes','Spain','ES','Ordes (Spain)',1,1,0),(31826,20218,131937,'Orebic','Croatia','HR','Orebic (Croatia)',1,1,0),(31827,0,131938,'Orekhovo','Russia','RU','Orekhovo (Russia)',1,1,0),(31828,0,131939,'Oreokastro','Greece','GR','Oreokastro (Greece)',1,1,0),(31829,0,131940,'Oria','Italy','IT','Oria (Italy)',1,1,0),(31830,20235,131941,'Oriago','Italy','IT','Oriago (Italy)',1,1,0),(31831,20241,131942,'Origlio','Switzerland','CH','Origlio (Switzerland)',1,1,0),(31832,20252,131943,'Orlando','United States of America','US','Orlando (United States of America)',1,1,0),(31833,0,131944,'Orphir','United Kingdom','UK','Orphir (United Kingdom)',1,1,0),(31834,20282,131945,'Orsa','Sweden','SE','Orsa (Sweden)',1,1,0),(31835,0,131946,'Orsieres','Switzerland','CH','Orsieres (Switzerland)',1,1,0),(31836,0,131947,'Ortenburg','Germany','DE','Ortenburg (Germany)',1,1,0),(31837,20290,131948,'Orvault','France','FR','Orvault (France)',1,1,0),(31838,0,131949,'Orvieto','Italy','IT','Orvieto (Italy)',1,1,0),(31839,32376,131950,'Os','Norway','NO','Os (Norway)',1,1,0),(31840,32377,131951,'Os de Balaguer','Spain','ES','Os de Balaguer (Spain)',1,1,0),(31841,20295,131952,'Osasco','Brazil','BR','Osasco (Brazil)',1,1,0),(31842,0,131953,'Oscadnica','Slovakia','SK','Oscadnica (Slovakia)',1,1,0),(31843,20306,131954,'Oshkosh','United States of America','US','Oshkosh (United States of America)',1,1,0),(31844,0,131955,'Oshu','Japan','JP','Oshu (Japan)',1,1,0),(31845,0,131956,'Osiecznica','Poland','PL','Osiecznica (Poland)',1,1,0),(31846,0,131957,'Osilnica','Slovenia','SI','Osilnica (Slovenia)',1,1,0),(31847,20310,131958,'Oskaloosa','United States of America','US','Oskaloosa (United States of America)',1,1,0),(31848,0,131959,'Osorhei','Romania','RO','Osorhei (Romania)',1,1,0),(31849,20343,131960,'Ossuccio','Italy','IT','Ossuccio (Italy)',1,1,0),(31850,20345,131961,'Ostbevern','Germany','DE','Ostbevern (Germany)',1,1,0),(31851,0,131962,'Osterbybruk','Sweden','SE','Osterbybruk (Sweden)',1,1,0),(31852,0,131963,'Ostre Toten','Norway','NO','Ostre Toten (Norway)',1,1,0),(31853,0,131964,'Ostrow Mazowiecka','Poland','PL','Ostrow Mazowiecka (Poland)',1,1,0),(31854,0,131965,'Ostrozska Nova Ves','Czech Republic','CZ','Ostrozska Nova Ves (Czech Republic)',1,1,0),(31855,0,131966,'Ostrzeszow','Poland','PL','Ostrzeszow (Poland)',1,1,0),(31856,0,131967,'Oswego','United States of America','US','Oswego (United States of America)',1,1,0),(31857,20396,131968,'Ottaviano','Italy','IT','Ottaviano (Italy)',1,1,0),(31858,0,131969,'Ottawa Lake','United States of America','US','Ottawa Lake (United States of America)',1,1,0),(31859,0,131970,'Ottersum','Netherlands','NL','Ottersum (Netherlands)',1,1,0),(31860,20407,131971,'Ottobeuren','Germany','DE','Ottobeuren (Germany)',1,1,0),(31861,20419,131972,'Ouchamps','France','FR','Ouchamps (France)',1,1,0),(31862,20427,131973,'Oud-Turnhout','Belgium','BE','Oud-Turnhout (Belgium)',1,1,0),(31863,0,131974,'Ouidah','Benin','BJ','Ouidah (Benin)',1,1,0),(31864,0,131975,'Ourem','Portugal','PT','Ourem (Portugal)',1,1,0),(31865,20465,131976,'Overath','Germany','DE','Overath (Germany)',1,1,0),(31866,0,131977,'Overland Park','United States of America','US','Overland Park (United States of America)',1,1,0),(31867,20469,131978,'Overlida','Sweden','SE','Overlida (Sweden)',1,1,0),(31868,20472,131979,'Overton','United States of America','US','Overton (United States of America)',1,1,0),(31869,0,131980,'Ovington','United Kingdom','UK','Ovington (United Kingdom)',1,1,0),(31870,0,131981,'Owaka','New Zealand','NZ','Owaka (New Zealand)',1,1,0),(31871,20488,131982,'Owensboro','United States of America','US','Owensboro (United States of America)',1,1,0),(31872,20491,131983,'Owingsville','United States of America','US','Owingsville (United States of America)',1,1,0),(31873,0,131984,'Oxford','United States of America','US','Oxford (United States of America)',1,1,0),(31874,20505,131985,'Oyonnax','France','FR','Oyonnax (France)',1,1,0),(31875,20511,131986,'Oyten','Germany','DE','Oyten (Germany)',1,1,0),(31876,0,131987,'Ozark','United States of America','US','Ozark (United States of America)',1,1,0),(31877,20515,131988,'Ozdere','Turkey','TR','Ozdere (Turkey)',1,1,0),(31878,0,131989,'Ostia Antica','Italy','IT','Ostia Antica (Italy)',1,1,0),(31879,0,131990,'Ostrau','Germany','DE','Ostrau (Germany)',1,1,0),(31880,0,131991,'Ostrov nad Ohri','Czech Republic','CZ','Ostrov nad Ohri (Czech Republic)',1,1,0),(31881,0,131992,'Ostrovacice','Czech Republic','CZ','Ostrovacice (Czech Republic)',1,1,0),(31882,0,131993,'Ostrvica','Croatia','HR','Ostrvica (Croatia)',1,1,0),(31883,20384,131994,'Othello','United States of America','US','Othello (United States of America)',1,1,0),(31884,0,131995,'Otorohanga','New Zealand','NZ','Otorohanga (New Zealand)',1,1,0),(31885,0,131996,'Ottendorf-Okrilla','Germany','DE','Ottendorf-Okrilla (Germany)',1,1,0),(31886,0,131997,'Ottenhofen im Schwarzwald','Germany','DE','Ottenhofen im Schwarzwald (Germany)',1,1,0),(31887,20416,131998,'Oualidia','Morocco','MA','Oualidia (Morocco)',1,1,0),(31888,0,131999,'Oudebildtzijl','Netherlands','NL','Oudebildtzijl (Netherlands)',1,1,0),(31889,0,132000,'Oudesluis','Netherlands','NL','Oudesluis (Netherlands)',1,1,0),(31890,20430,132001,'Oughterard','Ireland','IE','Oughterard (Ireland)',1,1,0),(31891,20433,132002,'Ouistreham','France','FR','Ouistreham (France)',1,1,0),(31892,20445,132003,'Ouray','United States of America','US','Ouray (United States of America)',1,1,0),(31893,0,132004,'Ousson-sur-Loire','France','FR','Ousson-sur-Loire (France)',1,1,0),(31894,20462,132005,'Ovando','United States of America','US','Ovando (United States of America)',1,1,0),(31895,20466,132006,'Overberg','Netherlands','NL','Overberg (Netherlands)',1,1,0),(31896,0,132007,'Overgaard','United States of America','US','Overgaard (United States of America)',1,1,0),(31897,0,132008,'Overijse','Belgium','BE','Overijse (Belgium)',1,1,0),(31898,20484,132009,'Owatonna','United States of America','US','Owatonna (United States of America)',1,1,0),(31899,0,132010,'Owerri','Nigeria','NG','Owerri (Nigeria)',1,1,0),(31900,20501,132011,'Oyen','Canada','CA','Oyen (Canada)',1,1,0),(31901,20508,132012,'Oyster Bay','South Africa','ZA','Oyster Bay (South Africa)',1,1,0),(31902,0,132013,'Oza dos Rios','Spain','ES','Oza dos Rios (Spain)',1,1,0),(31903,20524,132014,'Paceco','Italy','IT','Paceco (Italy)',1,1,0),(31904,0,132016,'Pachuca de Soto','Mexico','MX','Pachuca de Soto (Mexico)',1,1,0),(31905,0,132017,'Pacific Rim National Park','Canada','CA','Pacific Rim National Park (Canada)',1,1,0),(31906,20543,132018,'Paderborn','Germany','DE','Paderborn (Germany)',1,1,0),(31907,20546,132019,'Padron','Spain','ES','Padron (Spain)',1,1,0),(31908,20568,132020,'Pahoa','United States of America','US','Pahoa (United States of America)',1,1,0),(31909,0,132021,'Painten','Germany','DE','Painten (Germany)',1,1,0),(31910,0,132022,'Pakbeng','LAOS','LA','Pakbeng (LAOS)',1,1,0),(31911,0,132023,'Pakoslawice','Poland','PL','Pakoslawice (Poland)',1,1,0),(31912,0,132024,'Pakse','LAOS','LA','Pakse (LAOS)',1,1,0),(31913,20608,132026,'Palanga','Lithuania','LT','Palanga (Lithuania)',1,1,0),(31914,20609,132027,'Palangkaraya','Indonesia','ID','Palangkaraya (Indonesia)',1,1,0),(31915,20619,132028,'Palazzuolo sul Senio','Italy','IT','Palazzuolo sul Senio (Italy)',1,1,0),(31916,0,132029,'Palenge-Durbuy','Belgium','BE','Palenge-Durbuy (Belgium)',1,1,0),(31917,20640,132030,'Palinuro','Italy','IT','Palinuro (Italy)',1,1,0),(31918,0,132031,'Palisades','United States of America','US','Palisades (United States of America)',1,1,0),(31919,0,132032,'Palm Coast','United States of America','US','Palm Coast (United States of America)',1,1,0),(31920,0,132033,'Palm Desert','United States of America','US','Palm Desert (United States of America)',1,1,0),(31921,32397,132034,'Palma Nova','Spain','ES','Palma Nova (Spain)',1,1,0),(31922,0,132035,'Palmarin','Senegal','SN','Palmarin (Senegal)',1,1,0),(31923,0,132036,'Palmizana','Croatia','HR','Palmizana (Croatia)',1,1,0),(31924,20673,132037,'Palo Seco','Costa Rica','CR','Palo Seco (Costa Rica)',1,1,0),(31925,20676,132038,'Pals','Spain','ES','Pals (Spain)',1,1,0),(31926,0,132039,'Palterton','United Kingdom','UK','Palterton (United Kingdom)',1,1,0),(31927,20677,132040,'Palu','Indonesia','ID','Palu (Indonesia)',1,1,0),(31928,20689,132041,'Panajachel','Guatemala','GT','Panajachel (Guatemala)',1,1,0),(31929,20702,132042,'Pancorbo','Spain','ES','Pancorbo (Spain)',1,1,0),(31930,0,132043,'Panglao','Philippines','PH','Panglao (Philippines)',1,1,0),(31931,20730,132044,'Panorama','Canada','CA','Panorama (Canada)',1,1,0),(31932,0,132045,'Pantar','Indonesia','ID','Pantar (Indonesia)',1,1,0),(31933,0,132046,'Papenteich','Germany','DE','Papenteich (Germany)',1,1,0),(31934,0,132047,'Paradise','United States of America','US','Paradise (United States of America)',1,1,0),(31935,0,132048,'Paralia','Greece','GR','Paralia (Greece)',1,1,0),(31936,20784,132049,'Paralimni','Cyprus','CY','Paralimni (Cyprus)',1,1,0),(31937,20797,132050,'Paratico','Italy','IT','Paratico (Italy)',1,1,0),(31938,20805,132051,'Parchim','Germany','DE','Parchim (Germany)',1,1,0),(31939,0,132052,'Pardines','Spain','ES','Pardines (Spain)',1,1,0),(31940,0,132053,'Parnassos','Greece','GR','Parnassos (Greece)',1,1,0),(31941,20848,132054,'Parnu','Estonia','EE','Parnu (Estonia)',1,1,0),(31942,0,132056,'Parracombe','United Kingdom','UK','Parracombe (United Kingdom)',1,1,0),(31943,0,132057,'Parys','South Africa','ZA','Parys (South Africa)',1,1,0),(31944,20877,132058,'Pascagoula','United States of America','US','Pascagoula (United States of America)',1,1,0),(31945,0,132059,'Pasir Gudang','Malaysia','MY','Pasir Gudang (Malaysia)',1,1,0),(31946,0,132060,'Paslek','Poland','PL','Paslek (Poland)',1,1,0),(31947,0,132061,'Passaggio','Italy','IT','Passaggio (Italy)',1,1,0),(31948,0,132062,'Passail','Austria','AT','Passail (Austria)',1,1,0),(31949,20893,132063,'Pasto','Colombia','CO','Pasto (Colombia)',1,1,0),(31950,0,132064,'Patergassen','Austria','AT','Patergassen (Austria)',1,1,0),(31951,20915,132065,'Patillas','Puerto Rico','PR','Patillas (Puerto Rico)',1,1,0),(31952,20921,132066,'Patras','Greece','GR','Patras (Greece)',1,1,0),(31953,20922,132067,'Patreksfjordur','Iceland','IS','Patreksfjordur (Iceland)',1,1,0),(31954,20925,132068,'Pattaya','Thailand','TH','Pattaya (Thailand)',1,1,0),(31955,0,132069,'Patu','Italy','IT','Patu (Italy)',1,1,0),(31956,20938,132070,'Paulinia','Brazil','BR','Paulinia (Brazil)',1,1,0),(31957,32413,132071,'Paulista','Brazil','BR','Paulista (Brazil)',1,1,0),(31958,0,132072,'Pawesin','Germany','DE','Pawesin (Germany)',1,1,0),(31959,0,132073,'Payson','United States of America','US','Payson (United States of America)',1,1,0),(31960,0,132074,'Pazzo Faceto di Fasano','Italy','IT','Pazzo Faceto di Fasano (Italy)',1,1,0),(31961,20965,132075,'Peace River','Canada','CA','Peace River (Canada)',1,1,0),(31962,20974,132076,'Pearland','United States of America','US','Pearland (United States of America)',1,1,0),(31963,20981,132077,'Pecatu','Indonesia','ID','Pecatu (Indonesia)',1,1,0),(31964,20983,132078,'Pecetto Torinese','Italy','IT','Pecetto Torinese (Italy)',1,1,0),(31965,0,132079,'Pechbrunn','Germany','DE','Pechbrunn (Germany)',1,1,0),(31966,0,132080,'Peckforton','United Kingdom','UK','Peckforton (United Kingdom)',1,1,0),(31967,20988,132081,'Pecs','Hungary','HU','Pecs (Hungary)',1,1,0),(31968,0,132082,'Pedras Salgadas','Portugal','PT','Pedras Salgadas (Portugal)',1,1,0),(31969,21000,132083,'Pedrogao Pequeno','Portugal','PT','Pedrogao Pequeno (Portugal)',1,1,0),(31970,0,132084,'Pelham','United States of America','US','Pelham (United States of America)',1,1,0),(31971,32415,132085,'Pell City','United States of America','US','Pell City (United States of America)',1,1,0),(31972,0,132086,'Pellworm Island','Germany','DE','Pellworm Island (Germany)',1,1,0),(31973,21057,132087,'Pembine','United States of America','US','Pembine (United States of America)',1,1,0),(31974,0,132088,'Penausende','Spain','ES','Penausende (Spain)',1,1,0),(31975,21082,132090,'Pendleton','United States of America','US','Pendleton (United States of America)',1,1,0),(31976,0,132091,'Penk','Austria','AT','Penk (Austria)',1,1,0),(31977,0,132092,'Penn Yan','United States of America','US','Penn Yan (United States of America)',1,1,0),(31978,0,132093,'Perama','Greece','GR','Perama (Greece)',1,1,0),(31979,0,132094,'Peramola','Spain','ES','Peramola (Spain)',1,1,0),(31980,21129,132095,'Perchtoldsdorf','Austria','AT','Perchtoldsdorf (Austria)',1,1,0),(31981,0,132096,'Peremut','Russia','RU','Peremut (Russia)',1,1,0),(31982,0,132097,'Pereslavl-Zalessky','Russia','RU','Pereslavl-Zalessky (Russia)',1,1,0),(31983,21141,132098,'Perham','United States of America','US','Perham (United States of America)',1,1,0),(31984,0,132099,'Periprava','Romania','RO','Periprava (Romania)',1,1,0),(31985,0,132100,'Perpezac-le-Blanc','France','FR','Perpezac-le-Blanc (France)',1,1,0),(31986,21178,132101,'Perryopolis','United States of America','US','Perryopolis (United States of America)',1,1,0),(31987,20994,132102,'Pedra Badejo','Cape Verde','CV','Pedra Badejo (Cape Verde)',1,1,0),(31988,20995,132103,'Pedraces','Italy','IT','Pedraces (Italy)',1,1,0),(31989,20997,132104,'Pedraza','Spain','ES','Pedraza (Spain)',1,1,0),(31990,21011,132105,'Pego','Spain','ES','Pego (Spain)',1,1,0),(31991,21018,132106,'Peine','Germany','DE','Peine (Germany)',1,1,0),(31992,21020,132107,'Peisey-Nancroix','France','FR','Peisey-Nancroix (France)',1,1,0),(31993,0,132108,'Pekan','Malaysia','MY','Pekan (Malaysia)',1,1,0),(31994,21026,132109,'Pekanbaru','Indonesia','ID','Pekanbaru (Indonesia)',1,1,0),(31995,0,132110,'Pello','Finland','FI','Pello (Finland)',1,1,0),(31996,21045,132111,'Pellston','United States of America','US','Pellston (United States of America)',1,1,0),(31997,21049,132112,'Pelotas','Brazil','BR','Pelotas (Brazil)',1,1,0),(31998,0,132113,'Pelussin','France','FR','Pelussin (France)',1,1,0),(31999,21066,132114,'Penacova','Portugal','PT','Penacova (Portugal)',1,1,0),(32000,21068,132115,'Penafiel','Portugal','PT','Penafiel (Portugal)',1,1,0),(32001,21071,132116,'Penalva do Castelo','Portugal','PT','Penalva do Castelo (Portugal)',1,1,0),(32002,0,132117,'Penamellera Alta','Spain','ES','Penamellera Alta (Spain)',1,1,0),(32003,0,132118,'Penamellera Baja','Spain','ES','Penamellera Baja (Spain)',1,1,0),(32004,21074,132119,'Penang','Malaysia','MY','Penang (Malaysia)',1,1,0),(32005,0,132120,'Penedo','Brazil','BR','Penedo (Brazil)',1,1,0),(32006,0,132121,'Penia','Italy','IT','Penia (Italy)',1,1,0),(32007,0,132122,'Pennabilli','Italy','IT','Pennabilli (Italy)',1,1,0),(32008,0,132123,'Penrhyndeudraeth','United Kingdom','UK','Penrhyndeudraeth (United Kingdom)',1,1,0),(32009,21107,132124,'Pensacola','United States of America','US','Pensacola (United States of America)',1,1,0),(32010,0,132125,'Penzlin','Germany','DE','Penzlin (Germany)',1,1,0),(32011,0,132126,'Pera','Portugal','PT','Pera (Portugal)',1,1,0),(32012,0,132127,'Peralillo','Chile','CL','Peralillo (Chile)',1,1,0),(32013,0,132128,'Perast','Montenegro','ME','Perast (Montenegro)',1,1,0),(32014,21138,132129,'Pereybere','Mauritius','MU','Pereybere (Mauritius)',1,1,0),(32015,21139,132130,'Perg','Austria','AT','Perg (Austria)',1,1,0),(32016,0,132131,'Pergusa','Italy','IT','Pergusa (Italy)',1,1,0),(32017,21143,132132,'Periana','Spain','ES','Periana (Spain)',1,1,0),(32018,21168,132134,'Perols','France','FR','Perols (France)',1,1,0),(32019,0,132135,'Pervolia','Cyprus','CY','Pervolia (Cyprus)',1,1,0),(32020,21196,132136,'Pesaro','Italy','IT','Pesaro (Italy)',1,1,0),(32021,21199,132137,'Pescara','Italy','IT','Pescara (Italy)',1,1,0),(32022,0,132138,'Pestschanoje','Ukraine','UA','Pestschanoje (Ukraine)',1,1,0),(32023,21213,132139,'Petaling Jaya','Malaysia','MY','Petaling Jaya (Malaysia)',1,1,0),(32024,21225,132140,'Petersberg','Germany','DE','Petersberg (Germany)',1,1,0),(32025,0,132141,'Petersdorf','Germany','DE','Petersdorf (Germany)',1,1,0),(32026,0,132142,'Petite Chapelle','Belgium','BE','Petite Chapelle (Belgium)',1,1,0),(32027,21239,132143,'Petoskey','United States of America','US','Petoskey (United States of America)',1,1,0),(32028,21241,132144,'Petra','Jordan','JO','Petra (Jordan)',1,1,0),(32029,0,132145,'Petrikovice','Czech Republic','CZ','Petrikovice (Czech Republic)',1,1,0),(32030,0,132146,'Petropawlowsk-Kamtschatski','Russia','RU','Petropawlowsk-Kamtschatski (Russia)',1,1,0),(32031,0,132147,'Pettenbach','Austria','AT','Pettenbach (Austria)',1,1,0),(32032,0,132148,'Pettineo','Italy','IT','Pettineo (Italy)',1,1,0),(32033,0,132149,'Pfaffenhofen','Austria','AT','Pfaffenhofen (Austria)',1,1,0),(32034,0,132150,'Pfedelbach','Germany','DE','Pfedelbach (Germany)',1,1,0),(32035,0,132151,'Pfitsch','Italy','IT','Pfitsch (Italy)',1,1,0),(32036,0,132152,'Pfungstadt','Germany','DE','Pfungstadt (Germany)',1,1,0),(32037,32418,132153,'Phang Nga','Thailand','TH','Phang Nga (Thailand)',1,1,0),(32038,21292,132154,'Pharr','United States of America','US','Pharr (United States of America)',1,1,0),(32039,21301,132155,'Philadelphia','United States of America','US','Philadelphia (United States of America)',1,1,0),(32040,0,132156,'Philipsburg','Sint Maarten (Dutch part)','SX','Philipsburg (Sint Maarten (Dutch part))',1,1,0),(32041,21311,132157,'Phitsanulok','Thailand','TH','Phitsanulok (Thailand)',1,1,0),(32042,35144,132158,'Phuentsholing','Bhutan','BT','Phuentsholing (Bhutan)',1,1,0),(32043,21321,132159,'Piacenza','Italy','IT','Piacenza (Italy)',1,1,0),(32044,32422,132160,'Pian di Sco','Italy','IT','Pian di Sco (Italy)',1,1,0),(32045,0,132161,'Piano d\'Arta','Italy','IT','Piano d\'Arta (Italy)',1,1,0),(32046,21330,132162,'Pianoro','Italy','IT','Pianoro (Italy)',1,1,0),(32047,0,132163,'Pias','Portugal','PT','Pias (Portugal)',1,1,0),(32048,0,132164,'Piazzogna','Switzerland','CH','Piazzogna (Switzerland)',1,1,0),(32049,0,132165,'Picarras','Brazil','BR','Picarras (Brazil)',1,1,0),(32050,21353,132166,'Pickerington','United States of America','US','Pickerington (United States of America)',1,1,0),(32051,21360,132167,'Pictou','Canada','CA','Pictou (Canada)',1,1,0),(32052,0,132168,'Piedicorti','France','FR','Piedicorti (France)',1,1,0),(32053,0,132169,'Piedigriggio','France','FR','Piedigriggio (France)',1,1,0),(32054,0,132170,'Piedrahita','Spain','ES','Piedrahita (Spain)',1,1,0),(32055,21366,132171,'Piedras Negras','Mexico','MX','Piedras Negras (Mexico)',1,1,0),(32056,0,132172,'Piekary Slaskie','Poland','PL','Piekary Slaskie (Poland)',1,1,0),(32057,0,132173,'Pierrefeu','France','FR','Pierrefeu (France)',1,1,0),(32058,21379,132174,'Pierrefonds','France','FR','Pierrefonds (France)',1,1,0),(32059,0,132175,'Pierrefort','France','FR','Pierrefort (France)',1,1,0),(32060,0,132176,'Pieve di Cadore','Italy','IT','Pieve di Cadore (Italy)',1,1,0),(32061,0,132177,'Pieve Fosciana','Italy','IT','Pieve Fosciana (Italy)',1,1,0),(32062,0,132178,'Piketberg','South Africa','ZA','Piketberg (South Africa)',1,1,0),(32063,32436,132179,'Pine Island','United States of America','US','Pine Island (United States of America)',1,1,0),(32064,21429,132180,'Pinehurst','United States of America','US','Pinehurst (United States of America)',1,1,0),(32065,21433,132181,'Pineto','Italy','IT','Pineto (Italy)',1,1,0),(32066,21437,132182,'Pineville','United States of America','US','Pineville (United States of America)',1,1,0),(32067,0,132184,'Pinswang','Austria','AT','Pinswang (Austria)',1,1,0),(32068,0,132185,'Piolenc','France','FR','Piolenc (France)',1,1,0),(32069,21461,132186,'Piotta','Switzerland','CH','Piotta (Switzerland)',1,1,0),(32070,0,132187,'Pipa Beach','Brazil','BR','Pipa Beach (Brazil)',1,1,0),(32071,0,132188,'Pirgi Thermis','Greece','GR','Pirgi Thermis (Greece)',1,1,0),(32072,0,132189,'Pissos','France','FR','Pissos (France)',1,1,0),(32073,21494,132190,'Piste','Mexico','MX','Piste (Mexico)',1,1,0),(32074,0,132191,'Pistoia','Italy','IT','Pistoia (Italy)',1,1,0),(32075,21514,132192,'Pittston','United States of America','US','Pittston (United States of America)',1,1,0),(32076,21516,132193,'Pittsworth','Australia','AU','Pittsworth (Australia)',1,1,0),(32077,0,132194,'Pla de l\'Ermita','Spain','ES','Pla de l\'Ermita (Spain)',1,1,0),(32078,21544,132195,'Plano','United States of America','US','Plano (United States of America)',1,1,0),(32079,0,132196,'Plastira-Stausee','Greece','GR','Plastira-Stausee (Greece)',1,1,0),(32080,0,132197,'Platanias (Chania)','Greece','GR','Platanias (Chania) (Greece)',1,1,0),(32081,21564,132198,'Plaue','Germany','DE','Plaue (Germany)',1,1,0),(32082,0,132199,'Plaus','Italy','IT','Plaus (Italy)',1,1,0),(32083,21567,132200,'Playa Bavaro','Dominican Republic','DO','Playa Bavaro (Dominican Republic)',1,1,0),(32084,0,132201,'Playa Bonita','Panama','PA','Playa Bonita (Panama)',1,1,0),(32085,32449,132202,'Playa de la Arena','Spain','ES','Playa de la Arena (Spain)',1,1,0),(32086,32456,132203,'Playa de San Juan','Spain','ES','Playa de San Juan (Spain)',1,1,0),(32087,0,132204,'Playa Estero Negro','Costa Rica','CR','Playa Estero Negro (Costa Rica)',1,1,0),(32088,0,132205,'Playa Flamenca','Spain','ES','Playa Flamenca (Spain)',1,1,0),(32089,0,132206,'Playa Las Hojas','El Salvador','SV','Playa Las Hojas (El Salvador)',1,1,0),(32090,32466,132207,'Playa Mitjorn','Spain','ES','Playa Mitjorn (Spain)',1,1,0),(32091,0,132208,'Playa Ocotal','Costa Rica','CR','Playa Ocotal (Costa Rica)',1,1,0),(32092,0,132209,'Playa Pajaros','Costa Rica','CR','Playa Pajaros (Costa Rica)',1,1,0),(32093,32467,132210,'Playa Paraiso','Spain','ES','Playa Paraiso (Spain)',1,1,0),(32094,0,132211,'Pilion','Greece','GR','Pilion (Greece)',1,1,0),(32095,0,132212,'Pinakates','Greece','GR','Pinakates (Greece)',1,1,0),(32096,21422,132213,'Pindaya','Myanmar','MM','Pindaya (Myanmar)',1,1,0),(32097,32434,132214,'Pine Grove','United States of America','US','Pine Grove (United States of America)',1,1,0),(32098,0,132215,'Pingwe','Tanzania','TZ','Pingwe (Tanzania)',1,1,0),(32099,0,132216,'Pink Gin Beach','Grenada','GD','Pink Gin Beach (Grenada)',1,1,0),(32100,32442,132217,'Pino Torinese','Italy','IT','Pino Torinese (Italy)',1,1,0),(32101,0,132218,'Pionsat','France','FR','Pionsat (France)',1,1,0),(32102,21462,132219,'Piove di Sacco','Italy','IT','Piove di Sacco (Italy)',1,1,0),(32103,21471,132220,'Piran','Slovenia','SI','Piran (Slovenia)',1,1,0),(32104,21476,132221,'Pirovac','Croatia','HR','Pirovac (Croatia)',1,1,0),(32105,0,132222,'Piscinas','Italy','IT','Piscinas (Italy)',1,1,0),(32106,21500,132223,'Pithiviers','France','FR','Pithiviers (France)',1,1,0),(32107,21511,132224,'Pittsfield','United States of America','US','Pittsfield (United States of America)',1,1,0),(32108,21518,132225,'Pizzo','Italy','IT','Pizzo (Italy)',1,1,0),(32109,21523,132226,'Placerville','United States of America','US','Placerville (United States of America)',1,1,0),(32110,0,132227,'Plagne Soleil','France','FR','Plagne Soleil (France)',1,1,0),(32111,0,132228,'Plaidt','Germany','DE','Plaidt (Germany)',1,1,0),(32112,0,132229,'Plaine des Cafres','Reunion','RE','Plaine des Cafres (Reunion)',1,1,0),(32113,21529,132230,'Plainfaing','France','FR','Plainfaing (France)',1,1,0),(32114,0,132231,'Plainfield','United States of America','US','Plainfield (United States of America)',1,1,0),(32115,0,132232,'Plainfield','United States of America','US','Plainfield (United States of America)',1,1,0),(32116,21535,132233,'Plaisir','France','FR','Plaisir (France)',1,1,0),(32117,21536,132234,'Plakias','Greece','GR','Plakias (Greece)',1,1,0),(32118,21552,132235,'Plat','Croatia','HR','Plat (Croatia)',1,1,0),(32119,21554,132236,'Platamona','Italy','IT','Platamona (Italy)',1,1,0),(32120,0,132237,'Plataria','Greece','GR','Plataria (Greece)',1,1,0),(32121,0,132238,'Plati Yialos','Greece','GR','Plati Yialos (Greece)',1,1,0),(32122,0,132239,'Platon','Dominican Republic','DO','Platon (Dominican Republic)',1,1,0),(32123,0,132240,'Plau on Sea','Germany','DE','Plau on Sea (Germany)',1,1,0),(32124,0,132241,'Playa Amadores','Spain','ES','Playa Amadores (Spain)',1,1,0),(32125,0,132242,'Playa Blanca','Panama','PA','Playa Blanca (Panama)',1,1,0),(32126,0,132243,'Playa Buena','Costa Rica','CR','Playa Buena (Costa Rica)',1,1,0),(32127,0,132244,'Playa Cofresi','Dominican Republic','DO','Playa Cofresi (Dominican Republic)',1,1,0),(32128,0,132245,'Playa de Fornells','Spain','ES','Playa de Fornells (Spain)',1,1,0),(32129,0,132246,'Playa de Matapalo','Costa Rica','CR','Playa de Matapalo (Costa Rica)',1,1,0),(32130,0,132247,'Playa del Aguila','Spain','ES','Playa del Aguila (Spain)',1,1,0),(32131,0,132248,'Playa del Albir','Spain','ES','Playa del Albir (Spain)',1,1,0),(32132,0,132249,'Playa El Ocotal','Costa Rica','CR','Playa El Ocotal (Costa Rica)',1,1,0),(32133,0,132250,'Playa Grande','Costa Rica','CR','Playa Grande (Costa Rica)',1,1,0),(32134,0,132251,'Playa Hermosa','Costa Rica','CR','Playa Hermosa (Costa Rica)',1,1,0),(32135,0,132252,'Playa Matagorda','Spain','ES','Playa Matagorda (Spain)',1,1,0),(32136,0,132253,'Playa Pan de Azucar','Costa Rica','CR','Playa Pan de Azucar (Costa Rica)',1,1,0),(32137,0,132254,'Playa Real','Costa Rica','CR','Playa Real (Costa Rica)',1,1,0),(32138,0,132255,'Pleasant Hill','United States of America','US','Pleasant Hill (United States of America)',1,1,0),(32139,0,132256,'Pleasant Prairie','United States of America','US','Pleasant Prairie (United States of America)',1,1,0),(32140,21589,132257,'Plesio','Italy','IT','Plesio (Italy)',1,1,0),(32141,0,132258,'Pleurtuit','France','FR','Pleurtuit (France)',1,1,0),(32142,21597,132259,'Pliezhausen','Germany','DE','Pliezhausen (Germany)',1,1,0),(32143,0,132260,'Plobsheim','France','FR','Plobsheim (France)',1,1,0),(32144,0,132261,'Ploermel','France','FR','Ploermel (France)',1,1,0),(32145,0,132262,'Plomodiern','France','FR','Plomodiern (France)',1,1,0),(32146,21617,132263,'Plougonvelin','France','FR','Plougonvelin (France)',1,1,0),(32147,0,132264,'Plouguerneau','France','FR','Plouguerneau (France)',1,1,0),(32148,0,132265,'Ploumanach','France','FR','Ploumanach (France)',1,1,0),(32149,0,132266,'Plymouth','United Kingdom','UK','Plymouth (United Kingdom)',1,1,0),(32150,0,132267,'Poblacion de Campos','Spain','ES','Poblacion de Campos (Spain)',1,1,0),(32151,21638,132268,'Pocatello','United States of America','US','Pocatello (United States of America)',1,1,0),(32152,0,132269,'Pockau','Germany','DE','Pockau (Germany)',1,1,0),(32153,0,132270,'Podbanske','Slovakia','SK','Podbanske (Slovakia)',1,1,0),(32154,21648,132271,'Podebrady','Czech Republic','CZ','Podebrady (Czech Republic)',1,1,0),(32155,21651,132272,'Podgora','Croatia','HR','Podgora (Croatia)',1,1,0),(32156,0,132273,'Point Cabris','Seychelles','SC','Point Cabris (Seychelles)',1,1,0),(32157,0,132274,'Point du Bout','Martinique','MQ','Point du Bout (Martinique)',1,1,0),(32158,32478,132275,'Point Pleasant Beach','United States of America','US','Point Pleasant Beach (United States of America)',1,1,0),(32159,0,132276,'Pointe Milou','St. Barthelemy',NULL,'Pointe Milou (St. Barthelemy)',1,1,0),(32160,21682,132277,'Poitiers','France','FR','Poitiers (France)',1,1,0),(32161,21692,132278,'Pola de Lena','Spain','ES','Pola de Lena (Spain)',1,1,0),(32162,0,132279,'Polczyn','Poland','PL','Polczyn (Poland)',1,1,0),(32163,21702,132280,'Polis','Cyprus','CY','Polis (Cyprus)',1,1,0),(32164,0,132281,'Poljanak','Croatia','HR','Poljanak (Croatia)',1,1,0),(32165,0,132283,'Polleur','Belgium','BE','Polleur (Belgium)',1,1,0),(32166,21716,132284,'Polonnaruwa','Sri Lanka','LK','Polonnaruwa (Sri Lanka)',1,1,0),(32167,21719,132285,'Polson','United States of America','US','Polson (United States of America)',1,1,0),(32168,0,132286,'Pomaz','Hungary','HU','Pomaz (Hungary)',1,1,0),(32169,0,132287,'Pompadour','France','FR','Pompadour (France)',1,1,0),(32170,0,132288,'Pompignan','France','FR','Pompignan (France)',1,1,0),(32171,0,132289,'Pongwe','Tanzania','TZ','Pongwe (Tanzania)',1,1,0),(32172,0,132290,'Ponikla','Czech Republic','CZ','Ponikla (Czech Republic)',1,1,0),(32173,0,132291,'Ponitz am See','Germany','DE','Ponitz am See (Germany)',1,1,0),(32174,21754,132293,'Ponta Grossa','Brazil','BR','Ponta Grossa (Brazil)',1,1,0),(32175,0,132294,'Ponta Pora','Brazil','BR','Ponta Pora (Brazil)',1,1,0),(32176,21765,132295,'Pont-de-Salars','France','FR','Pont-de-Salars (France)',1,1,0),(32177,0,132296,'Pontefract','United Kingdom','UK','Pontefract (United Kingdom)',1,1,0),(32178,0,132297,'Pontiac','United States of America','US','Pontiac (United States of America)',1,1,0),(32179,0,132298,'Pont-la-Ville FR','Switzerland','CH','Pont-la-Ville FR (Switzerland)',1,1,0),(32180,21788,132299,'Pontlevoy','France','FR','Pontlevoy (France)',1,1,0),(32181,21795,132300,'Pontresina','Switzerland','CH','Pontresina (Switzerland)',1,1,0),(32182,21818,132301,'Poquetanuck','United States of America','US','Poquetanuck (United States of America)',1,1,0),(32183,0,132302,'Pordenone','Italy','IT','Pordenone (Italy)',1,1,0),(32184,21833,132303,'Porreres','Spain','ES','Porreres (Spain)',1,1,0),(32185,0,132304,'Port au Choix','Canada','CA','Port au Choix (Canada)',1,1,0),(32186,0,132305,'Port Camargue','France','FR','Port Camargue (France)',1,1,0),(32187,0,132306,'Port Camphell','Australia','AU','Port Camphell (Australia)',1,1,0),(32188,0,132307,'Port du Crouesty','France','FR','Port du Crouesty (France)',1,1,0),(32189,32545,132308,'Port Hastings','Canada','CA','Port Hastings (Canada)',1,1,0),(32190,32549,132309,'Port Hope','Canada','CA','Port Hope (Canada)',1,1,0),(32191,32551,132310,'Port Hueneme','United States of America','US','Port Hueneme (United States of America)',1,1,0),(32192,0,132311,'Port Rexton','Canada','CA','Port Rexton (Canada)',1,1,0),(32193,32577,132312,'Port Richey','United States of America','US','Port Richey (United States of America)',1,1,0),(32194,0,132313,'Port Saplaya','Spain','ES','Port Saplaya (Spain)',1,1,0),(32195,32584,132314,'Port Stephens','Australia','AU','Port Stephens (Australia)',1,1,0),(32196,21848,132315,'Port Vila','Vanuatu','VU','Port Vila (Vanuatu)',1,1,0),(32197,21858,132316,'Portales','United States of America','US','Portales (United States of America)',1,1,0),(32198,0,132317,'Portbou','Spain','ES','Portbou (Spain)',1,1,0),(32199,0,132318,'Portici','Italy','IT','Portici (Italy)',1,1,0),(32200,0,132319,'Portmagee','Ireland','IE','Portmagee (Ireland)',1,1,0),(32201,0,132320,'Pitztal','Austria','AT','Pitztal (Austria)',1,1,0),(32202,21517,132321,'Piura','Peru','PE','Piura (Peru)',1,1,0),(32203,21519,132322,'Placencia','Belize','BZ','Placencia (Belize)',1,1,0),(32204,21522,132323,'Placentia','United States of America','US','Placentia (United States of America)',1,1,0),(32205,0,132324,'Plagne','Switzerland','CH','Plagne (Switzerland)',1,1,0),(32206,0,132325,'Plagne Bellecote','France','FR','Plagne Bellecote (France)',1,1,0),(32207,0,132326,'Plaka Beach','Greece','GR','Plaka Beach (Greece)',1,1,0),(32208,21537,132327,'Plancoet','France','FR','Plancoet (France)',1,1,0),(32209,21541,132328,'Planguenoual','France','FR','Planguenoual (France)',1,1,0),(32210,0,132329,'Planica','Slovenia','SI','Planica (Slovenia)',1,1,0),(32211,21542,132330,'Plankinton','United States of America','US','Plankinton (United States of America)',1,1,0),(32212,21548,132331,'Plantsville','United States of America','US','Plantsville (United States of America)',1,1,0),(32213,0,132332,'Plati','Greece','GR','Plati (Greece)',1,1,0),(32214,0,132333,'Platier d\'Oye','France','FR','Platier d\'Oye (France)',1,1,0),(32215,0,132334,'Plattekloof','South Africa','ZA','Plattekloof (South Africa)',1,1,0),(32216,21561,132335,'Plattsburgh','United States of America','US','Plattsburgh (United States of America)',1,1,0),(32217,32445,132336,'Playa Blanca','Spain','ES','Playa Blanca (Spain)',1,1,0),(32218,0,132337,'Playa Blanca','Costa Rica','CR','Playa Blanca (Costa Rica)',1,1,0),(32219,0,132338,'Playa Cardon','Venezuela','VE','Playa Cardon (Venezuela)',1,1,0),(32220,0,132339,'Playa de las Fuentes','Spain','ES','Playa de las Fuentes (Spain)',1,1,0),(32221,32453,132340,'Playa de Muro','Spain','ES','Playa de Muro (Spain)',1,1,0),(32222,32455,132341,'Playa de Palma','Spain','ES','Playa de Palma (Spain)',1,1,0),(32223,32457,132342,'Playa de Santiago','Spain','ES','Playa de Santiago (Spain)',1,1,0),(32224,21570,132343,'Playa del Este','Cuba','CU','Playa del Este (Cuba)',1,1,0),(32225,0,132344,'Playa Dorada','Dominican Republic','DO','Playa Dorada (Dominican Republic)',1,1,0),(32226,0,132345,'Playa Esmeralda','Cuba','CU','Playa Esmeralda (Cuba)',1,1,0),(32227,0,132346,'Plech','Germany','DE','Plech (Germany)',1,1,0),(32228,0,132347,'Plettenberg','Germany','DE','Plettenberg (Germany)',1,1,0),(32229,21592,132348,'Pleudihen-sur-Rance','France','FR','Pleudihen-sur-Rance (France)',1,1,0),(32230,0,132349,'Plienciems','Latvia','LV','Plienciems (Latvia)',1,1,0),(32231,0,132350,'Plimmiri','Greece','GR','Plimmiri (Greece)',1,1,0),(32232,0,132351,'Plitvicka Jezera','Croatia','HR','Plitvicka Jezera (Croatia)',1,1,0),(32233,0,132352,'Ploneour Lanvern','France','FR','Ploneour Lanvern (France)',1,1,0),(32234,21614,132353,'Plouescat','France','FR','Plouescat (France)',1,1,0),(32235,0,132354,'Plowen','Germany','DE','Plowen (Germany)',1,1,0),(32236,0,132355,'Plum Point','Canada','CA','Plum Point (Canada)',1,1,0),(32237,0,132356,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(32238,0,132357,'Pocking','Germany','DE','Pocking (Germany)',1,1,0),(32239,21659,132358,'Poggio a Caiano','Italy','IT','Poggio a Caiano (Italy)',1,1,0),(32240,0,132359,'Pohla','Germany','DE','Pohla (Germany)',1,1,0),(32241,21664,132360,'Pohorje','Slovenia','SI','Pohorje (Slovenia)',1,1,0),(32242,0,132361,'Poipu','United States of America','US','Poipu (United States of America)',1,1,0),(32243,21687,132362,'Pokhara','Nepal','NP','Pokhara (Nepal)',1,1,0),(32244,0,132363,'Polanow','Poland','PL','Polanow (Poland)',1,1,0),(32245,0,132364,'Police nad Metuji','Czech Republic','CZ','Police nad Metuji (Czech Republic)',1,1,0),(32246,0,132365,'Policka','Czech Republic','CZ','Policka (Czech Republic)',1,1,0),(32247,21700,132366,'Polignano a Mare','Italy','IT','Polignano a Mare (Italy)',1,1,0),(32248,0,132367,'Polineri Grevena Vasilitsa','Greece','GR','Polineri Grevena Vasilitsa (Greece)',1,1,0),(32249,21711,132368,'Pollonia','Greece','GR','Pollonia (Greece)',1,1,0),(32250,21722,132369,'Poltu Quatu','Italy','IT','Poltu Quatu (Italy)',1,1,0),(32251,21735,132370,'Pomona','United States of America','US','Pomona (United States of America)',1,1,0),(32252,21736,132371,'Pomorie','Bulgaria','BG','Pomorie (Bulgaria)',1,1,0),(32253,0,132372,'Pomster','Germany','DE','Pomster (Germany)',1,1,0),(32254,21741,132373,'Ponca City','United States of America','US','Ponca City (United States of America)',1,1,0),(32255,0,132374,'Poncebos','Spain','ES','Poncebos (Spain)',1,1,0),(32256,0,132375,'Pontchateau','France','FR','Pontchateau (France)',1,1,0),(32257,0,132376,'Pont-de-Roide','France','FR','Pont-de-Roide (France)',1,1,0),(32258,0,132377,'Pont-du-Casse','France','FR','Pont-du-Casse (France)',1,1,0),(32259,0,132378,'Ponte Arche','Italy','IT','Ponte Arche (Italy)',1,1,0),(32260,0,132379,'Ponte Vedra Beach','United States of America','US','Ponte Vedra Beach (United States of America)',1,1,0),(32261,0,132380,'Pontgibaud','France','FR','Pontgibaud (France)',1,1,0),(32262,21798,132381,'Pont-Saint-Martin','Italy','IT','Pont-Saint-Martin (Italy)',1,1,0),(32263,0,132382,'Pontypridd','United Kingdom','UK','Pontypridd (United Kingdom)',1,1,0),(32264,0,132383,'Poppenhausen','Germany','DE','Poppenhausen (Germany)',1,1,0),(32265,21821,132384,'Porec','Croatia','HR','Porec (Croatia)',1,1,0),(32266,21824,132385,'Pori','Finland','FI','Pori (Finland)',1,1,0),(32267,0,132386,'Pornassio','Italy','IT','Pornassio (Italy)',1,1,0),(32268,0,132387,'Poros Town','Greece','GR','Poros Town (Greece)',1,1,0),(32269,21834,132388,'Porretta Terme','Italy','IT','Porretta Terme (Italy)',1,1,0),(32270,21836,132389,'Porsgrunn','Norway','NO','Porsgrunn (Norway)',1,1,0),(32271,32496,132390,'Port Alberni','Canada','CA','Port Alberni (Canada)',1,1,0),(32272,0,132391,'Port Charles','New Zealand','NZ','Port Charles (New Zealand)',1,1,0),(32273,32531,132392,'Port Douglas','Australia','AU','Port Douglas (Australia)',1,1,0),(32274,0,132393,'Port Elizabeth','South Africa','ZA','Port Elizabeth (South Africa)',1,1,0),(32275,0,132394,'Port Hadlock-Irondale','United States of America','US','Port Hadlock-Irondale (United States of America)',1,1,0),(32276,21843,132395,'Port Harcourt','Nigeria','NG','Port Harcourt (Nigeria)',1,1,0),(32277,32547,132396,'Port Hedland','Australia','AU','Port Hedland (Australia)',1,1,0),(32278,0,132397,'Port Klang','Malaysia','MY','Port Klang (Malaysia)',1,1,0),(32279,21844,132398,'Port Louis','Mauritius','MU','Port Louis (Mauritius)',1,1,0),(32280,32570,132399,'Port Orange','United States of America','US','Port Orange (United States of America)',1,1,0),(32281,0,132400,'Port Sunlight','United Kingdom','UK','Port Sunlight (United Kingdom)',1,1,0),(32282,32589,132401,'Port Vendres','France','FR','Port Vendres (France)',1,1,0),(32283,21853,132402,'Portage','United States of America','US','Portage (United States of America)',1,1,0),(32284,0,132403,'Portage La Prairie','Canada','CA','Portage La Prairie (Canada)',1,1,0),(32285,0,132404,'Porthkerry','United Kingdom','UK','Porthkerry (United Kingdom)',1,1,0),(32286,21885,132405,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(32287,0,132406,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(32288,21889,132407,'Portlaoise','Ireland','IE','Portlaoise (Ireland)',1,1,0),(32289,0,132408,'Portmarnock','Ireland','IE','Portmarnock (Ireland)',1,1,0),(32290,0,132409,'Porto Corsini','Italy','IT','Porto Corsini (Italy)',1,1,0),(32291,0,132410,'Porto De Galinhas','Brazil','BR','Porto De Galinhas (Brazil)',1,1,0),(32292,0,132411,'Porto do Son','Spain','ES','Porto do Son (Spain)',1,1,0),(32293,0,132412,'Porto Rafti','Greece','GR','Porto Rafti (Greece)',1,1,0),(32294,0,132413,'Porto Salvo','Italy','IT','Porto Salvo (Italy)',1,1,0),(32295,32628,132414,'Porto Santo Stefano','Italy','IT','Porto Santo Stefano (Italy)',1,1,0),(32296,21922,132415,'Portsmouth','United States of America','US','Portsmouth (United States of America)',1,1,0),(32297,0,132416,'Portsoy','United Kingdom','UK','Portsoy (United Kingdom)',1,1,0),(32298,21932,132417,'Portumna','Ireland','IE','Portumna (Ireland)',1,1,0),(32299,0,132418,'Port-Valais','Switzerland','CH','Port-Valais (Switzerland)',1,1,0),(32300,21936,132419,'Posadas','Argentina','AR','Posadas (Argentina)',1,1,0),(32301,0,132420,'Postira','Croatia','HR','Postira (Croatia)',1,1,0),(32302,0,132421,'Pottenstein','Germany','DE','Pottenstein (Germany)',1,1,0),(32303,21969,132422,'Potts Point','Australia','AU','Potts Point (Australia)',1,1,0),(32304,0,132423,'Powidz','Poland','PL','Powidz (Poland)',1,1,0),(32305,0,132424,'Poyenberg','Germany','DE','Poyenberg (Germany)',1,1,0),(32306,0,132425,'Passy','France','FR','Passy (France)',1,1,0),(32307,20896,132426,'Patagonia','United States of America','US','Patagonia (United States of America)',1,1,0),(32308,0,132427,'Patince','Slovakia','SK','Patince (Slovakia)',1,1,0),(32309,20917,132428,'Patmos','Greece','GR','Patmos (Greece)',1,1,0),(32310,20927,132430,'Patterson','United States of America','US','Patterson (United States of America)',1,1,0),(32311,20973,132431,'Pearl Islands','Panama','PA','Pearl Islands (Panama)',1,1,0),(32312,0,132432,'Pearl River','United States of America','US','Pearl River (United States of America)',1,1,0),(32313,0,132433,'Pearl River','United States of America','US','Pearl River (United States of America)',1,1,0),(32314,21002,132434,'Pedrola','Spain','ES','Pedrola (Spain)',1,1,0),(32315,21004,132435,'Peekskill','United States of America','US','Peekskill (United States of America)',1,1,0),(32316,32414,132436,'Pefkohori','Greece','GR','Pefkohori (Greece)',1,1,0),(32317,21012,132437,'Pegognaga','Italy','IT','Pegognaga (Italy)',1,1,0),(32318,0,132438,'Pegola di Malalbergo','Italy','IT','Pegola di Malalbergo (Italy)',1,1,0),(32319,0,132439,'Peipin','France','FR','Peipin (France)',1,1,0),(32320,21025,132440,'Pekalongan','Indonesia','ID','Pekalongan (Indonesia)',1,1,0),(32321,21028,132441,'Pekutatan','Indonesia','ID','Pekutatan (Indonesia)',1,1,0),(32322,0,132442,'Pella','Greece','GR','Pella (Greece)',1,1,0),(32323,0,132443,'Pellendorf','Austria','AT','Pellendorf (Austria)',1,1,0),(32324,0,132444,'Pembroke Pines','United States of America','US','Pembroke Pines (United States of America)',1,1,0),(32325,0,132445,'Penarrubia','Spain','ES','Penarrubia (Spain)',1,1,0),(32326,0,132446,'Penarth','United Kingdom','UK','Penarth (United Kingdom)',1,1,0),(32327,0,132447,'Penchard','France','FR','Penchard (France)',1,1,0),(32328,0,132448,'Pendine','United Kingdom','UK','Pendine (United Kingdom)',1,1,0),(32329,0,132449,'Penedono','Portugal','PT','Penedono (Portugal)',1,1,0),(32330,0,132450,'Penglai','China','CN','Penglai (China)',1,1,0),(32331,0,132451,'Penhas da Saude','Portugal','PT','Penhas da Saude (Portugal)',1,1,0),(32332,21088,132452,'Peniche','Portugal','PT','Peniche (Portugal)',1,1,0),(32333,0,132453,'Penig','Germany','DE','Penig (Germany)',1,1,0),(32334,0,132454,'Peninsula de Marau','Brazil','BR','Peninsula de Marau (Brazil)',1,1,0),(32335,0,132455,'Pennyghael','United Kingdom','UK','Pennyghael (United Kingdom)',1,1,0),(32336,0,132456,'Penrith','United Kingdom','UK','Penrith (United Kingdom)',1,1,0),(32337,0,132457,'Penvenan','France','FR','Penvenan (France)',1,1,0),(32338,0,132458,'Peone','France','FR','Peone (France)',1,1,0),(32339,21120,132459,'Peosta','United States of America','US','Peosta (United States of America)',1,1,0),(32340,21122,132460,'Pepinster','Belgium','BE','Pepinster (Belgium)',1,1,0),(32341,0,132461,'Perak','Malaysia','MY','Perak (Malaysia)',1,1,0),(32342,0,132462,'Peralejos de las Truchas','Spain','ES','Peralejos de las Truchas (Spain)',1,1,0),(32343,0,132463,'Perinaldo','Italy','IT','Perinaldo (Italy)',1,1,0),(32344,21161,132464,'Perlora','Spain','ES','Perlora (Spain)',1,1,0),(32345,0,132465,'Perry','United States of America','US','Perry (United States of America)',1,1,0),(32346,0,132466,'Perry','United States of America','US','Perry (United States of America)',1,1,0),(32347,0,132467,'Perth','Canada','CA','Perth (Canada)',1,1,0),(32348,0,132468,'Pervomayskoye','Russia','RU','Pervomayskoye (Russia)',1,1,0),(32349,21202,132469,'Pescasseroli','Italy','IT','Pescasseroli (Italy)',1,1,0),(32350,0,132470,'Peschawar','Pakistan','PK','Peschawar (Pakistan)',1,1,0),(32351,0,132471,'Peschiera Borromeo','Italy','IT','Peschiera Borromeo (Italy)',1,1,0),(32352,21205,132472,'Pescia','Italy','IT','Pescia (Italy)',1,1,0),(32353,0,132473,'Petersburg','United States of America','US','Petersburg (United States of America)',1,1,0),(32354,0,132474,'Petersfield','United Kingdom','UK','Petersfield (United Kingdom)',1,1,0),(32355,21244,132475,'Petrer','Spain','ES','Petrer (Spain)',1,1,0),(32356,21253,132476,'Petropolis','Brazil','BR','Petropolis (Brazil)',1,1,0),(32357,21254,132477,'Petrosino','Italy','IT','Petrosino (Italy)',1,1,0),(32358,0,132478,'Petrovsky','Russia','RU','Petrovsky (Russia)',1,1,0),(32359,0,132479,'Petrozavodsk','Russia','RU','Petrozavodsk (Russia)',1,1,0),(32360,21266,132480,'Pevely','United States of America','US','Pevely (United States of America)',1,1,0),(32361,0,132481,'Pevensey','United Kingdom','UK','Pevensey (United Kingdom)',1,1,0),(32362,0,132482,'Pfarrwerfen','Austria','AT','Pfarrwerfen (Austria)',1,1,0),(32363,0,132483,'Pfeffenhausen','Germany','DE','Pfeffenhausen (Germany)',1,1,0),(32364,21280,132484,'Pfinztal','Germany','DE','Pfinztal (Germany)',1,1,0),(32365,0,132485,'Pflach','Austria','AT','Pflach (Austria)',1,1,0),(32366,0,132486,'Pfofeld','Germany','DE','Pfofeld (Germany)',1,1,0),(32367,21283,132487,'Pfronten','Germany','DE','Pfronten (Germany)',1,1,0),(32368,21284,132488,'Pfullendorf','Germany','DE','Pfullendorf (Germany)',1,1,0),(32369,21288,132489,'Phalaborwa','South Africa','ZA','Phalaborwa (South Africa)',1,1,0),(32370,0,132490,'Phan Rang','Vietnam','VN','Phan Rang (Vietnam)',1,1,0),(32371,0,132491,'Phan Thiet','Vietnam','VN','Phan Thiet (Vietnam)',1,1,0),(32372,21300,132492,'Phetchaburi','Thailand','TH','Phetchaburi (Thailand)',1,1,0),(32373,0,132493,'Philippsbourg','France','FR','Philippsbourg (France)',1,1,0),(32374,21307,132494,'Phillipsburg','United States of America','US','Phillipsburg (United States of America)',1,1,0),(32375,21332,132495,'Piaseczno','Poland','PL','Piaseczno (Poland)',1,1,0),(32376,21337,132496,'Piazza Armerina','Italy','IT','Piazza Armerina (Italy)',1,1,0),(32377,21345,132497,'Pichilemu','Chile','CL','Pichilemu (Chile)',1,1,0),(32378,0,132498,'Pichl','Austria','AT','Pichl (Austria)',1,1,0),(32379,21357,132499,'Pico Rivera','United States of America','US','Pico Rivera (United States of America)',1,1,0),(32380,0,132500,'Piedicroce','France','FR','Piedicroce (France)',1,1,0),(32381,0,132501,'Piedralaves','Spain','ES','Piedralaves (Spain)',1,1,0),(32382,0,132502,'Pierre-Buffiere','France','FR','Pierre-Buffiere (France)',1,1,0),(32383,0,132503,'Pieve a Nievole','Italy','IT','Pieve a Nievole (Italy)',1,1,0),(32384,21389,132504,'Pievepelago','Italy','IT','Pievepelago (Italy)',1,1,0),(32385,0,132505,'Pignano di Volterra','Italy','IT','Pignano di Volterra (Italy)',1,1,0),(32386,0,132506,'Pignone','Italy','IT','Pignone (Italy)',1,1,0),(32387,21402,132507,'Pikeville','United States of America','US','Pikeville (United States of America)',1,1,0),(32388,0,132508,'Piliyandala','Sri Lanka','LK','Piliyandala (Sri Lanka)',1,1,0),(32389,0,132509,'Pimonte','Italy','IT','Pimonte (Italy)',1,1,0),(32390,21417,132510,'Pinar del Rio','Cuba','CU','Pinar del Rio (Cuba)',1,1,0),(32391,0,132511,'Pinarello','France','FR','Pinarello (France)',1,1,0),(32392,32437,132512,'Pine Knoll Shores','United States of America','US','Pine Knoll Shores (United States of America)',1,1,0),(32393,32440,132513,'Pine River','United States of America','US','Pine River (United States of America)',1,1,0),(32394,21431,132514,'Pinerolo','Italy','IT','Pinerolo (Italy)',1,1,0),(32395,0,132515,'Pinezici','Croatia','HR','Pinezici (Croatia)',1,1,0),(32396,21443,132516,'Pingliang','China','CN','Pingliang (China)',1,1,0),(32397,21444,132517,'Pingtung','Taiwan','TW','Pingtung (Taiwan)',1,1,0),(32398,0,132518,'Pingxiang','China','CN','Pingxiang (China)',1,1,0),(32399,0,132519,'Pinheiro (Penafiel)','Portugal','PT','Pinheiro (Penafiel) (Portugal)',1,1,0),(32400,0,132520,'Pinjarra','Australia','AU','Pinjarra (Australia)',1,1,0),(32401,0,132521,'Pinkafeld','Austria','AT','Pinkafeld (Austria)',1,1,0),(32402,0,132522,'Pintuyan','Philippines','PH','Pintuyan (Philippines)',1,1,0),(32403,0,132523,'Piriac sur Mer','France','FR','Piriac sur Mer (France)',1,1,0),(32404,0,132524,'Pirkdorfer See','Austria','AT','Pirkdorfer See (Austria)',1,1,0),(32405,21474,132525,'Pirna','Germany','DE','Pirna (Germany)',1,1,0),(32406,21489,132526,'Pisek','Czech Republic','CZ','Pisek (Czech Republic)',1,1,0),(32407,21508,132527,'Pittsboro','United States of America','US','Pittsboro (United States of America)',1,1,0),(32408,0,132528,'Pizhou','China','CN','Pizhou (China)',1,1,0),(32409,0,132529,'Placerville','United States of America','US','Placerville (United States of America)',1,1,0),(32410,0,132530,'Plaine des Palmistes','Reunion','RE','Plaine des Palmistes (Reunion)',1,1,0),(32411,0,132531,'Plav','Montenegro','ME','Plav (Montenegro)',1,1,0),(32412,32448,132532,'Playa de Gandia','Spain','ES','Playa de Gandia (Spain)',1,1,0),(32413,0,132533,'Playa de los Pocillos','Spain','ES','Playa de los Pocillos (Spain)',1,1,0),(32414,0,132534,'Prcanj','Montenegro','ME','Prcanj (Montenegro)',1,1,0),(32415,0,132535,'Prebberede','Germany','DE','Prebberede (Germany)',1,1,0),(32416,0,132536,'Prebold','Slovenia','SI','Prebold (Slovenia)',1,1,0),(32417,0,132537,'Preconne','Italy','IT','Preconne (Italy)',1,1,0),(32418,0,132538,'Predlitz','Austria','AT','Predlitz (Austria)',1,1,0),(32419,22072,132539,'Prerov','Czech Republic','CZ','Prerov (Czech Republic)',1,1,0),(32420,0,132540,'Preussisch Oldendorf','Germany','DE','Preussisch Oldendorf (Germany)',1,1,0),(32421,22101,132541,'Preveza','Greece','GR','Preveza (Greece)',1,1,0),(32422,0,132542,'Pribor','Czech Republic','CZ','Pribor (Czech Republic)',1,1,0),(32423,22102,132543,'Pribylina','Slovakia','SK','Pribylina (Slovakia)',1,1,0),(32424,22104,132544,'Priceville','United States of America','US','Priceville (United States of America)',1,1,0),(32425,0,132545,'Priekuli','Latvia','LV','Priekuli (Latvia)',1,1,0),(32426,0,132546,'Prieros','Germany','DE','Prieros (Germany)',1,1,0),(32427,0,132547,'Prikry','Czech Republic','CZ','Prikry (Czech Republic)',1,1,0),(32428,22110,132548,'Primm','United States of America','US','Primm (United States of America)',1,1,0),(32429,22114,132549,'Prince Albert','Canada','CA','Prince Albert (Canada)',1,1,0),(32430,22117,132550,'Princess Anne','United States of America','US','Princess Anne (United States of America)',1,1,0),(32431,0,132551,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(32432,22122,132552,'Pringle Bay','South Africa','ZA','Pringle Bay (South Africa)',1,1,0),(32433,22127,132553,'Privlaka','Croatia','HR','Privlaka (Croatia)',1,1,0),(32434,0,132554,'Prkenny Dul','Czech Republic','CZ','Prkenny Dul (Czech Republic)',1,1,0),(32435,22142,132555,'Propriano','France','FR','Propriano (France)',1,1,0),(32436,0,132556,'Prum','Germany','DE','Prum (Germany)',1,1,0),(32437,0,132557,'Prutz','Austria','AT','Prutz (Austria)',1,1,0),(32438,22178,132558,'Puch bei Hallein','Austria','AT','Puch bei Hallein (Austria)',1,1,0),(32439,0,132559,'Puchberg','Austria','AT','Puchberg (Austria)',1,1,0),(32440,22184,132560,'Pucon','Chile','CL','Pucon (Chile)',1,1,0),(32441,22188,132562,'Puebla','Mexico','MX','Puebla (Mexico)',1,1,0),(32442,22189,132563,'Puebla de Farnals','Spain','ES','Puebla de Farnals (Spain)',1,1,0),(32443,0,132564,'Pueblo de Codpa','Chile','CL','Pueblo de Codpa (Chile)',1,1,0),(32444,22197,132565,'Puerto Ayacucho','Venezuela','VE','Puerto Ayacucho (Venezuela)',1,1,0),(32445,22202,132566,'Puerto Cortes','Honduras','HN','Puerto Cortes (Honduras)',1,1,0),(32446,0,132567,'Puerto de Andraitx','Spain','ES','Puerto de Andraitx (Spain)',1,1,0),(32447,0,132568,'Puerto de Bejar','Spain','ES','Puerto de Bejar (Spain)',1,1,0),(32448,32646,132569,'Puerto del Rosario','Spain','ES','Puerto del Rosario (Spain)',1,1,0),(32449,0,132570,'Puerto Guadal','Chile','CL','Puerto Guadal (Chile)',1,1,0),(32450,22205,132571,'Puerto Jimenez','Costa Rica','CR','Puerto Jimenez (Costa Rica)',1,1,0),(32451,0,132572,'Puerto la Cruz','Venezuela','VE','Puerto la Cruz (Venezuela)',1,1,0),(32452,0,132573,'Puerto Natales','Chile','CL','Puerto Natales (Chile)',1,1,0),(32453,0,132574,'Puerto Rico','Argentina','AR','Puerto Rico (Argentina)',1,1,0),(32454,0,132575,'Puerto San Jose','Guatemala','GT','Puerto San Jose (Guatemala)',1,1,0),(32455,0,132576,'Puerto Vallarta','Mexico','MX','Puerto Vallarta (Mexico)',1,1,0),(32456,0,132577,'Puget-Rostang','France','FR','Puget-Rostang (France)',1,1,0),(32457,0,132578,'Pulaski','United States of America','US','Pulaski (United States of America)',1,1,0),(32458,0,132579,'Pulau Derawan','Indonesia','ID','Pulau Derawan (Indonesia)',1,1,0),(32459,0,132580,'Pulau Jerejak','Malaysia','MY','Pulau Jerejak (Malaysia)',1,1,0),(32460,0,132581,'Pulau Menyawakan','Indonesia','ID','Pulau Menyawakan (Indonesia)',1,1,0),(32461,0,132582,'Pulau Selingan','Malaysia','MY','Pulau Selingan (Malaysia)',1,1,0),(32462,0,132583,'Pulsnitz','Germany','DE','Pulsnitz (Germany)',1,1,0),(32463,22239,132584,'Punkaharju','Finland','FI','Punkaharju (Finland)',1,1,0),(32464,0,132585,'Punta Centinela','Ecuador','EC','Punta Centinela (Ecuador)',1,1,0),(32465,0,132586,'Punta del Hidalgo','Spain','ES','Punta del Hidalgo (Spain)',1,1,0),(32466,0,132587,'Punta Marina','Italy','IT','Punta Marina (Italy)',1,1,0),(32467,0,132588,'Punta Prima','Spain','ES','Punta Prima (Spain)',1,1,0),(32468,0,132589,'Punta Rucia','Dominican Republic','DO','Punta Rucia (Dominican Republic)',1,1,0),(32469,0,132590,'Punta Skala','Croatia','HR','Punta Skala (Croatia)',1,1,0),(32470,0,132591,'Punta Umbria','Spain','ES','Punta Umbria (Spain)',1,1,0),(32471,0,132592,'Puolanka','Finland','FI','Puolanka (Finland)',1,1,0),(32472,22263,132594,'Purkersdorf','Austria','AT','Purkersdorf (Austria)',1,1,0),(32473,0,132595,'Putnam Station','United States of America','US','Putnam Station (United States of America)',1,1,0),(32474,0,132596,'Putre','Chile','CL','Putre (Chile)',1,1,0),(32475,22303,132597,'Puy-Saint-Vincent','France','FR','Puy-Saint-Vincent (France)',1,1,0),(32476,0,132598,'Pyla sur Mer','France','FR','Pyla sur Mer (France)',1,1,0),(32477,0,132599,'Pysely','Czech Republic','CZ','Pysely (Czech Republic)',1,1,0),(32478,0,132600,'Qian\'an','China','CN','Qian\'an (China)',1,1,0),(32479,0,132601,'Qinzhou','China','CN','Qinzhou (China)',1,1,0),(32480,0,132602,'Quadrivio (Campagna)','Italy','IT','Quadrivio (Campagna) (Italy)',1,1,0),(32481,0,132603,'Quang Ngai','Vietnam','VN','Quang Ngai (Vietnam)',1,1,0),(32482,22353,132604,'Quarre-les-Tombes','France','FR','Quarre-les-Tombes (France)',1,1,0),(32483,0,132605,'Quart','Italy','IT','Quart (Italy)',1,1,0),(32484,0,132606,'Quarto d\'Altino','Italy','IT','Quarto d\'Altino (Italy)',1,1,0),(32485,22384,132607,'Quercegrossa','Italy','IT','Quercegrossa (Italy)',1,1,0),(32486,22388,132608,'Quetigny','France','FR','Quetigny (France)',1,1,0),(32487,22399,132609,'Quickborn','Germany','DE','Quickborn (Germany)',1,1,0),(32488,0,132610,'Quirpon','Canada','CA','Quirpon (Canada)',1,1,0),(32489,22430,132611,'Qujing','China','CN','Qujing (China)',1,1,0),(32490,0,132612,'Qurba','Tunisia','TN','Qurba (Tunisia)',1,1,0),(32491,22436,132613,'Quzhou','China','CN','Quzhou (China)',1,1,0),(32492,0,132614,'Rabka','Poland','PL','Rabka (Poland)',1,1,0),(32493,22449,132615,'Racale','Italy','IT','Racale (Italy)',1,1,0),(32494,0,132616,'Radein','Italy','IT','Radein (Italy)',1,1,0),(32495,0,132617,'Radetici','Croatia','HR','Radetici (Croatia)',1,1,0),(32496,0,132618,'Radolfzell am Bodensee','Germany','DE','Radolfzell am Bodensee (Germany)',1,1,0),(32497,0,132619,'Radwell',NULL,NULL,'Radwell ()',1,1,0),(32498,0,132620,'Rain am Lech','Germany','DE','Rain am Lech (Germany)',1,1,0),(32499,0,132622,'Ramnas','Sweden','SE','Ramnas (Sweden)',1,1,0),(32500,22542,132623,'Ramona','United States of America','US','Ramona (United States of America)',1,1,0),(32501,22543,132624,'Ramonville-Saint-Agne','France','FR','Ramonville-Saint-Agne (France)',1,1,0),(32502,0,132625,'Ramot',NULL,NULL,'Ramot ()',1,1,0),(32503,0,132626,'Ramrod Key','United States of America','US','Ramrod Key (United States of America)',1,1,0),(32504,0,132627,'Ramsau am Dachstein','Austria','AT','Ramsau am Dachstein (Austria)',1,1,0),(32505,22560,132628,'Rancagua','Chile','CL','Rancagua (Chile)',1,1,0),(32506,0,132629,'Rancho Cordova','United States of America','US','Rancho Cordova (United States of America)',1,1,0),(32507,0,132630,'Rancho Mirage','United States of America','US','Rancho Mirage (United States of America)',1,1,0),(32508,22568,132631,'Randan','France','FR','Randan (France)',1,1,0),(32509,22569,132632,'Randazzo','Italy','IT','Randazzo (Italy)',1,1,0),(32510,0,132633,'Rang-du-Fliers','France','FR','Rang-du-Fliers (France)',1,1,0),(32511,22577,132634,'Rangeley','United States of America','US','Rangeley (United States of America)',1,1,0),(32512,0,132635,'Rangersdorf','Austria','AT','Rangersdorf (Austria)',1,1,0),(32513,22585,132636,'Rankweil','Austria','AT','Rankweil (Austria)',1,1,0),(32514,22588,132637,'Ranong','Thailand','TH','Ranong (Thailand)',1,1,0),(32515,22600,132638,'Rapolla','Italy','IT','Rapolla (Italy)',1,1,0),(32516,22603,132639,'Raritan','United States of America','US','Raritan (United States of America)',1,1,0),(32517,0,132640,'Rasht','Iran','IR','Rasht (Iran)',1,1,0),(32518,20529,132641,'Pacific','United States of America','US','Pacific (United States of America)',1,1,0),(32519,0,132642,'Pahl','Germany','DE','Pahl (Germany)',1,1,0),(32520,20570,132643,'Pai','Thailand','TH','Pai (Thailand)',1,1,0),(32521,0,132644,'Pai di Sopra','Italy','IT','Pai di Sopra (Italy)',1,1,0),(32522,20575,132645,'Paimio','Finland','FI','Paimio (Finland)',1,1,0),(32523,20580,132646,'Paintsville','United States of America','US','Paintsville (United States of America)',1,1,0),(32524,20584,132647,'Paita','New Caledonia','NC','Paita (New Caledonia)',1,1,0),(32525,20603,132648,'Palaiseau','France','FR','Palaiseau (France)',1,1,0),(32526,20612,132649,'Palatine','United States of America','US','Palatine (United States of America)',1,1,0),(32527,20621,132650,'Palembang','Indonesia','ID','Palembang (Indonesia)',1,1,0),(32528,20622,132651,'Palencia','Spain','ES','Palencia (Spain)',1,1,0),(32529,20634,132652,'Paleros','Greece','GR','Paleros (Greece)',1,1,0),(32530,0,132653,'Palic','Serbia','RS','Palic (Serbia)',1,1,0),(32531,20647,132654,'Palm Beach','Aruba','AW','Palm Beach (Aruba)',1,1,0),(32532,32396,132655,'Palma del Rio','Spain','ES','Palma del Rio (Spain)',1,1,0),(32533,20656,132656,'Palmdale','United States of America','US','Palmdale (United States of America)',1,1,0),(32534,20664,132657,'Palmerston North','New Zealand','NZ','Palmerston North (New Zealand)',1,1,0),(32535,0,132658,'Palmetto Point','Antigua & Barbuda','AG','Palmetto Point (Antigua & Barbuda)',1,1,0),(32536,0,132659,'Palmwag','Namibia','NA','Palmwag (Namibia)',1,1,0),(32537,0,132660,'Palmyra','Syria',NULL,'Palmyra (Syria)',1,1,0),(32538,0,132661,'Palmyra','United States of America','US','Palmyra (United States of America)',1,1,0),(32539,20672,132662,'Palo Alto','United States of America','US','Palo Alto (United States of America)',1,1,0),(32540,20674,132663,'Palombara Sabina','Italy','IT','Palombara Sabina (Italy)',1,1,0),(32541,0,132664,'Palomino','Colombia','CO','Palomino (Colombia)',1,1,0),(32542,0,132665,'Palt','Austria','AT','Palt (Austria)',1,1,0),(32543,0,132666,'Panagjurischte','Bulgaria','BG','Panagjurischte (Bulgaria)',1,1,0),(32544,0,132667,'Panama City','Panama','PA','Panama City (Panama)',1,1,0),(32545,0,132668,'Pangani','Tanzania','TZ','Pangani (Tanzania)',1,1,0),(32546,20719,132669,'Panguipulli','Chile','CL','Panguipulli (Chile)',1,1,0),(32547,20721,132670,'Panicale','Italy','IT','Panicale (Italy)',1,1,0),(32548,20724,132671,'Panjin','China','CN','Panjin (China)',1,1,0),(32549,20733,132672,'Pantai Cenang','Malaysia','MY','Pantai Cenang (Malaysia)',1,1,0),(32550,0,132673,'Pantanagianni','Italy','IT','Pantanagianni (Italy)',1,1,0),(32551,0,132674,'Panzhihua','China','CN','Panzhihua (China)',1,1,0),(32552,20744,132675,'Paola','Italy','IT','Paola (Italy)',1,1,0),(32553,0,132676,'Papadianika','Greece','GR','Papadianika (Greece)',1,1,0),(32554,0,132677,'Papineauville','Canada','CA','Papineauville (Canada)',1,1,0),(32555,20765,132678,'Parabiago','Italy','IT','Parabiago (Italy)',1,1,0),(32556,20770,132679,'Parachute','United States of America','US','Parachute (United States of America)',1,1,0),(32557,0,132680,'Paracin','Serbia','RS','Paracin (Serbia)',1,1,0),(32558,0,132681,'Paradera','Aruba','AW','Paradera (Aruba)',1,1,0),(32559,0,132682,'Paradise Beach','Greece','GR','Paradise Beach (Greece)',1,1,0),(32560,0,132683,'Paradiso','Switzerland','CH','Paradiso (Switzerland)',1,1,0),(32561,20777,132684,'Paradou','France','FR','Paradou (France)',1,1,0),(32562,0,132685,'Paralia Katerinis','Greece','GR','Paralia Katerinis (Greece)',1,1,0),(32563,0,132686,'Paralia Ofryniou','Greece','GR','Paralia Ofryniou (Greece)',1,1,0),(32564,0,132687,'Paranga Beach','Greece','GR','Paranga Beach (Greece)',1,1,0),(32565,20803,132688,'Parcay-Meslay','France','FR','Parcay-Meslay (France)',1,1,0),(32566,20812,132689,'Parga','Greece','GR','Parga (Greece)',1,1,0),(32567,20814,132690,'Parghelia','Italy','IT','Parghelia (Italy)',1,1,0),(32568,20819,132691,'Parikia','Greece','GR','Parikia (Greece)',1,1,0),(32569,0,132692,'Paris','United States of America','US','Paris (United States of America)',1,1,0),(32570,32402,132693,'Park City','United States of America','US','Park City (United States of America)',1,1,0),(32571,20849,132694,'Paro','Bhutan','BT','Paro (Bhutan)',1,1,0),(32572,0,132695,'Parpan','Switzerland','CH','Parpan (Switzerland)',1,1,0),(32573,0,132696,'Parrot Cay','Turks & Caicos Islands',NULL,'Parrot Cay (Turks & Caicos Islands)',1,1,0),(32574,20867,132697,'Parshall','United States of America','US','Parshall (United States of America)',1,1,0),(32575,0,132698,'Partinico','Italy','IT','Partinico (Italy)',1,1,0),(32576,0,132699,'Pasohlavky','Czech Republic','CZ','Pasohlavky (Czech Republic)',1,1,0),(32577,20890,132700,'Passignano sul Trasimeno','Italy','IT','Passignano sul Trasimeno (Italy)',1,1,0),(32578,20891,132701,'Passo Fundo','Brazil','BR','Passo Fundo (Brazil)',1,1,0),(32579,0,132702,'Passo Tonale','Italy','IT','Passo Tonale (Italy)',1,1,0),(32580,0,132703,'Passugg','Switzerland','CH','Passugg (Switzerland)',1,1,0),(32581,0,132704,'Paterna Del Madera','Spain','ES','Paterna Del Madera (Spain)',1,1,0),(32582,0,132706,'Patrickswell','Ireland','IE','Patrickswell (Ireland)',1,1,0),(32583,0,132707,'Pavilosta','Latvia','LV','Pavilosta (Latvia)',1,1,0),(32584,0,132708,'Payao','Philippines','PH','Payao (Philippines)',1,1,0),(32585,20960,132709,'Paysandu','Uruguay','UY','Paysandu (Uruguay)',1,1,0),(32586,0,132710,'Pazar','Turkey','TR','Pazar (Turkey)',1,1,0),(32587,20989,132711,'Peculiar','United States of America','US','Peculiar (United States of America)',1,1,0),(32588,0,132712,'Pedi Beach','Greece','GR','Pedi Beach (Greece)',1,1,0),(32589,0,132713,'Peebles','United Kingdom','UK','Peebles (United Kingdom)',1,1,0),(32590,0,132714,'Pefki','Greece','GR','Pefki (Greece)',1,1,0),(32591,0,132715,'Pelaga','Indonesia','ID','Pelaga (Indonesia)',1,1,0),(32592,0,132716,'Pelican','Australia','AU','Pelican (Australia)',1,1,0),(32593,21039,132717,'Peligros','Spain','ES','Peligros (Spain)',1,1,0),(32594,21042,132718,'Pella','United States of America','US','Pella (United States of America)',1,1,0),(32595,0,132719,'Pellizzano','Italy','IT','Pellizzano (Italy)',1,1,0),(32596,0,132720,'Pelm','Germany','DE','Pelm (Germany)',1,1,0),(32597,21056,132721,'Pemberton','Australia','AU','Pemberton (Australia)',1,1,0),(32598,21059,132722,'Pembroke','United States of America','US','Pembroke (United States of America)',1,1,0),(32599,0,132723,'Penapolis','Brazil','BR','Penapolis (Brazil)',1,1,0),(32600,0,132725,'Penkridge','United Kingdom','UK','Penkridge (United Kingdom)',1,1,0),(32601,0,132726,'Penmarch','France','FR','Penmarch (France)',1,1,0),(32602,0,132727,'Penne','Italy','IT','Penne (Italy)',1,1,0),(32603,0,132728,'Pensacola Beach','United States of America','US','Pensacola Beach (United States of America)',1,1,0),(32604,21110,132729,'Penticton','Canada','CA','Penticton (Canada)',1,1,0),(32605,21119,132730,'Peoria','United States of America','US','Peoria (United States of America)',1,1,0),(32606,21126,132731,'Pequot Lakes','United States of America','US','Pequot Lakes (United States of America)',1,1,0),(32607,21130,132732,'Percival','United States of America','US','Percival (United States of America)',1,1,0),(32608,0,132733,'Perdifumo','Italy','IT','Perdifumo (Italy)',1,1,0),(32609,21148,132734,'Perillo','Spain','ES','Perillo (Spain)',1,1,0),(32610,0,132735,'Pernitz','Austria','AT','Pernitz (Austria)',1,1,0),(32611,21167,132736,'Pero','Italy','IT','Pero (Italy)',1,1,0),(32612,0,132737,'Perry','United States of America','US','Perry (United States of America)',1,1,0),(32613,21179,132738,'Perrysburg','United States of America','US','Perrysburg (United States of America)',1,1,0),(32614,21182,132739,'Perryville','United States of America','US','Perryville (United States of America)',1,1,0),(32615,0,132740,'Persenbeug-Gottsdorf','Austria','AT','Persenbeug-Gottsdorf (Austria)',1,1,0),(32616,21193,132741,'Pertuis','France','FR','Pertuis (France)',1,1,0),(32617,21197,132742,'Pescadero','United States of America','US','Pescadero (United States of America)',1,1,0),(32618,0,132743,'Peschadoires','France','FR','Peschadoires (France)',1,1,0),(32619,0,132744,'Peschiera','Italy','IT','Peschiera (Italy)',1,1,0),(32620,0,132745,'Peterborough','United Kingdom','UK','Peterborough (United Kingdom)',1,1,0),(32621,0,132746,'Petersfeld','Germany','DE','Petersfeld (Germany)',1,1,0),(32622,21228,132747,'Petershagen','Germany','DE','Petershagen (Germany)',1,1,0),(32623,0,132748,'Petrovo','Russia','RU','Petrovo (Russia)',1,1,0),(32624,0,132749,'Petting','Germany','DE','Petting (Germany)',1,1,0),(32625,0,132750,'Pettneu','Austria','AT','Pettneu (Austria)',1,1,0),(32626,0,132751,'Pezzan','Italy','IT','Pezzan (Italy)',1,1,0),(32627,0,132752,'Pfaffing an der Attel','Germany','DE','Pfaffing an der Attel (Germany)',1,1,0),(32628,21181,132754,'Perryton','United States of America','US','Perryton (United States of America)',1,1,0),(32629,0,132755,'Perth','United Kingdom','UK','Perth (United Kingdom)',1,1,0),(32630,0,132756,'Peru','United States of America','US','Peru (United States of America)',1,1,0),(32631,0,132757,'Pervalka','Lithuania','LT','Pervalka (Lithuania)',1,1,0),(32632,21212,132758,'Petalidi','Greece','GR','Petalidi (Greece)',1,1,0),(32633,21214,132759,'Petaluma','United States of America','US','Petaluma (United States of America)',1,1,0),(32634,21220,132760,'Peterborough','Canada','CA','Peterborough (Canada)',1,1,0),(32635,0,132761,'Petersberg','Italy','IT','Petersberg (Italy)',1,1,0),(32636,0,132762,'Petersburg','United States of America','US','Petersburg (United States of America)',1,1,0),(32637,0,132763,'Petite-Vallee','Canada','CA','Petite-Vallee (Canada)',1,1,0),(32638,21240,132764,'Petra','Spain','ES','Petra (Spain)',1,1,0),(32639,21242,132765,'Petralia Soprana','Italy','IT','Petralia Soprana (Italy)',1,1,0),(32640,21243,132766,'Petrcane','Croatia','HR','Petrcane (Croatia)',1,1,0),(32641,0,132767,'Petrognano','Italy','IT','Petrognano (Italy)',1,1,0),(32642,0,132768,'Petrokefalo','Greece','GR','Petrokefalo (Greece)',1,1,0),(32643,21250,132769,'Petrolina','Brazil','BR','Petrolina (Brazil)',1,1,0),(32644,0,132770,'Petrovac','Montenegro','ME','Petrovac (Montenegro)',1,1,0),(32645,0,132771,'Peyrelau',NULL,NULL,'Peyrelau ()',1,1,0),(32646,0,132772,'Pezze di Greco','Italy','IT','Pezze di Greco (Italy)',1,1,0),(32647,0,132773,'Pfaffenhofen','France','FR','Pfaffenhofen (France)',1,1,0),(32648,0,132774,'Pfarrkirchen','Germany','DE','Pfarrkirchen (Germany)',1,1,0),(32649,0,132775,'Philadelphia','United States of America','US','Philadelphia (United States of America)',1,1,0),(32650,21302,132776,'Philippi','United States of America','US','Philippi (United States of America)',1,1,0),(32651,0,132777,'Philippou','Greece','GR','Philippou (Greece)',1,1,0),(32652,0,132778,'Phoenix','United States of America','US','Phoenix (United States of America)',1,1,0),(32653,21323,132779,'Piana','France','FR','Piana (France)',1,1,0),(32654,21325,132780,'Piancastagnaio','Italy','IT','Piancastagnaio (Italy)',1,1,0),(32655,0,132781,'Pianottoli-Caldarello','France','FR','Pianottoli-Caldarello (France)',1,1,0),(32656,0,132782,'Pich','Czech Republic','CZ','Pich (Czech Republic)',1,1,0),(32657,21352,132783,'Pickering','Canada','CA','Pickering (Canada)',1,1,0),(32658,0,132784,'Piding','Germany','DE','Piding (Germany)',1,1,0),(32659,0,132785,'Piechowice','Poland','PL','Piechowice (Poland)',1,1,0),(32660,0,132786,'Pierrefitte-sur-Sauldre','France','FR','Pierrefitte-sur-Sauldre (France)',1,1,0),(32661,0,132787,'Pierrelaye','France','FR','Pierrelaye (France)',1,1,0),(32662,0,132788,'Pietarsaari','Finland','FI','Pietarsaari (Finland)',1,1,0),(32663,0,132789,'Pieve Emanuele','Italy','IT','Pieve Emanuele (Italy)',1,1,0),(32664,0,132790,'Pieve Santo Stefano','Italy','IT','Pieve Santo Stefano (Italy)',1,1,0),(32665,21408,132791,'Pilar de la Horadada','Spain','ES','Pilar de la Horadada (Spain)',1,1,0),(32666,0,132792,'Pimville','South Africa','ZA','Pimville (South Africa)',1,1,0),(32667,32438,132793,'Pine Mountain','United States of America','US','Pine Mountain (United States of America)',1,1,0),(32668,21428,132794,'Pinedale','United States of America','US','Pinedale (United States of America)',1,1,0),(32669,21430,132795,'Pinellas Park','United States of America','US','Pinellas Park (United States of America)',1,1,0),(32670,21435,132796,'Pinetop-Lakeside','United States of America','US','Pinetop-Lakeside (United States of America)',1,1,0),(32671,0,132797,'Pineville','United States of America','US','Pineville (United States of America)',1,1,0),(32672,0,132798,'Pingdu','China','CN','Pingdu (China)',1,1,0),(32673,0,132799,'Pingtan','China','CN','Pingtan (China)',1,1,0),(32674,21450,132800,'Pinneberg','Germany','DE','Pinneberg (Germany)',1,1,0),(32675,0,132801,'Pinnow','Germany','DE','Pinnow (Germany)',1,1,0),(32676,21458,132802,'Pinzolo','Italy','IT','Pinzolo (Italy)',1,1,0),(32677,0,132803,'Piodao','Portugal','PT','Piodao (Portugal)',1,1,0),(32678,0,132804,'Piora','Switzerland','CH','Piora (Switzerland)',1,1,0),(32679,21467,132805,'Piracicaba','Brazil','BR','Piracicaba (Brazil)',1,1,0),(32680,0,132806,'Pirgos Psilonerou','Greece','GR','Pirgos Psilonerou (Greece)',1,1,0),(32681,0,132807,'Pirot','Serbia','RS','Pirot (Serbia)',1,1,0),(32682,0,132808,'Pirto','Hungary','HU','Pirto (Hungary)',1,1,0),(32683,0,132809,'Pisany','France','FR','Pisany (France)',1,1,0),(32684,0,132810,'Pischeldorf','Austria','AT','Pischeldorf (Austria)',1,1,0),(32685,21487,132811,'Pisco','Peru','PE','Pisco (Peru)',1,1,0),(32686,0,132812,'Pisgah Forest','United States of America','US','Pisgah Forest (United States of America)',1,1,0),(32687,0,132813,'Pismenovo','Bulgaria','BG','Pismenovo (Bulgaria)',1,1,0),(32688,21491,132814,'Pismo Beach','United States of America','US','Pismo Beach (United States of America)',1,1,0),(32689,0,132815,'Pisz','Poland','PL','Pisz (Poland)',1,1,0),(32690,21499,132816,'Pitesti','Romania','RO','Pitesti (Romania)',1,1,0),(32691,21501,132817,'Pitigliano','Italy','IT','Pitigliano (Italy)',1,1,0),(32692,0,132818,'Pittsburg','United States of America','US','Pittsburg (United States of America)',1,1,0),(32693,21510,132819,'Pittsburgh','United States of America','US','Pittsburgh (United States of America)',1,1,0),(32694,0,132820,'Pittulongu','Italy','IT','Pittulongu (Italy)',1,1,0),(32695,0,132821,'Pjatigorsk','Russia','RU','Pjatigorsk (Russia)',1,1,0),(32696,21521,132822,'Placentia','Canada','CA','Placentia (Canada)',1,1,0),(32697,0,132823,'Plagiari','Greece','GR','Plagiari (Greece)',1,1,0),(32698,21531,132824,'Plainsboro','United States of America','US','Plainsboro (United States of America)',1,1,0),(32699,21532,132825,'Plainview','United States of America','US','Plainview (United States of America)',1,1,0),(32700,21534,132826,'Plainwell','United States of America','US','Plainwell (United States of America)',1,1,0),(32701,0,132827,'Plaisance','France','FR','Plaisance (France)',1,1,0),(32702,0,132828,'Plaka','Greece','GR','Plaka (Greece)',1,1,0),(32703,0,132829,'Plaka Litochoro','Greece','GR','Plaka Litochoro (Greece)',1,1,0),(32704,21540,132830,'Planegg','Germany','DE','Planegg (Germany)',1,1,0),(32705,0,132831,'Planos','Greece','GR','Planos (Greece)',1,1,0),(32706,21546,132832,'Plantation','United States of America','US','Plantation (United States of America)',1,1,0),(32707,21549,132833,'Plaquemine','United States of America','US','Plaquemine (United States of America)',1,1,0),(32708,0,132834,'Plasencia','Spain','ES','Plasencia (Spain)',1,1,0),(32709,0,132835,'Platamonas','Greece','GR','Platamonas (Greece)',1,1,0),(32710,0,132836,'Platanidia','Greece','GR','Platanidia (Greece)',1,1,0),(32711,21559,132837,'Platte City','United States of America','US','Platte City (United States of America)',1,1,0),(32712,21562,132838,'Platys Gialos','Greece','GR','Platys Gialos (Greece)',1,1,0),(32713,0,132839,'Platys Gyalos','Greece','GR','Platys Gyalos (Greece)',1,1,0),(32714,0,132840,'Playa Caribe','Venezuela','VE','Playa Caribe (Venezuela)',1,1,0),(32715,32446,132841,'Playa de Esquinzo','Spain','ES','Playa de Esquinzo (Spain)',1,1,0),(32716,32450,132842,'Playa de las Americas','Spain','ES','Playa de las Americas (Spain)',1,1,0),(32717,0,132843,'Playa de Pals','Spain','ES','Playa de Pals (Spain)',1,1,0),(32718,0,132844,'Playa Grande','Dominican Republic','DO','Playa Grande (Dominican Republic)',1,1,0),(32719,0,132845,'Playa Guacuco','Venezuela','VE','Playa Guacuco (Venezuela)',1,1,0),(32720,0,132846,'Playa las Arenas - Bahia de Plata','Venezuela','VE','Playa las Arenas - Bahia de Plata (Venezuela)',1,1,0),(32721,0,132847,'Playa Sunzal','El Salvador','SV','Playa Sunzal (El Salvador)',1,1,0),(32722,0,132848,'Playa Tamarindo','Costa Rica','CR','Playa Tamarindo (Costa Rica)',1,1,0),(32723,0,132849,'Playa Yuraguanal','Cuba','CU','Playa Yuraguanal (Cuba)',1,1,0),(32724,21577,132850,'Pleasanton','United States of America','US','Pleasanton (United States of America)',1,1,0),(32725,0,132851,'Plehedel','France','FR','Plehedel (France)',1,1,0),(32726,0,132852,'Plehuti','Croatia','HR','Plehuti (Croatia)',1,1,0),(32727,21581,132853,'Pleinfeld','Germany','DE','Pleinfeld (Germany)',1,1,0),(32728,0,132854,'Plessow','Germany','DE','Plessow (Germany)',1,1,0),(32729,0,132855,'Pleszew','Poland','PL','Pleszew (Poland)',1,1,0),(32730,0,132856,'Pleyber-Christ','France','FR','Pleyber-Christ (France)',1,1,0),(32731,21602,132857,'Ploemel','France','FR','Ploemel (France)',1,1,0),(32732,21612,132858,'Plorec-Sur-Arguenon','France','FR','Plorec-Sur-Arguenon (France)',1,1,0),(32733,0,132859,'Plo?berg','Germany','DE','Plo?berg (Germany)',1,1,0),(32734,21613,132860,'Ploubazlanec','France','FR','Ploubazlanec (France)',1,1,0),(32735,21615,132861,'Plougasnou','France','FR','Plougasnou (France)',1,1,0),(32736,0,132862,'Playa Roqueta','Spain','ES','Playa Roqueta (Spain)',1,1,0),(32737,0,132863,'Playa Samara','Costa Rica','CR','Playa Samara (Costa Rica)',1,1,0),(32738,21591,132864,'Plettenberg Bay','South Africa','ZA','Plettenberg Bay (South Africa)',1,1,0),(32739,0,132865,'Pleven','France','FR','Pleven (France)',1,1,0),(32740,21608,132866,'Plombieres-les-Bains','France','FR','Plombieres-les-Bains (France)',1,1,0),(32741,21620,132867,'Plovdiv','Bulgaria','BG','Plovdiv (Bulgaria)',1,1,0),(32742,0,132868,'Plunge','Lithuania','LT','Plunge (Lithuania)',1,1,0),(32743,0,132869,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(32744,0,132870,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(32745,21641,132871,'Pocomoke City','United States of America','US','Pocomoke City (United States of America)',1,1,0),(32746,0,132872,'Podgorica','Montenegro','ME','Podgorica (Montenegro)',1,1,0),(32747,21655,132873,'Podstrana','Croatia','HR','Podstrana (Croatia)',1,1,0),(32748,0,132874,'Poggio Berni','Italy','IT','Poggio Berni (Italy)',1,1,0),(32749,0,132875,'Pohang','South Korea','KR','Pohang (South Korea)',1,1,0),(32750,0,132876,'Poide','Estonia','EE','Poide (Estonia)',1,1,0),(32751,21681,132877,'Poipet','Cambodia','KH','Poipet (Cambodia)',1,1,0),(32752,0,132878,'Poisson','France','FR','Poisson (France)',1,1,0),(32753,21709,132879,'Polling im Innkreis','Austria','AT','Polling im Innkreis (Austria)',1,1,0),(32754,21710,132880,'Pollock Pines','United States of America','US','Pollock Pines (United States of America)',1,1,0),(32755,21714,132881,'Polokwane','South Africa','ZA','Polokwane (South Africa)',1,1,0),(32756,0,132882,'Pols','Austria','AT','Pols (Austria)',1,1,0),(32757,0,132883,'Poltawa','Ukraine','UA','Poltawa (Ukraine)',1,1,0),(32758,0,132884,'Pommersfelden','Germany','DE','Pommersfelden (Germany)',1,1,0),(32759,21740,132885,'Pompton Plains','United States of America','US','Pompton Plains (United States of America)',1,1,0),(32760,21745,132886,'Ponderay','United States of America','US','Ponderay (United States of America)',1,1,0),(32761,21746,132887,'Ponferrada','Spain','ES','Ponferrada (Spain)',1,1,0),(32762,0,132888,'Ponta do Sol','Portugal','PT','Ponta do Sol (Portugal)',1,1,0),(32763,0,132889,'Pont-de-l\'Isere','France','FR','Pont-de-l\'Isere (France)',1,1,0),(32764,0,132890,'Pont-de-Poitte','France','FR','Pont-de-Poitte (France)',1,1,0),(32765,0,132891,'Ponte de Barca','Portugal','PT','Ponte de Barca (Portugal)',1,1,0),(32766,32489,132892,'Ponte di Legno','Italy','IT','Ponte di Legno (Italy)',1,1,0),(32767,0,132893,'Ponte Nelle Alpi','Italy','IT','Ponte Nelle Alpi (Italy)',1,1,0),(32768,0,132894,'Ponte San Pietro','Italy','IT','Ponte San Pietro (Italy)',1,1,0),(32769,0,132895,'Pontecurone','Italy','IT','Pontecurone (Italy)',1,1,0),(32770,21772,132896,'Pontedeume','Spain','ES','Pontedeume (Spain)',1,1,0),(32771,0,132897,'Pontenx-les-Forges','France','FR','Pontenx-les-Forges (France)',1,1,0),(32772,0,132898,'Pontian','Malaysia','MY','Pontian (Malaysia)',1,1,0),(32773,21784,132899,'Pontivy','France','FR','Pontivy (France)',1,1,0),(32774,0,132900,'Pontonx-sur-l\'Adour','France','FR','Pontonx-sur-l\'Adour (France)',1,1,0),(32775,21803,132901,'Ponzano Romano','Italy','IT','Ponzano Romano (Italy)',1,1,0),(32776,21810,132902,'Popayan','Colombia','CO','Popayan (Colombia)',1,1,0),(32777,0,132903,'Popenguine','Senegal','SN','Popenguine (Senegal)',1,1,0),(32778,0,132904,'Porat','Croatia','HR','Porat (Croatia)',1,1,0),(32779,0,132905,'Porches','Portugal','PT','Porches (Portugal)',1,1,0),(32780,21829,132906,'Pornichet','France','FR','Pornichet (France)',1,1,0),(32781,0,132907,'Port Arthur','Australia','AU','Port Arthur (Australia)',1,1,0),(32782,21837,132908,'Port Antonio','Jamaica','JM','Port Antonio (Jamaica)',1,1,0),(32783,0,132909,'Port Barcares','France','FR','Port Barcares (France)',1,1,0),(32784,32538,132910,'Port Fairy','Australia','AU','Port Fairy (Australia)',1,1,0),(32785,0,132911,'Port Ghalib','Egypt','EG','Port Ghalib (Egypt)',1,1,0),(32786,32553,132912,'Port Huron','United States of America','US','Port Huron (United States of America)',1,1,0),(32787,32559,132913,'Port Lavaca','United States of America','US','Port Lavaca (United States of America)',1,1,0),(32788,0,132914,'Port Maria','Jamaica','JM','Port Maria (Jamaica)',1,1,0),(32789,32579,132915,'Port Royal','United States of America','US','Port Royal (United States of America)',1,1,0),(32790,32582,132916,'Port St. Joe','United States of America','US','Port St. Joe (United States of America)',1,1,0),(32791,32583,132917,'Port Stanley','Canada','CA','Port Stanley (Canada)',1,1,0),(32792,0,132918,'Port Talbot','United Kingdom','UK','Port Talbot (United Kingdom)',1,1,0),(32793,21867,132919,'Port-en-Bessin-Huppain','France','FR','Port-en-Bessin-Huppain (France)',1,1,0),(32794,0,132920,'Porter Cove','Canada','CA','Porter Cove (Canada)',1,1,0),(32795,0,132921,'Port-Frejus','France','FR','Port-Frejus (France)',1,1,0),(32796,0,132922,'Porthleven','United Kingdom','UK','Porthleven (United Kingdom)',1,1,0),(32797,0,132923,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(32798,21890,132924,'Port-Lesney','France','FR','Port-Lesney (France)',1,1,0),(32799,21893,132925,'Porto','France','FR','Porto (France)',1,1,0),(32800,21894,132926,'Porto Alegre','Brazil','BR','Porto Alegre (Brazil)',1,1,0),(32801,32599,132927,'Porto Ceresio','Italy','IT','Porto Ceresio (Italy)',1,1,0),(32802,32601,132928,'Porto Cesareo','Italy','IT','Porto Cesareo (Italy)',1,1,0),(32803,0,132929,'Porto Corallo','Italy','IT','Porto Corallo (Italy)',1,1,0),(32804,32611,132930,'Porto Ercole','Italy','IT','Porto Ercole (Italy)',1,1,0),(32805,0,132931,'Porto Garibaldi','Italy','IT','Porto Garibaldi (Italy)',1,1,0),(32806,0,132932,'Porto Ottiolu','Italy','IT','Porto Ottiolu (Italy)',1,1,0),(32807,32616,132933,'Porto Petro','Spain','ES','Porto Petro (Spain)',1,1,0),(32808,32618,132934,'Porto Rafael','Italy','IT','Porto Rafael (Italy)',1,1,0),(32809,32620,132935,'Porto Rotondo','Italy','IT','Porto Rotondo (Italy)',1,1,0),(32810,0,132936,'Porto San Paolo','Italy','IT','Porto San Paolo (Italy)',1,1,0),(32811,21906,132937,'Portonovo','Italy','IT','Portonovo (Italy)',1,1,0),(32812,0,132938,'Portree','United Kingdom','UK','Portree (United Kingdom)',1,1,0),(32813,0,132939,'Portschach','Austria','AT','Portschach (Austria)',1,1,0),(32814,21935,132940,'Posada','Italy','IT','Posada (Italy)',1,1,0),(32815,0,132941,'Post','United States of America','US','Post (United States of America)',1,1,0),(32816,21953,132942,'Poteau','United States of America','US','Poteau (United States of America)',1,1,0),(32817,0,132943,'Potters Bar','United Kingdom','UK','Potters Bar (United Kingdom)',1,1,0),(32818,0,132944,'Povlja','Croatia','HR','Povlja (Croatia)',1,1,0),(32819,0,132945,'Povoletto','Italy','IT','Povoletto (Italy)',1,1,0),(32820,22004,132946,'Poznan','Poland','PL','Poznan (Poland)',1,1,0),(32821,0,132947,'Pozo Negro','Spain','ES','Pozo Negro (Spain)',1,1,0),(32822,0,132948,'Pozoblanco','Spain','ES','Pozoblanco (Spain)',1,1,0),(32823,0,132949,'Prabumulih','Indonesia','ID','Prabumulih (Indonesia)',1,1,0),(32824,0,132950,'Pracht','Germany','DE','Pracht (Germany)',1,1,0),(32825,0,132951,'Pradelle','Italy','IT','Pradelle (Italy)',1,1,0),(32826,0,132952,'Pradosegar','Spain','ES','Pradosegar (Spain)',1,1,0),(32827,0,132953,'Prahan','Australia','AU','Prahan (Australia)',1,1,0),(32828,0,132954,'Praia da Rocha','Portugal','PT','Praia da Rocha (Portugal)',1,1,0),(32829,0,132955,'Praia da Vieira','Portugal','PT','Praia da Vieira (Portugal)',1,1,0),(32830,0,132956,'Praia de Areia Branca','Portugal','PT','Praia de Areia Branca (Portugal)',1,1,0),(32831,32631,132957,'Prairie du Chien','United States of America','US','Prairie du Chien (United States of America)',1,1,0),(32832,0,132958,'Prasdorf','Germany','DE','Prasdorf (Germany)',1,1,0),(32833,22060,132959,'Predeal','Romania','RO','Predeal (Romania)',1,1,0),(32834,0,132960,'Predni Vyton','Czech Republic','CZ','Predni Vyton (Czech Republic)',1,1,0),(32835,0,132961,'Predore','Italy','IT','Predore (Italy)',1,1,0),(32836,0,132962,'Preila','Lithuania','LT','Preila (Lithuania)',1,1,0),(32837,0,132963,'Prestwick','United Kingdom','UK','Prestwick (United Kingdom)',1,1,0),(32838,0,132964,'Pretzsch (Elbe)','Germany','DE','Pretzsch (Elbe) (Germany)',1,1,0),(32839,0,132965,'Prhati','Croatia','HR','Prhati (Croatia)',1,1,0),(32840,22107,132966,'Prien am Chiemsee','Germany','DE','Prien am Chiemsee (Germany)',1,1,0),(32841,0,132967,'Prines','Greece','GR','Prines (Greece)',1,1,0),(32842,0,132968,'Proaza','Spain','ES','Proaza (Spain)',1,1,0),(32843,22143,132969,'Proserpine','Australia','AU','Proserpine (Australia)',1,1,0),(32844,0,132970,'Portmeirion','United Kingdom','UK','Portmeirion (United Kingdom)',1,1,0),(32845,32598,132971,'Porto Azzurro','Italy','IT','Porto Azzurro (Italy)',1,1,0),(32846,32610,132972,'Porto Empedocle','Italy','IT','Porto Empedocle (Italy)',1,1,0),(32847,32612,132973,'Porto Istana','Italy','IT','Porto Istana (Italy)',1,1,0),(32848,32617,132974,'Porto Pollo','Italy','IT','Porto Pollo (Italy)',1,1,0),(32849,0,132975,'Porto Uniao','Brazil','BR','Porto Uniao (Brazil)',1,1,0),(32850,0,132976,'Porto Valtravaglia','Italy','IT','Porto Valtravaglia (Italy)',1,1,0),(32851,0,132977,'Portu Saler','Spain','ES','Portu Saler (Spain)',1,1,0),(32852,21930,132978,'Portugalete','Spain','ES','Portugalete (Spain)',1,1,0),(32853,0,132979,'Poseleniye Desenovskoye','Russia','RU','Poseleniye Desenovskoye (Russia)',1,1,0),(32854,21941,132980,'Positano','Italy','IT','Positano (Italy)',1,1,0),(32855,0,132981,'Postbauer-Heng','Germany','DE','Postbauer-Heng (Germany)',1,1,0),(32856,21950,132982,'Postojna','Slovenia','SI','Postojna (Slovenia)',1,1,0),(32857,21956,132983,'Poti','Georgia','GE','Poti (Georgia)',1,1,0),(32858,21958,132984,'Potlogi','Romania','RO','Potlogi (Romania)',1,1,0),(32859,0,132985,'Potokaki','Greece','GR','Potokaki (Greece)',1,1,0),(32860,21962,132986,'Potosi','Bolivia','BO','Potosi (Bolivia)',1,1,0),(32861,21965,132987,'Potsdam','Germany','DE','Potsdam (Germany)',1,1,0),(32862,21971,132988,'Pottstown','United States of America','US','Pottstown (United States of America)',1,1,0),(32863,0,132989,'Pouldreuzic','France','FR','Pouldreuzic (France)',1,1,0),(32864,21979,132990,'Poulsbo','United States of America','US','Poulsbo (United States of America)',1,1,0),(32865,21986,132991,'Pounta','Greece','GR','Pounta (Greece)',1,1,0),(32866,0,132992,'Pounta Area','Greece','GR','Pounta Area (Greece)',1,1,0),(32867,21993,132993,'Povoacao','Portugal','PT','Povoacao (Portugal)',1,1,0),(32868,22002,132994,'Poysdorf','Austria','AT','Poysdorf (Austria)',1,1,0),(32869,0,132995,'Pozo de las Calcosas','Spain','ES','Pozo de las Calcosas (Spain)',1,1,0),(32870,22013,132996,'Prachinburi','Thailand','TH','Prachinburi (Thailand)',1,1,0),(32871,22015,132997,'Prachuap Khiri Khan','Thailand','TH','Prachuap Khiri Khan (Thailand)',1,1,0),(32872,0,132998,'Prad am Stilfserjoch','Italy','IT','Prad am Stilfserjoch (Italy)',1,1,0),(32873,22018,132999,'Prades','France','FR','Prades (France)',1,1,0),(32874,22022,133000,'Prado del Rey','Spain','ES','Prado del Rey (Spain)',1,1,0),(32875,0,133001,'Praelo','Italy','IT','Praelo (Italy)',1,1,0),(32876,0,133002,'Praia de Chaves','Cape Verde','CV','Praia de Chaves (Cape Verde)',1,1,0),(32877,0,133003,'Praia Jale','Sao Tome & Principe','ST','Praia Jale (Sao Tome & Principe)',1,1,0),(32878,0,133004,'Prainha','Portugal','PT','Prainha (Portugal)',1,1,0),(32879,0,133005,'Prapoutel','France','FR','Prapoutel (France)',1,1,0),(32880,22039,133006,'Prata di Pordenone','Italy','IT','Prata di Pordenone (Italy)',1,1,0),(32881,22052,133007,'Praz','Switzerland','CH','Praz (Switzerland)',1,1,0),(32882,0,133008,'Prebelow','Germany','DE','Prebelow (Germany)',1,1,0),(32883,22063,133009,'Prefailles','France','FR','Prefailles (France)',1,1,0),(32884,22073,133010,'Pre-Saint-Didier','Italy','IT','Pre-Saint-Didier (Italy)',1,1,0),(32885,22075,133011,'Prescott','United States of America','US','Prescott (United States of America)',1,1,0),(32886,0,133012,'Prescott Valley','United States of America','US','Prescott Valley (United States of America)',1,1,0),(32887,22094,133013,'Pretoria','South Africa','ZA','Pretoria (South Africa)',1,1,0),(32888,22095,133014,'Pretty Beach','Australia','AU','Pretty Beach (Australia)',1,1,0),(32889,22097,133015,'Preverenges','Switzerland','CH','Preverenges (Switzerland)',1,1,0),(32890,0,133016,'Pribram','Czech Republic','CZ','Pribram (Czech Republic)',1,1,0),(32891,0,133017,'Prichovice','Czech Republic','CZ','Prichovice (Czech Republic)',1,1,0),(32892,0,133018,'Prichsenstadt','Germany','DE','Prichsenstadt (Germany)',1,1,0),(32893,0,133019,'Prignac-et-Marcamps','France','FR','Prignac-et-Marcamps (France)',1,1,0),(32894,0,133020,'Prilep','Macedonia','MK','Prilep (Macedonia)',1,1,0),(32895,0,133021,'Prince Albert','South Africa','ZA','Prince Albert (South Africa)',1,1,0),(32896,0,133022,'Prince Frederick','United States of America','US','Prince Frederick (United States of America)',1,1,0),(32897,22119,133023,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(32898,22124,133024,'Prior Lake','United States of America','US','Prior Lake (United States of America)',1,1,0),(32899,0,133025,'Pritzwalk','Germany','DE','Pritzwalk (Germany)',1,1,0),(32900,22129,133026,'Probbach','Germany','DE','Probbach (Germany)',1,1,0),(32901,22134,133027,'Proctor','United States of America','US','Proctor (United States of America)',1,1,0),(32902,0,133028,'Proissans','France','FR','Proissans (France)',1,1,0),(32903,0,133029,'Prora','Germany','DE','Prora (Germany)',1,1,0),(32904,0,133030,'Provarma','Greece','GR','Provarma (Greece)',1,1,0),(32905,22151,133031,'Providence','United States of America','US','Providence (United States of America)',1,1,0),(32906,22152,133032,'Providencia','Colombia','CO','Providencia (Colombia)',1,1,0),(32907,0,133033,'Pruggern','Austria','AT','Pruggern (Austria)',1,1,0),(32908,22165,133034,'Pryor','United States of America','US','Pryor (United States of America)',1,1,0),(32909,0,133035,'Przechlewo','Poland','PL','Przechlewo (Poland)',1,1,0),(32910,0,133036,'Psari Forada','Greece','GR','Psari Forada (Greece)',1,1,0),(32911,0,133037,'Pskov','Russia','RU','Pskov (Russia)',1,1,0),(32912,22175,133038,'Ptuj','Slovenia','SI','Ptuj (Slovenia)',1,1,0),(32913,22181,133039,'Puchheim','Germany','DE','Puchheim (Germany)',1,1,0),(32914,0,133040,'Pudong','China','CN','Pudong (China)',1,1,0),(32915,0,133041,'Puente Genil','Spain','ES','Puente Genil (Spain)',1,1,0),(32916,0,133042,'Puente la Reina de Jaca','Spain','ES','Puente la Reina de Jaca (Spain)',1,1,0),(32917,0,133043,'Pu\'er','China','CN','Pu\'er (China)',1,1,0),(32918,0,133044,'Puerto Aventuras','Mexico','MX','Puerto Aventuras (Mexico)',1,1,0),(32919,22198,133045,'Puerto Ayora','Ecuador','EC','Puerto Ayora (Ecuador)',1,1,0),(32920,0,133046,'Puerto Baquerizo Moreno','Ecuador','EC','Puerto Baquerizo Moreno (Ecuador)',1,1,0),(32921,32638,133047,'Puerto de la Cruz','Spain','ES','Puerto de la Cruz (Spain)',1,1,0),(32922,0,133048,'Puerto Escondido','Mexico','MX','Puerto Escondido (Mexico)',1,1,0),(32923,0,133049,'Puerto Iguazu','Argentina','AR','Puerto Iguazu (Argentina)',1,1,0),(32924,32648,133050,'Puerto Naos','Spain','ES','Puerto Naos (Spain)',1,1,0),(32925,0,133051,'Puerto Ordaz','Venezuela','VE','Puerto Ordaz (Venezuela)',1,1,0),(32926,22206,133052,'Puerto Plata','Dominican Republic','DO','Puerto Plata (Dominican Republic)',1,1,0),(32927,0,133053,'Puerto Varas','Chile','CL','Puerto Varas (Chile)',1,1,0),(32928,0,133054,'Puerto Villamil','Ecuador','EC','Puerto Villamil (Ecuador)',1,1,0),(32929,0,133055,'Puhos','Finland','FI','Puhos (Finland)',1,1,0),(32930,0,133056,'Puisseguin-Saint-Emilion','France','FR','Puisseguin-Saint-Emilion (France)',1,1,0),(32931,0,133057,'Pujalt','Spain','ES','Pujalt (Spain)',1,1,0),(32932,0,133058,'Pujaut','France','FR','Pujaut (France)',1,1,0),(32933,0,133059,'Pukaki','New Zealand','NZ','Pukaki (New Zealand)',1,1,0),(32934,22227,133060,'Pulheim','Germany','DE','Pulheim (Germany)',1,1,0),(32935,0,133061,'Pulicciano','Italy','IT','Pulicciano (Italy)',1,1,0),(32936,0,133062,'Pullenreuth','Germany','DE','Pullenreuth (Germany)',1,1,0),(32937,22236,133063,'Punat','Croatia','HR','Punat (Croatia)',1,1,0),(32938,0,133064,'Punderich','Germany','DE','Punderich (Germany)',1,1,0),(32939,22246,133065,'Punta del Este','Uruguay','UY','Punta del Este (Uruguay)',1,1,0),(32940,0,133066,'Puntera','Croatia','HR','Puntera (Croatia)',1,1,0),(32941,22254,133067,'Purcell','United States of America','US','Purcell (United States of America)',1,1,0),(32942,22265,133068,'Purmamarca','Argentina','AR','Purmamarca (Argentina)',1,1,0),(32943,22279,133069,'Putian','China','CN','Putian (China)',1,1,0),(32944,22282,133070,'Put-In-Bay','United States of America','US','Put-In-Bay (United States of America)',1,1,0),(32945,0,133071,'Putri Nyale','Indonesia','ID','Putri Nyale (Indonesia)',1,1,0),(32946,22298,133072,'Puyang','China','CN','Puyang (China)',1,1,0),(32947,0,133073,'Puymaurin','France','FR','Puymaurin (France)',1,1,0),(32948,0,133074,'Puy-Saint-Martin','France','FR','Puy-Saint-Martin (France)',1,1,0),(32949,22309,133075,'Pyha','Finland','FI','Pyha (Finland)',1,1,0),(32950,0,133076,'Pythagorion','Greece','GR','Pythagorion (Greece)',1,1,0),(32951,0,133077,'Pozezdrze','Poland','PL','Pozezdrze (Poland)',1,1,0),(32952,22012,133078,'Pra Loup','France','FR','Pra Loup (France)',1,1,0),(32953,0,133079,'Prachatice','Czech Republic','CZ','Prachatice (Czech Republic)',1,1,0),(32954,0,133080,'Pradons','France','FR','Pradons (France)',1,1,0),(32955,0,133081,'Praia a Mare','Italy','IT','Praia a Mare (Italy)',1,1,0),(32956,0,133082,'Praia da Vitoria','Portugal','PT','Praia da Vitoria (Portugal)',1,1,0),(32957,0,133083,'Praia de Itacimirim','Brazil','BR','Praia de Itacimirim (Brazil)',1,1,0),(32958,0,133084,'Praia de Itaguacu','Brazil','BR','Praia de Itaguacu (Brazil)',1,1,0),(32959,0,133085,'Praia de Porto das Dunas','Brazil','BR','Praia de Porto das Dunas (Brazil)',1,1,0),(32960,0,133086,'Prasonisi','Greece','GR','Prasonisi (Greece)',1,1,0),(32961,22044,133087,'Pratteln','Switzerland','CH','Pratteln (Switzerland)',1,1,0),(32962,22051,133088,'Prayssac','France','FR','Prayssac (France)',1,1,0),(32963,22055,133089,'Praz-sur-Arly','France','FR','Praz-sur-Arly (France)',1,1,0),(32964,22064,133090,'Preganziol','Italy','IT','Preganziol (Italy)',1,1,0),(32965,0,133091,'Preko','Croatia','HR','Preko (Croatia)',1,1,0),(32966,0,133092,'Prem (Oberbayern)','Germany','DE','Prem (Oberbayern) (Germany)',1,1,0),(32967,0,133093,'Prenzlau','Germany','DE','Prenzlau (Germany)',1,1,0),(32968,0,133094,'Presa','Italy','IT','Presa (Italy)',1,1,0),(32969,22089,133095,'Preston','United States of America','US','Preston (United States of America)',1,1,0),(32970,0,133096,'Prettau','Italy','IT','Prettau (Italy)',1,1,0),(32971,0,133097,'Prevalje','Slovenia','SI','Prevalje (Slovenia)',1,1,0),(32972,0,133098,'Primostek','Croatia','HR','Primostek (Croatia)',1,1,0),(32973,0,133099,'Primrose','South Africa','ZA','Primrose (South Africa)',1,1,0),(32974,0,133100,'Prince George','Canada','CA','Prince George (Canada)',1,1,0),(32975,0,133101,'Prince George','United States of America','US','Prince George (United States of America)',1,1,0),(32976,0,133102,'Prince Rupert','Canada','CA','Prince Rupert (Canada)',1,1,0),(32977,0,133103,'Princeville','United States of America','US','Princeville (United States of America)',1,1,0),(32978,0,133104,'Principina Terra','Italy','IT','Principina Terra (Italy)',1,1,0),(32979,0,133105,'Pristina','Serbia','RS','Pristina (Serbia)',1,1,0),(32980,22130,133106,'Probolinggo','Indonesia','ID','Probolinggo (Indonesia)',1,1,0),(32981,22133,133107,'Procida','Italy','IT','Procida (Italy)',1,1,0),(32982,22139,133108,'Progreso','Mexico','MX','Progreso (Mexico)',1,1,0),(32983,0,133109,'Proleb','Austria','AT','Proleb (Austria)',1,1,0),(32984,22144,133110,'Prospect','United States of America','US','Prospect (United States of America)',1,1,0),(32985,0,133111,'Provaglio d\' Iseo','Italy','IT','Provaglio d\' Iseo (Italy)',1,1,0),(32986,0,133112,'Providenciales','Turks & Caicos Islands',NULL,'Providenciales (Turks & Caicos Islands)',1,1,0),(32987,22166,133113,'Przemysl','Poland','PL','Przemysl (Poland)',1,1,0),(32988,22167,133114,'Przeworsk','Poland','PL','Przeworsk (Poland)',1,1,0),(32989,0,133115,'Publier','France','FR','Publier (France)',1,1,0),(32990,0,133116,'Pucara','Italy','IT','Pucara (Italy)',1,1,0),(32991,0,133117,'Puch bei Weiz','Austria','AT','Puch bei Weiz (Austria)',1,1,0),(32992,22183,133118,'Puck','Poland','PL','Puck (Poland)',1,1,0),(32993,0,133119,'Puddemin','Germany','DE','Puddemin (Germany)',1,1,0),(32994,0,133120,'Puente Almuhey','Spain','ES','Puente Almuhey (Spain)',1,1,0),(32995,0,133121,'Puente de Sanabria','Spain','ES','Puente de Sanabria (Spain)',1,1,0),(32996,0,133122,'Puerto de San Miguel','Spain','ES','Puerto de San Miguel (Spain)',1,1,0),(32997,0,133123,'Puerto Princesa','Philippines','PH','Puerto Princesa (Philippines)',1,1,0),(32998,22208,133124,'Puerto Rico','Puerto Rico','PR','Puerto Rico (Puerto Rico)',1,1,0),(32999,22213,133125,'Puigcerda','Spain','ES','Puigcerda (Spain)',1,1,0),(33000,22215,133126,'Puilboreau','France','FR','Puilboreau (France)',1,1,0),(33001,22221,133127,'Pula','Italy','IT','Pula (Italy)',1,1,0),(33002,0,133128,'Pulau Rawa','Malaysia','MY','Pulau Rawa (Malaysia)',1,1,0),(33003,22229,133129,'Puligny-Montrachet','France','FR','Puligny-Montrachet (France)',1,1,0),(33004,0,133130,'Pumba Private Game Reserve','South Africa','ZA','Pumba Private Game Reserve (South Africa)',1,1,0),(33005,22233,133131,'Punaauia','French Polynesia','PF','Punaauia (French Polynesia)',1,1,0),(33006,0,133132,'Puncak','Indonesia','ID','Puncak (Indonesia)',1,1,0),(33007,0,133134,'Puno','Peru','PE','Puno (Peru)',1,1,0),(33008,0,133135,'Punta Sal','Peru','PE','Punta Sal (Peru)',1,1,0),(33009,0,133136,'Pura','Switzerland','CH','Pura (Switzerland)',1,1,0),(33010,0,133137,'Purbach am Neusiedler See','Austria','AT','Purbach am Neusiedler See (Austria)',1,1,0),(33011,0,133138,'Purgstall an der Erlauf','Austria','AT','Purgstall an der Erlauf (Austria)',1,1,0),(33012,0,133139,'Pushchino','Russia','RU','Pushchino (Russia)',1,1,0),(33013,22276,133140,'Putbus','Germany','DE','Putbus (Germany)',1,1,0),(33014,22284,133141,'Putney','United States of America','US','Putney (United States of America)',1,1,0),(33015,0,133142,'Putten Seter - Hovringen','Norway','NO','Putten Seter - Hovringen (Norway)',1,1,0),(33016,22293,133143,'Putzbrunn','Germany','DE','Putzbrunn (Germany)',1,1,0),(33017,0,133144,'Puumala','Finland','FI','Puumala (Finland)',1,1,0),(33018,0,133145,'Puygaillard-de-Quercy','France','FR','Puygaillard-de-Quercy (France)',1,1,0),(33019,0,133146,'Puyssegur','France','FR','Puyssegur (France)',1,1,0),(33020,22304,133147,'Puzol','Spain','ES','Puzol (Spain)',1,1,0),(33021,0,133148,'Pyrgos Kallistis','Greece','GR','Pyrgos Kallistis (Greece)',1,1,0),(33022,22337,133149,'Qiqihar','China','CN','Qiqihar (China)',1,1,0),(33023,22340,133150,'Qitai','China','CN','Qitai (China)',1,1,0),(33024,22365,133151,'Quebradillas','Puerto Rico','PR','Quebradillas (Puerto Rico)',1,1,0),(33025,0,133152,'Queensland','Canada','CA','Queensland (Canada)',1,1,0),(33026,0,133153,'Querciolo','France','FR','Querciolo (France)',1,1,0),(33027,22386,133154,'Quesnel','Canada','CA','Quesnel (Canada)',1,1,0),(33028,0,133155,'Quintanilla de Onesimo','Spain','ES','Quintanilla de Onesimo (Spain)',1,1,0),(33029,22425,133156,'Quinto Vicentino','Italy','IT','Quinto Vicentino (Italy)',1,1,0),(33030,0,133157,'Qwareli','Georgia','GE','Qwareli (Georgia)',1,1,0),(33031,22439,133158,'Raalte','Netherlands','NL','Raalte (Netherlands)',1,1,0),(33032,0,133159,'Rabaul','Papua New Guinea','PG','Rabaul (Papua New Guinea)',1,1,0),(33033,0,133160,'Raben Steinfeld','Germany','DE','Raben Steinfeld (Germany)',1,1,0),(33034,0,133161,'Rabo de Peixe','Portugal','PT','Rabo de Peixe (Portugal)',1,1,0),(33035,22450,133162,'Racalmuto','Italy','IT','Racalmuto (Italy)',1,1,0),(33036,0,133163,'Rach Gia','Vietnam','VN','Rach Gia (Vietnam)',1,1,0),(33037,22459,133164,'Radauti','Romania','RO','Radauti (Romania)',1,1,0),(33038,0,133165,'Radda','Italy','IT','Radda (Italy)',1,1,0),(33039,32658,133166,'Radford','United States of America','US','Radford (United States of America)',1,1,0),(33040,22475,133167,'Radovljica','Slovenia','SI','Radovljica (Slovenia)',1,1,0),(33041,0,133168,'Raeren','Belgium','BE','Raeren (Belgium)',1,1,0),(33042,22494,133169,'Rahden','Germany','DE','Rahden (Germany)',1,1,0),(33043,0,133170,'Raimundsreut','Germany','DE','Raimundsreut (Germany)',1,1,0),(33044,0,133171,'Raisio','Finland','FI','Raisio (Finland)',1,1,0),(33045,0,133172,'Raito','Italy','IT','Raito (Italy)',1,1,0),(33046,0,133173,'Raja Ampat','Indonesia','ID','Raja Ampat (Indonesia)',1,1,0),(33047,0,133174,'Rajecke Teplice','Slovakia','SK','Rajecke Teplice (Slovakia)',1,1,0),(33048,0,133176,'Rakalj','Croatia','HR','Rakalj (Croatia)',1,1,0),(33049,22529,133178,'Ramat Gan','Israel','IL','Ramat Gan (Israel)',1,1,0),(33050,0,133180,'Ramkvilla','Sweden','SE','Ramkvilla (Sweden)',1,1,0),(33051,22548,133181,'Ramsau','Germany','DE','Ramsau (Germany)',1,1,0),(33052,0,133182,'Ramsgate','United Kingdom','UK','Ramsgate (United Kingdom)',1,1,0),(33053,0,133183,'Ramsthal','Germany','DE','Ramsthal (Germany)',1,1,0),(33054,0,133184,'Rancho Palos Verdes','United States of America','US','Rancho Palos Verdes (United States of America)',1,1,0),(33055,0,133185,'Playa de Tasarte','Spain','ES','Playa de Tasarte (Spain)',1,1,0),(33056,21569,133186,'Playa del Carmen','Mexico','MX','Playa del Carmen (Mexico)',1,1,0),(33057,0,133187,'Playa Giron','Cuba','CU','Playa Giron (Cuba)',1,1,0),(33058,0,133188,'Playa Larga','Cuba','CU','Playa Larga (Cuba)',1,1,0),(33059,0,133189,'Playa Paraiso','Mexico','MX','Playa Paraiso (Mexico)',1,1,0),(33060,0,133190,'Playa Taurito','Spain','ES','Playa Taurito (Spain)',1,1,0),(33061,0,133191,'Pleasant Hill','United States of America','US','Pleasant Hill (United States of America)',1,1,0),(33062,0,133192,'Pleasanton','United States of America','US','Pleasanton (United States of America)',1,1,0),(33063,0,133193,'Pleisweiler-Oberhofen','Germany','DE','Pleisweiler-Oberhofen (Germany)',1,1,0),(33064,0,133194,'Plerin-sur-Mer','France','FR','Plerin-sur-Mer (France)',1,1,0),(33065,0,133195,'Pleubian','France','FR','Pleubian (France)',1,1,0),(33066,21599,133196,'Ploaghe','Italy','IT','Ploaghe (Italy)',1,1,0),(33067,0,133197,'Plockton','United Kingdom','UK','Plockton (United Kingdom)',1,1,0),(33068,21605,133198,'Plogoff','France','FR','Plogoff (France)',1,1,0),(33069,21609,133199,'Plon','Germany','DE','Plon (Germany)',1,1,0),(33070,0,133200,'Ploufragan','France','FR','Ploufragan (France)',1,1,0),(33071,0,133201,'Plouha','France','FR','Plouha (France)',1,1,0),(33072,21619,133202,'Plouider','France','FR','Plouider (France)',1,1,0),(33073,0,133203,'Pluherlin','France','FR','Pluherlin (France)',1,1,0),(33074,0,133204,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(33075,21647,133205,'Podcetrtek','Slovenia','SI','Podcetrtek (Slovenia)',1,1,0),(33076,0,133206,'Poggio Mezzana','France','FR','Poggio Mezzana (France)',1,1,0),(33077,0,133207,'Pohara','New Zealand','NZ','Pohara (New Zealand)',1,1,0),(33078,21667,133208,'Poindimie','New Caledonia','NC','Poindimie (New Caledonia)',1,1,0),(33079,32470,133209,'Point Clear','United States of America','US','Point Clear (United States of America)',1,1,0),(33080,0,133210,'Point Salinas','Grenada','GD','Point Salinas (Grenada)',1,1,0),(33081,0,133211,'Pointe d\' Esny','Mauritius','MU','Pointe d\' Esny (Mauritius)',1,1,0),(33082,21672,133212,'Pointe-a-Pitre','Guadeloupe','GP','Pointe-a-Pitre (Guadeloupe)',1,1,0),(33083,0,133213,'Poissy','France','FR','Poissy (France)',1,1,0),(33084,21689,133215,'Pokolbin','Australia','AU','Pokolbin (Australia)',1,1,0),(33085,0,133216,'Pola de Siero','Spain','ES','Pola de Siero (Spain)',1,1,0),(33086,21694,133217,'Poland','United States of America','US','Poland (United States of America)',1,1,0),(33087,0,133218,'Poljane nad Skofjo Loko','Slovenia','SI','Poljane nad Skofjo Loko (Slovenia)',1,1,0),(33088,0,133219,'Poljcane','Slovenia','SI','Poljcane (Slovenia)',1,1,0),(33089,0,133220,'Pollau','Austria','AT','Pollau (Austria)',1,1,0),(33090,0,133221,'Polling','Germany','DE','Polling (Germany)',1,1,0),(33091,0,133222,'Pomaia','Italy','IT','Pomaia (Italy)',1,1,0),(33092,21738,133223,'Pompeii','Italy','IT','Pompeii (Italy)',1,1,0),(33093,0,133224,'Pont d\'Arros','Spain','ES','Pont d\'Arros (Spain)',1,1,0),(33094,0,133225,'Pont I\'Abbe','France','FR','Pont I\'Abbe (France)',1,1,0),(33095,0,133226,'Pontacq','France','FR','Pontacq (France)',1,1,0),(33096,0,133227,'Pontaubert','France','FR','Pontaubert (France)',1,1,0),(33097,21760,133228,'Pont-Audemer','France','FR','Pont-Audemer (France)',1,1,0),(33098,21762,133229,'Pontault-Combault','France','FR','Pontault-Combault (France)',1,1,0),(33099,0,133230,'Ponte Caldelas','Spain','ES','Ponte Caldelas (Spain)',1,1,0),(33100,21767,133231,'Ponte de Lima','Portugal','PT','Ponte de Lima (Portugal)',1,1,0),(33101,0,133232,'Ponte Rio di Monterado','Italy','IT','Ponte Rio di Monterado (Italy)',1,1,0),(33102,32494,133233,'Ponte San Nicolo','Italy','IT','Ponte San Nicolo (Italy)',1,1,0),(33103,0,133234,'Ponte Taro','Italy','IT','Ponte Taro (Italy)',1,1,0),(33104,21768,133235,'Ponte Tresa','Switzerland','CH','Ponte Tresa (Switzerland)',1,1,0),(33105,21779,133236,'Pontevedra','Spain','ES','Pontevedra (Spain)',1,1,0),(33106,0,133237,'Pontoon','Ireland','IE','Pontoon (Ireland)',1,1,0),(33107,21792,133238,'Pontorson','France','FR','Pontorson (France)',1,1,0),(33108,21806,133239,'Pooler','United States of America','US','Pooler (United States of America)',1,1,0),(33109,0,133240,'Popa Falls','Namibia','NA','Popa Falls (Namibia)',1,1,0),(33110,0,133241,'Porrentruy','Switzerland','CH','Porrentruy (Switzerland)',1,1,0),(33111,0,133242,'Porrua','Spain','ES','Porrua (Spain)',1,1,0),(33112,32500,133243,'Port Allen','United States of America','US','Port Allen (United States of America)',1,1,0),(33113,32502,133244,'Port Angeles','United States of America','US','Port Angeles (United States of America)',1,1,0),(33114,0,133245,'Port Bail','France','FR','Port Bail (France)',1,1,0),(33115,32521,133246,'Port Clinton','United States of America','US','Port Clinton (United States of America)',1,1,0),(33116,32528,133247,'Port de la Selva','Spain','ES','Port de la Selva (Spain)',1,1,0),(33117,0,133248,'Port d\'es Torrent','Spain','ES','Port d\'es Torrent (Spain)',1,1,0),(33118,0,133249,'Port Isaac','United Kingdom','UK','Port Isaac (United Kingdom)',1,1,0),(33119,0,133250,'Port Leucate','France','FR','Port Leucate (France)',1,1,0),(33120,32565,133251,'Port McNeill','Canada','CA','Port McNeill (Canada)',1,1,0),(33121,32574,133252,'Port Pirie','Australia','AU','Port Pirie (Australia)',1,1,0),(33122,0,133253,'Port Said','Egypt','EG','Port Said (Egypt)',1,1,0),(33123,0,133254,'Port Severn','Canada','CA','Port Severn (Canada)',1,1,0),(33124,0,133255,'Port Shepstone','South Africa','ZA','Port Shepstone (South Africa)',1,1,0),(33125,0,133256,'Portals Nous','Spain','ES','Portals Nous (Spain)',1,1,0),(33126,21859,133257,'Portaria','Greece','GR','Portaria (Greece)',1,1,0),(33127,0,133258,'Port-Daniel','Canada','CA','Port-Daniel (Canada)',1,1,0),(33128,0,133259,'Port-de-Bouc','France','FR','Port-de-Bouc (France)',1,1,0),(33129,0,133260,'Port-de-Lanne','France','FR','Port-de-Lanne (France)',1,1,0),(33130,21878,133261,'Porticcio','France','FR','Porticcio (France)',1,1,0),(33131,32604,133262,'Porto Colom','Spain','ES','Porto Colom (Spain)',1,1,0),(33132,32608,133263,'Porto Cristo','Spain','ES','Porto Cristo (Spain)',1,1,0),(33133,0,133264,'Porto Feliz','Brazil','BR','Porto Feliz (Brazil)',1,1,0),(33134,0,133265,'Porto Heli','Greece','GR','Porto Heli (Greece)',1,1,0),(33135,0,133266,'Porto Pollo','France','FR','Porto Pollo (France)',1,1,0),(33136,0,133267,'Porto Santa Margherita','Italy','IT','Porto Santa Margherita (Italy)',1,1,0),(33137,0,133268,'Porto Sant\'Elpidio','Italy','IT','Porto Sant\'Elpidio (Italy)',1,1,0),(33138,32627,133269,'Porto Santo Island','Portugal','PT','Porto Santo Island (Portugal)',1,1,0),(33139,32629,133270,'Porto Taverna','Italy','IT','Porto Taverna (Italy)',1,1,0),(33140,0,133271,'Porto Vecchio','France','FR','Porto Vecchio (France)',1,1,0),(33141,21907,133272,'Portonovo','Spain','ES','Portonovo (Spain)',1,1,0),(33142,21909,133273,'Portoroz','Slovenia','SI','Portoroz (Slovenia)',1,1,0),(33143,21910,133274,'Portoscuso','Italy','IT','Portoscuso (Italy)',1,1,0),(33144,0,133275,'Portsmouth','United States of America','US','Portsmouth (United States of America)',1,1,0),(33145,0,133276,'Portugal','Portugal','PT','Portugal (Portugal)',1,1,0),(33146,21929,133277,'Portugal Cove','Canada','CA','Portugal Cove (Canada)',1,1,0),(33147,21937,133278,'Poschiavo','Switzerland','CH','Poschiavo (Switzerland)',1,1,0),(33148,0,133279,'Possidonion','Greece','GR','Possidonion (Greece)',1,1,0),(33149,0,133280,'Po?neck','Germany','DE','Po?neck (Germany)',1,1,0),(33150,21951,133281,'Postolowo','Poland','PL','Postolowo (Poland)',1,1,0),(33151,21976,133282,'Pouilly-sur-Loire','France','FR','Pouilly-sur-Loire (France)',1,1,0),(33152,21978,133283,'Pouligny-Notre-Dame','France','FR','Pouligny-Notre-Dame (France)',1,1,0),(33153,0,133284,'Poullan sur Mer','France','FR','Poullan sur Mer (France)',1,1,0),(33154,21987,133285,'Pouso Alegre','Brazil','BR','Pouso Alegre (Brazil)',1,1,0),(33155,0,133286,'Prades','Spain','ES','Prades (Spain)',1,1,0),(33156,0,133287,'Pragraten','Austria','AT','Pragraten (Austria)',1,1,0),(33157,22028,133288,'Praia','Cape Verde','CV','Praia (Cape Verde)',1,1,0),(33158,0,133289,'Praia Da Jureia','Brazil','BR','Praia Da Jureia (Brazil)',1,1,0),(33159,0,133290,'Praia do Prea','Brazil','BR','Praia do Prea (Brazil)',1,1,0),(33160,0,133291,'Rastenburg','Poland','PL','Rastenburg (Poland)',1,1,0),(33161,0,133292,'Rastenfeld','Austria','AT','Rastenfeld (Austria)',1,1,0),(33162,22615,133293,'Rathmines','Ireland','IE','Rathmines (Ireland)',1,1,0),(33163,0,133294,'Rathnew','Ireland','IE','Rathnew (Ireland)',1,1,0),(33164,0,133296,'Ravna Gora','Croatia','HR','Ravna Gora (Croatia)',1,1,0),(33165,22648,133297,'Raymondville','United States of America','US','Raymondville (United States of America)',1,1,0),(33166,22649,133298,'Rayne','United States of America','US','Rayne (United States of America)',1,1,0),(33167,0,133299,'Reading','United Kingdom','UK','Reading (United Kingdom)',1,1,0),(33168,22663,133300,'Realmonte','Italy','IT','Realmonte (Italy)',1,1,0),(33169,22664,133301,'Realp','Switzerland','CH','Realp (Switzerland)',1,1,0),(33170,0,133302,'Rebici','Croatia','HR','Rebici (Croatia)',1,1,0),(33171,0,133303,'Rechlin','Germany','DE','Rechlin (Germany)',1,1,0),(33172,0,133304,'Recke','Germany','DE','Recke (Germany)',1,1,0),(33173,22673,133305,'Reckingen','Switzerland','CH','Reckingen (Switzerland)',1,1,0),(33174,0,133306,'Red Bay','Canada','CA','Red Bay (Canada)',1,1,0),(33175,32678,133307,'Red Wing','United States of America','US','Red Wing (United States of America)',1,1,0),(33176,0,133308,'Redditch','United Kingdom','UK','Redditch (United Kingdom)',1,1,0),(33177,0,133309,'Redhill','United Kingdom','UK','Redhill (United Kingdom)',1,1,0),(33178,22704,133310,'Redmond','United States of America','US','Redmond (United States of America)',1,1,0),(33179,22710,133311,'Redwood City','United States of America','US','Redwood City (United States of America)',1,1,0),(33180,0,133312,'Redwood National Park','United States of America','US','Redwood National Park (United States of America)',1,1,0),(33181,0,133313,'Region Troms','Norway','NO','Region Troms (Norway)',1,1,0),(33182,0,133314,'Regueira de Pontes','Portugal','PT','Regueira de Pontes (Portugal)',1,1,0),(33183,0,133315,'Rehaupal','France','FR','Rehaupal (France)',1,1,0),(33184,0,133316,'Reichenbach an der Fils','Germany','DE','Reichenbach an der Fils (Germany)',1,1,0),(33185,0,133317,'Reichshof','Germany','DE','Reichshof (Germany)',1,1,0),(33186,32685,133318,'Reil','Germany','DE','Reil (Germany)',1,1,0),(33187,0,133319,'Reilhaguet','France','FR','Reilhaguet (France)',1,1,0),(33188,0,133320,'Reiskirchen','Germany','DE','Reiskirchen (Germany)',1,1,0),(33189,0,133321,'Reisseck','Austria','AT','Reisseck (Austria)',1,1,0),(33190,0,133322,'Relevant','France','FR','Relevant (France)',1,1,0),(33191,22763,133323,'Remich','Luxembourg','LU','Remich (Luxembourg)',1,1,0),(33192,0,133324,'Remiremont','France','FR','Remiremont (France)',1,1,0),(33193,0,133325,'Remplin','Germany','DE','Remplin (Germany)',1,1,0),(33194,22765,133326,'Remscheid','Germany','DE','Remscheid (Germany)',1,1,0),(33195,0,133327,'Rendang','Indonesia','ID','Rendang (Indonesia)',1,1,0),(33196,22771,133328,'Rendezvous Bay','Anguilla','AI','Rendezvous Bay (Anguilla)',1,1,0),(33197,22775,133329,'Renfrew','Canada','CA','Renfrew (Canada)',1,1,0),(33198,22789,133330,'Renvyle','Ireland','IE','Renvyle (Ireland)',1,1,0),(33199,0,133331,'Repvag','Norway','NO','Repvag (Norway)',1,1,0),(33200,0,133332,'Rescaldina','Italy','IT','Rescaldina (Italy)',1,1,0),(33201,32688,133333,'Reston','United States of America','US','Reston (United States of America)',1,1,0),(33202,22812,133334,'Retie','Belgium','BE','Retie (Belgium)',1,1,0),(33203,22817,133335,'Reunion','Reunion','RE','Reunion (Reunion)',1,1,0),(33204,0,133336,'Revo','Italy','IT','Revo (Italy)',1,1,0),(33205,22838,133337,'Reykholt','Iceland','IS','Reykholt (Iceland)',1,1,0),(33206,0,133338,'Reze','France','FR','Reze (France)',1,1,0),(33207,0,133339,'Rhayader','United Kingdom','UK','Rhayader (United Kingdom)',1,1,0),(33208,0,133340,'Rheinau (Baden)','Germany','DE','Rheinau (Baden) (Germany)',1,1,0),(33209,0,133341,'Rheinfelden (Baden)','Germany','DE','Rheinfelden (Baden) (Germany)',1,1,0),(33210,0,133342,'Ribeira Brava','Portugal','PT','Ribeira Brava (Portugal)',1,1,0),(33211,22911,133343,'Richland','United States of America','US','Richland (United States of America)',1,1,0),(33212,22913,133344,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(33213,0,133345,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(33214,0,133346,'Rico','United States of America','US','Rico (United States of America)',1,1,0),(33215,22925,133347,'Ridgeland','United States of America','US','Ridgeland (United States of America)',1,1,0),(33216,0,133348,'Riec sur Belon','France','FR','Riec sur Belon (France)',1,1,0),(33217,0,133349,'Ried b. Blatten (Lotschen)','Switzerland','CH','Ried b. Blatten (Lotschen) (Switzerland)',1,1,0),(33218,0,133350,'Riedering','Germany','DE','Riedering (Germany)',1,1,0),(33219,22948,133351,'Riggins','United States of America','US','Riggins (United States of America)',1,1,0),(33220,0,133352,'Rijssen-Holten','Netherlands','NL','Rijssen-Holten (Netherlands)',1,1,0),(33221,0,133353,'Rilland','Netherlands','NL','Rilland (Netherlands)',1,1,0),(33222,0,133354,'Rimatara','French Polynesia','PF','Rimatara (French Polynesia)',1,1,0),(33223,0,133355,'Rimforsa','Sweden','SE','Rimforsa (Sweden)',1,1,0),(33224,0,133356,'Rincon de la Victoria','Spain','ES','Rincon de la Victoria (Spain)',1,1,0),(33225,0,133357,'Ringkobing Fjord','Denmark','DK','Ringkobing Fjord (Denmark)',1,1,0),(33226,0,133358,'Rio Bueno','Jamaica','JM','Rio Bueno (Jamaica)',1,1,0),(33227,0,133359,'Rio Cuarto','Argentina','AR','Rio Cuarto (Argentina)',1,1,0),(33228,32705,133360,'Rio das Ostras','Brazil','BR','Rio das Ostras (Brazil)',1,1,0),(33229,0,133361,'Rio do Sul','Brazil','BR','Rio do Sul (Brazil)',1,1,0),(33230,0,133362,'Rio Gordo','Spain','ES','Rio Gordo (Spain)',1,1,0),(33231,22994,133363,'Rio Grande','Puerto Rico','PR','Rio Grande (Puerto Rico)',1,1,0),(33232,32715,133364,'Rio Grande City','United States of America','US','Rio Grande City (United States of America)',1,1,0),(33233,23005,133365,'Riomar','Spain','ES','Riomar (Spain)',1,1,0),(33234,0,133366,'Rionero in Vulture','Italy','IT','Rionero in Vulture (Italy)',1,1,0),(33235,0,133367,'Risum-Lindholm','Germany','DE','Risum-Lindholm (Germany)',1,1,0),(33236,23040,133368,'Riverside','United States of America','US','Riverside (United States of America)',1,1,0),(33237,0,133369,'Rives','France','FR','Rives (France)',1,1,0),(33238,23047,133370,'Riviera','United States of America','US','Riviera (United States of America)',1,1,0),(33239,23054,133371,'Rivonia','South Africa','ZA','Rivonia (South Africa)',1,1,0),(33240,23059,133372,'Rize','Turkey','TR','Rize (Turkey)',1,1,0),(33241,23064,133373,'Roanoke','United States of America','US','Roanoke (United States of America)',1,1,0),(33242,23065,133374,'Roatan','Honduras','HN','Roatan (Honduras)',1,1,0),(33243,23067,133375,'Robbinsville','United States of America','US','Robbinsville (United States of America)',1,1,0),(33244,0,133376,'Robe','Australia','AU','Robe (Australia)',1,1,0),(33245,23073,133377,'Roberval','Canada','CA','Roberval (Canada)',1,1,0),(33246,0,133378,'Robin\'\'s Bay','Jamaica','JM','Robin\'\'s Bay (Jamaica)',1,1,0),(33247,23086,133379,'Robstown','United States of America','US','Robstown (United States of America)',1,1,0),(33248,23087,133380,'Rocamadour','France','FR','Rocamadour (France)',1,1,0),(33249,0,133381,'Rocca d\'Arazzo','Italy','IT','Rocca d\'Arazzo (Italy)',1,1,0),(33250,0,133382,'Rocca Sant\'Angelo','Italy','IT','Rocca Sant\'Angelo (Italy)',1,1,0),(33251,23088,133383,'Roccacasale','Italy','IT','Roccacasale (Italy)',1,1,0),(33252,0,133384,'Roccella Ionica','Italy','IT','Roccella Ionica (Italy)',1,1,0),(33253,0,133385,'Rochefort','Switzerland','CH','Rochefort (Switzerland)',1,1,0),(33254,23102,133386,'Rochefort-en-Terre','France','FR','Rochefort-en-Terre (France)',1,1,0),(33255,0,133387,'Rochester','United Kingdom','UK','Rochester (United Kingdom)',1,1,0),(33256,0,133388,'Rochester','United States of America','US','Rochester (United States of America)',1,1,0),(33257,32738,133389,'Rock Falls','United States of America','US','Rock Falls (United States of America)',1,1,0),(33258,23113,133390,'Rock Sound','Bahamas','BS','Rock Sound (Bahamas)',1,1,0),(33259,0,133391,'Rockaway Beach','United States of America','US','Rockaway Beach (United States of America)',1,1,0),(33260,0,133392,'Rocklea','Australia','AU','Rocklea (Australia)',1,1,0),(33261,0,133393,'Roda','Greece','GR','Roda (Greece)',1,1,0),(33262,0,133394,'Rodakino','Greece','GR','Rodakino (Greece)',1,1,0),(33263,0,133395,'Roelofarendsveen','Netherlands','NL','Roelofarendsveen (Netherlands)',1,1,0),(33264,23158,133396,'Rogaska Slatina','Slovenia','SI','Rogaska Slatina (Slovenia)',1,1,0),(33265,23159,133397,'Rogers','United States of America','US','Rogers (United States of America)',1,1,0),(33266,0,133398,'Rogliano','France','FR','Rogliano (France)',1,1,0),(33267,0,133399,'Rogoznica','Croatia','HR','Rogoznica (Croatia)',1,1,0),(33268,21294,133400,'Phayao','Thailand','TH','Phayao (Thailand)',1,1,0),(33269,21299,133401,'Phetchabun','Thailand','TH','Phetchabun (Thailand)',1,1,0),(33270,0,133402,'Phillipsburg','United States of America','US','Phillipsburg (United States of America)',1,1,0),(33271,0,133403,'Piaski','Poland','PL','Piaski (Poland)',1,1,0),(33272,21340,133404,'Picayune','United States of America','US','Picayune (United States of America)',1,1,0),(33273,0,133405,'Pickering','United Kingdom','UK','Pickering (United Kingdom)',1,1,0),(33274,21359,133406,'Picton','New Zealand','NZ','Picton (New Zealand)',1,1,0),(33275,0,133407,'Piediluco','Italy','IT','Piediluco (Italy)',1,1,0),(33276,0,133408,'Piedmont','United States of America','US','Piedmont (United States of America)',1,1,0),(33277,21374,133409,'Pierre','United States of America','US','Pierre (United States of America)',1,1,0),(33278,0,133410,'Piet Retief','South Africa','ZA','Piet Retief (South Africa)',1,1,0),(33279,0,133411,'Pietramurata','Italy','IT','Pietramurata (Italy)',1,1,0),(33280,0,133412,'Pieve San Giovanni','Italy','IT','Pieve San Giovanni (Italy)',1,1,0),(33281,0,133413,'Pigna','France','FR','Pigna (France)',1,1,0),(33282,21400,133414,'Pikesville','United States of America','US','Pikesville (United States of America)',1,1,0),(33283,0,133415,'Pillau','Russia','RU','Pillau (Russia)',1,1,0),(33284,21414,133416,'Pilot Mountain','United States of America','US','Pilot Mountain (United States of America)',1,1,0),(33285,0,133417,'Pilot Point','United States of America','US','Pilot Point (United States of America)',1,1,0),(33286,21420,133419,'Pinckneyville','United States of America','US','Pinckneyville (United States of America)',1,1,0),(33287,32428,133420,'Pine Bluff','United States of America','US','Pine Bluff (United States of America)',1,1,0),(33288,32431,133421,'Pine Bush','United States of America','US','Pine Bush (United States of America)',1,1,0),(33289,0,133422,'Pine Creek','Australia','AU','Pine Creek (Australia)',1,1,0),(33290,21436,133423,'Pinetown','South Africa','ZA','Pinetown (South Africa)',1,1,0),(33291,0,133424,'Piney Point','United States of America','US','Piney Point (United States of America)',1,1,0),(33292,21445,133425,'Pingyao','China','CN','Pingyao (China)',1,1,0),(33293,21452,133426,'Pinole','United States of America','US','Pinole (United States of America)',1,1,0),(33294,21460,133427,'Pioneer','United States of America','US','Pioneer (United States of America)',1,1,0),(33295,0,133428,'Pionersky','Russia','RU','Pionersky (Russia)',1,1,0),(33296,0,133429,'Piotrkow Trybunalski','Poland','PL','Piotrkow Trybunalski (Poland)',1,1,0),(33297,21466,133430,'Piqua','United States of America','US','Piqua (United States of America)',1,1,0),(33298,21469,133431,'Piraeus','Greece','GR','Piraeus (Greece)',1,1,0),(33299,0,133432,'Piraju','Brazil','BR','Piraju (Brazil)',1,1,0),(33300,0,133433,'Piratuba','Brazil','BR','Piratuba (Brazil)',1,1,0),(33301,0,133434,'Pirmasens','Germany','DE','Pirmasens (Germany)',1,1,0),(33302,21478,133435,'Pisa','Italy','IT','Pisa (Italy)',1,1,0),(33303,21484,133436,'Piscataway','United States of America','US','Piscataway (United States of America)',1,1,0),(33304,21493,133437,'Pissouri','Cyprus','CY','Pissouri (Cyprus)',1,1,0),(33305,21505,133438,'Pitres','Spain','ES','Pitres (Spain)',1,1,0),(33306,0,133439,'Pittsfield','United States of America','US','Pittsfield (United States of America)',1,1,0),(33307,21512,133440,'Pittsford','United States of America','US','Pittsford (United States of America)',1,1,0),(33308,21526,133441,'Plailly','France','FR','Plailly (France)',1,1,0),(33309,21538,133442,'Plan-de-Cuques','France','FR','Plan-de-Cuques (France)',1,1,0),(33310,21560,133443,'Platteville','United States of America','US','Platteville (United States of America)',1,1,0),(33311,21565,133444,'Plauen','Germany','DE','Plauen (Germany)',1,1,0),(33312,0,133445,'Playa Arenilla','Costa Rica','CR','Playa Arenilla (Costa Rica)',1,1,0),(33313,32444,133446,'Playa Barca','Spain','ES','Playa Barca (Spain)',1,1,0),(33314,0,133447,'Playa Bolanos','Costa Rica','CR','Playa Bolanos (Costa Rica)',1,1,0),(33315,0,133448,'Playa de Son Bou','Spain','ES','Playa de Son Bou (Spain)',1,1,0),(33316,0,133449,'Playa de Son Parc','Spain','ES','Playa de Son Parc (Spain)',1,1,0),(33317,0,133450,'Playa del Cura','Spain','ES','Playa del Cura (Spain)',1,1,0),(33318,0,133451,'Playa del Duque','Spain','ES','Playa del Duque (Spain)',1,1,0),(33319,32461,133452,'Playa del Ingles','Spain','ES','Playa del Ingles (Spain)',1,1,0),(33320,0,133453,'Playa d\'en Bossa','Spain','ES','Playa d\'en Bossa (Spain)',1,1,0),(33321,0,133454,'Playa Es Pujols','Spain','ES','Playa Es Pujols (Spain)',1,1,0),(33322,0,133455,'Playa Pedro Gonzalez','Venezuela','VE','Playa Pedro Gonzalez (Venezuela)',1,1,0),(33323,0,133456,'Playa Potrero','Costa Rica','CR','Playa Potrero (Costa Rica)',1,1,0),(33324,21580,133457,'Pleiku','Vietnam','VN','Pleiku (Vietnam)',1,1,0),(33325,0,133458,'Plemmirio','Italy','IT','Plemmirio (Italy)',1,1,0),(33326,0,133459,'Plestin les Greves','France','FR','Plestin les Greves (France)',1,1,0),(33327,0,133460,'Plewen','Bulgaria','BG','Plewen (Bulgaria)',1,1,0),(33328,21596,133461,'Pliening','Germany','DE','Pliening (Germany)',1,1,0),(33329,0,133462,'Plitvica Lakes','Croatia','HR','Plitvica Lakes (Croatia)',1,1,0),(33330,0,133463,'Plonevez-Porzay','France','FR','Plonevez-Porzay (France)',1,1,0),(33331,0,133464,'Plonsk','Poland','PL','Plonsk (Poland)',1,1,0),(33332,21623,133465,'Plurien','France','FR','Plurien (France)',1,1,0),(33333,0,133466,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(33334,0,133467,'Plyos','Russia','RU','Plyos (Russia)',1,1,0),(33335,0,133468,'Pobra do Caraminal','Spain','ES','Pobra do Caraminal (Spain)',1,1,0),(33336,21645,133469,'Pocos de Caldas','Brazil','BR','Pocos de Caldas (Brazil)',1,1,0),(33337,21646,133470,'Podbrezova','Slovakia','SK','Podbrezova (Slovakia)',1,1,0),(33338,0,133471,'Podersdorf','Austria','AT','Podersdorf (Austria)',1,1,0),(33339,0,133472,'Podolsk','Russia','RU','Podolsk (Russia)',1,1,0),(33340,0,133473,'Poggi del Sasso','Italy','IT','Poggi del Sasso (Italy)',1,1,0),(33341,21658,133474,'Poggibonsi','Italy','IT','Poggibonsi (Italy)',1,1,0),(33342,0,133475,'Pognana Lario','Italy','IT','Pognana Lario (Italy)',1,1,0),(33343,0,133476,'Pohl im Vogtland','Germany','DE','Pohl im Vogtland (Germany)',1,1,0),(33344,21663,133477,'Pohnpei','Micronesia','FM','Pohnpei (Micronesia)',1,1,0),(33345,0,133478,'Pointe aux Roches','Mauritius','MU','Pointe aux Roches (Mauritius)',1,1,0),(33346,0,133479,'Poix St. Hubert','Belgium','BE','Poix St. Hubert (Belgium)',1,1,0),(33347,0,133480,'Polemarchi Voukolies','Greece','GR','Polemarchi Voukolies (Greece)',1,1,0),(33348,0,133481,'Policastro Bussentino','Italy','IT','Policastro Bussentino (Italy)',1,1,0),(33349,0,133482,'Pollina','Italy','IT','Pollina (Italy)',1,1,0),(33350,0,133483,'Pombas','Cape Verde','CV','Pombas (Cape Verde)',1,1,0),(33351,0,133484,'Pommerby','Germany','DE','Pommerby (Germany)',1,1,0),(33352,0,133485,'Pommerloch','Luxembourg','LU','Pommerloch (Luxembourg)',1,1,0),(33353,0,133486,'Pomos','Cyprus','CY','Pomos (Cyprus)',1,1,0),(33354,0,133487,'Poniatowa','Poland','PL','Poniatowa (Poland)',1,1,0),(33355,21749,133488,'Ponoka','Canada','CA','Ponoka (Canada)',1,1,0),(33356,0,133489,'Ponta do Ouro','Mozambique','MZ','Ponta do Ouro (Mozambique)',1,1,0),(33357,21757,133490,'Pontarlier','France','FR','Pontarlier (France)',1,1,0),(33358,0,133491,'Ponte Buggianese','Italy','IT','Ponte Buggianese (Italy)',1,1,0),(33359,0,133492,'Ponte de Sor','Portugal','PT','Ponte de Sor (Portugal)',1,1,0),(33360,0,133493,'Pontfaen','United Kingdom','UK','Pontfaen (United Kingdom)',1,1,0),(33361,21796,133494,'Pontrieux','France','FR','Pontrieux (France)',1,1,0),(33362,0,133495,'Poole','United Kingdom','UK','Poole (United Kingdom)',1,1,0),(33363,0,133496,'Pool-in-Wharfedale','United Kingdom','UK','Pool-in-Wharfedale (United Kingdom)',1,1,0),(33364,21815,133498,'Popoli','Italy','IT','Popoli (Italy)',1,1,0),(33365,21816,133499,'Poppi','Italy','IT','Poppi (Italy)',1,1,0),(33366,21831,133500,'Poros','Greece','GR','Poros (Greece)',1,1,0),(33367,0,133501,'Porspoder','France','FR','Porspoder (France)',1,1,0),(33368,32518,133502,'Port Charlotte','United States of America','US','Port Charlotte (United States of America)',1,1,0),(33369,21840,133503,'Port Dickson','Malaysia','MY','Port Dickson (Malaysia)',1,1,0),(33370,0,133504,'Port Edward','South Africa','ZA','Port Edward (South Africa)',1,1,0),(33371,32532,133505,'Port Elgin','Canada','CA','Port Elgin (Canada)',1,1,0),(33372,0,133506,'Port Grimaud / Grimaud','France','FR','Port Grimaud / Grimaud (France)',1,1,0),(33373,0,133507,'Ploumoguer','France','FR','Ploumoguer (France)',1,1,0),(33374,0,133508,'Pluguffan','France','FR','Pluguffan (France)',1,1,0),(33375,0,133509,'Plumstead','South Africa','ZA','Plumstead (South Africa)',1,1,0),(33376,0,133510,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(33377,0,133511,'Plymouth Meeting','United States of America','US','Plymouth Meeting (United States of America)',1,1,0),(33378,0,133512,'Pilsen','Czech Republic','CZ','Pilsen (Czech Republic)',1,1,0),(33379,21632,133513,'Poatina','Australia','AU','Poatina (Australia)',1,1,0),(33380,21635,133514,'Pocahontas','United States of America','US','Pocahontas (United States of America)',1,1,0),(33381,21642,133515,'Pocone','Brazil','BR','Pocone (Brazil)',1,1,0),(33382,0,133516,'Podvirky','Ukraine','UA','Podvirky (Ukraine)',1,1,0),(33383,0,133517,'Poggi','Italy','IT','Poggi (Italy)',1,1,0),(33384,0,133518,'Pogorzelica','Poland','PL','Pogorzelica (Poland)',1,1,0),(33385,0,133519,'Pogradec','Albania','AL','Pogradec (Albania)',1,1,0),(33386,32476,133520,'Point Lookout','Australia','AU','Point Lookout (Australia)',1,1,0),(33387,0,133521,'Pola de Allande','Spain','ES','Pola de Allande (Spain)',1,1,0),(33388,0,133522,'Polichnitos','Greece','GR','Polichnitos (Greece)',1,1,0),(33389,21699,133523,'Policoro','Italy','IT','Policoro (Italy)',1,1,0),(33390,21705,133524,'Pollein','Italy','IT','Pollein (Italy)',1,1,0),(33391,21707,133525,'Pollensa','Spain','ES','Pollensa (Spain)',1,1,0),(33392,0,133526,'Pollenzo','Italy','IT','Pollenzo (Italy)',1,1,0),(33393,0,133527,'Polminhac','France','FR','Polminhac (France)',1,1,0),(33394,21728,133528,'Pomarance','Italy','IT','Pomarance (Italy)',1,1,0),(33395,21729,133529,'Pombal','Portugal','PT','Pombal (Portugal)',1,1,0),(33396,0,133530,'Pomene Bay','Mozambique','MZ','Pomene Bay (Mozambique)',1,1,0),(33397,0,133531,'Pomezia','Italy','IT','Pomezia (Italy)',1,1,0),(33398,0,133532,'Pomlewo','Poland','PL','Pomlewo (Poland)',1,1,0),(33399,0,133533,'Pommeuse','France','FR','Pommeuse (France)',1,1,0),(33400,21742,133534,'Ponce','Puerto Rico','PR','Ponce (Puerto Rico)',1,1,0),(33401,0,133535,'Pons','France','FR','Pons (France)',1,1,0),(33402,0,133536,'Pont de Molins','Spain','ES','Pont de Molins (Spain)',1,1,0),(33403,0,133537,'Pont L\'Eveque','France','FR','Pont L\'Eveque (France)',1,1,0),(33404,0,133538,'Pontal Do Parana','Brazil','BR','Pontal Do Parana (Brazil)',1,1,0),(33405,21756,133539,'Pont-a-Mousson','France','FR','Pont-a-Mousson (France)',1,1,0),(33406,0,133540,'Ponte de Ferro-Fornos','Portugal','PT','Ponte de Ferro-Fornos (Portugal)',1,1,0),(33407,0,133541,'Ponte do Abade','Portugal','PT','Ponte do Abade (Portugal)',1,1,0),(33408,0,133542,'Pontedera','Italy','IT','Pontedera (Italy)',1,1,0),(33409,0,133543,'Ponti sul Mincio','Italy','IT','Ponti sul Mincio (Italy)',1,1,0),(33410,0,133544,'Pont-les-Moulins','France','FR','Pont-les-Moulins (France)',1,1,0),(33411,21789,133545,'Pontoise','France','FR','Pontoise (France)',1,1,0),(33412,21791,133546,'Pontoon Beach','United States of America','US','Pontoon Beach (United States of America)',1,1,0),(33413,0,133547,'Ponzano Veneto','Italy','IT','Ponzano Veneto (Italy)',1,1,0),(33414,21811,133548,'Poperinge','Belgium','BE','Poperinge (Belgium)',1,1,0),(33415,0,133549,'Poppendorf','Austria','AT','Poppendorf (Austria)',1,1,0),(33416,21817,133550,'Poprad','Slovakia','SK','Poprad (Slovakia)',1,1,0),(33417,21820,133552,'Porcari','Italy','IT','Porcari (Italy)',1,1,0),(33418,21826,133553,'Porlamar','Venezuela','VE','Porlamar (Venezuela)',1,1,0),(33419,0,133554,'Porquerolles','France','FR','Porquerolles (France)',1,1,0),(33420,32507,133555,'Port Arthur','United States of America','US','Port Arthur (United States of America)',1,1,0),(33421,0,133557,'Port Charlotte','United Kingdom','UK','Port Charlotte (United Kingdom)',1,1,0),(33422,32525,133558,'Port Coquitlam','Canada','CA','Port Coquitlam (Canada)',1,1,0),(33423,0,133559,'Port Kenny','Australia','AU','Port Kenny (Australia)',1,1,0),(33424,0,133560,'Port La Nouvelle','France','FR','Port La Nouvelle (France)',1,1,0),(33425,32563,133561,'Port Macquarie','Australia','AU','Port Macquarie (Australia)',1,1,0),(33426,0,133562,'Port Noarlunga','Australia','AU','Port Noarlunga (Australia)',1,1,0),(33427,0,133563,'Port Royal','Jamaica','JM','Port Royal (Jamaica)',1,1,0),(33428,0,133564,'Port St. Johns','South Africa','ZA','Port St. Johns (South Africa)',1,1,0),(33429,0,133565,'Port Sydney','Canada','CA','Port Sydney (Canada)',1,1,0),(33430,0,133566,'Port Washington','United States of America','US','Port Washington (United States of America)',1,1,0),(33431,0,133567,'Portel','Portugal','PT','Portel (Portugal)',1,1,0),(33432,21870,133568,'Porterville','United States of America','US','Porterville (United States of America)',1,1,0),(33433,0,133569,'Porthcawl','United Kingdom','UK','Porthcawl (United Kingdom)',1,1,0),(33434,0,133570,'Portillo','Chile','CL','Portillo (Chile)',1,1,0),(33435,0,133571,'Portishead (Somerset)','United Kingdom','UK','Portishead (Somerset) (United Kingdom)',1,1,0),(33436,0,133572,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(33437,0,133573,'Portland','United Kingdom','UK','Portland (United Kingdom)',1,1,0),(33438,0,133574,'Porto Belo','Brazil','BR','Porto Belo (Brazil)',1,1,0),(33439,32615,133575,'Porto Moniz','Portugal','PT','Porto Moniz (Portugal)',1,1,0),(33440,0,133576,'Porto Novo / Santo Antao','Cape Verde','CV','Porto Novo / Santo Antao (Cape Verde)',1,1,0),(33441,0,133577,'Porto Ronco','Switzerland','CH','Porto Ronco (Switzerland)',1,1,0),(33442,32630,133578,'Porto Tolle','Italy','IT','Porto Tolle (Italy)',1,1,0),(33443,21899,133579,'Portobuffole','Italy','IT','Portobuffole (Italy)',1,1,0),(33444,0,133580,'Portpatrick','United Kingdom','UK','Portpatrick (United Kingdom)',1,1,0),(33445,21921,133581,'Portsea','Australia','AU','Portsea (Australia)',1,1,0),(33446,0,133582,'Potami','Greece','GR','Potami (Greece)',1,1,0),(33447,21955,133583,'Potes','Spain','ES','Potes (Spain)',1,1,0),(33448,0,133584,'Potrerillos','Argentina','AR','Potrerillos (Argentina)',1,1,0),(33449,21964,133585,'Potsdam','United States of America','US','Potsdam (United States of America)',1,1,0),(33450,21970,133586,'Pottsboro','United States of America','US','Pottsboro (United States of America)',1,1,0),(33451,21972,133587,'Pottsville','United States of America','US','Pottsville (United States of America)',1,1,0),(33452,0,133588,'Poulton-le-Fylde','United Kingdom','UK','Poulton-le-Fylde (United Kingdom)',1,1,0),(33453,0,133589,'Poundon','United Kingdom','UK','Poundon (United Kingdom)',1,1,0),(33454,22009,133590,'Pozzolengo','Italy','IT','Pozzolengo (Italy)',1,1,0),(33455,22020,133591,'Prado','Brazil','BR','Prado (Brazil)',1,1,0),(33456,22024,133592,'Pragelato','Italy','IT','Pragelato (Italy)',1,1,0),(33457,0,133593,'Praia das Macas','Portugal','PT','Praia das Macas (Portugal)',1,1,0),(33458,22033,133594,'Pralormo','Italy','IT','Pralormo (Italy)',1,1,0),(33459,0,133595,'Prato','Italy','IT','Prato (Italy)',1,1,0),(33460,0,133596,'Prats-de-Mollo-la-Preste','France','FR','Prats-de-Mollo-la-Preste (France)',1,1,0),(33461,22056,133597,'Prechacq-les-Bains','France','FR','Prechacq-les-Bains (France)',1,1,0),(33462,22065,133598,'Pregnana Milanese','Italy','IT','Pregnana Milanese (Italy)',1,1,0),(33463,0,133599,'Premantura','Croatia','HR','Premantura (Croatia)',1,1,0),(33464,0,133600,'Presseck','Germany','DE','Presseck (Germany)',1,1,0),(33465,0,133601,'Priego de Cordoba','Spain','ES','Priego de Cordoba (Spain)',1,1,0),(33466,0,133602,'Prienai','Lithuania','LT','Prienai (Lithuania)',1,1,0),(33467,0,133603,'Prissian','Italy','IT','Prissian (Italy)',1,1,0),(33468,0,133604,'Prizren','Serbia','RS','Prizren (Serbia)',1,1,0),(33469,0,133605,'Prouvy','France','FR','Prouvy (France)',1,1,0),(33470,22156,133606,'Provins','France','FR','Provins (France)',1,1,0),(33471,0,133607,'Pruniers-en-Sologne','France','FR','Pruniers-en-Sologne (France)',1,1,0),(33472,0,133608,'Przezmierowo','Poland','PL','Przezmierowo (Poland)',1,1,0),(33473,0,133609,'Psili Ammos','Greece','GR','Psili Ammos (Greece)',1,1,0),(33474,0,133610,'Puente la Reina','Spain','ES','Puente la Reina (Spain)',1,1,0),(33475,0,133611,'Puente Viesgo','Spain','ES','Puente Viesgo (Spain)',1,1,0),(33476,22199,133612,'Puerto Barrios','Guatemala','GT','Puerto Barrios (Guatemala)',1,1,0),(33477,0,133613,'Puerto de Mogan','Spain','ES','Puerto de Mogan (Spain)',1,1,0),(33478,22155,133614,'Provincetown','United States of America','US','Provincetown (United States of America)',1,1,0),(33479,22158,133615,'Provost','Canada','CA','Provost (Canada)',1,1,0),(33480,0,133616,'Psarou','Greece','GR','Psarou (Greece)',1,1,0),(33481,0,133617,'Puegnago sul Garda','Italy','IT','Puegnago sul Garda (Italy)',1,1,0),(33482,0,133618,'Puente de San Miguel','Spain','ES','Puente de San Miguel (Spain)',1,1,0),(33483,0,133619,'Puerto Bertrand','Chile','CL','Puerto Bertrand (Chile)',1,1,0),(33484,0,133620,'Puerto de Tazacorte','Spain','ES','Puerto de Tazacorte (Spain)',1,1,0),(33485,0,133621,'Puerto Libertad','Argentina','AR','Puerto Libertad (Argentina)',1,1,0),(33486,0,133622,'Puerto Limon','Costa Rica','CR','Puerto Limon (Costa Rica)',1,1,0),(33487,0,133623,'Puerto Viejo de Talamanca','Costa Rica','CR','Puerto Viejo de Talamanca (Costa Rica)',1,1,0),(33488,0,133624,'Pula / Pula Verudela','Croatia','HR','Pula / Pula Verudela (Croatia)',1,1,0),(33489,0,133625,'Pulau Tenggol','Malaysia','MY','Pulau Tenggol (Malaysia)',1,1,0),(33490,0,133626,'Pulau Timba Timba','Malaysia','MY','Pulau Timba Timba (Malaysia)',1,1,0),(33491,0,133627,'Pulau Weh','Indonesia','ID','Pulau Weh (Indonesia)',1,1,0),(33492,0,133628,'Pulborough','United Kingdom','UK','Pulborough (United Kingdom)',1,1,0),(33493,0,133629,'Pullach im Isartal','Germany','DE','Pullach im Isartal (Germany)',1,1,0),(33494,22230,133630,'Pullman','United States of America','US','Pullman (United States of America)',1,1,0),(33495,0,133631,'Pulpi','Spain','ES','Pulpi (Spain)',1,1,0),(33496,22240,133632,'Punta Ala','Italy','IT','Punta Ala (Italy)',1,1,0),(33497,22242,133633,'Punta Arenas','Chile','CL','Punta Arenas (Chile)',1,1,0),(33498,22248,133634,'Punta Gorda','Belize','BZ','Punta Gorda (Belize)',1,1,0),(33499,0,133635,'Punta Sam','Mexico','MX','Punta Sam (Mexico)',1,1,0),(33500,0,133636,'Punta Sampieri','Italy','IT','Punta Sampieri (Italy)',1,1,0),(33501,0,133637,'Punta Uva','Costa Rica','CR','Punta Uva (Costa Rica)',1,1,0),(33502,22251,133638,'Puntarenas','Costa Rica','CR','Puntarenas (Costa Rica)',1,1,0),(33503,22253,133639,'Punxsutawney','United States of America','US','Punxsutawney (United States of America)',1,1,0),(33504,0,133640,'Purfleet','United Kingdom','UK','Purfleet (United Kingdom)',1,1,0),(33505,0,133641,'Pusan','South Korea','KR','Pusan (South Korea)',1,1,0),(33506,22283,133642,'Putnam','United States of America','US','Putnam (United States of America)',1,1,0),(33507,22290,133643,'Puttgarden','Germany','DE','Puttgarden (Germany)',1,1,0),(33508,0,133644,'Pwani Mchangani','Tanzania','TZ','Pwani Mchangani (Tanzania)',1,1,0),(33509,22307,133645,'Pyay','Myanmar','MM','Pyay (Myanmar)',1,1,0),(33510,0,133646,'Pyhtaa','Finland','FI','Pyhtaa (Finland)',1,1,0),(33511,22311,133647,'Pylos','Greece','GR','Pylos (Greece)',1,1,0),(33512,0,133648,'Pyrgaki','Greece','GR','Pyrgaki (Greece)',1,1,0),(33513,22332,133649,'Qingyang','China','CN','Qingyang (China)',1,1,0),(33514,22341,133650,'Qom','Iran','IR','Qom (Iran)',1,1,0),(33515,0,133651,'Qualicum Beach','Canada','CA','Qualicum Beach (Canada)',1,1,0),(33516,0,133652,'Quebec','United Kingdom','UK','Quebec (United Kingdom)',1,1,0),(33517,0,133653,'Queen Charlotte','Canada','CA','Queen Charlotte (Canada)',1,1,0),(33518,22373,133654,'Queenstown','New Zealand','NZ','Queenstown (New Zealand)',1,1,0),(33519,22378,133655,'Quejana','Spain','ES','Quejana (Spain)',1,1,0),(33520,0,133656,'Quemper-Guezennec','France','FR','Quemper-Guezennec (France)',1,1,0),(33521,22400,133657,'Quiliano','Italy','IT','Quiliano (Italy)',1,1,0),(33522,22407,133658,'Quimper','France','FR','Quimper (France)',1,1,0),(33523,0,133659,'Quintana','Spain','ES','Quintana (Spain)',1,1,0),(33524,0,133660,'Quispamsis','Canada','CA','Quispamsis (Canada)',1,1,0),(33525,22443,133661,'Rabac','Croatia','HR','Rabac (Croatia)',1,1,0),(33526,0,133662,'Radeburg','Germany','DE','Radeburg (Germany)',1,1,0),(33527,0,133663,'Radfeld','Austria','AT','Radfeld (Austria)',1,1,0),(33528,22474,133664,'Radom','Poland','PL','Radom (Poland)',1,1,0),(33529,0,133665,'Radomsko','Poland','PL','Radomsko (Poland)',1,1,0),(33530,0,133666,'Raesfeld','Germany','DE','Raesfeld (Germany)',1,1,0),(33531,22489,133667,'Raggal','Austria','AT','Raggal (Austria)',1,1,0),(33532,22491,133668,'Ragusa','Italy','IT','Ragusa (Italy)',1,1,0),(33533,0,133669,'Raiano','Italy','IT','Raiano (Italy)',1,1,0),(33534,22499,133670,'Raiatea','French Polynesia','PF','Raiatea (French Polynesia)',1,1,0),(33535,0,133671,'Rainbach im Muhlkreis','Austria','AT','Rainbach im Muhlkreis (Austria)',1,1,0),(33536,0,133673,'Rajka','Hungary','HU','Rajka (Hungary)',1,1,0),(33537,0,133674,'Ramingstein','Austria','AT','Ramingstein (Austria)',1,1,0),(33538,0,133675,'Ramsen SH','Switzerland','CH','Ramsen SH (Switzerland)',1,1,0),(33539,0,133677,'Ranca','Romania','RO','Ranca (Romania)',1,1,0),(33540,0,133678,'Randboldal','Denmark','DK','Randboldal (Denmark)',1,1,0),(33541,22571,133679,'Randers','Denmark','DK','Randers (Denmark)',1,1,0),(33542,0,133680,'Randogne','Switzerland','CH','Randogne (Switzerland)',1,1,0),(33543,0,133681,'Ransart','Belgium','BE','Ransart (Belgium)',1,1,0),(33544,22594,133682,'Rantoul','United States of America','US','Rantoul (United States of America)',1,1,0),(33545,22599,133683,'Rapolano Terme','Italy','IT','Rapolano Terme (Italy)',1,1,0),(33546,0,133684,'Ras Banas','Egypt','EG','Ras Banas (Egypt)',1,1,0),(33547,0,133685,'Rathcoole','Ireland','IE','Rathcoole (Ireland)',1,1,0),(33548,22616,133686,'Rathmullan','Ireland','IE','Rathmullan (Ireland)',1,1,0),(33549,0,133688,'Ratschings','Italy','IT','Ratschings (Italy)',1,1,0),(33550,22624,133689,'Rauma','Finland','FI','Rauma (Finland)',1,1,0),(33551,22626,133690,'Raunheim','Germany','DE','Raunheim (Germany)',1,1,0),(33552,0,133691,'Rauzan','France','FR','Rauzan (France)',1,1,0),(33553,0,133692,'Ravascletto','Italy','IT','Ravascletto (Italy)',1,1,0),(33554,22640,133693,'Rawai','Thailand','TH','Rawai (Thailand)',1,1,0),(33555,0,133694,'Rayleigh','United Kingdom','UK','Rayleigh (United Kingdom)',1,1,0),(33556,22650,133695,'Raynham','United States of America','US','Raynham (United States of America)',1,1,0),(33557,0,133696,'Razanj','Croatia','HR','Razanj (Croatia)',1,1,0),(33558,0,133697,'Re','Italy','IT','Re (Italy)',1,1,0),(33559,32668,133698,'Red Bluff','United States of America','US','Red Bluff (United States of America)',1,1,0),(33560,32673,133699,'Red Hook','United States of America','US','Red Hook (United States of America)',1,1,0),(33561,32676,133700,'Red Oak','United States of America','US','Red Oak (United States of America)',1,1,0),(33562,0,133701,'Rederscheid','Germany','DE','Rederscheid (Germany)',1,1,0),(33563,0,133702,'Redwater','Canada','CA','Redwater (Canada)',1,1,0),(33564,22709,133703,'Redway','United States of America','US','Redway (United States of America)',1,1,0),(33565,0,133704,'Reethi','Maldives','MV','Reethi (Maldives)',1,1,0),(33566,22724,133705,'Regencos','Spain','ES','Regencos (Spain)',1,1,0),(33567,32682,133706,'Reggio di Calabria','Italy','IT','Reggio di Calabria (Italy)',1,1,0),(33568,32683,133707,'Reggio Emilia','Italy','IT','Reggio Emilia (Italy)',1,1,0),(33569,0,133708,'Reichelsheim','Germany','DE','Reichelsheim (Germany)',1,1,0),(33570,22738,133709,'Reichenau','Austria','AT','Reichenau (Austria)',1,1,0),(33571,0,133710,'Reichenau-Hellmonsodt','Austria','AT','Reichenau-Hellmonsodt (Austria)',1,1,0),(33572,22740,133711,'Reichenfels','Austria','AT','Reichenfels (Austria)',1,1,0),(33573,22741,133712,'Reichenschwand','Germany','DE','Reichenschwand (Germany)',1,1,0),(33574,0,133713,'Reichertshofen','Germany','DE','Reichertshofen (Germany)',1,1,0),(33575,22743,133714,'Reidsville','United States of America','US','Reidsville (United States of America)',1,1,0),(33576,22745,133715,'Reignac-sur-Indre','France','FR','Reignac-sur-Indre (France)',1,1,0),(33577,0,133716,'Reindlmuhl','Austria','AT','Reindlmuhl (Austria)',1,1,0),(33578,22755,133717,'Reinstorf','Germany','DE','Reinstorf (Germany)',1,1,0),(33579,0,133718,'Reinswald','Italy','IT','Reinswald (Italy)',1,1,0),(33580,0,133719,'Reisbach','Germany','DE','Reisbach (Germany)',1,1,0),(33581,0,133720,'Remoulins','France','FR','Remoulins (France)',1,1,0),(33582,0,133721,'Rennerod','Germany','DE','Rennerod (Germany)',1,1,0),(33583,22785,133722,'Rennweg','Austria','AT','Rennweg (Austria)',1,1,0),(33584,0,133723,'Rennweg am Katschberg','Austria','AT','Rennweg am Katschberg (Austria)',1,1,0),(33585,0,133724,'Reno','United States of America','US','Reno (United States of America)',1,1,0),(33586,0,133725,'Qamdo','China','CN','Qamdo (China)',1,1,0),(33587,22333,133726,'Qingyuan','China','CN','Qingyuan (China)',1,1,0),(33588,22342,133727,'Quadra Island','Canada','CA','Quadra Island (Canada)',1,1,0),(33589,22346,133728,'Quanah','United States of America','US','Quanah (United States of America)',1,1,0),(33590,22355,133729,'Quarteira','Portugal','PT','Quarteira (Portugal)',1,1,0),(33591,0,133730,'Quatre Bornes','Mauritius','MU','Quatre Bornes (Mauritius)',1,1,0),(33592,22362,133731,'Quattordio','Italy','IT','Quattordio (Italy)',1,1,0),(33593,22363,133732,'Queanbeyan','Australia','AU','Queanbeyan (Australia)',1,1,0),(33594,22370,133733,'Queensbury','United States of America','US','Queensbury (United States of America)',1,1,0),(33595,0,133734,'Querenca Loule','Portugal','PT','Querenca Loule (Portugal)',1,1,0),(33596,0,133735,'Querfurt','Germany','DE','Querfurt (Germany)',1,1,0),(33597,22389,133736,'Quetta','Pakistan','PK','Quetta (Pakistan)',1,1,0),(33598,22391,133737,'Quetzaltenango','Guatemala','GT','Quetzaltenango (Guatemala)',1,1,0),(33599,22410,133738,'Quinault','United States of America','US','Quinault (United States of America)',1,1,0),(33600,0,133739,'Quincy','United States of America','US','Quincy (United States of America)',1,1,0),(33601,0,133740,'Quinson','France','FR','Quinson (France)',1,1,0),(33602,22417,133741,'Quinta do Lago','Portugal','PT','Quinta do Lago (Portugal)',1,1,0),(33603,0,133742,'Quintanilla de Somoza','Spain','ES','Quintanilla de Somoza (Spain)',1,1,0),(33604,0,133743,'Quorn','United Kingdom','UK','Quorn (United Kingdom)',1,1,0),(33605,0,133744,'Rab Island','Croatia','HR','Rab Island (Croatia)',1,1,0),(33606,22446,133745,'Rabat','Morocco','MA','Rabat (Morocco)',1,1,0),(33607,22453,133746,'Raceland','United States of America','US','Raceland (United States of America)',1,1,0),(33608,22463,133747,'Radeberg','Germany','DE','Radeberg (Germany)',1,1,0),(33609,22465,133748,'Radefeld','Germany','DE','Radefeld (Germany)',1,1,0),(33610,0,133749,'Radicofani','Italy','IT','Radicofani (Italy)',1,1,0),(33611,22469,133750,'Radicondoli','Italy','IT','Radicondoli (Italy)',1,1,0),(33612,0,133751,'Radovici','Montenegro','ME','Radovici (Montenegro)',1,1,0),(33613,0,133752,'Rafailovici','Montenegro','ME','Rafailovici (Montenegro)',1,1,0),(33614,22487,133753,'Rafz','Switzerland','CH','Rafz (Switzerland)',1,1,0),(33615,22521,133754,'Rakovica','Croatia','HR','Rakovica (Croatia)',1,1,0),(33616,0,133755,'Ralston','United States of America','US','Ralston (United States of America)',1,1,0),(33617,22525,133756,'Ralswiek','Germany','DE','Ralswiek (Germany)',1,1,0),(33618,0,133757,'Ramara','Canada','CA','Ramara (Canada)',1,1,0),(33619,22539,133758,'Ramnicu Valcea','Romania','RO','Ramnicu Valcea (Romania)',1,1,0),(33620,0,133759,'Ramvik','Sweden','SE','Ramvik (Sweden)',1,1,0),(33621,22564,133761,'Ranchos De Taos','United States of America','US','Ranchos De Taos (United States of America)',1,1,0),(33622,22565,133762,'Randa','Switzerland','CH','Randa (Switzerland)',1,1,0),(33623,0,133763,'Ranfurly','New Zealand','NZ','Ranfurly (New Zealand)',1,1,0),(33624,0,133764,'Rankwitz','Germany','DE','Rankwitz (Germany)',1,1,0),(33625,22591,133765,'Ransol','Andorra','AD','Ransol (Andorra)',1,1,0),(33626,22595,133766,'Rantum','Germany','DE','Rantum (Germany)',1,1,0),(33627,0,133767,'Rapaniana','Greece','GR','Rapaniana (Greece)',1,1,0),(33628,32662,133768,'Rapid City','United States of America','US','Rapid City (United States of America)',1,1,0),(33629,0,133769,'Ras Al Jinz','Oman','OM','Ras Al Jinz (Oman)',1,1,0),(33630,22605,133770,'Ras al Khaimah','United Arab Emirates','AE','Ras al Khaimah (United Arab Emirates)',1,1,0),(33631,0,133771,'Rastede','Germany','DE','Rastede (Germany)',1,1,0),(33632,0,133772,'Rastovaca','Croatia','HR','Rastovaca (Croatia)',1,1,0),(33633,0,133773,'Rathmullen','Ireland','IE','Rathmullen (Ireland)',1,1,0),(33634,0,133774,'Raton','United States of America','US','Raton (United States of America)',1,1,0),(33635,0,133775,'Rattvik - Martansberg','Sweden','SE','Rattvik - Martansberg (Sweden)',1,1,0),(33636,22620,133776,'Rauenberg','Germany','DE','Rauenberg (Germany)',1,1,0),(33637,22622,133777,'Rauha','Finland','FI','Rauha (Finland)',1,1,0),(33638,22627,133778,'Rauris','Austria','AT','Rauris (Austria)',1,1,0),(33639,22632,133779,'Ravenna','Italy','IT','Ravenna (Italy)',1,1,0),(33640,0,133780,'Rawang','Malaysia','MY','Rawang (Malaysia)',1,1,0),(33641,0,133781,'Razanac','Croatia','HR','Razanac (Croatia)',1,1,0),(33642,22659,133782,'Reading','United States of America','US','Reading (United States of America)',1,1,0),(33643,0,133783,'Rech','Germany','DE','Rech (Germany)',1,1,0),(33644,0,133784,'Rechberg','Austria','AT','Rechberg (Austria)',1,1,0),(33645,0,133785,'Red Oak','United States of America','US','Red Oak (United States of America)',1,1,0),(33646,0,133786,'Redcar','United Kingdom','UK','Redcar (United Kingdom)',1,1,0),(33647,22689,133787,'Redding','United States of America','US','Redding (United States of America)',1,1,0),(33648,0,133788,'Redondela','Spain','ES','Redondela (Spain)',1,1,0),(33649,22715,133789,'Reedsburg','United States of America','US','Reedsburg (United States of America)',1,1,0),(33650,22733,133790,'Reguengos de Monsaraz','Portugal','PT','Reguengos de Monsaraz (Portugal)',1,1,0),(33651,22736,133791,'Rehoboth','United States of America','US','Rehoboth (United States of America)',1,1,0),(33652,0,133792,'Rehoboth Beach','United States of America','US','Rehoboth Beach (United States of America)',1,1,0),(33653,0,133793,'Reichenbach (Oberfranken)','Germany','DE','Reichenbach (Oberfranken) (Germany)',1,1,0),(33654,0,133794,'Reichenbach (Oberstdorf)','Germany','DE','Reichenbach (Oberstdorf) (Germany)',1,1,0),(33655,0,133795,'Reichenbach/Oberlausitz','Germany','DE','Reichenbach/Oberlausitz (Germany)',1,1,0),(33656,0,133796,'Reinheim','Germany','DE','Reinheim (Germany)',1,1,0),(33657,32686,133797,'Reit Im Winkl','Germany','DE','Reit Im Winkl (Germany)',1,1,0),(33658,0,133798,'Remedios','Cuba','CU','Remedios (Cuba)',1,1,0),(33659,0,133799,'Rende','Italy','IT','Rende (Italy)',1,1,0),(33660,0,133800,'Rengsdorf','Germany','DE','Rengsdorf (Germany)',1,1,0),(33661,22798,133801,'Rerik','Germany','DE','Rerik (Germany)',1,1,0),(33662,0,133802,'Retford','United Kingdom','UK','Retford (United Kingdom)',1,1,0),(33663,0,133803,'Rettenberg','Germany','DE','Rettenberg (Germany)',1,1,0),(33664,22815,133804,'Retz','Austria','AT','Retz (Austria)',1,1,0),(33665,0,133805,'Reuil','France','FR','Reuil (France)',1,1,0),(33666,0,133806,'Reuterstadt Stavenhagen','Germany','DE','Reuterstadt Stavenhagen (Germany)',1,1,0),(33667,22821,133807,'Reutlingen','Germany','DE','Reutlingen (Germany)',1,1,0),(33668,22823,133808,'Reutte','Austria','AT','Reutte (Austria)',1,1,0),(33669,0,133809,'Reuver','Netherlands','NL','Reuver (Netherlands)',1,1,0),(33670,0,133810,'Revfulop','Hungary','HU','Revfulop (Hungary)',1,1,0),(33671,22841,133811,'Reynoldsburg','United States of America','US','Reynoldsburg (United States of America)',1,1,0),(33672,0,133812,'Rhede','Germany','DE','Rhede (Germany)',1,1,0),(33673,22852,133813,'Rheine','Germany','DE','Rheine (Germany)',1,1,0),(33674,0,133814,'Rhostrehwfa','United Kingdom','UK','Rhostrehwfa (United Kingdom)',1,1,0),(33675,0,133815,'Riacho Doce','Brazil','BR','Riacho Doce (Brazil)',1,1,0),(33676,22891,133816,'Ribe','Denmark','DK','Ribe (Denmark)',1,1,0),(33677,22892,133817,'Ribeauville','France','FR','Ribeauville (France)',1,1,0),(33678,0,133818,'Ribeira Funda','Portugal','PT','Ribeira Funda (Portugal)',1,1,0),(33679,22894,133819,'Ribeirao Preto','Brazil','BR','Ribeirao Preto (Brazil)',1,1,0),(33680,0,133820,'Ribera de Cabanes','Spain','ES','Ribera de Cabanes (Spain)',1,1,0),(33681,0,133821,'Riccall','United Kingdom','UK','Riccall (United Kingdom)',1,1,0),(33682,22909,133822,'Richfield','United States of America','US','Richfield (United States of America)',1,1,0),(33683,0,133823,'Richfield Springs','United States of America','US','Richfield Springs (United States of America)',1,1,0),(33684,0,133824,'Richland Center','United States of America','US','Richland Center (United States of America)',1,1,0),(33685,0,133825,'Richmond','Canada','CA','Richmond (Canada)',1,1,0),(33686,0,133826,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(33687,0,133827,'Rickmansworth','United Kingdom','UK','Rickmansworth (United Kingdom)',1,1,0),(33688,32697,133828,'Ridge','United States of America','US','Ridge (United States of America)',1,1,0),(33689,22922,133829,'Ridgecrest','United States of America','US','Ridgecrest (United States of America)',1,1,0),(33690,0,133830,'Ried bei Morel','Switzerland','CH','Ried bei Morel (Switzerland)',1,1,0),(33691,0,133831,'Riederich','Germany','DE','Riederich (Germany)',1,1,0),(33692,0,133832,'Riegel am Kaiserstuhl','Germany','DE','Riegel am Kaiserstuhl (Germany)',1,1,0),(33693,0,133833,'Riegsee','Germany','DE','Riegsee (Germany)',1,1,0),(33694,0,133834,'Riemst / Heukelom','Belgium','BE','Riemst / Heukelom (Belgium)',1,1,0),(33695,22938,133835,'Rieti','Italy','IT','Rieti (Italy)',1,1,0),(33696,32660,133836,'Randa','Spain','ES','Randa (Spain)',1,1,0),(33697,0,133837,'Rangsdorf','Germany','DE','Rangsdorf (Germany)',1,1,0),(33698,22587,133839,'Ranohira','Madagascar','MG','Ranohira (Madagascar)',1,1,0),(33699,22592,133840,'Rantepao','Indonesia','ID','Rantepao (Indonesia)',1,1,0),(33700,0,133841,'Ranum','Denmark','DK','Ranum (Denmark)',1,1,0),(33701,0,133842,'Rappoltsweiler','France','FR','Rappoltsweiler (France)',1,1,0),(33702,0,133843,'Ras Um El Sid','Egypt','EG','Ras Um El Sid (Egypt)',1,1,0),(33703,22607,133844,'Rascafria','Spain','ES','Rascafria (Spain)',1,1,0),(33704,0,133845,'Rastatt','Germany','DE','Rastatt (Germany)',1,1,0),(33705,0,133846,'Rathenow','Germany','DE','Rathenow (Germany)',1,1,0),(33706,0,133847,'Rathowen','Ireland','IE','Rathowen (Ireland)',1,1,0),(33707,0,133848,'Ratnapura','Sri Lanka','LK','Ratnapura (Sri Lanka)',1,1,0),(33708,0,133849,'Rattenberg','Germany','DE','Rattenberg (Germany)',1,1,0),(33709,0,133850,'Rattenberg','Austria','AT','Rattenberg (Austria)',1,1,0),(33710,0,133851,'Rattendorf','Austria','AT','Rattendorf (Austria)',1,1,0),(33711,0,133852,'Rattey','Germany','DE','Rattey (Germany)',1,1,0),(33712,0,133853,'Raubling','Germany','DE','Raubling (Germany)',1,1,0),(33713,22625,133854,'Raumati Beach','New Zealand','NZ','Raumati Beach (New Zealand)',1,1,0),(33714,0,133855,'Ravda','Bulgaria','BG','Ravda (Bulgaria)',1,1,0),(33715,22628,133856,'Ravello','Italy','IT','Ravello (Italy)',1,1,0),(33716,22633,133857,'Ravensbourne','Australia','AU','Ravensbourne (Australia)',1,1,0),(33717,0,133858,'Ravensburg','Germany','DE','Ravensburg (Germany)',1,1,0),(33718,22642,133859,'Rawalpindi','Pakistan','PK','Rawalpindi (Pakistan)',1,1,0),(33719,0,133860,'Rayong','Thailand','TH','Rayong (Thailand)',1,1,0),(33720,0,133861,'Rebecq','Belgium','BE','Rebecq (Belgium)',1,1,0),(33721,22671,133862,'Rechenberg-Bienenmuhle','Germany','DE','Rechenberg-Bienenmuhle (Germany)',1,1,0),(33722,0,133863,'Rechtenbach','Germany','DE','Rechtenbach (Germany)',1,1,0),(33723,22672,133864,'Recife','Brazil','BR','Recife (Brazil)',1,1,0),(33724,0,133865,'Red Hill','Australia','AU','Red Hill (Australia)',1,1,0),(33725,0,133866,'Red Lake','Canada','CA','Red Lake (Canada)',1,1,0),(33726,22679,133867,'Reda','Poland','PL','Reda (Poland)',1,1,0),(33727,0,133868,'Redenhall with Harleston','United Kingdom','UK','Redenhall with Harleston (United Kingdom)',1,1,0),(33728,22694,133869,'Redfield','United States of America','US','Redfield (United States of America)',1,1,0),(33729,22696,133870,'Redgranite','United States of America','US','Redgranite (United States of America)',1,1,0),(33730,0,133871,'Redmond','United States of America','US','Redmond (United States of America)',1,1,0),(33731,0,133872,'Redon','France','FR','Redon (France)',1,1,0),(33732,22705,133873,'Redondo','Portugal','PT','Redondo (Portugal)',1,1,0),(33733,0,133874,'Reefton','New Zealand','NZ','Reefton (New Zealand)',1,1,0),(33734,0,133875,'Rees','Germany','DE','Rees (Germany)',1,1,0),(33735,0,133876,'Rehburg-Loccum','Germany','DE','Rehburg-Loccum (Germany)',1,1,0),(33736,0,133877,'Reichenberg','Germany','DE','Reichenberg (Germany)',1,1,0),(33737,0,133878,'Reichraming','Austria','AT','Reichraming (Austria)',1,1,0),(33738,0,133879,'Reichstett','France','FR','Reichstett (France)',1,1,0),(33739,0,133880,'Reifenstein-Eichsfeld','Germany','DE','Reifenstein-Eichsfeld (Germany)',1,1,0),(33740,0,133881,'Reinfeld','Germany','DE','Reinfeld (Germany)',1,1,0),(33741,22753,133882,'Reinosa','Spain','ES','Reinosa (Spain)',1,1,0),(33742,0,133883,'Renfrew','United Kingdom','UK','Renfrew (United Kingdom)',1,1,0),(33743,0,133884,'Renningen','Germany','DE','Renningen (Germany)',1,1,0),(33744,0,133885,'Renska Wies','Poland','PL','Renska Wies (Poland)',1,1,0),(33745,22790,133886,'Reocin','Spain','ES','Reocin (Spain)',1,1,0),(33746,0,133887,'Reppenhagen','Germany','DE','Reppenhagen (Germany)',1,1,0),(33747,22794,133888,'Republic','United States of America','US','Republic (United States of America)',1,1,0),(33748,22803,133889,'Resistencia','Argentina','AR','Resistencia (Argentina)',1,1,0),(33749,0,133890,'Restabal','Spain','ES','Restabal (Spain)',1,1,0),(33750,0,133891,'Resuttano','Italy','IT','Resuttano (Italy)',1,1,0),(33751,0,133892,'Retgendorf','Germany','DE','Retgendorf (Germany)',1,1,0),(33752,0,133893,'Rethwisch','Germany','DE','Rethwisch (Germany)',1,1,0),(33753,0,133894,'Rethymnon','Greece','GR','Rethymnon (Greece)',1,1,0),(33754,0,133895,'Reunion','United States of America','US','Reunion (United States of America)',1,1,0),(33755,22824,133896,'Revel','France','FR','Revel (France)',1,1,0),(33756,0,133897,'Revilla de Camargo','Spain','ES','Revilla de Camargo (Spain)',1,1,0),(33757,22828,133898,'Revine Lago','Italy','IT','Revine Lago (Italy)',1,1,0),(33758,0,133899,'Revnice','Czech Republic','CZ','Revnice (Czech Republic)',1,1,0),(33759,22837,133900,'Reydarfjordur','Iceland','IS','Reydarfjordur (Iceland)',1,1,0),(33760,0,133901,'Rheinbollen','Germany','DE','Rheinbollen (Germany)',1,1,0),(33761,22854,133902,'Rheinfelden','Switzerland','CH','Rheinfelden (Switzerland)',1,1,0),(33762,0,133903,'Rhemes-Notre-Dame','Italy','IT','Rhemes-Notre-Dame (Italy)',1,1,0),(33763,0,133904,'Rhens','Germany','DE','Rhens (Germany)',1,1,0),(33764,22885,133905,'Ribabellosa','Spain','ES','Ribabellosa (Spain)',1,1,0),(33765,0,133906,'Ribeira de Pena','Portugal','PT','Ribeira de Pena (Portugal)',1,1,0),(33766,0,133907,'Riberia Grande / Sao Antao','Cape Verde','CV','Riberia Grande / Sao Antao (Cape Verde)',1,1,0),(33767,0,133908,'Richerenches','France','FR','Richerenches (France)',1,1,0),(33768,0,133909,'Richibucto','Canada','CA','Richibucto (Canada)',1,1,0),(33769,0,133910,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(33770,0,133911,'Richmond (North Yorkshire)','United Kingdom','UK','Richmond (North Yorkshire) (United Kingdom)',1,1,0),(33771,22918,133912,'Richwood','United States of America','US','Richwood (United States of America)',1,1,0),(33772,0,133913,'Riddes','Switzerland','CH','Riddes (Switzerland)',1,1,0),(33773,0,133914,'Riebeeck West','South Africa','ZA','Riebeeck West (South Africa)',1,1,0),(33774,22930,133915,'Ried im Innkreis','Austria','AT','Ried im Innkreis (Austria)',1,1,0),(33775,0,133916,'Rieste','Germany','DE','Rieste (Germany)',1,1,0),(33776,0,133917,'Rieth','Germany','DE','Rieth (Germany)',1,1,0),(33777,0,133918,'Riethnordhausen','Germany','DE','Riethnordhausen (Germany)',1,1,0),(33778,0,133919,'Rietz-Neuendorf','Germany','DE','Rietz-Neuendorf (Germany)',1,1,0),(33779,22940,133920,'Rieupeyroux','France','FR','Rieupeyroux (France)',1,1,0),(33780,22955,133921,'Rijssen','Netherlands','NL','Rijssen (Netherlands)',1,1,0),(33781,22956,133922,'Rijswijk','Netherlands','NL','Rijswijk (Netherlands)',1,1,0),(33782,22957,133923,'Riksgransen','Sweden','SE','Riksgransen (Sweden)',1,1,0),(33783,22969,133924,'Rincon','United States of America','US','Rincon (United States of America)',1,1,0),(33784,22973,133925,'Rindge','United States of America','US','Rindge (United States of America)',1,1,0),(33785,22978,133926,'Ringgold','United States of America','US','Ringgold (United States of America)',1,1,0),(33786,22986,133927,'Ringsted','Denmark','DK','Ringsted (Denmark)',1,1,0),(33787,32702,133928,'Rio Branco','Brazil','BR','Rio Branco (Brazil)',1,1,0),(33788,0,133929,'Rio das Flores','Brazil','BR','Rio das Flores (Brazil)',1,1,0),(33789,22996,133930,'Riobamba','Ecuador','EC','Riobamba (Ecuador)',1,1,0),(33790,0,133931,'Riocorvo','Spain','ES','Riocorvo (Spain)',1,1,0),(33791,22997,133932,'Riofrio','Spain','ES','Riofrio (Spain)',1,1,0),(33792,23006,133933,'Riom-es-Montagnes','France','FR','Riom-es-Montagnes (France)',1,1,0),(33793,0,133934,'Rioverde','Mexico','MX','Rioverde (Mexico)',1,1,0),(33794,23010,133935,'Ripley','United States of America','US','Ripley (United States of America)',1,1,0),(33795,0,133936,'Rising Sun','United States of America','US','Rising Sun (United States of America)',1,1,0),(33796,23027,133937,'Riudellots de la Selva','Spain','ES','Riudellots de la Selva (Spain)',1,1,0),(33797,0,133938,'Rivabella','Italy','IT','Rivabella (Italy)',1,1,0),(33798,23061,133939,'Rjukan','Norway','NO','Rjukan (Norway)',1,1,0),(33799,0,133940,'Roanoke','United States of America','US','Roanoke (United States of America)',1,1,0),(33800,0,133941,'Robel','Germany','DE','Robel (Germany)',1,1,0),(33801,23079,133942,'Robinsonville','United States of America','US','Robinsonville (United States of America)',1,1,0),(33802,23082,133943,'Robledillo de Gata','Spain','ES','Robledillo de Gata (Spain)',1,1,0),(33803,23083,133944,'Robledo de Chavela','Spain','ES','Robledo de Chavela (Spain)',1,1,0),(33804,32732,133945,'Rocca di Mezzo','Italy','IT','Rocca di Mezzo (Italy)',1,1,0),(33805,0,133946,'Praia do Rosa','Brazil','BR','Praia do Rosa (Brazil)',1,1,0),(33806,0,133947,'Praia Grande','Portugal','PT','Praia Grande (Portugal)',1,1,0),(33807,0,133948,'Praia Grande','Brazil','BR','Praia Grande (Brazil)',1,1,0),(33808,22030,133949,'Praiano','Italy','IT','Praiano (Italy)',1,1,0),(33809,0,133950,'Pratolino','Italy','IT','Pratolino (Italy)',1,1,0),(33810,0,133951,'Prats i Sampsor','Spain','ES','Prats i Sampsor (Spain)',1,1,0),(33811,22048,133952,'Pravets','Bulgaria','BG','Pravets (Bulgaria)',1,1,0),(33812,22054,133953,'Prazeres','Portugal','PT','Prazeres (Portugal)',1,1,0),(33813,0,133954,'Precojo','France','FR','Precojo (France)',1,1,0),(33814,22059,133955,'Preddvor','Slovenia','SI','Preddvor (Slovenia)',1,1,0),(33815,22062,133956,'Preetz','Germany','DE','Preetz (Germany)',1,1,0),(33816,0,133957,'Preixan','France','FR','Preixan (France)',1,1,0),(33817,0,133958,'Preles','Switzerland','CH','Preles (Switzerland)',1,1,0),(33818,0,133959,'Presidente Epitacio','Brazil','BR','Presidente Epitacio (Brazil)',1,1,0),(33819,0,133960,'Pressigny-les-Pins','France','FR','Pressigny-les-Pins (France)',1,1,0),(33820,0,133961,'Preston','United Kingdom','UK','Preston (United Kingdom)',1,1,0),(33821,0,133962,'Prievidza','Slovakia','SK','Prievidza (Slovakia)',1,1,0),(33822,0,133963,'Princess Royal Island','Canada','CA','Princess Royal Island (Canada)',1,1,0),(33823,0,133964,'Priory','Jamaica','JM','Priory (Jamaica)',1,1,0),(33824,0,133965,'Privas','France','FR','Privas (France)',1,1,0),(33825,0,133966,'Probstzella','Germany','DE','Probstzella (Germany)',1,1,0),(33826,22135,133967,'Proctorsville','United States of America','US','Proctorsville (United States of America)',1,1,0),(33827,22137,133968,'Proenca-a-Nova','Portugal','PT','Proenca-a-Nova (Portugal)',1,1,0),(33828,22138,133969,'Profitis Ilias','Greece','GR','Profitis Ilias (Greece)',1,1,0),(33829,0,133970,'Prosilio','Greece','GR','Prosilio (Greece)',1,1,0),(33830,0,133971,'Prospect Vale','Australia','AU','Prospect Vale (Australia)',1,1,0),(33831,0,133972,'Provatas Beach','Greece','GR','Provatas Beach (Greece)',1,1,0),(33832,0,133973,'Pruchten','Germany','DE','Pruchten (Germany)',1,1,0),(33833,22161,133974,'Pruhonice','Czech Republic','CZ','Pruhonice (Czech Republic)',1,1,0),(33834,22162,133975,'Prullans','Spain','ES','Prullans (Spain)',1,1,0),(33835,22163,133976,'Pruszkow','Poland','PL','Pruszkow (Poland)',1,1,0),(33836,0,133977,'Pszczyna','Poland','PL','Pszczyna (Poland)',1,1,0),(33837,22180,133978,'Puchenstuben','Austria','AT','Puchenstuben (Austria)',1,1,0),(33838,0,133979,'Puckane','Ireland','IE','Puckane (Ireland)',1,1,0),(33839,0,133980,'Puebla de Sanabria','Spain','ES','Puebla de Sanabria (Spain)',1,1,0),(33840,0,133981,'Pueblo Bavaro','Dominican Republic','DO','Pueblo Bavaro (Dominican Republic)',1,1,0),(33841,32636,133982,'Puerto Calero','Spain','ES','Puerto Calero (Spain)',1,1,0),(33842,0,133983,'Puerto Cayo','Ecuador','EC','Puerto Cayo (Ecuador)',1,1,0),(33843,0,133984,'Puerto de las Nieves','Spain','ES','Puerto de las Nieves (Spain)',1,1,0),(33844,32641,133985,'Puerto de Sagunto','Spain','ES','Puerto de Sagunto (Spain)',1,1,0),(33845,32645,133986,'Puerto del Carmen','Spain','ES','Puerto del Carmen (Spain)',1,1,0),(33846,22203,133987,'Puerto Galera','Philippines','PH','Puerto Galera (Philippines)',1,1,0),(33847,0,133988,'Puerto Lopez','Ecuador','EC','Puerto Lopez (Ecuador)',1,1,0),(33848,0,133989,'Puerto Octay','Chile','CL','Puerto Octay (Chile)',1,1,0),(33849,0,133990,'Puertomingalvo','Spain','ES','Puertomingalvo (Spain)',1,1,0),(33850,0,133991,'Puk Tian','Thailand','TH','Puk Tian (Thailand)',1,1,0),(33851,0,133992,'Pulau Cubadak','Indonesia','ID','Pulau Cubadak (Indonesia)',1,1,0),(33852,0,133993,'Pulau Mantanani Besar','Malaysia','MY','Pulau Mantanani Besar (Malaysia)',1,1,0),(33853,22247,133994,'Punta Gorda','United States of America','US','Punta Gorda (United States of America)',1,1,0),(33854,0,133995,'Punta Islita','Costa Rica','CR','Punta Islita (Costa Rica)',1,1,0),(33855,0,133996,'Punta Mita','Mexico','MX','Punta Mita (Mexico)',1,1,0),(33856,22250,133997,'Puntallana','Spain','ES','Puntallana (Spain)',1,1,0),(33857,22252,133998,'Punto Fijo','Venezuela','VE','Punto Fijo (Venezuela)',1,1,0),(33858,0,133999,'Pur','Italy','IT','Pur (Italy)',1,1,0),(33859,0,134000,'Puschkin','Russia','RU','Puschkin (Russia)',1,1,0),(33860,22277,134002,'Puteaux','France','FR','Puteaux (France)',1,1,0),(33861,22280,134003,'Putignano','Italy','IT','Putignano (Italy)',1,1,0),(33862,0,134004,'Puy-Guillaume','France','FR','Puy-Guillaume (France)',1,1,0),(33863,0,134005,'Puylaurens','France','FR','Puylaurens (France)',1,1,0),(33864,0,134006,'Pwllheli','United Kingdom','UK','Pwllheli (United Kingdom)',1,1,0),(33865,22308,134007,'Pyeongchang','South Korea','KR','Pyeongchang (South Korea)',1,1,0),(33866,0,134008,'Pyla','Cyprus','CY','Pyla (Cyprus)',1,1,0),(33867,22323,134009,'Qidong','China','CN','Qidong (China)',1,1,0),(33868,22335,134010,'Qinhuangdao','China','CN','Qinhuangdao (China)',1,1,0),(33869,0,134011,'Qrendi','Malta','MT','Qrendi (Malta)',1,1,0),(33870,22343,134012,'Quakertown','United States of America','US','Quakertown (United States of America)',1,1,0),(33871,22344,134013,'Qualiano','Italy','IT','Qualiano (Italy)',1,1,0),(33872,22350,134014,'Quanzhou','China','CN','Quanzhou (China)',1,1,0),(33873,22352,134015,'Quarrata','Italy','IT','Quarrata (Italy)',1,1,0),(33874,22358,134016,'Quartzsite','United States of America','US','Quartzsite (United States of America)',1,1,0),(33875,22371,134017,'Queenscliff','Australia','AU','Queenscliff (Australia)',1,1,0),(33876,0,134018,'Queluz','Portugal','PT','Queluz (Portugal)',1,1,0),(33877,22385,134019,'Queretaro','Mexico','MX','Queretaro (Mexico)',1,1,0),(33878,0,134020,'Queyrac','France','FR','Queyrac (France)',1,1,0),(33879,0,134021,'Quiesa','Italy','IT','Quiesa (Italy)',1,1,0),(33880,0,134022,'Quilalea Island','Mozambique','MZ','Quilalea Island (Mozambique)',1,1,0),(33881,22408,134023,'Quimperle','France','FR','Quimperle (France)',1,1,0),(33882,22412,134024,'Quincy','United States of America','US','Quincy (United States of America)',1,1,0),(33883,0,134025,'Quincy','United States of America','US','Quincy (United States of America)',1,1,0),(33884,0,134026,'Quincy-sous-Senart','France','FR','Quincy-sous-Senart (France)',1,1,0),(33885,0,134027,'Quinta do Conde','Portugal','PT','Quinta do Conde (Portugal)',1,1,0),(33886,0,134028,'Quixada','Brazil','BR','Quixada (Brazil)',1,1,0),(33887,22434,134029,'Quseir','Egypt','EG','Quseir (Egypt)',1,1,0),(33888,0,134030,'Rabbi','Italy','IT','Rabbi (Italy)',1,1,0),(33889,22447,134031,'Rabenstein','Austria','AT','Rabenstein (Austria)',1,1,0),(33890,22456,134032,'Racine','United States of America','US','Racine (United States of America)',1,1,0),(33891,22466,134033,'Radenci','Slovenia','SI','Radenci (Slovenia)',1,1,0),(33892,22467,134034,'Radenthein','Austria','AT','Radenthein (Austria)',1,1,0),(33893,0,134035,'Radici','Croatia','HR','Radici (Croatia)',1,1,0),(33894,22481,134036,'Raeford','United States of America','US','Raeford (United States of America)',1,1,0),(33895,0,134037,'Rafford','United Kingdom','UK','Rafford (United Kingdom)',1,1,0),(33896,22498,134038,'Rahway','United States of America','US','Rahway (United States of America)',1,1,0),(33897,0,134039,'Raivavae','French Polynesia','PF','Raivavae (French Polynesia)',1,1,0),(33898,0,134042,'Rakaia','New Zealand','NZ','Rakaia (New Zealand)',1,1,0),(33899,0,134043,'Rakovnik','Czech Republic','CZ','Rakovnik (Czech Republic)',1,1,0),(33900,22523,134044,'Raleigh','United States of America','US','Raleigh (United States of America)',1,1,0),(33901,0,134045,'Ramallah','Israel','IL','Ramallah (Israel)',1,1,0),(33902,0,134046,'Ramberg','Germany','DE','Ramberg (Germany)',1,1,0),(33903,0,134047,'Ramon','Russia','RU','Ramon (Russia)',1,1,0),(33904,22547,134048,'Ramsau','Austria','AT','Ramsau (Austria)',1,1,0),(33905,0,134049,'Ramstein-Miesenbach','Germany','DE','Ramstein-Miesenbach (Germany)',1,1,0),(33906,22574,134050,'Randwick','Australia','AU','Randwick (Australia)',1,1,0),(33907,0,134051,'Ranelagh','Australia','AU','Ranelagh (Australia)',1,1,0),(33908,22580,134052,'Rangiroa','French Polynesia','PF','Rangiroa (French Polynesia)',1,1,0),(33909,0,134053,'Ranspach','France','FR','Ranspach (France)',1,1,0),(33910,0,134054,'Rappottenstein','Austria','AT','Rappottenstein (Austria)',1,1,0),(33911,22604,134055,'Rarotonga','Cook Islands','CK','Rarotonga (Cook Islands)',1,1,0),(33912,0,134056,'Rohr im Gebirge','Austria','AT','Rohr im Gebirge (Austria)',1,1,0),(33913,0,134057,'Rohrmoos','Austria','AT','Rohrmoos (Austria)',1,1,0),(33914,23177,134059,'Roissy-en-France','France','FR','Roissy-en-France (France)',1,1,0),(33915,23179,134060,'Rojtokmuzsaj','Hungary','HU','Rojtokmuzsaj (Hungary)',1,1,0),(33916,0,134061,'Romano d\'Ezzelino','Italy','IT','Romano d\'Ezzelino (Italy)',1,1,0),(33917,0,134062,'Rombach','Switzerland','CH','Rombach (Switzerland)',1,1,0),(33918,23206,134063,'Romilly-sur-Seine','France','FR','Romilly-sur-Seine (France)',1,1,0),(33919,23208,134064,'Romorantin-Lanthenay','France','FR','Romorantin-Lanthenay (France)',1,1,0),(33920,23211,134065,'Romulus','United States of America','US','Romulus (United States of America)',1,1,0),(33921,23214,134066,'Roncade','Italy','IT','Roncade (Italy)',1,1,0),(33922,0,134067,'Roquebrune','France','FR','Roquebrune (France)',1,1,0),(33923,23248,134068,'Rorschach','Switzerland','CH','Rorschach (Switzerland)',1,1,0),(33924,0,134069,'Rorvig','Denmark','DK','Rorvig (Denmark)',1,1,0),(33925,0,134070,'Rosbach v. d. Hohe','Germany','DE','Rosbach v. d. Hohe (Germany)',1,1,0),(33926,0,134071,'Rosdorf','Germany','DE','Rosdorf (Germany)',1,1,0),(33927,23268,134072,'Rosebud','Australia','AU','Rosebud (Australia)',1,1,0),(33928,0,134073,'Rosennano','Italy','IT','Rosennano (Italy)',1,1,0),(33929,23286,134074,'Roseville','United States of America','US','Roseville (United States of America)',1,1,0),(33930,23298,134075,'Rosmalen','Netherlands','NL','Rosmalen (Netherlands)',1,1,0),(33931,0,134076,'Rosoy','France','FR','Rosoy (France)',1,1,0),(33932,23316,134077,'Rossland','Canada','CA','Rossland (Canada)',1,1,0),(33933,23320,134078,'Rossnowlagh','Ireland','IE','Rossnowlagh (Ireland)',1,1,0),(33934,23335,134079,'Rothbury','Australia','AU','Rothbury (Australia)',1,1,0),(33935,0,134080,'Rothenburg upon Tauber','Germany','DE','Rothenburg upon Tauber (Germany)',1,1,0),(33936,23346,134081,'Rothrist','Switzerland','CH','Rothrist (Switzerland)',1,1,0),(33937,23347,134082,'Rothschild','United States of America','US','Rothschild (United States of America)',1,1,0),(33938,23350,134083,'Rotorua','New Zealand','NZ','Rotorua (New Zealand)',1,1,0),(33939,23363,134084,'Rouffiac-Tolosan','France','FR','Rouffiac-Tolosan (France)',1,1,0),(33940,0,134085,'Rougemont','France','FR','Rougemont (France)',1,1,0),(33941,23373,134086,'Rousse','Bulgaria','BG','Rousse (Bulgaria)',1,1,0),(33942,23379,134087,'Rovaniemi','Finland','FI','Rovaniemi (Finland)',1,1,0),(33943,23384,134088,'Rovigo','Italy','IT','Rovigo (Italy)',1,1,0),(33944,0,134089,'Royal Oak','Ireland','IE','Royal Oak (Ireland)',1,1,0),(33945,23406,134090,'Royersford','United States of America','US','Royersford (United States of America)',1,1,0),(33946,0,134091,'Rozdrojovice','Czech Republic','CZ','Rozdrojovice (Czech Republic)',1,1,0),(33947,0,134092,'Roztoky u Jilemnice','Czech Republic','CZ','Roztoky u Jilemnice (Czech Republic)',1,1,0),(33948,0,134093,'Rubeland','Germany','DE','Rubeland (Germany)',1,1,0),(33949,0,134094,'Rubene','Latvia','LV','Rubene (Latvia)',1,1,0),(33950,0,134095,'Rubielos de Mora','Spain','ES','Rubielos de Mora (Spain)',1,1,0),(33951,0,134096,'Rudersberg','Germany','DE','Rudersberg (Germany)',1,1,0),(33952,0,134097,'Rudolstadt','Germany','DE','Rudolstadt (Germany)',1,1,0),(33953,0,134098,'Rue','France','FR','Rue (France)',1,1,0),(33954,23435,134099,'Rueil-Malmaison','France','FR','Rueil-Malmaison (France)',1,1,0),(33955,23458,134100,'Ruka','Finland','FI','Ruka (Finland)',1,1,0),(33956,0,134101,'Ruma','Serbia','RS','Ruma (Serbia)',1,1,0),(33957,0,134102,'Ruokolahti','Finland','FI','Ruokolahti (Finland)',1,1,0),(33958,0,134103,'Rusa','Russia','RU','Rusa (Russia)',1,1,0),(33959,23484,134104,'Rushville','United States of America','US','Rushville (United States of America)',1,1,0),(33960,23492,134105,'Russellville','United States of America','US','Russellville (United States of America)',1,1,0),(33961,0,134106,'Russellville','United States of America','US','Russellville (United States of America)',1,1,0),(33962,23499,134107,'Rust','Austria','AT','Rust (Austria)',1,1,0),(33963,23513,134108,'Rutherglen','Australia','AU','Rutherglen (Australia)',1,1,0),(33964,0,134109,'Rutzenmoos','Austria','AT','Rutzenmoos (Austria)',1,1,0),(33965,23548,134110,'Saarbrucken','Germany','DE','Saarbrucken (Germany)',1,1,0),(33966,0,134111,'Saarijarvi','Finland','FI','Saarijarvi (Finland)',1,1,0),(33967,23557,134112,'Saba','Indonesia','ID','Saba (Indonesia)',1,1,0),(33968,23559,134113,'Sabadell','Spain','ES','Sabadell (Spain)',1,1,0),(33969,0,134114,'Sabunike','Croatia','HR','Sabunike (Croatia)',1,1,0),(33970,23585,134115,'Sacramento','United States of America','US','Sacramento (United States of America)',1,1,0),(33971,23588,134116,'Sada','Spain','ES','Sada (Spain)',1,1,0),(33972,0,134117,'Sadali','Italy','IT','Sadali (Italy)',1,1,0),(33973,23596,134118,'Safed','Israel','IL','Safed (Israel)',1,1,0),(33974,23599,134119,'Safford','United States of America','US','Safford (United States of America)',1,1,0),(33975,23603,134120,'Safranbolu','Turkey','TR','Safranbolu (Turkey)',1,1,0),(33976,32774,134121,'Sag Harbor','United States of America','US','Sag Harbor (United States of America)',1,1,0),(33977,0,134122,'Sahaung','Indonesia','ID','Sahaung (Indonesia)',1,1,0),(33978,0,134123,'Sahun Benasque','Spain','ES','Sahun Benasque (Spain)',1,1,0),(33979,0,134124,'Sai Kaew','Thailand','TH','Sai Kaew (Thailand)',1,1,0),(33980,0,134125,'Saig uber Titisee','Germany','DE','Saig uber Titisee (Germany)',1,1,0),(33981,0,134126,'Saint Albert','Canada','CA','Saint Albert (Canada)',1,1,0),(33982,32803,134127,'Saint Florent','France','FR','Saint Florent (France)',1,1,0),(33983,0,134128,'Saint Gilles','Reunion','RE','Saint Gilles (Reunion)',1,1,0),(33984,0,134129,'Saint Hubert','Belgium','BE','Saint Hubert (Belgium)',1,1,0),(33985,0,134130,'Saint Ives','United Kingdom','UK','Saint Ives (United Kingdom)',1,1,0),(33986,0,134131,'Saint Laurent-Du-Var','France','FR','Saint Laurent-Du-Var (France)',1,1,0),(33987,0,134132,'Saint Marys','United States of America','US','Saint Marys (United States of America)',1,1,0),(33988,0,134133,'Saint Pair sur Mer','France','FR','Saint Pair sur Mer (France)',1,1,0),(33989,0,134134,'Saint Peter','United States of America','US','Saint Peter (United States of America)',1,1,0),(33990,0,134135,'Saint Petersburg','Russia','RU','Saint Petersburg (Russia)',1,1,0),(33991,0,134136,'Saint-Alban-Auriolles','France','FR','Saint-Alban-Auriolles (France)',1,1,0),(33992,0,134137,'Saint-Amand-en-Puisaye','France','FR','Saint-Amand-en-Puisaye (France)',1,1,0),(33993,0,134138,'Saint-Benoit-sur-Loire','France','FR','Saint-Benoit-sur-Loire (France)',1,1,0),(33994,23674,134139,'Saint-Blaise','France','FR','Saint-Blaise (France)',1,1,0),(33995,23686,134140,'Saint-Brieuc','France','FR','Saint-Brieuc (France)',1,1,0),(33996,0,134141,'Saint-Cere','France','FR','Saint-Cere (France)',1,1,0),(33997,0,134142,'Saint-Cirq-Lapopie','France','FR','Saint-Cirq-Lapopie (France)',1,1,0),(33998,23695,134143,'Saint-Clement-de-Riviere','France','FR','Saint-Clement-de-Riviere (France)',1,1,0),(33999,0,134144,'Saint-Cyr-l\'Ecole','France','FR','Saint-Cyr-l\'Ecole (France)',1,1,0),(34000,0,134145,'Saint-Denis','France','FR','Saint-Denis (France)',1,1,0),(34001,23710,134146,'Saint-Doulchard','France','FR','Saint-Doulchard (France)',1,1,0),(34002,0,134147,'Sainte Marie de Re','France','FR','Sainte Marie de Re (France)',1,1,0),(34003,23721,134148,'Sainte-Enimie','France','FR','Sainte-Enimie (France)',1,1,0),(34004,0,134149,'Saint-Elie','Canada','CA','Saint-Elie (Canada)',1,1,0),(34005,0,134150,'Saint-Eloy-les-Mines','France','FR','Saint-Eloy-les-Mines (France)',1,1,0),(34006,0,134151,'Sainte-Marie-du-Mont','France','FR','Sainte-Marie-du-Mont (France)',1,1,0),(34007,0,134152,'Sainte-Sigolene','France','FR','Sainte-Sigolene (France)',1,1,0),(34008,23753,134153,'Saint-Etienne-de-Maurs','France','FR','Saint-Etienne-de-Maurs (France)',1,1,0),(34009,23755,134154,'Saint-Etienne-du-Rouvray','France','FR','Saint-Etienne-du-Rouvray (France)',1,1,0),(34010,0,134155,'Saint-Gaudens','France','FR','Saint-Gaudens (France)',1,1,0),(34011,0,134156,'Saint-Genies-de-Malgoires','France','FR','Saint-Genies-de-Malgoires (France)',1,1,0),(34012,0,134157,'Saint-George','Switzerland','CH','Saint-George (Switzerland)',1,1,0),(34013,0,134158,'Saint-Georges-de-Malbaie','Canada','CA','Saint-Georges-de-Malbaie (Canada)',1,1,0),(34014,23774,134159,'Saint-Gervais-la-Foret','France','FR','Saint-Gervais-la-Foret (France)',1,1,0),(34015,0,134160,'Saint-Girons','France','FR','Saint-Girons (France)',1,1,0),(34016,32644,134161,'Puerto de Santiago','Spain','ES','Puerto de Santiago (Spain)',1,1,0),(34017,0,134162,'Puerto de Soller','Spain','ES','Puerto de Soller (Spain)',1,1,0),(34018,32647,134163,'Puerto Lumbreras','Spain','ES','Puerto Lumbreras (Spain)',1,1,0),(34019,0,134164,'Puerto Penasco','Mexico','MX','Puerto Penasco (Mexico)',1,1,0),(34020,0,134165,'Puerto San Carlos','Mexico','MX','Puerto San Carlos (Mexico)',1,1,0),(34021,0,134166,'Puget-Theniers','France','FR','Puget-Theniers (France)',1,1,0),(34022,0,134167,'Puig d\'en Valls','Spain','ES','Puig d\'en Valls (Spain)',1,1,0),(34023,22214,134168,'Puigpunyent','Spain','ES','Puigpunyent (Spain)',1,1,0),(34024,22216,134169,'Pujols','France','FR','Pujols (France)',1,1,0),(34025,0,134171,'Pultusk','Poland','PL','Pultusk (Poland)',1,1,0),(34026,0,134172,'Punta Maroma','Mexico','MX','Punta Maroma (Mexico)',1,1,0),(34027,0,134173,'Punta Mujeres','Spain','ES','Punta Mujeres (Spain)',1,1,0),(34028,0,134174,'Puntamika','Croatia','HR','Puntamika (Croatia)',1,1,0),(34029,22268,134175,'Purwakarta','Indonesia','ID','Purwakarta (Indonesia)',1,1,0),(34030,0,134176,'Putgarten','Germany','DE','Putgarten (Germany)',1,1,0),(34031,0,134177,'Putlitz','Germany','DE','Putlitz (Germany)',1,1,0),(34032,0,134179,'Puyehue Nationalpark','Chile','CL','Puyehue Nationalpark (Chile)',1,1,0),(34033,0,134180,'Pyrgos','Greece','GR','Pyrgos (Greece)',1,1,0),(34034,22366,134181,'Quechee','United States of America','US','Quechee (United States of America)',1,1,0),(34035,0,134182,'Queensferry','United Kingdom','UK','Queensferry (United Kingdom)',1,1,0),(34036,0,134183,'Queenstown','Australia','AU','Queenstown (Australia)',1,1,0),(34037,0,134184,'Quentar','Spain','ES','Quentar (Spain)',1,1,0),(34038,22382,134185,'Quepos','Costa Rica','CR','Quepos (Costa Rica)',1,1,0),(34039,0,134186,'Queven','France','FR','Queven (France)',1,1,0),(34040,22414,134187,'Quineville','France','FR','Quineville (France)',1,1,0),(34041,0,134188,'Quintanilla San Garcia','Spain','ES','Quintanilla San Garcia (Spain)',1,1,0),(34042,22423,134189,'Quintero','Chile','CL','Quintero (Chile)',1,1,0),(34043,0,134190,'Quintin','France','FR','Quintin (France)',1,1,0),(34044,0,134191,'Quitzdorf am See','Germany','DE','Quitzdorf am See (Germany)',1,1,0),(34045,22437,134192,'Raabs an der Thaya','Austria','AT','Raabs an der Thaya (Austria)',1,1,0),(34046,0,134193,'Rab City','Croatia','HR','Rab City (Croatia)',1,1,0),(34047,0,134194,'Raben','Germany','DE','Raben (Germany)',1,1,0),(34048,0,134195,'Rabenau','Germany','DE','Rabenau (Germany)',1,1,0),(34049,0,134196,'Rabland','Italy','IT','Rabland (Italy)',1,1,0),(34050,22451,134197,'Racconigi','Italy','IT','Racconigi (Italy)',1,1,0),(34051,22458,134198,'Rackeve','Hungary','HU','Rackeve (Hungary)',1,1,0),(34052,0,134199,'Rackwitz','Germany','DE','Rackwitz (Germany)',1,1,0),(34053,22460,134200,'Radcliff','United States of America','US','Radcliff (United States of America)',1,1,0),(34054,0,134201,'Radcliffe','United Kingdom','UK','Radcliffe (United Kingdom)',1,1,0),(34055,22464,134202,'Radebeul','Germany','DE','Radebeul (Germany)',1,1,0),(34056,22471,134203,'Radium Hot Springs','Canada','CA','Radium Hot Springs (Canada)',1,1,0),(34057,22476,134204,'Radstadt','Austria','AT','Radstadt (Austria)',1,1,0),(34058,0,134205,'Radstock','United Kingdom','UK','Radstock (United Kingdom)',1,1,0),(34059,22483,134206,'Raetihi','New Zealand','NZ','Raetihi (New Zealand)',1,1,0),(34060,22484,134207,'Rafales','Spain','ES','Rafales (Spain)',1,1,0),(34061,0,134208,'Raglan','United Kingdom','UK','Raglan (United Kingdom)',1,1,0),(34062,0,134209,'Raglan','New Zealand','NZ','Raglan (New Zealand)',1,1,0),(34063,22503,134210,'Rainbow Beach','Australia','AU','Rainbow Beach (Australia)',1,1,0),(34064,22519,134212,'Rakiraki','Fiji Islands','FJ','Rakiraki (Fiji Islands)',1,1,0),(34065,0,134215,'Ramos Arizpe','Mexico','MX','Ramos Arizpe (Mexico)',1,1,0),(34066,22552,134216,'Ramsey','United States of America','US','Ramsey (United States of America)',1,1,0),(34067,0,134217,'Rancho Cucamonga','United States of America','US','Rancho Cucamonga (United States of America)',1,1,0),(34068,0,134218,'Ranchot','France','FR','Ranchot (France)',1,1,0),(34069,0,134219,'Rancourt','France','FR','Rancourt (France)',1,1,0),(34070,22566,134220,'Randaberg','Norway','NO','Randaberg (Norway)',1,1,0),(34071,22576,134221,'Rangali','Maldives','MV','Rangali (Maldives)',1,1,0),(34072,30189,134222,'Yangon','Myanmar','MM','Yangon (Myanmar)',1,1,0),(34073,0,134223,'Ranka','Latvia','LV','Ranka (Latvia)',1,1,0),(34074,0,134225,'Rapperswil-Jona','Switzerland','CH','Rapperswil-Jona (Switzerland)',1,1,0),(34075,0,134226,'Rauschenbach','Germany','DE','Rauschenbach (Germany)',1,1,0),(34076,22646,134227,'Raymond','United States of America','US','Raymond (United States of America)',1,1,0),(34077,0,134228,'Realejos Alto','Spain','ES','Realejos Alto (Spain)',1,1,0),(34078,0,134229,'Reconvilier','Switzerland','CH','Reconvilier (Switzerland)',1,1,0),(34079,32667,134230,'Red Bank','United States of America','US','Red Bank (United States of America)',1,1,0),(34080,22699,134231,'Redington Beach','United States of America','US','Redington Beach (United States of America)',1,1,0),(34081,22701,134232,'Redlands','United States of America','US','Redlands (United States of America)',1,1,0),(34082,0,134233,'Reduit Beach','Saint Lucia','LC','Reduit Beach (Saint Lucia)',1,1,0),(34083,22712,134234,'Reed','Norway','NO','Reed (Norway)',1,1,0),(34084,22713,134235,'Reedley','United States of America','US','Reedley (United States of America)',1,1,0),(34085,22727,134236,'Reggello','Italy','IT','Reggello (Italy)',1,1,0),(34086,22728,134237,'Reggiolo','Italy','IT','Reggiolo (Italy)',1,1,0),(34087,22731,134238,'Regina','Canada','CA','Regina (Canada)',1,1,0),(34088,0,134239,'Regules de Soba','Spain','ES','Regules de Soba (Spain)',1,1,0),(34089,0,134240,'Rehoboth','Namibia','NA','Rehoboth (Namibia)',1,1,0),(34090,0,134241,'Reichenbach','Poland','PL','Reichenbach (Poland)',1,1,0),(34091,0,134242,'Reifnitz','Austria','AT','Reifnitz (Austria)',1,1,0),(34092,0,134243,'Reigate','United Kingdom','UK','Reigate (United Kingdom)',1,1,0),(34093,0,134244,'Reinach BL','Switzerland','CH','Reinach BL (Switzerland)',1,1,0),(34094,22751,134245,'Reinholds','United States of America','US','Reinholds (United States of America)',1,1,0),(34095,0,134246,'Reith im Alpbachtal','Austria','AT','Reith im Alpbachtal (Austria)',1,1,0),(34096,22760,134247,'Remagen','Germany','DE','Remagen (Germany)',1,1,0),(34097,0,134248,'Remilly-Aillicourt','France','FR','Remilly-Aillicourt (France)',1,1,0),(34098,0,134249,'Remuzat','France','FR','Remuzat (France)',1,1,0),(34099,22774,134250,'Renesse','Netherlands','NL','Renesse (Netherlands)',1,1,0),(34100,22781,134251,'Renmark','Australia','AU','Renmark (Australia)',1,1,0),(34101,22787,134252,'Rensselaer','United States of America','US','Rensselaer (United States of America)',1,1,0),(34102,22793,134253,'Replonges','France','FR','Replonges (France)',1,1,0),(34103,22797,134254,'Requena','Spain','ES','Requena (Spain)',1,1,0),(34104,0,134255,'Restigne','France','FR','Restigne (France)',1,1,0),(34105,0,134256,'Reynoldston','United Kingdom','UK','Reynoldston (United Kingdom)',1,1,0),(34106,22845,134257,'Rezzato','Italy','IT','Rezzato (Italy)',1,1,0),(34107,0,134258,'Rhauderfehn','Germany','DE','Rhauderfehn (Germany)',1,1,0),(34108,0,134259,'Rheenendal','South Africa','ZA','Rheenendal (South Africa)',1,1,0),(34109,0,134260,'Rheinberg','Germany','DE','Rheinberg (Germany)',1,1,0),(34110,22861,134261,'Rhinelander','United States of America','US','Rhinelander (United States of America)',1,1,0),(34111,22862,134262,'Rho','Italy','IT','Rho (Italy)',1,1,0),(34112,0,134263,'Ribeira de Piquin','Spain','ES','Ribeira de Piquin (Spain)',1,1,0),(34113,0,134264,'Ribeira Grande','Portugal','PT','Ribeira Grande (Portugal)',1,1,0),(34114,0,134265,'Ribeira Quente','Portugal','PT','Ribeira Quente (Portugal)',1,1,0),(34115,22896,134266,'Riberac','France','FR','Riberac (France)',1,1,0),(34116,0,134267,'Richfield','United States of America','US','Richfield (United States of America)',1,1,0),(34117,0,134268,'Richfield','United States of America','US','Richfield (United States of America)',1,1,0),(34118,32544,134269,'Port Hardy','Canada','CA','Port Hardy (Canada)',1,1,0),(34119,32546,134270,'Port Hawkesbury','Canada','CA','Port Hawkesbury (Canada)',1,1,0),(34120,0,134271,'Port Hawksbury','Canada','CA','Port Hawksbury (Canada)',1,1,0),(34121,32558,134272,'Port Jervis','United States of America','US','Port Jervis (United States of America)',1,1,0),(34122,0,134273,'Port Sorell','Australia','AU','Port Sorell (Australia)',1,1,0),(34123,0,134274,'Port St. Jacques','France','FR','Port St. Jacques (France)',1,1,0),(34124,32587,134275,'Port Townsend','United States of America','US','Port Townsend (United States of America)',1,1,0),(34125,0,134276,'Portage','United States of America','US','Portage (United States of America)',1,1,0),(34126,21860,134277,'Portbail','France','FR','Portbail (France)',1,1,0),(34127,0,134278,'Portinscale','United Kingdom','UK','Portinscale (United Kingdom)',1,1,0),(34128,32609,134279,'Porto da Cruz','Portugal','PT','Porto da Cruz (Portugal)',1,1,0),(34129,32614,134280,'Porto Massimo','Italy','IT','Porto Massimo (Italy)',1,1,0),(34130,0,134281,'Porto Pozzo','Italy','IT','Porto Pozzo (Italy)',1,1,0),(34131,0,134282,'Porto Real','Brazil','BR','Porto Real (Brazil)',1,1,0),(34132,32623,134283,'Porto San Giorgio','Italy','IT','Porto San Giorgio (Italy)',1,1,0),(34133,21898,134284,'Portobelo','Panama','PA','Portobelo (Panama)',1,1,0),(34134,21902,134285,'Portogruaro','Italy','IT','Portogruaro (Italy)',1,1,0),(34135,0,134286,'Porto-Ota','France','FR','Porto-Ota (France)',1,1,0),(34136,21912,134287,'Portovenere','Italy','IT','Portovenere (Italy)',1,1,0),(34137,0,134288,'Portrush','United Kingdom','UK','Portrush (United Kingdom)',1,1,0),(34138,0,134289,'Portsmouth','United States of America','US','Portsmouth (United States of America)',1,1,0),(34139,0,134290,'Pos Chiquito','Aruba','AW','Pos Chiquito (Aruba)',1,1,0),(34140,0,134291,'Posada de Valdeon','Spain','ES','Posada de Valdeon (Spain)',1,1,0),(34141,0,134292,'Possendorf','Germany','DE','Possendorf (Germany)',1,1,0),(34142,0,134293,'Possidi','Greece','GR','Possidi (Greece)',1,1,0),(34143,0,134294,'Postmasburg','South Africa','ZA','Postmasburg (South Africa)',1,1,0),(34144,21954,134295,'Potenza','Italy','IT','Potenza (Italy)',1,1,0),(34145,21959,134296,'Potomac','United States of America','US','Potomac (United States of America)',1,1,0),(34146,21973,134297,'Poughkeepsie','United States of America','US','Poughkeepsie (United States of America)',1,1,0),(34147,21974,134298,'Pougues-les-Eaux','France','FR','Pougues-les-Eaux (France)',1,1,0),(34148,21989,134299,'Pove del Grappa','Italy','IT','Pove del Grappa (Italy)',1,1,0),(34149,0,134300,'Povile','Croatia','HR','Povile (Croatia)',1,1,0),(34150,0,134301,'Povljana','Croatia','HR','Povljana (Croatia)',1,1,0),(34151,0,134302,'Povoa de Varzim','Portugal','PT','Povoa de Varzim (Portugal)',1,1,0),(34152,21995,134303,'Poway','United States of America','US','Poway (United States of America)',1,1,0),(34153,0,134304,'Powel River','Canada','CA','Powel River (Canada)',1,1,0),(34154,21999,134305,'Powell River','Canada','CA','Powell River (Canada)',1,1,0),(34155,22001,134306,'Pownal','United States of America','US','Pownal (United States of America)',1,1,0),(34156,22005,134307,'Pozo Alcon','Spain','ES','Pozo Alcon (Spain)',1,1,0),(34157,0,134308,'Pozuelo de Alarcon','Spain','ES','Pozuelo de Alarcon (Spain)',1,1,0),(34158,22010,134309,'Pozzuoli','Italy','IT','Pozzuoli (Italy)',1,1,0),(34159,0,134310,'Prags','Italy','IT','Prags (Italy)',1,1,0),(34160,0,134311,'Praia da Manta Rota','Portugal','PT','Praia da Manta Rota (Portugal)',1,1,0),(34161,0,134312,'Praia da Marinhas','Portugal','PT','Praia da Marinhas (Portugal)',1,1,0),(34162,0,134313,'Pramanta','Greece','GR','Pramanta (Greece)',1,1,0),(34163,0,134314,'Pramousquier','France','FR','Pramousquier (France)',1,1,0),(34164,0,134315,'Praslin Island','Seychelles','SC','Praslin Island (Seychelles)',1,1,0),(34165,22040,134316,'Pratdip','Spain','ES','Pratdip (Spain)',1,1,0),(34166,22043,134317,'Pratt','United States of America','US','Pratt (United States of America)',1,1,0),(34167,22045,134318,'Prattville','United States of America','US','Prattville (United States of America)',1,1,0),(34168,22049,134319,'Pravia','Spain','ES','Pravia (Spain)',1,1,0),(34169,0,134320,'Prebl','Austria','AT','Prebl (Austria)',1,1,0),(34170,0,134321,'Prentiss','United States of America','US','Prentiss (United States of America)',1,1,0),(34171,22078,134322,'Presicce','Italy','IT','Presicce (Italy)',1,1,0),(34172,22079,134323,'Presidente Prudente','Brazil','BR','Presidente Prudente (Brazil)',1,1,0),(34173,0,134324,'Presque Ile de Giens','France','FR','Presque Ile de Giens (France)',1,1,0),(34174,0,134325,'Pressath','Germany','DE','Pressath (Germany)',1,1,0),(34175,22100,134326,'Prevessin-Moens','France','FR','Prevessin-Moens (France)',1,1,0),(34176,22103,134327,'Price','United States of America','US','Price (United States of America)',1,1,0),(34177,22109,134328,'Primbee','Australia','AU','Primbee (Australia)',1,1,0),(34178,0,134329,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(34179,0,134330,'Principe','Sao Tome & Principe','ST','Principe (Sao Tome & Principe)',1,1,0),(34180,0,134331,'Principina a Mare','Italy','IT','Principina a Mare (Italy)',1,1,0),(34181,22121,134332,'Prineville','United States of America','US','Prineville (United States of America)',1,1,0),(34182,0,134333,'Privatinsel Ilet Oscar','Martinique','MQ','Privatinsel Ilet Oscar (Martinique)',1,1,0),(34183,0,134334,'Prnjavor','Bosnia and Herzegowina','BA','Prnjavor (Bosnia and Herzegowina)',1,1,0),(34184,0,134335,'Pronstorf','Germany','DE','Pronstorf (Germany)',1,1,0),(34185,0,134336,'Prospect Heights','United States of America','US','Prospect Heights (United States of America)',1,1,0),(34186,22148,134337,'Prosser','United States of America','US','Prosser (United States of America)',1,1,0),(34187,0,134338,'Prostejov','Czech Republic','CZ','Prostejov (Czech Republic)',1,1,0),(34188,0,134339,'Prunete','France','FR','Prunete (France)',1,1,0),(34189,22164,134340,'Prvic Luka','Croatia','HR','Prvic Luka (Croatia)',1,1,0),(34190,0,134341,'Przno','Montenegro','ME','Przno (Montenegro)',1,1,0),(34191,22177,134342,'Pucallpa','Peru','PE','Pucallpa (Peru)',1,1,0),(34192,0,134343,'Puchong','Malaysia','MY','Puchong (Malaysia)',1,1,0),(34193,0,134344,'Puchov','Slovakia','SK','Puchov (Slovakia)',1,1,0),(34194,22193,134345,'Puente de Genave','Spain','ES','Puente de Genave (Spain)',1,1,0),(34195,0,134346,'Puerto Colombia','Venezuela','VE','Puerto Colombia (Venezuela)',1,1,0),(34196,0,134347,'Puerto Colombia','Colombia','CO','Puerto Colombia (Colombia)',1,1,0),(34197,32639,134348,'Puerto de Mazarron','Spain','ES','Puerto de Mazarron (Spain)',1,1,0),(34198,32640,134349,'Puerto de Pollensa','Spain','ES','Puerto de Pollensa (Spain)',1,1,0),(34199,0,134350,'Puerto Deseado','Argentina','AR','Puerto Deseado (Argentina)',1,1,0),(34200,0,134351,'Puerto Francisco de Orellana','Ecuador','EC','Puerto Francisco de Orellana (Ecuador)',1,1,0),(34201,0,134352,'Puerto Madryn','Argentina','AR','Puerto Madryn (Argentina)',1,1,0),(34202,0,134353,'Puerto Real','Puerto Rico','PR','Puerto Real (Puerto Rico)',1,1,0),(34203,0,134354,'Puerto San Julian','Argentina','AR','Puerto San Julian (Argentina)',1,1,0),(34204,0,134355,'Puerto Viejo','Venezuela','VE','Puerto Viejo (Venezuela)',1,1,0),(34205,0,134356,'Puerto Viejo de Sarapiqui','Costa Rica','CR','Puerto Viejo de Sarapiqui (Costa Rica)',1,1,0),(34206,0,134357,'Puerto Williams','Chile','CL','Puerto Williams (Chile)',1,1,0),(34207,0,134358,'Puget-Sur-Argens','France','FR','Puget-Sur-Argens (France)',1,1,0),(34208,0,134359,'Pukekohe','New Zealand','NZ','Pukekohe (New Zealand)',1,1,0),(34209,22223,134360,'Pulaski','United States of America','US','Pulaski (United States of America)',1,1,0),(34210,0,134361,'Punakha','Bhutan','BT','Punakha (Bhutan)',1,1,0),(34211,0,134362,'Pungu Beach','Kenya','KE','Pungu Beach (Kenya)',1,1,0),(34212,22241,134363,'Punta Allen','Mexico','MX','Punta Allen (Mexico)',1,1,0),(34213,22264,134364,'Purling','United States of America','US','Purling (United States of America)',1,1,0),(34214,22266,134365,'Purmerend','Netherlands','NL','Purmerend (Netherlands)',1,1,0),(34215,0,134366,'Purwodadi','Indonesia','ID','Purwodadi (Indonesia)',1,1,0),(34216,22269,134367,'Purwokerto','Indonesia','ID','Purwokerto (Indonesia)',1,1,0),(34217,22275,134368,'Putao','Myanmar','MM','Putao (Myanmar)',1,1,0),(34218,22297,134369,'Puyallup','United States of America','US','Puyallup (United States of America)',1,1,0),(34219,22301,134370,'Puygiron','France','FR','Puygiron (France)',1,1,0),(34220,0,134371,'Puy-l\'Eveque','France','FR','Puy-l\'Eveque (France)',1,1,0),(34221,0,134372,'Pyrgi','Greece','GR','Pyrgi (Greece)',1,1,0),(34222,0,134373,'Qala','Malta','MT','Qala (Malta)',1,1,0),(34223,0,134374,'Qionghai-Bo\'an','China','CN','Qionghai-Bo\'an (China)',1,1,0),(34224,22361,134375,'Quatro Barras','Brazil','BR','Quatro Barras (Brazil)',1,1,0),(34225,0,134376,'Resende','Portugal','PT','Resende (Portugal)',1,1,0),(34226,22801,134377,'Resende','Brazil','BR','Resende (Brazil)',1,1,0),(34227,0,134378,'Reute (Breisgau)','Germany','DE','Reute (Breisgau) (Germany)',1,1,0),(34228,0,134379,'Revolta','Spain','ES','Revolta (Spain)',1,1,0),(34229,22832,134380,'Rewal','Poland','PL','Rewal (Poland)',1,1,0),(34230,0,134381,'Rhenen','Netherlands','NL','Rhenen (Netherlands)',1,1,0),(34231,22873,134382,'Rhome','United States of America','US','Rhome (United States of America)',1,1,0),(34232,22879,134383,'Riace','Italy','IT','Riace (Italy)',1,1,0),(34233,22884,134384,'Riaza','Spain','ES','Riaza (Spain)',1,1,0),(34234,22886,134385,'Ribadedeva','Spain','ES','Ribadedeva (Spain)',1,1,0),(34235,0,134386,'Ribaritsa','Bulgaria','BG','Ribaritsa (Bulgaria)',1,1,0),(34236,22895,134387,'Ribera','Italy','IT','Ribera (Italy)',1,1,0),(34237,22901,134388,'Ricany','Czech Republic','CZ','Ricany (Czech Republic)',1,1,0),(34238,22905,134389,'Richards Bay','South Africa','ZA','Richards Bay (South Africa)',1,1,0),(34239,0,134390,'Richardson','United States of America','US','Richardson (United States of America)',1,1,0),(34240,0,134391,'Richland','United States of America','US','Richland (United States of America)',1,1,0),(34241,0,134392,'Richmond upon Thames','United Kingdom','UK','Richmond upon Thames (United Kingdom)',1,1,0),(34242,22916,134393,'Richmondville','United States of America','US','Richmondville (United States of America)',1,1,0),(34243,0,134394,'Rickenbach','Germany','DE','Rickenbach (Germany)',1,1,0),(34244,0,134395,'Rieden am Forggensee','Germany','DE','Rieden am Forggensee (Germany)',1,1,0),(34245,0,134396,'Riedenberg','Germany','DE','Riedenberg (Germany)',1,1,0),(34246,22932,134397,'Riedstadt','Germany','DE','Riedstadt (Germany)',1,1,0),(34247,0,134398,'Riefensberg','Austria','AT','Riefensberg (Austria)',1,1,0),(34248,0,134399,'Riegersburg / Hardegg','Austria','AT','Riegersburg / Hardegg (Austria)',1,1,0),(34249,0,134400,'Riehen','Switzerland','CH','Riehen (Switzerland)',1,1,0),(34250,22942,134401,'Riezlern','Austria','AT','Riezlern (Austria)',1,1,0),(34251,22946,134402,'Rigaud','Canada','CA','Rigaud (Canada)',1,1,0),(34252,0,134403,'Rigi-Kaltbad-First','Switzerland','CH','Rigi-Kaltbad-First (Switzerland)',1,1,0),(34253,22963,134404,'Rimouski','Canada','CA','Rimouski (Canada)',1,1,0),(34254,22976,134405,'Ringebu','Norway','NO','Ringebu (Norway)',1,1,0),(34255,22981,134406,'Ringkobing','Denmark','DK','Ringkobing (Denmark)',1,1,0),(34256,22989,134407,'Ringwood','Australia','AU','Ringwood (Australia)',1,1,0),(34257,0,134408,'Ringwood','United Kingdom','UK','Ringwood (United Kingdom)',1,1,0),(34258,0,134409,'Rio Dulce','Guatemala','GT','Rio Dulce (Guatemala)',1,1,0),(34259,0,134410,'Rio Verde','Brazil','BR','Rio Verde (Brazil)',1,1,0),(34260,0,134411,'Riol','Germany','DE','Riol (Germany)',1,1,0),(34261,0,134412,'Riparbella','Italy','IT','Riparbella (Italy)',1,1,0),(34262,0,134413,'Ripenda Kosi','Croatia','HR','Ripenda Kosi (Croatia)',1,1,0),(34263,23014,134414,'Ripon','United States of America','US','Ripon (United States of America)',1,1,0),(34264,0,134415,'Risan','Montenegro','ME','Risan (Montenegro)',1,1,0),(34265,0,134416,'Rittersgrun','Germany','DE','Rittersgrun (Germany)',1,1,0),(34266,0,134417,'Riudarenes','Spain','ES','Riudarenes (Spain)',1,1,0),(34267,0,134418,'Riva di Solto','Italy','IT','Riva di Solto (Italy)',1,1,0),(34268,32726,134419,'River Grove','United States of America','US','River Grove (United States of America)',1,1,0),(34269,32729,134420,'River Valley','Canada','CA','River Valley (Canada)',1,1,0),(34270,23036,134421,'Riverdale','United States of America','US','Riverdale (United States of America)',1,1,0),(34271,0,134422,'Riverview','Canada','CA','Riverview (Canada)',1,1,0),(34272,23045,134423,'Riverwoods','United States of America','US','Riverwoods (United States of America)',1,1,0),(34273,23046,134424,'Rivesaltes','France','FR','Rivesaltes (France)',1,1,0),(34274,23048,134425,'Riviera Maya','Mexico','MX','Riviera Maya (Mexico)',1,1,0),(34275,23052,134426,'Rivisondoli','Italy','IT','Rivisondoli (Italy)',1,1,0),(34276,0,134427,'Robledillo de la Vera','Spain','ES','Robledillo de la Vera (Spain)',1,1,0),(34277,23089,134428,'Roccalumera','Italy','IT','Roccalumera (Italy)',1,1,0),(34278,23091,134429,'Roccaraso','Italy','IT','Roccaraso (Italy)',1,1,0),(34279,0,134430,'Roccaverano','Italy','IT','Roccaverano (Italy)',1,1,0),(34280,0,134431,'Rochechouart','France','FR','Rochechouart (France)',1,1,0),(34281,0,134432,'Rochester','United States of America','US','Rochester (United States of America)',1,1,0),(34282,0,134433,'Rochester','United States of America','US','Rochester (United States of America)',1,1,0),(34283,0,134434,'Rochlitz','Germany','DE','Rochlitz (Germany)',1,1,0),(34284,32742,134435,'Rock Hill','United States of America','US','Rock Hill (United States of America)',1,1,0),(34285,32745,134436,'Rock Port','United States of America','US','Rock Port (United States of America)',1,1,0),(34286,23116,134437,'Rockdale','United States of America','US','Rockdale (United States of America)',1,1,0),(34287,0,134438,'Rockport','United States of America','US','Rockport (United States of America)',1,1,0),(34288,0,134439,'Rockport','United States of America','US','Rockport (United States of America)',1,1,0),(34289,23127,134440,'Rockville','United States of America','US','Rockville (United States of America)',1,1,0),(34290,0,134441,'Rocky Ford','United States of America','US','Rocky Ford (United States of America)',1,1,0),(34291,23136,134442,'Rodder','Germany','DE','Rodder (Germany)',1,1,0),(34292,0,134443,'Rodelsee','Germany','DE','Rodelsee (Germany)',1,1,0),(34293,23143,134444,'Rodez','France','FR','Rodez (France)',1,1,0),(34294,23145,134445,'Rodi Garganico','Italy','IT','Rodi Garganico (Italy)',1,1,0),(34295,0,134446,'Rodopi','Bulgaria','BG','Rodopi (Bulgaria)',1,1,0),(34296,23149,134447,'Rodvig','Denmark','DK','Rodvig (Denmark)',1,1,0),(34297,23152,134448,'Roermond','Netherlands','NL','Roermond (Netherlands)',1,1,0),(34298,23163,134449,'Rognan','Norway','NO','Rognan (Norway)',1,1,0),(34299,0,134450,'Rogowo','Poland','PL','Rogowo (Poland)',1,1,0),(34300,0,134451,'Rohr in Niederbayern','Germany','DE','Rohr in Niederbayern (Germany)',1,1,0),(34301,0,134452,'Rohrbach','Germany','DE','Rohrbach (Germany)',1,1,0),(34302,0,134453,'Rome','United States of America','US','Rome (United States of America)',1,1,0),(34303,0,134454,'Romeo','United States of America','US','Romeo (United States of America)',1,1,0),(34304,0,134455,'Romerberg','Germany','DE','Romerberg (Germany)',1,1,0),(34305,0,134456,'Romskog','Norway','NO','Romskog (Norway)',1,1,0),(34306,0,134457,'Roncegno Terme','Italy','IT','Roncegno Terme (Italy)',1,1,0),(34307,0,134458,'Ronchi dei Legionari','Italy','IT','Ronchi dei Legionari (Italy)',1,1,0),(34308,23220,134459,'Roncofreddo','Italy','IT','Roncofreddo (Italy)',1,1,0),(34309,23231,134460,'Ronzone','Italy','IT','Ronzone (Italy)',1,1,0),(34310,23232,134461,'Roodepoort','South Africa','ZA','Roodepoort (South Africa)',1,1,0),(34311,23235,134462,'Roosendaal','Netherlands','NL','Roosendaal (Netherlands)',1,1,0),(34312,23242,134463,'Roquebrune-sur-Argens','France','FR','Roquebrune-sur-Argens (France)',1,1,0),(34313,23245,134464,'Roques','France','FR','Roques (France)',1,1,0),(34314,23257,134465,'Rosate','Italy','IT','Rosate (Italy)',1,1,0),(34315,23259,134466,'Roscoff','France','FR','Roscoff (France)',1,1,0),(34316,23260,134467,'Roscommon','Ireland','IE','Roscommon (Ireland)',1,1,0),(34317,23261,134468,'Roscrea','Ireland','IE','Roscrea (Ireland)',1,1,0),(34318,23264,134469,'Roseau','Dominica','DM','Roseau (Dominica)',1,1,0),(34319,23265,134470,'Rosebank','South Africa','ZA','Rosebank (South Africa)',1,1,0),(34320,23269,134471,'Roseburg','United States of America','US','Roseburg (United States of America)',1,1,0),(34321,23275,134472,'Rosemont','United States of America','US','Rosemont (United States of America)',1,1,0),(34322,0,134473,'Rosendahl','Germany','DE','Rosendahl (Germany)',1,1,0),(34323,32759,134474,'Ross','Australia','AU','Ross (Australia)',1,1,0),(34324,0,134475,'Ross','New Zealand','NZ','Ross (New Zealand)',1,1,0),(34325,23304,134476,'Rossano','Italy','IT','Rossano (Italy)',1,1,0),(34326,23305,134477,'Rossau','Germany','DE','Rossau (Germany)',1,1,0),(34327,23323,134478,'Rosta','Italy','IT','Rosta (Italy)',1,1,0),(34328,0,134479,'Rostow (Oblast Jaroslawl)','Russia','RU','Rostow (Oblast Jaroslawl) (Russia)',1,1,0),(34329,23328,134480,'Roswell','United States of America','US','Roswell (United States of America)',1,1,0),(34330,0,134481,'Rot am See','Germany','DE','Rot am See (Germany)',1,1,0),(34331,0,134482,'Rotha','Germany','DE','Rotha (Germany)',1,1,0),(34332,23338,134483,'Rothenburg','Switzerland','CH','Rothenburg (Switzerland)',1,1,0),(34333,0,134484,'Rotherham','United Kingdom','UK','Rotherham (United Kingdom)',1,1,0),(34334,0,134485,'Rottenacker','Germany','DE','Rottenacker (Germany)',1,1,0),(34335,0,134486,'Rotthalmunster','Germany','DE','Rotthalmunster (Germany)',1,1,0),(34336,0,134487,'Rotz','Germany','DE','Rotz (Germany)',1,1,0),(34337,0,134488,'Roullet-Saint-Estephe','France','FR','Roullet-Saint-Estephe (France)',1,1,0),(34338,22944,134489,'Rifle','United States of America','US','Rifle (United States of America)',1,1,0),(34339,0,134490,'Rignac','France','FR','Rignac (France)',1,1,0),(34340,0,134491,'Rignano sull\' Arno','Italy','IT','Rignano sull\' Arno (Italy)',1,1,0),(34341,22953,134492,'Riihimaki','Finland','FI','Riihimaki (Finland)',1,1,0),(34342,0,134493,'Rille','France','FR','Rille (France)',1,1,0),(34343,22958,134494,'Rillieux-la-Pape','France','FR','Rillieux-la-Pape (France)',1,1,0),(34344,22964,134495,'Rimrock','United States of America','US','Rimrock (United States of America)',1,1,0),(34345,0,134496,'Ringelai','Germany','DE','Ringelai (Germany)',1,1,0),(34346,22977,134497,'Ringgenberg','Switzerland','CH','Ringgenberg (Switzerland)',1,1,0),(34347,0,134498,'Rio Grande','Argentina','AR','Rio Grande (Argentina)',1,1,0),(34348,23004,134499,'Riomaggiore','Italy','IT','Riomaggiore (Italy)',1,1,0),(34349,0,134500,'Ripa Teatina','Italy','IT','Ripa Teatina (Italy)',1,1,0),(34350,0,134501,'Rittesdorf','Germany','DE','Rittesdorf (Germany)',1,1,0),(34351,23030,134502,'Rivarolo Canavese','Italy','IT','Rivarolo Canavese (Italy)',1,1,0),(34352,23038,134503,'Riverhead','United States of America','US','Riverhead (United States of America)',1,1,0),(34353,0,134504,'Riverside','United States of America','US','Riverside (United States of America)',1,1,0),(34354,23050,134505,'Riviere Noire','Mauritius','MU','Riviere Noire (Mauritius)',1,1,0),(34355,23055,134506,'Rixensart','Belgium','BE','Rixensart (Belgium)',1,1,0),(34356,0,134507,'Riza','Greece','GR','Riza (Greece)',1,1,0),(34357,23060,134508,'Rizhao','China','CN','Rizhao (China)',1,1,0),(34358,0,134509,'Roayl Wootton Bassett','United Kingdom','UK','Roayl Wootton Bassett (United Kingdom)',1,1,0),(34359,23072,134510,'Robertville','Belgium','BE','Robertville (Belgium)',1,1,0),(34360,23078,134511,'Robinson Crusoe Island','Chile','CL','Robinson Crusoe Island (Chile)',1,1,0),(34361,0,134512,'Rocca Pietore','Italy','IT','Rocca Pietore (Italy)',1,1,0),(34362,0,134513,'Roccalbegna','Italy','IT','Roccalbegna (Italy)',1,1,0),(34363,23094,134514,'Roccatederighi','Italy','IT','Roccatederighi (Italy)',1,1,0),(34364,0,134515,'Rocha','Uruguay','UY','Rocha (Uruguay)',1,1,0),(34365,23098,134516,'Roche Harbor','United States of America','US','Roche Harbor (United States of America)',1,1,0),(34366,23110,134517,'Rochester','United States of America','US','Rochester (United States of America)',1,1,0),(34367,32750,134518,'Rock Valley','United States of America','US','Rock Valley (United States of America)',1,1,0),(34368,0,134519,'Rockenhausen','Germany','DE','Rockenhausen (Germany)',1,1,0),(34369,23132,134520,'Rocky Mountain House','Canada','CA','Rocky Mountain House (Canada)',1,1,0),(34370,0,134521,'Rodeneck','Italy','IT','Rodeneck (Italy)',1,1,0),(34371,23147,134522,'Rodney Bay','Saint Lucia','LC','Rodney Bay (Saint Lucia)',1,1,0),(34372,23148,134523,'Rodrigues Island','Mauritius','MU','Rodrigues Island (Mauritius)',1,1,0),(34373,0,134524,'Rohr','Germany','DE','Rohr (Germany)',1,1,0),(34374,23175,134525,'Roiffe','France','FR','Roiffe (France)',1,1,0),(34375,0,134526,'Rolde','Netherlands','NL','Rolde (Netherlands)',1,1,0),(34376,0,134527,'Romagnieu','France','FR','Romagnieu (France)',1,1,0),(34377,32753,134528,'Romano Canavese','Italy','IT','Romano Canavese (Italy)',1,1,0),(34378,0,134529,'Rome','United States of America','US','Rome (United States of America)',1,1,0),(34379,0,134530,'Romerstein','Germany','DE','Romerstein (Germany)',1,1,0),(34380,0,134531,'Romford','United Kingdom','UK','Romford (United Kingdom)',1,1,0),(34381,0,134532,'Romhild','Germany','DE','Romhild (Germany)',1,1,0),(34382,0,134533,'Romnitz','Germany','DE','Romnitz (Germany)',1,1,0),(34383,0,134534,'Romo Island','Denmark','DK','Romo Island (Denmark)',1,1,0),(34384,23228,134535,'Ronne','Denmark','DK','Ronne (Denmark)',1,1,0),(34385,0,134536,'Ronneburg','Germany','DE','Ronneburg (Germany)',1,1,0),(34386,23230,134537,'Ronnenberg','Germany','DE','Ronnenberg (Germany)',1,1,0),(34387,0,134538,'Ronse','Belgium','BE','Ronse (Belgium)',1,1,0),(34388,0,134539,'Roppen','Austria','AT','Roppen (Austria)',1,1,0),(34389,0,134540,'Roquaine Bay','United Kingdom','UK','Roquaine Bay (United Kingdom)',1,1,0),(34390,0,134541,'Rosario de la Frontera','Argentina','AR','Rosario de la Frontera (Argentina)',1,1,0),(34391,0,134542,'Rosario de Lerma','Argentina','AR','Rosario de Lerma (Argentina)',1,1,0),(34392,0,134543,'Rosas','Spain','ES','Rosas (Spain)',1,1,0),(34393,23274,134544,'Rosemead','United States of America','US','Rosemead (United States of America)',1,1,0),(34394,0,134545,'Rosemere','Canada','CA','Rosemere (Canada)',1,1,0),(34395,0,134546,'Rosenau am Hengstpa?','Austria','AT','Rosenau am Hengstpa? (Austria)',1,1,0),(34396,23277,134547,'Rosenberg','United States of America','US','Rosenberg (United States of America)',1,1,0),(34397,23288,134548,'Rosh Pina','Israel','IL','Rosh Pina (Israel)',1,1,0),(34398,0,134549,'Rosheim','France','FR','Rosheim (France)',1,1,0),(34399,23290,134550,'Rosia','Italy','IT','Rosia (Italy)',1,1,0),(34400,23291,134551,'Rosignano Marittimo','Italy','IT','Rosignano Marittimo (Italy)',1,1,0),(34401,0,134552,'Rosignano Solvay','Italy','IT','Rosignano Solvay (Italy)',1,1,0),(34402,23302,134553,'Rosny-sous-Bois','France','FR','Rosny-sous-Bois (France)',1,1,0),(34403,0,134554,'Rosolina Mare','Italy','IT','Rosolina Mare (Italy)',1,1,0),(34404,0,134555,'Ro?bach (Wied)','Germany','DE','Ro?bach (Wied) (Germany)',1,1,0),(34405,0,134556,'Rossbeg','Ireland','IE','Rossbeg (Ireland)',1,1,0),(34406,23317,134557,'Rosslare','Ireland','IE','Rosslare (Ireland)',1,1,0),(34407,0,134558,'Rotenburg on the Fulda','Germany','DE','Rotenburg on the Fulda (Germany)',1,1,0),(34408,0,134559,'Rothenthurn','Austria','AT','Rothenthurn (Austria)',1,1,0),(34409,0,134560,'Rothwald','Switzerland','CH','Rothwald (Switzerland)',1,1,0),(34410,0,134561,'Rottenburg on the Neckar','Germany','DE','Rottenburg on the Neckar (Germany)',1,1,0),(34411,0,134562,'Rottendorf','Germany','DE','Rottendorf (Germany)',1,1,0),(34412,23357,134563,'Rottnest Island','Australia','AU','Rottnest Island (Australia)',1,1,0),(34413,0,134564,'Round Island','Seychelles','SC','Round Island (Seychelles)',1,1,0),(34414,23375,134565,'Roussospiti','Greece','GR','Roussospiti (Greece)',1,1,0),(34415,23377,134566,'Rouvres-en-Xaintois','France','FR','Rouvres-en-Xaintois (France)',1,1,0),(34416,0,134567,'Rouvres-la-Chetive','France','FR','Rouvres-la-Chetive (France)',1,1,0),(34417,0,134568,'Roverbella','Italy','IT','Roverbella (Italy)',1,1,0),(34418,23382,134569,'Rovereto','Italy','IT','Rovereto (Italy)',1,1,0),(34419,0,134570,'Rovinjsko Selo','Croatia','HR','Rovinjsko Selo (Croatia)',1,1,0),(34420,0,134571,'Rowland Heights','United States of America','US','Rowland Heights (United States of America)',1,1,0),(34421,23393,134572,'Rowlett','United States of America','US','Rowlett (United States of America)',1,1,0),(34422,0,134573,'Rowy','Poland','PL','Rowy (Poland)',1,1,0),(34423,0,134574,'Roxburgh','New Zealand','NZ','Roxburgh (New Zealand)',1,1,0),(34424,23403,134575,'Royat','France','FR','Royat (France)',1,1,0),(34425,0,134576,'Rubi','Spain','ES','Rubi (Spain)',1,1,0),(34426,0,134577,'Ruderatshofen','Germany','DE','Ruderatshofen (Germany)',1,1,0),(34427,0,134578,'Rudersdal','Denmark','DK','Rudersdal (Denmark)',1,1,0),(34428,23424,134579,'Rudesheim','Germany','DE','Rudesheim (Germany)',1,1,0),(34429,0,134580,'Ruffiac','France','FR','Ruffiac (France)',1,1,0),(34430,23440,134581,'Ruffre','Italy','IT','Ruffre (Italy)',1,1,0),(34431,23443,134582,'Rugao','China','CN','Rugao (China)',1,1,0),(34432,0,134583,'Ruhla-Thal','Germany','DE','Ruhla-Thal (Germany)',1,1,0),(34433,23452,134584,'Rui\'an','China','CN','Rui\'an (China)',1,1,0),(34434,0,134585,'Ruiloba','Spain','ES','Ruiloba (Spain)',1,1,0),(34435,0,134586,'Ruisbroek','Belgium','BE','Ruisbroek (Belgium)',1,1,0),(34436,0,134587,'Rully','France','FR','Rully (France)',1,1,0),(34437,23463,134588,'Rumford','United States of America','US','Rumford (United States of America)',1,1,0),(34438,0,134589,'Rumilly','France','FR','Rumilly (France)',1,1,0),(34439,23466,134590,'Rumo','Italy','IT','Rumo (Italy)',1,1,0),(34440,0,134591,'Runcorn','United Kingdom','UK','Runcorn (United Kingdom)',1,1,0),(34441,23469,134592,'Rundu','Namibia','NA','Rundu (Namibia)',1,1,0),(34442,0,134593,'Runkel','Germany','DE','Runkel (Germany)',1,1,0),(34443,0,134594,'Rupit','Spain','ES','Rupit (Spain)',1,1,0),(34444,0,134595,'Rupt-sur-Moselle','France','FR','Rupt-sur-Moselle (France)',1,1,0),(34445,23095,134596,'Rocchetta Nervina','Italy','IT','Rocchetta Nervina (Italy)',1,1,0),(34446,0,134597,'Rochdale','United Kingdom','UK','Rochdale (United Kingdom)',1,1,0),(34447,0,134598,'Roche','Spain','ES','Roche (Spain)',1,1,0),(34448,23103,134599,'Rochefort-sur-Nenon','France','FR','Rochefort-sur-Nenon (France)',1,1,0),(34449,0,134600,'Rochelle Park','United States of America','US','Rochelle Park (United States of America)',1,1,0),(34450,0,134601,'Rochester Hills','United States of America','US','Rochester Hills (United States of America)',1,1,0),(34451,0,134602,'Rochford','United Kingdom','UK','Rochford (United Kingdom)',1,1,0),(34452,32747,134603,'Rock Springs','United States of America','US','Rock Springs (United States of America)',1,1,0),(34453,0,134604,'Rockaway','United States of America','US','Rockaway (United States of America)',1,1,0),(34454,0,134605,'Rockley Beach','Barbados','BB','Rockley Beach (Barbados)',1,1,0),(34455,0,134606,'Rockport','United States of America','US','Rockport (United States of America)',1,1,0),(34456,23130,134607,'Rockwood','United States of America','US','Rockwood (United States of America)',1,1,0),(34457,0,134608,'Rocky Hill','United States of America','US','Rocky Hill (United States of America)',1,1,0),(34458,0,134609,'Rocky Mount','United States of America','US','Rocky Mount (United States of America)',1,1,0),(34459,0,134610,'Rodalben','Germany','DE','Rodalben (Germany)',1,1,0),(34460,23138,134611,'Roden','Netherlands','NL','Roden (Netherlands)',1,1,0),(34461,23146,134612,'Rodigo','Italy','IT','Rodigo (Italy)',1,1,0),(34462,0,134613,'Roeselare','Belgium','BE','Roeselare (Belgium)',1,1,0),(34463,0,134614,'Roggenburg','Switzerland','CH','Roggenburg (Switzerland)',1,1,0),(34464,23169,134615,'Rohlstorf','Germany','DE','Rohlstorf (Germany)',1,1,0),(34465,0,134616,'Rohrdorf','Germany','DE','Rohrdorf (Germany)',1,1,0),(34466,23182,134617,'Roland','United States of America','US','Roland (United States of America)',1,1,0),(34467,0,134618,'Roldal','Norway','NO','Roldal (Norway)',1,1,0),(34468,23191,134619,'Rolling Meadows','United States of America','US','Rolling Meadows (United States of America)',1,1,0),(34469,23194,134620,'Romainmotier','Switzerland','CH','Romainmotier (Switzerland)',1,1,0),(34470,0,134621,'Romaneche-Thorins','France','FR','Romaneche-Thorins (France)',1,1,0),(34471,32754,134622,'Rome','Italy','IT','Rome (Italy)',1,1,0),(34472,0,134623,'Rommersheim','Germany','DE','Rommersheim (Germany)',1,1,0),(34473,0,134624,'Roncesvalles','Spain','ES','Roncesvalles (Spain)',1,1,0),(34474,0,134625,'Rorvik','Norway','NO','Rorvik (Norway)',1,1,0),(34475,0,134626,'Rosegg','Austria','AT','Rosegg (Austria)',1,1,0),(34476,0,134627,'Roslin','United Kingdom','UK','Roslin (United Kingdom)',1,1,0),(34477,23297,134628,'Roslyn','United States of America','US','Roslyn (United States of America)',1,1,0),(34478,23312,134629,'Rossford','United States of America','US','Rossford (United States of America)',1,1,0),(34479,0,134630,'Rosshire','United Kingdom','UK','Rosshire (United Kingdom)',1,1,0),(34480,23314,134631,'Rossiglione','Italy','IT','Rossiglione (Italy)',1,1,0),(34481,0,134632,'Rossleithen','Austria','AT','Rossleithen (Austria)',1,1,0),(34482,0,134633,'Rosswald','Switzerland','CH','Rosswald (Switzerland)',1,1,0),(34483,23336,134634,'Rothbury','United States of America','US','Rothbury (United States of America)',1,1,0),(34484,0,134635,'Rothenbuch','Germany','DE','Rothenbuch (Germany)',1,1,0),(34485,0,134636,'Rothis','Austria','AT','Rothis (Austria)',1,1,0),(34486,23352,134637,'Rottach-Egern','Germany','DE','Rottach-Egern (Germany)',1,1,0),(34487,0,134638,'Rottenbuch','Germany','DE','Rottenbuch (Germany)',1,1,0),(34488,0,134639,'Rotterode','Germany','DE','Rotterode (Germany)',1,1,0),(34489,23358,134640,'Rottweil','Germany','DE','Rottweil (Germany)',1,1,0),(34490,23365,134641,'Rouilly-Sacey','France','FR','Rouilly-Sacey (France)',1,1,0),(34491,23369,134642,'Roundstone','Ireland','IE','Roundstone (Ireland)',1,1,0),(34492,0,134644,'Rovanjska','Croatia','HR','Rovanjska (Croatia)',1,1,0),(34493,23381,134645,'Rovere Veronese','Italy','IT','Rovere Veronese (Italy)',1,1,0),(34494,23390,134646,'Rowland','United States of America','US','Rowland (United States of America)',1,1,0),(34495,0,134647,'Rowley','United States of America','US','Rowley (United States of America)',1,1,0),(34496,0,134648,'Royal Natal','South Africa','ZA','Royal Natal (South Africa)',1,1,0),(34497,0,134649,'Royal Oak','United States of America','US','Royal Oak (United States of America)',1,1,0),(34498,23402,134650,'Royan','France','FR','Royan (France)',1,1,0),(34499,0,134651,'Roztoky u Prahy','Czech Republic','CZ','Roztoky u Prahy (Czech Republic)',1,1,0),(34500,23415,134652,'Rubano','Italy','IT','Rubano (Italy)',1,1,0),(34501,23417,134653,'Rubena','Spain','ES','Rubena (Spain)',1,1,0),(34502,0,134654,'Ruds Vedby','Denmark','DK','Ruds Vedby (Denmark)',1,1,0),(34503,0,134655,'Ruente','Spain','ES','Ruente (Spain)',1,1,0),(34504,0,134656,'Rufford','United Kingdom','UK','Rufford (United Kingdom)',1,1,0),(34505,0,134657,'Ruhwarden','Germany','DE','Ruhwarden (Germany)',1,1,0),(34506,0,134658,'Ruislip','United Kingdom','UK','Ruislip (United Kingdom)',1,1,0),(34507,0,134659,'Runaway Bay','Antigua & Barbuda','AG','Runaway Bay (Antigua & Barbuda)',1,1,0),(34508,23479,134660,'Rurutu','French Polynesia','PF','Rurutu (French Polynesia)',1,1,0),(34509,0,134661,'Rusinga','Kenya','KE','Rusinga (Kenya)',1,1,0),(34510,23486,134662,'Rusk','United States of America','US','Rusk (United States of America)',1,1,0),(34511,23490,134663,'Russell','New Zealand','NZ','Russell (New Zealand)',1,1,0),(34512,23493,134664,'Russelsheim','Germany','DE','Russelsheim (Germany)',1,1,0),(34513,23509,134665,'Rutherford','United States of America','US','Rutherford (United States of America)',1,1,0),(34514,23518,134666,'Ruurlo','Netherlands','NL','Ruurlo (Netherlands)',1,1,0),(34515,23520,134667,'Ruvo di Puglia','Italy','IT','Ruvo di Puglia (Italy)',1,1,0),(34516,0,134668,'Ruynes-en-Margeride','France','FR','Ruynes-en-Margeride (France)',1,1,0),(34517,0,134669,'Ruzici','Croatia','HR','Ruzici (Croatia)',1,1,0),(34518,0,134670,'Rybinsk','Russia','RU','Rybinsk (Russia)',1,1,0),(34519,0,134671,'Rychnov nad Kneznou','Czech Republic','CZ','Rychnov nad Kneznou (Czech Republic)',1,1,0),(34520,0,134672,'Rydzyna','Poland','PL','Rydzyna (Poland)',1,1,0),(34521,23528,134673,'Rye','Australia','AU','Rye (Australia)',1,1,0),(34522,23541,134674,'Saalburg','Germany','DE','Saalburg (Germany)',1,1,0),(34523,23547,134675,'Saanichton','Canada','CA','Saanichton (Canada)',1,1,0),(34524,0,134676,'Saas-Grund','Switzerland','CH','Saas-Grund (Switzerland)',1,1,0),(34525,23563,134677,'Sabaudia','Italy','IT','Sabaudia (Italy)',1,1,0),(34526,23566,134678,'Sabie','South Africa','ZA','Sabie (South Africa)',1,1,0),(34527,0,134679,'Sabile','Latvia','LV','Sabile (Latvia)',1,1,0),(34528,23573,134680,'Sabran','France','FR','Sabran (France)',1,1,0),(34529,23576,134681,'Sabrosa','Portugal','PT','Sabrosa (Portugal)',1,1,0),(34530,23587,134682,'Sacrofano','Italy','IT','Sacrofano (Italy)',1,1,0),(34531,0,134683,'Saddle River','United States of America','US','Saddle River (United States of America)',1,1,0),(34532,0,134684,'Sadroc','France','FR','Sadroc (France)',1,1,0),(34533,0,134685,'Sadska','Czech Republic','CZ','Sadska (Czech Republic)',1,1,0),(34534,23593,134686,'Saeby','Denmark','DK','Saeby (Denmark)',1,1,0),(34535,0,134687,'Saftica','Romania','RO','Saftica (Romania)',1,1,0),(34536,23617,134688,'Sagvar','Hungary','HU','Sagvar (Hungary)',1,1,0),(34537,23621,134689,'Saida','Lebanon','LB','Saida (Lebanon)',1,1,0),(34538,23629,134690,'Saillagouse','France','FR','Saillagouse (France)',1,1,0),(34539,0,134691,'Saint Andre','Canada','CA','Saint Andre (Canada)',1,1,0),(34540,0,134692,'Saint Aygulf','France','FR','Saint Aygulf (France)',1,1,0),(34541,0,134693,'Saint Cezaire','France','FR','Saint Cezaire (France)',1,1,0),(34542,0,134694,'Saint Croix','U.S. Virgin Islands',NULL,'Saint Croix (U.S. Virgin Islands)',1,1,0),(34543,32793,134695,'Saint Denis','France','FR','Saint Denis (France)',1,1,0),(34544,32801,134696,'Saint Felicien','Canada','CA','Saint Felicien (Canada)',1,1,0),(34545,32802,134697,'Saint Ferreol les Neiges','Canada','CA','Saint Ferreol les Neiges (Canada)',1,1,0),(34546,0,134698,'Saint Jean-Cap Ferrat','France','FR','Saint Jean-Cap Ferrat (France)',1,1,0),(34547,0,134699,'Saint Martin','France','FR','Saint Martin (France)',1,1,0),(34548,0,134700,'Saint Michaels','United States of America','US','Saint Michaels (United States of America)',1,1,0),(34549,0,134701,'Saint Trinit','France','FR','Saint Trinit (France)',1,1,0),(34550,23645,134702,'Saint-Affrique','France','FR','Saint-Affrique (France)',1,1,0),(34551,0,134703,'Saint-Aignan','France','FR','Saint-Aignan (France)',1,1,0),(34552,0,134704,'Saint-Antheme','France','FR','Saint-Antheme (France)',1,1,0),(34553,0,134705,'Saint-Antoine-de-Tilly','Canada','CA','Saint-Antoine-de-Tilly (Canada)',1,1,0),(34554,0,134706,'Raska','Serbia','RS','Raska (Serbia)',1,1,0),(34555,0,134707,'Rasnov','Romania','RO','Rasnov (Romania)',1,1,0),(34556,0,134708,'Raszyn','Poland','PL','Raszyn (Poland)',1,1,0),(34557,22613,134709,'Rathen','Germany','DE','Rathen (Germany)',1,1,0),(34558,0,134710,'Ratot','Hungary','HU','Ratot (Hungary)',1,1,0),(34559,0,134711,'Ratzeburg','Germany','DE','Ratzeburg (Germany)',1,1,0),(34560,22631,134712,'Ravenna','United States of America','US','Ravenna (United States of America)',1,1,0),(34561,0,134713,'Ravne na Koroskem','Slovenia','SI','Ravne na Koroskem (Slovenia)',1,1,0),(34562,0,134714,'Ravnogor','Bulgaria','BG','Ravnogor (Bulgaria)',1,1,0),(34563,0,134715,'Rawdon','Canada','CA','Rawdon (Canada)',1,1,0),(34564,22643,134716,'Rawlins','United States of America','US','Rawlins (United States of America)',1,1,0),(34565,22647,134717,'Raymond Terrace','Australia','AU','Raymond Terrace (Australia)',1,1,0),(34566,0,134718,'Razem','Albania','AL','Razem (Albania)',1,1,0),(34567,0,134719,'Rechowot','Israel','IL','Rechowot (Israel)',1,1,0),(34568,22674,134720,'Recklinghausen','Germany','DE','Recklinghausen (Germany)',1,1,0),(34569,0,134721,'Reclere','Switzerland','CH','Reclere (Switzerland)',1,1,0),(34570,0,134722,'Recoaro Terme','Italy','IT','Recoaro Terme (Italy)',1,1,0),(34571,32675,134723,'Red Lodge','United States of America','US','Red Lodge (United States of America)',1,1,0),(34572,0,134724,'Red Wharf Bay','United Kingdom','UK','Red Wharf Bay (United Kingdom)',1,1,0),(34573,0,134725,'Redington Shores','United States of America','US','Redington Shores (United States of America)',1,1,0),(34574,22716,134726,'Reedsport','United States of America','US','Reedsport (United States of America)',1,1,0),(34575,22722,134727,'Refugio','United States of America','US','Refugio (United States of America)',1,1,0),(34576,22726,134728,'Regensdorf','Switzerland','CH','Regensdorf (Switzerland)',1,1,0),(34577,0,134729,'Reghin','Romania','RO','Reghin (Romania)',1,1,0),(34578,22735,134730,'Rehau','Germany','DE','Rehau (Germany)',1,1,0),(34579,0,134731,'Rehlingen-Siersburg','Germany','DE','Rehlingen-Siersburg (Germany)',1,1,0),(34580,0,134732,'Reignier-Esery','France','FR','Reignier-Esery (France)',1,1,0),(34581,0,134733,'Rein in Taufers','Italy','IT','Rein in Taufers (Italy)',1,1,0),(34582,22749,134734,'Reinbek','Germany','DE','Reinbek (Germany)',1,1,0),(34583,0,134735,'Reine','Norway','NO','Reine (Norway)',1,1,0),(34584,0,134736,'Rekem','Belgium','BE','Rekem (Belgium)',1,1,0),(34585,22764,134737,'Remington','United States of America','US','Remington (United States of America)',1,1,0),(34586,22768,134738,'Rena','Norway','NO','Rena (Norway)',1,1,0),(34587,22769,134739,'Renaca','Chile','CL','Renaca (Chile)',1,1,0),(34588,0,134740,'Renchen','Germany','DE','Renchen (Germany)',1,1,0),(34589,22772,134741,'Renedo de Cabuerniga','Spain','ES','Renedo de Cabuerniga (Spain)',1,1,0),(34590,0,134742,'Renishaw','United Kingdom','UK','Renishaw (United Kingdom)',1,1,0),(34591,0,134743,'Rensselaer','United States of America','US','Rensselaer (United States of America)',1,1,0),(34592,0,134744,'Reppen','Poland','PL','Reppen (Poland)',1,1,0),(34593,0,134745,'Requista','France','FR','Requista (France)',1,1,0),(34594,0,134746,'Reschen','Italy','IT','Reschen (Italy)',1,1,0),(34595,22802,134747,'Reservoir','Australia','AU','Reservoir (Australia)',1,1,0),(34596,0,134748,'Retalhuleu','Guatemala','GT','Retalhuleu (Guatemala)',1,1,0),(34597,22818,134749,'Reus','Spain','ES','Reus (Spain)',1,1,0),(34598,22820,134750,'Reuthe','Austria','AT','Reuthe (Austria)',1,1,0),(34599,22826,134751,'Revere','United States of America','US','Revere (United States of America)',1,1,0),(34600,0,134752,'Rezh','Russia','RU','Rezh (Russia)',1,1,0),(34601,0,134753,'Rheinbreitbach','Germany','DE','Rheinbreitbach (Germany)',1,1,0),(34602,0,134754,'Rheinhausen','Germany','DE','Rheinhausen (Germany)',1,1,0),(34603,0,134755,'Rheinmunster','Germany','DE','Rheinmunster (Germany)',1,1,0),(34604,0,134756,'Rhonblick','Germany','DE','Rhonblick (Germany)',1,1,0),(34605,22880,134757,'Rialp','Spain','ES','Rialp (Spain)',1,1,0),(34606,22881,134758,'Rialto','United States of America','US','Rialto (United States of America)',1,1,0),(34607,22888,134759,'Ribadesella','Spain','ES','Ribadesella (Spain)',1,1,0),(34608,0,134760,'Ribamontan al Mar','Spain','ES','Ribamontan al Mar (Spain)',1,1,0),(34609,0,134761,'Ribera de Cardos','Spain','ES','Ribera de Cardos (Spain)',1,1,0),(34610,22903,134762,'Riccione','Italy','IT','Riccione (Italy)',1,1,0),(34611,0,134763,'Ricco del Golfo di Spezia','Italy','IT','Ricco del Golfo di Spezia (Italy)',1,1,0),(34612,0,134764,'Richmond','Australia','AU','Richmond (Australia)',1,1,0),(34613,0,134765,'Ridgeway','United States of America','US','Ridgeway (United States of America)',1,1,0),(34614,22929,134766,'Ridgway','United States of America','US','Ridgway (United States of America)',1,1,0),(34615,0,134767,'Ried im Traunkreis','Austria','AT','Ried im Traunkreis (Austria)',1,1,0),(34616,0,134768,'Riello','Spain','ES','Riello (Spain)',1,1,0),(34617,22935,134769,'Riesa','Germany','DE','Riesa (Germany)',1,1,0),(34618,0,134770,'Rietberg','Germany','DE','Rietberg (Germany)',1,1,0),(34619,22945,134771,'Riga','Latvia','LV','Riga (Latvia)',1,1,0),(34620,0,134772,'Riglia','Greece','GR','Riglia (Greece)',1,1,0),(34621,22954,134773,'Rijeka','Croatia','HR','Rijeka (Croatia)',1,1,0),(34622,32701,134774,'Rimini','Italy','IT','Rimini (Italy)',1,1,0),(34623,22967,134775,'Rincon','Puerto Rico','PR','Rincon (Puerto Rico)',1,1,0),(34624,0,134776,'Rincon de la Vieja','Costa Rica','CR','Rincon de la Vieja (Costa Rica)',1,1,0),(34625,0,134777,'Ringdalsasane - Hellesylt','Norway','NO','Ringdalsasane - Hellesylt (Norway)',1,1,0),(34626,22991,134778,'Rinn','Austria','AT','Rinn (Austria)',1,1,0),(34627,22992,134779,'Rinteln','Germany','DE','Rinteln (Germany)',1,1,0),(34628,0,134780,'Rio Ceballos','Argentina','AR','Rio Ceballos (Argentina)',1,1,0),(34629,32703,134781,'Rio Claro','Brazil','BR','Rio Claro (Brazil)',1,1,0),(34630,0,134782,'Rio Frio','Portugal','PT','Rio Frio (Portugal)',1,1,0),(34631,32718,134783,'Rio Marina','Italy','IT','Rio Marina (Italy)',1,1,0),(34632,22998,134784,'Riohacha','Colombia','CO','Riohacha (Colombia)',1,1,0),(34633,23001,134785,'Riolo Terme','Italy','IT','Riolo Terme (Italy)',1,1,0),(34634,0,134786,'Ripatransone','Italy','IT','Ripatransone (Italy)',1,1,0),(34635,23015,134787,'Riposto','Italy','IT','Riposto (Italy)',1,1,0),(34636,23022,134788,'Risor','Norway','NO','Risor (Norway)',1,1,0),(34637,0,134789,'Risoul 1850','France','FR','Risoul 1850 (France)',1,1,0),(34638,0,134790,'Ristijarvi','Finland','FI','Ristijarvi (Finland)',1,1,0),(34639,23024,134791,'Ritten','Italy','IT','Ritten (Italy)',1,1,0),(34640,0,134792,'Riu de Cerdanya','Spain','ES','Riu de Cerdanya (Spain)',1,1,0),(34641,23031,134793,'Rivas','Nicaragua','NI','Rivas (Nicaragua)',1,1,0),(34642,0,134794,'Rivas-Vaciamadrid','Spain','ES','Rivas-Vaciamadrid (Spain)',1,1,0),(34643,0,134795,'Rivazzurra','Italy','IT','Rivazzurra (Italy)',1,1,0),(34644,23033,134796,'Rivedoux-Plage','France','FR','Rivedoux-Plage (France)',1,1,0),(34645,32724,134797,'River Falls','United States of America','US','River Falls (United States of America)',1,1,0),(34646,32727,134798,'River Ranch','United States of America','US','River Ranch (United States of America)',1,1,0),(34647,0,134799,'Riviere-Madeleine','Canada','CA','Riviere-Madeleine (Canada)',1,1,0),(34648,23063,134800,'Roanne','France','FR','Roanne (France)',1,1,0),(34649,0,134801,'Roanoke Rapids','United States of America','US','Roanoke Rapids (United States of America)',1,1,0),(34650,32734,134802,'Rocca Pia','Italy','IT','Rocca Pia (Italy)',1,1,0),(34651,32736,134803,'Rocca San Giovanni','Italy','IT','Rocca San Giovanni (Italy)',1,1,0),(34652,23093,134804,'Roccastrada','Italy','IT','Roccastrada (Italy)',1,1,0),(34653,0,134805,'Rochefort-sur-Loire','France','FR','Rochefort-sur-Loire (France)',1,1,0),(34654,0,134806,'Roches Noire','Mauritius','MU','Roches Noire (Mauritius)',1,1,0),(34655,32744,134807,'Rock Island','United States of America','US','Rock Island (United States of America)',1,1,0),(34656,23120,134808,'Rockingham','Australia','AU','Rockingham (Australia)',1,1,0),(34657,23121,134809,'Rockingham','United States of America','US','Rockingham (United States of America)',1,1,0),(34658,23123,134810,'Rockland','United States of America','US','Rockland (United States of America)',1,1,0),(34659,0,134811,'Rockville Centre','United States of America','US','Rockville Centre (United States of America)',1,1,0),(34660,23139,134812,'Rodenbach','Germany','DE','Rodenbach (Germany)',1,1,0),(34661,0,134813,'Rodental','Germany','DE','Rodental (Germany)',1,1,0),(34662,0,134814,'Rogers','United States of America','US','Rogers (United States of America)',1,1,0),(34663,23161,134815,'Rogersville','United States of America','US','Rogersville (United States of America)',1,1,0),(34664,0,134816,'Roggenbeuren','Germany','DE','Roggenbeuren (Germany)',1,1,0),(34665,23778,134817,'Saint-Gratien','France','FR','Saint-Gratien (France)',1,1,0),(34666,23798,134818,'Saint-Jean-de-Sixt','France','FR','Saint-Jean-de-Sixt (France)',1,1,0),(34667,23799,134819,'Saint-Jean-de-Vedas','France','FR','Saint-Jean-de-Vedas (France)',1,1,0),(34668,0,134820,'Saint-Jean-le-Vieux','France','FR','Saint-Jean-le-Vieux (France)',1,1,0),(34669,23811,134821,'Saint-Joseph-de-la-Rive','Canada','CA','Saint-Joseph-de-la-Rive (Canada)',1,1,0),(34670,0,134822,'Saint-Julien-en-Beauchene','France','FR','Saint-Julien-en-Beauchene (France)',1,1,0),(34671,23823,134823,'Saint-Laurent-de-Cerdans','France','FR','Saint-Laurent-de-Cerdans (France)',1,1,0),(34672,23828,134824,'Saint-Laurent-Nouan','France','FR','Saint-Laurent-Nouan (France)',1,1,0),(34673,0,134825,'Saint-Laurent-sur-Sevre','France','FR','Saint-Laurent-sur-Sevre (France)',1,1,0),(34674,23834,134826,'Saint-Lo','France','FR','Saint-Lo (France)',1,1,0),(34675,0,134827,'Saint-Marcel (Indre)','France','FR','Saint-Marcel (Indre) (France)',1,1,0),(34676,0,134828,'Saint-Marcel-les-Annonay','France','FR','Saint-Marcel-les-Annonay (France)',1,1,0),(34677,23846,134829,'Saint-Mard','France','FR','Saint-Mard (France)',1,1,0),(34678,23848,134830,'Saint-Martin-Boulogne','France','FR','Saint-Martin-Boulogne (France)',1,1,0),(34679,23856,134831,'Saint-Martin-en-Bresse','France','FR','Saint-Martin-en-Bresse (France)',1,1,0),(34680,0,134832,'Saint-Maximin','France','FR','Saint-Maximin (France)',1,1,0),(34681,0,134833,'Saint-Medard-d\'Excideuil','France','FR','Saint-Medard-d\'Excideuil (France)',1,1,0),(34682,0,134834,'Saint-Michel-de-Deze','France','FR','Saint-Michel-de-Deze (France)',1,1,0),(34683,0,134835,'Saint-Nabord','France','FR','Saint-Nabord (France)',1,1,0),(34684,0,134836,'Saint-Nazaire','France','FR','Saint-Nazaire (France)',1,1,0),(34685,0,134837,'Saint-Nic','France','FR','Saint-Nic (France)',1,1,0),(34686,0,134838,'Saint-Nicolas-la-Chapelle','France','FR','Saint-Nicolas-la-Chapelle (France)',1,1,0),(34687,23879,134839,'Saint-Ouen-sur-Morin','France','FR','Saint-Ouen-sur-Morin (France)',1,1,0),(34688,0,134840,'Saint-Pons-de-Thomieres','France','FR','Saint-Pons-de-Thomieres (France)',1,1,0),(34689,0,134841,'Saint-Rabier','France','FR','Saint-Rabier (France)',1,1,0),(34690,0,134842,'Saint-Raymond','Canada','CA','Saint-Raymond (Canada)',1,1,0),(34691,0,134843,'Saint-Rose-du-Nord','Canada','CA','Saint-Rose-du-Nord (Canada)',1,1,0),(34692,0,134844,'Saint-Sorlin-d\'Arves','France','FR','Saint-Sorlin-d\'Arves (France)',1,1,0),(34693,23936,134845,'Saint-Thibery','France','FR','Saint-Thibery (France)',1,1,0),(34694,23956,134846,'Sakata','Japan','JP','Sakata (Japan)',1,1,0),(34695,0,134847,'Salaberry-de-Valleyfield','Canada','CA','Salaberry-de-Valleyfield (Canada)',1,1,0),(34696,23979,134848,'Saldanha','South Africa','ZA','Saldanha (South Africa)',1,1,0),(34697,0,134849,'Saldes','Spain','ES','Saldes (Spain)',1,1,0),(34698,0,134850,'Salem','Germany','DE','Salem (Germany)',1,1,0),(34699,0,134851,'Salen','United Kingdom','UK','Salen (United Kingdom)',1,1,0),(34700,23988,134852,'Salerno','Italy','IT','Salerno (Italy)',1,1,0),(34701,23995,134853,'Salida','United States of America','US','Salida (United States of America)',1,1,0),(34702,23997,134854,'Salies-de-Bearn','France','FR','Salies-de-Bearn (France)',1,1,0),(34703,24005,134855,'Salinitas','El Salvador','SV','Salinitas (El Salvador)',1,1,0),(34704,24008,134856,'Salisbury','Dominica','DM','Salisbury (Dominica)',1,1,0),(34705,0,134857,'Salisbury Mills','United States of America','US','Salisbury Mills (United States of America)',1,1,0),(34706,24013,134858,'Sallent de Gallego','Spain','ES','Sallent de Gallego (Spain)',1,1,0),(34707,24019,134859,'Salmon Arm','Canada','CA','Salmon Arm (Canada)',1,1,0),(34708,0,134860,'Salt Cay','Turks & Caicos Islands',NULL,'Salt Cay (Turks & Caicos Islands)',1,1,0),(34709,24033,134861,'Salta','Argentina','AR','Salta (Argentina)',1,1,0),(34710,0,134862,'Saltash','United Kingdom','UK','Saltash (United Kingdom)',1,1,0),(34711,24041,134863,'Saltino','Italy','IT','Saltino (Italy)',1,1,0),(34712,0,134864,'Salto','Argentina','AR','Salto (Argentina)',1,1,0),(34713,0,134865,'Salvador da Bahia','Brazil','BR','Salvador da Bahia (Brazil)',1,1,0),(34714,0,134866,'Salzhausen','Germany','DE','Salzhausen (Germany)',1,1,0),(34715,0,134867,'Salzhemmendorf','Germany','DE','Salzhemmendorf (Germany)',1,1,0),(34716,0,134868,'Salzweg','Germany','DE','Salzweg (Germany)',1,1,0),(34717,24057,134869,'Samana','Dominican Republic','DO','Samana (Dominican Republic)',1,1,0),(34718,0,134870,'Samara','Costa Rica','CR','Samara (Costa Rica)',1,1,0),(34719,24061,134871,'Samarkand','Uzbekistan','UZ','Samarkand (Uzbekistan)',1,1,0),(34720,24062,134872,'Samatan','France','FR','Samatan (France)',1,1,0),(34721,0,134873,'Sambatiki','Greece','GR','Sambatiki (Greece)',1,1,0),(34722,0,134874,'Sambruson','Italy','IT','Sambruson (Italy)',1,1,0),(34723,24072,134875,'Sammichele di Bari','Italy','IT','Sammichele di Bari (Italy)',1,1,0),(34724,24089,134876,'Samsun','Turkey','TR','Samsun (Turkey)',1,1,0),(34725,0,134877,'San Andres Island','Colombia','CO','San Andres Island (Colombia)',1,1,0),(34726,32906,134878,'San Angelo','United States of America','US','San Angelo (United States of America)',1,1,0),(34727,0,134879,'San Antonio de Belen','Costa Rica','CR','San Antonio de Belen (Costa Rica)',1,1,0),(34728,24098,134880,'San Bernardino','Paraguay','PY','San Bernardino (Paraguay)',1,1,0),(34729,0,134881,'San Carlos','Panama','PA','San Carlos (Panama)',1,1,0),(34730,32946,134882,'San Casciano Dei Bagni','Italy','IT','San Casciano Dei Bagni (Italy)',1,1,0),(34731,32950,134883,'San Cataldo','Italy','IT','San Cataldo (Italy)',1,1,0),(34732,0,134884,'San Donato in Franzano','Italy','IT','San Donato in Franzano (Italy)',1,1,0),(34733,32972,134885,'San Donato Milanese','Italy','IT','San Donato Milanese (Italy)',1,1,0),(34734,32997,134886,'San Gabriel','United States of America','US','San Gabriel (United States of America)',1,1,0),(34735,0,134887,'San Gil','Colombia','CO','San Gil (Colombia)',1,1,0),(34736,33000,134888,'San Gimignano','Italy','IT','San Gimignano (Italy)',1,1,0),(34737,33004,134889,'San Giorgio in Bosco','Italy','IT','San Giorgio in Bosco (Italy)',1,1,0),(34738,33012,134890,'San Giovanni Rotondo','Italy','IT','San Giovanni Rotondo (Italy)',1,1,0),(34739,33013,134891,'San Giovanni Valdarno','Italy','IT','San Giovanni Valdarno (Italy)',1,1,0),(34740,33018,134892,'San Giustino','Italy','IT','San Giustino (Italy)',1,1,0),(34741,0,134893,'San Ignacio','Bolivia','BO','San Ignacio (Bolivia)',1,1,0),(34742,0,134894,'San Leonardello di Giarre','Italy','IT','San Leonardello di Giarre (Italy)',1,1,0),(34743,0,134895,'San Leonine-Bucine','Italy','IT','San Leonine-Bucine (Italy)',1,1,0),(34744,0,134896,'San Lorenzo Nuovo','Italy','IT','San Lorenzo Nuovo (Italy)',1,1,0),(34745,0,134897,'San Martin del Tesorillo','Spain','ES','San Martin del Tesorillo (Spain)',1,1,0),(34746,0,134898,'San Martino di Castrozza','Italy','IT','San Martino di Castrozza (Italy)',1,1,0),(34747,33093,134899,'San Mateo','United States of America','US','San Mateo (United States of America)',1,1,0),(34748,33096,134900,'San Mauro Torinese','Italy','IT','San Mauro Torinese (Italy)',1,1,0),(34749,0,134901,'San Miguel de Tucuman','Argentina','AR','San Miguel de Tucuman (Argentina)',1,1,0),(34750,0,134902,'San Miguel de Valero','Spain','ES','San Miguel de Valero (Spain)',1,1,0),(34751,0,134903,'San Nazzaro','Switzerland','CH','San Nazzaro (Switzerland)',1,1,0),(34752,0,134904,'San Pedro Manrique','Spain','ES','San Pedro Manrique (Spain)',1,1,0),(34753,33142,134905,'San Piero Patti','Italy','IT','San Piero Patti (Italy)',1,1,0),(34754,0,134906,'San Pietro di Feletto','Italy','IT','San Pietro di Feletto (Italy)',1,1,0),(34755,0,134907,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(34756,0,134908,'Richterswil','Switzerland','CH','Richterswil (Switzerland)',1,1,0),(34757,22924,134909,'Ridgefield','United States of America','US','Ridgefield (United States of America)',1,1,0),(34758,0,134910,'Ridgefield Park','United States of America','US','Ridgefield Park (United States of America)',1,1,0),(34759,0,134911,'Ried-Brig','Switzerland','CH','Ried-Brig (Switzerland)',1,1,0),(34760,0,134912,'Riedenburg','Germany','DE','Riedenburg (Germany)',1,1,0),(34761,0,134913,'Riedlingen','Germany','DE','Riedlingen (Germany)',1,1,0),(34762,0,134914,'Riegersburg','Austria','AT','Riegersburg (Austria)',1,1,0),(34763,0,134915,'Rieneck','Germany','DE','Rieneck (Germany)',1,1,0),(34764,0,134916,'Rigi-Scheidegg','Switzerland','CH','Rigi-Scheidegg (Switzerland)',1,1,0),(34765,22966,134917,'Rimsting','Germany','DE','Rimsting (Germany)',1,1,0),(34766,0,134918,'Rinchnach','Germany','DE','Rinchnach (Germany)',1,1,0),(34767,0,134919,'Riner','Spain','ES','Riner (Spain)',1,1,0),(34768,0,134920,'Ringgau','Germany','DE','Ringgau (Germany)',1,1,0),(34769,32706,134921,'Rio de Janeiro','Brazil','BR','Rio de Janeiro (Brazil)',1,1,0),(34770,0,134922,'Rio Gallegos','Argentina','AR','Rio Gallegos (Argentina)',1,1,0),(34771,32719,134923,'Rio Negrinho','Brazil','BR','Rio Negrinho (Brazil)',1,1,0),(34772,0,134924,'Rio nell\'Elba','Italy','IT','Rio nell\'Elba (Italy)',1,1,0),(34773,32720,134925,'Rio Quente','Brazil','BR','Rio Quente (Brazil)',1,1,0),(34774,32721,134926,'Rio Rancho','United States of America','US','Rio Rancho (United States of America)',1,1,0),(34775,23009,134927,'Ripalimosani','Italy','IT','Ripalimosani (Italy)',1,1,0),(34776,0,134928,'Ripenda Kras','Croatia','HR','Ripenda Kras (Croatia)',1,1,0),(34777,0,134929,'Ripley','United States of America','US','Ripley (United States of America)',1,1,0),(34778,0,134930,'Ripon','United States of America','US','Ripon (United States of America)',1,1,0),(34779,23016,134931,'Riquewihr','France','FR','Riquewihr (France)',1,1,0),(34780,0,134933,'Risskov','Denmark','DK','Risskov (Denmark)',1,1,0),(34781,0,134934,'Ristonchi','Italy','IT','Ristonchi (Italy)',1,1,0),(34782,0,134935,'Ritterhude','Germany','DE','Ritterhude (Germany)',1,1,0),(34783,0,134936,'Ritzingen','Switzerland','CH','Ritzingen (Switzerland)',1,1,0),(34784,23025,134937,'Ritzville','United States of America','US','Ritzville (United States of America)',1,1,0),(34785,0,134938,'Riversdale','South Africa','ZA','Riversdale (South Africa)',1,1,0),(34786,0,134939,'Riverside','United States of America','US','Riverside (United States of America)',1,1,0),(34787,0,134940,'Riverstown','Ireland','IE','Riverstown (Ireland)',1,1,0),(34788,0,134941,'Riviera Beach','United States of America','US','Riviera Beach (United States of America)',1,1,0),(34789,23049,134942,'Riviere Du Loup','Canada','CA','Riviere Du Loup (Canada)',1,1,0),(34790,0,134943,'Riviere du Rempart','Mauritius','MU','Riviere du Rempart (Mauritius)',1,1,0),(34791,0,134944,'Roanoke','United States of America','US','Roanoke (United States of America)',1,1,0),(34792,23068,134945,'Robecchetto con Induno','Italy','IT','Robecchetto con Induno (Italy)',1,1,0),(34793,23076,134946,'Robinson','United States of America','US','Robinson (United States of America)',1,1,0),(34794,0,134947,'Robinville','Australia','AU','Robinville (Australia)',1,1,0),(34795,0,134948,'Rocallaura','Spain','ES','Rocallaura (Spain)',1,1,0),(34796,23107,134949,'Rochelle','United States of America','US','Rochelle (United States of America)',1,1,0),(34797,23108,134950,'Rochemaure','France','FR','Rochemaure (France)',1,1,0),(34798,23118,134951,'Rockford','United States of America','US','Rockford (United States of America)',1,1,0),(34799,0,134952,'Rocky Harbour','Canada','CA','Rocky Harbour (Canada)',1,1,0),(34800,0,134953,'Rocky Mount','United States of America','US','Rocky Mount (United States of America)',1,1,0),(34801,0,134954,'Rocourt','Switzerland','CH','Rocourt (Switzerland)',1,1,0),(34802,23142,134955,'Rodermark','Germany','DE','Rodermark (Germany)',1,1,0),(34803,23144,134956,'Rodgau','Germany','DE','Rodgau (Germany)',1,1,0),(34804,0,134957,'Roggosen','Germany','DE','Roggosen (Germany)',1,1,0),(34805,0,134958,'Rognes','France','FR','Rognes (France)',1,1,0),(34806,0,134959,'Rohrbach','Austria','AT','Rohrbach (Austria)',1,1,0),(34807,0,134960,'Roi Et','Thailand','TH','Roi Et (Thailand)',1,1,0),(34808,23184,134961,'Roldan','Spain','ES','Roldan (Spain)',1,1,0),(34809,0,134962,'Rolla','United States of America','US','Rolla (United States of America)',1,1,0),(34810,0,134963,'Romallo','Italy','IT','Romallo (Italy)',1,1,0),(34811,23196,134964,'Roman','Romania','RO','Roman (Romania)',1,1,0),(34812,23203,134965,'Romeoville','United States of America','US','Romeoville (United States of America)',1,1,0),(34813,0,134966,'Romsdalen','Norway','NO','Romsdalen (Norway)',1,1,0),(34814,0,134967,'Romsey','United Kingdom','UK','Romsey (United Kingdom)',1,1,0),(34815,0,134968,'Ron','Norway','NO','Ron (Norway)',1,1,0),(34816,23216,134969,'Ronchi','Italy','IT','Ronchi (Italy)',1,1,0),(34817,0,134970,'Rondebosch East','South Africa','ZA','Rondebosch East (South Africa)',1,1,0),(34818,23226,134971,'Ronkonkoma','United States of America','US','Ronkonkoma (United States of America)',1,1,0),(34819,23227,134972,'Ronks','United States of America','US','Ronks (United States of America)',1,1,0),(34820,23236,134973,'Roosevelt','United States of America','US','Roosevelt (United States of America)',1,1,0),(34821,0,134974,'Roosta','Estonia','EE','Roosta (Estonia)',1,1,0),(34822,23238,134975,'Rooty Hill','Australia','AU','Rooty Hill (Australia)',1,1,0),(34823,0,134976,'Roquetas de Mar','Spain','ES','Roquetas de Mar (Spain)',1,1,0),(34824,23247,134977,'Roros','Norway','NO','Roros (Norway)',1,1,0),(34825,23249,134978,'Rorschacherberg','Switzerland','CH','Rorschacherberg (Switzerland)',1,1,0),(34826,23263,134979,'Roseau','United States of America','US','Roseau (United States of America)',1,1,0),(34827,0,134980,'Rosignano Monferrato','Italy','IT','Rosignano Monferrato (Italy)',1,1,0),(34828,0,134981,'Ro?haupten','Germany','DE','Ro?haupten (Germany)',1,1,0),(34829,0,134982,'Ross-on-Wye','United Kingdom','UK','Ross-on-Wye (United Kingdom)',1,1,0),(34830,0,134983,'Rostov on Don','Russia','RU','Rostov on Don (Russia)',1,1,0),(34831,0,134984,'Rostrenen','France','FR','Rostrenen (France)',1,1,0),(34832,0,134985,'Roswell','United States of America','US','Roswell (United States of America)',1,1,0),(34833,0,134986,'Rotenburg (Wumme)','Germany','DE','Rotenburg (Wumme) (Germany)',1,1,0),(34834,0,134987,'Rotensol','Germany','DE','Rotensol (Germany)',1,1,0),(34835,23333,134988,'Rothaurach','Germany','DE','Rothaurach (Germany)',1,1,0),(34836,0,134989,'Rothwell','United Kingdom','UK','Rothwell (United Kingdom)',1,1,0),(34837,0,134990,'Rotkreuz','Switzerland','CH','Rotkreuz (Switzerland)',1,1,0),(34838,0,134991,'Rott','France','FR','Rott (France)',1,1,0),(34839,23354,134992,'Rotterdam','Netherlands','NL','Rotterdam (Netherlands)',1,1,0),(34840,0,134993,'Rotz-Hillstett','Germany','DE','Rotz-Hillstett (Germany)',1,1,0),(34841,23362,134994,'Rouffach','France','FR','Rouffach (France)',1,1,0),(34842,23370,134995,'Roundup','United States of America','US','Roundup (United States of America)',1,1,0),(34843,23378,134996,'Rouyn-Noranda','Canada','CA','Rouyn-Noranda (Canada)',1,1,0),(34844,23386,134997,'Rovio','Switzerland','CH','Rovio (Switzerland)',1,1,0),(34845,23396,134998,'Roxas City','Philippines','PH','Roxas City (Philippines)',1,1,0),(34846,0,134999,'Roye','France','FR','Roye (France)',1,1,0),(34847,0,135000,'Rozhdestvenno','Russia','RU','Rozhdestvenno (Russia)',1,1,0),(34848,23412,135001,'Rozmberk nad Vltavou','Czech Republic','CZ','Rozmberk nad Vltavou (Czech Republic)',1,1,0),(34849,0,135002,'Rudnik','Czech Republic','CZ','Rudnik (Czech Republic)',1,1,0),(34850,0,135003,'Rudolphstein','Germany','DE','Rudolphstein (Germany)',1,1,0),(34851,0,135004,'Rueras','Switzerland','CH','Rueras (Switzerland)',1,1,0),(34852,23448,135005,'Rugy','France','FR','Rugy (France)',1,1,0),(34853,0,135006,'Ruhstadt','Germany','DE','Ruhstadt (Germany)',1,1,0),(34854,0,135007,'Ruidoso Downs','United States of America','US','Ruidoso Downs (United States of America)',1,1,0),(34855,23460,135008,'Rukavac','Croatia','HR','Rukavac (Croatia)',1,1,0),(34856,0,135009,'Saaldorf','Germany','DE','Saaldorf (Germany)',1,1,0),(34857,23543,135010,'Saales','France','FR','Saales (France)',1,1,0),(34858,23545,135011,'Saalfelden','Austria','AT','Saalfelden (Austria)',1,1,0),(34859,23550,135012,'Saariselka','Finland','FI','Saariselka (Finland)',1,1,0),(34860,23562,135013,'Sabang','Philippines','PH','Sabang (Philippines)',1,1,0),(34861,0,135014,'Sabugueiro','Portugal','PT','Sabugueiro (Portugal)',1,1,0),(34862,0,135015,'Sadillac','France','FR','Sadillac (France)',1,1,0),(34863,0,135016,'Saem Village','Cambodia','KH','Saem Village (Cambodia)',1,1,0),(34864,0,135017,'Safety Harbour','United States of America','US','Safety Harbour (United States of America)',1,1,0),(34865,0,135018,'Saffron Walden','United Kingdom','UK','Saffron Walden (United Kingdom)',1,1,0),(34866,0,135019,'Queen Elizabeth National Park','Uganda','UG','Queen Elizabeth National Park (Uganda)',1,1,0),(34867,0,135020,'Querceta','Italy','IT','Querceta (Italy)',1,1,0),(34868,0,135021,'Quezon City','Philippines','PH','Quezon City (Philippines)',1,1,0),(34869,22398,135022,'Quiberon','France','FR','Quiberon (France)',1,1,0),(34870,22402,135023,'Quillan','France','FR','Quillan (France)',1,1,0),(34871,0,135024,'Quimiac','France','FR','Quimiac (France)',1,1,0),(34872,0,135025,'Quingey','France','FR','Quingey (France)',1,1,0),(34873,22421,135026,'Quintanilla de Arriba','Spain','ES','Quintanilla de Arriba (Spain)',1,1,0),(34874,0,135027,'Quintanilla del Rebollar','Spain','ES','Quintanilla del Rebollar (Spain)',1,1,0),(34875,22428,135028,'Quitman','United States of America','US','Quitman (United States of America)',1,1,0),(34876,22429,135029,'Quito','Ecuador','EC','Quito (Ecuador)',1,1,0),(34877,32657,135030,'Raa Atoll','Maldives','MV','Raa Atoll (Maldives)',1,1,0),(34878,0,135031,'Rabke','Germany','DE','Rabke (Germany)',1,1,0),(34879,0,135032,'Rabun Gap','United States of America','US','Rabun Gap (United States of America)',1,1,0),(34880,22455,135033,'Raciborz','Poland','PL','Raciborz (Poland)',1,1,0),(34881,0,135034,'Raddusch','Germany','DE','Raddusch (Germany)',1,1,0),(34882,22468,135035,'Radevormwald','Germany','DE','Radevormwald (Germany)',1,1,0),(34883,0,135036,'Radewege','Germany','DE','Radewege (Germany)',1,1,0),(34884,22488,135037,'Ragalna','Italy','IT','Ragalna (Italy)',1,1,0),(34885,22530,135038,'Ramatuelle','France','FR','Ramatuelle (France)',1,1,0),(34886,0,135039,'Ramsey','United States of America','US','Ramsey (United States of America)',1,1,0),(34887,0,135040,'Ramsgate','South Africa','ZA','Ramsgate (South Africa)',1,1,0),(34888,22559,135041,'Ranau','Malaysia','MY','Ranau (Malaysia)',1,1,0),(34889,0,135042,'Rancho Bernardo','United States of America','US','Rancho Bernardo (United States of America)',1,1,0),(34890,0,135043,'Ranco','Italy','IT','Ranco (Italy)',1,1,0),(34891,22570,135044,'Randburg','South Africa','ZA','Randburg (South Africa)',1,1,0),(34892,0,135045,'Randersacker','Germany','DE','Randersacker (Germany)',1,1,0),(34893,22573,135046,'Randolph','United States of America','US','Randolph (United States of America)',1,1,0),(34894,22578,135047,'Rangely','United States of America','US','Rangely (United States of America)',1,1,0),(34895,0,135048,'Ranis','Germany','DE','Ranis (Germany)',1,1,0),(34896,0,135049,'Ranomafana','Madagascar','MG','Ranomafana (Madagascar)',1,1,0),(34897,0,135050,'Ranten','Austria','AT','Ranten (Austria)',1,1,0),(34898,0,135051,'Rapanji','Croatia','HR','Rapanji (Croatia)',1,1,0),(34899,22598,135052,'Raphine','United States of America','US','Raphine (United States of America)',1,1,0),(34900,22601,135053,'Rapperswil','Switzerland','CH','Rapperswil (Switzerland)',1,1,0),(34901,0,135054,'Rasdhu Atoll','Maldives','MV','Rasdhu Atoll (Maldives)',1,1,0),(34902,22608,135055,'Rasta','Norway','NO','Rasta (Norway)',1,1,0),(34903,0,135056,'Rathdrum','Ireland','IE','Rathdrum (Ireland)',1,1,0),(34904,0,135057,'Rathmannsdorf','Germany','DE','Rathmannsdorf (Germany)',1,1,0),(34905,22617,135058,'Ratingen','Germany','DE','Ratingen (Germany)',1,1,0),(34906,0,135059,'Ratten','Austria','AT','Ratten (Austria)',1,1,0),(34907,0,135060,'Rauschenberg','Germany','DE','Rauschenberg (Germany)',1,1,0),(34908,22639,135061,'Rawa Mazowiecka','Poland','PL','Rawa Mazowiecka (Poland)',1,1,0),(34909,0,135062,'Rayville','United States of America','US','Rayville (United States of America)',1,1,0),(34910,22654,135063,'Razac-sur-l\'Isle','France','FR','Razac-sur-l\'Isle (France)',1,1,0),(34911,22656,135064,'Razlog','Bulgaria','BG','Razlog (Bulgaria)',1,1,0),(34912,22669,135065,'Recco','Italy','IT','Recco (Italy)',1,1,0),(34913,0,135066,'Red Deer','Canada','CA','Red Deer (Canada)',1,1,0),(34914,32674,135067,'Red Lion','United States of America','US','Red Lion (United States of America)',1,1,0),(34915,0,135068,'Rednitzhembach','Germany','DE','Rednitzhembach (Germany)',1,1,0),(34916,0,135069,'Redwood Falls','United States of America','US','Redwood Falls (United States of America)',1,1,0),(34917,22725,135070,'Regensburg','Germany','DE','Regensburg (Germany)',1,1,0),(34918,0,135071,'Reichenau','Germany','DE','Reichenau (Germany)',1,1,0),(34919,0,135072,'Reichenbach im Kandertal','Switzerland','CH','Reichenbach im Kandertal (Switzerland)',1,1,0),(34920,0,135073,'Reichenbuch','Germany','DE','Reichenbuch (Germany)',1,1,0),(34921,22746,135074,'Reilingen','Germany','DE','Reilingen (Germany)',1,1,0),(34922,0,135075,'Reinhardtsdorf-Schona','Germany','DE','Reinhardtsdorf-Schona (Germany)',1,1,0),(34923,0,135076,'Reischach','Italy','IT','Reischach (Italy)',1,1,0),(34924,0,135077,'Reischenhart','Germany','DE','Reischenhart (Germany)',1,1,0),(34925,0,135078,'Reith bei (by) Seefeld','Austria','AT','Reith bei (by) Seefeld (Austria)',1,1,0),(34926,0,135079,'Reken','Germany','DE','Reken (Germany)',1,1,0),(34927,22759,135080,'Rellingen','Germany','DE','Rellingen (Germany)',1,1,0),(34928,22761,135081,'Remaisnil','France','FR','Remaisnil (France)',1,1,0),(34929,0,135082,'Remouchamps','Belgium','BE','Remouchamps (Belgium)',1,1,0),(34930,22767,135083,'Remuera','New Zealand','NZ','Remuera (New Zealand)',1,1,0),(34931,0,135084,'Rendsburg','Germany','DE','Rendsburg (Germany)',1,1,0),(34932,32687,135085,'Rennes','France','FR','Rennes (France)',1,1,0),(34933,22788,135086,'Renton','United States of America','US','Renton (United States of America)',1,1,0),(34934,22814,135087,'Rettenbach','Germany','DE','Rettenbach (Germany)',1,1,0),(34935,0,135088,'Reusel','Netherlands','NL','Reusel (Netherlands)',1,1,0),(34936,22834,135089,'Rexburg','United States of America','US','Rexburg (United States of America)',1,1,0),(34937,22839,135090,'Reykjavik','Iceland','IS','Reykjavik (Iceland)',1,1,0),(34938,22843,135091,'Reynosa','Mexico','MX','Reynosa (Mexico)',1,1,0),(34939,22847,135092,'Rheda-Wiedenbruck','Germany','DE','Rheda-Wiedenbruck (Germany)',1,1,0),(34940,0,135093,'Rheinbach','Germany','DE','Rheinbach (Germany)',1,1,0),(34941,22855,135094,'Rheinsberg','Germany','DE','Rheinsberg (Germany)',1,1,0),(34942,0,135095,'Rhodes Town','Greece','GR','Rhodes Town (Greece)',1,1,0),(34943,0,135096,'Rhodt unter Rietburg','Germany','DE','Rhodt unter Rietburg (Germany)',1,1,0),(34944,0,135097,'Rhyl','United Kingdom','UK','Rhyl (United Kingdom)',1,1,0),(34945,0,135098,'Riano','Spain','ES','Riano (Spain)',1,1,0),(34946,0,135099,'Riba Roja d\'Erbe','Spain','ES','Riba Roja d\'Erbe (Spain)',1,1,0),(34947,32694,135100,'Rice Lake','United States of America','US','Rice Lake (United States of America)',1,1,0),(34948,0,135101,'Richmond','United States of America','US','Richmond (United States of America)',1,1,0),(34949,0,135102,'Richmond Hill','United States of America','US','Richmond Hill (United States of America)',1,1,0),(34950,0,135103,'Ridgefield','United States of America','US','Ridgefield (United States of America)',1,1,0),(34951,0,135104,'Ridgeland','United States of America','US','Ridgeland (United States of America)',1,1,0),(34952,22927,135105,'Ridgeway','United States of America','US','Ridgeway (United States of America)',1,1,0),(34953,0,135106,'Ridnaun','Italy','IT','Ridnaun (Italy)',1,1,0),(34954,0,135107,'Ried','Austria','AT','Ried (Austria)',1,1,0),(34955,0,135108,'Ried im Zillertal','Austria','AT','Ried im Zillertal (Austria)',1,1,0),(34956,0,135109,'Riedhutte','Germany','DE','Riedhutte (Germany)',1,1,0),(34957,0,135110,'Riedwihr','France','FR','Riedwihr (France)',1,1,0),(34958,22937,135111,'Riesenbeck','Germany','DE','Riesenbeck (Germany)',1,1,0),(34959,0,135112,'Rigutino','Italy','IT','Rigutino (Italy)',1,1,0),(34960,22960,135113,'Rimbach','Germany','DE','Rimbach (Germany)',1,1,0),(34961,22961,135114,'Rimbey','Canada','CA','Rimbey (Canada)',1,1,0),(34962,22965,135115,'Rimske Toplice','Slovenia','SI','Rimske Toplice (Slovenia)',1,1,0),(34963,0,135116,'Rinas','Albania','AL','Rinas (Albania)',1,1,0),(34964,22985,135117,'Ringsheim','Germany','DE','Ringsheim (Germany)',1,1,0),(34965,0,135118,'Rio Hondo','Guatemala','GT','Rio Hondo (Guatemala)',1,1,0),(34966,0,135119,'Rio Hurtado','Chile','CL','Rio Hurtado (Chile)',1,1,0),(34967,0,135120,'Rio Maiz National Park','Nicaragua','NI','Rio Maiz National Park (Nicaragua)',1,1,0),(34968,32722,135121,'Rio Rico','United States of America','US','Rio Rico (United States of America)',1,1,0),(34969,0,135122,'Rio San Juan / San Juan','Dominican Republic','DO','Rio San Juan / San Juan (Dominican Republic)',1,1,0),(34970,23003,135123,'Riom','France','FR','Riom (France)',1,1,0),(34971,0,135124,'Riotorto','Italy','IT','Riotorto (Italy)',1,1,0),(34972,0,135125,'Ripafratta','Italy','IT','Ripafratta (Italy)',1,1,0),(34973,0,135126,'Ripley','United Kingdom','UK','Ripley (United Kingdom)',1,1,0),(34974,0,135127,'Ripoll','Spain','ES','Ripoll (Spain)',1,1,0),(34975,0,135128,'Rovies','Greece','GR','Rovies (Greece)',1,1,0),(34976,0,135129,'Roxby Downs','Australia','AU','Roxby Downs (Australia)',1,1,0),(34977,0,135130,'Roy Bridge','United Kingdom','UK','Roy Bridge (United Kingdom)',1,1,0),(34978,0,135131,'Royal Tunbridge Wells','United Kingdom','UK','Royal Tunbridge Wells (United Kingdom)',1,1,0),(34979,0,135132,'Royken','Norway','NO','Royken (Norway)',1,1,0),(34980,0,135133,'Royrvik','Norway','NO','Royrvik (Norway)',1,1,0),(34981,0,135134,'Ruacana','Namibia','NA','Ruacana (Namibia)',1,1,0),(34982,0,135135,'Ruhengri','Rwanda','RW','Ruhengri (Rwanda)',1,1,0),(34983,0,135136,'Ruidera','Spain','ES','Ruidera (Spain)',1,1,0),(34984,23453,135137,'Ruidoso','United States of America','US','Ruidoso (United States of America)',1,1,0),(34985,0,135138,'Rukavac Luka','Croatia','HR','Rukavac Luka (Croatia)',1,1,0),(34986,0,135139,'Rumburk','Czech Republic','CZ','Rumburk (Czech Republic)',1,1,0),(34987,0,135140,'Runaway Bay','Australia','AU','Runaway Bay (Australia)',1,1,0),(34988,23470,135141,'Rungis','France','FR','Rungis (France)',1,1,0),(34989,0,135142,'Runowo Krajenskie','Poland','PL','Runowo Krajenskie (Poland)',1,1,0),(34990,0,135143,'Ruoms','France','FR','Ruoms (France)',1,1,0),(34991,0,135144,'Russellville','United States of America','US','Russellville (United States of America)',1,1,0),(34992,23503,135145,'Ruston','United States of America','US','Ruston (United States of America)',1,1,0),(34993,0,135146,'Ruswarp','United Kingdom','UK','Ruswarp (United Kingdom)',1,1,0),(34994,23505,135147,'Rute','Spain','ES','Rute (Spain)',1,1,0),(34995,23507,135148,'Ruteng','Indonesia','ID','Ruteng (Indonesia)',1,1,0),(34996,0,135149,'Ruthen','Germany','DE','Ruthen (Germany)',1,1,0),(34997,0,135150,'Rutzenham','Austria','AT','Rutzenham (Austria)',1,1,0),(34998,0,135151,'Rydzewo','Poland','PL','Rydzewo (Poland)',1,1,0),(34999,0,135152,'S. Andrea','Italy','IT','S. Andrea (Italy)',1,1,0),(35000,0,135153,'Saanapu','Samoa','WS','Saanapu (Samoa)',1,1,0),(35001,0,135154,'Saargemund','France','FR','Saargemund (France)',1,1,0),(35002,23553,135155,'Saarlouis','Germany','DE','Saarlouis (Germany)',1,1,0),(35003,23555,135156,'Saas-Fee','Switzerland','CH','Saas-Fee (Switzerland)',1,1,0),(35004,0,135157,'Sabi Sands Game Reserve','South Africa','ZA','Sabi Sands Game Reserve (South Africa)',1,1,0),(35005,0,135158,'Sabinosa','Spain','ES','Sabinosa (Spain)',1,1,0),(35006,0,135159,'Sables-d Or-les-Pins','France','FR','Sables-d Or-les-Pins (France)',1,1,0),(35007,23572,135160,'Sable-sur-Sarthe','France','FR','Sable-sur-Sarthe (France)',1,1,0),(35008,23575,135161,'Sabro','Denmark','DK','Sabro (Denmark)',1,1,0),(35009,0,135162,'Sacile','Italy','IT','Sacile (Italy)',1,1,0),(35010,23589,135163,'Saddle Brook','United States of America','US','Saddle Brook (United States of America)',1,1,0),(35011,0,135164,'S?bo','Norway','NO','S?bo (Norway)',1,1,0),(35012,23594,135165,'Safaga','Egypt','EG','Safaga (Egypt)',1,1,0),(35013,23609,135166,'Saggart','Ireland','IE','Saggart (Ireland)',1,1,0),(35014,23618,135167,'Sahagun','Spain','ES','Sahagun (Spain)',1,1,0),(35015,0,135168,'Sahl Hasheesh','Egypt','EG','Sahl Hasheesh (Egypt)',1,1,0),(35016,0,135169,'Sai Yok','Thailand','TH','Sai Yok (Thailand)',1,1,0),(35017,0,135170,'Saint Antonin','Canada','CA','Saint Antonin (Canada)',1,1,0),(35018,0,135171,'Saint Augustine Beach','United States of America','US','Saint Augustine Beach (United States of America)',1,1,0),(35019,0,135172,'Saint Cannat','France','FR','Saint Cannat (France)',1,1,0),(35020,0,135173,'Saint Clair','United States of America','US','Saint Clair (United States of America)',1,1,0),(35021,0,135174,'Saint Francis','United States of America','US','Saint Francis (United States of America)',1,1,0),(35022,0,135175,'Saint Helens','United States of America','US','Saint Helens (United States of America)',1,1,0),(35023,0,135176,'Saint Jean de Monts','France','FR','Saint Jean de Monts (France)',1,1,0),(35024,0,135177,'Saint Jean Le Thomas','France','FR','Saint Jean Le Thomas (France)',1,1,0),(35025,0,135178,'Saint John','U.S. Virgin Islands',NULL,'Saint John (U.S. Virgin Islands)',1,1,0),(35026,0,135179,'Saint Louis (Kouchibouguac NP)','Canada','CA','Saint Louis (Kouchibouguac NP) (Canada)',1,1,0),(35027,0,135180,'Saint Lucie de Moriani','France','FR','Saint Lucie de Moriani (France)',1,1,0),(35028,0,135181,'Saint Marys','United States of America','US','Saint Marys (United States of America)',1,1,0),(35029,0,135182,'Saint Vaast la Hougue','France','FR','Saint Vaast la Hougue (France)',1,1,0),(35030,23647,135183,'Saint-Albain','France','FR','Saint-Albain (France)',1,1,0),(35031,0,135184,'Saint-Alphonse-Rodriguez','Canada','CA','Saint-Alphonse-Rodriguez (Canada)',1,1,0),(35032,0,135185,'Saint-Andre-de-Majencoules','France','FR','Saint-Andre-de-Majencoules (France)',1,1,0),(35033,23656,135186,'Saint-Andre-les-Alpes','France','FR','Saint-Andre-les-Alpes (France)',1,1,0),(35034,0,135187,'Saint-Avit-de-Vialard','France','FR','Saint-Avit-de-Vialard (France)',1,1,0),(35035,23668,135188,'Saint-Avold','France','FR','Saint-Avold (France)',1,1,0),(35036,23676,135189,'Saint-Bonnet-en-Champsaur','France','FR','Saint-Bonnet-en-Champsaur (France)',1,1,0),(35037,0,135190,'Saint-Bonnet-Troncais','France','FR','Saint-Bonnet-Troncais (France)',1,1,0),(35038,23684,135191,'Saint-Brice-sous-Foret','France','FR','Saint-Brice-sous-Foret (France)',1,1,0),(35039,0,135192,'Saint-Chely-d\'Aubrac','France','FR','Saint-Chely-d\'Aubrac (France)',1,1,0),(35040,0,135193,'Saint-Cricq-Chalosse','France','FR','Saint-Cricq-Chalosse (France)',1,1,0),(35041,23701,135194,'Saint-Cyr-sur-Mer','France','FR','Saint-Cyr-sur-Mer (France)',1,1,0),(35042,23706,135195,'Saint-Didier','France','FR','Saint-Didier (France)',1,1,0),(35043,23711,135196,'Sainte Luce','Martinique','MQ','Sainte Luce (Martinique)',1,1,0),(35044,0,135197,'Sainte Tulle','France','FR','Sainte Tulle (France)',1,1,0),(35045,0,135198,'Sainte-Foy-la-Grande','France','FR','Sainte-Foy-la-Grande (France)',1,1,0),(35046,0,135199,'Saint-Emilion','France','FR','Saint-Emilion (France)',1,1,0),(35047,0,135200,'Saint-Esteben','France','FR','Saint-Esteben (France)',1,1,0),(35048,23752,135201,'Saint-Etienne','France','FR','Saint-Etienne (France)',1,1,0),(35049,0,135202,'Saint-Flour','France','FR','Saint-Flour (France)',1,1,0),(35050,0,135203,'Saint-Georges','Canada','CA','Saint-Georges (Canada)',1,1,0),(35051,0,135204,'Saint-Gervais-d\'Auvergne','France','FR','Saint-Gervais-d\'Auvergne (France)',1,1,0),(35052,0,135205,'Saint-Gratien-Savigny','France','FR','Saint-Gratien-Savigny (France)',1,1,0),(35053,23780,135206,'Saint-Herblain','France','FR','Saint-Herblain (France)',1,1,0),(35054,0,135207,'Saint-Hilaire-d\'Ozilhan','France','FR','Saint-Hilaire-d\'Ozilhan (France)',1,1,0),(35055,32889,135208,'Saint-Jean','France','FR','Saint-Jean (France)',1,1,0),(35056,23792,135209,'Saint-Jean-d\'Arves','France','FR','Saint-Jean-d\'Arves (France)',1,1,0),(35057,23793,135210,'Saint-Jean-de-Blaignac','France','FR','Saint-Jean-de-Blaignac (France)',1,1,0),(35058,0,135211,'Saint-Jean-de-Losne','France','FR','Saint-Jean-de-Losne (France)',1,1,0),(35059,23801,135212,'Saint-Jean-du-Gard','France','FR','Saint-Jean-du-Gard (France)',1,1,0),(35060,23803,135213,'Saint-Jean-le-Blanc','France','FR','Saint-Jean-le-Blanc (France)',1,1,0),(35061,23810,135214,'Saint-Jorioz','France','FR','Saint-Jorioz (France)',1,1,0),(35062,0,135215,'Saint-Josse','France','FR','Saint-Josse (France)',1,1,0),(35063,23812,135216,'Saint-Jouan-des-Guerets','France','FR','Saint-Jouan-des-Guerets (France)',1,1,0),(35064,0,135217,'Saint-Laurent-du-Verdon','France','FR','Saint-Laurent-du-Verdon (France)',1,1,0),(35065,0,135218,'Saint-Leger-sous-Brienne','France','FR','Saint-Leger-sous-Brienne (France)',1,1,0),(35066,23841,135219,'Saint-Lys','France','FR','Saint-Lys (France)',1,1,0),(35067,23844,135220,'Saint-Marcel','France','FR','Saint-Marcel (France)',1,1,0),(35068,23847,135221,'Saint-Martin-aux-Chartrains','France','FR','Saint-Martin-aux-Chartrains (France)',1,1,0),(35069,0,135222,'Saint-Martin-Bellevue','France','FR','Saint-Martin-Bellevue (France)',1,1,0),(35070,0,135223,'Saint-Martin-des-Champs','France','FR','Saint-Martin-des-Champs (France)',1,1,0),(35071,0,135224,'Saint-Mathieu-du-Parc','Canada','CA','Saint-Mathieu-du-Parc (Canada)',1,1,0),(35072,0,135225,'Saint-Maurice-d\'Ibie','France','FR','Saint-Maurice-d\'Ibie (France)',1,1,0),(35073,23498,135226,'Rust','Germany','DE','Rust (Germany)',1,1,0),(35074,23510,135227,'Rutherford','Australia','AU','Rutherford (Australia)',1,1,0),(35075,0,135228,'Ry','Denmark','DK','Ry (Denmark)',1,1,0),(35076,23531,135229,'Rzeszow','Poland','PL','Rzeszow (Poland)',1,1,0),(35077,23540,135230,'Saalbach','Austria','AT','Saalbach (Austria)',1,1,0),(35078,0,135231,'Saaldorf-Surheim','Germany','DE','Saaldorf-Surheim (Germany)',1,1,0),(35079,0,135232,'Saara-Zehma','Germany','DE','Saara-Zehma (Germany)',1,1,0),(35080,0,135233,'Sabratha','Libya',NULL,'Sabratha (Libya)',1,1,0),(35081,23574,135234,'Sabres','France','FR','Sabres (France)',1,1,0),(35082,23584,135235,'Saclay','France','FR','Saclay (France)',1,1,0),(35083,0,135236,'Saco','United States of America','US','Saco (United States of America)',1,1,0),(35084,23598,135237,'Saffle','Sweden','SE','Saffle (Sweden)',1,1,0),(35085,0,135238,'Safita','Syria',NULL,'Safita (Syria)',1,1,0),(35086,23611,135239,'Saginaw','United States of America','US','Saginaw (United States of America)',1,1,0),(35087,0,135240,'Sagogn','Switzerland','CH','Sagogn (Switzerland)',1,1,0),(35088,23614,135241,'Sagres','Portugal','PT','Sagres (Portugal)',1,1,0),(35089,0,135242,'Saigo','Japan','JP','Saigo (Japan)',1,1,0),(35090,0,135243,'Saint Albans','United States of America','US','Saint Albans (United States of America)',1,1,0),(35091,0,135244,'Saint Andre des Eaux','France','FR','Saint Andre des Eaux (France)',1,1,0),(35092,0,135245,'Saint Cast','France','FR','Saint Cast (France)',1,1,0),(35093,0,135246,'Saint Cecile les Vignes','France','FR','Saint Cecile les Vignes (France)',1,1,0),(35094,0,135247,'Saint Croix Falls','United States of America','US','Saint Croix Falls (United States of America)',1,1,0),(35095,32792,135248,'Saint Cyprien','France','FR','Saint Cyprien (France)',1,1,0),(35096,0,135249,'Saint Francisville','United States of America','US','Saint Francisville (United States of America)',1,1,0),(35097,0,135250,'Saint Laurent des Arbres','France','FR','Saint Laurent des Arbres (France)',1,1,0),(35098,0,135251,'Saint Mandrier','France','FR','Saint Mandrier (France)',1,1,0),(35099,0,135252,'Saint Paul','United States of America','US','Saint Paul (United States of America)',1,1,0),(35100,0,135253,'Saint Robert','United States of America','US','Saint Robert (United States of America)',1,1,0),(35101,23652,135254,'Saint-Amour-Bellevue','France','FR','Saint-Amour-Bellevue (France)',1,1,0),(35102,0,135255,'Saint-Ave','France','FR','Saint-Ave (France)',1,1,0),(35103,0,135256,'Saint-Blaise','Switzerland','CH','Saint-Blaise (Switzerland)',1,1,0),(35104,0,135257,'Saint-Brais','Switzerland','CH','Saint-Brais (Switzerland)',1,1,0),(35105,23681,135258,'Saint-Briac-sur-Mer','France','FR','Saint-Briac-sur-Mer (France)',1,1,0),(35106,0,135259,'Saint-Bris-des-Bois','France','FR','Saint-Bris-des-Bois (France)',1,1,0),(35107,23690,135260,'Saint-Caradec','France','FR','Saint-Caradec (France)',1,1,0),(35108,23691,135261,'Saint-Cergues','France','FR','Saint-Cergues (France)',1,1,0),(35109,23692,135262,'Saint-Chaffrey','France','FR','Saint-Chaffrey (France)',1,1,0),(35110,0,135263,'Saint-Claude','France','FR','Saint-Claude (France)',1,1,0),(35111,0,135264,'Saint-Cloud','France','FR','Saint-Cloud (France)',1,1,0),(35112,0,135265,'Saint-Crepin-et-Carlucet','France','FR','Saint-Crepin-et-Carlucet (France)',1,1,0),(35113,0,135266,'Saint-Dezery','France','FR','Saint-Dezery (France)',1,1,0),(35114,0,135267,'Saint-Die-des-Vosges','France','FR','Saint-Die-des-Vosges (France)',1,1,0),(35115,23709,135268,'Saint-Dizier','France','FR','Saint-Dizier (France)',1,1,0),(35116,0,135269,'Sainte Marie Plage','France','FR','Sainte Marie Plage (France)',1,1,0),(35117,0,135270,'Sainte Soulle','France','FR','Sainte Soulle (France)',1,1,0),(35118,0,135271,'Sainte-Anne-d\'Auray','France','FR','Sainte-Anne-d\'Auray (France)',1,1,0),(35119,0,135272,'Sainte-Florence','France','FR','Sainte-Florence (France)',1,1,0),(35120,23736,135273,'Sainte-Luce-sur-Loire','France','FR','Sainte-Luce-sur-Loire (France)',1,1,0),(35121,0,135274,'Sainte-Marine','France','FR','Sainte-Marine (France)',1,1,0),(35122,23743,135275,'Sainte-Mere-Eglise','France','FR','Sainte-Mere-Eglise (France)',1,1,0),(35123,23744,135276,'Sainte-Preuve','France','FR','Sainte-Preuve (France)',1,1,0),(35124,23746,135277,'Saintes','France','FR','Saintes (France)',1,1,0),(35125,0,135278,'Saint-Faustin-Lac-Carre','Canada','CA','Saint-Faustin-Lac-Carre (Canada)',1,1,0),(35126,0,135279,'Saint-Fons','France','FR','Saint-Fons (France)',1,1,0),(35127,0,135280,'Saint-Fort-sur-Gironde','France','FR','Saint-Fort-sur-Gironde (France)',1,1,0),(35128,23779,135281,'Saint-Gregoire','France','FR','Saint-Gregoire (France)',1,1,0),(35129,23785,135282,'Saint-Hippolyte','France','FR','Saint-Hippolyte (France)',1,1,0),(35130,23788,135283,'Saint-Jacques-de-la-Lande','France','FR','Saint-Jacques-de-la-Lande (France)',1,1,0),(35131,23789,135284,'Saint-Jacques-des-Blats','France','FR','Saint-Jacques-des-Blats (France)',1,1,0),(35132,23791,135285,'Saint-Jean-d\'Ardieres','France','FR','Saint-Jean-d\'Ardieres (France)',1,1,0),(35133,23796,135286,'Saint-Jean-de-Matha','Canada','CA','Saint-Jean-de-Matha (Canada)',1,1,0),(35134,23805,135287,'Saint-Jean-le-Centenier','France','FR','Saint-Jean-le-Centenier (France)',1,1,0),(35135,23808,135288,'Saint-Jean-sur-Richelieu','Canada','CA','Saint-Jean-sur-Richelieu (Canada)',1,1,0),(35136,0,135289,'Saint-Jerome','Canada','CA','Saint-Jerome (Canada)',1,1,0),(35137,23814,135290,'Saint-Julien-Chapteuil','France','FR','Saint-Julien-Chapteuil (France)',1,1,0),(35138,0,135291,'Saint-Julien-Mont-Denis','France','FR','Saint-Julien-Mont-Denis (France)',1,1,0),(35139,0,135292,'Saint-Lary-Soulan','France','FR','Saint-Lary-Soulan (France)',1,1,0),(35140,0,135293,'Saint-Laurent-la-Vallee','France','FR','Saint-Laurent-la-Vallee (France)',1,1,0),(35141,0,135294,'Saint-Leonard-des-Bois','France','FR','Saint-Leonard-des-Bois (France)',1,1,0),(35142,0,135295,'Saint-Macaire','France','FR','Saint-Macaire (France)',1,1,0),(35143,0,135296,'Saint-Mards-de-Fresne','France','FR','Saint-Mards-de-Fresne (France)',1,1,0),(35144,0,135297,'Saint-Martin-d\'Arrossa','France','FR','Saint-Martin-d\'Arrossa (France)',1,1,0),(35145,0,135298,'Saint-Martin-le-Beau','France','FR','Saint-Martin-le-Beau (France)',1,1,0),(35146,0,135299,'Saint-Nazaire (Gard)','France','FR','Saint-Nazaire (Gard) (France)',1,1,0),(35147,0,135300,'Saint-Nexans','France','FR','Saint-Nexans (France)',1,1,0),(35148,0,135301,'Saint-Pantaleon-de-Larche','France','FR','Saint-Pantaleon-de-Larche (France)',1,1,0),(35149,23889,135302,'Saint-Paul-Trois-Chateaux','France','FR','Saint-Paul-Trois-Chateaux (France)',1,1,0),(35150,23899,135303,'Saint-Pierre-du-Perray','France','FR','Saint-Pierre-du-Perray (France)',1,1,0),(35151,0,135304,'Saint-Pierre-la-Mer','France','FR','Saint-Pierre-la-Mer (France)',1,1,0),(35152,23919,135305,'Saint-Rhemy-en-Bosses','Italy','IT','Saint-Rhemy-en-Bosses (Italy)',1,1,0),(35153,0,135306,'Saint-Sulpice','Canada','CA','Saint-Sulpice (Canada)',1,1,0),(35154,0,135307,'Saint-Sulpice-de-Royan','France','FR','Saint-Sulpice-de-Royan (France)',1,1,0),(35155,0,135308,'Saint-Verand','France','FR','Saint-Verand (France)',1,1,0),(35156,23948,135309,'Saint-Yrieix-la-Perche','France','FR','Saint-Yrieix-la-Perche (France)',1,1,0),(35157,0,135310,'Sajanogorsk','Russia','RU','Sajanogorsk (Russia)',1,1,0),(35158,0,135311,'Sajini','Croatia','HR','Sajini (Croatia)',1,1,0),(35159,0,135312,'Sakaki','Japan','JP','Sakaki (Japan)',1,1,0),(35160,0,135313,'Saki','Ukraine','UA','Saki (Ukraine)',1,1,0),(35161,0,135314,'Sal Rei','Cape Verde','CV','Sal Rei (Cape Verde)',1,1,0),(35162,32892,135315,'Sala Baganza','Italy','IT','Sala Baganza (Italy)',1,1,0),(35163,23963,135316,'Salalah','Oman','OM','Salalah (Oman)',1,1,0),(35164,23966,135317,'Salamanca','Mexico','MX','Salamanca (Mexico)',1,1,0),(35165,0,135318,'Salas De Los Infantes','Spain','ES','Salas De Los Infantes (Spain)',1,1,0),(35166,23981,135319,'Sale','Australia','AU','Sale (Australia)',1,1,0),(35167,0,135320,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(35168,23661,135321,'Saint-Arcons-d\'Allier','France','FR','Saint-Arcons-d\'Allier (France)',1,1,0),(35169,23663,135322,'Saint-Arnoult','France','FR','Saint-Arnoult (France)',1,1,0),(35170,23667,135323,'Saint-Avertin','France','FR','Saint-Avertin (France)',1,1,0),(35171,0,135324,'Saint-Benoit-des-Ondes','France','FR','Saint-Benoit-des-Ondes (France)',1,1,0),(35172,0,135325,'Saint-Brevin-l\'Ocean','France','FR','Saint-Brevin-l\'Ocean (France)',1,1,0),(35173,23683,135326,'Saint-Brice-en-Cogles','France','FR','Saint-Brice-en-Cogles (France)',1,1,0),(35174,0,135327,'Saint-Clement-des-Baleines','France','FR','Saint-Clement-des-Baleines (France)',1,1,0),(35175,23697,135328,'Saint-Contest','France','FR','Saint-Contest (France)',1,1,0),(35176,0,135329,'Saint-Donat-sur-l\'Herbasse','France','FR','Saint-Donat-sur-l\'Herbasse (France)',1,1,0),(35177,0,135330,'Sainte Anne de Guadeloupe','Guadeloupe','GP','Sainte Anne de Guadeloupe (Guadeloupe)',1,1,0),(35178,0,135331,'Sainte Marie','Martinique','MQ','Sainte Marie (Martinique)',1,1,0),(35179,0,135332,'Sainte Rose','Guadeloupe','GP','Sainte Rose (Guadeloupe)',1,1,0),(35180,0,135333,'Sainte-Anastasie-sur-Issole','France','FR','Sainte-Anastasie-sur-Issole (France)',1,1,0),(35181,0,135334,'Sainte-Anne-des-Monts','Canada','CA','Sainte-Anne-des-Monts (Canada)',1,1,0),(35182,23729,135335,'Saint-Egreve','France','FR','Saint-Egreve (France)',1,1,0),(35183,0,135336,'Sainte-Livrade-sur-Lot','France','FR','Sainte-Livrade-sur-Lot (France)',1,1,0),(35184,23740,135337,'Sainte-Marie-la-Mer','France','FR','Sainte-Marie-la-Mer (France)',1,1,0),(35185,0,135338,'Sainte-Radegonde','France','FR','Sainte-Radegonde (France)',1,1,0),(35186,0,135339,'Saint-Etienne-de-Tinee','France','FR','Saint-Etienne-de-Tinee (France)',1,1,0),(35187,0,135340,'Saint-Etienne-du-Bois','France','FR','Saint-Etienne-du-Bois (France)',1,1,0),(35188,23756,135341,'Saint-Etienne-en-Devoluy','France','FR','Saint-Etienne-en-Devoluy (France)',1,1,0),(35189,23758,135342,'Saint-Fargeau-Ponthierry','France','FR','Saint-Fargeau-Ponthierry (France)',1,1,0),(35190,0,135343,'Saint-Floret','France','FR','Saint-Floret (France)',1,1,0),(35191,23762,135344,'Saint-Francois-Longchamp','France','FR','Saint-Francois-Longchamp (France)',1,1,0),(35192,23764,135345,'Saint-Genies','France','FR','Saint-Genies (France)',1,1,0),(35193,0,135346,'Saint-Germain-au-Mont-d\'Or','France','FR','Saint-Germain-au-Mont-d\'Or (France)',1,1,0),(35194,0,135347,'Saint-Hilaire-du-Harcouet','France','FR','Saint-Hilaire-du-Harcouet (France)',1,1,0),(35195,0,135348,'Saint-Hippolyte-le-Graveyron','France','FR','Saint-Hippolyte-le-Graveyron (France)',1,1,0),(35196,0,135349,'Saint-Jacques-d\'Ambur','France','FR','Saint-Jacques-d\'Ambur (France)',1,1,0),(35197,0,135350,'Saint-Jean-de-Valeriscle','France','FR','Saint-Jean-de-Valeriscle (France)',1,1,0),(35198,23818,135351,'Saint-Junien','France','FR','Saint-Junien (France)',1,1,0),(35199,0,135352,'Saint-Just-le-Martel','France','FR','Saint-Just-le-Martel (France)',1,1,0),(35200,0,135353,'Saint-Lary','France','FR','Saint-Lary (France)',1,1,0),(35201,0,135354,'Saint-Laurent-de-la-Pree','France','FR','Saint-Laurent-de-la-Pree (France)',1,1,0),(35202,23835,135355,'Saint-Louet-sur-Seulles','France','FR','Saint-Louet-sur-Seulles (France)',1,1,0),(35203,0,135356,'Saint-Martin-de-la-Place','France','FR','Saint-Martin-de-la-Place (France)',1,1,0),(35204,0,135357,'Saint-Martin-de-Valgalgues','France','FR','Saint-Martin-de-Valgalgues (France)',1,1,0),(35205,0,135358,'Saint-Martin-sous-Vigouroux','France','FR','Saint-Martin-sous-Vigouroux (France)',1,1,0),(35206,0,135359,'Saint-Martin-Vesubie','France','FR','Saint-Martin-Vesubie (France)',1,1,0),(35207,23862,135360,'Saint-Maximin-la-Sainte-Baume','France','FR','Saint-Maximin-la-Sainte-Baume (France)',1,1,0),(35208,0,135361,'Saint-Ouen','France','FR','Saint-Ouen (France)',1,1,0),(35209,23881,135362,'Saint-Pancrace','France','FR','Saint-Pancrace (France)',1,1,0),(35210,0,135363,'Saint-Paul-en-Chablais','France','FR','Saint-Paul-en-Chablais (France)',1,1,0),(35211,23901,135364,'Saint-Pierremont','France','FR','Saint-Pierremont (France)',1,1,0),(35212,23905,135365,'Saint-Pol-sur-Mer','France','FR','Saint-Pol-sur-Mer (France)',1,1,0),(35213,0,135366,'Saint-Prex','Switzerland','CH','Saint-Prex (Switzerland)',1,1,0),(35214,23912,135367,'Saint-Quentin','France','FR','Saint-Quentin (France)',1,1,0),(35215,23913,135368,'Saint-Quentin-en-Yvelines','France','FR','Saint-Quentin-en-Yvelines (France)',1,1,0),(35216,0,135369,'Saint-Quentin-la-Poterie','France','FR','Saint-Quentin-la-Poterie (France)',1,1,0),(35217,0,135370,'Saint-Romain','France','FR','Saint-Romain (France)',1,1,0),(35218,23921,135371,'Saint-Romain-de-Colbosc','France','FR','Saint-Romain-de-Colbosc (France)',1,1,0),(35219,0,135372,'Saint-Romain-et-Saint-Clement','France','FR','Saint-Romain-et-Saint-Clement (France)',1,1,0),(35220,0,135373,'Saint-Saud-Lacoussiere','France','FR','Saint-Saud-Lacoussiere (France)',1,1,0),(35221,23929,135374,'Saint-Sebastien-sur-Loire','France','FR','Saint-Sebastien-sur-Loire (France)',1,1,0),(35222,0,135375,'Saint-Simeon','Canada','CA','Saint-Simeon (Canada)',1,1,0),(35223,23931,135376,'Saint-Sulpice','Switzerland','CH','Saint-Sulpice (Switzerland)',1,1,0),(35224,0,135377,'Saint-Victor-la-Riviere','France','FR','Saint-Victor-la-Riviere (France)',1,1,0),(35225,23955,135378,'Sakarya','Turkey','TR','Sakarya (Turkey)',1,1,0),(35226,0,135379,'Salacgriva','Latvia','LV','Salacgriva (Latvia)',1,1,0),(35227,0,135380,'Salakos','Greece','GR','Salakos (Greece)',1,1,0),(35228,0,135381,'Salavaux','Switzerland','CH','Salavaux (Switzerland)',1,1,0),(35229,0,135382,'Salazie','Reunion','RE','Salazie (Reunion)',1,1,0),(35230,23975,135383,'Salbohed','Sweden','SE','Salbohed (Sweden)',1,1,0),(35231,32893,135384,'Sale Marasino','Italy','IT','Sale Marasino (Italy)',1,1,0),(35232,23990,135385,'Salers','France','FR','Salers (France)',1,1,0),(35233,0,135386,'Salesville','United States of America','US','Salesville (United States of America)',1,1,0),(35234,0,135387,'Salford','United Kingdom','UK','Salford (United Kingdom)',1,1,0),(35235,23992,135388,'Salgesch','Switzerland','CH','Salgesch (Switzerland)',1,1,0),(35236,0,135389,'Salida','United States of America','US','Salida (United States of America)',1,1,0),(35237,24004,135390,'Salinas','Ecuador','EC','Salinas (Ecuador)',1,1,0),(35238,24010,135391,'Sallanches','France','FR','Sallanches (France)',1,1,0),(35239,0,135392,'Salomon Arm','Canada','CA','Salomon Arm (Canada)',1,1,0),(35240,0,135393,'Salon de Provence','France','FR','Salon de Provence (France)',1,1,0),(35241,0,135394,'Salsk','Russia','RU','Salsk (Russia)',1,1,0),(35242,24027,135395,'Salt','Spain','ES','Salt (Spain)',1,1,0),(35243,24045,135396,'Saltsjobaden','Sweden','SE','Saltsjobaden (Sweden)',1,1,0),(35244,0,135397,'Samara','Russia','RU','Samara (Russia)',1,1,0),(35245,0,135398,'Samerberg','Germany','DE','Samerberg (Germany)',1,1,0),(35246,0,135399,'Samonas','Greece','GR','Samonas (Greece)',1,1,0),(35247,0,135400,'Sampans','France','FR','Sampans (France)',1,1,0),(35248,0,135401,'San Andres de Giles','Argentina','AR','San Andres de Giles (Argentina)',1,1,0),(35249,32921,135402,'San Bartolome','Spain','ES','San Bartolome (Spain)',1,1,0),(35250,0,135403,'San Bernardo','Italy','IT','San Bernardo (Italy)',1,1,0),(35251,32937,135404,'San Bruno','United States of America','US','San Bruno (United States of America)',1,1,0),(35252,32940,135405,'San Carlos','Spain','ES','San Carlos (Spain)',1,1,0),(35253,0,135406,'San Carlos','Costa Rica','CR','San Carlos (Costa Rica)',1,1,0),(35254,32941,135407,'San Carlos','Mexico','MX','San Carlos (Mexico)',1,1,0),(35255,32939,135408,'San Carlos','United States of America','US','San Carlos (United States of America)',1,1,0),(35256,32955,135409,'San Clemente','Italy','IT','San Clemente (Italy)',1,1,0),(35257,0,135410,'San Colombano','Italy','IT','San Colombano (Italy)',1,1,0),(35258,32959,135411,'San Cristobal','Mexico','MX','San Cristobal (Mexico)',1,1,0),(35259,0,135412,'San Esteban Sasroviras','Spain','ES','San Esteban Sasroviras (Spain)',1,1,0),(35260,0,135413,'Roggentin','Germany','DE','Roggentin (Germany)',1,1,0),(35261,23165,135414,'Rognonas','France','FR','Rognonas (France)',1,1,0),(35262,23170,135415,'Rohnert Park','United States of America','US','Rohnert Park (United States of America)',1,1,0),(35263,0,135416,'Rohr im Aargau','Switzerland','CH','Rohr im Aargau (Switzerland)',1,1,0),(35264,0,135417,'Rohrstetten','Germany','DE','Rohrstetten (Germany)',1,1,0),(35265,23178,135418,'Rojales','Spain','ES','Rojales (Spain)',1,1,0),(35266,0,135419,'Rokitno','Poland','PL','Rokitno (Poland)',1,1,0),(35267,0,135420,'Rolas','Sao Tome & Principe','ST','Rolas (Sao Tome & Principe)',1,1,0),(35268,23189,135421,'Rolleston','Australia','AU','Rolleston (Australia)',1,1,0),(35269,23193,135422,'Roma','Australia','AU','Roma (Australia)',1,1,0),(35270,0,135423,'Romano di Lombardia','Italy','IT','Romano di Lombardia (Italy)',1,1,0),(35271,23200,135424,'Romans-sur-Isere','France','FR','Romans-sur-Isere (France)',1,1,0),(35272,0,135425,'Romblon Island','Philippines','PH','Romblon Island (Philippines)',1,1,0),(35273,23209,135426,'Romrod','Germany','DE','Romrod (Germany)',1,1,0),(35274,0,135427,'Rona','Switzerland','CH','Rona (Switzerland)',1,1,0),(35275,0,135428,'Ronce les Bains','France','FR','Ronce les Bains (France)',1,1,0),(35276,23222,135429,'Roncq','France','FR','Roncq (France)',1,1,0),(35277,23223,135430,'Ronda','Spain','ES','Ronda (Spain)',1,1,0),(35278,23229,135431,'Ronneby','Sweden','SE','Ronneby (Sweden)',1,1,0),(35279,0,135432,'Ronshausen','Germany','DE','Ronshausen (Germany)',1,1,0),(35280,23243,135433,'Roquefort','France','FR','Roquefort (France)',1,1,0),(35281,0,135434,'Rorke\'s Drift','South Africa','ZA','Rorke\'s Drift (South Africa)',1,1,0),(35282,23254,135435,'Rosario','Argentina','AR','Rosario (Argentina)',1,1,0),(35283,23255,135436,'Rosario','Philippines','PH','Rosario (Philippines)',1,1,0),(35284,23273,135437,'Roselle','United States of America','US','Roselle (United States of America)',1,1,0),(35285,0,135438,'Rosenberg (Wurttemberg)','Germany','DE','Rosenberg (Wurttemberg) (Germany)',1,1,0),(35286,0,135439,'Rosengarten','Germany','DE','Rosengarten (Germany)',1,1,0),(35287,0,135440,'Rosersberg','Sweden','SE','Rosersberg (Sweden)',1,1,0),(35288,23283,135441,'Roseto degli Abruzzi','Italy','IT','Roseto degli Abruzzi (Italy)',1,1,0),(35289,0,135442,'Roseville','United States of America','US','Roseville (United States of America)',1,1,0),(35290,0,135443,'Rossatz','Austria','AT','Rossatz (Austria)',1,1,0),(35291,23307,135444,'Rosscarbery','Ireland','IE','Rosscarbery (Ireland)',1,1,0),(35292,0,135445,'Ro?dorf','Germany','DE','Ro?dorf (Germany)',1,1,0),(35293,0,135446,'Rossens FR','Switzerland','CH','Rossens FR (Switzerland)',1,1,0),(35294,0,135447,'Rota d\'Imagna','Italy','IT','Rota d\'Imagna (Italy)',1,1,0),(35295,32763,135448,'Roth','Germany','DE','Roth (Germany)',1,1,0),(35296,23337,135449,'Rothenberg','Germany','DE','Rothenberg (Germany)',1,1,0),(35297,23351,135450,'Rotta','Germany','DE','Rotta (Germany)',1,1,0),(35298,23361,135451,'Rouen','France','FR','Rouen (France)',1,1,0),(35299,23374,135452,'Rousset','France','FR','Rousset (France)',1,1,0),(35300,23385,135453,'Rovinj','Croatia','HR','Rovinj (Croatia)',1,1,0),(35301,23395,135454,'Rowville','Australia','AU','Rowville (Australia)',1,1,0),(35302,23397,135455,'Roxboro','United States of America','US','Roxboro (United States of America)',1,1,0),(35303,0,135456,'Royal Mulu','Malaysia','MY','Royal Mulu (Malaysia)',1,1,0),(35304,23408,135457,'Royse City','United States of America','US','Royse City (United States of America)',1,1,0),(35305,23413,135458,'Roznov Pod Radhostem','Czech Republic','CZ','Roznov Pod Radhostem (Czech Republic)',1,1,0),(35306,0,135459,'Rubenow','Germany','DE','Rubenow (Germany)',1,1,0),(35307,23419,135460,'Rubiera','Italy','IT','Rubiera (Italy)',1,1,0),(35308,0,135461,'Ruciane','Poland','PL','Ruciane (Poland)',1,1,0),(35309,0,135462,'Ruckersdorf','Germany','DE','Ruckersdorf (Germany)',1,1,0),(35310,23422,135463,'Ruckholz','Germany','DE','Ruckholz (Germany)',1,1,0),(35311,0,135464,'Ruden-St. Martin','Austria','AT','Ruden-St. Martin (Austria)',1,1,0),(35312,0,135465,'Rudesheim on the Rhine','Germany','DE','Rudesheim on the Rhine (Germany)',1,1,0),(35313,0,135466,'Rudolfshaus','Germany','DE','Rudolfshaus (Germany)',1,1,0),(35314,0,135467,'Rugeley','United Kingdom','UK','Rugeley (United Kingdom)',1,1,0),(35315,23449,135468,'Ruhla','Germany','DE','Ruhla (Germany)',1,1,0),(35316,23454,135469,'Ruili','China','CN','Ruili (China)',1,1,0),(35317,23455,135470,'Ruinerwold','Netherlands','NL','Ruinerwold (Netherlands)',1,1,0),(35318,23459,135471,'Rukatunturi','Finland','FI','Rukatunturi (Finland)',1,1,0),(35319,23472,135472,'Runnemede','United States of America','US','Runnemede (United States of America)',1,1,0),(35320,23487,135473,'Ruskin','United States of America','US','Ruskin (United States of America)',1,1,0),(35321,0,135474,'Rutherford','United States of America','US','Rutherford (United States of America)',1,1,0),(35322,23511,135475,'Rutherfordton','United States of America','US','Rutherfordton (United States of America)',1,1,0),(35323,0,135476,'Ruzomberok','Slovakia','SK','Ruzomberok (Slovakia)',1,1,0),(35324,0,135477,'Ryde','United Kingdom','UK','Ryde (United Kingdom)',1,1,0),(35325,0,135478,'Rye','United Kingdom','UK','Rye (United Kingdom)',1,1,0),(35326,0,135479,'Ryn','Poland','PL','Ryn (Poland)',1,1,0),(35327,32771,135480,'Sa Coma','Spain','ES','Sa Coma (Spain)',1,1,0),(35328,0,135481,'Saanenmoser','Switzerland','CH','Saanenmoser (Switzerland)',1,1,0),(35329,0,135482,'Saas-Almagell','Switzerland','CH','Saas-Almagell (Switzerland)',1,1,0),(35330,23567,135483,'Sabinanigo','Spain','ES','Sabinanigo (Spain)',1,1,0),(35331,23581,135484,'Sachseln','Switzerland','CH','Sachseln (Switzerland)',1,1,0),(35332,0,135485,'Sachsenheim','Germany','DE','Sachsenheim (Germany)',1,1,0),(35333,0,135486,'Sachticky Spania Dolina','Slovakia','SK','Sachticky Spania Dolina (Slovakia)',1,1,0),(35334,23583,135487,'Sackets Harbor','United States of America','US','Sackets Harbor (United States of America)',1,1,0),(35335,0,135488,'Sadlinki','Poland','PL','Sadlinki (Poland)',1,1,0),(35336,0,135489,'Safsen-Frederiksberg','Sweden','SE','Safsen-Frederiksberg (Sweden)',1,1,0),(35337,23604,135490,'Saga','Japan','JP','Saga (Japan)',1,1,0),(35338,0,135491,'Sagard-Neddesitz','Germany','DE','Sagard-Neddesitz (Germany)',1,1,0),(35339,23613,135492,'Sagone','France','FR','Sagone (France)',1,1,0),(35340,23622,135493,'Saidia','Morocco','MA','Saidia (Morocco)',1,1,0),(35341,0,135494,'Saincaize-Meauce','France','FR','Saincaize-Meauce (France)',1,1,0),(35342,0,135495,'Saint Andiol','France','FR','Saint Andiol (France)',1,1,0),(35343,0,135496,'Saint Charles','United States of America','US','Saint Charles (United States of America)',1,1,0),(35344,0,135497,'Saint Didier','France','FR','Saint Didier (France)',1,1,0),(35345,0,135498,'Saint Germain','United States of America','US','Saint Germain (United States of America)',1,1,0),(35346,0,135499,'Saint Helens','United Kingdom','UK','Saint Helens (United Kingdom)',1,1,0),(35347,0,135500,'Saint Ignace','United States of America','US','Saint Ignace (United States of America)',1,1,0),(35348,0,135501,'Saint Keverne','United Kingdom','UK','Saint Keverne (United Kingdom)',1,1,0),(35349,0,135502,'Saint Lucie de Porto Vecchio','France','FR','Saint Lucie de Porto Vecchio (France)',1,1,0),(35350,0,135503,'Saint Martin\'s','United Kingdom','UK','Saint Martin\'s (United Kingdom)',1,1,0),(35351,0,135504,'Saint Maxime','France','FR','Saint Maxime (France)',1,1,0),(35352,0,135505,'Saint Saviour','United Kingdom','UK','Saint Saviour (United Kingdom)',1,1,0),(35353,0,135506,'Saint Simons Island','United States of America','US','Saint Simons Island (United States of America)',1,1,0),(35354,0,135507,'Saint-Amand-Montrond','France','FR','Saint-Amand-Montrond (France)',1,1,0),(35355,0,135508,'Saint-Andre-de-Sangonis','France','FR','Saint-Andre-de-Sangonis (France)',1,1,0),(35356,0,135509,'Saint-Astier','France','FR','Saint-Astier (France)',1,1,0),(35357,23688,135510,'Saint-Calais','France','FR','Saint-Calais (France)',1,1,0),(35358,0,135511,'Saint-Christol-Proche','France','FR','Saint-Christol-Proche (France)',1,1,0),(35359,0,135512,'Saint-Cyr-au-Mont-d\'Or','France','FR','Saint-Cyr-au-Mont-d\'Or (France)',1,1,0),(35360,0,135513,'Sainte Anne','Reunion','RE','Sainte Anne (Reunion)',1,1,0),(35361,0,135514,'Sainte Anne de Martinique','Martinique','MQ','Sainte Anne de Martinique (Martinique)',1,1,0),(35362,23724,135515,'Sainte-Florine','France','FR','Sainte-Florine (France)',1,1,0),(35363,0,135516,'Sainte-Maure-de-Touraine','France','FR','Sainte-Maure-de-Touraine (France)',1,1,0),(35364,0,135517,'Sainte-Menehould','France','FR','Sainte-Menehould (France)',1,1,0),(35365,23748,135518,'Sainte-Savine','France','FR','Sainte-Savine (France)',1,1,0),(35366,33158,135519,'San Roque','Spain','ES','San Roque (Spain)',1,1,0),(35367,33189,135520,'San Zenone al Lambro','Italy','IT','San Zenone al Lambro (Italy)',1,1,0),(35368,24110,135521,'Sanada','Japan','JP','Sanada (Japan)',1,1,0),(35369,24121,135523,'Sancti Spiritus','Cuba','CU','Sancti Spiritus (Cuba)',1,1,0),(35370,24123,135524,'Sancy','France','FR','Sancy (France)',1,1,0),(35371,0,135525,'Sand','Norway','NO','Sand (Norway)',1,1,0),(35372,0,135526,'Sandigliano','Italy','IT','Sandigliano (Italy)',1,1,0),(35373,0,135527,'Sandkas','Denmark','DK','Sandkas (Denmark)',1,1,0),(35374,0,135528,'Sandown','United Kingdom','UK','Sandown (United Kingdom)',1,1,0),(35375,0,135529,'Sandston','United States of America','US','Sandston (United States of America)',1,1,0),(35376,0,135530,'Sandwich','United Kingdom','UK','Sandwich (United Kingdom)',1,1,0),(35377,0,135531,'Sandy','United States of America','US','Sandy (United States of America)',1,1,0),(35378,24167,135532,'Sanford','United States of America','US','Sanford (United States of America)',1,1,0),(35379,0,135533,'Sangineto Lido','Italy','IT','Sangineto Lido (Italy)',1,1,0),(35380,0,135534,'Sankt Peter-Ording','Germany','DE','Sankt Peter-Ording (Germany)',1,1,0),(35381,0,135535,'Sankt Jakob im Walde','Austria','AT','Sankt Jakob im Walde (Austria)',1,1,0),(35382,0,135536,'Sankt Lorenzen ob Murau','Austria','AT','Sankt Lorenzen ob Murau (Austria)',1,1,0),(35383,0,135537,'Sankt Radegund bei Graz','Austria','AT','Sankt Radegund bei Graz (Austria)',1,1,0),(35384,0,135538,'Sankt Ruprecht an der Raab','Austria','AT','Sankt Ruprecht an der Raab (Austria)',1,1,0),(35385,0,135539,'Sant\' Agata sui due Golfi','Italy','IT','Sant\' Agata sui due Golfi (Italy)',1,1,0),(35386,0,135540,'Sant Feliu de Pallerols','Spain','ES','Sant Feliu de Pallerols (Spain)',1,1,0),(35387,33218,135541,'Sant Joan Despi','Spain','ES','Sant Joan Despi (Spain)',1,1,0),(35388,33223,135542,'Sant Just Desvern','Spain','ES','Sant Just Desvern (Spain)',1,1,0),(35389,33234,135543,'Sant Vicenc de Montalt','Spain','ES','Sant Vicenc de Montalt (Spain)',1,1,0),(35390,0,135544,'Sant’Arsenio','Italy','IT','Sant’Arsenio (Italy)',1,1,0),(35391,33241,135545,'Santa Cesarea Terme','Italy','IT','Santa Cesarea Terme (Italy)',1,1,0),(35392,33245,135546,'Santa Coloma de Gramenet','Spain','ES','Santa Coloma de Gramenet (Spain)',1,1,0),(35393,0,135547,'Santa Cruz','Spain','ES','Santa Cruz (Spain)',1,1,0),(35394,0,135548,'Santa Cruz Cabralia','Brazil','BR','Santa Cruz Cabralia (Brazil)',1,1,0),(35395,0,135549,'Santa Domenica di Ricadi','Italy','IT','Santa Domenica di Ricadi (Italy)',1,1,0),(35396,0,135550,'Santa Eulalia','Portugal','PT','Santa Eulalia (Portugal)',1,1,0),(35397,0,135551,'Santa Lucia','Spain','ES','Santa Lucia (Spain)',1,1,0),(35398,33275,135552,'Santa Margherita di Pula','Italy','IT','Santa Margherita di Pula (Italy)',1,1,0),(35399,0,135553,'Santa Maria Maggiore','Italy','IT','Santa Maria Maggiore (Italy)',1,1,0),(35400,0,135554,'Santa Pola - Alicante','Spain','ES','Santa Pola - Alicante (Spain)',1,1,0),(35401,0,135555,'Santa Teresa','United States of America','US','Santa Teresa (United States of America)',1,1,0),(35402,0,135556,'Sant\'Antonio di Mavignola','Italy','IT','Sant\'Antonio di Mavignola (Italy)',1,1,0),(35403,0,135557,'Sant\'Arcangelo','Italy','IT','Sant\'Arcangelo (Italy)',1,1,0),(35404,0,135558,'Santarcangelo di Romagna','Italy','IT','Santarcangelo di Romagna (Italy)',1,1,0),(35405,0,135559,'Santeny','France','FR','Santeny (France)',1,1,0),(35406,0,135560,'Santiago Atitlan','Guatemala','GT','Santiago Atitlan (Guatemala)',1,1,0),(35407,24248,135561,'Santiago del Estero','Argentina','AR','Santiago del Estero (Argentina)',1,1,0),(35408,33329,135562,'Santo Stefano di Camastra','Italy','IT','Santo Stefano di Camastra (Italy)',1,1,0),(35409,33330,135563,'Santo Stefano di Magra','Italy','IT','Santo Stefano di Magra (Italy)',1,1,0),(35410,0,135564,'Santo Stefano di Moriano','Italy','IT','Santo Stefano di Moriano (Italy)',1,1,0),(35411,0,135565,'Santo Tomas','Spain','ES','Santo Tomas (Spain)',1,1,0),(35412,0,135566,'Santon','United Kingdom','UK','Santon (United Kingdom)',1,1,0),(35413,0,135567,'Sanyang','Gambia','GM','Sanyang (Gambia)',1,1,0),(35414,33336,135568,'Sao Bernardo do Campo','Brazil','BR','Sao Bernardo do Campo (Brazil)',1,1,0),(35415,33339,135569,'Sao Caetano do Sul','Brazil','BR','Sao Caetano do Sul (Brazil)',1,1,0),(35416,0,135570,'Sao Jorge','Portugal','PT','Sao Jorge (Portugal)',1,1,0),(35417,0,135571,'Sao Leopoldo','Brazil','BR','Sao Leopoldo (Brazil)',1,1,0),(35418,0,135572,'Sao Mamede de Infesta','Portugal','PT','Sao Mamede de Infesta (Portugal)',1,1,0),(35419,33368,135573,'Sao Miguel dos Milagres','Brazil','BR','Sao Miguel dos Milagres (Brazil)',1,1,0),(35420,0,135574,'Sao Pedro','Cape Verde','CV','Sao Pedro (Cape Verde)',1,1,0),(35421,0,135575,'Sao Roque do Faial','Portugal','PT','Sao Roque do Faial (Portugal)',1,1,0),(35422,33378,135576,'Sao Sebastiao','Brazil','BR','Sao Sebastiao (Brazil)',1,1,0),(35423,33380,135577,'Sao Vicente','Portugal','PT','Sao Vicente (Portugal)',1,1,0),(35424,33381,135578,'Sao Vicente','Brazil','BR','Sao Vicente (Brazil)',1,1,0),(35425,24294,135579,'Sapulpa','United States of America','US','Sapulpa (United States of America)',1,1,0),(35426,24307,135580,'Sarasota','United States of America','US','Sarasota (United States of America)',1,1,0),(35427,24308,135581,'Saratoga','United States of America','US','Saratoga (United States of America)',1,1,0),(35428,0,135582,'Saratow','Russia','RU','Saratow (Russia)',1,1,0),(35429,0,135583,'Sarayonu','Turkey','TR','Sarayonu (Turkey)',1,1,0),(35430,0,135584,'Sardon de Duero','Spain','ES','Sardon de Duero (Spain)',1,1,0),(35431,24319,135585,'Sare','France','FR','Sare (France)',1,1,0),(35432,24331,135587,'Sarlat-la-Caneda','France','FR','Sarlat-la-Caneda (France)',1,1,0),(35433,0,135588,'Sarnico','Italy','IT','Sarnico (Italy)',1,1,0),(35434,24338,135589,'Sarpsborg','Norway','NO','Sarpsborg (Norway)',1,1,0),(35435,0,135590,'Sarre','Italy','IT','Sarre (Italy)',1,1,0),(35436,0,135591,'Sarreaus','Spain','ES','Sarreaus (Spain)',1,1,0),(35437,24354,135592,'Sarzeau','France','FR','Sarzeau (France)',1,1,0),(35438,0,135593,'Satley','United Kingdom','UK','Satley (United Kingdom)',1,1,0),(35439,0,135594,'Satow','Germany','DE','Satow (Germany)',1,1,0),(35440,0,135595,'Sauerthal','Germany','DE','Sauerthal (Germany)',1,1,0),(35441,24391,135596,'Saugerties','United States of America','US','Saugerties (United States of America)',1,1,0),(35442,24395,135597,'Saulges','France','FR','Saulges (France)',1,1,0),(35443,0,135598,'Sauris','Italy','IT','Sauris (Italy)',1,1,0),(35444,24411,135599,'Sausheim','France','FR','Sausheim (France)',1,1,0),(35445,0,135600,'Sauze d\'Oulx','Italy','IT','Sauze d\'Oulx (Italy)',1,1,0),(35446,0,135601,'Sauzet (Lot)','France','FR','Sauzet (Lot) (France)',1,1,0),(35447,0,135602,'Saverdun','France','FR','Saverdun (France)',1,1,0),(35448,24432,135603,'Savigliano','Italy','IT','Savigliano (Italy)',1,1,0),(35449,24435,135604,'Savigneux','France','FR','Savigneux (France)',1,1,0),(35450,0,135605,'Savigny-sous-Faye','France','FR','Savigny-sous-Faye (France)',1,1,0),(35451,0,135606,'Sawbridgeworth','United Kingdom','UK','Sawbridgeworth (United Kingdom)',1,1,0),(35452,0,135607,'Scalby','United Kingdom','UK','Scalby (United Kingdom)',1,1,0),(35453,24472,135608,'Scamander','Australia','AU','Scamander (Australia)',1,1,0),(35454,0,135609,'Scanzano Ionico','Italy','IT','Scanzano Ionico (Italy)',1,1,0),(35455,24494,135610,'Schackendorf','Germany','DE','Schackendorf (Germany)',1,1,0),(35456,0,135611,'Schalkenmehren','Germany','DE','Schalkenmehren (Germany)',1,1,0),(35457,24501,135612,'Schaprode','Germany','DE','Schaprode (Germany)',1,1,0),(35458,0,135613,'Scharendijke','Netherlands','NL','Scharendijke (Netherlands)',1,1,0),(35459,0,135614,'Schauenburg','Germany','DE','Schauenburg (Germany)',1,1,0),(35460,0,135615,'Scheer','Germany','DE','Scheer (Germany)',1,1,0),(35461,0,135616,'Scherpenisse','Netherlands','NL','Scherpenisse (Netherlands)',1,1,0),(35462,0,135617,'Schiltach','Germany','DE','Schiltach (Germany)',1,1,0),(35463,0,135618,'Schioparello','Italy','IT','Schioparello (Italy)',1,1,0),(35464,24538,135619,'Schkeuditz','Germany','DE','Schkeuditz (Germany)',1,1,0),(35465,0,135620,'Safien','Switzerland','CH','Safien (Switzerland)',1,1,0),(35466,23607,135621,'Sagard','Germany','DE','Sagard (Germany)',1,1,0),(35467,23628,135622,'Sailauf','Germany','DE','Sailauf (Germany)',1,1,0),(35468,32807,135623,'Saint Gedeon','Canada','CA','Saint Gedeon (Canada)',1,1,0),(35469,0,135624,'Saint Helena Bay','South Africa','ZA','Saint Helena Bay (South Africa)',1,1,0),(35470,32818,135625,'Saint Hippolyte','Canada','CA','Saint Hippolyte (Canada)',1,1,0),(35471,0,135626,'Saint James','United States of America','US','Saint James (United States of America)',1,1,0),(35472,0,135627,'Saint James','South Africa','ZA','Saint James (South Africa)',1,1,0),(35473,0,135628,'Saint Jeannet','France','FR','Saint Jeannet (France)',1,1,0),(35474,32833,135629,'Saint Julien de Crempse','France','FR','Saint Julien de Crempse (France)',1,1,0),(35475,0,135630,'Saint Neots','United Kingdom','UK','Saint Neots (United Kingdom)',1,1,0),(35476,0,135631,'Saint Pierre la Garenne','France','FR','Saint Pierre la Garenne (France)',1,1,0),(35477,32863,135632,'Saint Raphael','France','FR','Saint Raphael (France)',1,1,0),(35478,0,135633,'Saint Stephen','United States of America','US','Saint Stephen (United States of America)',1,1,0),(35479,0,135634,'Saint Valery-Sur-Somme','France','FR','Saint Valery-Sur-Somme (France)',1,1,0),(35480,0,135635,'Saint-Alexis-de-Monts','Canada','CA','Saint-Alexis-de-Monts (Canada)',1,1,0),(35481,0,135636,'Saint-Amans-des-Cots','France','FR','Saint-Amans-des-Cots (France)',1,1,0),(35482,23660,135637,'Saint-Apollinaire','France','FR','Saint-Apollinaire (France)',1,1,0),(35483,23665,135638,'Saint-Aubin-sur-Scie','France','FR','Saint-Aubin-sur-Scie (France)',1,1,0),(35484,0,135639,'Saint-Beauzire','France','FR','Saint-Beauzire (France)',1,1,0),(35485,0,135640,'Saint-Boil','France','FR','Saint-Boil (France)',1,1,0),(35486,0,135641,'Saint-Ciers-de-Canesse','France','FR','Saint-Ciers-de-Canesse (France)',1,1,0),(35487,0,135642,'Saint-Cirgues-de-Jordanne','France','FR','Saint-Cirgues-de-Jordanne (France)',1,1,0),(35488,0,135643,'Sainte-Agathe-des-Monts','Canada','CA','Sainte-Agathe-des-Monts (Canada)',1,1,0),(35489,0,135644,'Sainte-Cecile','France','FR','Sainte-Cecile (France)',1,1,0),(35490,0,135645,'Sainte-Foy-de-Belves','France','FR','Sainte-Foy-de-Belves (France)',1,1,0),(35491,23727,135646,'Sainte-Foy-les-Lyon','France','FR','Sainte-Foy-les-Lyon (France)',1,1,0),(35492,0,135647,'Sainte-Marie-de-Cuines','France','FR','Sainte-Marie-de-Cuines (France)',1,1,0),(35493,0,135648,'Sainte-Ode','Belgium','BE','Sainte-Ode (Belgium)',1,1,0),(35494,0,135649,'Saint-Estephe','France','FR','Saint-Estephe (France)',1,1,0),(35495,0,135650,'Saint-Fargeau','France','FR','Saint-Fargeau (France)',1,1,0),(35496,0,135651,'Saint-Front-de-Pradoux','France','FR','Saint-Front-de-Pradoux (France)',1,1,0),(35497,23763,135652,'Saint-Galmier','France','FR','Saint-Galmier (France)',1,1,0),(35498,0,135653,'Saint-Genes-Champanelle','France','FR','Saint-Genes-Champanelle (France)',1,1,0),(35499,0,135654,'Saint-George','Canada','CA','Saint-George (Canada)',1,1,0),(35500,0,135655,'Saint-Germain-de-Confolens','France','FR','Saint-Germain-de-Confolens (France)',1,1,0),(35501,23776,135656,'Saint-Gervais-les-Bains','France','FR','Saint-Gervais-les-Bains (France)',1,1,0),(35502,0,135657,'Saint-Jean-de-Maurienne','France','FR','Saint-Jean-de-Maurienne (France)',1,1,0),(35503,23809,135658,'Saint-Joachim','France','FR','Saint-Joachim (France)',1,1,0),(35504,23837,135659,'Saint-Louis','Senegal','SN','Saint-Louis (Senegal)',1,1,0),(35505,0,135660,'Saint-Loup-Lamaire','France','FR','Saint-Loup-Lamaire (France)',1,1,0),(35506,0,135661,'Saint-Martin-de-Crau','France','FR','Saint-Martin-de-Crau (France)',1,1,0),(35507,0,135662,'Saint-Martin-des-Entrees','France','FR','Saint-Martin-des-Entrees (France)',1,1,0),(35508,23858,135663,'Saint-Martin-Valmeroux','France','FR','Saint-Martin-Valmeroux (France)',1,1,0),(35509,23859,135664,'Saint-Maur-des-Fosses','France','FR','Saint-Maur-des-Fosses (France)',1,1,0),(35510,0,135665,'Saint-Maurice','France','FR','Saint-Maurice (France)',1,1,0),(35511,23863,135666,'Saint-Meloir-des-Ondes','France','FR','Saint-Meloir-des-Ondes (France)',1,1,0),(35512,0,135667,'Saint-Michel-de-Maurienne','France','FR','Saint-Michel-de-Maurienne (France)',1,1,0),(35513,23866,135668,'Saint-Michel-des-Saints','Canada','CA','Saint-Michel-des-Saints (Canada)',1,1,0),(35514,0,135669,'Saint-Nectaire','France','FR','Saint-Nectaire (France)',1,1,0),(35515,23874,135670,'Saint-Omer','France','FR','Saint-Omer (France)',1,1,0),(35516,23875,135671,'Saint-Omer-en-Chaussee','France','FR','Saint-Omer-en-Chaussee (France)',1,1,0),(35517,23878,135672,'Saint-Ouen-les-Vignes','France','FR','Saint-Ouen-les-Vignes (France)',1,1,0),(35518,23882,135673,'Saint-Pardoux-la-Croisille','France','FR','Saint-Pardoux-la-Croisille (France)',1,1,0),(35519,23886,135674,'Saint-Paul-de-Vence','France','FR','Saint-Paul-de-Vence (France)',1,1,0),(35520,0,135675,'Saint-Paulin','Canada','CA','Saint-Paulin (Canada)',1,1,0),(35521,23888,135676,'Saint-Paul-les-Dax','France','FR','Saint-Paul-les-Dax (France)',1,1,0),(35522,23896,135677,'Saint-Pierre-des-Champs','France','FR','Saint-Pierre-des-Champs (France)',1,1,0),(35523,23897,135678,'Saint-Pierre-des-Corps','France','FR','Saint-Pierre-des-Corps (France)',1,1,0),(35524,0,135679,'Saint-Pierre-Lafeuille','France','FR','Saint-Pierre-Lafeuille (France)',1,1,0),(35525,0,135680,'Saint-Sauves-d\'Auvergne','France','FR','Saint-Sauves-d\'Auvergne (France)',1,1,0),(35526,0,135681,'Saint-Savin','France','FR','Saint-Savin (France)',1,1,0),(35527,0,135682,'Saint-Seine-l\'Abbaye','France','FR','Saint-Seine-l\'Abbaye (France)',1,1,0),(35528,23930,135683,'Saint-Sernin-sur-Rance','France','FR','Saint-Sernin-sur-Rance (France)',1,1,0),(35529,23938,135684,'Saint-Trojan-les-Bains','France','FR','Saint-Trojan-les-Bains (France)',1,1,0),(35530,0,135685,'Saint-Vincent','Italy','IT','Saint-Vincent (Italy)',1,1,0),(35531,23947,135686,'Saint-Witz','France','FR','Saint-Witz (France)',1,1,0),(35532,0,135687,'Saint-Yvi','France','FR','Saint-Yvi (France)',1,1,0),(35533,23954,135688,'Sakai','Japan','JP','Sakai (Japan)',1,1,0),(35534,0,135689,'Saladillo','Argentina','AR','Saladillo (Argentina)',1,1,0),(35535,0,135690,'Salambati','Croatia','HR','Salambati (Croatia)',1,1,0),(35536,0,135691,'Salcombe','United Kingdom','UK','Salcombe (United Kingdom)',1,1,0),(35537,0,135692,'Saldana','Spain','ES','Saldana (Spain)',1,1,0),(35538,23985,135693,'Salemi','Italy','IT','Salemi (Italy)',1,1,0),(35539,24009,135695,'Salla','Finland','FI','Salla (Finland)',1,1,0),(35540,0,135696,'Salm','Germany','DE','Salm (Germany)',1,1,0),(35541,24022,135697,'Salou','Spain','ES','Salou (Spain)',1,1,0),(35542,0,135698,'Salsomaggiore Terme','Italy','IT','Salsomaggiore Terme (Italy)',1,1,0),(35543,24030,135699,'Salt Rock','South Africa','ZA','Salt Rock (South Africa)',1,1,0),(35544,24040,135700,'Saltillo','Mexico','MX','Saltillo (Mexico)',1,1,0),(35545,24042,135701,'Salto','Uruguay','UY','Salto (Uruguay)',1,1,0),(35546,0,135702,'Salzwedel','Germany','DE','Salzwedel (Germany)',1,1,0),(35547,0,135703,'Samal Island','Philippines','PH','Samal Island (Philippines)',1,1,0),(35548,0,135704,'Sambrientang','Indonesia','ID','Sambrientang (Indonesia)',1,1,0),(35549,0,135705,'Sambuca Val di Pesa','Italy','IT','Sambuca Val di Pesa (Italy)',1,1,0),(35550,24069,135706,'Samieira','Spain','ES','Samieira (Spain)',1,1,0),(35551,0,135707,'Samois-sur-Seine','France','FR','Samois-sur-Seine (France)',1,1,0),(35552,32915,135708,'San Antonio de Areco','Argentina','AR','San Antonio de Areco (Argentina)',1,1,0),(35553,32928,135709,'San Benito','United States of America','US','San Benito (United States of America)',1,1,0),(35554,32930,135710,'San Bernardino','United States of America','US','San Bernardino (United States of America)',1,1,0),(35555,0,135711,'San Bernardo','Spain','ES','San Bernardo (Spain)',1,1,0),(35556,32936,135712,'San Bonifacio','Italy','IT','San Bonifacio (Italy)',1,1,0),(35557,0,135713,'San Carlos','Nicaragua','NI','San Carlos (Nicaragua)',1,1,0),(35558,0,135714,'Risch','Switzerland','CH','Risch (Switzerland)',1,1,0),(35559,0,135715,'Rishirifuji','Japan','JP','Rishirifuji (Japan)',1,1,0),(35560,0,135716,'Rispescia','Italy','IT','Rispescia (Italy)',1,1,0),(35561,0,135717,'Rivarotta di Pasino','Italy','IT','Rivarotta di Pasino (Italy)',1,1,0),(35562,23041,135718,'Riverton','United States of America','US','Riverton (United States of America)',1,1,0),(35563,0,135719,'Riviere-Rouge','Canada','CA','Riviere-Rouge (Canada)',1,1,0),(35564,23053,135720,'Rivoli','Italy','IT','Rivoli (Italy)',1,1,0),(35565,0,135721,'Rivoli Veronese','Italy','IT','Rivoli Veronese (Italy)',1,1,0),(35566,0,135722,'Rivotorto','Italy','IT','Rivotorto (Italy)',1,1,0),(35567,0,135723,'Rizzanese','France','FR','Rizzanese (France)',1,1,0),(35568,23062,135724,'Road Town','British Virgin Islands','VG','Road Town (British Virgin Islands)',1,1,0),(35569,0,135725,'Roanoke','United States of America','US','Roanoke (United States of America)',1,1,0),(35570,23069,135726,'Robertson','South Africa','ZA','Robertson (South Africa)',1,1,0),(35571,23100,135727,'Rochefort','Belgium','BE','Rochefort (Belgium)',1,1,0),(35572,0,135728,'Rockanje','Netherlands','NL','Rockanje (Netherlands)',1,1,0),(35573,0,135729,'Rockland','United States of America','US','Rockland (United States of America)',1,1,0),(35574,23126,135730,'Rockmart','United States of America','US','Rockmart (United States of America)',1,1,0),(35575,0,135731,'Rockport','United States of America','US','Rockport (United States of America)',1,1,0),(35576,0,135732,'Rockville','United States of America','US','Rockville (United States of America)',1,1,0),(35577,0,135733,'Roda','Spain','ES','Roda (Spain)',1,1,0),(35578,0,135734,'Roddi','Italy','IT','Roddi (Italy)',1,1,0),(35579,0,135735,'Roding','Germany','DE','Roding (Germany)',1,1,0),(35580,0,135736,'Roetgen','Germany','DE','Roetgen (Germany)',1,1,0),(35581,0,135737,'Roggow','Germany','DE','Roggow (Germany)',1,1,0),(35582,0,135738,'Rogliano','Italy','IT','Rogliano (Italy)',1,1,0),(35583,23183,135739,'Rold','Denmark','DK','Rold (Denmark)',1,1,0),(35584,0,135740,'Rollegem','Belgium','BE','Rollegem (Belgium)',1,1,0),(35585,0,135741,'Romont','Switzerland','CH','Romont (Switzerland)',1,1,0),(35586,0,135742,'Roncadelle','Italy','IT','Roncadelle (Italy)',1,1,0),(35587,0,135743,'Ronco sopra Ascona','Switzerland','CH','Ronco sopra Ascona (Switzerland)',1,1,0),(35588,23224,135744,'Rondonopolis','Brazil','BR','Rondonopolis (Brazil)',1,1,0),(35589,0,135745,'Ronzo-Chienis','Italy','IT','Ronzo-Chienis (Italy)',1,1,0),(35590,0,135746,'Roosteren','Netherlands','NL','Roosteren (Netherlands)',1,1,0),(35591,0,135747,'Ropersdorf','Germany','DE','Ropersdorf (Germany)',1,1,0),(35592,0,135748,'Roquefort-Les Pins','France','FR','Roquefort-Les Pins (France)',1,1,0),(35593,0,135749,'Roquemaure','France','FR','Roquemaure (France)',1,1,0),(35594,0,135750,'Rosano sull\'Arno','Italy','IT','Rosano sull\'Arno (Italy)',1,1,0),(35595,0,135751,'Rosarito','Mexico','MX','Rosarito (Mexico)',1,1,0),(35596,0,135752,'Rosehearty','United Kingdom','UK','Rosehearty (United Kingdom)',1,1,0),(35597,23271,135753,'Rosehill','Australia','AU','Rosehill (Australia)',1,1,0),(35598,0,135754,'Roseto Capo Spulico','Italy','IT','Roseto Capo Spulico (Italy)',1,1,0),(35599,23285,135755,'Rosevears','Australia','AU','Rosevears (Australia)',1,1,0),(35600,23292,135756,'Roskilde','Denmark','DK','Roskilde (Denmark)',1,1,0),(35601,23293,135757,'Roslev','Denmark','DK','Roslev (Denmark)',1,1,0),(35602,0,135758,'Rosrath','Germany','DE','Rosrath (Germany)',1,1,0),(35603,23315,135759,'Rossiniere','Switzerland','CH','Rossiniere (Switzerland)',1,1,0),(35604,23324,135760,'Rostock','Germany','DE','Rostock (Germany)',1,1,0),(35605,0,135761,'Rostrevor','United Kingdom','UK','Rostrevor (United Kingdom)',1,1,0),(35606,23331,135762,'Rota','Spain','ES','Rota (Spain)',1,1,0),(35607,23330,135763,'Rota','Northern Mariana Islands','MP','Rota (Northern Mariana Islands)',1,1,0),(35608,0,135764,'Rothenthurm SZ','Switzerland','CH','Rothenthurm SZ (Switzerland)',1,1,0),(35609,0,135765,'Rott/Werser Mountains','Germany','DE','Rott/Werser Mountains (Germany)',1,1,0),(35610,23359,135766,'Roubaix','France','FR','Roubaix (France)',1,1,0),(35611,0,135767,'Roumont','Belgium','BE','Roumont (Belgium)',1,1,0),(35612,0,135768,'Roure','France','FR','Roure (France)',1,1,0),(35613,0,135769,'Rousdon','United Kingdom','UK','Rousdon (United Kingdom)',1,1,0),(35614,23380,135770,'Roveleto di Cadeo','Italy','IT','Roveleto di Cadeo (Italy)',1,1,0),(35615,23405,135771,'Royeres','France','FR','Royeres (France)',1,1,0),(35616,23409,135772,'Royston','United States of America','US','Royston (United States of America)',1,1,0),(35617,0,135773,'Rozhdestveno','Russia','RU','Rozhdestveno (Russia)',1,1,0),(35618,0,135774,'Roz-sur-Couesnon','France','FR','Roz-sur-Couesnon (France)',1,1,0),(35619,0,135775,'Ruaha National Park','Tanzania','TZ','Ruaha National Park (Tanzania)',1,1,0),(35620,23416,135776,'Rubelles','France','FR','Rubelles (France)',1,1,0),(35621,0,135777,'Ruddervoorde','Belgium','BE','Ruddervoorde (Belgium)',1,1,0),(35622,23441,135779,'Rufina','Italy','IT','Rufina (Italy)',1,1,0),(35623,0,135780,'Rugby','United Kingdom','UK','Rugby (United Kingdom)',1,1,0),(35624,23445,135781,'Rugby','United States of America','US','Rugby (United States of America)',1,1,0),(35625,23450,135782,'Ruhpolding','Germany','DE','Ruhpolding (Germany)',1,1,0),(35626,0,135783,'Rui Vaz','Cape Verde','CV','Rui Vaz (Cape Verde)',1,1,0),(35627,23464,135784,'Rumia','Poland','PL','Rumia (Poland)',1,1,0),(35628,0,135785,'Runding','Germany','DE','Runding (Germany)',1,1,0),(35629,0,135786,'Ruschegg','Switzerland','CH','Ruschegg (Switzerland)',1,1,0),(35630,0,135787,'Ru?bach','Austria','AT','Ru?bach (Austria)',1,1,0),(35631,23500,135788,'Rustenburg','South Africa','ZA','Rustenburg (South Africa)',1,1,0),(35632,0,135789,'Ruthin','United Kingdom','UK','Ruthin (United Kingdom)',1,1,0),(35633,0,135790,'Rutigliano','Italy','IT','Rutigliano (Italy)',1,1,0),(35634,23516,135791,'Rutland','United States of America','US','Rutland (United States of America)',1,1,0),(35635,0,135792,'Ryazan','Russia','RU','Ryazan (Russia)',1,1,0),(35636,0,135793,'Rybnik','Poland','PL','Rybnik (Poland)',1,1,0),(35637,32769,135794,'Rye Brook','United States of America','US','Rye Brook (United States of America)',1,1,0),(35638,0,135795,'Saalfelder Hohe','Germany','DE','Saalfelder Hohe (Germany)',1,1,0),(35639,0,135796,'Saarburg','Germany','DE','Saarburg (Germany)',1,1,0),(35640,0,135797,'Saarwellingen','Germany','DE','Saarwellingen (Germany)',1,1,0),(35641,0,135798,'Saas im Prattigau','Switzerland','CH','Saas im Prattigau (Switzerland)',1,1,0),(35642,0,135799,'Saba','Bonaire Sint Eustatius and Saba',NULL,'Saba (Bonaire Sint Eustatius and Saba)',1,1,0),(35643,0,135800,'Sabetha','United States of America','US','Sabetha (United States of America)',1,1,0),(35644,0,135801,'Sabha','Libya',NULL,'Sabha (Libya)',1,1,0),(35645,0,135802,'Sackville','Canada','CA','Sackville (Canada)',1,1,0),(35646,0,135803,'Sagadi','Estonia','EE','Sagadi (Estonia)',1,1,0),(35647,23626,135804,'Saignelegier','Switzerland','CH','Saignelegier (Switzerland)',1,1,0),(35648,0,135805,'Saijo','Japan','JP','Saijo (Japan)',1,1,0),(35649,23630,135806,'Saillon','Switzerland','CH','Saillon (Switzerland)',1,1,0),(35650,0,135807,'Saint Brice','France','FR','Saint Brice (France)',1,1,0),(35651,0,135808,'Saint Cloud','United States of America','US','Saint Cloud (United States of America)',1,1,0),(35652,32830,135809,'Saint John','Canada','CA','Saint John (Canada)',1,1,0),(35653,0,135810,'Saint Joseph','Reunion','RE','Saint Joseph (Reunion)',1,1,0),(35654,0,135811,'Saint Joseph','United States of America','US','Saint Joseph (United States of America)',1,1,0),(35655,0,135812,'Saint Laurent sur Mer','France','FR','Saint Laurent sur Mer (France)',1,1,0),(35656,32838,135813,'Saint Malo','France','FR','Saint Malo (France)',1,1,0),(35657,0,135814,'Saint Mary','United Kingdom','UK','Saint Mary (United Kingdom)',1,1,0),(35658,0,135815,'Saint Peters','United States of America','US','Saint Peters (United States of America)',1,1,0),(35659,0,135816,'Saint Vigor le Grand','France','FR','Saint Vigor le Grand (France)',1,1,0),(35660,23646,135817,'Saint-Affrique-les-Montagnes','France','FR','Saint-Affrique-les-Montagnes (France)',1,1,0),(35661,0,135818,'Saint-Aime-des-Lacs','Canada','CA','Saint-Aime-des-Lacs (Canada)',1,1,0),(35662,0,135819,'Saint-Alban-sur-Limagnole','France','FR','Saint-Alban-sur-Limagnole (France)',1,1,0),(35663,0,135820,'Saint-Ame','France','FR','Saint-Ame (France)',1,1,0),(35664,0,135821,'Saint-Amour (Jura)','France','FR','Saint-Amour (Jura) (France)',1,1,0),(35665,0,135822,'Saint-Michel','France','FR','Saint-Michel (France)',1,1,0),(35666,23867,135823,'Saint-Michel-sur-Loire','France','FR','Saint-Michel-sur-Loire (France)',1,1,0),(35667,0,135824,'Saint-Ouen-l\'Aumone','France','FR','Saint-Ouen-l\'Aumone (France)',1,1,0),(35668,23880,135825,'Saint-Palais-sur-Mer','France','FR','Saint-Palais-sur-Mer (France)',1,1,0),(35669,0,135826,'Saint-Paulien','France','FR','Saint-Paulien (France)',1,1,0),(35670,0,135827,'Saint-Paul-les-Durance','France','FR','Saint-Paul-les-Durance (France)',1,1,0),(35671,0,135828,'Saint-Pee-sur-Nivelle','France','FR','Saint-Pee-sur-Nivelle (France)',1,1,0),(35672,0,135829,'Saint-Philbert-de-Bouaine','France','FR','Saint-Philbert-de-Bouaine (France)',1,1,0),(35673,23902,135830,'Saint-Pierre-Quiberon','France','FR','Saint-Pierre-Quiberon (France)',1,1,0),(35674,23908,135831,'Saint-Preuil','France','FR','Saint-Preuil (France)',1,1,0),(35675,23914,135832,'Saint-Quentin-Fallavier','France','FR','Saint-Quentin-Fallavier (France)',1,1,0),(35676,0,135833,'Saint-Remy-de-Blot','France','FR','Saint-Remy-de-Blot (France)',1,1,0),(35677,23922,135834,'Saint-Romain-la-Motte','France','FR','Saint-Romain-la-Motte (France)',1,1,0),(35678,0,135835,'Saint-Satur','France','FR','Saint-Satur (France)',1,1,0),(35679,0,135836,'Saint-Saulge','France','FR','Saint-Saulge (France)',1,1,0),(35680,23927,135837,'Saint-Sauveur-de-Landemont','France','FR','Saint-Sauveur-de-Landemont (France)',1,1,0),(35681,0,135838,'Saint-Sozy','France','FR','Saint-Sozy (France)',1,1,0),(35682,0,135839,'Saint-Ubalde','Canada','CA','Saint-Ubalde (Canada)',1,1,0),(35683,23940,135840,'Saint-Valery-en-Caux','France','FR','Saint-Valery-en-Caux (France)',1,1,0),(35684,23941,135841,'Saint-Vallier-de-Thiey','France','FR','Saint-Vallier-de-Thiey (France)',1,1,0),(35685,0,135842,'Saint-Victor-des-Oules','France','FR','Saint-Victor-des-Oules (France)',1,1,0),(35686,0,135843,'Saint-Vincent-les-Forts','France','FR','Saint-Vincent-les-Forts (France)',1,1,0),(35687,0,135844,'Saint-Vit','France','FR','Saint-Vit (France)',1,1,0),(35688,23950,135845,'Saipan','Northern Mariana Islands','MP','Saipan (Northern Mariana Islands)',1,1,0),(35689,0,135846,'Saitama-shi','Japan','JP','Saitama-shi (Japan)',1,1,0),(35690,0,135847,'Sakskobing','Denmark','DK','Sakskobing (Denmark)',1,1,0),(35691,0,135848,'Sal','Cape Verde','CV','Sal (Cape Verde)',1,1,0),(35692,0,135849,'Salakovci','Croatia','HR','Salakovci (Croatia)',1,1,0),(35693,23970,135850,'Salas','Spain','ES','Salas (Spain)',1,1,0),(35694,23971,135851,'Salatiga','Indonesia','ID','Salatiga (Indonesia)',1,1,0),(35695,0,135852,'Sale','Morocco','MA','Sale (Morocco)',1,1,0),(35696,0,135853,'Salenstein','Switzerland','CH','Salenstein (Switzerland)',1,1,0),(35697,0,135854,'Salento','Italy','IT','Salento (Italy)',1,1,0),(35698,0,135855,'Salento','Colombia','CO','Salento (Colombia)',1,1,0),(35699,0,135856,'Sales de Llierca','Spain','ES','Sales de Llierca (Spain)',1,1,0),(35700,0,135857,'Salice Terme','Italy','IT','Salice Terme (Italy)',1,1,0),(35701,0,135858,'Saline di Volterra','Italy','IT','Saline di Volterra (Italy)',1,1,0),(35702,0,135859,'Salisbury','United Kingdom','UK','Salisbury (United Kingdom)',1,1,0),(35703,0,135860,'Salisbury','United States of America','US','Salisbury (United States of America)',1,1,0),(35704,0,135861,'Salleles d Aude','France','FR','Salleles d Aude (France)',1,1,0),(35705,24014,135862,'Sallisaw','United States of America','US','Sallisaw (United States of America)',1,1,0),(35706,0,135863,'Salouf','Switzerland','CH','Salouf (Switzerland)',1,1,0),(35707,0,135864,'Saltburn-by-the-Sea','United Kingdom','UK','Saltburn-by-the-Sea (United Kingdom)',1,1,0),(35708,0,135865,'Salvan','Switzerland','CH','Salvan (Switzerland)',1,1,0),(35709,0,135866,'Salz','Germany','DE','Salz (Germany)',1,1,0),(35710,32898,135867,'Sam Roi Yot','Thailand','TH','Sam Roi Yot (Thailand)',1,1,0),(35711,0,135868,'Samos Town','Greece','GR','Samos Town (Greece)',1,1,0),(35712,0,135869,'Samper de Calanda','Spain','ES','Samper de Calanda (Spain)',1,1,0),(35713,32900,135870,'San Adrian','Spain','ES','San Adrian (Spain)',1,1,0),(35714,32907,135871,'San Anselmo','United States of America','US','San Anselmo (United States of America)',1,1,0),(35715,0,135872,'San Antonio','Chile','CL','San Antonio (Chile)',1,1,0),(35716,0,135873,'San Antonio de Requena','Spain','ES','San Antonio de Requena (Spain)',1,1,0),(35717,32933,135874,'San Bernardo del Tuyu','Argentina','AR','San Bernardo del Tuyu (Argentina)',1,1,0),(35718,0,135875,'San Carlos','United States of America','US','San Carlos (United States of America)',1,1,0),(35719,32958,135876,'San Clodio','Spain','ES','San Clodio (Spain)',1,1,0),(35720,0,135877,'San Damiano d\'Asti','Italy','IT','San Damiano d\'Asti (Italy)',1,1,0),(35721,0,135878,'San Diego de los Banos','Cuba','CU','San Diego de los Banos (Cuba)',1,1,0),(35722,32965,135879,'San Dimas','United States of America','US','San Dimas (United States of America)',1,1,0),(35723,32973,135880,'San Donato Val di Comino','Italy','IT','San Donato Val di Comino (Italy)',1,1,0),(35724,0,135881,'San Felipe','Venezuela','VE','San Felipe (Venezuela)',1,1,0),(35725,0,135882,'San Ferdinando','Italy','IT','San Ferdinando (Italy)',1,1,0),(35726,32988,135883,'San Fernando','Philippines','PH','San Fernando (Philippines)',1,1,0),(35727,24100,135884,'San Fernando','Trinidad and Tobago','TT','San Fernando (Trinidad and Tobago)',1,1,0),(35728,33006,135885,'San Giovanni','Italy','IT','San Giovanni (Italy)',1,1,0),(35729,0,135886,'San Giovanni d\'Asso','Italy','IT','San Giovanni d\'Asso (Italy)',1,1,0),(35730,33014,135887,'San Giuliano','Italy','IT','San Giuliano (Italy)',1,1,0),(35731,0,135888,'San Isidro de El General','Costa Rica','CR','San Isidro de El General (Costa Rica)',1,1,0),(35732,0,135889,'San Jose','Costa Rica','CR','San Jose (Costa Rica)',1,1,0),(35733,0,135890,'San Jose de Ocoa','Dominican Republic','DO','San Jose de Ocoa (Dominican Republic)',1,1,0),(35734,0,135891,'San Juan Bautista','Venezuela','VE','San Juan Bautista (Venezuela)',1,1,0),(35735,0,135892,'San Juan de Plan','Spain','ES','San Juan de Plan (Spain)',1,1,0),(35736,0,135893,'San Marcello','Italy','IT','San Marcello (Italy)',1,1,0),(35737,24105,135894,'San Marino','San Marino','SM','San Marino (San Marino)',1,1,0),(35738,33088,135895,'San Martino Buon Albergo','Italy','IT','San Martino Buon Albergo (Italy)',1,1,0),(35739,33098,135896,'San Michele al Tagliamento','Italy','IT','San Michele al Tagliamento (Italy)',1,1,0),(35740,33108,135897,'San Millan de la Cogolla','Spain','ES','San Millan de la Cogolla (Spain)',1,1,0),(35741,33111,135898,'San Nicola la Strada','Italy','IT','San Nicola la Strada (Italy)',1,1,0),(35742,33135,135899,'San Pedro De Alcantara','Spain','ES','San Pedro De Alcantara (Spain)',1,1,0),(35743,33136,135900,'San Pedro del Pinatar','Spain','ES','San Pedro del Pinatar (Spain)',1,1,0),(35744,0,135901,'San Pietro a Marcigliano','Italy','IT','San Pietro a Marcigliano (Italy)',1,1,0),(35745,0,135902,'San Saba','Italy','IT','San Saba (Italy)',1,1,0),(35746,0,135903,'San Salvador','Bahamas','BS','San Salvador (Bahamas)',1,1,0),(35747,0,135904,'San Sebastiano di Folgaria','Italy','IT','San Sebastiano di Folgaria (Italy)',1,1,0),(35748,33165,135905,'San Secondo di Pinerolo','Italy','IT','San Secondo di Pinerolo (Italy)',1,1,0),(35749,33176,135906,'San Vero Milis','Italy','IT','San Vero Milis (Italy)',1,1,0),(35750,33181,135907,'San Vito al Tagliamento','Italy','IT','San Vito al Tagliamento (Italy)',1,1,0),(35751,33188,135908,'San Zeno di Montagna','Italy','IT','San Zeno di Montagna (Italy)',1,1,0),(35752,0,135909,'Sandau (Elbe)','Germany','DE','Sandau (Elbe) (Germany)',1,1,0),(35753,0,135910,'Sande','Germany','DE','Sande (Germany)',1,1,0),(35754,0,135911,'Sandersdorf','Germany','DE','Sandersdorf (Germany)',1,1,0),(35755,24149,135912,'Sandrigo','Italy','IT','Sandrigo (Italy)',1,1,0),(35756,24155,135913,'Sandusky','United States of America','US','Sandusky (United States of America)',1,1,0),(35757,24159,135914,'Sandwich','United States of America','US','Sandwich (United States of America)',1,1,0),(35758,0,135915,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(35759,23986,135917,'Salen','Sweden','SE','Salen (Sweden)',1,1,0),(35760,23993,135918,'Salgovce','Slovakia','SK','Salgovce (Slovakia)',1,1,0),(35761,0,135919,'Salignac-Eyvigues','France','FR','Salignac-Eyvigues (France)',1,1,0),(35762,24002,135920,'Salina','United States of America','US','Salina (United States of America)',1,1,0),(35763,0,135921,'Salina','United States of America','US','Salina (United States of America)',1,1,0),(35764,0,135922,'Salo','Finland','FI','Salo (Finland)',1,1,0),(35765,24020,135923,'Salobrena','Spain','ES','Salobrena (Spain)',1,1,0),(35766,0,135924,'Salt Lake City','United States of America','US','Salt Lake City (United States of America)',1,1,0),(35767,24032,135925,'Salt Spring Island','Canada','CA','Salt Spring Island (Canada)',1,1,0),(35768,0,135926,'Saltcoats','United Kingdom','UK','Saltcoats (United Kingdom)',1,1,0),(35769,0,135927,'Salve','Italy','IT','Salve (Italy)',1,1,0),(35770,0,135928,'Samboja','Indonesia','ID','Samboja (Indonesia)',1,1,0),(35771,24082,135929,'Samoens','France','FR','Samoens (France)',1,1,0),(35772,0,135930,'San Andrea dello Ionio','Italy','IT','San Andrea dello Ionio (Italy)',1,1,0),(35773,0,135931,'San Andres','Spain','ES','San Andres (Spain)',1,1,0),(35774,32911,135932,'San Antonio','Spain','ES','San Antonio (Spain)',1,1,0),(35775,0,135933,'San Baronto','Italy','IT','San Baronto (Italy)',1,1,0),(35776,0,135934,'San Biagio di Callalta','Italy','IT','San Biagio di Callalta (Italy)',1,1,0),(35777,0,135935,'San Casciano Val di Pesa','Italy','IT','San Casciano Val di Pesa (Italy)',1,1,0),(35778,32956,135936,'San Clemente','United States of America','US','San Clemente (United States of America)',1,1,0),(35779,32970,135937,'San Donato','Italy','IT','San Donato (Italy)',1,1,0),(35780,32978,135938,'San Felice del Benaco','Italy','IT','San Felice del Benaco (Italy)',1,1,0),(35781,32985,135939,'San Fernando','Spain','ES','San Fernando (Spain)',1,1,0),(35782,32986,135940,'San Fernando','Argentina','AR','San Fernando (Argentina)',1,1,0),(35783,32998,135941,'San Gemini','Italy','IT','San Gemini (Italy)',1,1,0),(35784,0,135942,'San Gerardo de Dota','Costa Rica','CR','San Gerardo de Dota (Costa Rica)',1,1,0),(35785,33019,135943,'San Giustino Valdarno','Italy','IT','San Giustino Valdarno (Italy)',1,1,0),(35786,24102,135944,'San Ignacio','Belize','BZ','San Ignacio (Belize)',1,1,0),(35787,33028,135945,'San Isidro','Argentina','AR','San Isidro (Argentina)',1,1,0),(35788,0,135946,'San Jacinto','Philippines','PH','San Jacinto (Philippines)',1,1,0),(35789,33034,135947,'San Jose','Spain','ES','San Jose (Spain)',1,1,0),(35790,0,135948,'San Jose de las Matas','Dominican Republic','DO','San Jose de las Matas (Dominican Republic)',1,1,0),(35791,33046,135949,'San Juan Capistrano','United States of America','US','San Juan Capistrano (United States of America)',1,1,0),(35792,0,135950,'San Juan de las Galdonas','Venezuela','VE','San Juan de las Galdonas (Venezuela)',1,1,0),(35793,0,135951,'San Lameer','South Africa','ZA','San Lameer (South Africa)',1,1,0),(35794,0,135952,'San Lawrenz','Malta','MT','San Lawrenz (Malta)',1,1,0),(35795,33060,135953,'San Lazzaro di Savena','Italy','IT','San Lazzaro di Savena (Italy)',1,1,0),(35796,0,135954,'San Lorenzo a Merse','Italy','IT','San Lorenzo a Merse (Italy)',1,1,0),(35797,33064,135955,'San Lorenzo al Mare','Italy','IT','San Lorenzo al Mare (Italy)',1,1,0),(35798,0,135956,'San Lorenzo-Suvereto','Italy','IT','San Lorenzo-Suvereto (Italy)',1,1,0),(35799,33076,135957,'San Luis Potosi','Mexico','MX','San Luis Potosi (Mexico)',1,1,0),(35800,0,135958,'San Macario in Monte','Italy','IT','San Macario in Monte (Italy)',1,1,0),(35801,0,135959,'San Marcello Pistoiese','Italy','IT','San Marcello Pistoiese (Italy)',1,1,0),(35802,0,135960,'San Marco Argentano','Italy','IT','San Marco Argentano (Italy)',1,1,0),(35803,0,135961,'San Marco in Lamis','Italy','IT','San Marco in Lamis (Italy)',1,1,0),(35804,33080,135962,'San Marcos','United States of America','US','San Marcos (United States of America)',1,1,0),(35805,0,135963,'San Mariano','Italy','IT','San Mariano (Italy)',1,1,0),(35806,0,135964,'San Martin de Valdeiglesias','Spain','ES','San Martin de Valdeiglesias (Spain)',1,1,0),(35807,33117,135965,'San Nicolo','Italy','IT','San Nicolo (Italy)',1,1,0),(35808,33124,135966,'San Paolo Bel Sito','Italy','IT','San Paolo Bel Sito (Italy)',1,1,0),(35809,0,135967,'San Patricio del Chanar','Argentina','AR','San Patricio del Chanar (Argentina)',1,1,0),(35810,0,135968,'San Pedro','Belize','BZ','San Pedro (Belize)',1,1,0),(35811,0,135969,'San Pedro de Atacama','Chile','CL','San Pedro de Atacama (Chile)',1,1,0),(35812,33156,135970,'San Rocco a Pilli','Italy','IT','San Rocco a Pilli (Italy)',1,1,0),(35813,0,135971,'San Sebastian','Puerto Rico','PR','San Sebastian (Puerto Rico)',1,1,0),(35814,0,135972,'San Tomaso Agordino','Italy','IT','San Tomaso Agordino (Italy)',1,1,0),(35815,0,135973,'San Tomato','Italy','IT','San Tomato (Italy)',1,1,0),(35816,0,135974,'San Vicente de Canete','Peru','PE','San Vicente de Canete (Peru)',1,1,0),(35817,0,135975,'San Vito Chietino','Italy','IT','San Vito Chietino (Italy)',1,1,0),(35818,24125,135976,'Sanda','Japan','JP','Sanda (Japan)',1,1,0),(35819,24127,135977,'Sandane','Norway','NO','Sandane (Norway)',1,1,0),(35820,0,135978,'Sandbach','United Kingdom','UK','Sandbach (United Kingdom)',1,1,0),(35821,0,135979,'Sandinies','Spain','ES','Sandinies (Spain)',1,1,0),(35822,24143,135980,'Sandnes','Norway','NO','Sandnes (Norway)',1,1,0),(35823,0,135981,'Sandomierz','Poland','PL','Sandomierz (Poland)',1,1,0),(35824,0,135982,'Sandra di Castelnuovo del Garda','Italy','IT','Sandra di Castelnuovo del Garda (Italy)',1,1,0),(35825,24153,135983,'Sandton','South Africa','ZA','Sandton (South Africa)',1,1,0),(35826,24156,135984,'Sandvig','Denmark','DK','Sandvig (Denmark)',1,1,0),(35827,24162,135985,'Sandy Bay','Australia','AU','Sandy Bay (Australia)',1,1,0),(35828,0,135986,'Sandy Springs','United States of America','US','Sandy Springs (United States of America)',1,1,0),(35829,0,135987,'Sangha','Mali','ML','Sangha (Mali)',1,1,0),(35830,24178,135988,'Sanjo','Japan','JP','Sanjo (Japan)',1,1,0),(35831,0,135989,'Sankt Gerold','Austria','AT','Sankt Gerold (Austria)',1,1,0),(35832,0,135990,'Sankt Martin an der Raab','Austria','AT','Sankt Martin an der Raab (Austria)',1,1,0),(35833,0,135991,'Sankt Ulrich (Feldkirchen)','Austria','AT','Sankt Ulrich (Feldkirchen) (Austria)',1,1,0),(35834,0,135992,'Sankt Ulrich am Pillersee','Austria','AT','Sankt Ulrich am Pillersee (Austria)',1,1,0),(35835,0,135993,'Sankt Valentin','Austria','AT','Sankt Valentin (Austria)',1,1,0),(35836,0,135994,'Sankt Vith','Belgium','BE','Sankt Vith (Belgium)',1,1,0),(35837,24186,135995,'Sannat','Malta','MT','Sannat (Malta)',1,1,0),(35838,0,135996,'Sano','Japan','JP','Sano (Japan)',1,1,0),(35839,24194,135997,'Sansia','Taiwan','TW','Sansia (Taiwan)',1,1,0),(35840,0,135998,'Sansoain-Leoz','Spain','ES','Sansoain-Leoz (Spain)',1,1,0),(35841,0,135999,'Sant Ambroggio','France','FR','Sant Ambroggio (France)',1,1,0),(35842,33195,136000,'Sant Andreu de la Barca','Spain','ES','Sant Andreu de la Barca (Spain)',1,1,0),(35843,33208,136001,'Sant Esteve de Palautordera','Spain','ES','Sant Esteve de Palautordera (Spain)',1,1,0),(35844,33212,136002,'Sant Fruitos de Bages','Spain','ES','Sant Fruitos de Bages (Spain)',1,1,0),(35845,33215,136003,'Sant Gregori','Spain','ES','Sant Gregori (Spain)',1,1,0),(35846,0,136004,'Sant Jordi d\'Alfama','Spain','ES','Sant Jordi d\'Alfama (Spain)',1,1,0),(35847,33231,136005,'Sant Pol de Mar','Spain','ES','Sant Pol de Mar (Spain)',1,1,0),(35848,0,136006,'Santa Ana','United States of America','US','Santa Ana (United States of America)',1,1,0),(35849,0,136007,'Santa Ana','United States of America','US','Santa Ana (United States of America)',1,1,0),(35850,33236,136008,'Santa Brigida','Spain','ES','Santa Brigida (Spain)',1,1,0),(35851,33243,136009,'Santa Clara-a-Velha','Portugal','PT','Santa Clara-a-Velha (Portugal)',1,1,0),(35852,33244,136010,'Santa Coloma de Farners','Spain','ES','Santa Coloma de Farners (Spain)',1,1,0),(35853,33246,136011,'Santa Coloma de Queralt','Spain','ES','Santa Coloma de Queralt (Spain)',1,1,0),(35854,0,136012,'San Foca','Italy','IT','San Foca (Italy)',1,1,0),(35855,32993,136013,'San Francesco al Campo','Italy','IT','San Francesco al Campo (Italy)',1,1,0),(35856,32994,136014,'San Francisco','United States of America','US','San Francisco (United States of America)',1,1,0),(35857,0,136015,'San Ginesio','Italy','IT','San Ginesio (Italy)',1,1,0),(35858,33002,136016,'San Giorgio Canavese','Italy','IT','San Giorgio Canavese (Italy)',1,1,0),(35859,0,136017,'San Giovanni in Fiore','Italy','IT','San Giovanni in Fiore (Italy)',1,1,0),(35860,33026,136018,'San Isidro','Philippines','PH','San Isidro (Philippines)',1,1,0),(35861,33040,136019,'San Juan','Philippines','PH','San Juan (Philippines)',1,1,0),(35862,0,136020,'San Juan de Poio','Spain','ES','San Juan de Poio (Spain)',1,1,0),(35863,0,136021,'San Juan Puntallana','Spain','ES','San Juan Puntallana (Spain)',1,1,0),(35864,0,136022,'San Liberale','Italy','IT','San Liberale (Italy)',1,1,0),(35865,0,136023,'San Lorenzo','Spain','ES','San Lorenzo (Spain)',1,1,0),(35866,33074,136024,'San Luis Obispo','United States of America','US','San Luis Obispo (United States of America)',1,1,0),(35867,33085,136025,'San Martin de la Vega','Spain','ES','San Martin de la Vega (Spain)',1,1,0),(35868,0,136026,'San Martin del Castanar','Spain','ES','San Martin del Castanar (Spain)',1,1,0),(35869,33101,136027,'San Miguel','Spain','ES','San Miguel (Spain)',1,1,0),(35870,33109,136028,'San Miniato','Italy','IT','San Miniato (Italy)',1,1,0),(35871,33115,136029,'San Nicolas de los Garza','Mexico','MX','San Nicolas de los Garza (Mexico)',1,1,0),(35872,0,136030,'San Pedro de Macrois','Dominican Republic','DO','San Pedro de Macrois (Dominican Republic)',1,1,0),(35873,0,136031,'San Pedro de Quemes','Bolivia','BO','San Pedro de Quemes (Bolivia)',1,1,0),(35874,0,136032,'San Pere de Ribes','Spain','ES','San Pere de Ribes (Spain)',1,1,0),(35875,33146,136033,'San Prospero','Italy','IT','San Prospero (Italy)',1,1,0),(35876,33154,136034,'San Ramon','United States of America','US','San Ramon (United States of America)',1,1,0),(35877,0,136035,'San Salvo','Italy','IT','San Salvo (Italy)',1,1,0),(35878,0,136036,'San Sebastian de Garabandal','Spain','ES','San Sebastian de Garabandal (Spain)',1,1,0),(35879,0,136037,'San Vicente de Barakaldo','Spain','ES','San Vicente de Barakaldo (Spain)',1,1,0),(35880,0,136038,'San Vicente Do Mar','Spain','ES','San Vicente Do Mar (Spain)',1,1,0),(35881,33179,136039,'San Vincenzo','Italy','IT','San Vincenzo (Italy)',1,1,0),(35882,24109,136040,'Sana\'a','Yemen','YE','Sana\'a (Yemen)',1,1,0),(35883,0,136041,'Sancoins','France','FR','Sancoins (France)',1,1,0),(35884,0,136042,'Sandberg','Germany','DE','Sandberg (Germany)',1,1,0),(35885,24148,136043,'Sandpoint','United States of America','US','Sandpoint (United States of America)',1,1,0),(35886,0,136044,'Sandvika','Norway','NO','Sandvika (Norway)',1,1,0),(35887,0,136045,'Sanford','United States of America','US','Sanford (United States of America)',1,1,0),(35888,0,136046,'Sanitz','Germany','DE','Sanitz (Germany)',1,1,0),(35889,0,136047,'Sankt Georgen ob Murau','Austria','AT','Sankt Georgen ob Murau (Austria)',1,1,0),(35890,0,136048,'Sankt Nikola an der Donau','Austria','AT','Sankt Nikola an der Donau (Austria)',1,1,0),(35891,0,136049,'Sankt Pankraz','Austria','AT','Sankt Pankraz (Austria)',1,1,0),(35892,0,136050,'Sankt Peter im Sulmtal','Austria','AT','Sankt Peter im Sulmtal (Austria)',1,1,0),(35893,0,136051,'Sankt Wolfgang','Germany','DE','Sankt Wolfgang (Germany)',1,1,0),(35894,24193,136052,'Sansepolcro','Italy','IT','Sansepolcro (Italy)',1,1,0),(35895,0,136053,'Sant Carles de Peralta','Spain','ES','Sant Carles de Peralta (Spain)',1,1,0),(35896,0,136054,'Sant Ferran de ses Roques','Spain','ES','Sant Ferran de ses Roques (Spain)',1,1,0),(35897,24195,136055,'Sant Julia de Loria','Andorra','AD','Sant Julia de Loria (Andorra)',1,1,0),(35898,33230,136056,'Sant Pere Pescador','Spain','ES','Sant Pere Pescador (Spain)',1,1,0),(35899,0,136057,'Santa Barbara','United States of America','US','Santa Barbara (United States of America)',1,1,0),(35900,24205,136058,'Santa Cruz','Chile','CL','Santa Cruz (Chile)',1,1,0),(35901,33266,136059,'Santa Domenica Vittoria','Italy','IT','Santa Domenica Vittoria (Italy)',1,1,0),(35902,0,136060,'Santa Elia','Italy','IT','Santa Elia (Italy)',1,1,0),(35903,0,136061,'Santa Eugenia','Spain','ES','Santa Eugenia (Spain)',1,1,0),(35904,0,136062,'Santa Ines','Brazil','BR','Santa Ines (Brazil)',1,1,0),(35905,33282,136063,'Santa Maria Da Feira','Portugal','PT','Santa Maria Da Feira (Portugal)',1,1,0),(35906,33286,136064,'Santa Maria degli Angeli','Italy','IT','Santa Maria degli Angeli (Italy)',1,1,0),(35907,0,136065,'Santa Maria Del Mar','Spain','ES','Santa Maria Del Mar (Spain)',1,1,0),(35908,0,136066,'Santa Monica','United States of America','US','Santa Monica (United States of America)',1,1,0),(35909,0,136067,'Santa Rosa','United States of America','US','Santa Rosa (United States of America)',1,1,0),(35910,0,136068,'Santa Rosa','United States of America','US','Santa Rosa (United States of America)',1,1,0),(35911,0,136069,'Santa Rosa City','Philippines','PH','Santa Rosa City (Philippines)',1,1,0),(35912,0,136070,'Santa Rufina','Italy','IT','Santa Rufina (Italy)',1,1,0),(35913,0,136071,'Santa Terezinha de Itaipu','Brazil','BR','Santa Terezinha de Itaipu (Brazil)',1,1,0),(35914,24221,136072,'Santander','Spain','ES','Santander (Spain)',1,1,0),(35915,0,136073,'Sant\'Angelo','Italy','IT','Sant\'Angelo (Italy)',1,1,0),(35916,0,136074,'Sant\'Antonio di Gallura','Italy','IT','Sant\'Antonio di Gallura (Italy)',1,1,0),(35917,24247,136075,'Santiago de Cuba','Cuba','CU','Santiago de Cuba (Cuba)',1,1,0),(35918,0,136076,'Santiago del Monte','Spain','ES','Santiago del Monte (Spain)',1,1,0),(35919,0,136077,'Santiago Pontones','Spain','ES','Santiago Pontones (Spain)',1,1,0),(35920,33319,136078,'Santo Andre','Brazil','BR','Santo Andre (Brazil)',1,1,0),(35921,0,136079,'Santo Domingo','Spain','ES','Santo Domingo (Spain)',1,1,0),(35922,0,136080,'Santo Estevo','Spain','ES','Santo Estevo (Spain)',1,1,0),(35923,33326,136081,'Santo Stefano al Mare','Italy','IT','Santo Stefano al Mare (Italy)',1,1,0),(35924,0,136082,'Santo Stefano Quisquina','Italy','IT','Santo Stefano Quisquina (Italy)',1,1,0),(35925,0,136083,'Santos de la Humosa','Spain','ES','Santos de la Humosa (Spain)',1,1,0),(35926,24277,136084,'Sanur','Indonesia','ID','Sanur (Indonesia)',1,1,0),(35927,33351,136085,'Sao Joao da Madeira','Portugal','PT','Sao Joao da Madeira (Portugal)',1,1,0),(35928,33358,136086,'Sao Lourenco','Brazil','BR','Sao Lourenco (Brazil)',1,1,0),(35929,0,136087,'Sao Rafael','Portugal','PT','Sao Rafael (Portugal)',1,1,0),(35930,24283,136088,'Sapa','Vietnam','VN','Sapa (Vietnam)',1,1,0),(35931,24288,136089,'Sapphire','United States of America','US','Sapphire (United States of America)',1,1,0),(35932,24298,136090,'Saraburi','Thailand','TH','Saraburi (Thailand)',1,1,0),(35933,0,136091,'Saran','France','FR','Saran (France)',1,1,0),(35934,24314,136092,'Sardara','Italy','IT','Sardara (Italy)',1,1,0),(35935,0,136094,'Sardina','Spain','ES','Sardina (Spain)',1,1,0),(35936,0,136095,'Sarnen','Switzerland','CH','Sarnen (Switzerland)',1,1,0),(35937,0,136096,'Sarrebourg','France','FR','Sarrebourg (France)',1,1,0),(35938,0,136097,'Sarvise','Spain','ES','Sarvise (Spain)',1,1,0),(35939,24360,136098,'Saskatoon','Canada','CA','Saskatoon (Canada)',1,1,0),(35940,24363,136099,'Sassenheim','Netherlands','NL','Sassenheim (Netherlands)',1,1,0),(35941,24385,136100,'Saucelle','Spain','ES','Saucelle (Spain)',1,1,0),(35942,24386,136101,'Sauda','Norway','NO','Sauda (Norway)',1,1,0),(35943,0,136102,'Sault','France','FR','Sault (France)',1,1,0),(35944,24410,136103,'Sausalito','United States of America','US','Sausalito (United States of America)',1,1,0),(35945,24414,136104,'Sautens','Austria','AT','Sautens (Austria)',1,1,0),(35946,0,136105,'Savai\'i','Samoa','WS','Savai\'i (Samoa)',1,1,0),(35947,0,136106,'Savanna','United States of America','US','Savanna (United States of America)',1,1,0),(35948,24426,136107,'Savannah','United States of America','US','Savannah (United States of America)',1,1,0),(35949,0,136108,'Savelletri di Fasano','Italy','IT','Savelletri di Fasano (Italy)',1,1,0),(35950,0,136109,'Saviese','Switzerland','CH','Saviese (Switzerland)',1,1,0),(35951,24460,136110,'Sawyer','United States of America','US','Sawyer (United States of America)',1,1,0),(35952,0,136111,'Sayda','Germany','DE','Sayda (Germany)',1,1,0),(35953,0,136112,'Saint-Florentin','France','FR','Saint-Florentin (France)',1,1,0),(35954,0,136113,'Saint-Gatien-des-Bois','France','FR','Saint-Gatien-des-Bois (France)',1,1,0),(35955,23765,136114,'Saint-Geniez-d\'Olt','France','FR','Saint-Geniez-d\'Olt (France)',1,1,0),(35956,0,136115,'Saint-Georges','France','FR','Saint-Georges (France)',1,1,0),(35957,0,136116,'Saint-Germain-du-Bois','France','FR','Saint-Germain-du-Bois (France)',1,1,0),(35958,23771,136117,'Saint-Germain-les-Corbeil','France','FR','Saint-Germain-les-Corbeil (France)',1,1,0),(35959,0,136118,'Saint-Jean-en-Royans','France','FR','Saint-Jean-en-Royans (France)',1,1,0),(35960,0,136119,'Saint-Joachim','Canada','CA','Saint-Joachim (Canada)',1,1,0),(35961,0,136120,'Saint-Just-Luzac','France','FR','Saint-Just-Luzac (France)',1,1,0),(35962,0,136121,'Saint-Lattier','France','FR','Saint-Lattier (France)',1,1,0),(35963,23825,136122,'Saint-Laurent-de-Mure','France','FR','Saint-Laurent-de-Mure (France)',1,1,0),(35964,0,136123,'Saint-Leonard-de-Noblat','France','FR','Saint-Leonard-de-Noblat (France)',1,1,0),(35965,0,136124,'Saint-Lizier','France','FR','Saint-Lizier (France)',1,1,0),(35966,23836,136125,'Saint-Louis','France','FR','Saint-Louis (France)',1,1,0),(35967,23842,136126,'Saint-Maixent-l\'Ecole','France','FR','Saint-Maixent-l\'Ecole (France)',1,1,0),(35968,23845,136127,'Saint-Marcellin','France','FR','Saint-Marcellin (France)',1,1,0),(35969,0,136128,'Saint-Marc-sur-Richelieu','Canada','CA','Saint-Marc-sur-Richelieu (Canada)',1,1,0),(35970,0,136129,'Saint-Martin-de-Bromes','France','FR','Saint-Martin-de-Bromes (France)',1,1,0),(35971,0,136130,'Saint-Maur','France','FR','Saint-Maur (France)',1,1,0),(35972,0,136131,'Saint-Maurice-d’Ardeche','France','FR','Saint-Maurice-d’Ardeche (France)',1,1,0),(35973,0,136132,'Saint-Medard-de-Guizieres','France','FR','Saint-Medard-de-Guizieres (France)',1,1,0),(35974,0,136133,'Saint-Merd-de-Lapleau','France','FR','Saint-Merd-de-Lapleau (France)',1,1,0),(35975,23868,136134,'Saint-Nicolas','France','FR','Saint-Nicolas (France)',1,1,0),(35976,0,136135,'Saint-Palais','France','FR','Saint-Palais (France)',1,1,0),(35977,0,136136,'Saint-Paul-de-Montminy','Canada','CA','Saint-Paul-de-Montminy (Canada)',1,1,0),(35978,0,136137,'Saint-Paul-d\'Espis','France','FR','Saint-Paul-d\'Espis (France)',1,1,0),(35979,32891,136138,'Saint-Pere','France','FR','Saint-Pere (France)',1,1,0),(35980,23900,136139,'Saint-Pierre-du-Vauvray','France','FR','Saint-Pierre-du-Vauvray (France)',1,1,0),(35981,0,136140,'Saint-Priest (Rhone)','France','FR','Saint-Priest (Rhone) (France)',1,1,0),(35982,23909,136141,'Saint-Priest-en-Jarez','France','FR','Saint-Priest-en-Jarez (France)',1,1,0),(35983,0,136142,'Saint-Remy-sur-Durolle','France','FR','Saint-Remy-sur-Durolle (France)',1,1,0),(35984,23933,136143,'Saint-Sylvestre-sur-Lot','France','FR','Saint-Sylvestre-sur-Lot (France)',1,1,0),(35985,23935,136144,'Saint-Thibault-des-Vignes','France','FR','Saint-Thibault-des-Vignes (France)',1,1,0),(35986,23942,136145,'Saint-Viance','France','FR','Saint-Viance (France)',1,1,0),(35987,23949,136146,'Saint-Yrieix-sur-Charente','France','FR','Saint-Yrieix-sur-Charente (France)',1,1,0),(35988,23952,136147,'Saix','France','FR','Saix (France)',1,1,0),(35989,23961,136148,'Salado','United States of America','US','Salado (United States of America)',1,1,0),(35990,23965,136149,'Salamanca','Spain','ES','Salamanca (Spain)',1,1,0),(35991,23976,136150,'Salbris','France','FR','Salbris (France)',1,1,0),(35992,0,136151,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(35993,0,136152,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(35994,0,136153,'S\'Algar','Spain','ES','S\'Algar (Spain)',1,1,0),(35995,0,136154,'Salihli','Turkey','TR','Salihli (Turkey)',1,1,0),(35996,23999,136155,'Salima','Malawi','MW','Salima (Malawi)',1,1,0),(35997,24003,136156,'Salinas','United States of America','US','Salinas (United States of America)',1,1,0),(35998,32894,136157,'Salinas de Pisuerga','Spain','ES','Salinas de Pisuerga (Spain)',1,1,0),(35999,0,136158,'Salles-Curan','France','FR','Salles-Curan (France)',1,1,0),(36000,0,136159,'Sallmannshausen','Germany','DE','Sallmannshausen (Germany)',1,1,0),(36001,24038,136160,'Salthill','Ireland','IE','Salthill (Ireland)',1,1,0),(36002,0,136161,'Salto di Fondi','Italy','IT','Salto di Fondi (Italy)',1,1,0),(36003,24065,136162,'Samburu','Kenya','KE','Samburu (Kenya)',1,1,0),(36004,24066,136163,'Samedan','Switzerland','CH','Samedan (Switzerland)',1,1,0),(36005,24068,136164,'Sami','Greece','GR','Sami (Greece)',1,1,0),(36006,24085,136165,'Samora Correia','Portugal','PT','Samora Correia (Portugal)',1,1,0),(36007,0,136166,'Samos','Greece','GR','Samos (Greece)',1,1,0),(36008,0,136167,'Samos','Spain','ES','Samos (Spain)',1,1,0),(36009,24086,136168,'Samothraki','Greece','GR','Samothraki (Greece)',1,1,0),(36010,0,136169,'Sampzon','France','FR','Sampzon (France)',1,1,0),(36011,24090,136170,'Samtens','Germany','DE','Samtens (Germany)',1,1,0),(36012,0,136171,'San Basilio Mottola','Italy','IT','San Basilio Mottola (Italy)',1,1,0),(36013,32949,136172,'San Cassiano','Italy','IT','San Cassiano (Italy)',1,1,0),(36014,32954,136173,'San Cipriano Picentino','Italy','IT','San Cipriano Picentino (Italy)',1,1,0),(36015,0,136174,'San Clemente','Ecuador','EC','San Clemente (Ecuador)',1,1,0),(36016,0,136175,'San Clemente del Tuyu','Argentina','AR','San Clemente del Tuyu (Argentina)',1,1,0),(36017,0,136176,'San Dalmazio','Italy','IT','San Dalmazio (Italy)',1,1,0),(36018,32967,136177,'San Dona di Piave','Italy','IT','San Dona di Piave (Italy)',1,1,0),(36019,0,136178,'San Donato in Collina','Italy','IT','San Donato in Collina (Italy)',1,1,0),(36020,0,136179,'San Esteban de Valdueza','Spain','ES','San Esteban de Valdueza (Spain)',1,1,0),(36021,0,136180,'San Felices','Spain','ES','San Felices (Spain)',1,1,0),(36022,32982,136181,'San Felipe','Mexico','MX','San Felipe (Mexico)',1,1,0),(36023,0,136182,'San Gervasio','Italy','IT','San Gervasio (Italy)',1,1,0),(36024,33009,136183,'San Giovanni in Persiceto','Italy','IT','San Giovanni in Persiceto (Italy)',1,1,0),(36025,33011,136184,'San Giovanni Lupatoto','Italy','IT','San Giovanni Lupatoto (Italy)',1,1,0),(36026,0,136185,'San Giuliano Rimini','Italy','IT','San Giuliano Rimini (Italy)',1,1,0),(36027,0,136186,'San Jose','Guatemala','GT','San Jose (Guatemala)',1,1,0),(36028,0,136187,'San Jose de la Montana','Costa Rica','CR','San Jose de la Montana (Costa Rica)',1,1,0),(36029,0,136188,'San Juan','Puerto Rico','PR','San Juan (Puerto Rico)',1,1,0),(36030,0,136189,'San Juan (bei Alicante)','Spain','ES','San Juan (bei Alicante) (Spain)',1,1,0),(36031,33050,136190,'San Juan de Los Terreros','Spain','ES','San Juan de Los Terreros (Spain)',1,1,0),(36032,33069,136191,'San Lorenzo in Banale','Italy','IT','San Lorenzo in Banale (Italy)',1,1,0),(36033,33072,136192,'San Luis','Spain','ES','San Luis (Spain)',1,1,0),(36034,33087,136193,'San Martino al Cimino','Italy','IT','San Martino al Cimino (Italy)',1,1,0),(36035,0,136194,'San Mauro a Mare','Italy','IT','San Mauro a Mare (Italy)',1,1,0),(36036,0,136195,'San Menaio','Italy','IT','San Menaio (Italy)',1,1,0),(36037,0,136196,'San Michele di Pagana','Italy','IT','San Michele di Pagana (Italy)',1,1,0),(36038,33106,136197,'San Miguel De Allende','Mexico','MX','San Miguel De Allende (Mexico)',1,1,0),(36039,0,136198,'San Nicolas','Spain','ES','San Nicolas (Spain)',1,1,0),(36040,0,136199,'San Pedro Sula','Honduras','HN','San Pedro Sula (Honduras)',1,1,0),(36041,0,136200,'San Pellegrino','Italy','IT','San Pellegrino (Italy)',1,1,0),(36042,33141,136201,'San Pellegrino Terme','Italy','IT','San Pellegrino Terme (Italy)',1,1,0),(36043,0,136202,'San Pietro a Vico','Italy','IT','San Pietro a Vico (Italy)',1,1,0),(36044,33151,136203,'San Rafael','United States of America','US','San Rafael (United States of America)',1,1,0),(36045,0,136204,'San Ramon','Costa Rica','CR','San Ramon (Costa Rica)',1,1,0),(36046,0,136205,'San Salvatore di Fitalia','Italy','IT','San Salvatore di Fitalia (Italy)',1,1,0),(36047,0,136206,'Schladern','Germany','DE','Schladern (Germany)',1,1,0),(36048,0,136207,'Schlanders','Italy','IT','Schlanders (Italy)',1,1,0),(36049,0,136208,'Schleich','Germany','DE','Schleich (Germany)',1,1,0),(36050,0,136209,'Schlotheim','Germany','DE','Schlotheim (Germany)',1,1,0),(36051,0,136210,'Schlusslberg','Austria','AT','Schlusslberg (Austria)',1,1,0),(36052,24560,136211,'Schnelldorf','Germany','DE','Schnelldorf (Germany)',1,1,0),(36053,0,136212,'Schonau','Germany','DE','Schonau (Germany)',1,1,0),(36054,0,136213,'Schonbach','Germany','DE','Schonbach (Germany)',1,1,0),(36055,0,136214,'Schonberg / Schonberg Beach','Germany','DE','Schonberg / Schonberg Beach (Germany)',1,1,0),(36056,0,136215,'Schonecken','Germany','DE','Schonecken (Germany)',1,1,0),(36057,24579,136216,'Schonefeld','Germany','DE','Schonefeld (Germany)',1,1,0),(36058,0,136217,'Schonenberg-Kubelberg','Germany','DE','Schonenberg-Kubelberg (Germany)',1,1,0),(36059,0,136218,'Schontal','Germany','DE','Schontal (Germany)',1,1,0),(36060,0,136219,'Schonwald (Fichtelgebirge)','Germany','DE','Schonwald (Fichtelgebirge) (Germany)',1,1,0),(36061,0,136220,'Schonwalde-Glien','Germany','DE','Schonwalde-Glien (Germany)',1,1,0),(36062,0,136221,'Schoondijke','Netherlands','NL','Schoondijke (Netherlands)',1,1,0),(36063,24591,136222,'Schorssow','Germany','DE','Schorssow (Germany)',1,1,0),(36064,0,136223,'Schozach','Germany','DE','Schozach (Germany)',1,1,0),(36065,24594,136224,'Schramberg','Germany','DE','Schramberg (Germany)',1,1,0),(36066,0,136225,'Schrocken','Austria','AT','Schrocken (Austria)',1,1,0),(36067,0,136226,'Schumen','Bulgaria','BG','Schumen (Bulgaria)',1,1,0),(36068,0,136227,'Schuttertal','Germany','DE','Schuttertal (Germany)',1,1,0),(36069,0,136228,'Schwanberg','Austria','AT','Schwanberg (Austria)',1,1,0),(36070,0,136229,'Schwandorf','Germany','DE','Schwandorf (Germany)',1,1,0),(36071,24613,136230,'Schwarmstedt','Germany','DE','Schwarmstedt (Germany)',1,1,0),(36072,0,136231,'Schwarz','Germany','DE','Schwarz (Germany)',1,1,0),(36073,0,136232,'Schwarzburg','Germany','DE','Schwarzburg (Germany)',1,1,0),(36074,24615,136233,'Schwarzenberg','Austria','AT','Schwarzenberg (Austria)',1,1,0),(36075,24619,136234,'Schwarzheide','Germany','DE','Schwarzheide (Germany)',1,1,0),(36076,0,136235,'Schweina','Germany','DE','Schweina (Germany)',1,1,0),(36077,0,136236,'Schwelm','Germany','DE','Schwelm (Germany)',1,1,0),(36078,0,136237,'Schwende','Switzerland','CH','Schwende (Switzerland)',1,1,0),(36079,0,136238,'Schwerte','Germany','DE','Schwerte (Germany)',1,1,0),(36080,24631,136239,'Schwieberdingen','Germany','DE','Schwieberdingen (Germany)',1,1,0),(36081,24636,136240,'Sciez','France','FR','Sciez (France)',1,1,0),(36082,24648,136241,'Scorze','Italy','IT','Scorze (Italy)',1,1,0),(36083,24658,136242,'Scottsburg','United States of America','US','Scottsburg (United States of America)',1,1,0),(36084,0,136243,'Scunthorpe','United Kingdom','UK','Scunthorpe (United Kingdom)',1,1,0),(36085,24682,136244,'Seaside','United States of America','US','Seaside (United States of America)',1,1,0),(36086,0,136245,'Seaton Carew','United Kingdom','UK','Seaton Carew (United Kingdom)',1,1,0),(36087,24691,136246,'Sebastopol','United States of America','US','Sebastopol (United States of America)',1,1,0),(36088,0,136247,'Sebnitz','Germany','DE','Sebnitz (Germany)',1,1,0),(36089,0,136248,'sebulcor','Spain','ES','sebulcor (Spain)',1,1,0),(36090,24701,136249,'Secunda','South Africa','ZA','Secunda (South Africa)',1,1,0),(36091,24704,136250,'Sedan','France','FR','Sedan (France)',1,1,0),(36092,0,136251,'Sedbusk','United Kingdom','UK','Sedbusk (United Kingdom)',1,1,0),(36093,0,136252,'Sedgeford','United Kingdom','UK','Sedgeford (United Kingdom)',1,1,0),(36094,24710,136253,'Sedona','United States of America','US','Sedona (United States of America)',1,1,0),(36095,0,136254,'Sedro-Woolley','United States of America','US','Sedro-Woolley (United States of America)',1,1,0),(36096,0,136255,'Seedorf','Germany','DE','Seedorf (Germany)',1,1,0),(36097,0,136256,'Seeheim-Jugenheim','Germany','DE','Seeheim-Jugenheim (Germany)',1,1,0),(36098,0,136257,'Seelbach','Germany','DE','Seelbach (Germany)',1,1,0),(36099,0,136258,'Seelitz','Germany','DE','Seelitz (Germany)',1,1,0),(36100,0,136259,'Seget Vranjica','Croatia','HR','Seget Vranjica (Croatia)',1,1,0),(36101,0,136260,'Segura de Leon','Spain','ES','Segura de Leon (Spain)',1,1,0),(36102,24764,136261,'Selce','Croatia','HR','Selce (Croatia)',1,1,0),(36103,0,136262,'Selianitika','Greece','GR','Selianitika (Greece)',1,1,0),(36104,24781,136263,'Sellersburg','United States of America','US','Sellersburg (United States of America)',1,1,0),(36105,24785,136264,'Selma','United States of America','US','Selma (United States of America)',1,1,0),(36106,24804,136265,'Semur-en-Auxois','France','FR','Semur-en-Auxois (France)',1,1,0),(36107,0,136266,'Senggigi Beach','Indonesia','ID','Senggigi Beach (Indonesia)',1,1,0),(36108,0,136267,'Senise','Italy','IT','Senise (Italy)',1,1,0),(36109,24821,136268,'Sennariolo','Italy','IT','Sennariolo (Italy)',1,1,0),(36110,24823,136269,'Sennecey-les-Dijon','France','FR','Sennecey-les-Dijon (France)',1,1,0),(36111,0,136270,'Sepolno Krajenskie','Poland','PL','Sepolno Krajenskie (Poland)',1,1,0),(36112,0,136271,'Seppenrade','Germany','DE','Seppenrade (Germany)',1,1,0),(36113,0,136272,'Seraya Kecil Island','Indonesia','ID','Seraya Kecil Island (Indonesia)',1,1,0),(36114,0,136273,'Sergeac','France','FR','Sergeac (France)',1,1,0),(36115,0,136274,'Sergiev Posad','Russia','RU','Sergiev Posad (Russia)',1,1,0),(36116,0,136275,'Serignac-sur-Garonne','France','FR','Serignac-sur-Garonne (France)',1,1,0),(36117,0,136276,'Serra San Bruno','Italy','IT','Serra San Bruno (Italy)',1,1,0),(36118,24871,136277,'Serre Chevalier','France','FR','Serre Chevalier (France)',1,1,0),(36119,0,136278,'Serrekunda','Gambia','GM','Serrekunda (Gambia)',1,1,0),(36120,0,136279,'Servon','France','FR','Servon (France)',1,1,0),(36121,0,136280,'Sesfontein','Namibia','NA','Sesfontein (Namibia)',1,1,0),(36122,0,136281,'Seven Mile Ford','United States of America','US','Seven Mile Ford (United States of America)',1,1,0),(36123,0,136282,'Seven Spirit Bay','Australia','AU','Seven Spirit Bay (Australia)',1,1,0),(36124,0,136283,'Severn Bridge','Canada','CA','Severn Bridge (Canada)',1,1,0),(36125,0,136284,'Sewliewo','Bulgaria','BG','Sewliewo (Bulgaria)',1,1,0),(36126,24972,136286,'Shanghai','China','CN','Shanghai (China)',1,1,0),(36127,0,136287,'Shannan','China','CN','Shannan (China)',1,1,0),(36128,24994,136288,'Shark Bay','Australia','AU','Shark Bay (Australia)',1,1,0),(36129,0,136289,'Shaviyani Atoll','Maldives','MV','Shaviyani Atoll (Maldives)',1,1,0),(36130,25010,136290,'Shawnee','United States of America','US','Shawnee (United States of America)',1,1,0),(36131,0,136291,'Shawnee on Delaware','United States of America','US','Shawnee on Delaware (United States of America)',1,1,0),(36132,25013,136292,'Sheboygan','United States of America','US','Sheboygan (United States of America)',1,1,0),(36133,25019,136293,'Sheffield','United States of America','US','Sheffield (United States of America)',1,1,0),(36134,25026,136294,'Shelby','United States of America','US','Shelby (United States of America)',1,1,0),(36135,0,136295,'Shepherd\'s Bush','United Kingdom','UK','Shepherd\'s Bush (United Kingdom)',1,1,0),(36136,25053,136296,'Sherwood','United States of America','US','Sherwood (United States of America)',1,1,0),(36137,0,136297,'Shetland','United Kingdom','UK','Shetland (United Kingdom)',1,1,0),(36138,0,136298,'Shillingstone','United Kingdom','UK','Shillingstone (United Kingdom)',1,1,0),(36139,0,136299,'Shirakawa','Japan','JP','Shirakawa (Japan)',1,1,0),(36140,0,136300,'Shizuishan','China','CN','Shizuishan (China)',1,1,0),(36141,25123,136301,'Shoreview','United States of America','US','Shoreview (United States of America)',1,1,0),(36142,25131,136302,'Shreveport','United States of America','US','Shreveport (United States of America)',1,1,0),(36143,0,136303,'Shubenacadie','Canada','CA','Shubenacadie (Canada)',1,1,0),(36144,0,136304,'Sidi Ifni','Morocco','MA','Sidi Ifni (Morocco)',1,1,0),(36145,25173,136305,'Sidney','Canada','CA','Sidney (Canada)',1,1,0),(36146,0,136306,'Siegenburg','Germany','DE','Siegenburg (Germany)',1,1,0),(36147,0,136307,'Siek','Germany','DE','Siek (Germany)',1,1,0),(36148,33421,136308,'Sierra Nevada','Spain','ES','Sierra Nevada (Spain)',1,1,0),(36149,0,136309,'Sigatoka','Fiji Islands','FJ','Sigatoka (Fiji Islands)',1,1,0),(36150,0,136310,'Sighnaghi','Georgia','GE','Sighnaghi (Georgia)',1,1,0),(36151,0,136311,'Sigonce','France','FR','Sigonce (France)',1,1,0),(36152,25226,136313,'Silifke','Turkey','TR','Silifke (Turkey)',1,1,0),(36153,0,136314,'Sillavengo','Italy','IT','Sillavengo (Italy)',1,1,0),(36154,0,136315,'San Clemente','Spain','ES','San Clemente (Spain)',1,1,0),(36155,0,136316,'San Concordio di Moriano','Italy','IT','San Concordio di Moriano (Italy)',1,1,0),(36156,0,136317,'San Cristobal','Venezuela','VE','San Cristobal (Venezuela)',1,1,0),(36157,32977,136318,'San Felice Circeo','Italy','IT','San Felice Circeo (Italy)',1,1,0),(36158,32979,136319,'San Felices de Buelna','Spain','ES','San Felices de Buelna (Spain)',1,1,0),(36159,0,136320,'San Feliciano sul Trasimeno','Italy','IT','San Feliciano sul Trasimeno (Italy)',1,1,0),(36160,0,136321,'San Fernando','Chile','CL','San Fernando (Chile)',1,1,0),(36161,24101,136322,'San German','Puerto Rico','PR','San German (Puerto Rico)',1,1,0),(36162,0,136323,'San Giorgio Ionico','Italy','IT','San Giorgio Ionico (Italy)',1,1,0),(36163,0,136324,'San Giovanni Teatino','Italy','IT','San Giovanni Teatino (Italy)',1,1,0),(36164,33015,136325,'San Giuliano Milanese','Italy','IT','San Giuliano Milanese (Italy)',1,1,0),(36165,33027,136326,'San Isidro','Spain','ES','San Isidro (Spain)',1,1,0),(36166,0,136327,'San Jose de Maipo','Chile','CL','San Jose de Maipo (Chile)',1,1,0),(36167,0,136328,'San Juan de la Rambla','Spain','ES','San Juan de la Rambla (Spain)',1,1,0),(36168,33065,136329,'San Lorenzo de El Escorial','Spain','ES','San Lorenzo de El Escorial (Spain)',1,1,0),(36169,0,136330,'San Lorenzo in Campo','Italy','IT','San Lorenzo in Campo (Italy)',1,1,0),(36170,33083,136331,'San Martin','United States of America','US','San Martin (United States of America)',1,1,0),(36171,0,136332,'San Martino in Freddana','Italy','IT','San Martino in Freddana (Italy)',1,1,0),(36172,24106,136333,'San Miguel','El Salvador','SV','San Miguel (El Salvador)',1,1,0),(36173,0,136334,'San Nicolao','France','FR','San Nicolao (France)',1,1,0),(36174,33114,136335,'San Nicolas de los Arroyos','Argentina','AR','San Nicolas de los Arroyos (Argentina)',1,1,0),(36175,33125,136336,'San Pasquale','Italy','IT','San Pasquale (Italy)',1,1,0),(36176,33130,136337,'San Pedro','United States of America','US','San Pedro (United States of America)',1,1,0),(36177,33129,136338,'San Pedro','Argentina','AR','San Pedro (Argentina)',1,1,0),(36178,0,136339,'San Pietro in Bevagna','Italy','IT','San Pietro in Bevagna (Italy)',1,1,0),(36179,0,136340,'San Pietro in Palazzi','Italy','IT','San Pietro in Palazzi (Italy)',1,1,0),(36180,33153,136341,'San Rafael','Spain','ES','San Rafael (Spain)',1,1,0),(36181,33149,136342,'San Rafael','Argentina','AR','San Rafael (Argentina)',1,1,0),(36182,33155,136343,'San Remo','Italy','IT','San Remo (Italy)',1,1,0),(36183,0,136344,'San Roque','Philippines','PH','San Roque (Philippines)',1,1,0),(36184,33159,136345,'San Salvador de Jujuy','Argentina','AR','San Salvador de Jujuy (Argentina)',1,1,0),(36185,33168,136346,'San Simeon','United States of America','US','San Simeon (United States of America)',1,1,0),(36186,33175,136347,'San Vendemiano','Italy','IT','San Vendemiano (Italy)',1,1,0),(36187,33177,136348,'San Vicente de Alcantara','Spain','ES','San Vicente de Alcantara (Spain)',1,1,0),(36188,24112,136349,'Sanarica','Italy','IT','Sanarica (Italy)',1,1,0),(36189,0,136350,'Sancti-Spiritus','Spain','ES','Sancti-Spiritus (Spain)',1,1,0),(36190,0,136351,'Sandhamn','Sweden','SE','Sandhamn (Sweden)',1,1,0),(36191,0,136352,'Sangatte','France','FR','Sangatte (France)',1,1,0),(36192,0,136353,'Sankt Johann bei Herberstein','Austria','AT','Sankt Johann bei Herberstein (Austria)',1,1,0),(36193,0,136354,'Sankt Oswald bei Freistadt','Austria','AT','Sankt Oswald bei Freistadt (Austria)',1,1,0),(36194,0,136355,'Sankt Wolfgang-Kienberg','Austria','AT','Sankt Wolfgang-Kienberg (Austria)',1,1,0),(36195,0,136356,'Sanmartin','Romania','RO','Sanmartin (Romania)',1,1,0),(36196,24188,136357,'Sannicola','Italy','IT','Sannicola (Italy)',1,1,0),(36197,0,136358,'Sansac-de-Marmiesse','France','FR','Sansac-de-Marmiesse (France)',1,1,0),(36198,0,136359,'Sant\' Ambrogio di Valpolicella','Italy','IT','Sant\' Ambrogio di Valpolicella (Italy)',1,1,0),(36199,0,136360,'Sant Esteve de Guialbes','Spain','ES','Sant Esteve de Guialbes (Spain)',1,1,0),(36200,0,136361,'Sant Feliu','Spain','ES','Sant Feliu (Spain)',1,1,0),(36201,33216,136362,'Sant Hilari Sacalm','Spain','ES','Sant Hilari Sacalm (Spain)',1,1,0),(36202,0,136363,'Sant\' Isidoro','Italy','IT','Sant\' Isidoro (Italy)',1,1,0),(36203,0,136364,'Santa Barbara','Costa Rica','CR','Santa Barbara (Costa Rica)',1,1,0),(36204,24201,136365,'Santa Catalina','Argentina','AR','Santa Catalina (Argentina)',1,1,0),(36205,0,136366,'Santa Catalina','Panama','PA','Santa Catalina (Panama)',1,1,0),(36206,0,136367,'Santa Clara','Cuba','CU','Santa Clara (Cuba)',1,1,0),(36207,0,136368,'Santa Cruz','Ecuador','EC','Santa Cruz (Ecuador)',1,1,0),(36208,0,136369,'Santa Cruz','Costa Rica','CR','Santa Cruz (Costa Rica)',1,1,0),(36209,0,136370,'Santa Cruz','United States of America','US','Santa Cruz (United States of America)',1,1,0),(36210,33260,136371,'Santa Cruz de la Palma','Spain','ES','Santa Cruz de la Palma (Spain)',1,1,0),(36211,0,136372,'Santa Fe de Antioquia','Colombia','CO','Santa Fe de Antioquia (Colombia)',1,1,0),(36212,0,136373,'Santa Gertrudis','Spain','ES','Santa Gertrudis (Spain)',1,1,0),(36213,0,136374,'Santa Lucia','Cuba','CU','Santa Lucia (Cuba)',1,1,0),(36214,24211,136375,'Santa Maria','Cape Verde','CV','Santa Maria (Cape Verde)',1,1,0),(36215,33281,136376,'Santa Maria a Monte','Italy','IT','Santa Maria a Monte (Italy)',1,1,0),(36216,0,136377,'Santa Maria del Giudice','Italy','IT','Santa Maria del Giudice (Italy)',1,1,0),(36217,0,136378,'Santa Maria del Tietar','Spain','ES','Santa Maria del Tietar (Spain)',1,1,0),(36218,33279,136379,'Santa Maria','Portugal','PT','Santa Maria (Portugal)',1,1,0),(36219,0,136380,'Santa Rita','Chile','CL','Santa Rita (Chile)',1,1,0),(36220,0,136381,'Santa Rosa','Mexico','MX','Santa Rosa (Mexico)',1,1,0),(36221,0,136382,'Santa Rosa de Cabal','Colombia','CO','Santa Rosa de Cabal (Colombia)',1,1,0),(36222,33308,136383,'Santa Susanna','Spain','ES','Santa Susanna (Spain)',1,1,0),(36223,0,136384,'Santana de Parnaiba','Brazil','BR','Santana de Parnaiba (Brazil)',1,1,0),(36224,0,136385,'Sant\'Angelo in Colle','Italy','IT','Sant\'Angelo in Colle (Italy)',1,1,0),(36225,0,136386,'Sant\'Angelo Limosano','Italy','IT','Sant\'Angelo Limosano (Italy)',1,1,0),(36226,24235,136387,'Santee','United States of America','US','Santee (United States of America)',1,1,0),(36227,24237,136388,'Sant\'Elia Fiumerapido','Italy','IT','Sant\'Elia Fiumerapido (Italy)',1,1,0),(36228,0,136389,'Santiago','Cape Verde','CV','Santiago (Cape Verde)',1,1,0),(36229,0,136390,'Santiago de los Caballeros','Dominican Republic','DO','Santiago de los Caballeros (Dominican Republic)',1,1,0),(36230,0,136391,'Santo Tome','Argentina','AR','Santo Tome (Argentina)',1,1,0),(36231,0,136392,'Sanya','China','CN','Sanya (China)',1,1,0),(36232,33347,136393,'Sao Francisco do Sul','Brazil','BR','Sao Francisco do Sul (Brazil)',1,1,0),(36233,0,136394,'Sao Goncalo do Amarante','Brazil','BR','Sao Goncalo do Amarante (Brazil)',1,1,0),(36234,0,136395,'Sao Miguel do Gostoso','Brazil','BR','Sao Miguel do Gostoso (Brazil)',1,1,0),(36235,33369,136396,'Sao Miguel Island','Portugal','PT','Sao Miguel Island (Portugal)',1,1,0),(36236,0,136397,'Saparua','Indonesia','ID','Saparua (Indonesia)',1,1,0),(36237,0,136398,'Saransk','Russia','RU','Saransk (Russia)',1,1,0),(36238,0,136399,'S\'Argo / S\'Agaro','Spain','ES','S\'Argo / S\'Agaro (Spain)',1,1,0),(36239,0,136400,'Sarnitsa','Bulgaria','BG','Sarnitsa (Bulgaria)',1,1,0),(36240,0,136401,'Sarntal','Italy','IT','Sarntal (Italy)',1,1,0),(36241,24343,136402,'Sarria','Spain','ES','Sarria (Spain)',1,1,0),(36242,24348,136403,'Sarteano','Italy','IT','Sarteano (Italy)',1,1,0),(36243,0,136404,'Sarti','Greece','GR','Sarti (Greece)',1,1,0),(36244,24353,136405,'Sarzana','Italy','IT','Sarzana (Italy)',1,1,0),(36245,0,136406,'Sassoferrato','Italy','IT','Sassoferrato (Italy)',1,1,0),(36246,24368,136407,'Sastago','Spain','ES','Sastago (Spain)',1,1,0),(36247,0,136408,'Sastamala','Finland','FI','Sastamala (Finland)',1,1,0),(36248,0,136410,'Saint-Andre-les-Vergers','France','FR','Saint-Andre-les-Vergers (France)',1,1,0),(36249,23664,136411,'Saint-Aubin-sur-Mer','France','FR','Saint-Aubin-sur-Mer (France)',1,1,0),(36250,0,136412,'Saint-Barthelemy','France','FR','Saint-Barthelemy (France)',1,1,0),(36251,23677,136413,'Saint-Bonnet-le-Froid','France','FR','Saint-Bonnet-le-Froid (France)',1,1,0),(36252,0,136414,'Saint-Brice-Courcelles','France','FR','Saint-Brice-Courcelles (France)',1,1,0),(36253,23693,136415,'Saint-Chamond','France','FR','Saint-Chamond (France)',1,1,0),(36254,23694,136416,'Saint-Christol','France','FR','Saint-Christol (France)',1,1,0),(36255,0,136417,'Saint-Christophe','Italy','IT','Saint-Christophe (Italy)',1,1,0),(36256,23705,136418,'Saint-Desirat','France','FR','Saint-Desirat (France)',1,1,0),(36257,0,136419,'Sainte-Christine-d\'Auvergne','Canada','CA','Sainte-Christine-d\'Auvergne (Canada)',1,1,0),(36258,0,136420,'Sainte-Marie-aux-Mines','France','FR','Sainte-Marie-aux-Mines (France)',1,1,0),(36259,0,136421,'Saint-Eustache','Canada','CA','Saint-Eustache (Canada)',1,1,0),(36260,23767,136422,'Saint-Genis-Pouilly','France','FR','Saint-Genis-Pouilly (France)',1,1,0),(36261,23770,136423,'Saint-Germain-en-Laye','France','FR','Saint-Germain-en-Laye (France)',1,1,0),(36262,0,136424,'Saint-Gilles','France','FR','Saint-Gilles (France)',1,1,0),(36263,0,136425,'Saint-Gilles-Croix-de-Vie','France','FR','Saint-Gilles-Croix-de-Vie (France)',1,1,0),(36264,0,136426,'Saint-Jacques de Leeds','Canada','CA','Saint-Jacques de Leeds (Canada)',1,1,0),(36265,0,136427,'Saint-Jean','St. Barthelemy',NULL,'Saint-Jean (St. Barthelemy)',1,1,0),(36266,0,136428,'Saint-Jean-d\'Angely','France','FR','Saint-Jean-d\'Angely (France)',1,1,0),(36267,0,136429,'Saint-Jean-de-Braye','France','FR','Saint-Jean-de-Braye (France)',1,1,0),(36268,23795,136430,'Saint-Jean-de-Luz','France','FR','Saint-Jean-de-Luz (France)',1,1,0),(36269,0,136431,'Saint-Jean-Pied-de-Port','France','FR','Saint-Jean-Pied-de-Port (France)',1,1,0),(36270,0,136432,'Saint-Laurent-d\'Aigouze','France','FR','Saint-Laurent-d\'Aigouze (France)',1,1,0),(36271,23824,136433,'Saint-Laurent-de-la-Cabrerisse','France','FR','Saint-Laurent-de-la-Cabrerisse (France)',1,1,0),(36272,0,136434,'Saint-Martin-d\'Uriage','France','FR','Saint-Martin-d\'Uriage (France)',1,1,0),(36273,23860,136435,'Saint-Maurice','Switzerland','CH','Saint-Maurice (Switzerland)',1,1,0),(36274,0,136436,'Saint-Maurice-sur-Moselle','France','FR','Saint-Maurice-sur-Moselle (France)',1,1,0),(36275,0,136437,'Saint-Michel-de-Lanes','France','FR','Saint-Michel-de-Lanes (France)',1,1,0),(36276,0,136438,'Saint-Pardoux-l\'Ortigier','France','FR','Saint-Pardoux-l\'Ortigier (France)',1,1,0),(36277,0,136439,'Saint-Paul-en-Born','France','FR','Saint-Paul-en-Born (France)',1,1,0),(36278,23892,136440,'Saint-Pierre','Italy','IT','Saint-Pierre (Italy)',1,1,0),(36279,0,136441,'Saint-Pierre-du-Mont','France','FR','Saint-Pierre-du-Mont (France)',1,1,0),(36280,23916,136442,'Saint-Quentin-sur-le-Homme','France','FR','Saint-Quentin-sur-le-Homme (France)',1,1,0),(36281,23934,136443,'Saint-Symphorien-le-Chateau','France','FR','Saint-Symphorien-le-Chateau (France)',1,1,0),(36282,23958,136444,'Sala','Sweden','SE','Sala (Sweden)',1,1,0),(36283,0,136445,'Salach','Germany','DE','Salach (Germany)',1,1,0),(36284,23964,136446,'Salamanca','United States of America','US','Salamanca (United States of America)',1,1,0),(36285,0,136447,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(36286,0,136448,'Salem','United States of America','US','Salem (United States of America)',1,1,0),(36287,0,136449,'Sali','Croatia','HR','Sali (Croatia)',1,1,0),(36288,0,136450,'Salina Cruz','Mexico','MX','Salina Cruz (Mexico)',1,1,0),(36289,0,136451,'Salurn','Italy','IT','Salurn (Italy)',1,1,0),(36290,0,136452,'Saluzzo','Italy','IT','Saluzzo (Italy)',1,1,0),(36291,0,136453,'Salvaterra Do Extremo','Portugal','PT','Salvaterra Do Extremo (Portugal)',1,1,0),(36292,24054,136454,'Salybia','Trinidad and Tobago','TT','Salybia (Trinidad and Tobago)',1,1,0),(36293,0,136455,'Salzbergen','Germany','DE','Salzbergen (Germany)',1,1,0),(36294,0,136456,'Salzburg','Austria','AT','Salzburg (Austria)',1,1,0),(36295,0,136457,'Salzkotten','Germany','DE','Salzkotten (Germany)',1,1,0),(36296,24060,136458,'Samarinda','Indonesia','ID','Samarinda (Indonesia)',1,1,0),(36297,0,136459,'Samlesbury','United Kingdom','UK','Samlesbury (United Kingdom)',1,1,0),(36298,0,136460,'Sammomme','Italy','IT','Sammomme (Italy)',1,1,0),(36299,0,136461,'Samosir',NULL,NULL,'Samosir ()',1,1,0),(36300,24091,136462,'Samut Prakan','Thailand','TH','Samut Prakan (Thailand)',1,1,0),(36301,0,136463,'Samut Sakhon','Thailand','TH','Samut Sakhon (Thailand)',1,1,0),(36302,32901,136464,'San Agustin','Spain','ES','San Agustin (Spain)',1,1,0),(36303,24094,136465,'San Anton','Malta','MT','San Anton (Malta)',1,1,0),(36304,32909,136466,'San Antonio','United States of America','US','San Antonio (United States of America)',1,1,0),(36305,32923,136467,'San Bartolomeo al Mare','Italy','IT','San Bartolomeo al Mare (Italy)',1,1,0),(36306,0,136468,'San Benedetto di Lugana','Italy','IT','San Benedetto di Lugana (Italy)',1,1,0),(36307,32927,136469,'San Benedetto Po','Italy','IT','San Benedetto Po (Italy)',1,1,0),(36308,32931,136470,'San Bernardino','Switzerland','CH','San Bernardino (Switzerland)',1,1,0),(36309,32942,136471,'San Carlos de Bariloche','Argentina','AR','San Carlos de Bariloche (Argentina)',1,1,0),(36310,0,136472,'San Carlos de la Rapida','Spain','ES','San Carlos de la Rapida (Spain)',1,1,0),(36311,0,136473,'San Cristobal','Ecuador','EC','San Cristobal (Ecuador)',1,1,0),(36312,0,136474,'San Daniele del Friuli','Italy','IT','San Daniele del Friuli (Italy)',1,1,0),(36313,0,136475,'San Francisco Javier','Spain','ES','San Francisco Javier (Spain)',1,1,0),(36314,0,136476,'San Gemiliano','Italy','IT','San Gemiliano (Italy)',1,1,0),(36315,33010,136477,'San Giovanni la Punta','Italy','IT','San Giovanni la Punta (Italy)',1,1,0),(36316,0,136478,'San Giovanni Montebello','Italy','IT','San Giovanni Montebello (Italy)',1,1,0),(36317,33031,136479,'San Javier','Spain','ES','San Javier (Spain)',1,1,0),(36318,33061,136480,'San Leandro','United States of America','US','San Leandro (United States of America)',1,1,0),(36319,0,136481,'San Marco di Castellabate','Italy','IT','San Marco di Castellabate (Italy)',1,1,0),(36320,33086,136482,'San Martin de los Andes','Argentina','AR','San Martin de los Andes (Argentina)',1,1,0),(36321,33099,136483,'San Michele di Ganzaria','Italy','IT','San Michele di Ganzaria (Italy)',1,1,0),(36322,33104,136484,'San Miguel de Abona','Spain','ES','San Miguel de Abona (Spain)',1,1,0),(36323,33119,136485,'San Pablo','United States of America','US','San Pablo (United States of America)',1,1,0),(36324,33122,136486,'San Pantaleo','Italy','IT','San Pantaleo (Italy)',1,1,0),(36325,33145,136487,'San Pietro in Cariano','Italy','IT','San Pietro in Cariano (Italy)',1,1,0),(36326,0,136488,'San Polo in Chianti','Italy','IT','San Polo in Chianti (Italy)',1,1,0),(36327,0,136489,'San Quirico di Pescia','Italy','IT','San Quirico di Pescia (Italy)',1,1,0),(36328,33148,136490,'San Quirico D\'Orcia','Italy','IT','San Quirico D\'Orcia (Italy)',1,1,0),(36329,0,136491,'San Siro (Comer See)','Italy','IT','San Siro (Comer See) (Italy)',1,1,0),(36330,0,136492,'San Telmo','Spain','ES','San Telmo (Spain)',1,1,0),(36331,0,136493,'San Telmo','Argentina','AR','San Telmo (Argentina)',1,1,0),(36332,33174,136494,'San Venanzo','Italy','IT','San Venanzo (Italy)',1,1,0),(36333,0,136495,'San Venerina','Italy','IT','San Venerina (Italy)',1,1,0),(36334,33178,136496,'San Vicente de la Barquera','Spain','ES','San Vicente de la Barquera (Spain)',1,1,0),(36335,0,136497,'San Vicente del Raspeig','Spain','ES','San Vicente del Raspeig (Spain)',1,1,0),(36336,33182,136498,'San Vito dei Normanni','Italy','IT','San Vito dei Normanni (Italy)',1,1,0),(36337,33183,136499,'San Vito di Cadore','Italy','IT','San Vito di Cadore (Italy)',1,1,0),(36338,33185,136500,'San Vito Lo Capo','Italy','IT','San Vito Lo Capo (Italy)',1,1,0),(36339,0,136502,'Sankt Gallen','Austria','AT','Sankt Gallen (Austria)',1,1,0),(36340,0,136503,'Sankt Oswald-Moderbrugg','Austria','AT','Sankt Oswald-Moderbrugg (Austria)',1,1,0),(36341,0,136504,'Sanlucar de Guadiana','Spain','ES','Sanlucar de Guadiana (Spain)',1,1,0),(36342,0,136505,'San-Martino-di-Lota','France','FR','San-Martino-di-Lota (France)',1,1,0),(36343,24184,136506,'Sanmenxia','China','CN','Sanmenxia (China)',1,1,0),(36344,24185,136507,'Sanming','China','CN','Sanming (China)',1,1,0),(36345,0,136508,'Sanquhar','United Kingdom','UK','Sanquhar (United Kingdom)',1,1,0),(36346,33202,136509,'Sant Boi de Llobregat','Spain','ES','Sant Boi de Llobregat (Spain)',1,1,0),(36347,0,136510,'Sant Climent','Spain','ES','Sant Climent (Spain)',1,1,0),(36348,0,136511,'Sant Cugat del Valles','Spain','ES','Sant Cugat del Valles (Spain)',1,1,0),(36349,0,136512,'Sant Felitz de Lauragues','France','FR','Sant Felitz de Lauragues (France)',1,1,0),(36350,33224,136513,'Sant Llorenc de la Muga','Spain','ES','Sant Llorenc de la Muga (Spain)',1,1,0),(36351,0,136514,'Sant Marti de Tous','Spain','ES','Sant Marti de Tous (Spain)',1,1,0),(36352,0,136515,'Santa Clarita','United States of America','US','Santa Clarita (United States of America)',1,1,0),(36353,0,136516,'Santa Elena','Costa Rica','CR','Santa Elena (Costa Rica)',1,1,0),(36354,0,136517,'Santa Fe Springs','United States of America','US','Santa Fe Springs (United States of America)',1,1,0),(36355,0,136518,'Santa Margherita','Italy','IT','Santa Margherita (Italy)',1,1,0),(36356,0,136519,'Santa Maria Coghinas','Italy','IT','Santa Maria Coghinas (Italy)',1,1,0),(36357,33290,136520,'Santa Maria di Leuca','Italy','IT','Santa Maria di Leuca (Italy)',1,1,0),(36358,33292,136521,'Santa Maria di Sala','Italy','IT','Santa Maria di Sala (Italy)',1,1,0),(36359,33300,136522,'Santa Marina Salina','Italy','IT','Santa Marina Salina (Italy)',1,1,0),(36360,33301,136523,'Santa Marinella','Italy','IT','Santa Marinella (Italy)',1,1,0),(36361,24212,136524,'Santa Marta','Colombia','CO','Santa Marta (Colombia)',1,1,0),(36362,0,136525,'Santa Mission','Guyana','GY','Santa Mission (Guyana)',1,1,0),(36363,24217,136526,'Sant\'Alessio Siculo','Italy','IT','Sant\'Alessio Siculo (Italy)',1,1,0),(36364,24244,136527,'Santiago','Panama','PA','Santiago (Panama)',1,1,0),(36365,0,136528,'Santiago de Chile','Chile','CL','Santiago de Chile (Chile)',1,1,0),(36366,0,136529,'Santiago de la Espada','Spain','ES','Santiago de la Espada (Spain)',1,1,0),(36367,0,136530,'Santibanez el Alto','Spain','ES','Santibanez el Alto (Spain)',1,1,0),(36368,24254,136531,'Santo Antao','Cape Verde','CV','Santo Antao (Cape Verde)',1,1,0),(36369,0,136532,'Santo Antonio','Sao Tome & Principe','ST','Santo Antonio (Sao Tome & Principe)',1,1,0),(36370,0,136533,'Santo Antonio de Jesus','Brazil','BR','Santo Antonio de Jesus (Brazil)',1,1,0),(36371,0,136534,'Santo Antonio do Amparo','Brazil','BR','Santo Antonio do Amparo (Brazil)',1,1,0),(36372,33327,136535,'Santo Stefano Belbo','Italy','IT','Santo Stefano Belbo (Italy)',1,1,0),(36373,33333,136536,'Santo Tirso','Portugal','PT','Santo Tirso (Portugal)',1,1,0),(36374,0,136537,'Sao Francisco de Paula','Brazil','BR','Sao Francisco de Paula (Brazil)',1,1,0),(36375,0,136538,'Sao Joao De Angolares','Sao Tome & Principe','ST','Sao Joao De Angolares (Sao Tome & Principe)',1,1,0),(36376,33353,136539,'Sao Joao del Rei','Brazil','BR','Sao Joao del Rei (Brazil)',1,1,0),(36377,33355,136540,'Sao Jose do Rio Preto','Brazil','BR','Sao Jose do Rio Preto (Brazil)',1,1,0),(36378,33356,136541,'Sao Jose dos Campos','Brazil','BR','Sao Jose dos Campos (Brazil)',1,1,0),(36379,0,136542,'Sao Luis','Portugal','PT','Sao Luis (Portugal)',1,1,0),(36380,0,136543,'Sao Tome','Sao Tome & Principe','ST','Sao Tome (Sao Tome & Principe)',1,1,0),(36381,0,136544,'Saragossa','Spain','ES','Saragossa (Spain)',1,1,0),(36382,24300,136545,'Saraland','United States of America','US','Saraland (United States of America)',1,1,0),(36383,0,136546,'Sarata Monteoru','Romania','RO','Sarata Monteoru (Romania)',1,1,0),(36384,24311,136547,'Sarcedo','Italy','IT','Sarcedo (Italy)',1,1,0),(36385,0,136548,'Sarchos','Greece','GR','Sarchos (Greece)',1,1,0),(36386,0,136549,'Sark','United Kingdom','UK','Sark (United Kingdom)',1,1,0),(36387,0,136550,'Sarlata','Greece','GR','Sarlata (Greece)',1,1,0),(36388,24335,136551,'Sarnonico','Italy','IT','Sarnonico (Italy)',1,1,0),(36389,0,136552,'Saro','Sweden','SE','Saro (Sweden)',1,1,0),(36390,0,136553,'Sart-Lez-Spa','Belgium','BE','Sart-Lez-Spa (Belgium)',1,1,0),(36391,24352,136554,'Sarvar','Hungary','HU','Sarvar (Hungary)',1,1,0),(36392,0,136556,'Sassenburg','Germany','DE','Sassenburg (Germany)',1,1,0),(36393,24365,136557,'Sassetta','Italy','IT','Sassetta (Italy)',1,1,0),(36394,24366,136558,'Sassnitz','Germany','DE','Sassnitz (Germany)',1,1,0),(36395,0,136559,'Sassoleone','Italy','IT','Sassoleone (Italy)',1,1,0),(36396,24374,136560,'Satillieu','France','FR','Satillieu (France)',1,1,0),(36397,24380,136561,'Sattledt','Austria','AT','Sattledt (Austria)',1,1,0),(36398,24381,136562,'Satu Mare','Romania','RO','Satu Mare (Romania)',1,1,0),(36399,0,136563,'Saturna Island','Canada','CA','Saturna Island (Canada)',1,1,0),(36400,24390,136564,'Saugatuck','United States of America','US','Saugatuck (United States of America)',1,1,0),(36401,0,136565,'Saulkrasti','Latvia','LV','Saulkrasti (Latvia)',1,1,0),(36402,24402,136566,'Saulx-les-Chartreux','France','FR','Saulx-les-Chartreux (France)',1,1,0),(36403,0,136567,'Saulxures','France','FR','Saulxures (France)',1,1,0),(36404,24412,136568,'Sausset-les-Pins','France','FR','Sausset-les-Pins (France)',1,1,0),(36405,33386,136569,'Sauve','France','FR','Sauve (France)',1,1,0),(36406,24418,136570,'Sauveterre-de-Comminges','France','FR','Sauveterre-de-Comminges (France)',1,1,0),(36407,0,136571,'Savannah','United States of America','US','Savannah (United States of America)',1,1,0),(36408,24440,136572,'Savigny-sur-Orge','France','FR','Savigny-sur-Orge (France)',1,1,0),(36409,24446,136573,'Savonlinna','Finland','FI','Savonlinna (Finland)',1,1,0),(36410,0,136574,'Savuti','Botswana','BW','Savuti (Botswana)',1,1,0),(36411,0,136575,'Saxnas','Sweden','SE','Saxnas (Sweden)',1,1,0),(36412,24463,136576,'Sayre','United States of America','US','Sayre (United States of America)',1,1,0),(36413,0,136577,'Sayre','United States of America','US','Sayre (United States of America)',1,1,0),(36414,24469,136578,'Scala','Italy','IT','Scala (Italy)',1,1,0),(36415,24479,136579,'Scarborough','Canada','CA','Scarborough (Canada)',1,1,0),(36416,0,136580,'Sceaux-sur-Huisne','France','FR','Sceaux-sur-Huisne (France)',1,1,0),(36417,0,136581,'Schardenberg','Austria','AT','Schardenberg (Austria)',1,1,0),(36418,24516,136582,'Schenefeld','Germany','DE','Schenefeld (Germany)',1,1,0),(36419,0,136583,'Schengen','Luxembourg','LU','Schengen (Luxembourg)',1,1,0),(36420,0,136584,'Sche?litz','Germany','DE','Sche?litz (Germany)',1,1,0),(36421,24523,136585,'Schiedam','Netherlands','NL','Schiedam (Netherlands)',1,1,0),(36422,24524,136586,'Schieder-Schwalenberg','Germany','DE','Schieder-Schwalenberg (Germany)',1,1,0),(36423,24531,136587,'Schillig','Germany','DE','Schillig (Germany)',1,1,0),(36424,0,136588,'Schin op Geul','Netherlands','NL','Schin op Geul (Netherlands)',1,1,0),(36425,0,136589,'Schinoussa','Greece','GR','Schinoussa (Greece)',1,1,0),(36426,24537,136590,'Schirmeck','France','FR','Schirmeck (France)',1,1,0),(36427,0,136591,'Schleiz','Germany','DE','Schleiz (Germany)',1,1,0),(36428,0,136592,'Schleusingerneundorf','Germany','DE','Schleusingerneundorf (Germany)',1,1,0),(36429,24546,136593,'Schliersee','Germany','DE','Schliersee (Germany)',1,1,0),(36430,24548,136594,'Schluchsee','Germany','DE','Schluchsee (Germany)',1,1,0),(36431,0,136595,'Schmalfeld','Germany','DE','Schmalfeld (Germany)',1,1,0),(36432,0,136596,'Schmallenberg-Westfeld','Germany','DE','Schmallenberg-Westfeld (Germany)',1,1,0),(36433,0,136597,'Schmitten','Germany','DE','Schmitten (Germany)',1,1,0),(36434,0,136598,'Schmuggerow','Germany','DE','Schmuggerow (Germany)',1,1,0),(36435,0,136599,'Schnals','Italy','IT','Schnals (Italy)',1,1,0),(36436,24558,136600,'Schneeberg','Germany','DE','Schneeberg (Germany)',1,1,0),(36437,0,136601,'Santa Cristina d\'Aro','Spain','ES','Santa Cristina d\'Aro (Spain)',1,1,0),(36438,33255,136602,'Santa Cruz','Portugal','PT','Santa Cruz (Portugal)',1,1,0),(36439,0,136603,'Santa Eufemia Lamezia','Italy','IT','Santa Eufemia Lamezia (Italy)',1,1,0),(36440,0,136604,'Santa Eulalia','Spain','ES','Santa Eulalia (Spain)',1,1,0),(36441,0,136605,'Santa Fe','United States of America','US','Santa Fe (United States of America)',1,1,0),(36442,0,136606,'Santa Luce','Italy','IT','Santa Luce (Italy)',1,1,0),(36443,0,136607,'Santa Lucia de Tirajana','Spain','ES','Santa Lucia de Tirajana (Spain)',1,1,0),(36444,0,136608,'Santa Lucija','Malta','MT','Santa Lucija (Malta)',1,1,0),(36445,0,136609,'Santa Maria del Cedro','Italy','IT','Santa Maria del Cedro (Italy)',1,1,0),(36446,0,136610,'Santa Maria del Mar','Cuba','CU','Santa Maria del Mar (Cuba)',1,1,0),(36447,0,136611,'Santa Maria del Paramo','Spain','ES','Santa Maria del Paramo (Spain)',1,1,0),(36448,33289,136612,'Santa Maria di Castellabate','Italy','IT','Santa Maria di Castellabate (Italy)',1,1,0),(36449,33291,136613,'Santa Maria di Licodia','Italy','IT','Santa Maria di Licodia (Italy)',1,1,0),(36450,33296,136614,'Santa Maria Navarrese','Italy','IT','Santa Maria Navarrese (Italy)',1,1,0),(36451,0,136615,'Santa Nella Village','United States of America','US','Santa Nella Village (United States of America)',1,1,0),(36452,33306,136616,'Santa Ponsa','Spain','ES','Santa Ponsa (Spain)',1,1,0),(36453,0,136617,'Santa Rosa','United States of America','US','Santa Rosa (United States of America)',1,1,0),(36454,0,136618,'Santa Rosa','Argentina','AR','Santa Rosa (Argentina)',1,1,0),(36455,0,136619,'Santa Vittoria d\'Alba','Italy','IT','Santa Vittoria d\'Alba (Italy)',1,1,0),(36456,24218,136620,'Santa-Lucia-di-Moriani','France','FR','Santa-Lucia-di-Moriani (France)',1,1,0),(36457,0,136621,'Santar de Viseu','Portugal','PT','Santar de Viseu (Portugal)',1,1,0),(36458,0,136622,'Sant\'Egidio alla Vibrata','Italy','IT','Sant\'Egidio alla Vibrata (Italy)',1,1,0),(36459,0,136623,'Santi Beach','Thailand','TH','Santi Beach (Thailand)',1,1,0),(36460,0,136624,'Santiago de Compostela','Spain','ES','Santiago de Compostela (Spain)',1,1,0),(36461,24250,136625,'Sant\'Ilario d\'Enza','Italy','IT','Sant\'Ilario d\'Enza (Italy)',1,1,0),(36462,0,136626,'Santiponce','Spain','ES','Santiponce (Spain)',1,1,0),(36463,0,136627,'Santo Domingo (Merida)','Venezuela','VE','Santo Domingo (Merida) (Venezuela)',1,1,0),(36464,33328,136628,'Santo Stefano di Cadore','Italy','IT','Santo Stefano di Cadore (Italy)',1,1,0),(36465,0,136629,'Santo Tome del Puerto','Spain','ES','Santo Tome del Puerto (Spain)',1,1,0),(36466,33345,136630,'Sao Felix da Marinha','Portugal','PT','Sao Felix da Marinha (Portugal)',1,1,0),(36467,0,136631,'Sao Filipe / Fogo','Cape Verde','CV','Sao Filipe / Fogo (Cape Verde)',1,1,0),(36468,0,136632,'Sao Martinho do Porto','Portugal','PT','Sao Martinho do Porto (Portugal)',1,1,0),(36469,0,136633,'Sao Pedro da Serra (Nova Friburgo)','Brazil','BR','Sao Pedro da Serra (Nova Friburgo) (Brazil)',1,1,0),(36470,0,136634,'Saratoga Springs','United States of America','US','Saratoga Springs (United States of America)',1,1,0),(36471,0,136635,'Sarbinowo','Poland','PL','Sarbinowo (Poland)',1,1,0),(36472,24318,136636,'Sardis','United States of America','US','Sardis (United States of America)',1,1,0),(36473,0,136637,'Sargans','Switzerland','CH','Sargans (Switzerland)',1,1,0),(36474,0,136638,'Sarhos','Greece','GR','Sarhos (Greece)',1,1,0),(36475,0,136639,'Sarna','Sweden','SE','Sarna (Sweden)',1,1,0),(36476,24337,136640,'Saronno','Italy','IT','Saronno (Italy)',1,1,0),(36477,24347,136641,'Sarstedt','Germany','DE','Sarstedt (Germany)',1,1,0),(36478,0,136642,'Sasbach am Kaiserstuhl','Germany','DE','Sasbach am Kaiserstuhl (Germany)',1,1,0),(36479,24362,136643,'Sassari','Italy','IT','Sassari (Italy)',1,1,0),(36480,0,136644,'Sassenberg','Germany','DE','Sassenberg (Germany)',1,1,0),(36481,0,136645,'Sasso Marconi','Italy','IT','Sasso Marconi (Italy)',1,1,0),(36482,0,136646,'Sassulo','Italy','IT','Sassulo (Italy)',1,1,0),(36483,0,136647,'Sattel','Switzerland','CH','Sattel (Switzerland)',1,1,0),(36484,0,136648,'Sattelbogen','Germany','DE','Sattelbogen (Germany)',1,1,0),(36485,24394,136649,'Saulce-sur-Rhone','France','FR','Saulce-sur-Rhone (France)',1,1,0),(36486,24396,136650,'Saulieu','France','FR','Saulieu (France)',1,1,0),(36487,0,136651,'Sauters','Grenada','GD','Sauters (Grenada)',1,1,0),(36488,24416,136652,'Sauveterre','France','FR','Sauveterre (France)',1,1,0),(36489,24425,136653,'Savanna la Mar','Jamaica','JM','Savanna la Mar (Jamaica)',1,1,0),(36490,0,136654,'Savannah Park','Trinidad and Tobago','TT','Savannah Park (Trinidad and Tobago)',1,1,0),(36491,0,136655,'Savoy','France','FR','Savoy (France)',1,1,0),(36492,0,136657,'Sayda-Friedebach','Germany','DE','Sayda-Friedebach (Germany)',1,1,0),(36493,0,136658,'Sazava','Czech Republic','CZ','Sazava (Czech Republic)',1,1,0),(36494,0,136659,'Scaleta','Greece','GR','Scaleta (Greece)',1,1,0),(36495,24474,136660,'Scandicci','Italy','IT','Scandicci (Italy)',1,1,0),(36496,24478,136661,'Scanzorosciate','Italy','IT','Scanzorosciate (Italy)',1,1,0),(36497,24487,136662,'Scarperia','Italy','IT','Scarperia (Italy)',1,1,0),(36498,0,136663,'Schadeleben','Germany','DE','Schadeleben (Germany)',1,1,0),(36499,24497,136664,'Schagen','Netherlands','NL','Schagen (Netherlands)',1,1,0),(36500,0,136665,'Scharrachbergheim-Irmstett','France','FR','Scharrachbergheim-Irmstett (France)',1,1,0),(36501,0,136666,'Scheffau','Austria','AT','Scheffau (Austria)',1,1,0),(36502,24507,136667,'Schefferville','Canada','CA','Schefferville (Canada)',1,1,0),(36503,24509,136668,'Scheibenberg','Germany','DE','Scheibenberg (Germany)',1,1,0),(36504,0,136669,'Scheidgen','Luxembourg','LU','Scheidgen (Luxembourg)',1,1,0),(36505,0,136670,'Scheifling','Austria','AT','Scheifling (Austria)',1,1,0),(36506,0,136671,'Schenkenzell','Germany','DE','Schenkenzell (Germany)',1,1,0),(36507,0,136672,'Schiers','Switzerland','CH','Schiers (Switzerland)',1,1,0),(36508,0,136673,'Schifflange','Luxembourg','LU','Schifflange (Luxembourg)',1,1,0),(36509,0,136674,'Schillingen','Germany','DE','Schillingen (Germany)',1,1,0),(36510,0,136675,'Schimkent russ.','Kazakhstan','KZ','Schimkent russ. (Kazakhstan)',1,1,0),(36511,0,136676,'Schipka','Bulgaria','BG','Schipka (Bulgaria)',1,1,0),(36512,0,136677,'Schirgiswalde','Germany','DE','Schirgiswalde (Germany)',1,1,0),(36513,0,136678,'Schlitz','Germany','DE','Schlitz (Germany)',1,1,0),(36514,0,136679,'Schluderns','Italy','IT','Schluderns (Italy)',1,1,0),(36515,24552,136680,'Schmalkalden','Germany','DE','Schmalkalden (Germany)',1,1,0),(36516,0,136681,'Schmilka','Germany','DE','Schmilka (Germany)',1,1,0),(36517,0,136682,'Schneizelreuth','Germany','DE','Schneizelreuth (Germany)',1,1,0),(36518,24562,136683,'Schneverdingen','Germany','DE','Schneverdingen (Germany)',1,1,0),(36519,0,136684,'Schobull','Germany','DE','Schobull (Germany)',1,1,0),(36520,0,136685,'Schomberg-Unterreichenbach','Germany','DE','Schomberg-Unterreichenbach (Germany)',1,1,0),(36521,24575,136686,'Schonach','Germany','DE','Schonach (Germany)',1,1,0),(36522,0,136687,'Schonau im Schwarzwald','Germany','DE','Schonau im Schwarzwald (Germany)',1,1,0),(36523,0,136688,'Schonberg (Holstein)','Germany','DE','Schonberg (Holstein) (Germany)',1,1,0),(36524,0,136689,'Schoneck','Germany','DE','Schoneck (Germany)',1,1,0),(36525,0,136690,'Schopfheim - Wiechs','Germany','DE','Schopfheim - Wiechs (Germany)',1,1,0),(36526,0,136691,'Schorfheide','Germany','DE','Schorfheide (Germany)',1,1,0),(36527,24592,136692,'Schortens','Germany','DE','Schortens (Germany)',1,1,0),(36528,0,136693,'Schull','Ireland','IE','Schull (Ireland)',1,1,0),(36529,0,136694,'Schulp','Germany','DE','Schulp (Germany)',1,1,0),(36530,0,136695,'Schuttorf','Germany','DE','Schuttorf (Germany)',1,1,0),(36531,0,136696,'Schutz','Germany','DE','Schutz (Germany)',1,1,0),(36532,24606,136697,'Schwabach','Germany','DE','Schwabach (Germany)',1,1,0),(36533,0,136698,'Schwabhausen','Germany','DE','Schwabhausen (Germany)',1,1,0),(36534,0,136699,'Schwalbach','Germany','DE','Schwalbach (Germany)',1,1,0),(36535,0,136700,'Schwangau','Germany','DE','Schwangau (Germany)',1,1,0),(36536,24475,136701,'Scansano','Italy','IT','Scansano (Italy)',1,1,0),(36537,0,136702,'Scarborough','United Kingdom','UK','Scarborough (United Kingdom)',1,1,0),(36538,24483,136703,'Scario','Italy','IT','Scario (Italy)',1,1,0),(36539,24485,136704,'Scarlino','Italy','IT','Scarlino (Italy)',1,1,0),(36540,0,136705,'Schaeffersheim','France','FR','Schaeffersheim (France)',1,1,0),(36541,0,136706,'Schafstedt','Germany','DE','Schafstedt (Germany)',1,1,0),(36542,0,136707,'Schalkhaar','Netherlands','NL','Schalkhaar (Netherlands)',1,1,0),(36543,24499,136708,'S-chanf','Switzerland','CH','S-chanf (Switzerland)',1,1,0),(36544,0,136709,'Scharmer','Netherlands','NL','Scharmer (Netherlands)',1,1,0),(36545,0,136710,'Schenna','Italy','IT','Schenna (Italy)',1,1,0),(36546,0,136711,'Scherpenzeel','Netherlands','NL','Scherpenzeel (Netherlands)',1,1,0),(36547,0,136712,'Scherwiller','France','FR','Scherwiller (France)',1,1,0),(36548,24536,136713,'Schiphol','Netherlands','NL','Schiphol (Netherlands)',1,1,0),(36549,24544,136714,'Schlemmin','Germany','DE','Schlemmin (Germany)',1,1,0),(36550,0,136715,'Schlieben OT Oelsig','Germany','DE','Schlieben OT Oelsig (Germany)',1,1,0),(36551,0,136716,'Schlitters','Austria','AT','Schlitters (Austria)',1,1,0),(36552,0,136717,'Schmiedeberg','Germany','DE','Schmiedeberg (Germany)',1,1,0),(36553,0,136718,'Schnaitsee','Germany','DE','Schnaitsee (Germany)',1,1,0),(36554,24559,136719,'Schneizlreuth','Germany','DE','Schneizlreuth (Germany)',1,1,0),(36555,0,136720,'Schoemanskloof','South Africa','ZA','Schoemanskloof (South Africa)',1,1,0),(36556,0,136721,'Schollene','Germany','DE','Schollene (Germany)',1,1,0),(36557,0,136722,'Schonau (Pfalz)','Germany','DE','Schonau (Pfalz) (Germany)',1,1,0),(36558,0,136723,'Schonau im Muhlkreis','Austria','AT','Schonau im Muhlkreis (Austria)',1,1,0),(36559,0,136724,'Schonbach','Austria','AT','Schonbach (Austria)',1,1,0),(36560,0,136725,'Schonbuhel','Austria','AT','Schonbuhel (Austria)',1,1,0),(36561,0,136726,'Schongau','Germany','DE','Schongau (Germany)',1,1,0),(36562,24582,136727,'Schonheide','Germany','DE','Schonheide (Germany)',1,1,0),(36563,24588,136728,'Schoppernau','Austria','AT','Schoppernau (Austria)',1,1,0),(36564,24598,136729,'Schroon Lake','United States of America','US','Schroon Lake (United States of America)',1,1,0),(36565,0,136730,'Schwarzach (Niederbayern)','Germany','DE','Schwarzach (Niederbayern) (Germany)',1,1,0),(36566,0,136731,'Schwarzenbek','Germany','DE','Schwarzenbek (Germany)',1,1,0),(36567,0,136732,'Schwarzenhof','Germany','DE','Schwarzenhof (Germany)',1,1,0),(36568,24621,136733,'Schwechat','Austria','AT','Schwechat (Austria)',1,1,0),(36569,0,136734,'Schweidnitz','Poland','PL','Schweidnitz (Poland)',1,1,0),(36570,0,136735,'Schwentinental','Germany','DE','Schwentinental (Germany)',1,1,0),(36571,0,136736,'Scone','United Kingdom','UK','Scone (United Kingdom)',1,1,0),(36572,24656,136737,'Scottsbluff','United States of America','US','Scottsbluff (United States of America)',1,1,0),(36573,24657,136738,'Scottsboro','United States of America','US','Scottsboro (United States of America)',1,1,0),(36574,24671,136739,'Seagrove Beach','United States of America','US','Seagrove Beach (United States of America)',1,1,0),(36575,24678,136740,'Seaman','United States of America','US','Seaman (United States of America)',1,1,0),(36576,0,136741,'Seascale','United Kingdom','UK','Seascale (United Kingdom)',1,1,0),(36577,0,136742,'Seaside','United States of America','US','Seaside (United States of America)',1,1,0),(36578,24683,136743,'SeaTac','United States of America','US','SeaTac (United States of America)',1,1,0),(36579,0,136744,'Sebayur Island','Indonesia','ID','Sebayur Island (Indonesia)',1,1,0),(36580,0,136745,'Secar de la Real','Spain','ES','Secar de la Real (Spain)',1,1,0),(36581,24696,136746,'Secaucus','United States of America','US','Secaucus (United States of America)',1,1,0),(36582,24697,136747,'Sechelt','Canada','CA','Sechelt (Canada)',1,1,0),(36583,0,136749,'Sedgefield','South Africa','ZA','Sedgefield (South Africa)',1,1,0),(36584,24717,136750,'Seebruck','Germany','DE','Seebruck (Germany)',1,1,0),(36585,24727,136751,'Seffner','United States of America','US','Seffner (United States of America)',1,1,0),(36586,24751,136752,'Seinajoki','Finland','FI','Seinajoki (Finland)',1,1,0),(36587,0,136753,'Seitenstetten','Austria','AT','Seitenstetten (Austria)',1,1,0),(36588,0,136754,'Selayar','Indonesia','ID','Selayar (Indonesia)',1,1,0),(36589,24766,136755,'Selcuk','Turkey','TR','Selcuk (Turkey)',1,1,0),(36590,0,136756,'Selma','United States of America','US','Selma (United States of America)',1,1,0),(36591,0,136757,'Selma','United States of America','US','Selma (United States of America)',1,1,0),(36592,24786,136758,'Selmer','United States of America','US','Selmer (United States of America)',1,1,0),(36593,24797,136759,'Semmering','Austria','AT','Semmering (Austria)',1,1,0),(36594,0,136760,'Sempeter pri Gorici','Slovenia','SI','Sempeter pri Gorici (Slovenia)',1,1,0),(36595,0,136761,'Senai','Malaysia','MY','Senai (Malaysia)',1,1,0),(36596,24806,136762,'Senatobia','United States of America','US','Senatobia (United States of America)',1,1,0),(36597,24808,136763,'Sencelles','Spain','ES','Sencelles (Spain)',1,1,0),(36598,24816,136764,'Senftenberg','Austria','AT','Senftenberg (Austria)',1,1,0),(36599,0,136765,'Sengata','Indonesia','ID','Sengata (Indonesia)',1,1,0),(36600,24849,136767,'Seregno','Italy','IT','Seregno (Italy)',1,1,0),(36601,24851,136768,'Serengeti National Park','Tanzania','TZ','Serengeti National Park (Tanzania)',1,1,0),(36602,0,136769,'Serignan-Plage','France','FR','Serignan-Plage (France)',1,1,0),(36603,0,136770,'Serooskerke','Netherlands','NL','Serooskerke (Netherlands)',1,1,0),(36604,0,136771,'Serowe','Botswana','BW','Serowe (Botswana)',1,1,0),(36605,24863,136772,'Serra di Ferro','France','FR','Serra di Ferro (France)',1,1,0),(36606,0,136773,'Serralunga d\'Alba','Italy','IT','Serralunga d\'Alba (Italy)',1,1,0),(36607,24869,136774,'Serravalle','San Marino','SM','Serravalle (San Marino)',1,1,0),(36608,24870,136775,'Serravalle Pistoiese','Italy','IT','Serravalle Pistoiese (Italy)',1,1,0),(36609,0,136776,'Serrejon','Spain','ES','Serrejon (Spain)',1,1,0),(36610,24876,136777,'Serriera','France','FR','Serriera (France)',1,1,0),(36611,0,136778,'Serrieres','France','FR','Serrieres (France)',1,1,0),(36612,0,136779,'Serves-sur-Rhone','France','FR','Serves-sur-Rhone (France)',1,1,0),(36613,0,136780,'Ses Alqueries','Spain','ES','Ses Alqueries (Spain)',1,1,0),(36614,33405,136781,'Ses Salines','Spain','ES','Ses Salines (Spain)',1,1,0),(36615,0,136782,'Sesto Calende','Italy','IT','Sesto Calende (Italy)',1,1,0),(36616,0,136783,'Setapak','Malaysia','MY','Setapak (Malaysia)',1,1,0),(36617,24928,136784,'Seward','United States of America','US','Seward (United States of America)',1,1,0),(36618,0,136785,'Sexten','Italy','IT','Sexten (Italy)',1,1,0),(36619,0,136786,'Seyssinet-Pariset','France','FR','Seyssinet-Pariset (France)',1,1,0),(36620,24944,136787,'Sfax','Tunisia','TN','Sfax (Tunisia)',1,1,0),(36621,0,136788,'Sgarasta Bheag','United Kingdom','UK','Sgarasta Bheag (United Kingdom)',1,1,0),(36622,0,136789,'s-Gravenzande','Netherlands','NL','s-Gravenzande (Netherlands)',1,1,0),(36623,24950,136790,'Shaftsbury','United States of America','US','Shaftsbury (United States of America)',1,1,0),(36624,0,136791,'Shakhty','Russia','RU','Shakhty (Russia)',1,1,0),(36625,24970,136792,'Shanagarry','Ireland','IE','Shanagarry (Ireland)',1,1,0),(36626,0,136793,'Shangluo','China','CN','Shangluo (China)',1,1,0),(36627,0,136794,'Shangri-La','China','CN','Shangri-La (China)',1,1,0),(36628,0,136795,'Shaoyang','China','CN','Shaoyang (China)',1,1,0),(36629,24992,136796,'Shari','Japan','JP','Shari (Japan)',1,1,0),(36630,24995,136797,'Sharm el Sheikh','Egypt','EG','Sharm el Sheikh (Egypt)',1,1,0),(36631,25008,136798,'Shawano','United States of America','US','Shawano (United States of America)',1,1,0),(36632,0,136799,'Shawnee','United States of America','US','Shawnee (United States of America)',1,1,0),(36633,0,136800,'Sheffield','Australia','AU','Sheffield (Australia)',1,1,0),(36634,25024,136802,'Shelbina','United States of America','US','Shelbina (United States of America)',1,1,0),(36635,25027,136803,'Shelbyville','United States of America','US','Shelbyville (United States of America)',1,1,0),(36636,0,136804,'Shengzhou','China','CN','Shengzhou (China)',1,1,0),(36637,0,136805,'Shepherd','United States of America','US','Shepherd (United States of America)',1,1,0),(36638,0,136806,'Shepperton','United Kingdom','UK','Shepperton (United Kingdom)',1,1,0),(36639,0,136807,'Sherborne','United Kingdom','UK','Sherborne (United Kingdom)',1,1,0),(36640,0,136808,'Sherbrook','Canada','CA','Sherbrook (Canada)',1,1,0),(36641,33408,136809,'Shiga','Japan','JP','Shiga (Japan)',1,1,0),(36642,0,136810,'Shihezi','China','CN','Shihezi (China)',1,1,0),(36643,33163,136811,'San Sebastian de los Reyes','Spain','ES','San Sebastian de los Reyes (Spain)',1,1,0),(36644,0,136812,'San Severo','Italy','IT','San Severo (Italy)',1,1,0),(36645,0,136813,'San Simon','Spain','ES','San Simon (Spain)',1,1,0),(36646,0,136814,'San Vito','Italy','IT','San Vito (Italy)',1,1,0),(36647,33186,136815,'San Vittore Olona','Italy','IT','San Vittore Olona (Italy)',1,1,0),(36648,0,136816,'San Vivaldo','Italy','IT','San Vivaldo (Italy)',1,1,0),(36649,0,136817,'San Zenone degli Ezzelini','Italy','IT','San Zenone degli Ezzelini (Italy)',1,1,0),(36650,24113,136818,'Sanary','France','FR','Sanary (France)',1,1,0),(36651,24122,136819,'Sanctuary Cove','Australia','AU','Sanctuary Cove (Australia)',1,1,0),(36652,33191,136820,'Sand Springs','United States of America','US','Sand Springs (United States of America)',1,1,0),(36653,24128,136821,'Sandanski','Bulgaria','BG','Sandanski (Bulgaria)',1,1,0),(36654,24132,136822,'Sandefjord','Norway','NO','Sandefjord (Norway)',1,1,0),(36655,0,136823,'Sandwich','United States of America','US','Sandwich (United States of America)',1,1,0),(36656,0,136824,'Sandy','United States of America','US','Sandy (United States of America)',1,1,0),(36657,24168,136825,'Sangano','Italy','IT','Sangano (Italy)',1,1,0),(36658,24171,136826,'Sangerhausen','Germany','DE','Sangerhausen (Germany)',1,1,0),(36659,0,136827,'Sanguesa','Spain','ES','Sanguesa (Spain)',1,1,0),(36660,0,136828,'Sanguinet','France','FR','Sanguinet (France)',1,1,0),(36661,0,136829,'Sankt Jodok am Brenner','Austria','AT','Sankt Jodok am Brenner (Austria)',1,1,0),(36662,0,136830,'Sankt Margarethen im Lavanttal','Austria','AT','Sankt Margarethen im Lavanttal (Austria)',1,1,0),(36663,0,136831,'Sankt Stefan im Rosental','Austria','AT','Sankt Stefan im Rosental (Austria)',1,1,0),(36664,0,136832,'Sankt Ulrich (Villach)','Austria','AT','Sankt Ulrich (Villach) (Austria)',1,1,0),(36665,0,136833,'Sankt Veit in Defereggen','Austria','AT','Sankt Veit in Defereggen (Austria)',1,1,0),(36666,24182,136834,'Sanliurfa','Turkey','TR','Sanliurfa (Turkey)',1,1,0),(36667,24189,136835,'Sannois','France','FR','Sannois (France)',1,1,0),(36668,0,136836,'Sant\' Anna Arresi','Italy','IT','Sant\' Anna Arresi (Italy)',1,1,0),(36669,0,136837,'Sant Antonio Valfurva','Italy','IT','Sant Antonio Valfurva (Italy)',1,1,0),(36670,33204,136838,'Sant Celoni','Spain','ES','Sant Celoni (Spain)',1,1,0),(36671,33211,136839,'Sant Ferriol','Spain','ES','Sant Ferriol (Spain)',1,1,0),(36672,0,136840,'Sant Francesc Xavier','Spain','ES','Sant Francesc Xavier (Spain)',1,1,0),(36673,33217,136841,'Sant Joan de Labritja','Spain','ES','Sant Joan de Labritja (Spain)',1,1,0),(36674,0,136842,'Santa Ana','El Salvador','SV','Santa Ana (El Salvador)',1,1,0),(36675,0,136843,'Santa Ana de la Real','Spain','ES','Santa Ana de la Real (Spain)',1,1,0),(36676,24203,136844,'Santa Clara','Panama','PA','Santa Clara (Panama)',1,1,0),(36677,33248,136845,'Santa Cristina','Italy','IT','Santa Cristina (Italy)',1,1,0),(36678,0,136846,'Santa Cruz','Bolivia','BO','Santa Cruz (Bolivia)',1,1,0),(36679,0,136847,'Santa Cruz do Douro','Portugal','PT','Santa Cruz do Douro (Portugal)',1,1,0),(36680,33270,136848,'Santa Iria da Azoia','Portugal','PT','Santa Iria da Azoia (Portugal)',1,1,0),(36681,0,136849,'Santa Luzia','Portugal','PT','Santa Luzia (Portugal)',1,1,0),(36682,0,136850,'Santa Maria','United States of America','US','Santa Maria (United States of America)',1,1,0),(36683,33278,136851,'Santa Maria','Brazil','BR','Santa Maria (Brazil)',1,1,0),(36684,33285,136852,'Santa Maria de Trassierra','Spain','ES','Santa Maria de Trassierra (Spain)',1,1,0),(36685,0,136853,'Santa Marta de Penaguiao','Portugal','PT','Santa Marta de Penaguiao (Portugal)',1,1,0),(36686,33313,136854,'Santa Ursula','Spain','ES','Santa Ursula (Spain)',1,1,0),(36687,0,136855,'Santa Ynez','United States of America','US','Santa Ynez (United States of America)',1,1,0),(36688,0,136856,'Sant\'Albino','Italy','IT','Sant\'Albino (Italy)',1,1,0),(36689,0,136857,'Sant\'Alfio','Italy','IT','Sant\'Alfio (Italy)',1,1,0),(36690,0,136858,'Sant\'Anastasia','Italy','IT','Sant\'Anastasia (Italy)',1,1,0),(36691,24234,136859,'Sante Marie','Italy','IT','Sante Marie (Italy)',1,1,0),(36692,0,136860,'Santee','United States of America','US','Santee (United States of America)',1,1,0),(36693,0,136861,'Santiago Tianguistenco','Mexico','MX','Santiago Tianguistenco (Mexico)',1,1,0),(36694,0,136862,'Santo Domingo de la Calzada','Spain','ES','Santo Domingo de la Calzada (Spain)',1,1,0),(36695,0,136863,'Santo Domingo-Caudilla','Spain','ES','Santo Domingo-Caudilla (Spain)',1,1,0),(36696,0,136864,'Santo Estevao','Portugal','PT','Santo Estevao (Portugal)',1,1,0),(36697,0,136865,'Santo Stefano di Sessanio','Italy','IT','Santo Stefano di Sessanio (Italy)',1,1,0),(36698,24261,136866,'Santona','Spain','ES','Santona (Spain)',1,1,0),(36699,24273,136867,'Santpoort-Noord','Netherlands','NL','Santpoort-Noord (Netherlands)',1,1,0),(36700,0,136868,'Santu Lussurgiu','Italy','IT','Santu Lussurgiu (Italy)',1,1,0),(36701,0,136869,'Santurce','Spain','ES','Santurce (Spain)',1,1,0),(36702,33335,136870,'Sao Bento do Sul','Brazil','BR','Sao Bento do Sul (Brazil)',1,1,0),(36703,33338,136871,'Sao Bras de Alportel','Portugal','PT','Sao Bras de Alportel (Portugal)',1,1,0),(36704,0,136872,'Sao Jose','Brazil','BR','Sao Jose (Brazil)',1,1,0),(36705,33371,136873,'Sao Paulo','Brazil','BR','Sao Paulo (Brazil)',1,1,0),(36706,24301,136874,'Saranac Lake','United States of America','US','Saranac Lake (United States of America)',1,1,0),(36707,0,136875,'Sarangan','Indonesia','ID','Sarangan (Indonesia)',1,1,0),(36708,0,136876,'S\'Archittu','Italy','IT','S\'Archittu (Italy)',1,1,0),(36709,24350,136877,'Sartene','France','FR','Sartene (France)',1,1,0),(36710,0,136878,'Sas van Gent','Netherlands','NL','Sas van Gent (Netherlands)',1,1,0),(36711,0,136879,'Sassofortino','Italy','IT','Sassofortino (Italy)',1,1,0),(36712,24373,136880,'Satigny','Switzerland','CH','Satigny (Switzerland)',1,1,0),(36713,0,136881,'Sattendorf','Austria','AT','Sattendorf (Austria)',1,1,0),(36714,24383,136882,'Saturnia','Italy','IT','Saturnia (Italy)',1,1,0),(36715,24388,136883,'Sauerlach','Germany','DE','Sauerlach (Germany)',1,1,0),(36716,24392,136884,'Saugus','United States of America','US','Saugus (United States of America)',1,1,0),(36717,24397,136885,'Saulon La Rue','France','FR','Saulon La Rue (France)',1,1,0),(36718,24404,136886,'Saumur','France','FR','Saumur (France)',1,1,0),(36719,24437,136887,'Savigny','Switzerland','CH','Savigny (Switzerland)',1,1,0),(36720,0,136888,'Savitaipale','Finland','FI','Savitaipale (Finland)',1,1,0),(36721,24445,136889,'Savona','Italy','IT','Savona (Italy)',1,1,0),(36722,0,136890,'Savukoski','Finland','FI','Savukoski (Finland)',1,1,0),(36723,0,136891,'Sax','Spain','ES','Sax (Spain)',1,1,0),(36724,0,136892,'Saxmundham','United Kingdom','UK','Saxmundham (United Kingdom)',1,1,0),(36725,24464,136893,'Sayula','Mexico','MX','Sayula (Mexico)',1,1,0),(36726,24482,136894,'Scarborough','Trinidad and Tobago','TT','Scarborough (Trinidad and Tobago)',1,1,0),(36727,0,136895,'Schaufling','Germany','DE','Schaufling (Germany)',1,1,0),(36728,0,136896,'Schemmerhofen','Germany','DE','Schemmerhofen (Germany)',1,1,0),(36729,0,136897,'Scheregesch','Russia','RU','Scheregesch (Russia)',1,1,0),(36730,24518,136898,'Schererville','United States of America','US','Schererville (United States of America)',1,1,0),(36731,24519,136899,'Schermbeck','Germany','DE','Schermbeck (Germany)',1,1,0),(36732,24529,136900,'Schildow','Germany','DE','Schildow (Germany)',1,1,0),(36733,24535,136901,'Schio','Italy','IT','Schio (Italy)',1,1,0),(36734,33390,136902,'Schladming','Austria','AT','Schladming (Austria)',1,1,0),(36735,24540,136903,'Schlangenbad','Germany','DE','Schlangenbad (Germany)',1,1,0),(36736,24541,136904,'Schlatt','Switzerland','CH','Schlatt (Switzerland)',1,1,0),(36737,0,136905,'Schlepzig','Germany','DE','Schlepzig (Germany)',1,1,0),(36738,0,136906,'Schlogen','Austria','AT','Schlogen (Austria)',1,1,0),(36739,0,136907,'Schlosshof','Austria','AT','Schlosshof (Austria)',1,1,0),(36740,0,136908,'Schluchtern','Germany','DE','Schluchtern (Germany)',1,1,0),(36741,0,136909,'Schnakenbek','Germany','DE','Schnakenbek (Germany)',1,1,0),(36742,0,136910,'Schoemanshoek','South Africa','ZA','Schoemanshoek (South Africa)',1,1,0),(36743,24377,136911,'Satriano','Italy','IT','Satriano (Italy)',1,1,0),(36744,0,136912,'Saturn','Romania','RO','Saturn (Romania)',1,1,0),(36745,24384,136913,'Saubusse','France','FR','Saubusse (France)',1,1,0),(36746,0,136914,'Saujon','France','FR','Saujon (France)',1,1,0),(36747,0,136915,'Saundersfoot/Pembrokeshire','United Kingdom','UK','Saundersfoot/Pembrokeshire (United Kingdom)',1,1,0),(36748,0,136916,'Sauternes','France','FR','Sauternes (France)',1,1,0),(36749,24420,136917,'Sauvigny-le-Bois','France','FR','Sauvigny-le-Bois (France)',1,1,0),(36750,0,136918,'Saverne','France','FR','Saverne (France)',1,1,0),(36751,24443,136919,'Savognin','Switzerland','CH','Savognin (Switzerland)',1,1,0),(36752,24444,136920,'Savona','Canada','CA','Savona (Canada)',1,1,0),(36753,24449,136921,'Savoy','United States of America','US','Savoy (United States of America)',1,1,0),(36754,0,136922,'Saxemara','Sweden','SE','Saxemara (Sweden)',1,1,0),(36755,0,136923,'Scandiano','Italy','IT','Scandiano (Italy)',1,1,0),(36756,0,136924,'Scanno','Italy','IT','Scanno (Italy)',1,1,0),(36757,24476,136925,'Scanterbury','Canada','CA','Scanterbury (Canada)',1,1,0),(36758,0,136926,'Scarborough','Australia','AU','Scarborough (Australia)',1,1,0),(36759,24496,136927,'Schaffhausen','Switzerland','CH','Schaffhausen (Switzerland)',1,1,0),(36760,24502,136928,'Scharbeutz','Germany','DE','Scharbeutz (Germany)',1,1,0),(36761,24503,136929,'Scharding','Austria','AT','Scharding (Austria)',1,1,0),(36762,24504,136930,'Scharnitz','Austria','AT','Scharnitz (Austria)',1,1,0),(36763,0,136931,'Scharzfeld','Germany','DE','Scharzfeld (Germany)',1,1,0),(36764,0,136932,'Scheemda','Netherlands','NL','Scheemda (Netherlands)',1,1,0),(36765,0,136933,'Scheibe-Alsbach','Germany','DE','Scheibe-Alsbach (Germany)',1,1,0),(36766,24522,136934,'Scheveningen','Netherlands','NL','Scheveningen (Netherlands)',1,1,0),(36767,0,136935,'Schiefling','Austria','AT','Schiefling (Austria)',1,1,0),(36768,24526,136936,'Schierke','Germany','DE','Schierke (Germany)',1,1,0),(36769,0,136937,'Schiermonnikoog Island','Netherlands','NL','Schiermonnikoog Island (Netherlands)',1,1,0),(36770,0,136938,'Schimberg','Germany','DE','Schimberg (Germany)',1,1,0),(36771,0,136939,'Schloen','Germany','DE','Schloen (Germany)',1,1,0),(36772,0,136940,'Schlo? Holte-Stukenbrock','Germany','DE','Schlo? Holte-Stukenbrock (Germany)',1,1,0),(36773,0,136941,'Schlo?bockelheim','Germany','DE','Schlo?bockelheim (Germany)',1,1,0),(36774,0,136942,'Schluein','Switzerland','CH','Schluein (Switzerland)',1,1,0),(36775,0,136943,'Schmallenberg-Grafschaft','Germany','DE','Schmallenberg-Grafschaft (Germany)',1,1,0),(36776,0,136944,'Schnett','Germany','DE','Schnett (Germany)',1,1,0),(36777,0,136945,'Schofweg','Germany','DE','Schofweg (Germany)',1,1,0),(36778,0,136946,'Schollbrunn','Germany','DE','Schollbrunn (Germany)',1,1,0),(36779,0,136947,'Schonberg am Kamp','Austria','AT','Schonberg am Kamp (Austria)',1,1,0),(36780,0,136948,'Schonberg-Lachtal','Austria','AT','Schonberg-Lachtal (Austria)',1,1,0),(36781,0,136949,'Schonburg (Saale)','Germany','DE','Schonburg (Saale) (Germany)',1,1,0),(36782,0,136950,'Schonebeck','Germany','DE','Schonebeck (Germany)',1,1,0),(36783,0,136951,'Schoneberg b Angermunde','Germany','DE','Schoneberg b Angermunde (Germany)',1,1,0),(36784,0,136952,'Schonengrund','Switzerland','CH','Schonengrund (Switzerland)',1,1,0),(36785,24580,136953,'Schonenwerd','Switzerland','CH','Schonenwerd (Switzerland)',1,1,0),(36786,24581,136954,'Schonewalde','Germany','DE','Schonewalde (Germany)',1,1,0),(36787,24584,136955,'Schonried','Switzerland','CH','Schonried (Switzerland)',1,1,0),(36788,0,136956,'Schoonebeek','Netherlands','NL','Schoonebeek (Netherlands)',1,1,0),(36789,0,136957,'Schore','Belgium','BE','Schore (Belgium)',1,1,0),(36790,0,136958,'Schouwen-Duiveland','Netherlands','NL','Schouwen-Duiveland (Netherlands)',1,1,0),(36791,0,136959,'Schtscholkowo','Russia','RU','Schtscholkowo (Russia)',1,1,0),(36792,0,136960,'Schupfheim','Switzerland','CH','Schupfheim (Switzerland)',1,1,0),(36793,0,136961,'Schwalmstadt','Germany','DE','Schwalmstadt (Germany)',1,1,0),(36794,24617,136962,'Schwarzenbruck','Germany','DE','Schwarzenbruck (Germany)',1,1,0),(36795,0,136963,'Schweigen-Rechtenbach','Germany','DE','Schweigen-Rechtenbach (Germany)',1,1,0),(36796,24625,136964,'Schweinfurt','Germany','DE','Schweinfurt (Germany)',1,1,0),(36797,24629,136965,'Schwerin','Germany','DE','Schwerin (Germany)',1,1,0),(36798,24635,136966,'Scicli','Italy','IT','Scicli (Italy)',1,1,0),(36799,0,136967,'Scillato','Italy','IT','Scillato (Italy)',1,1,0),(36800,24655,136968,'Scotts Valley','United States of America','US','Scotts Valley (United States of America)',1,1,0),(36801,24660,136969,'Scottsville','United States of America','US','Scottsville (United States of America)',1,1,0),(36802,0,136970,'Scrabster','United Kingdom','UK','Scrabster (United Kingdom)',1,1,0),(36803,0,136971,'Scrub Island','British Virgin Islands','VG','Scrub Island (British Virgin Islands)',1,1,0),(36804,0,136972,'Seaton','United Kingdom','UK','Seaton (United Kingdom)',1,1,0),(36805,0,136973,'Secarejo','Spain','ES','Secarejo (Spain)',1,1,0),(36806,24699,136974,'Seclin','France','FR','Seclin (France)',1,1,0),(36807,24712,136975,'Sedrun','Switzerland','CH','Sedrun (Switzerland)',1,1,0),(36808,0,136976,'Seefeld','Austria','AT','Seefeld (Austria)',1,1,0),(36809,0,136977,'Seefeld','Germany','DE','Seefeld (Germany)',1,1,0),(36810,0,136978,'Seefeld-Kadolz','Austria','AT','Seefeld-Kadolz (Austria)',1,1,0),(36811,24719,136979,'Seeham','Austria','AT','Seeham (Austria)',1,1,0),(36812,24721,136980,'Seekonk','United States of America','US','Seekonk (United States of America)',1,1,0),(36813,0,136981,'Seewalchen','Austria','AT','Seewalchen (Austria)',1,1,0),(36814,0,136982,'Seewald','Germany','DE','Seewald (Germany)',1,1,0),(36815,0,136983,'Segni','Italy','IT','Segni (Italy)',1,1,0),(36816,24731,136984,'Segorbe','Spain','ES','Segorbe (Spain)',1,1,0),(36817,24734,136985,'Segovia','Spain','ES','Segovia (Spain)',1,1,0),(36818,24739,136986,'Seguin','United States of America','US','Seguin (United States of America)',1,1,0),(36819,24745,136987,'Seiffen','Germany','DE','Seiffen (Germany)',1,1,0),(36820,0,136988,'Sekupang','Indonesia','ID','Sekupang (Indonesia)',1,1,0),(36821,0,136989,'Selby','United Kingdom','UK','Selby (United Kingdom)',1,1,0),(36822,24767,136990,'Seldovia','United States of America','US','Seldovia (United States of America)',1,1,0),(36823,0,136991,'Selebi Phikwe','Botswana','BW','Selebi Phikwe (Botswana)',1,1,0),(36824,0,136992,'Selenogradsk','Russia','RU','Selenogradsk (Russia)',1,1,0),(36825,24773,136993,'Seligenstadt','Germany','DE','Seligenstadt (Germany)',1,1,0),(36826,0,136994,'Seliste Dreznicko','Croatia','HR','Seliste Dreznicko (Croatia)',1,1,0),(36827,24780,136995,'Selkirk','Canada','CA','Selkirk (Canada)',1,1,0),(36828,0,136996,'Seltz','France','FR','Seltz (France)',1,1,0),(36829,0,136997,'Selva di Cadore','Italy','IT','Selva di Cadore (Italy)',1,1,0),(36830,0,136998,'Selva di Fasano','Italy','IT','Selva di Fasano (Italy)',1,1,0),(36831,0,136999,'Semboku','Japan','JP','Semboku (Japan)',1,1,0),(36832,0,137000,'Semeac','France','FR','Semeac (France)',1,1,0),(36833,24795,137001,'Seminyak','Indonesia','ID','Seminyak (Indonesia)',1,1,0),(36834,0,137002,'Semois','Belgium','BE','Semois (Belgium)',1,1,0),(36835,0,137003,'Senas','France','FR','Senas (France)',1,1,0),(36836,24809,137004,'Sendai','Japan','JP','Sendai (Japan)',1,1,0),(36837,24820,137005,'Senlis','France','FR','Senlis (France)',1,1,0),(36838,0,137006,'Sennecey-le-Grand','France','FR','Sennecey-le-Grand (France)',1,1,0),(36839,0,137007,'Senonches','France','FR','Senonches (France)',1,1,0),(36840,0,137008,'Sept Illes','Canada','CA','Sept Illes (Canada)',1,1,0),(36841,0,137009,'Seranon','France','FR','Seranon (France)',1,1,0),(36842,0,137010,'Seravezza','Italy','IT','Seravezza (Italy)',1,1,0),(36843,0,137011,'Serino','Italy','IT','Serino (Italy)',1,1,0),(36844,0,137012,'Serock','Poland','PL','Serock (Poland)',1,1,0),(36845,0,137013,'Serra D\' el Rey','Portugal','PT','Serra D\' el Rey (Portugal)',1,1,0),(36846,0,137014,'Serra de Agua','Portugal','PT','Serra de Agua (Portugal)',1,1,0),(36847,0,137015,'Serra Grande','Brazil','BR','Serra Grande (Brazil)',1,1,0),(36848,0,137016,'Sesgleieta','Spain','ES','Sesgleieta (Spain)',1,1,0),(36849,24885,137017,'Sesriem','Namibia','NA','Sesriem (Namibia)',1,1,0),(36850,0,137018,'S\'Estanyol','Spain','ES','S\'Estanyol (Spain)',1,1,0),(36851,0,137019,'Sillian-Heinfels','Austria','AT','Sillian-Heinfels (Austria)',1,1,0),(36852,0,137020,'Silver City','United States of America','US','Silver City (United States of America)',1,1,0),(36853,25246,137021,'Silvi Marina','Italy','IT','Silvi Marina (Italy)',1,1,0),(36854,25247,137022,'Silz','Austria','AT','Silz (Austria)',1,1,0),(36855,0,137023,'Simeri Mare','Italy','IT','Simeri Mare (Italy)',1,1,0),(36856,0,137024,'Simian (Mehedinti)','Romania','RO','Simian (Mehedinti) (Romania)',1,1,0),(36857,0,137025,'Simitli','Bulgaria','BG','Simitli (Bulgaria)',1,1,0),(36858,0,137026,'Simmern/Hunsruck','Germany','DE','Simmern/Hunsruck (Germany)',1,1,0),(36859,25271,137027,'Sinarades','Greece','GR','Sinarades (Greece)',1,1,0),(36860,25274,137028,'Sinemoretz','Bulgaria','BG','Sinemoretz (Bulgaria)',1,1,0),(36861,25276,137029,'Sinetta','Finland','FI','Sinetta (Finland)',1,1,0),(36862,0,137030,'Sinntal','Germany','DE','Sinntal (Germany)',1,1,0),(36863,0,137031,'Siquijor','Philippines','PH','Siquijor (Philippines)',1,1,0),(36864,0,137032,'Sir Lowry Pass','South Africa','ZA','Sir Lowry Pass (South Africa)',1,1,0),(36865,25317,137033,'Siren','United States of America','US','Siren (United States of America)',1,1,0),(36866,0,137034,'Sirmione-Colombare','Italy','IT','Sirmione-Colombare (Italy)',1,1,0),(36867,0,137035,'Siroka Niva','Czech Republic','CZ','Siroka Niva (Czech Republic)',1,1,0),(36868,25322,137036,'Sirolo','Italy','IT','Sirolo (Italy)',1,1,0),(36869,25340,137037,'Sitiawan','Malaysia','MY','Sitiawan (Malaysia)',1,1,0),(36870,25341,137038,'Sitka','United States of America','US','Sitka (United States of America)',1,1,0),(36871,0,137039,'Skaerbaek','Denmark','DK','Skaerbaek (Denmark)',1,1,0),(36872,0,137040,'Skagarfjodur','Iceland','IS','Skagarfjodur (Iceland)',1,1,0),(36873,0,137041,'Skala Kallonis','Greece','GR','Skala Kallonis (Greece)',1,1,0),(36874,0,137042,'Skala Panagia','Greece','GR','Skala Panagia (Greece)',1,1,0),(36875,0,137043,'Skala Rachoni','Greece','GR','Skala Rachoni (Greece)',1,1,0),(36876,0,137044,'Skidi','Greece','GR','Skidi (Greece)',1,1,0),(36877,0,137045,'Skopelos Town','Greece','GR','Skopelos Town (Greece)',1,1,0),(36878,25411,137046,'Skorping','Denmark','DK','Skorping (Denmark)',1,1,0),(36879,0,137047,'Skowhegan','United States of America','US','Skowhegan (United States of America)',1,1,0),(36880,25418,137048,'Skukuza','South Africa','ZA','Skukuza (South Africa)',1,1,0),(36881,0,137049,'Slater','United States of America','US','Slater (United States of America)',1,1,0),(36882,0,137050,'Sleaford','United Kingdom','UK','Sleaford (United Kingdom)',1,1,0),(36883,25444,137051,'Slenaken','Netherlands','NL','Slenaken (Netherlands)',1,1,0),(36884,25447,137052,'Slidell','United States of America','US','Slidell (United States of America)',1,1,0),(36885,0,137053,'Sliwen','Bulgaria','BG','Sliwen (Bulgaria)',1,1,0),(36886,0,137054,'Smaland/Trollebo','Sweden','SE','Smaland/Trollebo (Sweden)',1,1,0),(36887,25471,137055,'Smithers','Canada','CA','Smithers (Canada)',1,1,0),(36888,0,137056,'Smoljanac','Croatia','HR','Smoljanac (Croatia)',1,1,0),(36889,25498,137057,'Snellville','United States of America','US','Snellville (United States of America)',1,1,0),(36890,0,137058,'Sobeslav','Czech Republic','CZ','Sobeslav (Czech Republic)',1,1,0),(36891,0,137059,'Soca','Slovenia','SI','Soca (Slovenia)',1,1,0),(36892,25530,137060,'Sodankyla','Finland','FI','Sodankyla (Finland)',1,1,0),(36893,0,137061,'Soderfors','Sweden','SE','Soderfors (Sweden)',1,1,0),(36894,25544,137062,'Soest','Germany','DE','Soest (Germany)',1,1,0),(36895,25543,137063,'Soest','Netherlands','NL','Soest (Netherlands)',1,1,0),(36896,25545,137064,'Soestduinen','Netherlands','NL','Soestduinen (Netherlands)',1,1,0),(36897,25554,137065,'Sohren','Germany','DE','Sohren (Germany)',1,1,0),(36898,0,137066,'Sokolov','Czech Republic','CZ','Sokolov (Czech Republic)',1,1,0),(36899,25565,137067,'Solana Beach','United States of America','US','Solana Beach (United States of America)',1,1,0),(36900,0,137068,'Soline','Croatia','HR','Soline (Croatia)',1,1,0),(36901,25588,137069,'Solitude','United States of America','US','Solitude (United States of America)',1,1,0),(36902,0,137070,'Solms','Germany','DE','Solms (Germany)',1,1,0),(36903,25607,137071,'Solsona','Spain','ES','Solsona (Spain)',1,1,0),(36904,25613,137072,'Soma Bay','Egypt','EG','Soma Bay (Egypt)',1,1,0),(36905,0,137073,'Somers Point','United States of America','US','Somers Point (United States of America)',1,1,0),(36906,0,137074,'Sommerach','Germany','DE','Sommerach (Germany)',1,1,0),(36907,0,137075,'Sommerhausen','Germany','DE','Sommerhausen (Germany)',1,1,0),(36908,0,137076,'Somo','Spain','ES','Somo (Spain)',1,1,0),(36909,33431,137077,'Son Macia','Spain','ES','Son Macia (Spain)',1,1,0),(36910,0,137078,'Son Vida','Spain','ES','Son Vida (Spain)',1,1,0),(36911,0,137079,'Sondrio','Italy','IT','Sondrio (Italy)',1,1,0),(36912,25655,137080,'Sonora Island','Canada','CA','Sonora Island (Canada)',1,1,0),(36913,0,137081,'Sonzay','France','FR','Sonzay (France)',1,1,0),(36914,25659,137082,'Sopelana','Spain','ES','Sopelana (Spain)',1,1,0),(36915,0,137083,'Soraga Di Fassa','Italy','IT','Soraga Di Fassa (Italy)',1,1,0),(36916,25665,137084,'Sorano','Italy','IT','Sorano (Italy)',1,1,0),(36917,25670,137085,'Sorges','France','FR','Sorges (France)',1,1,0),(36918,25677,137086,'Soro','Denmark','DK','Soro (Denmark)',1,1,0),(36919,25681,137087,'Sorrento','Italy','IT','Sorrento (Italy)',1,1,0),(36920,0,137088,'Sosnovy Bor','Russia','RU','Sosnovy Bor (Russia)',1,1,0),(36921,25694,137089,'Sossusvlei','Namibia','NA','Sossusvlei (Namibia)',1,1,0),(36922,0,137090,'Sotillo del Rincon','Spain','ES','Sotillo del Rincon (Spain)',1,1,0),(36923,25697,137091,'Sotkamo','Finland','FI','Sotkamo (Finland)',1,1,0),(36924,0,137092,'Sournia','France','FR','Sournia (France)',1,1,0),(36925,33445,137093,'South Bend','United States of America','US','South Bend (United States of America)',1,1,0),(36926,33467,137094,'South Gate','United States of America','US','South Gate (United States of America)',1,1,0),(36927,33475,137095,'South Haven','United States of America','US','South Haven (United States of America)',1,1,0),(36928,0,137096,'South Normanton','United Kingdom','UK','South Normanton (United Kingdom)',1,1,0),(36929,33501,137097,'South Padre Island','United States of America','US','South Padre Island (United States of America)',1,1,0),(36930,33510,137098,'South Point','United States of America','US','South Point (United States of America)',1,1,0),(36931,0,137099,'South Shields','United Kingdom','UK','South Shields (United Kingdom)',1,1,0),(36932,25749,137100,'Southbridge','United States of America','US','Southbridge (United States of America)',1,1,0),(36933,25783,137101,'Southwest Harbor','United States of America','US','Southwest Harbor (United States of America)',1,1,0),(36934,0,137102,'Sowetsk','Russia','RU','Sowetsk (Russia)',1,1,0),(36935,0,137103,'Spanish Fort','United States of America','US','Spanish Fort (United States of America)',1,1,0),(36936,0,137104,'Sparta','United States of America','US','Sparta (United States of America)',1,1,0),(36937,25818,137105,'Spartia','Greece','GR','Spartia (Greece)',1,1,0),(36938,25841,137106,'Spezzano Albanese','Italy','IT','Spezzano Albanese (Italy)',1,1,0),(36939,0,137107,'Spiekeroog','Germany','DE','Spiekeroog (Germany)',1,1,0),(36940,0,137108,'Spielberg bei Knittelfeld','Austria','AT','Spielberg bei Knittelfeld (Austria)',1,1,0),(36941,25849,137109,'Spijkenisse','Netherlands','NL','Spijkenisse (Netherlands)',1,1,0),(36942,0,137110,'Spittal an der Drau','Austria','AT','Spittal an der Drau (Austria)',1,1,0),(36943,25867,137111,'Spooner','United States of America','US','Spooner (United States of America)',1,1,0),(36944,25871,137112,'Spotorno','Italy','IT','Spotorno (Italy)',1,1,0),(36945,0,137113,'Spreethoogte','Namibia','NA','Spreethoogte (Namibia)',1,1,0),(36946,33546,137114,'Spring Lake','United States of America','US','Spring Lake (United States of America)',1,1,0),(36947,33548,137115,'Spring Valley','United States of America','US','Spring Valley (United States of America)',1,1,0),(36948,25882,137116,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(36949,0,137117,'Srbska','Czech Republic','CZ','Srbska (Czech Republic)',1,1,0),(36950,0,137119,'St Agreve','France','FR','St Agreve (France)',1,1,0),(36951,0,137120,'St Asaph','United Kingdom','UK','St Asaph (United Kingdom)',1,1,0),(36952,0,137121,'St Georgen im Lavanttal','Austria','AT','St Georgen im Lavanttal (Austria)',1,1,0),(36953,33600,137122,'St Helens','Australia','AU','St Helens (Australia)',1,1,0),(36954,0,137123,'St Paul','Canada','CA','St Paul (Canada)',1,1,0),(36955,0,137124,'St. Amarin','France','FR','St. Amarin (France)',1,1,0),(36956,0,137125,'St. Ann\'s Bay','Jamaica','JM','St. Ann\'s Bay (Jamaica)',1,1,0),(36957,33677,137126,'St. Anthony','Canada','CA','St. Anthony (Canada)',1,1,0),(36958,0,137127,'St. Anton (am Arlberg)','Austria','AT','St. Anton (am Arlberg) (Austria)',1,1,0),(36959,0,137128,'St. Aubin','United Kingdom','UK','St. Aubin (United Kingdom)',1,1,0),(36960,33187,137129,'San Ysidro','United States of America','US','San Ysidro (United States of America)',1,1,0),(36961,0,137130,'San-Blas-Inseln','Panama','PA','San-Blas-Inseln (Panama)',1,1,0),(36962,24117,137131,'Sancerre','France','FR','Sancerre (France)',1,1,0),(36963,0,137132,'Sand in Taufers','Italy','IT','Sand in Taufers (Italy)',1,1,0),(36964,24126,137133,'Sandakan','Malaysia','MY','Sandakan (Malaysia)',1,1,0),(36965,0,137134,'Sande - Loen','Norway','NO','Sande - Loen (Norway)',1,1,0),(36966,0,137135,'Sandhausen','Germany','DE','Sandhausen (Germany)',1,1,0),(36967,24144,137136,'Sandnessjoen','Norway','NO','Sandnessjoen (Norway)',1,1,0),(36968,0,137137,'Sandoverken','Sweden','SE','Sandoverken (Sweden)',1,1,0),(36969,0,137138,'Sandusky','United States of America','US','Sandusky (United States of America)',1,1,0),(36970,0,137139,'Sandy','United Kingdom','UK','Sandy (United Kingdom)',1,1,0),(36971,0,137140,'Sandys','Bermuda','BM','Sandys (Bermuda)',1,1,0),(36972,0,137141,'Sanibel Island','United States of America','US','Sanibel Island (United States of America)',1,1,0),(36973,0,137142,'Sanipass','South Africa','ZA','Sanipass (South Africa)',1,1,0),(36974,0,137143,'Sankt Agatha','Austria','AT','Sankt Agatha (Austria)',1,1,0),(36975,0,137144,'Sankt Augustin','Germany','DE','Sankt Augustin (Germany)',1,1,0),(36976,0,137145,'Sankt Magdalena am Lemberg','Austria','AT','Sankt Magdalena am Lemberg (Austria)',1,1,0),(36977,0,137146,'Sankt Oswald','Austria','AT','Sankt Oswald (Austria)',1,1,0),(36978,0,137147,'Sankt Stefan ob Stainz','Austria','AT','Sankt Stefan ob Stainz (Austria)',1,1,0),(36979,0,137148,'Sanlucar la Mayor','Spain','ES','Sanlucar la Mayor (Spain)',1,1,0),(36980,33200,137149,'Sant Antoni de Calonge','Spain','ES','Sant Antoni de Calonge (Spain)',1,1,0),(36981,0,137150,'Sant Jaume dels Domenys','Spain','ES','Sant Jaume dels Domenys (Spain)',1,1,0),(36982,0,137151,'Sant Llorenc de Morunys','Spain','ES','Sant Llorenc de Morunys (Spain)',1,1,0),(36983,0,137152,'Santa Barbara de Nexe','Portugal','PT','Santa Barbara de Nexe (Portugal)',1,1,0),(36984,33238,137153,'Santa Caterina','Italy','IT','Santa Caterina (Italy)',1,1,0),(36985,33254,137154,'Santa Croce Camerina','Italy','IT','Santa Croce Camerina (Italy)',1,1,0),(36986,0,137155,'Santa Cruz das Flores','Portugal','PT','Santa Cruz das Flores (Portugal)',1,1,0),(36987,33262,137156,'Santa Cruz de Mudela','Spain','ES','Santa Cruz de Mudela (Spain)',1,1,0),(36988,33264,137157,'Santa Cruz do Sul','Brazil','BR','Santa Cruz do Sul (Brazil)',1,1,0),(36989,24207,137158,'Santa Elena','Guatemala','GT','Santa Elena (Guatemala)',1,1,0),(36990,0,137159,'Santa Fe','Argentina','AR','Santa Fe (Argentina)',1,1,0),(36991,0,137160,'Santa Fiora','Italy','IT','Santa Fiora (Italy)',1,1,0),(36992,0,137161,'Santa Isabel','Ecuador','EC','Santa Isabel (Ecuador)',1,1,0),(36993,33273,137162,'Santa Margarita','Spain','ES','Santa Margarita (Spain)',1,1,0),(36994,0,137163,'Santa Maria','Spain','ES','Santa Maria (Spain)',1,1,0),(36995,0,137164,'Santa Maria de Dulcis','Spain','ES','Santa Maria de Dulcis (Spain)',1,1,0),(36996,0,137165,'Santa Maria Poggio','France','FR','Santa Maria Poggio (France)',1,1,0),(36997,0,137166,'Santa Paula','United States of America','US','Santa Paula (United States of America)',1,1,0),(36998,0,137167,'Santa Teresa','Costa Rica','CR','Santa Teresa (Costa Rica)',1,1,0),(36999,0,137168,'Santa Teresita','Argentina','AR','Santa Teresita (Argentina)',1,1,0),(37000,24214,137169,'Santaella','Spain','ES','Santaella (Spain)',1,1,0),(37001,24215,137170,'Sant\'Agata di Militello','Italy','IT','Sant\'Agata di Militello (Italy)',1,1,0),(37002,24219,137171,'Santana','Portugal','PT','Santana (Portugal)',1,1,0),(37003,0,137172,'Santana do Livramento','Brazil','BR','Santana do Livramento (Brazil)',1,1,0),(37004,0,137173,'Sant\'Anatolia di Narco','Italy','IT','Sant\'Anatolia di Narco (Italy)',1,1,0),(37005,24232,137174,'Santarem','Portugal','PT','Santarem (Portugal)',1,1,0),(37006,24233,137175,'Santarem','Brazil','BR','Santarem (Brazil)',1,1,0),(37007,0,137176,'Santiago de Cacem','Portugal','PT','Santiago de Cacem (Portugal)',1,1,0),(37008,0,137177,'Santiago de la Ribera','Spain','ES','Santiago de la Ribera (Spain)',1,1,0),(37009,0,137178,'Santiago del Teide','Spain','ES','Santiago del Teide (Spain)',1,1,0),(37010,0,137179,'Santillana del Mar','Spain','ES','Santillana del Mar (Spain)',1,1,0),(37011,0,137180,'Santo Antonio da Serra','Portugal','PT','Santo Antonio da Serra (Portugal)',1,1,0),(37012,33322,137181,'Santo Antonio das Areias','Portugal','PT','Santo Antonio das Areias (Portugal)',1,1,0),(37013,0,137182,'Santo Domingo De Silos','Spain','ES','Santo Domingo De Silos (Spain)',1,1,0),(37014,33325,137183,'Santo Stefano','Italy','IT','Santo Stefano (Italy)',1,1,0),(37015,0,137184,'Santomera','Spain','ES','Santomera (Spain)',1,1,0),(37016,0,137185,'Sant\'Omero','Italy','IT','Sant\'Omero (Italy)',1,1,0),(37017,24264,137186,'Santorini','Greece','GR','Santorini (Greece)',1,1,0),(37018,24278,137187,'Sanxenxo','Spain','ES','Sanxenxo (Spain)',1,1,0),(37019,33359,137188,'Sao Luis','Brazil','BR','Sao Luis (Brazil)',1,1,0),(37020,0,137189,'Sao Miguel do Araguaia','Brazil','BR','Sao Miguel do Araguaia (Brazil)',1,1,0),(37021,33376,137190,'Sao Pedro do Sul','Portugal','PT','Sao Pedro do Sul (Portugal)',1,1,0),(37022,33377,137191,'Sao Roque','Brazil','BR','Sao Roque (Brazil)',1,1,0),(37023,0,137192,'Sao Vicente','Cape Verde','CV','Sao Vicente (Cape Verde)',1,1,0),(37024,24284,137193,'Sapanca','Turkey','TR','Sapanca (Turkey)',1,1,0),(37025,24296,137194,'Saquarema','Brazil','BR','Saquarema (Brazil)',1,1,0),(37026,0,137195,'Sarafovo','Bulgaria','BG','Sarafovo (Bulgaria)',1,1,0),(37027,24299,137196,'Sarajevo','Bosnia and Herzegowina','BA','Sarajevo (Bosnia and Herzegowina)',1,1,0),(37028,24325,137197,'Sarigerme','Turkey','TR','Sarigerme (Turkey)',1,1,0),(37029,24333,137198,'Sarnano','Italy','IT','Sarnano (Italy)',1,1,0),(37030,24334,137199,'Sarnia','Canada','CA','Sarnia (Canada)',1,1,0),(37031,24339,137200,'Sarramea','New Caledonia','NC','Sarramea (New Caledonia)',1,1,0),(37032,0,137201,'Sarroca de Bellera','Spain','ES','Sarroca de Bellera (Spain)',1,1,0),(37033,24358,137202,'Sasbachwalden','Germany','DE','Sasbachwalden (Germany)',1,1,0),(37034,24359,137203,'Sasebo','Japan','JP','Sasebo (Japan)',1,1,0),(37035,24361,137204,'Sassafras','Australia','AU','Sassafras (Australia)',1,1,0),(37036,0,137205,'Saubraz','Switzerland','CH','Saubraz (Switzerland)',1,1,0),(37037,24387,137206,'Saudarkrokur','Iceland','IS','Saudarkrokur (Iceland)',1,1,0),(37038,0,137207,'Saugues','France','FR','Saugues (France)',1,1,0),(37039,0,137208,'Saulgrub','Germany','DE','Saulgrub (Germany)',1,1,0),(37040,0,137209,'Sault Sainte Marie','Canada','CA','Sault Sainte Marie (Canada)',1,1,0),(37041,0,137210,'Sault Sainte Marie','United States of America','US','Sault Sainte Marie (United States of America)',1,1,0),(37042,24403,137211,'Saumane-de-Vaucluse','France','FR','Saumane-de-Vaucluse (France)',1,1,0),(37043,0,137212,'Saunacq et Muret','France','FR','Saunacq et Muret (France)',1,1,0),(37044,24417,137213,'Sauveterre-de-Bearn','France','FR','Sauveterre-de-Bearn (France)',1,1,0),(37045,24422,137214,'Sauzon','France','FR','Sauzon (France)',1,1,0),(37046,24423,137215,'Savage','United States of America','US','Savage (United States of America)',1,1,0),(37047,24424,137216,'Savaneta','Aruba','AW','Savaneta (Aruba)',1,1,0),(37048,0,137217,'Savignano Mare','Italy','IT','Savignano Mare (Italy)',1,1,0),(37049,24434,137218,'Savignano sul Rubicone','Italy','IT','Savignano sul Rubicone (Italy)',1,1,0),(37050,24450,137219,'Savsjo','Sweden','SE','Savsjo (Sweden)',1,1,0),(37051,24452,137220,'Savusavu','Fiji Islands','FJ','Savusavu (Fiji Islands)',1,1,0),(37052,0,137221,'Saxon-Arbarey','Switzerland','CH','Saxon-Arbarey (Switzerland)',1,1,0),(37053,24465,137222,'Sayulita','Mexico','MX','Sayulita (Mexico)',1,1,0),(37054,24481,137223,'Scarborough','United States of America','US','Scarborough (United States of America)',1,1,0),(37055,0,137224,'Scarlino Scalo','Italy','IT','Scarlino Scalo (Italy)',1,1,0),(37056,0,137225,'Schaan','Liechtenstein','LI','Schaan (Liechtenstein)',1,1,0),(37057,0,137226,'Schafhausen','Germany','DE','Schafhausen (Germany)',1,1,0),(37058,0,137227,'Schneidemuhl','Poland','PL','Schneidemuhl (Poland)',1,1,0),(37059,24572,137228,'Schoharie','United States of America','US','Schoharie (United States of America)',1,1,0),(37060,0,137229,'Schomberg-Langenbrand','Germany','DE','Schomberg-Langenbrand (Germany)',1,1,0),(37061,0,137230,'Schoningen','Germany','DE','Schoningen (Germany)',1,1,0),(37062,0,137231,'Schulenberg im Oberharz','Germany','DE','Schulenberg im Oberharz (Germany)',1,1,0),(37063,0,137232,'Schuttdorf','Austria','AT','Schuttdorf (Austria)',1,1,0),(37064,0,137233,'Schwabenheim an der Selz','Germany','DE','Schwabenheim an der Selz (Germany)',1,1,0),(37065,24607,137234,'Schwabisch Gmund','Germany','DE','Schwabisch Gmund (Germany)',1,1,0),(37066,0,137235,'Schwabisch Hall','Germany','DE','Schwabisch Hall (Germany)',1,1,0),(37067,0,137236,'Schwabmunchen','Germany','DE','Schwabmunchen (Germany)',1,1,0),(37068,24616,137237,'Schwarzenberg','Germany','DE','Schwarzenberg (Germany)',1,1,0),(37069,24628,137238,'Schwendt','Austria','AT','Schwendt (Austria)',1,1,0),(37070,0,137239,'Schwielochsee','Germany','DE','Schwielochsee (Germany)',1,1,0),(37071,24633,137240,'Schwyz','Switzerland','CH','Schwyz (Switzerland)',1,1,0),(37072,24640,137241,'Scipio','United States of America','US','Scipio (United States of America)',1,1,0),(37073,24652,137242,'Scotrun','United States of America','US','Scotrun (United States of America)',1,1,0),(37074,0,137243,'Scott','Canada','CA','Scott (Canada)',1,1,0),(37075,33393,137244,'Scott City','United States of America','US','Scott City (United States of America)',1,1,0),(37076,0,137245,'Seabrook Island','United States of America','US','Seabrook Island (United States of America)',1,1,0),(37077,0,137246,'Seahouses','United Kingdom','UK','Seahouses (United Kingdom)',1,1,0),(37078,24674,137247,'Seal Beach','United States of America','US','Seal Beach (United States of America)',1,1,0),(37079,0,137248,'Seamer','United Kingdom','UK','Seamer (United Kingdom)',1,1,0),(37080,24680,137249,'Searsport','United States of America','US','Searsport (United States of America)',1,1,0),(37081,0,137250,'Seberang Perai','Malaysia','MY','Seberang Perai (Malaysia)',1,1,0),(37082,0,137251,'Sec','Czech Republic','CZ','Sec (Czech Republic)',1,1,0),(37083,0,137252,'Seebach','Germany','DE','Seebach (Germany)',1,1,0),(37084,0,137253,'Seef','Bahrain','BH','Seef (Bahrain)',1,1,0),(37085,0,137254,'Seelow','Germany','DE','Seelow (Germany)',1,1,0),(37086,0,137255,'Seeon','Germany','DE','Seeon (Germany)',1,1,0),(37087,24725,137256,'Seez','France','FR','Seez (France)',1,1,0),(37088,0,137257,'Segotici','Croatia','HR','Segotici (Croatia)',1,1,0),(37089,33400,137258,'Segur de Calafell','Spain','ES','Segur de Calafell (Spain)',1,1,0),(37090,0,137259,'Segura de la Sierra','Spain','ES','Segura de la Sierra (Spain)',1,1,0),(37091,24740,137260,'Seguret','France','FR','Seguret (France)',1,1,0),(37092,24743,137261,'Seia','Portugal','PT','Seia (Portugal)',1,1,0),(37093,0,137262,'Selargius','Italy','IT','Selargius (Italy)',1,1,0),(37094,0,137263,'Selfkant','Germany','DE','Selfkant (Germany)',1,1,0),(37095,24772,137264,'Selfoss','Iceland','IS','Selfoss (Iceland)',1,1,0),(37096,0,137265,'Seligenporten','Germany','DE','Seligenporten (Germany)',1,1,0),(37097,24775,137266,'Selimiye','Turkey','TR','Selimiye (Turkey)',1,1,0),(37098,24776,137267,'Selinsgrove','United States of America','US','Selinsgrove (United States of America)',1,1,0),(37099,0,137268,'Selkirk','United Kingdom','UK','Selkirk (United Kingdom)',1,1,0),(37100,0,137269,'Sella Nevea','Italy','IT','Sella Nevea (Italy)',1,1,0),(37101,33402,137270,'Selva','Spain','ES','Selva (Spain)',1,1,0),(37102,24789,137271,'Selvino','Italy','IT','Selvino (Italy)',1,1,0),(37103,0,137272,'Semliki Wildlife Reserve','Uganda','UG','Semliki Wildlife Reserve (Uganda)',1,1,0),(37104,24798,137273,'Semogo','Italy','IT','Semogo (Italy)',1,1,0),(37105,24803,137274,'Semproniano','Italy','IT','Semproniano (Italy)',1,1,0),(37106,0,137275,'Senaga Island','Japan','JP','Senaga Island (Japan)',1,1,0),(37107,33403,137276,'Sene','France','FR','Sene (France)',1,1,0),(37108,24812,137277,'Seneca','United States of America','US','Seneca (United States of America)',1,1,0),(37109,24814,137278,'Seneffe','Belgium','BE','Seneffe (Belgium)',1,1,0),(37110,24817,137279,'Senftenberg','Germany','DE','Senftenberg (Germany)',1,1,0),(37111,0,137280,'Sent','Switzerland','CH','Sent (Switzerland)',1,1,0),(37112,0,137281,'Sentul City','Indonesia','ID','Sentul City (Indonesia)',1,1,0),(37113,0,137282,'Seogwipo','South Korea','KR','Seogwipo (South Korea)',1,1,0),(37114,0,137283,'Seppois-le-Bas','France','FR','Seppois-le-Bas (France)',1,1,0),(37115,24840,137284,'Sept-Saulx','France','FR','Sept-Saulx (France)',1,1,0),(37116,24854,137285,'Sergeant Bluff','United States of America','US','Sergeant Bluff (United States of America)',1,1,0),(37117,0,137286,'Serpukhov','Russia','RU','Serpukhov (Russia)',1,1,0),(37118,0,137287,'Serravalle Scrivia','Italy','IT','Serravalle Scrivia (Italy)',1,1,0),(37119,24872,137288,'Serre di Rapolano','Italy','IT','Serre di Rapolano (Italy)',1,1,0),(37120,24874,137289,'Serres','Greece','GR','Serres (Greece)',1,1,0),(37121,24881,137290,'Servoz','France','FR','Servoz (France)',1,1,0),(37122,24891,137291,'Sestriere','Italy','IT','Sestriere (Italy)',1,1,0),(37123,24894,137292,'Sesvete','Croatia','HR','Sesvete (Croatia)',1,1,0),(37124,0,137293,'Settala','Italy','IT','Settala (Italy)',1,1,0),(37125,24900,137294,'Settimo Torinese','Italy','IT','Settimo Torinese (Italy)',1,1,0),(37126,0,137295,'Settle','United Kingdom','UK','Settle (United Kingdom)',1,1,0),(37127,24905,137296,'Seva','Spain','ES','Seva (Spain)',1,1,0),(37128,0,137297,'Sgourokefali','Greece','GR','Sgourokefali (Greece)',1,1,0),(37129,24971,137298,'Shandaken','United States of America','US','Shandaken (United States of America)',1,1,0),(37130,24976,137299,'Shangzhi','China','CN','Shangzhi (China)',1,1,0),(37131,0,137300,'Shap','United Kingdom','UK','Shap (United Kingdom)',1,1,0),(37132,0,137301,'Sharon','United States of America','US','Sharon (United States of America)',1,1,0),(37133,0,137302,'Shefford','United Kingdom','UK','Shefford (United Kingdom)',1,1,0),(37134,0,137303,'Sheki','Azerbaijan','AZ','Sheki (Azerbaijan)',1,1,0),(37135,25025,137304,'Shelburne','United States of America','US','Shelburne (United States of America)',1,1,0),(37136,25028,137305,'Sheldon','United States of America','US','Sheldon (United States of America)',1,1,0),(37137,0,137306,'Shenandoah National Park','United States of America','US','Shenandoah National Park (United States of America)',1,1,0),(37138,25039,137307,'Shepherdstown','United States of America','US','Shepherdstown (United States of America)',1,1,0),(37139,0,137308,'Shepton Mallet','United Kingdom','UK','Shepton Mallet (United Kingdom)',1,1,0),(37140,25048,137309,'Sheridan','United States of America','US','Sheridan (United States of America)',1,1,0),(37141,0,137310,'Sheringham','United Kingdom','UK','Sheringham (United Kingdom)',1,1,0),(37142,25061,137311,'Shigar','Pakistan','PK','Shigar (Pakistan)',1,1,0),(37143,25084,137312,'Shimoni','Kenya','KE','Shimoni (Kenya)',1,1,0),(37144,25085,137313,'Shimonoseki','Japan','JP','Shimonoseki (Japan)',1,1,0),(37145,0,137314,'Shinjo','Japan','JP','Shinjo (Japan)',1,1,0),(37146,0,137315,'Shipton-under-Wychwood','United Kingdom','UK','Shipton-under-Wychwood (United Kingdom)',1,1,0),(37147,25110,137317,'Shiyan','China','CN','Shiyan (China)',1,1,0),(37148,0,137318,'Shuozhou','China','CN','Shuozhou (China)',1,1,0),(37149,0,137319,'Sibculo','Netherlands','NL','Sibculo (Netherlands)',1,1,0),(37150,25162,137320,'Sicamous','Canada','CA','Sicamous (Canada)',1,1,0),(37151,0,137321,'Sichron Ya\'akov','Israel','IL','Sichron Ya\'akov (Israel)',1,1,0),(37152,25164,137322,'Sidari','Greece','GR','Sidari (Greece)',1,1,0),(37153,0,137323,'Sidbury','South Africa','ZA','Sidbury (South Africa)',1,1,0),(37154,0,137324,'Sidi Abd El Rahman','Egypt','EG','Sidi Abd El Rahman (Egypt)',1,1,0),(37155,0,137325,'Sidi Mahrez Beach','Tunisia','TN','Sidi Mahrez Beach (Tunisia)',1,1,0),(37156,0,137326,'Siegsdorf-Vorauf','Germany','DE','Siegsdorf-Vorauf (Germany)',1,1,0),(37157,25186,137327,'Sierksdorf','Germany','DE','Sierksdorf (Germany)',1,1,0),(37158,0,137328,'Sieste','Spain','ES','Sieste (Spain)',1,1,0),(37159,0,137329,'Sietow','Germany','DE','Sietow (Germany)',1,1,0),(37160,25196,137330,'Sighisoara','Romania','RO','Sighisoara (Romania)',1,1,0),(37161,25201,137331,'Signes','France','FR','Signes (France)',1,1,0),(37162,25206,137332,'Siguenza','Spain','ES','Siguenza (Spain)',1,1,0),(37163,0,137333,'Sikasso','Mali','ML','Sikasso (Mali)',1,1,0),(37164,0,137334,'Schwarzach am Main','Germany','DE','Schwarzach am Main (Germany)',1,1,0),(37165,0,137335,'Schwarzenberg im Bohmerwald','Austria','AT','Schwarzenberg im Bohmerwald (Austria)',1,1,0),(37166,0,137336,'Schweighausen','Germany','DE','Schweighausen (Germany)',1,1,0),(37167,0,137337,'Schwendau','Austria','AT','Schwendau (Austria)',1,1,0),(37168,24637,137338,'Scilla','Italy','IT','Scilla (Italy)',1,1,0),(37169,24659,137339,'Scottsdale','United States of America','US','Scottsdale (United States of America)',1,1,0),(37170,0,137340,'Sea of Galilee',NULL,NULL,'Sea of Galilee ()',1,1,0),(37171,0,137341,'Sebastiao de Lacerda','Brazil','BR','Sebastiao de Lacerda (Brazil)',1,1,0),(37172,24693,137342,'Sebersdorf','Austria','AT','Sebersdorf (Austria)',1,1,0),(37173,0,137343,'Seckau','Austria','AT','Seckau (Austria)',1,1,0),(37174,0,137344,'Seddiner See','Germany','DE','Seddiner See (Germany)',1,1,0),(37175,0,137345,'Sedgefield','United Kingdom','UK','Sedgefield (United Kingdom)',1,1,0),(37176,24720,137346,'Seeheim','Namibia','NA','Seeheim (Namibia)',1,1,0),(37177,0,137347,'Seelach','Austria','AT','Seelach (Austria)',1,1,0),(37178,0,137348,'Seffern','Germany','DE','Seffern (Germany)',1,1,0),(37179,24736,137349,'Segrate','Italy','IT','Segrate (Italy)',1,1,0),(37180,0,137350,'Segre','France','FR','Segre (France)',1,1,0),(37181,0,137351,'Seibersdorf','Germany','DE','Seibersdorf (Germany)',1,1,0),(37182,0,137352,'Seiersberg','Austria','AT','Seiersberg (Austria)',1,1,0),(37183,24755,137353,'Seis am Schlern','Italy','IT','Seis am Schlern (Italy)',1,1,0),(37184,24774,137354,'Seligman','United States of America','US','Seligman (United States of America)',1,1,0),(37185,0,137355,'Seljord','Norway','NO','Seljord (Norway)',1,1,0),(37186,0,137356,'Selm','Germany','DE','Selm (Germany)',1,1,0),(37187,0,137357,'Selma','United States of America','US','Selma (United States of America)',1,1,0),(37188,0,137358,'Selo Korana','Croatia','HR','Selo Korana (Croatia)',1,1,0),(37189,24794,137359,'Seminole','United States of America','US','Seminole (United States of America)',1,1,0),(37190,24796,137360,'Semlin','Germany','DE','Semlin (Germany)',1,1,0),(37191,24811,137361,'Senec','Slovakia','SK','Senec (Slovakia)',1,1,0),(37192,0,137362,'Senj','Croatia','HR','Senj (Croatia)',1,1,0),(37193,0,137363,'Senningerberg','Luxembourg','LU','Senningerberg (Luxembourg)',1,1,0),(37194,24832,137364,'Seoul','South Korea','KR','Seoul (South Korea)',1,1,0),(37195,24844,137365,'Sequoia National Park','United States of America','US','Sequoia National Park (United States of America)',1,1,0),(37196,24850,137366,'Seremban','Malaysia','MY','Seremban (Malaysia)',1,1,0),(37197,24853,137367,'Serfaus','Austria','AT','Serfaus (Austria)',1,1,0),(37198,0,137368,'Serignan du Comtat','France','FR','Serignan du Comtat (France)',1,1,0),(37199,24875,137369,'Serres-Castet','France','FR','Serres-Castet (France)',1,1,0),(37200,0,137370,'Serrieres-en-Chautagne','France','FR','Serrieres-en-Chautagne (France)',1,1,0),(37201,24878,137371,'Serrungarina','Italy','IT','Serrungarina (Italy)',1,1,0),(37202,0,137372,'Serta','Portugal','PT','Serta (Portugal)',1,1,0),(37203,0,137373,'Sete Lagoas','Brazil','BR','Sete Lagoas (Brazil)',1,1,0),(37204,0,137374,'Setiu','Malaysia','MY','Setiu (Malaysia)',1,1,0),(37205,24906,137375,'Sevan','Armenia','AM','Sevan (Armenia)',1,1,0),(37206,0,137376,'Sevenoaks','United Kingdom','UK','Sevenoaks (United Kingdom)',1,1,0),(37207,24935,137377,'Seymour','United States of America','US','Seymour (United States of America)',1,1,0),(37208,24941,137378,'Sezana','Slovenia','SI','Sezana (Slovenia)',1,1,0),(37209,0,137379,'Sfakaki','Greece','GR','Sfakaki (Greece)',1,1,0),(37210,0,137381,'Shaka\'s Rock','South Africa','ZA','Shaka\'s Rock (South Africa)',1,1,0),(37211,24956,137382,'Shakawe','Botswana','BW','Shakawe (Botswana)',1,1,0),(37212,0,137383,'Shangqiu','China','CN','Shangqiu (China)',1,1,0),(37213,0,137384,'Shaowu','China','CN','Shaowu (China)',1,1,0),(37214,24988,137385,'Shaoxing','China','CN','Shaoxing (China)',1,1,0),(37215,0,137386,'Sharon Springs','United States of America','US','Sharon Springs (United States of America)',1,1,0),(37216,25018,137387,'Shefayim','Israel','IL','Shefayim (Israel)',1,1,0),(37217,0,137388,'Shell Knob','United States of America','US','Shell Knob (United States of America)',1,1,0),(37218,25031,137389,'Shelter Island','United States of America','US','Shelter Island (United States of America)',1,1,0),(37219,25033,137390,'Shenandoah','United States of America','US','Shenandoah (United States of America)',1,1,0),(37220,0,137391,'Shenandoah','United States of America','US','Shenandoah (United States of America)',1,1,0),(37221,0,137392,'Shengjin','Albania','AL','Shengjin (Albania)',1,1,0),(37222,25036,137393,'Shenyang','China','CN','Shenyang (China)',1,1,0),(37223,25064,137394,'Shijiazhuang','China','CN','Shijiazhuang (China)',1,1,0),(37224,0,137395,'Shimba Hills','Kenya','KE','Shimba Hills (Kenya)',1,1,0),(37225,25094,137396,'Shippensburg','United States of America','US','Shippensburg (United States of America)',1,1,0),(37226,25106,137397,'Shishi','China','CN','Shishi (China)',1,1,0),(37227,25112,137398,'Shizukuishi','Japan','JP','Shizukuishi (Japan)',1,1,0),(37228,0,137399,'Shoal Bay','Anguilla','AI','Shoal Bay (Anguilla)',1,1,0),(37229,0,137400,'Shobara','Japan','JP','Shobara (Japan)',1,1,0),(37230,25124,137401,'Shorewood','United States of America','US','Shorewood (United States of America)',1,1,0),(37231,25125,137402,'Short Hills','United States of America','US','Short Hills (United States of America)',1,1,0),(37232,0,137403,'Shuangyashan','China','CN','Shuangyashan (China)',1,1,0),(37233,0,137405,'Siatista','Greece','GR','Siatista (Greece)',1,1,0),(37234,25153,137406,'Siauliai','Lithuania','LT','Siauliai (Lithuania)',1,1,0),(37235,25166,137407,'Siderno','Italy','IT','Siderno (Italy)',1,1,0),(37236,0,137408,'Sidi Kaouki','Morocco','MA','Sidi Kaouki (Morocco)',1,1,0),(37237,0,137409,'Sidmouth','United Kingdom','UK','Sidmouth (United Kingdom)',1,1,0),(37238,25172,137410,'Sidney','United States of America','US','Sidney (United States of America)',1,1,0),(37239,0,137411,'Siegenfeld','Austria','AT','Siegenfeld (Austria)',1,1,0),(37240,0,137412,'Sifnos','Greece','GR','Sifnos (Greece)',1,1,0),(37241,25199,137413,'Siglufjordur','Iceland','IS','Siglufjordur (Iceland)',1,1,0),(37242,0,137414,'Signat','Italy','IT','Signat (Italy)',1,1,0),(37243,25204,137415,'Sigriswil','Switzerland','CH','Sigriswil (Switzerland)',1,1,0),(37244,25207,137416,'Sigulda','Latvia','LV','Sigulda (Latvia)',1,1,0),(37245,0,137417,'Sikuai Island','Indonesia','ID','Sikuai Island (Indonesia)',1,1,0),(37246,0,137418,'Silbach','Germany','DE','Silbach (Germany)',1,1,0),(37247,0,137419,'Sillans-la-Cascade','France','FR','Sillans-la-Cascade (France)',1,1,0),(37248,0,137420,'Simancas','Spain','ES','Simancas (Spain)',1,1,0),(37249,25249,137421,'Simcoe','Canada','CA','Simcoe (Canada)',1,1,0),(37250,0,137422,'Simeiz','Ukraine','UA','Simeiz (Ukraine)',1,1,0),(37251,25265,137423,'Simpsonville','United States of America','US','Simpsonville (United States of America)',1,1,0),(37252,25275,137424,'Sines','Portugal','PT','Sines (Portugal)',1,1,0),(37253,0,137425,'Sinspelt','Germany','DE','Sinspelt (Germany)',1,1,0),(37254,0,137426,'Sint-Michielsgestel','Netherlands','NL','Sint-Michielsgestel (Netherlands)',1,1,0),(37255,25298,137427,'Sint-Niklaas','Belgium','BE','Sint-Niklaas (Belgium)',1,1,0),(37256,0,137428,'Sioux City','United States of America','US','Sioux City (United States of America)',1,1,0),(37257,0,137429,'Sipanska Luka','Croatia','HR','Sipanska Luka (Croatia)',1,1,0),(37258,0,137430,'Sirince','Turkey','TR','Sirince (Turkey)',1,1,0),(37259,25319,137431,'Sirkka','Finland','FI','Sirkka (Finland)',1,1,0),(37260,25325,137432,'Siselen','Switzerland','CH','Siselen (Switzerland)',1,1,0),(37261,25334,137433,'Sisteron','France','FR','Sisteron (France)',1,1,0),(37262,25343,137434,'Sittard','Netherlands','NL','Sittard (Netherlands)',1,1,0),(37263,0,137435,'Sitzendorf','Germany','DE','Sitzendorf (Germany)',1,1,0),(37264,25348,137436,'Siuntio','Finland','FI','Siuntio (Finland)',1,1,0),(37265,25351,137437,'Siviri','Greece','GR','Siviri (Greece)',1,1,0),(37266,0,137438,'Six Men\'s Bay','Barbados','BB','Six Men\'s Bay (Barbados)',1,1,0),(37267,25355,137439,'Six-Fours-les-Plages','France','FR','Six-Fours-les-Plages (France)',1,1,0),(37268,0,137440,'Sixmilebridge','Ireland','IE','Sixmilebridge (Ireland)',1,1,0),(37269,0,137441,'Sjuntorp','Sweden','SE','Sjuntorp (Sweden)',1,1,0),(37270,0,137442,'Shimabara','Japan','JP','Shimabara (Japan)',1,1,0),(37271,0,137443,'Shipley','United Kingdom','UK','Shipley (United Kingdom)',1,1,0),(37272,25096,137444,'Shipshewana','United States of America','US','Shipshewana (United States of America)',1,1,0),(37273,0,137445,'shiretoko','Japan','JP','shiretoko (Japan)',1,1,0),(37274,0,137446,'Shodoshima','Japan','JP','Shodoshima (Japan)',1,1,0),(37275,0,137447,'S\'Horta','Spain','ES','S\'Horta (Spain)',1,1,0),(37276,0,137448,'Shosha','Russia','RU','Shosha (Russia)',1,1,0),(37277,25132,137449,'Shrewsbury','United States of America','US','Shrewsbury (United States of America)',1,1,0),(37278,0,137450,'Sialkot','Pakistan','PK','Sialkot (Pakistan)',1,1,0),(37279,0,137451,'Sidney','United States of America','US','Sidney (United States of America)',1,1,0),(37280,0,137452,'Sidney','United States of America','US','Sidney (United States of America)',1,1,0),(37281,0,137453,'Sidney','United States of America','US','Sidney (United States of America)',1,1,0),(37282,25176,137454,'Siegburg','Germany','DE','Siegburg (Germany)',1,1,0),(37283,0,137455,'Siemiatycze','Poland','PL','Siemiatycze (Poland)',1,1,0),(37284,0,137456,'Siennica','Poland','PL','Siennica (Poland)',1,1,0),(37285,0,137457,'Sieversen','Germany','DE','Sieversen (Germany)',1,1,0),(37286,0,137458,'Sigacik - Seferhisar','Turkey','TR','Sigacik - Seferhisar (Turkey)',1,1,0),(37287,25195,137459,'Sigean','France','FR','Sigean (France)',1,1,0),(37288,25198,137460,'Sigiriya','Sri Lanka','LK','Sigiriya (Sri Lanka)',1,1,0),(37289,0,137461,'Silbertal','Austria','AT','Silbertal (Austria)',1,1,0),(37290,0,137462,'Sille-le-Guillaume','France','FR','Sille-le-Guillaume (France)',1,1,0),(37291,25232,137463,'Sillian','Austria','AT','Sillian (Austria)',1,1,0),(37292,0,137464,'S\'Illot','Spain','ES','S\'Illot (Spain)',1,1,0),(37293,0,137465,'Silo','Croatia','HR','Silo (Croatia)',1,1,0),(37294,0,137466,'Silver Springs','United States of America','US','Silver Springs (United States of America)',1,1,0),(37295,0,137467,'Silver Star','Canada','CA','Silver Star (Canada)',1,1,0),(37296,25261,137468,'Simon\'s Town','South Africa','ZA','Simon\'s Town (South Africa)',1,1,0),(37297,25273,137469,'Sindelfingen','Germany','DE','Sindelfingen (Germany)',1,1,0),(37298,0,137471,'Sing','Thailand','TH','Sing (Thailand)',1,1,0),(37299,0,137472,'Singkawang','Indonesia','ID','Singkawang (Indonesia)',1,1,0),(37300,25301,137473,'Sintra','Portugal','PT','Sintra (Portugal)',1,1,0),(37301,25303,137474,'Sint-Truiden','Belgium','BE','Sint-Truiden (Belgium)',1,1,0),(37302,0,137475,'Sinzig - Bad Bodendorf','Germany','DE','Sinzig - Bad Bodendorf (Germany)',1,1,0),(37303,0,137476,'Siorac-en-Perigord','France','FR','Siorac-en-Perigord (France)',1,1,0),(37304,0,137477,'Sioux Falls','United States of America','US','Sioux Falls (United States of America)',1,1,0),(37305,0,137478,'Sirdal','Norway','NO','Sirdal (Norway)',1,1,0),(37306,25321,137479,'Sirnitz','Austria','AT','Sirnitz (Austria)',1,1,0),(37307,0,137480,'Siurana','Spain','ES','Siurana (Spain)',1,1,0),(37308,0,137481,'Sjohultet-Asljunga','Sweden','SE','Sjohultet-Asljunga (Sweden)',1,1,0),(37309,0,137482,'Skala Sotiros','Greece','GR','Skala Sotiros (Greece)',1,1,0),(37310,25364,137483,'Skaneateles','United States of America','US','Skaneateles (United States of America)',1,1,0),(37311,0,137484,'Skanes','Tunisia','TN','Skanes (Tunisia)',1,1,0),(37312,0,137485,'Skanland','Norway','NO','Skanland (Norway)',1,1,0),(37313,0,137486,'Skarinou','Cyprus','CY','Skarinou (Cyprus)',1,1,0),(37314,0,137487,'Skedsmo','Norway','NO','Skedsmo (Norway)',1,1,0),(37315,25377,137488,'Skeikampen','Norway','NO','Skeikampen (Norway)',1,1,0),(37316,0,137489,'Skiathos City','Greece','GR','Skiathos City (Greece)',1,1,0),(37317,25394,137490,'Skippers','United States of America','US','Skippers (United States of America)',1,1,0),(37318,0,137491,'Skorosice','Czech Republic','CZ','Skorosice (Czech Republic)',1,1,0),(37319,25422,137492,'Skyros','Greece','GR','Skyros (Greece)',1,1,0),(37320,25438,137493,'Slave Lake','Canada','CA','Slave Lake (Canada)',1,1,0),(37321,0,137494,'Slavkov u Brna','Czech Republic','CZ','Slavkov u Brna (Czech Republic)',1,1,0),(37322,0,137495,'Slawno','Poland','PL','Slawno (Poland)',1,1,0),(37323,0,137496,'Slunj','Croatia','HR','Slunj (Croatia)',1,1,0),(37324,0,137497,'Smederevo','Serbia','RS','Smederevo (Serbia)',1,1,0),(37325,25479,137498,'Smlednik','Slovenia','SI','Smlednik (Slovenia)',1,1,0),(37326,0,137499,'Smogen','Sweden','SE','Smogen (Sweden)',1,1,0),(37327,0,137500,'Smolino','Russia','RU','Smolino (Russia)',1,1,0),(37328,0,137501,'Snettisham','United Kingdom','UK','Snettisham (United Kingdom)',1,1,0),(37329,25506,137502,'Snowmass','United States of America','US','Snowmass (United States of America)',1,1,0),(37330,0,137503,'Soderstorf','Germany','DE','Soderstorf (Germany)',1,1,0),(37331,25576,137504,'Soledad','United States of America','US','Soledad (United States of America)',1,1,0),(37332,25585,137505,'Solignano Nuovo','Italy','IT','Solignano Nuovo (Italy)',1,1,0),(37333,25597,137506,'Solna','Sweden','SE','Solna (Sweden)',1,1,0),(37334,0,137507,'Solo Baru','Indonesia','ID','Solo Baru (Indonesia)',1,1,0),(37335,25604,137508,'Solon','United States of America','US','Solon (United States of America)',1,1,0),(37336,25608,137509,'Soltau','Germany','DE','Soltau (Germany)',1,1,0),(37337,25611,137510,'Solvesborg','Sweden','SE','Solvesborg (Sweden)',1,1,0),(37338,25617,137511,'Somerset','United States of America','US','Somerset (United States of America)',1,1,0),(37339,0,137512,'Somerset','United States of America','US','Somerset (United States of America)',1,1,0),(37340,0,137513,'Somma Vesuviana','Italy','IT','Somma Vesuviana (Italy)',1,1,0),(37341,0,137514,'Sona','Panama','PA','Sona (Panama)',1,1,0),(37342,0,137515,'Soncillo','Spain','ES','Soncillo (Spain)',1,1,0),(37343,25636,137516,'Sonderborg','Denmark','DK','Sonderborg (Denmark)',1,1,0),(37344,0,137517,'Sondervig','Denmark','DK','Sondervig (Denmark)',1,1,0),(37345,0,137518,'Sondheim v. d. Rhon','Germany','DE','Sondheim v. d. Rhon (Germany)',1,1,0),(37346,25647,137519,'Songjiang','China','CN','Songjiang (China)',1,1,0),(37347,0,137520,'Sonnenbuhl','Germany','DE','Sonnenbuhl (Germany)',1,1,0),(37348,0,137521,'Sonntag','Austria','AT','Sonntag (Austria)',1,1,0),(37349,0,137522,'Soporna','Slovakia','SK','Soporna (Slovakia)',1,1,0),(37350,25671,137523,'Sorgues','France','FR','Sorgues (France)',1,1,0),(37351,0,137524,'Soria','Spain','ES','Soria (Spain)',1,1,0),(37352,0,137525,'Sorico','Italy','IT','Sorico (Italy)',1,1,0),(37353,0,137526,'Soriguerola','Spain','ES','Soriguerola (Spain)',1,1,0),(37354,25679,137527,'Sorocaba','Brazil','BR','Sorocaba (Brazil)',1,1,0),(37355,25682,137528,'Sorso','Italy','IT','Sorso (Italy)',1,1,0),(37356,0,137529,'Sort-en-Chalosse','France','FR','Sort-en-Chalosse (France)',1,1,0),(37357,25690,137530,'Sosnicowice','Poland','PL','Sosnicowice (Poland)',1,1,0),(37358,0,137531,'Soto del Real','Spain','ES','Soto del Real (Spain)',1,1,0),(37359,0,137532,'Soullans','France','FR','Soullans (France)',1,1,0),(37360,0,137533,'South Pittsburg','United States of America','US','South Pittsburg (United States of America)',1,1,0),(37361,33518,137534,'South Sioux City','United States of America','US','South Sioux City (United States of America)',1,1,0),(37362,25744,137535,'Southampton','Bermuda','BM','Southampton (Bermuda)',1,1,0),(37363,0,137536,'Soutpansberg','South Africa','ZA','Soutpansberg (South Africa)',1,1,0),(37364,25807,137537,'Spanish Town','British Virgin Islands','VG','Spanish Town (British Virgin Islands)',1,1,0),(37365,25810,137538,'Spanochori','Greece','GR','Spanochori (Greece)',1,1,0),(37366,0,137539,'Sparta','United States of America','US','Sparta (United States of America)',1,1,0),(37367,25823,137540,'Spearfish','United States of America','US','Spearfish (United States of America)',1,1,0),(37368,25824,137541,'Specchia','Italy','IT','Specchia (Italy)',1,1,0),(37369,0,137542,'Speziale di Fasano','Italy','IT','Speziale di Fasano (Italy)',1,1,0),(37370,0,137543,'Spinovci','Croatia','HR','Spinovci (Croatia)',1,1,0),(37371,0,137544,'Spiss','Austria','AT','Spiss (Austria)',1,1,0),(37372,0,137545,'Spisske Podhradie','Slovakia','SK','Spisske Podhradie (Slovakia)',1,1,0),(37373,0,137546,'Spittal of Glenshee','United Kingdom','UK','Spittal of Glenshee (United Kingdom)',1,1,0),(37374,25862,137547,'Split','Croatia','HR','Split (Croatia)',1,1,0),(37375,25863,137548,'Spodnja Idrija','Slovenia','SI','Spodnja Idrija (Slovenia)',1,1,0),(37376,0,137549,'Spot Bay','Cayman Islands','KY','Spot Bay (Cayman Islands)',1,1,0),(37377,0,137550,'Spreetshoogte-Pass','Namibia','NA','Spreetshoogte-Pass (Namibia)',1,1,0),(37378,33539,137551,'Spring City','United States of America','US','Spring City (United States of America)',1,1,0),(37379,0,137552,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(37380,0,137553,'Sesto San Giovanni','Italy','IT','Sesto San Giovanni (Italy)',1,1,0),(37381,0,137554,'Sesue','Spain','ES','Sesue (Spain)',1,1,0),(37382,0,137555,'Settin','Germany','DE','Settin (Germany)',1,1,0),(37383,24912,137556,'Sevenum','Netherlands','NL','Sevenum (Netherlands)',1,1,0),(37384,0,137557,'Severac-le-Chateau','France','FR','Severac-le-Chateau (France)',1,1,0),(37385,24918,137558,'Seville','Spain','ES','Seville (Spain)',1,1,0),(37386,0,137559,'Seville','United States of America','US','Seville (United States of America)',1,1,0),(37387,24936,137560,'Seymour','Australia','AU','Seymour (Australia)',1,1,0),(37388,0,137561,'Sezanne','France','FR','Sezanne (France)',1,1,0),(37389,0,137562,'Sfantu Gheorghe','Romania','RO','Sfantu Gheorghe (Romania)',1,1,0),(37390,0,137563,'Sgombou','Greece','GR','Sgombou (Greece)',1,1,0),(37391,0,137564,'Shaba','Kenya','KE','Shaba (Kenya)',1,1,0),(37392,24959,137565,'Shakopee','United States of America','US','Shakopee (United States of America)',1,1,0),(37393,0,137566,'Shandong','China','CN','Shandong (China)',1,1,0),(37394,33406,137567,'Shannon','Ireland','IE','Shannon (Ireland)',1,1,0),(37395,0,137569,'Shanzu Beach','Kenya','KE','Shanzu Beach (Kenya)',1,1,0),(37396,0,137570,'Sharonville','United States of America','US','Sharonville (United States of America)',1,1,0),(37397,0,137571,'Shasta Lake','United States of America','US','Shasta Lake (United States of America)',1,1,0),(37398,0,137572,'Shaver Lake','United States of America','US','Shaver Lake (United States of America)',1,1,0),(37399,0,137573,'Shelby','United States of America','US','Shelby (United States of America)',1,1,0),(37400,25032,137574,'Shelton','United States of America','US','Shelton (United States of America)',1,1,0),(37401,25037,137575,'Shenzhen','China','CN','Shenzhen (China)',1,1,0),(37402,25047,137576,'Sherbrooke','Canada','CA','Sherbrooke (Canada)',1,1,0),(37403,0,137577,'Sheridan','United States of America','US','Sheridan (United States of America)',1,1,0),(37404,0,137578,'Sherman Oaks','United States of America','US','Sherman Oaks (United States of America)',1,1,0),(37405,25089,137579,'Shintoku','Japan','JP','Shintoku (Japan)',1,1,0),(37406,0,137580,'Shirahama','Japan','JP','Shirahama (Japan)',1,1,0),(37407,25115,137581,'Shoal Bay','Australia','AU','Shoal Bay (Australia)',1,1,0),(37408,25127,137582,'Shoshone','United States of America','US','Shoshone (United States of America)',1,1,0),(37409,25130,137583,'Show Low','United States of America','US','Show Low (United States of America)',1,1,0),(37410,0,137584,'Shropshire','United Kingdom','UK','Shropshire (United Kingdom)',1,1,0),(37411,25155,137585,'Sibari','Italy','IT','Sibari (Italy)',1,1,0),(37412,25158,137586,'Sibley','United States of America','US','Sibley (United States of America)',1,1,0),(37413,0,137587,'Sibolga','Indonesia','ID','Sibolga (Indonesia)',1,1,0),(37414,25161,137588,'Sibu','Malaysia','MY','Sibu (Malaysia)',1,1,0),(37415,0,137589,'Sidemen','Indonesia','ID','Sidemen (Indonesia)',1,1,0),(37416,0,137590,'Sidi R\'bat-Massa','Morocco','MA','Sidi R\'bat-Massa (Morocco)',1,1,0),(37417,0,137591,'Sidirohori','Greece','GR','Sidirohori (Greece)',1,1,0),(37418,0,137592,'Sieci','Italy','IT','Sieci (Italy)',1,1,0),(37419,0,137593,'Sieradz','Poland','PL','Sieradz (Poland)',1,1,0),(37420,0,137594,'Siero','Spain','ES','Siero (Spain)',1,1,0),(37421,0,137595,'Signaghi','Georgia','GE','Signaghi (Georgia)',1,1,0),(37422,0,137596,'Signal Hill','Trinidad and Tobago','TT','Signal Hill (Trinidad and Tobago)',1,1,0),(37423,0,137597,'Siklos','Hungary','HU','Siklos (Hungary)',1,1,0),(37424,0,137598,'Siladen Island','Indonesia','ID','Siladen Island (Indonesia)',1,1,0),(37425,0,137599,'Silla','Spain','ES','Silla (Spain)',1,1,0),(37426,0,137600,'Silloth','United Kingdom','UK','Silloth (United Kingdom)',1,1,0),(37427,0,137601,'Silsbee','United States of America','US','Silsbee (United States of America)',1,1,0),(37428,25237,137602,'Sils-Maria','Switzerland','CH','Sils-Maria (Switzerland)',1,1,0),(37429,25238,137603,'Silt','United States of America','US','Silt (United States of America)',1,1,0),(37430,25239,137604,'Siltakyla','Finland','FI','Siltakyla (Finland)',1,1,0),(37431,25240,137605,'Silvaplana','Switzerland','CH','Silvaplana (Switzerland)',1,1,0),(37432,0,137606,'Silveiros','Portugal','PT','Silveiros (Portugal)',1,1,0),(37433,25243,137607,'Silverdale','United States of America','US','Silverdale (United States of America)',1,1,0),(37434,25244,137608,'Silverton','United States of America','US','Silverton (United States of America)',1,1,0),(37435,25245,137609,'Silves','Portugal','PT','Silves (Portugal)',1,1,0),(37436,0,137610,'Silves','Brazil','BR','Silves (Brazil)',1,1,0),(37437,25252,137611,'Simferopol','Ukraine','UA','Simferopol (Ukraine)',1,1,0),(37438,25258,137612,'Simmerath','Germany','DE','Simmerath (Germany)',1,1,0),(37439,0,137613,'Simmerath - Erkensruhr','Germany','DE','Simmerath - Erkensruhr (Germany)',1,1,0),(37440,0,137614,'Simmertal','Germany','DE','Simmertal (Germany)',1,1,0),(37441,0,137615,'Simpang Empat','Malaysia','MY','Simpang Empat (Malaysia)',1,1,0),(37442,0,137616,'Simpele','Finland','FI','Simpele (Finland)',1,1,0),(37443,25288,137617,'Sinsheim','Germany','DE','Sinsheim (Germany)',1,1,0),(37444,0,137618,'Sint-Genesius-Rode','Belgium','BE','Sint-Genesius-Rode (Belgium)',1,1,0),(37445,0,137619,'Sint-Philipsland','Netherlands','NL','Sint-Philipsland (Netherlands)',1,1,0),(37446,25320,137620,'Sirmione','Italy','IT','Sirmione (Italy)',1,1,0),(37447,0,137621,'Sisan','Spain','ES','Sisan (Spain)',1,1,0),(37448,25335,137622,'Sisters','United States of America','US','Sisters (United States of America)',1,1,0),(37449,0,137623,'Siumu','Samoa','WS','Siumu (Samoa)',1,1,0),(37450,0,137624,'Siwa Oasis','Egypt','EG','Siwa Oasis (Egypt)',1,1,0),(37451,25360,137625,'Skagway','United States of America','US','Skagway (United States of America)',1,1,0),(37452,0,137626,'Skala Potamias','Greece','GR','Skala Potamias (Greece)',1,1,0),(37453,0,137627,'Skala Sykaminias','Greece','GR','Skala Sykaminias (Greece)',1,1,0),(37454,0,137628,'Skalna-Vonsov','Czech Republic','CZ','Skalna-Vonsov (Czech Republic)',1,1,0),(37455,25363,137629,'Skanderborg','Denmark','DK','Skanderborg (Denmark)',1,1,0),(37456,0,137630,'Skoldinge','Sweden','SE','Skoldinge (Sweden)',1,1,0),(37457,0,137631,'Skopelos','Greece','GR','Skopelos (Greece)',1,1,0),(37458,0,137632,'Skundra','Latvia','LV','Skundra (Latvia)',1,1,0),(37459,0,137633,'Skurup','Sweden','SE','Skurup (Sweden)',1,1,0),(37460,25426,137634,'Slade','United States of America','US','Slade (United States of America)',1,1,0),(37461,25428,137635,'Slagelse','Denmark','DK','Slagelse (Denmark)',1,1,0),(37462,25432,137636,'Slangerup','Denmark','DK','Slangerup (Denmark)',1,1,0),(37463,0,137637,'Slavonski Brod','Croatia','HR','Slavonski Brod (Croatia)',1,1,0),(37464,0,137638,'Sleights','United Kingdom','UK','Sleights (United Kingdom)',1,1,0),(37465,25446,137639,'Sliac','Slovakia','SK','Sliac (Slovakia)',1,1,0),(37466,0,137640,'Slovenska Bistrica','Slovenia','SI','Slovenska Bistrica (Slovenia)',1,1,0),(37467,25459,137641,'Slovenske Konjice','Slovenia','SI','Slovenske Konjice (Slovenia)',1,1,0),(37468,0,137642,'slowenisch Gorica','Italy','IT','slowenisch Gorica (Italy)',1,1,0),(37469,0,137643,'Smedjebacken','Sweden','SE','Smedjebacken (Sweden)',1,1,0),(37470,0,137644,'Smithfield','United States of America','US','Smithfield (United States of America)',1,1,0),(37471,25475,137645,'Smithton','Australia','AU','Smithton (Australia)',1,1,0),(37472,25477,137646,'Smithville','United States of America','US','Smithville (United States of America)',1,1,0),(37473,25478,137647,'Smizany','Slovakia','SK','Smizany (Slovakia)',1,1,0),(37474,0,137648,'Smoljan','Bulgaria','BG','Smoljan (Bulgaria)',1,1,0),(37475,25485,137649,'Smyrna','United States of America','US','Smyrna (United States of America)',1,1,0),(37476,25493,137650,'Sneek','Netherlands','NL','Sneek (Netherlands)',1,1,0),(37477,0,137651,'Snoqualmie Pass','United States of America','US','Snoqualmie Pass (United States of America)',1,1,0),(37478,0,137652,'Soba','Spain','ES','Soba (Spain)',1,1,0),(37479,25516,137653,'Sobetsu','Japan','JP','Sobetsu (Japan)',1,1,0),(37480,0,137654,'Sochi','Russia','RU','Sochi (Russia)',1,1,0),(37481,0,137655,'Soddy Daisy','United States of America','US','Soddy Daisy (United States of America)',1,1,0),(37482,0,137656,'Soesterberg','Netherlands','NL','Soesterberg (Netherlands)',1,1,0),(37483,0,137657,'Sogel','Germany','DE','Sogel (Germany)',1,1,0),(37484,0,137658,'Sokraki','Greece','GR','Sokraki (Greece)',1,1,0),(37485,25564,137659,'Solaize','France','FR','Solaize (France)',1,1,0),(37486,25570,137660,'Solden','Austria','AT','Solden (Austria)',1,1,0),(37487,25578,137661,'Solesmes','France','FR','Solesmes (France)',1,1,0),(37488,25586,137662,'Soliman','Tunisia','TN','Soliman (Tunisia)',1,1,0),(37489,25587,137663,'Solingen','Germany','DE','Solingen (Germany)',1,1,0),(37490,0,137664,'Solitaire','Namibia','NA','Solitaire (Namibia)',1,1,0),(37491,24571,137665,'Schofield','United States of America','US','Schofield (United States of America)',1,1,0),(37492,0,137666,'Schonbrunn','Germany','DE','Schonbrunn (Germany)',1,1,0),(37493,0,137667,'Schonbrunn im Steigerwald','Germany','DE','Schonbrunn im Steigerwald (Germany)',1,1,0),(37494,0,137668,'Schonfeld/Altmark','Germany','DE','Schonfeld/Altmark (Germany)',1,1,0),(37495,0,137669,'Schonhagen','Germany','DE','Schonhagen (Germany)',1,1,0),(37496,24585,137670,'Schonwald','Germany','DE','Schonwald (Germany)',1,1,0),(37497,0,137671,'Schoppingen','Germany','DE','Schoppingen (Germany)',1,1,0),(37498,0,137672,'Schorfling','Austria','AT','Schorfling (Austria)',1,1,0),(37499,0,137673,'Schriesheim','Germany','DE','Schriesheim (Germany)',1,1,0),(37500,0,137674,'Schrobenhausen','Germany','DE','Schrobenhausen (Germany)',1,1,0),(37501,24602,137675,'Schulenburg','United States of America','US','Schulenburg (United States of America)',1,1,0),(37502,0,137676,'Schwaan','Germany','DE','Schwaan (Germany)',1,1,0),(37503,24609,137677,'Schwaig','Germany','DE','Schwaig (Germany)',1,1,0),(37504,0,137678,'Schwanau','Germany','DE','Schwanau (Germany)',1,1,0),(37505,0,137679,'Schwarza','Germany','DE','Schwarza (Germany)',1,1,0),(37506,0,137680,'Schwarzbach','Germany','DE','Schwarzbach (Germany)',1,1,0),(37507,0,137681,'Schwarzenbach','Germany','DE','Schwarzenbach (Germany)',1,1,0),(37508,0,137682,'Schwaz','Austria','AT','Schwaz (Austria)',1,1,0),(37509,24632,137683,'Schwielowsee','Germany','DE','Schwielowsee (Germany)',1,1,0),(37510,0,137684,'Schwoich','Austria','AT','Schwoich (Austria)',1,1,0),(37511,24642,137685,'Scoglitti','Italy','IT','Scoglitti (Italy)',1,1,0),(37512,0,137686,'Scotland Neck','United States of America','US','Scotland Neck (United States of America)',1,1,0),(37513,33392,137687,'Scott','United States of America','US','Scott (United States of America)',1,1,0),(37514,0,137688,'Scourie','United Kingdom','UK','Scourie (United Kingdom)',1,1,0),(37515,24661,137689,'Scranton','United States of America','US','Scranton (United States of America)',1,1,0),(37516,33396,137690,'Sea Island','United States of America','US','Sea Island (United States of America)',1,1,0),(37517,0,137691,'Sea Point','South Africa','ZA','Sea Point (South Africa)',1,1,0),(37518,0,137692,'Seaham','United Kingdom','UK','Seaham (United Kingdom)',1,1,0),(37519,24703,137693,'Sedalia','United States of America','US','Sedalia (United States of America)',1,1,0),(37520,0,137694,'Sedbergh','United Kingdom','UK','Sedbergh (United Kingdom)',1,1,0),(37521,0,137695,'Sedziszow Malopolski','Poland','PL','Sedziszow Malopolski (Poland)',1,1,0),(37522,0,137696,'See Derryhick','Ireland','IE','See Derryhick (Ireland)',1,1,0),(37523,24715,137697,'Seebe','Canada','CA','Seebe (Canada)',1,1,0),(37524,0,137698,'Seeg','Germany','DE','Seeg (Germany)',1,1,0),(37525,24724,137699,'Seesen','Germany','DE','Seesen (Germany)',1,1,0),(37526,0,137700,'Seewen SZ','Switzerland','CH','Seewen SZ (Switzerland)',1,1,0),(37527,0,137701,'Seewiesen','Austria','AT','Seewiesen (Austria)',1,1,0),(37528,0,137702,'Seewis Dorf','Switzerland','CH','Seewis Dorf (Switzerland)',1,1,0),(37529,0,137703,'Seget Donji','Croatia','HR','Seget Donji (Croatia)',1,1,0),(37530,0,137704,'Seggiano','Italy','IT','Seggiano (Italy)',1,1,0),(37531,24730,137705,'Segonzano','Italy','IT','Segonzano (Italy)',1,1,0),(37532,24732,137706,'Segos','France','FR','Segos (France)',1,1,0),(37533,0,137707,'Sehmatal','Germany','DE','Sehmatal (Germany)',1,1,0),(37534,0,137708,'Seifhennersdorf','Germany','DE','Seifhennersdorf (Germany)',1,1,0),(37535,24749,137709,'Seillac','France','FR','Seillac (France)',1,1,0),(37536,0,137710,'Seiseralm','Italy','IT','Seiseralm (Italy)',1,1,0),(37537,0,137711,'Seissan','France','FR','Seissan (France)',1,1,0),(37538,0,137712,'Selb','Germany','DE','Selb (Germany)',1,1,0),(37539,0,137713,'Selbu','Norway','NO','Selbu (Norway)',1,1,0),(37540,24784,137714,'Sellia Marina','Italy','IT','Sellia Marina (Italy)',1,1,0),(37541,0,137715,'Selongey','France','FR','Selongey (France)',1,1,0),(37542,24788,137716,'Selous Game Reserve','Tanzania','TZ','Selous Game Reserve (Tanzania)',1,1,0),(37543,24792,137717,'Semecourt','France','FR','Semecourt (France)',1,1,0),(37544,0,137718,'Senhora da Rocha','Portugal','PT','Senhora da Rocha (Portugal)',1,1,0),(37545,24819,137719,'Senigallia','Italy','IT','Senigallia (Italy)',1,1,0),(37546,0,137720,'Sennen/Land\'s End','United Kingdom','UK','Sennen/Land\'s End (United Kingdom)',1,1,0),(37547,24828,137721,'Sentosa Island','Singapore','SG','Sentosa Island (Singapore)',1,1,0),(37548,0,137722,'Seongnam','South Korea','KR','Seongnam (South Korea)',1,1,0),(37549,24833,137723,'Sepang','Malaysia','MY','Sepang (Malaysia)',1,1,0),(37550,24852,137724,'Serezin-du-Rhone','France','FR','Serezin-du-Rhone (France)',1,1,0),(37551,0,137725,'Serik','Turkey','TR','Serik (Turkey)',1,1,0),(37552,0,137726,'Sernikaki','Greece','GR','Sernikaki (Greece)',1,1,0),(37553,0,137727,'Serrara Fontana','Italy','IT','Serrara Fontana (Italy)',1,1,0),(37554,0,137728,'Sertic Poljana','Croatia','HR','Sertic Poljana (Croatia)',1,1,0),(37555,24884,137729,'Sesimbra','Portugal','PT','Sesimbra (Portugal)',1,1,0),(37556,0,137730,'Se?lach','Germany','DE','Se?lach (Germany)',1,1,0),(37557,24896,137731,'Sete','France','FR','Sete (France)',1,1,0),(37558,0,137732,'Sever do Vouga','Portugal','PT','Sever do Vouga (Portugal)',1,1,0),(37559,24926,137733,'Sevrier','France','FR','Sevrier (France)',1,1,0),(37560,24929,137734,'Sewen','France','FR','Sewen (France)',1,1,0),(37561,0,137735,'Seyne les Alpes','France','FR','Seyne les Alpes (France)',1,1,0),(37562,24938,137736,'Seynod','France','FR','Seynod (France)',1,1,0),(37563,24939,137737,'Seyssins','France','FR','Seyssins (France)',1,1,0),(37564,0,137738,'Shaftesbury','United Kingdom','UK','Shaftesbury (United Kingdom)',1,1,0),(37565,24963,137739,'Shallotte','United States of America','US','Shallotte (United States of America)',1,1,0),(37566,24968,137740,'Shamrock','United States of America','US','Shamrock (United States of America)',1,1,0),(37567,24993,137741,'Sharjah','United Arab Emirates','AE','Sharjah (United Arab Emirates)',1,1,0),(37568,0,137742,'Sharm el Naga','Egypt','EG','Sharm el Naga (Egypt)',1,1,0),(37569,0,137743,'Shawnigan Lake','Canada','CA','Shawnigan Lake (Canada)',1,1,0),(37570,0,137744,'Shelbyville','United States of America','US','Shelbyville (United States of America)',1,1,0),(37571,0,137745,'Shepherdsville','United States of America','US','Shepherdsville (United States of America)',1,1,0),(37572,0,137746,'Sherrodsville','United States of America','US','Sherrodsville (United States of America)',1,1,0),(37573,0,137747,'Shillelagh','Ireland','IE','Shillelagh (Ireland)',1,1,0),(37574,0,137748,'Shiou Lin Village','Taiwan','TW','Shiou Lin Village (Taiwan)',1,1,0),(37575,0,137749,'Shiroka Laka','Bulgaria','BG','Shiroka Laka (Bulgaria)',1,1,0),(37576,0,137751,'Shlisselburg','Russia','RU','Shlisselburg (Russia)',1,1,0),(37577,25126,137752,'Shorter','United States of America','US','Shorter (United States of America)',1,1,0),(37578,0,137753,'Shrewsbury','United Kingdom','UK','Shrewsbury (United Kingdom)',1,1,0),(37579,33415,137754,'Si Racha','Thailand','TH','Si Racha (Thailand)',1,1,0),(37580,0,137755,'Siat','Switzerland','CH','Siat (Switzerland)',1,1,0),(37581,0,137756,'Sib','Oman','OM','Sib (Oman)',1,1,0),(37582,0,137757,'Sibiu','Romania','RO','Sibiu (Romania)',1,1,0),(37583,25163,137758,'Siculiana','Italy','IT','Siculiana (Italy)',1,1,0),(37584,25180,137759,'Siem Reap','Cambodia','KH','Siem Reap (Cambodia)',1,1,0),(37585,0,137760,'Sieniawa','Poland','PL','Sieniawa (Poland)',1,1,0),(37586,0,137761,'Sierra Vista','United States of America','US','Sierra Vista (United States of America)',1,1,0),(37587,0,137762,'Sighetu Marmatiei','Romania','RO','Sighetu Marmatiei (Romania)',1,1,0),(37588,0,137763,'Signy-l\'Abbaye','France','FR','Signy-l\'Abbaye (France)',1,1,0),(37589,25205,137764,'Sigtuna','Sweden','SE','Sigtuna (Sweden)',1,1,0),(37590,25221,137765,'Silea','Italy','IT','Silea (Italy)',1,1,0),(37591,25222,137766,'Siler City','United States of America','US','Siler City (United States of America)',1,1,0),(37592,0,137767,'Siljansee','Sweden','SE','Siljansee (Sweden)',1,1,0),(37593,25231,137768,'Silleda','Spain','ES','Silleda (Spain)',1,1,0),(37594,25234,137769,'Siloam Springs','United States of America','US','Siloam Springs (United States of America)',1,1,0),(37595,0,137770,'Silver City','United States of America','US','Silver City (United States of America)',1,1,0),(37596,0,137771,'Silvi Paese','Italy','IT','Silvi Paese (Italy)',1,1,0),(37597,0,137772,'Simbach am Inn','Germany','DE','Simbach am Inn (Germany)',1,1,0),(37598,0,137773,'Simonsberg','Germany','DE','Simonsberg (Germany)',1,1,0),(37599,0,137774,'St. Austell','United Kingdom','UK','St. Austell (United Kingdom)',1,1,0),(37600,0,137775,'St. Gallenkirch','Austria','AT','St. Gallenkirch (Austria)',1,1,0),(37601,25915,137776,'St. George','Bermuda','BM','St. George (Bermuda)',1,1,0),(37602,0,137777,'St. Ghislain','Belgium','BE','St. Ghislain (Belgium)',1,1,0),(37603,0,137778,'St. Hilaire de Riez','France','FR','St. Hilaire de Riez (France)',1,1,0),(37604,0,137779,'St. Johann','Austria','AT','St. Johann (Austria)',1,1,0),(37605,0,137780,'St. Kathrein am Offenegg','Austria','AT','St. Kathrein am Offenegg (Austria)',1,1,0),(37606,0,137781,'St. Leonhard','Austria','AT','St. Leonhard (Austria)',1,1,0),(37607,0,137782,'St. Lucia Wetland Park','South Africa','ZA','St. Lucia Wetland Park (South Africa)',1,1,0),(37608,0,137783,'St. Martin / St. Maarten','Saint Martin',NULL,'St. Martin / St. Maarten (Saint Martin)',1,1,0),(37609,0,137784,'St. Nikolai im Sausal','Austria','AT','St. Nikolai im Sausal (Austria)',1,1,0),(37610,0,137785,'St. Peter','Switzerland','CH','St. Peter (Switzerland)',1,1,0),(37611,0,137786,'St. Rose','Guadeloupe','GP','St. Rose (Guadeloupe)',1,1,0),(37612,0,137787,'St. Seurin de Cursac','France','FR','St. Seurin de Cursac (France)',1,1,0),(37613,0,137788,'St. Sigmund','Austria','AT','St. Sigmund (Austria)',1,1,0),(37614,0,137789,'St. Stefan am Walde','Austria','AT','St. Stefan am Walde (Austria)',1,1,0),(37615,0,137790,'St. Stefan im Lavanttal','Austria','AT','St. Stefan im Lavanttal (Austria)',1,1,0),(37616,0,137791,'St. Ulrich im Muhlkreis','Austria','AT','St. Ulrich im Muhlkreis (Austria)',1,1,0),(37617,0,137792,'St. Veit','Austria','AT','St. Veit (Austria)',1,1,0),(37618,0,137793,'St. Wolfgang','Austria','AT','St. Wolfgang (Austria)',1,1,0),(37619,0,137794,'Sta. Marina de Ribeira','Spain','ES','Sta. Marina de Ribeira (Spain)',1,1,0),(37620,0,137795,'Stachy','Czech Republic','CZ','Stachy (Czech Republic)',1,1,0),(37621,0,137796,'Stadtbergen','Germany','DE','Stadtbergen (Germany)',1,1,0),(37622,0,137797,'Staines','United Kingdom','UK','Staines (United Kingdom)',1,1,0),(37623,0,137798,'Stamford','United Kingdom','UK','Stamford (United Kingdom)',1,1,0),(37624,0,137799,'Stanley','United States of America','US','Stanley (United States of America)',1,1,0),(37625,25996,137800,'Stansstad','Switzerland','CH','Stansstad (Switzerland)',1,1,0),(37626,0,137801,'Stapleford','United Kingdom','UK','Stapleford (United Kingdom)',1,1,0),(37627,0,137802,'Staraja Russa','Russia','RU','Staraja Russa (Russia)',1,1,0),(37628,0,137803,'Stary Lichen','Poland','PL','Stary Lichen (Poland)',1,1,0),(37629,26023,137804,'Statesville','United States of America','US','Statesville (United States of America)',1,1,0),(37630,0,137805,'Staufen','Germany','DE','Staufen (Germany)',1,1,0),(37631,0,137806,'Staveley','United Kingdom','UK','Staveley (United Kingdom)',1,1,0),(37632,26030,137807,'Stavros','Greece','GR','Stavros (Greece)',1,1,0),(37633,0,137808,'Stavroupoli','Greece','GR','Stavroupoli (Greece)',1,1,0),(37634,0,137809,'Ste Anne La Palud','France','FR','Ste Anne La Palud (France)',1,1,0),(37635,0,137810,'Ste. Genevieve','United States of America','US','Ste. Genevieve (United States of America)',1,1,0),(37636,26038,137811,'Steckborn','Switzerland','CH','Steckborn (Switzerland)',1,1,0),(37637,0,137812,'Steegen','Germany','DE','Steegen (Germany)',1,1,0),(37638,26041,137813,'Steele','United States of America','US','Steele (United States of America)',1,1,0),(37639,0,137814,'Stein an der Enns','Austria','AT','Stein an der Enns (Austria)',1,1,0),(37640,0,137815,'Steinegg','Switzerland','CH','Steinegg (Switzerland)',1,1,0),(37641,0,137816,'Steinen','Germany','DE','Steinen (Germany)',1,1,0),(37642,26062,137817,'Steinheim','Germany','DE','Steinheim (Germany)',1,1,0),(37643,0,137818,'Stelida','Greece','GR','Stelida (Greece)',1,1,0),(37644,0,137819,'Stepaside','United Kingdom','UK','Stepaside (United Kingdom)',1,1,0),(37645,0,137820,'Sternberg','Germany','DE','Sternberg (Germany)',1,1,0),(37646,26084,137821,'Stettler','Canada','CA','Stettler (Canada)',1,1,0),(37647,26088,137822,'Stevenson','United States of America','US','Stevenson (United States of America)',1,1,0),(37648,0,137823,'Stimpfach','Germany','DE','Stimpfach (Germany)',1,1,0),(37649,0,137824,'Stity','Czech Republic','CZ','Stity (Czech Republic)',1,1,0),(37650,26121,137825,'Stockelsdorf','Germany','DE','Stockelsdorf (Germany)',1,1,0),(37651,0,137826,'Stockern','Austria','AT','Stockern (Austria)',1,1,0),(37652,0,137827,'Stockholm','Sweden','SE','Stockholm (Sweden)',1,1,0),(37653,0,137828,'Stockstadt am Main','Germany','DE','Stockstadt am Main (Germany)',1,1,0),(37654,26139,137829,'Stockton','United States of America','US','Stockton (United States of America)',1,1,0),(37655,0,137830,'Stola','Slovakia','SK','Stola (Slovakia)',1,1,0),(37656,0,137831,'Stolberg','Germany','DE','Stolberg (Germany)',1,1,0),(37657,0,137832,'Stollberg /Erzgeb.','Germany','DE','Stollberg /Erzgeb. (Germany)',1,1,0),(37658,26147,137833,'Stolpe','Germany','DE','Stolpe (Germany)',1,1,0),(37659,0,137834,'Stoltebull','Germany','DE','Stoltebull (Germany)',1,1,0),(37660,0,137835,'Stonehouse','United Kingdom','UK','Stonehouse (United Kingdom)',1,1,0),(37661,0,137836,'Stony Stratford','United Kingdom','UK','Stony Stratford (United Kingdom)',1,1,0),(37662,26163,137837,'Stord','Norway','NO','Stord (Norway)',1,1,0),(37663,0,137838,'Stordal','Norway','NO','Stordal (Norway)',1,1,0),(37664,0,137839,'Stormsrivier','South Africa','ZA','Stormsrivier (South Africa)',1,1,0),(37665,26173,137840,'Storslett','Norway','NO','Storslett (Norway)',1,1,0),(37666,33769,137841,'Strada','Italy','IT','Strada (Italy)',1,1,0),(37667,0,137842,'Strand Hill','Ireland','IE','Strand Hill (Ireland)',1,1,0),(37668,26206,137843,'Strasburg','United States of America','US','Strasburg (United States of America)',1,1,0),(37669,0,137844,'Stratford-upon-Avon','United Kingdom','UK','Stratford-upon-Avon (United Kingdom)',1,1,0),(37670,0,137845,'Strathalbyn','Australia','AU','Strathalbyn (Australia)',1,1,0),(37671,0,137846,'Strathpeffer','United Kingdom','UK','Strathpeffer (United Kingdom)',1,1,0),(37672,26225,137847,'Straubenhardt','Germany','DE','Straubenhardt (Germany)',1,1,0),(37673,0,137848,'Straumsjoen','Norway','NO','Straumsjoen (Norway)',1,1,0),(37674,0,137849,'Street','United Kingdom','UK','Street (United Kingdom)',1,1,0),(37675,26241,137850,'Stresa','Italy','IT','Stresa (Italy)',1,1,0),(37676,0,137851,'Stretford','United Kingdom','UK','Stretford (United Kingdom)',1,1,0),(37677,26246,137852,'Strobl','Austria','AT','Strobl (Austria)',1,1,0),(37678,0,137853,'Strontian','United Kingdom','UK','Strontian (United Kingdom)',1,1,0),(37679,0,137854,'Struan','United Kingdom','UK','Struan (United Kingdom)',1,1,0),(37680,26263,137855,'Struga','Macedonia','MK','Struga (Macedonia)',1,1,0),(37681,0,137856,'Struisbaai','South Africa','ZA','Struisbaai (South Africa)',1,1,0),(37682,0,137857,'Stubbendorf','Germany','DE','Stubbendorf (Germany)',1,1,0),(37683,0,137858,'Stuhlfelden','Austria','AT','Stuhlfelden (Austria)',1,1,0),(37684,0,137859,'Subotica','Serbia','RS','Subotica (Serbia)',1,1,0),(37685,0,137860,'Suddendorf','Germany','DE','Suddendorf (Germany)',1,1,0),(37686,0,137861,'Sudeley by Cheltenham','United Kingdom','UK','Sudeley by Cheltenham (United Kingdom)',1,1,0),(37687,26315,137862,'Suderburg','Germany','DE','Suderburg (Germany)',1,1,0),(37688,26320,137863,'Suevres','France','FR','Suevres (France)',1,1,0),(37689,0,137864,'Sulecin','Poland','PL','Sulecin (Poland)',1,1,0),(37690,26356,137865,'Sulzberg','Germany','DE','Sulzberg (Germany)',1,1,0),(37691,0,137866,'Summerland Keys','United States of America','US','Summerland Keys (United States of America)',1,1,0),(37692,26379,137867,'Sumter','United States of America','US','Sumter (United States of America)',1,1,0),(37693,33777,137868,'Sun City Center','United States of America','US','Sun City Center (United States of America)',1,1,0),(37694,33779,137869,'Sun Prairie','United States of America','US','Sun Prairie (United States of America)',1,1,0),(37695,0,137870,'Sun Reef','Curaçao','CW','Sun Reef (Curaçao)',1,1,0),(37696,0,137871,'Sunrise Beach','United States of America','US','Sunrise Beach (United States of America)',1,1,0),(37697,26413,137872,'Sunriver','United States of America','US','Sunriver (United States of America)',1,1,0),(37698,26424,137873,'Suomutunturi','Finland','FI','Suomutunturi (Finland)',1,1,0),(37699,26437,137874,'Surakarta','Indonesia','ID','Surakarta (Indonesia)',1,1,0),(37700,0,137875,'Surfside/Miami Beach','United States of America','US','Surfside/Miami Beach (United States of America)',1,1,0),(37701,26453,137876,'Surnadal','Norway','NO','Surnadal (Norway)',1,1,0),(37702,0,137877,'Surte','Sweden','SE','Surte (Sweden)',1,1,0),(37703,26461,137878,'Susa','Italy','IT','Susa (Italy)',1,1,0),(37704,26462,137879,'Susanville','United States of America','US','Susanville (United States of America)',1,1,0),(37705,0,137880,'Su?en','Germany','DE','Su?en (Germany)',1,1,0),(37706,24500,137881,'Schangnau','Switzerland','CH','Schangnau (Switzerland)',1,1,0),(37707,0,137882,'Schattwald','Austria','AT','Schattwald (Austria)',1,1,0),(37708,0,137883,'Schechen','Germany','DE','Schechen (Germany)',1,1,0),(37709,24515,137884,'Schenectady','United States of America','US','Schenectady (United States of America)',1,1,0),(37710,24520,137885,'Schertz','United States of America','US','Schertz (United States of America)',1,1,0),(37711,0,137886,'Schifferstadt','Germany','DE','Schifferstadt (Germany)',1,1,0),(37712,24528,137887,'Schignano','Italy','IT','Schignano (Italy)',1,1,0),(37713,24530,137888,'Schiller Park','United States of America','US','Schiller Park (United States of America)',1,1,0),(37714,24532,137889,'Schillingsfurst','Germany','DE','Schillingsfurst (Germany)',1,1,0),(37715,24533,137890,'Schiltigheim','France','FR','Schiltigheim (France)',1,1,0),(37716,0,137891,'Schinznach-Bad','Switzerland','CH','Schinznach-Bad (Switzerland)',1,1,0),(37717,0,137892,'Schleiden-Gemunden','Germany','DE','Schleiden-Gemunden (Germany)',1,1,0),(37718,33391,137893,'Schleswig','Germany','DE','Schleswig (Germany)',1,1,0),(37719,0,137894,'Schleusingen','Germany','DE','Schleusingen (Germany)',1,1,0),(37720,0,137895,'Schlierbach','Austria','AT','Schlierbach (Austria)',1,1,0),(37721,24545,137896,'Schlieren','Switzerland','CH','Schlieren (Switzerland)',1,1,0),(37722,0,137897,'Schmelz','Germany','DE','Schmelz (Germany)',1,1,0),(37723,0,137898,'Schmogrow-Fehrow','Germany','DE','Schmogrow-Fehrow (Germany)',1,1,0),(37724,0,137899,'Schmolln','Germany','DE','Schmolln (Germany)',1,1,0),(37725,0,137900,'Schnaittenbach','Germany','DE','Schnaittenbach (Germany)',1,1,0),(37726,0,137901,'Schnifis','Austria','AT','Schnifis (Austria)',1,1,0),(37727,0,137902,'Schoder','Austria','AT','Schoder (Austria)',1,1,0),(37728,0,137903,'Schollnach','Germany','DE','Schollnach (Germany)',1,1,0),(37729,24574,137904,'Schomberg','Germany','DE','Schomberg (Germany)',1,1,0),(37730,0,137905,'Schonaich','Germany','DE','Schonaich (Germany)',1,1,0),(37731,24577,137906,'Schonberg','Germany','DE','Schonberg (Germany)',1,1,0),(37732,0,137907,'Schonberg','Germany','DE','Schonberg (Germany)',1,1,0),(37733,0,137908,'Schonfels','Germany','DE','Schonfels (Germany)',1,1,0),(37734,0,137909,'Schonsee','Germany','DE','Schonsee (Germany)',1,1,0),(37735,0,137910,'Schonthal','Germany','DE','Schonthal (Germany)',1,1,0),(37736,24593,137911,'Schotten','Germany','DE','Schotten (Germany)',1,1,0),(37737,24599,137912,'Schruns','Austria','AT','Schruns (Austria)',1,1,0),(37738,24600,137913,'Schuddebeurs','Netherlands','NL','Schuddebeurs (Netherlands)',1,1,0),(37739,0,137914,'Schuders','Switzerland','CH','Schuders (Switzerland)',1,1,0),(37740,24603,137915,'Schupfen','Switzerland','CH','Schupfen (Switzerland)',1,1,0),(37741,0,137916,'Schwaig bei Nurnberg','Germany','DE','Schwaig bei Nurnberg (Germany)',1,1,0),(37742,0,137917,'Schwalbach am Taunus','Germany','DE','Schwalbach am Taunus (Germany)',1,1,0),(37743,0,137918,'Schwalmtal','Germany','DE','Schwalmtal (Germany)',1,1,0),(37744,24614,137919,'Schwartbuck','Germany','DE','Schwartbuck (Germany)',1,1,0),(37745,0,137920,'Schwedt/Oder','Germany','DE','Schwedt/Oder (Germany)',1,1,0),(37746,0,137921,'Schweich','Germany','DE','Schweich (Germany)',1,1,0),(37747,24626,137922,'Schweitenkirchen','Germany','DE','Schweitenkirchen (Germany)',1,1,0),(37748,0,137923,'Schwenningen','Germany','DE','Schwenningen (Germany)',1,1,0),(37749,24630,137924,'Schwetzingen','Germany','DE','Schwetzingen (Germany)',1,1,0),(37750,24634,137925,'Sciacca','Italy','IT','Sciacca (Italy)',1,1,0),(37751,24645,137926,'Scone','Australia','AU','Scone (Australia)',1,1,0),(37752,24646,137927,'Scopello','Italy','IT','Scopello (Italy)',1,1,0),(37753,0,137928,'Scotch Corner','United Kingdom','UK','Scotch Corner (United Kingdom)',1,1,0),(37754,0,137929,'Scottburgh','South Africa','ZA','Scottburgh (South Africa)',1,1,0),(37755,24653,137930,'Scottdale','United States of America','US','Scottdale (United States of America)',1,1,0),(37756,0,137931,'Scottsville','United States of America','US','Scottsville (United States of America)',1,1,0),(37757,24666,137932,'Seabrook','United States of America','US','Seabrook (United States of America)',1,1,0),(37758,24669,137933,'Seaford','United States of America','US','Seaford (United States of America)',1,1,0),(37759,0,137934,'Seaford',NULL,NULL,'Seaford ()',1,1,0),(37760,24670,137935,'Seagoville','United States of America','US','Seagoville (United States of America)',1,1,0),(37761,24677,137936,'Sealy','United States of America','US','Sealy (United States of America)',1,1,0),(37762,0,137937,'Seaside Park','United States of America','US','Seaside Park (United States of America)',1,1,0),(37763,34874,137938,'Seattle','United States of America','US','Seattle (United States of America)',1,1,0),(37764,24689,137939,'Sebastian','United States of America','US','Sebastian (United States of America)',1,1,0),(37765,24695,137940,'Sebring','United States of America','US','Sebring (United States of America)',1,1,0),(37766,0,137941,'Seccheto','Italy','IT','Seccheto (Italy)',1,1,0),(37767,24700,137942,'Second Valley','Australia','AU','Second Valley (Australia)',1,1,0),(37768,0,137943,'See /Ischgl','Austria','AT','See /Ischgl (Austria)',1,1,0),(37769,0,137944,'Seeba','Germany','DE','Seeba (Germany)',1,1,0),(37770,0,137945,'Seeburg','Germany','DE','Seeburg (Germany)',1,1,0),(37771,0,137946,'Seelisberg','Switzerland','CH','Seelisberg (Switzerland)',1,1,0),(37772,0,137947,'Seeshaupt','Germany','DE','Seeshaupt (Germany)',1,1,0),(37773,0,137948,'Seevetal','Germany','DE','Seevetal (Germany)',1,1,0),(37774,0,137949,'Segamat','Malaysia','MY','Segamat (Malaysia)',1,1,0),(37775,0,137950,'Segnas','Switzerland','CH','Segnas (Switzerland)',1,1,0),(37776,0,137951,'Seignosse-Le-Penon','France','FR','Seignosse-Le-Penon (France)',1,1,0),(37777,24756,137952,'Seix','France','FR','Seix (France)',1,1,0),(37778,0,137953,'Seixal','Portugal','PT','Seixal (Portugal)',1,1,0),(37779,24771,137954,'Selestat','France','FR','Selestat (France)',1,1,0),(37780,0,137955,'Seline','Croatia','HR','Seline (Croatia)',1,1,0),(37781,24777,137956,'Selinunte','Italy','IT','Selinunte (Italy)',1,1,0),(37782,0,137957,'Sellerich','Germany','DE','Sellerich (Germany)',1,1,0),(37783,0,137958,'Sellingen','Netherlands','NL','Sellingen (Netherlands)',1,1,0),(37784,0,137959,'Selters','Germany','DE','Selters (Germany)',1,1,0),(37785,0,137960,'Selva','Italy','IT','Selva (Italy)',1,1,0),(37786,0,137961,'Sematan','Malaysia','MY','Sematan (Malaysia)',1,1,0),(37787,0,137962,'Sementina','Switzerland','CH','Sementina (Switzerland)',1,1,0),(37788,0,137963,'Semily','Czech Republic','CZ','Semily (Czech Republic)',1,1,0),(37789,0,137964,'Seminole','United States of America','US','Seminole (United States of America)',1,1,0),(37790,0,137965,'Semriach','Austria','AT','Semriach (Austria)',1,1,0),(37791,0,137966,'Sena de Luna','Spain','ES','Sena de Luna (Spain)',1,1,0),(37792,0,137967,'Senden','Germany','DE','Senden (Germany)',1,1,0),(37793,0,137968,'Sennece-les-Macon','France','FR','Sennece-les-Macon (France)',1,1,0),(37794,0,137969,'Sens','France','FR','Sens (France)',1,1,0),(37795,24843,137970,'Sequim','United States of America','US','Sequim (United States of America)',1,1,0),(37796,24845,137971,'Serang','Indonesia','ID','Serang (Indonesia)',1,1,0),(37797,0,137972,'Seri Kembangan','Malaysia','MY','Seri Kembangan (Malaysia)',1,1,0),(37798,0,137973,'Serignan','France','FR','Serignan (France)',1,1,0),(37799,0,137974,'Sermoise-sur-Loire','France','FR','Sermoise-sur-Loire (France)',1,1,0),(37800,0,137975,'Serra','Brazil','BR','Serra (Brazil)',1,1,0),(37801,0,137976,'Sesmarias','Portugal','PT','Sesmarias (Portugal)',1,1,0),(37802,24886,137977,'Sessa','Switzerland','CH','Sessa (Switzerland)',1,1,0),(37803,24888,137978,'Sestao','Spain','ES','Sestao (Spain)',1,1,0),(37804,0,137979,'Sesto al Reghena','Italy','IT','Sesto al Reghena (Italy)',1,1,0),(37805,0,137980,'Sestola','Italy','IT','Sestola (Italy)',1,1,0),(37806,24890,137981,'Sestri Levante','Italy','IT','Sestri Levante (Italy)',1,1,0),(37807,24895,137982,'Setcases','Spain','ES','Setcases (Spain)',1,1,0),(37808,0,137983,'Sete Lagoa','Brazil','BR','Sete Lagoa (Brazil)',1,1,0),(37809,24897,137984,'Setenil de las Bodegas','Spain','ES','Setenil de las Bodegas (Spain)',1,1,0),(37810,24904,137985,'Setubal','Portugal','PT','Setubal (Portugal)',1,1,0),(37811,24907,137986,'Sevastopol','Ukraine','UA','Sevastopol (Ukraine)',1,1,0),(37812,0,137987,'Seven Miles','Cayman Islands','KY','Seven Miles (Cayman Islands)',1,1,0),(37813,0,137988,'Sevres','France','FR','Sevres (France)',1,1,0),(37814,0,137989,'Silang','Philippines','PH','Silang (Philippines)',1,1,0),(37815,25218,137990,'Silao','Mexico','MX','Silao (Mexico)',1,1,0),(37816,25220,137991,'Sile','Turkey','TR','Sile (Turkey)',1,1,0),(37817,25223,137992,'Silherovice','Czech Republic','CZ','Silherovice (Czech Republic)',1,1,0),(37818,25224,137993,'Silhouette Island','Seychelles','SC','Silhouette Island (Seychelles)',1,1,0),(37819,25228,137994,'Silistra','Bulgaria','BG','Silistra (Bulgaria)',1,1,0),(37820,0,137995,'Silly-en-Gouffern','France','FR','Silly-en-Gouffern (France)',1,1,0),(37821,0,137996,'Silute','Lithuania','LT','Silute (Lithuania)',1,1,0),(37822,0,137997,'Silver Bay','United States of America','US','Silver Bay (United States of America)',1,1,0),(37823,0,137998,'Silverton','United States of America','US','Silverton (United States of America)',1,1,0),(37824,0,137999,'Simignano-Sovicille','Italy','IT','Simignano-Sovicille (Italy)',1,1,0),(37825,0,138000,'Simlangsdalen','Sweden','SE','Simlangsdalen (Sweden)',1,1,0),(37826,0,138001,'Simmersfeld','Germany','DE','Simmersfeld (Germany)',1,1,0),(37827,25263,138002,'Simontornya','Hungary','HU','Simontornya (Hungary)',1,1,0),(37828,25269,138003,'Sinaia','Romania','RO','Sinaia (Romania)',1,1,0),(37829,25270,138004,'Sinalunga','Italy','IT','Sinalunga (Italy)',1,1,0),(37830,0,138005,'Sindringen','Germany','DE','Sindringen (Germany)',1,1,0),(37831,25280,138006,'Singer Island','United States of America','US','Singer Island (United States of America)',1,1,0),(37832,0,138007,'Sinio','Italy','IT','Sinio (Italy)',1,1,0),(37833,25285,138008,'Sinop','Turkey','TR','Sinop (Turkey)',1,1,0),(37834,25296,138009,'Sint-Laureins','Belgium','BE','Sint-Laureins (Belgium)',1,1,0),(37835,0,138011,'Sisan','Croatia','HR','Sisan (Croatia)',1,1,0),(37836,0,138012,'Sistiana','Italy','IT','Sistiana (Italy)',1,1,0),(37837,25344,138013,'Sittensen','Germany','DE','Sittensen (Germany)',1,1,0),(37838,0,138014,'Siyang','China','CN','Siyang (China)',1,1,0),(37839,0,138015,'Skagastrond','Iceland','IS','Skagastrond (Iceland)',1,1,0),(37840,0,138016,'Skalni Mlyn','Czech Republic','CZ','Skalni Mlyn (Czech Republic)',1,1,0),(37841,25366,138017,'Skanor','Sweden','SE','Skanor (Sweden)',1,1,0),(37842,25391,138018,'Skibbereen','Ireland','IE','Skibbereen (Ireland)',1,1,0),(37843,0,138019,'Skitaca','Croatia','HR','Skitaca (Croatia)',1,1,0),(37844,0,138020,'Skliri','Greece','GR','Skliri (Greece)',1,1,0),(37845,25402,138021,'Skodje','Norway','NO','Skodje (Norway)',1,1,0),(37846,25414,138022,'Skoura','Morocco','MA','Skoura (Morocco)',1,1,0),(37847,0,138023,'Slavonice','Czech Republic','CZ','Slavonice (Czech Republic)',1,1,0),(37848,0,138024,'Sleepy Cove Island','Canada','CA','Sleepy Cove Island (Canada)',1,1,0),(37849,0,138025,'Sleza','Poland','PL','Sleza (Poland)',1,1,0),(37850,0,138026,'Slivari','Croatia','HR','Slivari (Croatia)',1,1,0),(37851,0,138027,'Slovenj Gradec','Slovenia','SI','Slovenj Gradec (Slovenia)',1,1,0),(37852,25461,138028,'Sluis','Netherlands','NL','Sluis (Netherlands)',1,1,0),(37853,25463,138029,'Smackover','United States of America','US','Smackover (United States of America)',1,1,0),(37854,25476,138030,'Smithtown','United States of America','US','Smithtown (United States of America)',1,1,0),(37855,0,138031,'Smolensk','Russia','RU','Smolensk (Russia)',1,1,0),(37856,0,138032,'Smrzovka','Czech Republic','CZ','Smrzovka (Czech Republic)',1,1,0),(37857,0,138033,'Snaefellsbaer','Iceland','IS','Snaefellsbaer (Iceland)',1,1,0),(37858,0,138034,'Snegiri','Russia','RU','Snegiri (Russia)',1,1,0),(37859,25510,138035,'Snyder','United States of America','US','Snyder (United States of America)',1,1,0),(37860,0,138036,'Soajo','Portugal','PT','Soajo (Portugal)',1,1,0),(37861,25514,138037,'Soazza','Switzerland','CH','Soazza (Switzerland)',1,1,0),(37862,0,138038,'Sochau','Austria','AT','Sochau (Austria)',1,1,0),(37863,25520,138039,'Sochaux','France','FR','Sochaux (France)',1,1,0),(37864,0,138040,'Soderakra','Sweden','SE','Soderakra (Sweden)',1,1,0),(37865,0,138041,'Sogod Bay','Philippines','PH','Sogod Bay (Philippines)',1,1,0),(37866,0,138042,'Sogut','Turkey','TR','Sogut (Turkey)',1,1,0),(37867,0,138043,'Solanas','Italy','IT','Solanas (Italy)',1,1,0),(37868,25567,138044,'Solares','Spain','ES','Solares (Spain)',1,1,0),(37869,25574,138045,'Soldotna','United States of America','US','Soldotna (United States of America)',1,1,0),(37870,0,138046,'Sollieres-Sardieres','France','FR','Sollieres-Sardieres (France)',1,1,0),(37871,25601,138047,'Solomeo','Italy','IT','Solomeo (Italy)',1,1,0),(37872,25628,138048,'Sommieres','France','FR','Sommieres (France)',1,1,0),(37873,0,138050,'Somogygeszti','Hungary','HU','Somogygeszti (Hungary)',1,1,0),(37874,33433,138051,'Son Serra de Marina','Spain','ES','Son Serra de Marina (Spain)',1,1,0),(37875,0,138052,'Songpan','China','CN','Songpan (China)',1,1,0),(37876,0,138053,'Sonneberg','Germany','DE','Sonneberg (Germany)',1,1,0),(37877,25653,138054,'Sonoma','United States of America','US','Sonoma (United States of America)',1,1,0),(37878,25654,138055,'Sonora','United States of America','US','Sonora (United States of America)',1,1,0),(37879,25660,138056,'Sophia Antipolis','France','FR','Sophia Antipolis (France)',1,1,0),(37880,25663,138057,'Sopron','Hungary','HU','Sopron (Hungary)',1,1,0),(37881,0,138058,'Sorlia','Norway','NO','Sorlia (Norway)',1,1,0),(37882,0,138059,'Sorup','Germany','DE','Sorup (Germany)',1,1,0),(37883,25692,138060,'Sospel','France','FR','Sospel (France)',1,1,0),(37884,25696,138061,'Sotira','Cyprus','CY','Sotira (Cyprus)',1,1,0),(37885,0,138062,'Soto de Cangas','Spain','ES','Soto de Cangas (Spain)',1,1,0),(37886,0,138063,'Soto de Luina','Spain','ES','Soto de Luina (Spain)',1,1,0),(37887,0,138064,'Souda','Greece','GR','Souda (Greece)',1,1,0),(37888,0,138065,'Sougia','Greece','GR','Sougia (Greece)',1,1,0),(37889,25715,138066,'Soure','Portugal','PT','Soure (Portugal)',1,1,0),(37890,33438,138067,'Sousse','Tunisia','TN','Sousse (Tunisia)',1,1,0),(37891,33483,138068,'South Jordan','United States of America','US','South Jordan (United States of America)',1,1,0),(37892,0,138069,'South Nilandhe Atoll','Maldives','MV','South Nilandhe Atoll (Maldives)',1,1,0),(37893,33509,138070,'South Plainfield','United States of America','US','South Plainfield (United States of America)',1,1,0),(37894,0,138071,'South Stoke','United Kingdom','UK','South Stoke (United Kingdom)',1,1,0),(37895,25745,138072,'Southampton','United States of America','US','Southampton (United States of America)',1,1,0),(37896,25748,138073,'Southborough','United States of America','US','Southborough (United States of America)',1,1,0),(37897,0,138074,'Southend-on-Sea','United Kingdom','UK','Southend-on-Sea (United Kingdom)',1,1,0),(37898,0,138075,'Southport','United Kingdom','UK','Southport (United Kingdom)',1,1,0),(37899,0,138076,'Southwold','United Kingdom','UK','Southwold (United Kingdom)',1,1,0),(37900,0,138077,'Soyhieres','Switzerland','CH','Soyhieres (Switzerland)',1,1,0),(37901,0,138078,'Spangereid','Norway','NO','Spangereid (Norway)',1,1,0),(37902,0,138079,'Spartanburg','United States of America','US','Spartanburg (United States of America)',1,1,0),(37903,0,138080,'Spercenigo','Italy','IT','Spercenigo (Italy)',1,1,0),(37904,0,138081,'Sperlbrunn','Germany','DE','Sperlbrunn (Germany)',1,1,0),(37905,25836,138082,'Spessart','Germany','DE','Spessart (Germany)',1,1,0),(37906,25838,138083,'Speyer','Germany','DE','Speyer (Germany)',1,1,0),(37907,25847,138084,'Spiez','Switzerland','CH','Spiez (Switzerland)',1,1,0),(37908,25848,138085,'Spigno Monferrato','Italy','IT','Spigno Monferrato (Italy)',1,1,0),(37909,0,138086,'Spisska Nova Ves','Slovakia','SK','Spisska Nova Ves (Slovakia)',1,1,0),(37910,0,138087,'Spoleto','Italy','IT','Spoleto (Italy)',1,1,0),(37911,25869,138088,'Spornitz','Germany','DE','Spornitz (Germany)',1,1,0),(37912,0,138089,'Spreenhagen','Germany','DE','Spreenhagen (Germany)',1,1,0),(37913,25874,138090,'Spreitenbach','Switzerland','CH','Spreitenbach (Switzerland)',1,1,0),(37914,0,138091,'Spring Bay','Canada','CA','Spring Bay (Canada)',1,1,0),(37915,0,138092,'Spring City','United States of America','US','Spring City (United States of America)',1,1,0),(37916,25881,138093,'Springerville','United States of America','US','Springerville (United States of America)',1,1,0),(37917,0,138094,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(37918,0,138095,'Srbinjak','Croatia','HR','Srbinjak (Croatia)',1,1,0),(37919,0,138096,'Sremska Mitrovica','Serbia','RS','Sremska Mitrovica (Serbia)',1,1,0),(37920,0,138097,'Srni','Czech Republic','CZ','Srni (Czech Republic)',1,1,0),(37921,33553,138098,'St Albans','United States of America','US','St Albans (United States of America)',1,1,0),(37922,33569,138099,'St Clair','United States of America','US','St Clair (United States of America)',1,1,0),(37923,0,138100,'St. Anton im Montafon','Austria','AT','St. Anton im Montafon (Austria)',1,1,0),(37924,0,138101,'Sjusjon','Norway','NO','Sjusjon (Norway)',1,1,0),(37925,0,138102,'Skagersbrunn','Sweden','SE','Skagersbrunn (Sweden)',1,1,0),(37926,0,138103,'Skawina','Poland','PL','Skawina (Poland)',1,1,0),(37927,0,138104,'Skegness','United Kingdom','UK','Skegness (United Kingdom)',1,1,0),(37928,25385,138105,'Skhirat','Morocco','MA','Skhirat (Morocco)',1,1,0),(37929,0,138106,'Ski','Norway','NO','Ski (Norway)',1,1,0),(37930,0,138107,'Skinnskatteberg','Sweden','SE','Skinnskatteberg (Sweden)',1,1,0),(37931,25399,138108,'Skjervoy','Norway','NO','Skjervoy (Norway)',1,1,0),(37932,0,138109,'Slanic-Moldova','Romania','RO','Slanic-Moldova (Romania)',1,1,0),(37933,0,138110,'Slany','Czech Republic','CZ','Slany (Czech Republic)',1,1,0),(37934,0,138111,'Slatine','Croatia','HR','Slatine (Croatia)',1,1,0),(37935,25448,138112,'Sliema','Malta','MT','Sliema (Malta)',1,1,0),(37936,0,138113,'Slieveroe','Ireland','IE','Slieveroe (Ireland)',1,1,0),(37937,25460,138114,'Slubice','Poland','PL','Slubice (Poland)',1,1,0),(37938,0,138115,'Smalininkai','Lithuania','LT','Smalininkai (Lithuania)',1,1,0),(37939,0,138116,'Smithfield','United States of America','US','Smithfield (United States of America)',1,1,0),(37940,25474,138117,'Smiths Grove','United States of America','US','Smiths Grove (United States of America)',1,1,0),(37941,0,138118,'Smithville','United States of America','US','Smithville (United States of America)',1,1,0),(37942,0,138119,'Smithville','United States of America','US','Smithville (United States of America)',1,1,0),(37943,0,138120,'Smolenice','Slovakia','SK','Smolenice (Slovakia)',1,1,0),(37944,0,138121,'Snaefellsnes','Iceland','IS','Snaefellsnes (Iceland)',1,1,0),(37945,25487,138122,'Snagov','Romania','RO','Snagov (Romania)',1,1,0),(37946,25524,138123,'Socorro','Brazil','BR','Socorro (Brazil)',1,1,0),(37947,0,138124,'Socovos','Spain','ES','Socovos (Spain)',1,1,0),(37948,25534,138125,'Soderbarke','Sweden','SE','Soderbarke (Sweden)',1,1,0),(37949,0,138126,'Sofala','Australia','AU','Sofala (Australia)',1,1,0),(37950,0,138129,'Solcio','Italy','IT','Solcio (Italy)',1,1,0),(37951,25573,138130,'Soldiers Point','Australia','AU','Soldiers Point (Australia)',1,1,0),(37952,25575,138131,'Solec-Zdroj','Poland','PL','Solec-Zdroj (Poland)',1,1,0),(37953,0,138132,'Solla','Germany','DE','Solla (Germany)',1,1,0),(37954,0,138133,'Sollies-Pont','France','FR','Sollies-Pont (France)',1,1,0),(37955,0,138134,'Solopaca','Italy','IT','Solopaca (Italy)',1,1,0),(37956,25610,138135,'Solvang','United States of America','US','Solvang (United States of America)',1,1,0),(37957,0,138136,'Solvorn','Norway','NO','Solvorn (Norway)',1,1,0),(37958,0,138137,'Somerset Island','Canada','CA','Somerset Island (Canada)',1,1,0),(37959,0,138138,'Sommerda','Germany','DE','Sommerda (Germany)',1,1,0),(37960,25634,138139,'Soncino','Italy','IT','Soncino (Italy)',1,1,0),(37961,25639,138140,'Sondershausen','Germany','DE','Sondershausen (Germany)',1,1,0),(37962,0,138141,'Sontra','Germany','DE','Sontra (Germany)',1,1,0),(37963,0,138142,'Sora','Germany','DE','Sora (Germany)',1,1,0),(37964,25669,138143,'Sorge','Germany','DE','Sorge (Germany)',1,1,0),(37965,25683,138144,'Sort','Spain','ES','Sort (Spain)',1,1,0),(37966,25687,138145,'Sorvagur','Faroe Islands','FO','Sorvagur (Faroe Islands)',1,1,0),(37967,0,138146,'Sosa','Germany','DE','Sosa (Germany)',1,1,0),(37968,25691,138147,'Sosnowiec','Poland','PL','Sosnowiec (Poland)',1,1,0),(37969,25695,138148,'Sosua','Dominican Republic','DO','Sosua (Dominican Republic)',1,1,0),(37970,25702,138149,'Sottomarina','Italy','IT','Sottomarina (Italy)',1,1,0),(37971,25705,138150,'Soufriere','Saint Lucia','LC','Soufriere (Saint Lucia)',1,1,0),(37972,0,138151,'Souillac-Sur-Dordogne','France','FR','Souillac-Sur-Dordogne (France)',1,1,0),(37973,25711,138152,'Soultz-Haut-Rhin','France','FR','Soultz-Haut-Rhin (France)',1,1,0),(37974,25721,138153,'Soustons','France','FR','Soustons (France)',1,1,0),(37975,33444,138154,'South Beloit','United States of America','US','South Beloit (United States of America)',1,1,0),(37976,0,138155,'South Cerney','United Kingdom','UK','South Cerney (United Kingdom)',1,1,0),(37977,33460,138156,'South Durras','Australia','AU','South Durras (Australia)',1,1,0),(37978,33477,138157,'South Hill','United States of America','US','South Hill (United States of America)',1,1,0),(37979,33480,138158,'South Houston','United States of America','US','South Houston (United States of America)',1,1,0),(37980,0,138159,'South Male Atoll','Maldives','MV','South Male Atoll (Maldives)',1,1,0),(37981,0,138160,'South Molton','United Kingdom','UK','South Molton (United Kingdom)',1,1,0),(37982,33528,138161,'South West Rocks','Australia','AU','South West Rocks (Australia)',1,1,0),(37983,25743,138162,'Southampton','Canada','CA','Southampton (Canada)',1,1,0),(37984,25746,138163,'Southaven','United States of America','US','Southaven (United States of America)',1,1,0),(37985,25768,138164,'Southgate','United States of America','US','Southgate (United States of America)',1,1,0),(37986,25775,138165,'Southport','United States of America','US','Southport (United States of America)',1,1,0),(37987,0,138166,'Southwell','United Kingdom','UK','Southwell (United Kingdom)',1,1,0),(37988,0,138167,'Souvala','Greece','GR','Souvala (Greece)',1,1,0),(37989,0,138168,'Soveria Mannelli','Italy','IT','Soveria Mannelli (Italy)',1,1,0),(37990,0,138169,'Spaden','Germany','DE','Spaden (Germany)',1,1,0),(37991,0,138170,'Spala','Poland','PL','Spala (Poland)',1,1,0),(37992,0,138171,'Spalt','Germany','DE','Spalt (Germany)',1,1,0),(37993,25819,138172,'Sparwood','Canada','CA','Sparwood (Canada)',1,1,0),(37994,0,138173,'Spilia','Greece','GR','Spilia (Greece)',1,1,0),(37995,25853,138174,'Spindale','United States of America','US','Spindale (United States of America)',1,1,0),(37996,0,138175,'Spital am Pyhrn','Austria','AT','Spital am Pyhrn (Austria)',1,1,0),(37997,25865,138176,'Spoltore','Italy','IT','Spoltore (Italy)',1,1,0),(37998,0,138177,'Spotsylvania','United States of America','US','Spotsylvania (United States of America)',1,1,0),(37999,33544,138178,'Spring Hill','United States of America','US','Spring Hill (United States of America)',1,1,0),(38000,0,138179,'Spring Hill','United States of America','US','Spring Hill (United States of America)',1,1,0),(38001,25878,138180,'Springboro','United States of America','US','Springboro (United States of America)',1,1,0),(38002,0,138181,'Springe','Germany','DE','Springe (Germany)',1,1,0),(38003,0,138182,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38004,0,138183,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38005,25883,138184,'Springfield','New Zealand','NZ','Springfield (New Zealand)',1,1,0),(38006,0,138185,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38007,25888,138186,'Springville','United States of America','US','Springville (United States of America)',1,1,0),(38008,25889,138187,'Springwood','Australia','AU','Springwood (Australia)',1,1,0),(38009,0,138188,'Sroda Wielkopolska','Poland','PL','Sroda Wielkopolska (Poland)',1,1,0),(38010,0,138189,'St - Victor - de - Malcap','France','FR','St - Victor - de - Malcap (France)',1,1,0),(38011,33556,138190,'St Andrews','Canada','CA','St Andrews (Canada)',1,1,0),(38012,0,138191,'St Georges sur Cher','France','FR','St Georges sur Cher (France)',1,1,0),(38013,0,138192,'St Pauls','United States of America','US','St Pauls (United States of America)',1,1,0),(38014,0,138193,'St. Andra','Austria','AT','St. Andra (Austria)',1,1,0),(38015,0,138194,'St. Andries','Belgium','BE','St. Andries (Belgium)',1,1,0),(38016,0,138195,'St. Barthelemy','St. Barthelemy',NULL,'St. Barthelemy (St. Barthelemy)',1,1,0),(38017,0,138196,'St. Blasien','Germany','DE','St. Blasien (Germany)',1,1,0),(38018,0,138197,'St. Boswells','United Kingdom','UK','St. Boswells (United Kingdom)',1,1,0),(38019,0,138198,'St. Cyprien Plage','France','FR','St. Cyprien Plage (France)',1,1,0),(38020,0,138199,'St. Gallen','Switzerland','CH','St. Gallen (Switzerland)',1,1,0),(38021,0,138200,'St. Georgen','Germany','DE','St. Georgen (Germany)',1,1,0),(38022,0,138201,'St. Goarshausen','Germany','DE','St. Goarshausen (Germany)',1,1,0),(38023,0,138202,'St. Jakob in Defereggen','Austria','AT','St. Jakob in Defereggen (Austria)',1,1,0),(38024,0,138203,'St. Johann','Italy','IT','St. Johann (Italy)',1,1,0),(38025,0,138204,'St. Johann am Tauern','Austria','AT','St. Johann am Tauern (Austria)',1,1,0),(38026,0,138205,'St. Julien en Born','France','FR','St. Julien en Born (France)',1,1,0),(38027,0,138206,'St. Kilian','Germany','DE','St. Kilian (Germany)',1,1,0),(38028,0,138207,'St. Leu','Reunion','RE','St. Leu (Reunion)',1,1,0),(38029,25920,138208,'St. Lorenzen','Italy','IT','St. Lorenzen (Italy)',1,1,0),(38030,0,138209,'Sprockhovel','Germany','DE','Sprockhovel (Germany)',1,1,0),(38031,0,138210,'Spychowo','Poland','PL','Spychowo (Poland)',1,1,0),(38032,0,138211,'Spyker','Germany','DE','Spyker (Germany)',1,1,0),(38033,0,138212,'St - Gervais - en - Valliere','France','FR','St - Gervais - en - Valliere (France)',1,1,0),(38034,0,138213,'St Johnsbury','United States of America','US','St Johnsbury (United States of America)',1,1,0),(38035,0,138214,'St Marys','Australia','AU','St Marys (Australia)',1,1,0),(38036,0,138215,'St Mawes','United Kingdom','UK','St Mawes (United Kingdom)',1,1,0),(38037,0,138216,'St. - Meen','France','FR','St. - Meen (France)',1,1,0),(38038,0,138217,'St. Agnes','United Kingdom','UK','St. Agnes (United Kingdom)',1,1,0),(38039,0,138218,'St. Benoit','Reunion','RE','St. Benoit (Reunion)',1,1,0),(38040,0,138219,'St. Clement','United Kingdom','UK','St. Clement (United Kingdom)',1,1,0),(38041,0,138220,'St. Colomban','France','FR','St. Colomban (France)',1,1,0),(38042,0,138221,'St. Davids','Grenada','GD','St. Davids (Grenada)',1,1,0),(38043,33695,138222,'St. Helena','United States of America','US','St. Helena (United States of America)',1,1,0),(38044,0,138223,'St. Jacob','Italy','IT','St. Jacob (Italy)',1,1,0),(38045,0,138224,'St. James','Barbados','BB','St. James (Barbados)',1,1,0),(38046,0,138225,'St. John','Antigua & Barbuda','AG','St. John (Antigua & Barbuda)',1,1,0),(38047,33709,138226,'St. Joseph','United States of America','US','St. Joseph (United States of America)',1,1,0),(38048,0,138227,'St. Lawrence','Barbados','BB','St. Lawrence (Barbados)',1,1,0),(38049,0,138228,'St. Lawrence Gap','Barbados','BB','St. Lawrence Gap (Barbados)',1,1,0),(38050,33714,138229,'St. Louis','United States of America','US','St. Louis (United States of America)',1,1,0),(38051,0,138230,'St. Luc','Switzerland','CH','St. Luc (Switzerland)',1,1,0),(38052,0,138231,'St. Magdalena','Italy','IT','St. Magdalena (Italy)',1,1,0),(38053,0,138232,'St. Margarethen','Austria','AT','St. Margarethen (Austria)',1,1,0),(38054,0,138233,'St. Marienkirchen bei Scharding','Austria','AT','St. Marienkirchen bei Scharding (Austria)',1,1,0),(38055,0,138234,'St. Martin in Thurn','Italy','IT','St. Martin in Thurn (Italy)',1,1,0),(38056,0,138235,'St. Nikolaus','Italy','IT','St. Nikolaus (Italy)',1,1,0),(38057,0,138236,'St. Pankraz','Italy','IT','St. Pankraz (Italy)',1,1,0),(38058,33736,138237,'St. Peters','Canada','CA','St. Peters (Canada)',1,1,0),(38059,0,138238,'St. Pierre','Reunion','RE','St. Pierre (Reunion)',1,1,0),(38060,0,138239,'St. Quay Portrieux','France','FR','St. Quay Portrieux (France)',1,1,0),(38061,0,138240,'St. Willibrordus','Curaçao','CW','St. Willibrordus (Curaçao)',1,1,0),(38062,0,138241,'Stabelow','Germany','DE','Stabelow (Germany)',1,1,0),(38063,0,138242,'Stadecken-Elsheim','Germany','DE','Stadecken-Elsheim (Germany)',1,1,0),(38064,0,138243,'Stadl an der Mur','Austria','AT','Stadl an der Mur (Austria)',1,1,0),(38065,25954,138244,'Stadtlohn','Germany','DE','Stadtlohn (Germany)',1,1,0),(38066,0,138245,'Staffolo','Italy','IT','Staffolo (Italy)',1,1,0),(38067,25958,138246,'Stafford','United States of America','US','Stafford (United States of America)',1,1,0),(38068,0,138247,'Staldenried','Switzerland','CH','Staldenried (Switzerland)',1,1,0),(38069,25990,138248,'Stanley','Australia','AU','Stanley (Australia)',1,1,0),(38070,0,138249,'Stanley','United States of America','US','Stanley (United States of America)',1,1,0),(38071,0,138250,'Stara Sagora','Bulgaria','BG','Stara Sagora (Bulgaria)',1,1,0),(38072,0,138251,'Stare Czarnowo','Poland','PL','Stare Czarnowo (Poland)',1,1,0),(38073,0,138252,'Steady Brook','Canada','CA','Steady Brook (Canada)',1,1,0),(38074,26051,138253,'Steinakirchen am Forst','Austria','AT','Steinakirchen am Forst (Austria)',1,1,0),(38075,0,138254,'Steinbach','Germany','DE','Steinbach (Germany)',1,1,0),(38076,0,138255,'Steinbach an der Steyr','Austria','AT','Steinbach an der Steyr (Austria)',1,1,0),(38077,0,138256,'Steinberg','Germany','DE','Steinberg (Germany)',1,1,0),(38078,0,138257,'Steingaden','Germany','DE','Steingaden (Germany)',1,1,0),(38079,26061,138258,'Steinheid','Germany','DE','Steinheid (Germany)',1,1,0),(38080,26065,138259,'Steinsland','Norway','NO','Steinsland (Norway)',1,1,0),(38081,0,138260,'Stella-Plage','France','FR','Stella-Plage (France)',1,1,0),(38082,26071,138261,'Stenico','Italy','IT','Stenico (Italy)',1,1,0),(38083,0,138262,'Stepantsminda','Georgia','GE','Stepantsminda (Georgia)',1,1,0),(38084,26078,138263,'Stephenville','Canada','CA','Stephenville (Canada)',1,1,0),(38085,0,138264,'Stevenage','United Kingdom','UK','Stevenage (United Kingdom)',1,1,0),(38086,0,138265,'Stevenson','United States of America','US','Stevenson (United States of America)',1,1,0),(38087,26095,138266,'Stewart Island','New Zealand','NZ','Stewart Island (New Zealand)',1,1,0),(38088,0,138267,'Stewignole','Poland','PL','Stewignole (Poland)',1,1,0),(38089,0,138268,'Steyning','United Kingdom','UK','Steyning (United Kingdom)',1,1,0),(38090,33755,138269,'Stia','Italy','IT','Stia (Italy)',1,1,0),(38091,26119,138270,'Stockbridge','United States of America','US','Stockbridge (United States of America)',1,1,0),(38092,26122,138271,'Stockerau','Austria','AT','Stockerau (Austria)',1,1,0),(38093,0,138272,'Stoke D/Abernon','United Kingdom','UK','Stoke D/Abernon (United Kingdom)',1,1,0),(38094,26166,138273,'Storkow','Germany','DE','Storkow (Germany)',1,1,0),(38095,26172,138274,'Storrs','United States of America','US','Storrs (United States of America)',1,1,0),(38096,0,138275,'Stosswihr','France','FR','Stosswihr (France)',1,1,0),(38097,0,138276,'Stotten am Auerberg','Germany','DE','Stotten am Auerberg (Germany)',1,1,0),(38098,26182,138277,'Stoughton','United States of America','US','Stoughton (United States of America)',1,1,0),(38099,33766,138278,'Stow','United States of America','US','Stow (United States of America)',1,1,0),(38100,0,138279,'Stow-on-the-Wold','United Kingdom','UK','Stow-on-the-Wold (United Kingdom)',1,1,0),(38101,0,138280,'Stozec','Czech Republic','CZ','Stozec (Czech Republic)',1,1,0),(38102,33768,138281,'Stra','Italy','IT','Stra (Italy)',1,1,0),(38103,26194,138282,'Straffan','Ireland','IE','Straffan (Ireland)',1,1,0),(38104,0,138283,'Straz nad Nezarkou','Czech Republic','CZ','Straz nad Nezarkou (Czech Republic)',1,1,0),(38105,26235,138284,'Strehla','Germany','DE','Strehla (Germany)',1,1,0),(38106,26275,138285,'Stuhr','Germany','DE','Stuhr (Germany)',1,1,0),(38107,26280,138286,'Sturgeon Bay','United States of America','US','Sturgeon Bay (United States of America)',1,1,0),(38108,26282,138287,'Sturgis','United States of America','US','Sturgis (United States of America)',1,1,0),(38109,26288,138288,'Stykkisholmur','Iceland','IS','Stykkisholmur (Iceland)',1,1,0),(38110,0,138289,'Styrso','Sweden','SE','Styrso (Sweden)',1,1,0),(38111,0,138290,'Suderende','Germany','DE','Suderende (Germany)',1,1,0),(38112,0,138291,'Suderstapel','Germany','DE','Suderstapel (Germany)',1,1,0),(38113,0,138292,'Suez','Egypt','EG','Suez (Egypt)',1,1,0),(38114,0,138293,'Suhlendorf','Germany','DE','Suhlendorf (Germany)',1,1,0),(38115,26335,138294,'Suita','Japan','JP','Suita (Japan)',1,1,0),(38116,0,138295,'Sukow-Levitzow','Germany','DE','Sukow-Levitzow (Germany)',1,1,0),(38117,0,138296,'Sulbiate','Italy','IT','Sulbiate (Italy)',1,1,0),(38118,0,138297,'Sulden am Ortler','Italy','IT','Sulden am Ortler (Italy)',1,1,0),(38119,0,138298,'Sulzberg','Austria','AT','Sulzberg (Austria)',1,1,0),(38120,0,138299,'Sulzfeld','Germany','DE','Sulzfeld (Germany)',1,1,0),(38121,0,138300,'Sulzfeld am Main','Germany','DE','Sulzfeld am Main (Germany)',1,1,0),(38122,0,138301,'Sulzhayn','Germany','DE','Sulzhayn (Germany)',1,1,0),(38123,26373,138302,'Summerside','Canada','CA','Summerside (Canada)',1,1,0),(38124,0,138303,'Sun City','United States of America','US','Sun City (United States of America)',1,1,0),(38125,0,138304,'Sun Peaks','Canada','CA','Sun Peaks (Canada)',1,1,0),(38126,0,138305,'Sunbury','Australia','AU','Sunbury (Australia)',1,1,0),(38127,26408,138306,'Sunny Beach','Bulgaria','BG','Sunny Beach (Bulgaria)',1,1,0),(38128,26412,138307,'Sunrise','United States of America','US','Sunrise (United States of America)',1,1,0),(38129,0,138308,'Sunset Beach','United States of America','US','Sunset Beach (United States of America)',1,1,0),(38130,26429,138309,'Superior','United States of America','US','Superior (United States of America)',1,1,0),(38131,0,138310,'Surbiton','United Kingdom','UK','Surbiton (United Kingdom)',1,1,0),(38132,0,138311,'Surfside Beach','United States of America','US','Surfside Beach (United States of America)',1,1,0),(38133,0,138312,'Surin Beach','Thailand','TH','Surin Beach (Thailand)',1,1,0),(38134,26468,138313,'Sutherlin','United States of America','US','Sutherlin (United States of America)',1,1,0),(38135,0,138314,'Sutivan','Croatia','HR','Sutivan (Croatia)',1,1,0),(38136,0,138315,'Solnhofen','Germany','DE','Solnhofen (Germany)',1,1,0),(38137,25605,138316,'Solosancho','Spain','ES','Solosancho (Spain)',1,1,0),(38138,0,138317,'Sombor','Serbia','RS','Sombor (Serbia)',1,1,0),(38139,25623,138318,'Somerville','United States of America','US','Somerville (United States of America)',1,1,0),(38140,0,138319,'Son Parc','Spain','ES','Son Parc (Spain)',1,1,0),(38141,0,138320,'Sondalo','Italy','IT','Sondalo (Italy)',1,1,0),(38142,25657,138321,'Sooke','Canada','CA','Sooke (Canada)',1,1,0),(38143,25664,138322,'Soragna','Italy','IT','Soragna (Italy)',1,1,0),(38144,0,138323,'Sorenberg','Switzerland','CH','Sorenberg (Switzerland)',1,1,0),(38145,0,138324,'Sorgenloch','Germany','DE','Sorgenloch (Germany)',1,1,0),(38146,25673,138325,'Soriso','Italy','IT','Soriso (Italy)',1,1,0),(38147,25680,138326,'Sorong','Indonesia','ID','Sorong (Indonesia)',1,1,0),(38148,0,138327,'Sorsele','Sweden','SE','Sorsele (Sweden)',1,1,0),(38149,0,138328,'Sortland - Vesteralen','Norway','NO','Sortland - Vesteralen (Norway)',1,1,0),(38150,25698,138329,'Soto del Barco','Spain','ES','Soto del Barco (Spain)',1,1,0),(38151,0,138330,'Sottrum','Germany','DE','Sottrum (Germany)',1,1,0),(38152,0,138331,'Souffelweyersheim','France','FR','Souffelweyersheim (France)',1,1,0),(38153,0,138332,'Soultz-les-Bains','France','FR','Soultz-les-Bains (France)',1,1,0),(38154,25712,138333,'Soultzmatt','France','FR','Soultzmatt (France)',1,1,0),(38155,33440,138334,'South Amboy','United States of America','US','South Amboy (United States of America)',1,1,0),(38156,33448,138335,'South Boston','United States of America','US','South Boston (United States of America)',1,1,0),(38157,33479,138336,'South Holland','United States of America','US','South Holland (United States of America)',1,1,0),(38158,33484,138337,'South Kingstown','United States of America','US','South Kingstown (United States of America)',1,1,0),(38159,0,138338,'South Luangwa National Park','Zambia','ZM','South Luangwa National Park (Zambia)',1,1,0),(38160,0,138339,'South Saint Paul','United States of America','US','South Saint Paul (United States of America)',1,1,0),(38161,33534,138340,'South Yarmouth','United States of America','US','South Yarmouth (United States of America)',1,1,0),(38162,0,138341,'Southampton','United Kingdom','UK','Southampton (United Kingdom)',1,1,0),(38163,25751,138342,'Southbury','United States of America','US','Southbury (United States of America)',1,1,0),(38164,25767,138343,'Southfield','United States of America','US','Southfield (United States of America)',1,1,0),(38165,0,138344,'Southhampton Beach','Bermuda','BM','Southhampton Beach (Bermuda)',1,1,0),(38166,25771,138345,'Southlake','United States of America','US','Southlake (United States of America)',1,1,0),(38167,0,138346,'Southsea','United Kingdom','UK','Southsea (United Kingdom)',1,1,0),(38168,25787,138347,'Sovata','Romania','RO','Sovata (Romania)',1,1,0),(38169,25788,138348,'Soverato','Italy','IT','Soverato (Italy)',1,1,0),(38170,0,138349,'Sowerby','United Kingdom','UK','Sowerby (United Kingdom)',1,1,0),(38171,25795,138350,'Soyons','France','FR','Soyons (France)',1,1,0),(38172,25796,138351,'Sozopol','Bulgaria','BG','Sozopol (Bulgaria)',1,1,0),(38173,25812,138352,'Sparks','United States of America','US','Sparks (United States of America)',1,1,0),(38174,0,138353,'Sparta','United States of America','US','Sparta (United States of America)',1,1,0),(38175,0,138354,'Spartilas','Greece','GR','Spartilas (Greece)',1,1,0),(38176,25834,138355,'Sperlonga','Italy','IT','Sperlonga (Italy)',1,1,0),(38177,25840,138356,'Speyside','Trinidad and Tobago','TT','Speyside (Trinidad and Tobago)',1,1,0),(38178,0,138357,'Spicak','Czech Republic','CZ','Spicak (Czech Republic)',1,1,0),(38179,25846,138358,'Spier','Netherlands','NL','Spier (Netherlands)',1,1,0),(38180,0,138359,'Spinetta Marengo','Italy','IT','Spinetta Marengo (Italy)',1,1,0),(38181,0,138360,'Splugen','Switzerland','CH','Splugen (Switzerland)',1,1,0),(38182,25864,138361,'Spokane','United States of America','US','Spokane (United States of America)',1,1,0),(38183,25866,138362,'Spongano','Italy','IT','Spongano (Italy)',1,1,0),(38184,25875,138363,'Spremberg','Germany','DE','Spremberg (Germany)',1,1,0),(38185,25879,138364,'Springdale','United States of America','US','Springdale (United States of America)',1,1,0),(38186,25880,138365,'Springdale','Canada','CA','Springdale (Canada)',1,1,0),(38187,0,138366,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38188,0,138367,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38189,0,138368,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38190,0,138369,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(38191,0,138371,'St Martin','Germany','DE','St Martin (Germany)',1,1,0),(38192,0,138372,'St. Andra am Zicksee','Austria','AT','St. Andra am Zicksee (Austria)',1,1,0),(38193,0,138373,'St. Ann\'s','United Kingdom','UK','St. Ann\'s (United Kingdom)',1,1,0),(38194,0,138374,'St. Beauzeil','France','FR','St. Beauzeil (France)',1,1,0),(38195,0,138375,'St. Cast le Guildo','France','FR','St. Cast le Guildo (France)',1,1,0),(38196,33683,138376,'St. Catharines','Canada','CA','St. Catharines (Canada)',1,1,0),(38197,0,138377,'St. Catherine\'s','United Kingdom','UK','St. Catherine\'s (United Kingdom)',1,1,0),(38198,33684,138378,'St. Charles','United States of America','US','St. Charles (United States of America)',1,1,0),(38199,0,138379,'St. Cybranet','France','FR','St. Cybranet (France)',1,1,0),(38200,0,138380,'St. Davids','United Kingdom','UK','St. Davids (United Kingdom)',1,1,0),(38201,0,138381,'St. Egyden','Austria','AT','St. Egyden (Austria)',1,1,0),(38202,0,138382,'St. Evarzec','France','FR','St. Evarzec (France)',1,1,0),(38203,0,138383,'St. Girons','France','FR','St. Girons (France)',1,1,0),(38204,0,138384,'St. Helier','United Kingdom','UK','St. Helier (United Kingdom)',1,1,0),(38205,0,138385,'St. Hilaire la Foret','France','FR','St. Hilaire la Foret (France)',1,1,0),(38206,0,138386,'St. Ives','United Kingdom','UK','St. Ives (United Kingdom)',1,1,0),(38207,0,138387,'St. Jacut de la Mer','France','FR','St. Jacut de la Mer (France)',1,1,0),(38208,0,138388,'St. Jakob','Austria','AT','St. Jakob (Austria)',1,1,0),(38209,33705,138389,'St. Johns','United States of America','US','St. Johns (United States of America)',1,1,0),(38210,0,138390,'St. Leon sur Vezere','France','FR','St. Leon sur Vezere (France)',1,1,0),(38211,33716,138391,'St. Louis Park','United States of America','US','St. Louis Park (United States of America)',1,1,0),(38212,0,138392,'St. Magdalena (Villno?)','Italy','IT','St. Magdalena (Villno?) (Italy)',1,1,0),(38213,0,138393,'St. Michael (Eppan)','Italy','IT','St. Michael (Eppan) (Italy)',1,1,0),(38214,0,138394,'St. Paul im Lavanttal','Austria','AT','St. Paul im Lavanttal (Austria)',1,1,0),(38215,33733,138395,'St. Pete Beach','United States of America','US','St. Pete Beach (United States of America)',1,1,0),(38216,0,138396,'St. Philips','Antigua & Barbuda','AG','St. Philips (Antigua & Barbuda)',1,1,0),(38217,0,138397,'St. Pierre d\'Oleron','France','FR','St. Pierre d\'Oleron (France)',1,1,0),(38218,0,138398,'St. Thomas','U.S. Virgin Islands',NULL,'St. Thomas (U.S. Virgin Islands)',1,1,0),(38219,0,138399,'St. Vincent','St. Vincent & the Grenadines','VC','St. Vincent (St. Vincent & the Grenadines)',1,1,0),(38220,0,138400,'St. Vincent sur Jard','France','FR','St. Vincent sur Jard (France)',1,1,0),(38221,0,138401,'St.Cyprien','France','FR','St.Cyprien (France)',1,1,0),(38222,0,138402,'Stacciola','Italy','IT','Stacciola (Italy)',1,1,0),(38223,25949,138403,'Stade','Germany','DE','Stade (Germany)',1,1,0),(38224,0,138404,'Stadt Wehlen','Germany','DE','Stadt Wehlen (Germany)',1,1,0),(38225,0,138405,'Staffin','United Kingdom','UK','Staffin (United Kingdom)',1,1,0),(38226,0,138406,'Stahlbrode','Germany','DE','Stahlbrode (Germany)',1,1,0),(38227,25967,138407,'Stalden','Switzerland','CH','Stalden (Switzerland)',1,1,0),(38228,25970,138408,'Stalheim','Norway','NO','Stalheim (Norway)',1,1,0),(38229,25982,138409,'Stanfordville','United States of America','US','Stanfordville (United States of America)',1,1,0),(38230,26000,138410,'Stanton','United States of America','US','Stanton (United States of America)',1,1,0),(38231,0,138411,'Stapelfeld','Germany','DE','Stapelfeld (Germany)',1,1,0),(38232,26006,138412,'Stara Lesna','Slovakia','SK','Stara Lesna (Slovakia)',1,1,0),(38233,0,138413,'Stare Jablonki','Poland','PL','Stare Jablonki (Poland)',1,1,0),(38234,26014,138414,'Starke','United States of America','US','Starke (United States of America)',1,1,0),(38235,33749,138415,'State College','United States of America','US','State College (United States of America)',1,1,0),(38236,0,138416,'Staunton in the Vale','United Kingdom','UK','Staunton in the Vale (United Kingdom)',1,1,0),(38237,26027,138417,'Stavelot','Belgium','BE','Stavelot (Belgium)',1,1,0),(38238,0,138418,'Stavoren','Netherlands','NL','Stavoren (Netherlands)',1,1,0),(38239,26043,138419,'Steenwijk','Netherlands','NL','Steenwijk (Netherlands)',1,1,0),(38240,0,138420,'Simonskall','Germany','DE','Simonskall (Germany)',1,1,0),(38241,0,138421,'Simpelveld','Netherlands','NL','Simpelveld (Netherlands)',1,1,0),(38242,25267,138422,'Simrishamn','Sweden','SE','Simrishamn (Sweden)',1,1,0),(38243,25268,138423,'Simsbury','United States of America','US','Simsbury (United States of America)',1,1,0),(38244,25279,138424,'Singaraja','Indonesia','ID','Singaraja (Indonesia)',1,1,0),(38245,25282,138425,'Singleton','Australia','AU','Singleton (Australia)',1,1,0),(38246,0,138426,'Sinj','Croatia','HR','Sinj (Croatia)',1,1,0),(38247,25305,138427,'Siofok','Hungary','HU','Siofok (Hungary)',1,1,0),(38248,25311,138428,'Sipplingen','Germany','DE','Sipplingen (Germany)',1,1,0),(38249,25314,138429,'Sir Bani Yas Island','United Arab Emirates','AE','Sir Bani Yas Island (United Arab Emirates)',1,1,0),(38250,0,138430,'Siresa','Spain','ES','Siresa (Spain)',1,1,0),(38251,0,138431,'Siror','Italy','IT','Siror (Italy)',1,1,0),(38252,25323,138432,'Sisak','Croatia','HR','Sisak (Croatia)',1,1,0),(38253,0,138433,'Sisco','France','FR','Sisco (France)',1,1,0),(38254,25332,138434,'Sister Bay','United States of America','US','Sister Bay (United States of America)',1,1,0),(38255,0,138435,'Sitia','Greece','GR','Sitia (Greece)',1,1,0),(38256,25342,138436,'Sitou','Taiwan','TW','Sitou (Taiwan)',1,1,0),(38257,25350,138437,'Sivas','Greece','GR','Sivas (Greece)',1,1,0),(38258,0,138438,'Siviez','Switzerland','CH','Siviez (Switzerland)',1,1,0),(38259,25358,138439,'Skafidia','Greece','GR','Skafidia (Greece)',1,1,0),(38260,25359,138440,'Skagen','Denmark','DK','Skagen (Denmark)',1,1,0),(38261,0,138441,'Skala','Greece','GR','Skala (Greece)',1,1,0),(38262,0,138442,'Skala Raxoni','Greece','GR','Skala Raxoni (Greece)',1,1,0),(38263,0,138443,'Skaleta','Greece','GR','Skaleta (Greece)',1,1,0),(38264,25362,138444,'Skalna','Czech Republic','CZ','Skalna (Czech Republic)',1,1,0),(38265,0,138445,'Skeleton Coast Park','Namibia','NA','Skeleton Coast Park (Namibia)',1,1,0),(38266,25384,138446,'Skerries','Ireland','IE','Skerries (Ireland)',1,1,0),(38267,25386,138447,'Skiathos','Greece','GR','Skiathos (Greece)',1,1,0),(38268,0,138448,'Skicini','Croatia','HR','Skicini (Croatia)',1,1,0),(38269,0,138449,'Skipwith','United Kingdom','UK','Skipwith (United Kingdom)',1,1,0),(38270,25404,138450,'Skofja Loka','Slovenia','SI','Skofja Loka (Slovenia)',1,1,0),(38271,25408,138451,'Skokie','United States of America','US','Skokie (United States of America)',1,1,0),(38272,25415,138452,'Skovde','Sweden','SE','Skovde (Sweden)',1,1,0),(38273,0,138453,'Skradin','Croatia','HR','Skradin (Croatia)',1,1,0),(38274,0,138454,'Slagharen','Netherlands','NL','Slagharen (Netherlands)',1,1,0),(38275,0,138455,'Slaley','United Kingdom','UK','Slaley (United Kingdom)',1,1,0),(38276,25435,138456,'Slatina','Romania','RO','Slatina (Romania)',1,1,0),(38277,0,138457,'Sloup','Czech Republic','CZ','Sloup (Czech Republic)',1,1,0),(38278,0,138458,'Smiltene','Latvia','LV','Smiltene (Latvia)',1,1,0),(38279,0,138459,'Smrzov','Czech Republic','CZ','Smrzov (Czech Republic)',1,1,0),(38280,25492,138460,'Sneads Ferry','United States of America','US','Sneads Ferry (United States of America)',1,1,0),(38281,0,138461,'Snogebak','Denmark','DK','Snogebak (Denmark)',1,1,0),(38282,25507,138462,'Snowshoe','United States of America','US','Snowshoe (United States of America)',1,1,0),(38283,25535,138463,'Soderhamn','Sweden','SE','Soderhamn (Sweden)',1,1,0),(38284,25536,138464,'Soderkoping','Sweden','SE','Soderkoping (Sweden)',1,1,0),(38285,25546,138465,'Sofia','Bulgaria','BG','Sofia (Bulgaria)',1,1,0),(38286,25549,138466,'Sogndal','Norway','NO','Sogndal (Norway)',1,1,0),(38287,25551,138467,'Sohar','Oman','OM','Sohar (Oman)',1,1,0),(38288,25559,138468,'Sokcho','South Korea','KR','Sokcho (South Korea)',1,1,0),(38289,25563,138469,'Sola','Norway','NO','Sola (Norway)',1,1,0),(38290,25569,138470,'Solbiate Olona','Italy','IT','Solbiate Olona (Italy)',1,1,0),(38291,25571,138471,'Soldeu','Andorra','AD','Soldeu (Andorra)',1,1,0),(38292,0,138472,'Soldier\'s Bay','Antigua & Barbuda','AG','Soldier\'s Bay (Antigua & Barbuda)',1,1,0),(38293,0,138473,'Soll','Austria','AT','Soll (Austria)',1,1,0),(38294,0,138474,'Solonghello','Italy','IT','Solonghello (Italy)',1,1,0),(38295,0,138475,'Solutre-Pouilly','France','FR','Solutre-Pouilly (France)',1,1,0),(38296,0,138476,'Somain','France','FR','Somain (France)',1,1,0),(38297,25614,138477,'Sombernon','France','FR','Sombernon (France)',1,1,0),(38298,0,138478,'Somerset','United States of America','US','Somerset (United States of America)',1,1,0),(38299,25621,138479,'Somerset West','South Africa','ZA','Somerset West (South Africa)',1,1,0),(38300,0,138480,'Somerville','United States of America','US','Somerville (United States of America)',1,1,0),(38301,0,138481,'Somme-Leuze','Belgium','BE','Somme-Leuze (Belgium)',1,1,0),(38302,33429,138482,'Son Bou','Spain','ES','Son Bou (Spain)',1,1,0),(38303,0,138483,'Sona','Italy','IT','Sona (Italy)',1,1,0),(38304,25648,138485,'Songkhla','Thailand','TH','Songkhla (Thailand)',1,1,0),(38305,0,138486,'Songyuan','China','CN','Songyuan (China)',1,1,0),(38306,0,138487,'Soni','Tanzania','TZ','Soni (Tanzania)',1,1,0),(38307,0,138488,'Sonnen','Germany','DE','Sonnen (Germany)',1,1,0),(38308,0,138489,'Sonneninsel','Bolivia','BO','Sonneninsel (Bolivia)',1,1,0),(38309,0,138490,'Sonora','United States of America','US','Sonora (United States of America)',1,1,0),(38310,0,138491,'Sontheim','Germany','DE','Sontheim (Germany)',1,1,0),(38311,25656,138492,'Sonthofen','Germany','DE','Sonthofen (Germany)',1,1,0),(38312,0,138493,'Sopramonte','Italy','IT','Sopramonte (Italy)',1,1,0),(38313,0,138494,'Sorede','France','FR','Sorede (France)',1,1,0),(38314,0,138495,'Sorpe','Spain','ES','Sorpe (Spain)',1,1,0),(38315,0,138496,'Sorrento','Australia','AU','Sorrento (Australia)',1,1,0),(38316,0,138497,'Soto de la Marina','Spain','ES','Soto de la Marina (Spain)',1,1,0),(38317,0,138498,'Sourbrodt','Belgium','BE','Sourbrodt (Belgium)',1,1,0),(38318,25716,138499,'Soure','Brazil','BR','Soure (Brazil)',1,1,0),(38319,25719,138500,'Sourzac','France','FR','Sourzac (France)',1,1,0),(38320,33520,138501,'South Sterling','United States of America','US','South Sterling (United States of America)',1,1,0),(38321,0,138502,'South Williamson','United States of America','US','South Williamson (United States of America)',1,1,0),(38322,25750,138503,'Southbroom','South Africa','ZA','Southbroom (South Africa)',1,1,0),(38323,25769,138504,'Southington','United States of America','US','Southington (United States of America)',1,1,0),(38324,25786,138505,'Sovana','Italy','IT','Sovana (Italy)',1,1,0),(38325,25789,138506,'Sovere','Italy','IT','Sovere (Italy)',1,1,0),(38326,25793,138507,'Soweto','South Africa','ZA','Soweto (South Africa)',1,1,0),(38327,0,138508,'Spalding','United Kingdom','UK','Spalding (United Kingdom)',1,1,0),(38328,0,138509,'Spangenberg','Germany','DE','Spangenberg (Germany)',1,1,0),(38329,0,138510,'Sparow','Germany','DE','Sparow (Germany)',1,1,0),(38330,0,138511,'Sparta','United States of America','US','Sparta (United States of America)',1,1,0),(38331,25816,138512,'Sparta','Greece','GR','Sparta (Greece)',1,1,0),(38332,25821,138513,'Spay','Germany','DE','Spay (Germany)',1,1,0),(38333,0,138514,'Spean Bridge','United Kingdom','UK','Spean Bridge (United Kingdom)',1,1,0),(38334,25826,138515,'Speicher','Switzerland','CH','Speicher (Switzerland)',1,1,0),(38335,25831,138516,'Spencer','United States of America','US','Spencer (United States of America)',1,1,0),(38336,0,138517,'Spezzano della Sila','Italy','IT','Spezzano della Sila (Italy)',1,1,0),(38337,25844,138518,'Spiegelau','Germany','DE','Spiegelau (Germany)',1,1,0),(38338,25854,138519,'Spindleruv Mlyn','Czech Republic','CZ','Spindleruv Mlyn (Czech Republic)',1,1,0),(38339,0,138520,'Spout Lake','Canada','CA','Spout Lake (Canada)',1,1,0),(38340,0,138521,'Spring Lake','United States of America','US','Spring Lake (United States of America)',1,1,0),(38341,0,138522,'Springdale','United States of America','US','Springdale (United States of America)',1,1,0),(38342,0,138524,'Srebreno Mlini','Croatia','HR','Srebreno Mlini (Croatia)',1,1,0),(38343,0,138525,'Srima','Croatia','HR','Srima (Croatia)',1,1,0),(38344,0,138526,'St Ansgar','United States of America','US','St Ansgar (United States of America)',1,1,0),(38345,0,138527,'St Koloman','Austria','AT','St Koloman (Austria)',1,1,0),(38346,0,138528,'St. Aegyd am Neuwalde','Austria','AT','St. Aegyd am Neuwalde (Austria)',1,1,0),(38347,0,138529,'St. Andreasberg','Germany','DE','St. Andreasberg (Germany)',1,1,0),(38348,0,138530,'St. Andrew\'\'s','Malta','MT','St. Andrew\'\'s (Malta)',1,1,0),(38349,0,138531,'St. Andrews Beach','Australia','AU','St. Andrews Beach (Australia)',1,1,0),(38350,0,138532,'St. Blasen','Austria','AT','St. Blasen (Austria)',1,1,0),(38351,0,138533,'St. Elizabeth','Jamaica','JM','St. Elizabeth (Jamaica)',1,1,0),(38352,0,138534,'St. Etienne - les - Orgues','France','FR','St. Etienne - les - Orgues (France)',1,1,0),(38353,0,138535,'Sutomore','Montenegro','ME','Sutomore (Montenegro)',1,1,0),(38354,26469,138536,'Sutri','Italy','IT','Sutri (Italy)',1,1,0),(38355,26473,138537,'Sutton','United States of America','US','Sutton (United States of America)',1,1,0),(38356,0,138538,'Sutton Coldfield','United Kingdom','UK','Sutton Coldfield (United Kingdom)',1,1,0),(38357,0,138539,'Suure Rootsi','Estonia','EE','Suure Rootsi (Estonia)',1,1,0),(38358,0,138540,'Svaty Petr','Czech Republic','CZ','Svaty Petr (Czech Republic)',1,1,0),(38359,0,138541,'Sveti Lovrec','Croatia','HR','Sveti Lovrec (Croatia)',1,1,0),(38360,26529,138542,'Swieszyno','Poland','PL','Swieszyno (Poland)',1,1,0),(38361,0,138543,'Swindon','United Kingdom','UK','Swindon (United Kingdom)',1,1,0),(38362,0,138544,'Swineshead',NULL,NULL,'Swineshead ()',1,1,0),(38363,26534,138545,'Swinoujscie','Poland','PL','Swinoujscie (Poland)',1,1,0),(38364,0,138546,'Sydals','Denmark','DK','Sydals (Denmark)',1,1,0),(38365,26554,138547,'Sylvester','United States of America','US','Sylvester (United States of America)',1,1,0),(38366,26560,138548,'Syracuse','United States of America','US','Syracuse (United States of America)',1,1,0),(38367,0,138549,'Syssleback','Sweden','SE','Syssleback (Sweden)',1,1,0),(38368,26563,138550,'Syvota','Greece','GR','Syvota (Greece)',1,1,0),(38369,0,138551,'Szczaniec','Poland','PL','Szczaniec (Poland)',1,1,0),(38370,0,138552,'Szekszard','Hungary','HU','Szekszard (Hungary)',1,1,0),(38371,26577,138553,'Szombathely','Hungary','HU','Szombathely (Hungary)',1,1,0),(38372,0,138554,'Taastrup','Denmark','DK','Taastrup (Denmark)',1,1,0),(38373,26594,138555,'Tabriz','Iran','IR','Tabriz (Iran)',1,1,0),(38374,0,138556,'Tacambaro','Mexico','MX','Tacambaro (Mexico)',1,1,0),(38375,0,138557,'Tacarigua Nationalpark','Venezuela','VE','Tacarigua Nationalpark (Venezuela)',1,1,0),(38376,0,138558,'Taching am See','Germany','DE','Taching am See (Germany)',1,1,0),(38377,0,138559,'Tackesdorf','Germany','DE','Tackesdorf (Germany)',1,1,0),(38378,26598,138560,'Tacloban','Philippines','PH','Tacloban (Philippines)',1,1,0),(38379,0,138561,'Tadine Mare','New Caledonia','NC','Tadine Mare (New Caledonia)',1,1,0),(38380,26613,138562,'Taft','United States of America','US','Taft (United States of America)',1,1,0),(38381,0,138563,'Tahara','Japan','JP','Tahara (Japan)',1,1,0),(38382,26623,138564,'Tahiti','French Polynesia','PF','Tahiti (French Polynesia)',1,1,0),(38383,26648,138565,'Taiping','Malaysia','MY','Taiping (Malaysia)',1,1,0),(38384,26654,138566,'Taiyuan','China','CN','Taiyuan (China)',1,1,0),(38385,26656,138567,'Taizhou','China','CN','Taizhou (China)',1,1,0),(38386,26671,138568,'Takeo','Japan','JP','Takeo (Japan)',1,1,0),(38387,26719,138569,'Tamandare','Brazil','BR','Tamandare (Brazil)',1,1,0),(38388,0,138570,'Tamasi','Hungary','HU','Tamasi (Hungary)',1,1,0),(38389,26738,138571,'Tamengos','Portugal','PT','Tamengos (Portugal)',1,1,0),(38390,26743,138572,'Tampa','United States of America','US','Tampa (United States of America)',1,1,0),(38391,0,138573,'Tamworth','United Kingdom','UK','Tamworth (United Kingdom)',1,1,0),(38392,0,138574,'Tana Delta','Kenya','KE','Tana Delta (Kenya)',1,1,0),(38393,0,138575,'Tandayapa','Ecuador','EC','Tandayapa (Ecuador)',1,1,0),(38394,0,138576,'Tanjung Tokong','Malaysia','MY','Tanjung Tokong (Malaysia)',1,1,0),(38395,26789,138577,'Tannersville','United States of America','US','Tannersville (United States of America)',1,1,0),(38396,0,138578,'Tannersville','United States of America','US','Tannersville (United States of America)',1,1,0),(38397,0,138579,'Tannesberg','Germany','DE','Tannesberg (Germany)',1,1,0),(38398,0,138580,'Tappenbeck','Germany','DE','Tappenbeck (Germany)',1,1,0),(38399,26808,138581,'Tarakan','Indonesia','ID','Tarakan (Indonesia)',1,1,0),(38400,0,138582,'Tarbena','Spain','ES','Tarbena (Spain)',1,1,0),(38401,0,138583,'Targu Jiu','Romania','RO','Targu Jiu (Romania)',1,1,0),(38402,26841,138584,'Tarma','Peru','PE','Tarma (Peru)',1,1,0),(38403,26844,138585,'Tarnac','France','FR','Tarnac (France)',1,1,0),(38404,26847,138586,'Tarnow','Poland','PL','Tarnow (Poland)',1,1,0),(38405,0,138587,'Taroom','Australia','AU','Taroom (Australia)',1,1,0),(38406,0,138588,'Tarp','Germany','DE','Tarp (Germany)',1,1,0),(38407,26857,138589,'Tarragona','Spain','ES','Tarragona (Spain)',1,1,0),(38408,0,138590,'Tata','Morocco','MA','Tata (Morocco)',1,1,0),(38409,0,138591,'Tatamagouche','Canada','CA','Tatamagouche (Canada)',1,1,0),(38410,0,138592,'Tatranska Matliare','Slovakia','SK','Tatranska Matliare (Slovakia)',1,1,0),(38411,0,138593,'Tatranska Strba','Slovakia','SK','Tatranska Strba (Slovakia)',1,1,0),(38412,0,138594,'Taunton','United Kingdom','UK','Taunton (United Kingdom)',1,1,0),(38413,0,138595,'Taurito','Spain','ES','Taurito (Spain)',1,1,0),(38414,26908,138596,'Tavernelle','Italy','IT','Tavernelle (Italy)',1,1,0),(38415,26910,138597,'Taverny','France','FR','Taverny (France)',1,1,0),(38416,0,138598,'Tavronitis','Greece','GR','Tavronitis (Greece)',1,1,0),(38417,26915,138599,'Tavullia','Italy','IT','Tavullia (Italy)',1,1,0),(38418,26919,138600,'Taxco','Mexico','MX','Taxco (Mexico)',1,1,0),(38419,26923,138601,'Taylorsville','United States of America','US','Taylorsville (United States of America)',1,1,0),(38420,0,138602,'Tazzarine','Morocco','MA','Tazzarine (Morocco)',1,1,0),(38421,26932,138603,'Teaneck','United States of America','US','Teaneck (United States of America)',1,1,0),(38422,0,138604,'Tedburn Saint Mary','United Kingdom','UK','Tedburn Saint Mary (United Kingdom)',1,1,0),(38423,26954,138605,'Tehuacan','Mexico','MX','Tehuacan (Mexico)',1,1,0),(38424,0,138606,'Teignmouth','United Kingdom','UK','Teignmouth (United Kingdom)',1,1,0),(38425,0,138607,'Teisnach','Germany','DE','Teisnach (Germany)',1,1,0),(38426,0,138608,'Teixeira de Freitas','Brazil','BR','Teixeira de Freitas (Brazil)',1,1,0),(38427,0,138609,'Temagami','Canada','CA','Temagami (Canada)',1,1,0),(38428,0,138610,'Temisas','Spain','ES','Temisas (Spain)',1,1,0),(38429,0,138611,'Temple Terrace','United States of America','US','Temple Terrace (United States of America)',1,1,0),(38430,0,138612,'Temploni','Greece','GR','Temploni (Greece)',1,1,0),(38431,0,138613,'Tenagua','Spain','ES','Tenagua (Spain)',1,1,0),(38432,27023,138614,'Teningen','Germany','DE','Teningen (Germany)',1,1,0),(38433,0,138615,'Tenorio','Spain','ES','Tenorio (Spain)',1,1,0),(38434,27033,138616,'Tepic','Mexico','MX','Tepic (Mexico)',1,1,0),(38435,27037,138617,'Tepoztlan','Mexico','MX','Tepoztlan (Mexico)',1,1,0),(38436,27064,138618,'Terontola','Italy','IT','Terontola (Italy)',1,1,0),(38437,27074,138619,'Terrell','United States of America','US','Terrell (United States of America)',1,1,0),(38438,0,138620,'Terzolas','Italy','IT','Terzolas (Italy)',1,1,0),(38439,0,138621,'Teslic','Bosnia and Herzegowina','BA','Teslic (Bosnia and Herzegowina)',1,1,0),(38440,0,138622,'Tettenhausen','Germany','DE','Tettenhausen (Germany)',1,1,0),(38441,27103,138623,'Teulada','Spain','ES','Teulada (Spain)',1,1,0),(38442,0,138624,'Teutonia','Brazil','BR','Teutonia (Brazil)',1,1,0),(38443,27129,138625,'Thallichtenberg','Germany','DE','Thallichtenberg (Germany)',1,1,0),(38444,27131,138626,'Thalwil','Switzerland','CH','Thalwil (Switzerland)',1,1,0),(38445,0,138627,'Thame','United Kingdom','UK','Thame (United Kingdom)',1,1,0),(38446,0,138629,'Thannhausen (Schwaben)','Germany','DE','Thannhausen (Schwaben) (Germany)',1,1,0),(38447,0,138630,'Theix','France','FR','Theix (France)',1,1,0),(38448,0,138631,'Thenac','France','FR','Thenac (France)',1,1,0),(38449,0,138632,'Thermi','Greece','GR','Thermi (Greece)',1,1,0),(38450,0,138633,'Therondels','France','FR','Therondels (France)',1,1,0),(38451,0,138634,'Thetford','United Kingdom','UK','Thetford (United Kingdom)',1,1,0),(38452,0,138635,'Thierhaupten','Germany','DE','Thierhaupten (Germany)',1,1,0),(38453,0,138636,'Thiezac','France','FR','Thiezac (France)',1,1,0),(38454,0,138637,'Thionne','France','FR','Thionne (France)',1,1,0),(38455,27178,138638,'Thionville','France','FR','Thionville (France)',1,1,0),(38456,27183,138639,'Thohoyandou','South Africa','ZA','Thohoyandou (South Africa)',1,1,0),(38457,0,138640,'Thomsdorf','Germany','DE','Thomsdorf (Germany)',1,1,0),(38458,0,138641,'Thorn','Poland','PL','Thorn (Poland)',1,1,0),(38459,27210,138642,'Thornhill','Canada','CA','Thornhill (Canada)',1,1,0),(38460,0,138643,'Thornich','Germany','DE','Thornich (Germany)',1,1,0),(38461,27217,138644,'Thorofare','United States of America','US','Thorofare (United States of America)',1,1,0),(38462,0,138645,'Thuir','France','FR','Thuir (France)',1,1,0),(38463,0,138646,'Thurn','Austria','AT','Thurn (Austria)',1,1,0),(38464,0,138647,'Thyolo','Malawi','MW','Thyolo (Malawi)',1,1,0),(38465,24934,138648,'Seydisfjordur','Iceland','IS','Seydisfjordur (Iceland)',1,1,0),(38466,24943,138649,'Sezimovo Usti','Czech Republic','CZ','Sezimovo Usti (Czech Republic)',1,1,0),(38467,24948,138650,'Shafter','United States of America','US','Shafter (United States of America)',1,1,0),(38468,24952,138651,'Shah Alam','Malaysia','MY','Shah Alam (Malaysia)',1,1,0),(38469,0,138652,'Shamokin Dam','United States of America','US','Shamokin Dam (United States of America)',1,1,0),(38470,0,138653,'Shamwari Game','South Africa','ZA','Shamwari Game (South Africa)',1,1,0),(38471,24975,138654,'Shangyu','China','CN','Shangyu (China)',1,1,0),(38472,0,138655,'Shanklin','United Kingdom','UK','Shanklin (United Kingdom)',1,1,0),(38473,0,138656,'Shanwei','China','CN','Shanwei (China)',1,1,0),(38474,24987,138657,'Shaoshan','China','CN','Shaoshan (China)',1,1,0),(38475,0,138658,'Sharnbrook','United Kingdom','UK','Sharnbrook (United Kingdom)',1,1,0),(38476,0,138659,'Shatura','Russia','RU','Shatura (Russia)',1,1,0),(38477,25006,138660,'Shaunavon','Canada','CA','Shaunavon (Canada)',1,1,0),(38478,0,138661,'Shedfield','United Kingdom','UK','Shedfield (United Kingdom)',1,1,0),(38479,25021,138662,'Shefford','Canada','CA','Shefford (Canada)',1,1,0),(38480,0,138663,'Shelburne','Canada','CA','Shelburne (Canada)',1,1,0),(38481,0,138664,'Shelbyville','United States of America','US','Shelbyville (United States of America)',1,1,0),(38482,0,138665,'Shell','United States of America','US','Shell (United States of America)',1,1,0),(38483,0,138666,'Shell Lake','United States of America','US','Shell Lake (United States of America)',1,1,0),(38484,0,138667,'Shemakha','Azerbaijan','AZ','Shemakha (Azerbaijan)',1,1,0),(38485,25040,138668,'Shepparton','Australia','AU','Shepparton (Australia)',1,1,0),(38486,25050,138669,'Sherman','United States of America','US','Sherman (United States of America)',1,1,0),(38487,33412,138671,'Shima','Japan','JP','Shima (Japan)',1,1,0),(38488,0,138672,'Shimanto','Japan','JP','Shimanto (Japan)',1,1,0),(38489,25080,138674,'Shimoda','Japan','JP','Shimoda (Japan)',1,1,0),(38490,0,138675,'Shipston-on-Stour','United Kingdom','UK','Shipston-on-Stour (United Kingdom)',1,1,0),(38491,25099,138676,'Shiraz','Iran','IR','Shiraz (Iran)',1,1,0),(38492,25141,138677,'Shunde','China','CN','Shunde (China)',1,1,0),(38493,25156,138678,'Sibenik','Croatia','HR','Sibenik (Croatia)',1,1,0),(38494,0,138679,'Sibiel','Romania','RO','Sibiel (Romania)',1,1,0),(38495,0,138680,'Sibiril','France','FR','Sibiril (France)',1,1,0),(38496,0,138681,'Sibratsgfall','Austria','AT','Sibratsgfall (Austria)',1,1,0),(38497,0,138682,'Side','Turkey','TR','Side (Turkey)',1,1,0),(38498,25167,138683,'Sidi Bou Said','Tunisia','TN','Sidi Bou Said (Tunisia)',1,1,0),(38499,0,138684,'Siebeldingen','Germany','DE','Siebeldingen (Germany)',1,1,0),(38500,0,138685,'Siedlinghausen','Germany','DE','Siedlinghausen (Germany)',1,1,0),(38501,25179,138686,'Siegsdorf','Germany','DE','Siegsdorf (Germany)',1,1,0),(38502,0,138687,'Siena','Italy','IT','Siena (Italy)',1,1,0),(38503,0,138688,'Sierakow','Poland','PL','Sierakow (Poland)',1,1,0),(38504,25193,138689,'Siewierz','Poland','PL','Siewierz (Poland)',1,1,0),(38505,25194,138690,'Siezenheim','Austria','AT','Siezenheim (Austria)',1,1,0),(38506,0,138691,'Signy-le-Petit','France','FR','Signy-le-Petit (France)',1,1,0),(38507,0,138692,'Silberstedt','Germany','DE','Silberstedt (Germany)',1,1,0),(38508,0,138693,'Silenen','Switzerland','CH','Silenen (Switzerland)',1,1,0),(38509,0,138694,'Silver Spring','United States of America','US','Silver Spring (United States of America)',1,1,0),(38510,0,138695,'Silverdale','New Zealand','NZ','Silverdale (New Zealand)',1,1,0),(38511,0,138696,'Silz','Germany','DE','Silz (Germany)',1,1,0),(38512,0,138697,'Simondium','South Africa','ZA','Simondium (South Africa)',1,1,0),(38513,0,138698,'Simonswald','Germany','DE','Simonswald (Germany)',1,1,0),(38514,0,138699,'Simpson Bay','Sint Maarten (Dutch part)','SX','Simpson Bay (Sint Maarten (Dutch part))',1,1,0),(38515,0,138700,'Simuni','Croatia','HR','Simuni (Croatia)',1,1,0),(38516,0,138701,'Sinai','Egypt','EG','Sinai (Egypt)',1,1,0),(38517,25277,138702,'Sineu','Spain','ES','Sineu (Spain)',1,1,0),(38518,25278,138703,'Singapore','Singapore','SG','Singapore (Singapore)',1,1,0),(38519,0,138704,'Singen','Germany','DE','Singen (Germany)',1,1,0),(38520,25283,138705,'Siniscola','Italy','IT','Siniscola (Italy)',1,1,0),(38521,25286,138707,'Sins','Switzerland','CH','Sins (Switzerland)',1,1,0),(38522,0,138708,'Sint Nicolaasga','Netherlands','NL','Sint Nicolaasga (Netherlands)',1,1,0),(38523,0,138709,'Sint-Maartensdijk','Netherlands','NL','Sint-Maartensdijk (Netherlands)',1,1,0),(38524,25297,138710,'Sint-Martens-Latem','Belgium','BE','Sint-Martens-Latem (Belgium)',1,1,0),(38525,25299,138711,'Sinton','United States of America','US','Sinton (United States of America)',1,1,0),(38526,25308,138712,'Sioux Lookout','Canada','CA','Sioux Lookout (Canada)',1,1,0),(38527,25313,138713,'Siquirres','Costa Rica','CR','Siquirres (Costa Rica)',1,1,0),(38528,25327,138714,'Sisikon','Switzerland','CH','Sisikon (Switzerland)',1,1,0),(38529,25349,138715,'Sivas','Turkey','TR','Sivas (Turkey)',1,1,0),(38530,0,138716,'Skala Prinos','Greece','GR','Skala Prinos (Greece)',1,1,0),(38531,25367,138717,'Skara','Sweden','SE','Skara (Sweden)',1,1,0),(38532,0,138718,'Skarsterlan','Netherlands','NL','Skarsterlan (Netherlands)',1,1,0),(38533,25376,138719,'Skei','Norway','NO','Skei (Norway)',1,1,0),(38534,0,138720,'Skibby','Denmark','DK','Skibby (Denmark)',1,1,0),(38535,25392,138721,'Skien','Norway','NO','Skien (Norway)',1,1,0),(38536,0,138722,'Skipton','United Kingdom','UK','Skipton (United Kingdom)',1,1,0),(38537,25398,138723,'Skive','Denmark','DK','Skive (Denmark)',1,1,0),(38538,25401,138724,'Skjolden','Norway','NO','Skjolden (Norway)',1,1,0),(38539,25410,138725,'Skopje','Macedonia','MK','Skopje (Macedonia)',1,1,0),(38540,25412,138726,'Skotina','Greece','GR','Skotina (Greece)',1,1,0),(38541,0,138727,'Skoutari','Greece','GR','Skoutari (Greece)',1,1,0),(38542,0,138728,'Skroponeri','Greece','GR','Skroponeri (Greece)',1,1,0),(38543,0,138729,'Skudai','Malaysia','MY','Skudai (Malaysia)',1,1,0),(38544,25431,138730,'Slane','Ireland','IE','Slane (Ireland)',1,1,0),(38545,0,138731,'Sleat-Isle of Skye','United Kingdom','UK','Sleat-Isle of Skye (United Kingdom)',1,1,0),(38546,0,138732,'Slettestrand','Denmark','DK','Slettestrand (Denmark)',1,1,0),(38547,25451,138733,'Slippery Rock','United States of America','US','Slippery Rock (United States of America)',1,1,0),(38548,0,138734,'Slowjansk','Ukraine','UA','Slowjansk (Ukraine)',1,1,0),(38549,0,138735,'Sluiskil','Netherlands','NL','Sluiskil (Netherlands)',1,1,0),(38550,0,138736,'Sluknov','Czech Republic','CZ','Sluknov (Czech Republic)',1,1,0),(38551,0,138737,'Smarano','Italy','IT','Smarano (Italy)',1,1,0),(38552,0,138738,'Smir','Morocco','MA','Smir (Morocco)',1,1,0),(38553,0,138739,'Smyrna','United States of America','US','Smyrna (United States of America)',1,1,0),(38554,25494,138740,'Sneem','Ireland','IE','Sneem (Ireland)',1,1,0),(38555,25496,138741,'Snekkersten','Denmark','DK','Snekkersten (Denmark)',1,1,0),(38556,25503,138742,'Snowbird','United States of America','US','Snowbird (United States of America)',1,1,0),(38557,25513,138743,'Soave','Italy','IT','Soave (Italy)',1,1,0),(38558,0,138744,'Sober','Spain','ES','Sober (Spain)',1,1,0),(38559,0,138745,'Sobotka','Czech Republic','CZ','Sobotka (Czech Republic)',1,1,0),(38560,25519,138746,'Sochaczew','Poland','PL','Sochaczew (Poland)',1,1,0),(38561,25537,138747,'Sodertalje','Sweden','SE','Sodertalje (Sweden)',1,1,0),(38562,0,138748,'Soings-en-Sologne','France','FR','Soings-en-Sologne (France)',1,1,0),(38563,25577,138749,'Solenzara','France','FR','Solenzara (France)',1,1,0),(38564,0,138750,'Solihull','United Kingdom','UK','Solihull (United Kingdom)',1,1,0),(38565,25591,138751,'Solleftea','Sweden','SE','Solleftea (Sweden)',1,1,0),(38566,25592,138752,'Sollentuna','Sweden','SE','Sollentuna (Sweden)',1,1,0),(38567,25596,138753,'Sollies-Toucas','France','FR','Sollies-Toucas (France)',1,1,0),(38568,0,138754,'Solnechnogorsk','Russia','RU','Solnechnogorsk (Russia)',1,1,0),(38569,0,138755,'Solofra','Italy','IT','Solofra (Italy)',1,1,0),(38570,0,138756,'Solon Springs','United States of America','US','Solon Springs (United States of America)',1,1,0),(38571,25606,138757,'Solothurn','Switzerland','CH','Solothurn (Switzerland)',1,1,0),(38572,0,138758,'Solymar','Hungary','HU','Solymar (Hungary)',1,1,0),(38573,0,138759,'Somerset','United States of America','US','Somerset (United States of America)',1,1,0),(38574,25620,138760,'Somerset Village','Bermuda','BM','Somerset Village (Bermuda)',1,1,0),(38575,0,138761,'Somerville','United States of America','US','Somerville (United States of America)',1,1,0),(38576,0,138762,'St. Antonien','Switzerland','CH','St. Antonien (Switzerland)',1,1,0),(38577,0,138763,'St. Denis','Reunion','RE','St. Denis (Reunion)',1,1,0),(38578,0,138764,'St. Florence','United Kingdom','UK','St. Florence (United Kingdom)',1,1,0),(38579,0,138765,'St. Georges de Didonne','France','FR','St. Georges de Didonne (France)',1,1,0),(38580,0,138766,'St. Gilgen','Austria','AT','St. Gilgen (Austria)',1,1,0),(38581,0,138767,'St. Gingolph','Switzerland','CH','St. Gingolph (Switzerland)',1,1,0),(38582,0,138768,'St. Jakob In Haus','Austria','AT','St. Jakob In Haus (Austria)',1,1,0),(38583,0,138769,'St. Johann','Germany','DE','St. Johann (Germany)',1,1,0),(38584,25919,138770,'St. Julian\'s','Malta','MT','St. Julian\'s (Malta)',1,1,0),(38585,0,138771,'St. Kilda','Australia','AU','St. Kilda (Australia)',1,1,0),(38586,0,138772,'St. Lorenz (Oberosterreich)','Austria','AT','St. Lorenz (Oberosterreich) (Austria)',1,1,0),(38587,0,138773,'St. Martin','Italy','IT','St. Martin (Italy)',1,1,0),(38588,0,138774,'St. Niklaus','Switzerland','CH','St. Niklaus (Switzerland)',1,1,0),(38589,0,138775,'St. Niklaus-Ried','Switzerland','CH','St. Niklaus-Ried (Switzerland)',1,1,0),(38590,0,138776,'St. Pargoire','France','FR','St. Pargoire (France)',1,1,0),(38591,0,138777,'St. Peter am Kammersberg','Austria','AT','St. Peter am Kammersberg (Austria)',1,1,0),(38592,0,138778,'St. Philip','Barbados','BB','St. Philip (Barbados)',1,1,0),(38593,0,138779,'St. Victor','France','FR','St. Victor (France)',1,1,0),(38594,0,138780,'St. Vigil in Enneberg','Italy','IT','St. Vigil in Enneberg (Italy)',1,1,0),(38595,0,138781,'St. Vincent de Cosse','France','FR','St. Vincent de Cosse (France)',1,1,0),(38596,0,138782,'St. Wendel','Germany','DE','St. Wendel (Germany)',1,1,0),(38597,0,138783,'St.Martins','Canada','CA','St.Martins (Canada)',1,1,0),(38598,0,138784,'Staad SG','Switzerland','CH','Staad SG (Switzerland)',1,1,0),(38599,0,138785,'Stadthagen','Germany','DE','Stadthagen (Germany)',1,1,0),(38600,0,138786,'Staffelstein','Germany','DE','Staffelstein (Germany)',1,1,0),(38601,0,138787,'Stafford','United Kingdom','UK','Stafford (United Kingdom)',1,1,0),(38602,0,138788,'Stakendorferstrand','Germany','DE','Stakendorferstrand (Germany)',1,1,0),(38603,0,138789,'Stambruges','Belgium','BE','Stambruges (Belgium)',1,1,0),(38604,25978,138790,'Stanardsville','United States of America','US','Stanardsville (United States of America)',1,1,0),(38605,0,138791,'Stanford','South Africa','ZA','Stanford (South Africa)',1,1,0),(38606,0,138792,'Stangerode','Germany','DE','Stangerode (Germany)',1,1,0),(38607,0,138793,'Stanhope',NULL,NULL,'Stanhope ()',1,1,0),(38608,0,138794,'Stanici','Croatia','HR','Stanici (Croatia)',1,1,0),(38609,0,138795,'Staoueli','Algeria','DZ','Staoueli (Algeria)',1,1,0),(38610,0,138796,'Stara Fuzina','Slovenia','SI','Stara Fuzina (Slovenia)',1,1,0),(38611,26008,138797,'Starbuck','United States of America','US','Starbuck (United States of America)',1,1,0),(38612,26016,138798,'Starkville','United States of America','US','Starkville (United States of America)',1,1,0),(38613,0,138799,'Sta?furt','Germany','DE','Sta?furt (Germany)',1,1,0),(38614,26021,138800,'Staten Island','United States of America','US','Staten Island (United States of America)',1,1,0),(38615,26025,138801,'Staunton','United States of America','US','Staunton (United States of America)',1,1,0),(38616,0,138802,'Staunton','United States of America','US','Staunton (United States of America)',1,1,0),(38617,26026,138803,'Stavanger','Norway','NO','Stavanger (Norway)',1,1,0),(38618,0,138804,'Stavern','Germany','DE','Stavern (Germany)',1,1,0),(38619,0,138805,'Stavropol','Russia','RU','Stavropol (Russia)',1,1,0),(38620,26031,138806,'Stawell','Australia','AU','Stawell (Australia)',1,1,0),(38621,26036,138807,'Steamboat Springs','United States of America','US','Steamboat Springs (United States of America)',1,1,0),(38622,0,138808,'Ste-Anne-de-Beaupre','Canada','CA','Ste-Anne-de-Beaupre (Canada)',1,1,0),(38623,0,138809,'Stechow-Ferchesar','Germany','DE','Stechow-Ferchesar (Germany)',1,1,0),(38624,0,138810,'Stecklenberg','Germany','DE','Stecklenberg (Germany)',1,1,0),(38625,0,138811,'Stege - Mon','Denmark','DK','Stege - Mon (Denmark)',1,1,0),(38626,0,138812,'Stegen bei Bruneck','Italy','IT','Stegen bei Bruneck (Italy)',1,1,0),(38627,0,138813,'Stegna','Greece','GR','Stegna (Greece)',1,1,0),(38628,26049,138814,'Stein am Rhein','Switzerland','CH','Stein am Rhein (Switzerland)',1,1,0),(38629,0,138815,'Steinbach-Hallenberg','Germany','DE','Steinbach-Hallenberg (Germany)',1,1,0),(38630,0,138816,'Steinberg','Austria','AT','Steinberg (Austria)',1,1,0),(38631,0,138817,'Steindorf','Austria','AT','Steindorf (Austria)',1,1,0),(38632,0,138818,'Steinhagen','Germany','DE','Steinhagen (Germany)',1,1,0),(38633,0,138819,'Steinwenden','Germany','DE','Steinwenden (Germany)',1,1,0),(38634,0,138820,'Stemwede','Germany','DE','Stemwede (Germany)',1,1,0),(38635,0,138821,'Steni Vala','Greece','GR','Steni Vala (Greece)',1,1,0),(38636,26073,138822,'Stenungsund','Sweden','SE','Stenungsund (Sweden)',1,1,0),(38637,26081,138823,'Sterling','United States of America','US','Sterling (United States of America)',1,1,0),(38638,26101,138824,'Stezzano','Italy','IT','Stezzano (Italy)',1,1,0),(38639,0,138825,'Stiege','Germany','DE','Stiege (Germany)',1,1,0),(38640,26118,138826,'Stockach','Germany','DE','Stockach (Germany)',1,1,0),(38641,0,138827,'Stolberg (Rheinland)','Germany','DE','Stolberg (Rheinland) (Germany)',1,1,0),(38642,33765,138828,'Stone Ridge','United States of America','US','Stone Ridge (United States of America)',1,1,0),(38643,26183,138829,'Stoupa','Greece','GR','Stoupa (Greece)',1,1,0),(38644,0,138830,'Straden','Austria','AT','Straden (Austria)',1,1,0),(38645,0,138831,'Strande','Germany','DE','Strande (Germany)',1,1,0),(38646,0,138832,'Strasen','Germany','DE','Strasen (Germany)',1,1,0),(38647,0,138833,'Stra? im Attergau','Austria','AT','Stra? im Attergau (Austria)',1,1,0),(38648,0,138834,'Stra? im Stra?ertale','Austria','AT','Stra? im Stra?ertale (Austria)',1,1,0),(38649,0,138835,'Strasshof','Austria','AT','Strasshof (Austria)',1,1,0),(38650,0,138836,'Stratton Mountain','United States of America','US','Stratton Mountain (United States of America)',1,1,0),(38651,26226,138837,'Straubing','Germany','DE','Straubing (Germany)',1,1,0),(38652,0,138838,'Strbske Pleso','Slovakia','SK','Strbske Pleso (Slovakia)',1,1,0),(38653,26255,138839,'Stroncone','Italy','IT','Stroncone (Italy)',1,1,0),(38654,26259,138840,'Stroud','United States of America','US','Stroud (United States of America)',1,1,0),(38655,26260,138841,'Stroudsburg','United States of America','US','Stroudsburg (United States of America)',1,1,0),(38656,26262,138842,'Struer','Denmark','DK','Struer (Denmark)',1,1,0),(38657,0,138843,'Struga-Kalista','Macedonia','MK','Struga-Kalista (Macedonia)',1,1,0),(38658,0,138844,'Strullendorf','Germany','DE','Strullendorf (Germany)',1,1,0),(38659,0,138845,'Stryi','Ukraine','UA','Stryi (Ukraine)',1,1,0),(38660,0,138846,'Stuart','United States of America','US','Stuart (United States of America)',1,1,0),(38661,0,138847,'Stuart','United States of America','US','Stuart (United States of America)',1,1,0),(38662,0,138848,'Stubicke Toplice','Croatia','HR','Stubicke Toplice (Croatia)',1,1,0),(38663,26276,138849,'Stumm','Austria','AT','Stumm (Austria)',1,1,0),(38664,26284,138850,'Sturtevant','United States of America','US','Sturtevant (United States of America)',1,1,0),(38665,0,138851,'Su Pallosu','Italy','IT','Su Pallosu (Italy)',1,1,0),(38666,0,138852,'Subirats','Spain','ES','Subirats (Spain)',1,1,0),(38667,0,138853,'Sucy-en-Brie','France','FR','Sucy-en-Brie (France)',1,1,0),(38668,0,138854,'Suderschwei','Germany','DE','Suderschwei (Germany)',1,1,0),(38669,0,138855,'Sudisland','Iceland','IS','Sudisland (Iceland)',1,1,0),(38670,0,138856,'Sudkuste','Grenada','GD','Sudkuste (Grenada)',1,1,0),(38671,0,138857,'Sudwalde','Germany','DE','Sudwalde (Germany)',1,1,0),(38672,26323,138858,'Suffolk','United States of America','US','Suffolk (United States of America)',1,1,0),(38673,26332,138859,'Suifenhe','China','CN','Suifenhe (China)',1,1,0),(38674,0,138860,'Suihua','China','CN','Suihua (China)',1,1,0),(38675,26344,138861,'Sukosan','Croatia','HR','Sukosan (Croatia)',1,1,0),(38676,0,138862,'Sulaimani','Iraq','IQ','Sulaimani (Iraq)',1,1,0),(38677,0,138863,'Sulzbach - Rosenberg','Germany','DE','Sulzbach - Rosenberg (Germany)',1,1,0),(38678,0,138864,'Sulzburg','Germany','DE','Sulzburg (Germany)',1,1,0),(38679,0,138865,'Sulzemoos','Germany','DE','Sulzemoos (Germany)',1,1,0),(38680,0,138866,'Sulzetal','Germany','DE','Sulzetal (Germany)',1,1,0),(38681,0,138867,'Sulz-Glatt','Germany','DE','Sulz-Glatt (Germany)',1,1,0),(38682,0,138868,'St. Margen','Germany','DE','St. Margen (Germany)',1,1,0),(38683,0,138869,'St. Margrethen','Switzerland','CH','St. Margrethen (Switzerland)',1,1,0),(38684,0,138870,'St. Martin am Tennengebirge','Austria','AT','St. Martin am Tennengebirge (Austria)',1,1,0),(38685,0,138871,'St. Michaelisdonn','Germany','DE','St. Michaelisdonn (Germany)',1,1,0),(38686,33727,138872,'St. Michaels','United States of America','US','St. Michaels (United States of America)',1,1,0),(38687,0,138873,'St. Oswald','Germany','DE','St. Oswald (Germany)',1,1,0),(38688,0,138874,'St. Peter','Canada','CA','St. Peter (Canada)',1,1,0),(38689,0,138875,'St. Remy - de - Provence','France','FR','St. Remy - de - Provence (France)',1,1,0),(38690,0,138876,'St. Salvator','Austria','AT','St. Salvator (Austria)',1,1,0),(38691,0,138877,'Stadtsteinach','Germany','DE','Stadtsteinach (Germany)',1,1,0),(38692,0,138878,'Staffordshire','United Kingdom','UK','Staffordshire (United Kingdom)',1,1,0),(38693,0,138879,'Stafilos Beach','Greece','GR','Stafilos Beach (Greece)',1,1,0),(38694,0,138880,'Stains','France','FR','Stains (France)',1,1,0),(38695,0,138881,'Stallikon','Switzerland','CH','Stallikon (Switzerland)',1,1,0),(38696,0,138882,'Stanley','United Kingdom','UK','Stanley (United Kingdom)',1,1,0),(38697,0,138883,'Stans','Austria','AT','Stans (Austria)',1,1,0),(38698,0,138884,'Stanstead Abbots','United Kingdom','UK','Stanstead Abbots (United Kingdom)',1,1,0),(38699,0,138885,'Stansted','United Kingdom','UK','Stansted (United Kingdom)',1,1,0),(38700,25999,138886,'Stanthorpe','Australia','AU','Stanthorpe (Australia)',1,1,0),(38701,0,138887,'Stanton','United States of America','US','Stanton (United States of America)',1,1,0),(38702,0,138888,'Stanton','United States of America','US','Stanton (United States of America)',1,1,0),(38703,0,138889,'Stanwick','United Kingdom','UK','Stanwick (United Kingdom)',1,1,0),(38704,0,138890,'Star City','United States of America','US','Star City (United States of America)',1,1,0),(38705,0,138891,'Stara Ves','Czech Republic','CZ','Stara Ves (Czech Republic)',1,1,0),(38706,0,138892,'Starigrad / Stari Grad','Croatia','HR','Starigrad / Stari Grad (Croatia)',1,1,0),(38707,0,138893,'Starigrad-Paklenica','Croatia','HR','Starigrad-Paklenica (Croatia)',1,1,0),(38708,0,138894,'Starogard Gdanski','Poland','PL','Starogard Gdanski (Poland)',1,1,0),(38709,26019,138895,'Stary Smokovec','Slovakia','SK','Stary Smokovec (Slovakia)',1,1,0),(38710,0,138896,'Stawropol','Russia','RU','Stawropol (Russia)',1,1,0),(38711,0,138897,'Steendam','Netherlands','NL','Steendam (Netherlands)',1,1,0),(38712,0,138898,'Steffeln','Germany','DE','Steffeln (Germany)',1,1,0),(38713,0,138899,'Stegalovka','Russia','RU','Stegalovka (Russia)',1,1,0),(38714,0,138900,'Stein','Germany','DE','Stein (Germany)',1,1,0),(38715,0,138901,'Steinbach am Wald','Germany','DE','Steinbach am Wald (Germany)',1,1,0),(38716,0,138902,'Steindorf-Stiegl','Austria','AT','Steindorf-Stiegl (Austria)',1,1,0),(38717,26056,138903,'Steinenbronn','Germany','DE','Steinenbronn (Germany)',1,1,0),(38718,0,138904,'Steinhorst','Germany','DE','Steinhorst (Germany)',1,1,0),(38719,0,138905,'Steinmannwald','Italy','IT','Steinmannwald (Italy)',1,1,0),(38720,26064,138906,'Steinsfeld','Germany','DE','Steinsfeld (Germany)',1,1,0),(38721,0,138907,'Stei?lingen','Germany','DE','Stei?lingen (Germany)',1,1,0),(38722,26067,138908,'Stellarton','Canada','CA','Stellarton (Canada)',1,1,0),(38723,0,138909,'Stendenitz','Germany','DE','Stendenitz (Germany)',1,1,0),(38724,26076,138910,'Stephens City','United States of America','US','Stephens City (United States of America)',1,1,0),(38725,0,138911,'Sterling','United States of America','US','Sterling (United States of America)',1,1,0),(38726,0,138912,'Sterling Heights','United States of America','US','Sterling Heights (United States of America)',1,1,0),(38727,0,138913,'Steyregg','Austria','AT','Steyregg (Austria)',1,1,0),(38728,0,138914,'Sticciano','Italy','IT','Sticciano (Italy)',1,1,0),(38729,0,138915,'Stilfs','Italy','IT','Stilfs (Italy)',1,1,0),(38730,0,138916,'Stinjan','Croatia','HR','Stinjan (Croatia)',1,1,0),(38731,26117,138917,'Stobrec','Croatia','HR','Stobrec (Croatia)',1,1,0),(38732,0,138918,'Stockheim','Germany','DE','Stockheim (Germany)',1,1,0),(38733,0,138919,'Stockton-on-Tees','United Kingdom','UK','Stockton-on-Tees (United Kingdom)',1,1,0),(38734,0,138920,'Stokesley','United Kingdom','UK','Stokesley (United Kingdom)',1,1,0),(38735,26145,138921,'Stokmarknes','Norway','NO','Stokmarknes (Norway)',1,1,0),(38736,26148,138922,'Stolpen','Germany','DE','Stolpen (Germany)',1,1,0),(38737,0,138923,'Stomio','Greece','GR','Stomio (Greece)',1,1,0),(38738,0,138924,'Stone Town','Tanzania','TZ','Stone Town (Tanzania)',1,1,0),(38739,26160,138925,'Stony Plain','Canada','CA','Stony Plain (Canada)',1,1,0),(38740,26161,138926,'Stoos','Switzerland','CH','Stoos (Switzerland)',1,1,0),(38741,0,138927,'Storkau (Elbe)','Germany','DE','Storkau (Elbe) (Germany)',1,1,0),(38742,26180,138928,'Stouby','Denmark','DK','Stouby (Denmark)',1,1,0),(38743,0,138929,'Stourbridge','United Kingdom','UK','Stourbridge (United Kingdom)',1,1,0),(38744,0,138930,'Stourport-on-Severn','United Kingdom','UK','Stourport-on-Severn (United Kingdom)',1,1,0),(38745,0,138931,'Stowmarket','United Kingdom','UK','Stowmarket (United Kingdom)',1,1,0),(38746,0,138932,'Strallegg','Austria','AT','Strallegg (Austria)',1,1,0),(38747,33770,138933,'Strand','South Africa','ZA','Strand (South Africa)',1,1,0),(38748,0,138934,'Strandabyggd','Iceland','IS','Strandabyggd (Iceland)',1,1,0),(38749,0,138935,'Stranraer','United Kingdom','UK','Stranraer (United Kingdom)',1,1,0),(38750,0,138936,'Strasburg','United States of America','US','Strasburg (United States of America)',1,1,0),(38751,0,138937,'Strasburg','United States of America','US','Strasburg (United States of America)',1,1,0),(38752,26207,138938,'Strassen','Luxembourg','LU','Strassen (Luxembourg)',1,1,0),(38753,26210,138939,'Stratford','Canada','CA','Stratford (Canada)',1,1,0),(38754,0,138940,'Strathcarron','United Kingdom','UK','Strathcarron (United Kingdom)',1,1,0),(38755,26227,138941,'Strausberg','Germany','DE','Strausberg (Germany)',1,1,0),(38756,26250,138942,'Stromboli','Italy','IT','Stromboli (Italy)',1,1,0),(38757,0,138943,'Struckum','Germany','DE','Struckum (Germany)',1,1,0),(38758,26264,138944,'Strunjan','Slovenia','SI','Strunjan (Slovenia)',1,1,0),(38759,26266,138945,'Stryn','Norway','NO','Stryn (Norway)',1,1,0),(38760,0,138946,'Strzegowo','Poland','PL','Strzegowo (Poland)',1,1,0),(38761,0,138947,'Stubenberg','Germany','DE','Stubenberg (Germany)',1,1,0),(38762,26271,138948,'Studen','Switzerland','CH','Studen (Switzerland)',1,1,0),(38763,26272,138949,'Studio City','United States of America','US','Studio City (United States of America)',1,1,0),(38764,0,138950,'Stulz / Stuls','Italy','IT','Stulz / Stuls (Italy)',1,1,0),(38765,26286,138951,'Stuttgart','Germany','DE','Stuttgart (Germany)',1,1,0),(38766,0,138952,'Suances','Spain','ES','Suances (Spain)',1,1,0),(38767,0,138953,'Sucevita','Romania','RO','Sucevita (Romania)',1,1,0),(38768,0,138954,'Sud Ari Atoll','Maldives','MV','Sud Ari Atoll (Maldives)',1,1,0),(38769,26312,138955,'Sudbury','Canada','CA','Sudbury (Canada)',1,1,0),(38770,0,138956,'Suderlugum','Germany','DE','Suderlugum (Germany)',1,1,0),(38771,0,138957,'Sugar Hill','United States of America','US','Sugar Hill (United States of America)',1,1,0),(38772,0,138958,'Suha Punta','Croatia','HR','Suha Punta (Croatia)',1,1,0),(38773,26333,138959,'Suining','China','CN','Suining (China)',1,1,0),(38774,0,138960,'Suleczyno','Poland','PL','Suleczyno (Poland)',1,1,0),(38775,0,138961,'Sulina','Romania','RO','Sulina (Romania)',1,1,0),(38776,26350,138962,'Sulmona','Italy','IT','Sulmona (Italy)',1,1,0),(38777,0,138963,'Sulzbach-Laufen','Germany','DE','Sulzbach-Laufen (Germany)',1,1,0),(38778,0,138964,'Sumba Insel','Indonesia','ID','Sumba Insel (Indonesia)',1,1,0),(38779,26365,138965,'Sumeg','Hungary','HU','Sumeg (Hungary)',1,1,0),(38780,0,138966,'Sumperk','Czech Republic','CZ','Sumperk (Czech Republic)',1,1,0),(38781,26380,138967,'Sumy','Ukraine','UA','Sumy (Ukraine)',1,1,0),(38782,26390,138968,'Sundbyberg','Sweden','SE','Sundbyberg (Sweden)',1,1,0),(38783,26403,138969,'Sunndalsora','Norway','NO','Sunndalsora (Norway)',1,1,0),(38784,26404,138970,'Sunne','Sweden','SE','Sunne (Sweden)',1,1,0),(38785,0,138971,'Suphanburi','Thailand','TH','Suphanburi (Thailand)',1,1,0),(38786,0,138972,'Surabaja','Indonesia','ID','Surabaja (Indonesia)',1,1,0),(38787,26441,138973,'Surbo','Italy','IT','Surbo (Italy)',1,1,0),(38788,0,138974,'Surgut','Russia','RU','Surgut (Russia)',1,1,0),(38789,0,138975,'Sutivanac','Croatia','HR','Sutivanac (Croatia)',1,1,0),(38790,26470,138976,'Sutter Creek','United States of America','US','Sutter Creek (United States of America)',1,1,0);
INSERT INTO `tb_master_geo_city_new` VALUES (38791,26471,138977,'Sutton','Canada','CA','Sutton (Canada)',1,1,0),(38792,0,138978,'Sutton Mills','United States of America','US','Sutton Mills (United States of America)',1,1,0),(38793,26481,138979,'Suwanee','United States of America','US','Suwanee (United States of America)',1,1,0),(38794,0,138980,'Sv. Filipi i Jakov','Croatia','HR','Sv. Filipi i Jakov (Croatia)',1,1,0),(38795,0,138981,'Sveti Konstantin','Bulgaria','BG','Sveti Konstantin (Bulgaria)',1,1,0),(38796,26501,138982,'Svitavy','Czech Republic','CZ','Svitavy (Czech Republic)',1,1,0),(38797,0,138983,'Svoboda nad Upou','Czech Republic','CZ','Svoboda nad Upou (Czech Republic)',1,1,0),(38798,0,138984,'Swannington','United Kingdom','UK','Swannington (United Kingdom)',1,1,0),(38799,0,138985,'Swansboro','United States of America','US','Swansboro (United States of America)',1,1,0),(38800,26525,138986,'Sweetwater','United States of America','US','Sweetwater (United States of America)',1,1,0),(38801,26526,138987,'Sweimeh','Jordan','JO','Sweimeh (Jordan)',1,1,0),(38802,0,138988,'Swetlogorsk','Russia','RU','Swetlogorsk (Russia)',1,1,0),(38803,0,138989,'Swinton','United Kingdom','UK','Swinton (United Kingdom)',1,1,0),(38804,0,138990,'Sychrov','Czech Republic','CZ','Sychrov (Czech Republic)',1,1,0),(38805,0,138991,'Syros','Greece','GR','Syros (Greece)',1,1,0),(38806,26566,138992,'Szeged','Hungary','HU','Szeged (Hungary)',1,1,0),(38807,0,138993,'Szigetvar','Hungary','HU','Szigetvar (Hungary)',1,1,0),(38808,26576,138994,'Szolnok','Hungary','HU','Szolnok (Hungary)',1,1,0),(38809,26578,138995,'Taars','Denmark','DK','Taars (Denmark)',1,1,0),(38810,0,138996,'Taba Heights','Egypt','EG','Taba Heights (Egypt)',1,1,0),(38811,26583,138997,'Tabarz','Germany','DE','Tabarz (Germany)',1,1,0),(38812,26595,138998,'Tabua','Portugal','PT','Tabua (Portugal)',1,1,0),(38813,26619,138999,'Taglio di Po','Italy','IT','Taglio di Po (Italy)',1,1,0),(38814,0,139000,'Tahaa','French Polynesia','PF','Tahaa (French Polynesia)',1,1,0),(38815,0,139001,'Tahannaout','Morocco','MA','Tahannaout (Morocco)',1,1,0),(38816,0,139002,'Tahoe City','United States of America','US','Tahoe City (United States of America)',1,1,0),(38817,26634,139003,'Taicang','China','CN','Taicang (China)',1,1,0),(38818,26635,139004,'Taichung','Taiwan','TW','Taichung (Taiwan)',1,1,0),(38819,0,139005,'Taining','China','CN','Taining (China)',1,1,0),(38820,0,139006,'Taivalkoski','Finland','FI','Taivalkoski (Finland)',1,1,0),(38821,0,139007,'Taixing','China','CN','Taixing (China)',1,1,0),(38822,0,139008,'Talalla','Sri Lanka','LK','Talalla (Sri Lanka)',1,1,0),(38823,26684,139009,'Talavera de la Reina','Spain','ES','Talavera de la Reina (Spain)',1,1,0),(38824,0,139010,'Tale','Slovakia','SK','Tale (Slovakia)',1,1,0),(38825,26700,139011,'Tallberg','Sweden','SE','Tallberg (Sweden)',1,1,0),(38826,0,139012,'Talmont St. Hilaire','France','FR','Talmont St. Hilaire (France)',1,1,0),(38827,0,139013,'Tambopata','Peru','PE','Tambopata (Peru)',1,1,0),(38828,0,139014,'Tampolo','Madagascar','MG','Tampolo (Madagascar)',1,1,0),(38829,0,139015,'Tamsweg','Austria','AT','Tamsweg (Austria)',1,1,0),(38830,26747,139016,'Tamuning','Guam','GU','Tamuning (Guam)',1,1,0),(38831,26780,139017,'Taninges','France','FR','Taninges (France)',1,1,0),(38832,0,139018,'Tanjung Tinggi','Indonesia','ID','Tanjung Tinggi (Indonesia)',1,1,0),(38833,0,139019,'Tann (Rhon)','Germany','DE','Tann (Rhon) (Germany)',1,1,0),(38834,26794,139020,'Tanunda','Australia','AU','Tanunda (Australia)',1,1,0),(38835,26799,139021,'Taoyuan','Taiwan','TW','Taoyuan (Taiwan)',1,1,0),(38836,26805,139022,'Tappahannock','United States of America','US','Tappahannock (United States of America)',1,1,0),(38837,0,139023,'Taranna','Australia','AU','Taranna (Australia)',1,1,0),(38838,26814,139024,'Tarapoto','Peru','PE','Tarapoto (Peru)',1,1,0),(38839,0,139025,'Tarascon-sur-Ariege','France','FR','Tarascon-sur-Ariege (France)',1,1,0),(38840,26817,139026,'Tarasp','Switzerland','CH','Tarasp (Switzerland)',1,1,0),(38841,0,139027,'Tarbert','United Kingdom','UK','Tarbert (United Kingdom)',1,1,0),(38842,0,139028,'Tarczyn','Poland','PL','Tarczyn (Poland)',1,1,0),(38843,26830,139029,'Targovishte','Bulgaria','BG','Targovishte (Bulgaria)',1,1,0),(38844,0,139030,'Targu Secuiesc','Romania','RO','Targu Secuiesc (Romania)',1,1,0),(38845,26834,139031,'Tarija','Bolivia','BO','Tarija (Bolivia)',1,1,0),(38846,0,139032,'Tarnowskie Gory','Poland','PL','Tarnowskie Gory (Poland)',1,1,0),(38847,0,139033,'Tarsch','Italy','IT','Tarsch (Italy)',1,1,0),(38848,26878,139034,'Tata','Hungary','HU','Tata (Hungary)',1,1,0),(38849,0,139035,'Tathra','Australia','AU','Tathra (Australia)',1,1,0),(38850,0,139036,'Taveuni Island','Fiji Islands','FJ','Taveuni Island (Fiji Islands)',1,1,0),(38851,0,139037,'Taynuilt','United Kingdom','UK','Taynuilt (United Kingdom)',1,1,0),(38852,0,139038,'Te Kuiti','New Zealand','NZ','Te Kuiti (New Zealand)',1,1,0),(38853,26940,139039,'Tecoh','Mexico','MX','Tecoh (Mexico)',1,1,0),(38854,26948,139040,'Tegelen','Netherlands','NL','Tegelen (Netherlands)',1,1,0),(38855,26950,139041,'Teguise','Spain','ES','Teguise (Spain)',1,1,0),(38856,26956,139042,'Teistungen','Germany','DE','Teistungen (Germany)',1,1,0),(38857,26957,139043,'Tejakula','Indonesia','ID','Tejakula (Indonesia)',1,1,0),(38858,0,139044,'Tejina','Spain','ES','Tejina (Spain)',1,1,0),(38859,26960,139045,'Tekirova','Turkey','TR','Tekirova (Turkey)',1,1,0),(38860,0,139046,'Telavi','Georgia','GE','Telavi (Georgia)',1,1,0),(38861,26970,139047,'Telfes','Austria','AT','Telfes (Austria)',1,1,0),(38862,0,139048,'Telford','United Kingdom','UK','Telford (United Kingdom)',1,1,0),(38863,0,139049,'Telkibanya','Hungary','HU','Telkibanya (Hungary)',1,1,0),(38864,26978,139050,'Teltow','Germany','DE','Teltow (Germany)',1,1,0),(38865,26982,139051,'Tembok','Indonesia','ID','Tembok (Indonesia)',1,1,0),(38866,0,139052,'Temu','Italy','IT','Temu (Italy)',1,1,0),(38867,27009,139053,'Tendo','Japan','JP','Tendo (Japan)',1,1,0),(38868,27010,139054,'Tenerife','Spain','ES','Tenerife (Spain)',1,1,0),(38869,0,139055,'Teolo','Italy','IT','Teolo (Italy)',1,1,0),(38870,0,139056,'Teplice nad Metuji','Czech Republic','CZ','Teplice nad Metuji (Czech Republic)',1,1,0),(38871,27036,139057,'Tepotzotlan','Mexico','MX','Tepotzotlan (Mexico)',1,1,0),(38872,27040,139058,'Tequisquiapan','Mexico','MX','Tequisquiapan (Mexico)',1,1,0),(38873,0,139059,'Ter Heijde','Netherlands','NL','Ter Heijde (Netherlands)',1,1,0),(38874,0,139060,'Terherne','Netherlands','NL','Terherne (Netherlands)',1,1,0),(38875,0,139061,'Termini Imerese','Italy','IT','Termini Imerese (Italy)',1,1,0),(38876,27057,139062,'Termoli','Italy','IT','Termoli (Italy)',1,1,0),(38877,0,139063,'Terrades','Spain','ES','Terrades (Spain)',1,1,0),(38878,0,139064,'Terranuova Bracciolini','Italy','IT','Terranuova Bracciolini (Italy)',1,1,0),(38879,27073,139065,'Terre-de-Haut','Guadeloupe','GP','Terre-de-Haut (Guadeloupe)',1,1,0),(38880,27102,139066,'Teufen','Switzerland','CH','Teufen (Switzerland)',1,1,0),(38881,27110,139067,'Texarkana','United States of America','US','Texarkana (United States of America)',1,1,0),(38882,27111,139068,'Texas City','United States of America','US','Texas City (United States of America)',1,1,0),(38883,27119,139070,'Thaba Nchu','South Africa','ZA','Thaba Nchu (South Africa)',1,1,0),(38884,27137,139072,'Thann','France','FR','Thann (France)',1,1,0),(38885,27138,139073,'Thannenkirch','France','FR','Thannenkirch (France)',1,1,0),(38886,0,139074,'Thassos Town','Greece','GR','Thassos Town (Greece)',1,1,0),(38887,0,139075,'The Bottom','Bonaire Sint Eustatius and Saba',NULL,'The Bottom (Bonaire Sint Eustatius and Saba)',1,1,0),(38888,0,139076,'The Cove','Anguilla','AI','The Cove (Anguilla)',1,1,0),(38889,33822,139077,'The Forks','United States of America','US','The Forks (United States of America)',1,1,0),(38890,0,139078,'The Sea Ranch','United States of America','US','The Sea Ranch (United States of America)',1,1,0),(38891,27174,139079,'Thiers','France','FR','Thiers (France)',1,1,0),(38892,27176,139080,'Thimphu','Bhutan','BT','Thimphu (Bhutan)',1,1,0),(38893,0,139081,'Thingeyjarsveit','Iceland','IS','Thingeyjarsveit (Iceland)',1,1,0),(38894,0,139082,'Thiviers','France','FR','Thiviers (France)',1,1,0),(38895,0,139083,'Tholey Theley','Germany','DE','Tholey Theley (Germany)',1,1,0),(38896,0,139084,'Thomasburg','Germany','DE','Thomasburg (Germany)',1,1,0),(38897,27188,139085,'Thomaston','United States of America','US','Thomaston (United States of America)',1,1,0),(38898,27191,139086,'Thomasville','United States of America','US','Thomasville (United States of America)',1,1,0),(38899,0,139087,'Stei','Romania','RO','Stei (Romania)',1,1,0),(38900,0,139088,'Steinach','Germany','DE','Steinach (Germany)',1,1,0),(38901,0,139089,'Steinbach (Taunus)','Germany','DE','Steinbach (Taunus) (Germany)',1,1,0),(38902,0,139090,'Steinberg am See','Germany','DE','Steinberg am See (Germany)',1,1,0),(38903,0,139091,'Steinfeld (Schleswig)','Germany','DE','Steinfeld (Schleswig) (Germany)',1,1,0),(38904,0,139092,'Steinhoring','Germany','DE','Steinhoring (Germany)',1,1,0),(38905,0,139093,'Steinwiesen','Germany','DE','Steinwiesen (Germany)',1,1,0),(38906,0,139094,'Stemnitsa','Greece','GR','Stemnitsa (Greece)',1,1,0),(38907,0,139095,'Sterzing','Italy','IT','Sterzing (Italy)',1,1,0),(38908,26083,139096,'Stettlen','Switzerland','CH','Stettlen (Switzerland)',1,1,0),(38909,26087,139097,'Stevens Point','United States of America','US','Stevens Point (United States of America)',1,1,0),(38910,26100,139098,'Steyr','Austria','AT','Steyr (Austria)',1,1,0),(38911,0,139099,'Stockport','United Kingdom','UK','Stockport (United Kingdom)',1,1,0),(38912,0,139100,'Stoke-by-Nayland','United Kingdom','UK','Stoke-by-Nayland (United Kingdom)',1,1,0),(38913,0,139101,'Stokovci','Croatia','HR','Stokovci (Croatia)',1,1,0),(38914,0,139102,'Ston','Croatia','HR','Ston (Croatia)',1,1,0),(38915,26151,139103,'Stoneham','United States of America','US','Stoneham (United States of America)',1,1,0),(38916,0,139104,'Stonehaven','United Kingdom','UK','Stonehaven (United Kingdom)',1,1,0),(38917,0,139105,'Stonehaven Bay','Trinidad and Tobago','TT','Stonehaven Bay (Trinidad and Tobago)',1,1,0),(38918,26154,139106,'Stonewall','United States of America','US','Stonewall (United States of America)',1,1,0),(38919,0,139107,'Stony Creek','United States of America','US','Stony Creek (United States of America)',1,1,0),(38920,0,139108,'Stony Point','United States of America','US','Stony Point (United States of America)',1,1,0),(38921,0,139109,'Stoob','Austria','AT','Stoob (Austria)',1,1,0),(38922,0,139110,'Storen','Norway','NO','Storen (Norway)',1,1,0),(38923,26164,139111,'Storfors','Sweden','SE','Storfors (Sweden)',1,1,0),(38924,26168,139112,'Storm Lake','United States of America','US','Storm Lake (United States of America)',1,1,0),(38925,0,139113,'Stornoway','United Kingdom','UK','Stornoway (United Kingdom)',1,1,0),(38926,0,139114,'Strabane','United Kingdom','UK','Strabane (United Kingdom)',1,1,0),(38927,0,139115,'Stramberk','Czech Republic','CZ','Stramberk (Czech Republic)',1,1,0),(38928,26201,139116,'Stranda','Norway','NO','Stranda (Norway)',1,1,0),(38929,26203,139117,'Strandebarm','Norway','NO','Strandebarm (Norway)',1,1,0),(38930,0,139118,'Stranorlar','Ireland','IE','Stranorlar (Ireland)',1,1,0),(38931,0,139119,'Straschin','Poland','PL','Straschin (Poland)',1,1,0),(38932,0,139120,'Stratford','New Zealand','NZ','Stratford (New Zealand)',1,1,0),(38933,0,139121,'Strathmiglo','United Kingdom','UK','Strathmiglo (United Kingdom)',1,1,0),(38934,26224,139122,'Stratton','United States of America','US','Stratton (United States of America)',1,1,0),(38935,0,139123,'Straubenhardt-Schwann','Germany','DE','Straubenhardt-Schwann (Germany)',1,1,0),(38936,0,139124,'Strau?berg','Germany','DE','Strau?berg (Germany)',1,1,0),(38937,26253,139125,'Stromstad','Sweden','SE','Stromstad (Sweden)',1,1,0),(38938,26254,139126,'Stromsund','Sweden','SE','Stromsund (Sweden)',1,1,0),(38939,26261,139127,'Strove','Italy','IT','Strove (Italy)',1,1,0),(38940,26281,139128,'Sturgeon Falls','Canada','CA','Sturgeon Falls (Canada)',1,1,0),(38941,0,139129,'Sturgis','United States of America','US','Sturgis (United States of America)',1,1,0),(38942,26298,139130,'Subbiano','Italy','IT','Subbiano (Italy)',1,1,0),(38943,26301,139131,'Subiaco','Australia','AU','Subiaco (Australia)',1,1,0),(38944,0,139132,'Succhivo','Italy','IT','Succhivo (Italy)',1,1,0),(38945,0,139134,'Sudlohn','Germany','DE','Sudlohn (Germany)',1,1,0),(38946,0,139135,'Sugar Land','United States of America','US','Sugar Land (United States of America)',1,1,0),(38947,0,139136,'Suizhou','China','CN','Suizhou (China)',1,1,0),(38948,0,139137,'Suldal','Norway','NO','Suldal (Norway)',1,1,0),(38949,0,139138,'Suldalsosen','Norway','NO','Suldalsosen (Norway)',1,1,0),(38950,0,139139,'Sulechow','Poland','PL','Sulechow (Poland)',1,1,0),(38951,0,139140,'Sulejowek','Poland','PL','Sulejowek (Poland)',1,1,0),(38952,26348,139141,'Sullivan','United States of America','US','Sullivan (United States of America)',1,1,0),(38953,0,139142,'Sulzheim','Germany','DE','Sulzheim (Germany)',1,1,0),(38954,0,139143,'Sulzthal','Germany','DE','Sulzthal (Germany)',1,1,0),(38955,0,139144,'Sumbawa Besar','Indonesia','ID','Sumbawa Besar (Indonesia)',1,1,0),(38956,26371,139145,'Summerland','Canada','CA','Summerland (Canada)',1,1,0),(38957,26378,139146,'Sumner','United States of America','US','Sumner (United States of America)',1,1,0),(38958,26384,139147,'Sun Moon Lake','Taiwan','TW','Sun Moon Lake (Taiwan)',1,1,0),(38959,0,139148,'Sundhagen','Germany','DE','Sundhagen (Germany)',1,1,0),(38960,26394,139149,'Sundsvall','Sweden','SE','Sundsvall (Sweden)',1,1,0),(38961,26410,139150,'Sunnyside','United States of America','US','Sunnyside (United States of America)',1,1,0),(38962,26423,139151,'Suomussalmi','Finland','FI','Suomussalmi (Finland)',1,1,0),(38963,26427,139152,'SuperDevoluy','France','FR','SuperDevoluy (France)',1,1,0),(38964,0,139153,'Surfside Beach','United States of America','US','Surfside Beach (United States of America)',1,1,0),(38965,0,139154,'Susice','Czech Republic','CZ','Susice (Czech Republic)',1,1,0),(38966,26480,139155,'Suwalki','Poland','PL','Suwalki (Poland)',1,1,0),(38967,26482,139156,'Suwon','South Korea','KR','Suwon (South Korea)',1,1,0),(38968,26485,139157,'Suzhou','China','CN','Suzhou (China)',1,1,0),(38969,0,139158,'Svene','Norway','NO','Svene (Norway)',1,1,0),(38970,0,139159,'Sveti Martin na Muri','Croatia','HR','Sveti Martin na Muri (Croatia)',1,1,0),(38971,0,139160,'Sveti Stefan Island','Montenegro','ME','Sveti Stefan Island (Montenegro)',1,1,0),(38972,0,139161,'Swaffham','United Kingdom','UK','Swaffham (United Kingdom)',1,1,0),(38973,26515,139162,'Swansea','Australia','AU','Swansea (Australia)',1,1,0),(38974,0,139163,'Sweet Springs','United States of America','US','Sweet Springs (United States of America)',1,1,0),(38975,0,139164,'Swierzno','Poland','PL','Swierzno (Poland)',1,1,0),(38976,0,139165,'Swischtow','Bulgaria','BG','Swischtow (Bulgaria)',1,1,0),(38977,0,139166,'Synnfjell','Norway','NO','Synnfjell (Norway)',1,1,0),(38978,0,139167,'Syracuse','United States of America','US','Syracuse (United States of America)',1,1,0),(38979,0,139168,'Szabruk','Poland','PL','Szabruk (Poland)',1,1,0),(38980,0,139169,'Szarvas','Hungary','HU','Szarvas (Hungary)',1,1,0),(38981,0,139170,'Szczawnica','Poland','PL','Szczawnica (Poland)',1,1,0),(38982,26573,139171,'Szilvasvarad','Hungary','HU','Szilvasvarad (Hungary)',1,1,0),(38983,26575,139172,'Szklarska Poreba','Poland','PL','Szklarska Poreba (Poland)',1,1,0),(38984,0,139173,'Sztumskie Pole','Poland','PL','Sztumskie Pole (Poland)',1,1,0),(38985,26597,139174,'Tachikawa','Japan','JP','Tachikawa (Japan)',1,1,0),(38986,0,139175,'Taden','France','FR','Taden (France)',1,1,0),(38987,0,139176,'Tafraoute','Morocco','MA','Tafraoute (Morocco)',1,1,0),(38988,0,139177,'Taganrog','Russia','RU','Taganrog (Russia)',1,1,0),(38989,0,139178,'Tagish Lake','Canada','CA','Tagish Lake (Canada)',1,1,0),(38990,26625,139179,'Tahkovuori','Finland','FI','Tahkovuori (Finland)',1,1,0),(38991,26626,139180,'Tahlequah','United States of America','US','Tahlequah (United States of America)',1,1,0),(38992,26638,139181,'Tainan','Taiwan','TW','Tainan (Taiwan)',1,1,0),(38993,0,139182,'Taipa','New Zealand','NZ','Taipa (New Zealand)',1,1,0),(38994,0,139183,'Takachiho','Japan','JP','Takachiho (Japan)',1,1,0),(38995,26669,139184,'Takayama','Japan','JP','Takayama (Japan)',1,1,0),(38996,0,139185,'Talant','France','FR','Talant (France)',1,1,0),(38997,0,139186,'Taldykorgan','Kazakhstan','KZ','Taldykorgan (Kazakhstan)',1,1,0),(38998,0,139187,'Talladale','United Kingdom','UK','Talladale (United Kingdom)',1,1,0),(38999,26705,139188,'Talloires','France','FR','Talloires (France)',1,1,0),(39000,0,139189,'Tamazunchale','Mexico','MX','Tamazunchale (Mexico)',1,1,0),(39001,0,139190,'Tampa Bay','United States of America','US','Tampa Bay (United States of America)',1,1,0),(39002,0,139191,'Tamsahalte','Morocco','MA','Tamsahalte (Morocco)',1,1,0),(39003,26757,139192,'Tanah Rata','Malaysia','MY','Tanah Rata (Malaysia)',1,1,0),(39004,0,139193,'Tangendorf','Germany','DE','Tangendorf (Germany)',1,1,0),(39005,0,139194,'Tangermunde','Germany','DE','Tangermunde (Germany)',1,1,0),(39006,0,139195,'Tanjung Pandan','Indonesia','ID','Tanjung Pandan (Indonesia)',1,1,0),(39007,0,139196,'Tanjung Pinang','Indonesia','ID','Tanjung Pinang (Indonesia)',1,1,0),(39008,0,139197,'St. Eustatius','Bonaire Sint Eustatius and Saba',NULL,'St. Eustatius (Bonaire Sint Eustatius and Saba)',1,1,0),(39009,0,139198,'St. Flavia','Italy','IT','St. Flavia (Italy)',1,1,0),(39010,0,139199,'St. Francis Bay','South Africa','ZA','St. Francis Bay (South Africa)',1,1,0),(39011,0,139200,'St. Georgen am Langsee (by Lake Lang)','Austria','AT','St. Georgen am Langsee (by Lake Lang) (Austria)',1,1,0),(39012,0,139201,'St. Georgen im Attergau','Austria','AT','St. Georgen im Attergau (Austria)',1,1,0),(39013,0,139202,'St. George\'s','Grenada','GD','St. George\'s (Grenada)',1,1,0),(39014,0,139203,'St. George\'s Bay','Malta','MT','St. George\'s Bay (Malta)',1,1,0),(39015,0,139204,'St. Germain sur Ay','France','FR','St. Germain sur Ay (France)',1,1,0),(39016,0,139205,'St. Gildas de Rhuys','France','FR','St. Gildas de Rhuys (France)',1,1,0),(39017,0,139206,'St. Goar','Germany','DE','St. Goar (Germany)',1,1,0),(39018,0,139207,'St. Johann im Pongau','Austria','AT','St. Johann im Pongau (Austria)',1,1,0),(39019,0,139208,'St. Johann in der Haide','Austria','AT','St. Johann in der Haide (Austria)',1,1,0),(39020,0,139209,'St. Katherina','Egypt','EG','St. Katherina (Egypt)',1,1,0),(39021,0,139210,'St. Konstantin','Italy','IT','St. Konstantin (Italy)',1,1,0),(39022,0,139211,'St. Leon-Rot','Germany','DE','St. Leon-Rot (Germany)',1,1,0),(39023,0,139212,'St. Maartenszee','Netherlands','NL','St. Maartenszee (Netherlands)',1,1,0),(39024,0,139213,'St. Martin am Grimming','Austria','AT','St. Martin am Grimming (Austria)',1,1,0),(39025,0,139214,'St. Martin im Sulmtal','Austria','AT','St. Martin im Sulmtal (Austria)',1,1,0),(39026,0,139215,'St. Michael','Austria','AT','St. Michael (Austria)',1,1,0),(39027,0,139216,'St. Michael ob Bleiburg','Austria','AT','St. Michael ob Bleiburg (Austria)',1,1,0),(39028,0,139217,'St. Michel Chef Chef','France','FR','St. Michel Chef Chef (France)',1,1,0),(39029,0,139218,'St. Peter','United Kingdom','UK','St. Peter (United Kingdom)',1,1,0),(39030,0,139219,'St. Peter-Freienstein','Austria','AT','St. Peter-Freienstein (Austria)',1,1,0),(39031,0,139220,'St. Phillips','Antigua & Barbuda','AG','St. Phillips (Antigua & Barbuda)',1,1,0),(39032,0,139221,'St. Rose','Reunion','RE','St. Rose (Reunion)',1,1,0),(39033,0,139222,'St. Stefan','Austria','AT','St. Stefan (Austria)',1,1,0),(39034,0,139223,'St. Tudy','United Kingdom','UK','St. Tudy (United Kingdom)',1,1,0),(39035,0,139224,'St. Urban','Austria','AT','St. Urban (Austria)',1,1,0),(39036,0,139225,'St. Walburg','Italy','IT','St. Walburg (Italy)',1,1,0),(39037,0,139226,'Stadtkyll','Germany','DE','Stadtkyll (Germany)',1,1,0),(39038,25955,139227,'Stadtoldendorf','Germany','DE','Stadtoldendorf (Germany)',1,1,0),(39039,0,139228,'Stadtroda','Germany','DE','Stadtroda (Germany)',1,1,0),(39040,25956,139229,'Stadtschlaining','Austria','AT','Stadtschlaining (Austria)',1,1,0),(39041,0,139230,'Stainz','Austria','AT','Stainz (Austria)',1,1,0),(39042,0,139231,'Stakendorf','Germany','DE','Stakendorf (Germany)',1,1,0),(39043,0,139232,'Stalis','Greece','GR','Stalis (Greece)',1,1,0),(39044,0,139233,'Stallhofen','Austria','AT','Stallhofen (Austria)',1,1,0),(39045,25974,139234,'Stamford','United States of America','US','Stamford (United States of America)',1,1,0),(39046,0,139235,'Stanhope Gardens','Australia','AU','Stanhope Gardens (Australia)',1,1,0),(39047,0,139236,'Stanley','United States of America','US','Stanley (United States of America)',1,1,0),(39048,0,139237,'Stannersburn','United Kingdom','UK','Stannersburn (United Kingdom)',1,1,0),(39049,26005,139238,'Staples','United States of America','US','Staples (United States of America)',1,1,0),(39050,0,139239,'Stara Novalja','Croatia','HR','Stara Novalja (Croatia)',1,1,0),(39051,0,139240,'Stare Splavy','Czech Republic','CZ','Stare Splavy (Czech Republic)',1,1,0),(39052,0,139241,'Starzach','Germany','DE','Starzach (Germany)',1,1,0),(39053,26022,139242,'Statesboro','United States of America','US','Statesboro (United States of America)',1,1,0),(39054,0,139243,'Stavri','Greece','GR','Stavri (Greece)',1,1,0),(39055,0,139244,'Stawiguda','Poland','PL','Stawiguda (Poland)',1,1,0),(39056,0,139245,'Steffenshagen','Germany','DE','Steffenshagen (Germany)',1,1,0),(39057,0,139246,'Stegna','Poland','PL','Stegna (Poland)',1,1,0),(39058,0,139247,'Steinau an der Stra?e','Germany','DE','Steinau an der Stra?e (Germany)',1,1,0),(39059,0,139248,'Steinhardt','Germany','DE','Steinhardt (Germany)',1,1,0),(39060,0,139249,'Steinhaus am Semmering','Austria','AT','Steinhaus am Semmering (Austria)',1,1,0),(39061,26063,139250,'Steinkjer','Norway','NO','Steinkjer (Norway)',1,1,0),(39062,0,139251,'Sternatia','Italy','IT','Sternatia (Italy)',1,1,0),(39063,0,139252,'Stetten','Germany','DE','Stetten (Germany)',1,1,0),(39064,26089,139253,'Stevensville','United States of America','US','Stevensville (United States of America)',1,1,0),(39065,0,139254,'Stevensville','United States of America','US','Stevensville (United States of America)',1,1,0),(39066,0,139255,'Stiava','Italy','IT','Stiava (Italy)',1,1,0),(39067,0,139256,'Stieltjeskanaal','Netherlands','NL','Stieltjeskanaal (Netherlands)',1,1,0),(39068,0,139257,'Stignano','Italy','IT','Stignano (Italy)',1,1,0),(39069,26109,139258,'Stillwater','United States of America','US','Stillwater (United States of America)',1,1,0),(39070,26110,139259,'Stilwell','United States of America','US','Stilwell (United States of America)',1,1,0),(39071,26113,139260,'Stintino','Italy','IT','Stintino (Italy)',1,1,0),(39072,0,139261,'Stockbridge','United Kingdom','UK','Stockbridge (United Kingdom)',1,1,0),(39073,0,139262,'Stockton','United States of America','US','Stockton (United States of America)',1,1,0),(39074,0,139263,'Stoke Ash','United Kingdom','UK','Stoke Ash (United Kingdom)',1,1,0),(39075,0,139264,'Stollet','Sweden','SE','Stollet (Sweden)',1,1,0),(39076,33764,139265,'Stone Mountain','United States of America','US','Stone Mountain (United States of America)',1,1,0),(39077,0,139266,'Store Bay','Trinidad and Tobago','TT','Store Bay (Trinidad and Tobago)',1,1,0),(39078,0,139267,'Story City','United States of America','US','Story City (United States of America)',1,1,0),(39079,0,139268,'Stoumont','Belgium','BE','Stoumont (Belgium)',1,1,0),(39080,26188,139269,'Stowe','United States of America','US','Stowe (United States of America)',1,1,0),(39081,0,139270,'Stradbroke Island','Australia','AU','Stradbroke Island (Australia)',1,1,0),(39082,26195,139271,'Strafford','United States of America','US','Strafford (United States of America)',1,1,0),(39083,26197,139272,'Strahan','Australia','AU','Strahan (Australia)',1,1,0),(39084,0,139273,'Strass','Austria','AT','Strass (Austria)',1,1,0),(39085,26208,139274,'Strassen','Austria','AT','Strassen (Austria)',1,1,0),(39086,26209,139275,'Stratford','United States of America','US','Stratford (United States of America)',1,1,0),(39087,0,139276,'Strathaven','United Kingdom','UK','Strathaven (United Kingdom)',1,1,0),(39088,0,139277,'Strathblane','United Kingdom','UK','Strathblane (United Kingdom)',1,1,0),(39089,0,139278,'Strathgordon','Australia','AU','Strathgordon (Australia)',1,1,0),(39090,26218,139279,'Strathmore','Canada','CA','Strathmore (Canada)',1,1,0),(39091,26238,139280,'Strembo','Italy','IT','Strembo (Italy)',1,1,0),(39092,26256,139281,'Strongsville','United States of America','US','Strongsville (United States of America)',1,1,0),(39093,0,139282,'St-Simon','Canada','CA','St-Simon (Canada)',1,1,0),(39094,0,139283,'Studley','United Kingdom','UK','Studley (United Kingdom)',1,1,0),(39095,0,139284,'Stuhlingen','Germany','DE','Stuhlingen (Germany)',1,1,0),(39096,26296,139285,'Subang Jaya','Malaysia','MY','Subang Jaya (Malaysia)',1,1,0),(39097,26302,139286,'Subic Bay','Philippines','PH','Subic Bay (Philippines)',1,1,0),(39098,26304,139287,'Sublimity','United States of America','US','Sublimity (United States of America)',1,1,0),(39099,0,139288,'Sudak','Ukraine','UA','Sudak (Ukraine)',1,1,0),(39100,0,139289,'Sudavik','Iceland','IS','Sudavik (Iceland)',1,1,0),(39101,0,139290,'Sudbrookmerland','Germany','DE','Sudbrookmerland (Germany)',1,1,0),(39102,26314,139291,'Sudbury','United States of America','US','Sudbury (United States of America)',1,1,0),(39103,26340,139292,'Sukhothai','Thailand','TH','Sukhothai (Thailand)',1,1,0),(39104,0,139293,'Sulgen','Switzerland','CH','Sulgen (Switzerland)',1,1,0),(39105,0,139294,'Sulkowice','Poland','PL','Sulkowice (Poland)',1,1,0),(39106,0,139295,'Sullivan','United States of America','US','Sullivan (United States of America)',1,1,0),(39107,26351,139296,'Sulphur','United States of America','US','Sulphur (United States of America)',1,1,0),(39108,0,139297,'Sulphur Springs','United States of America','US','Sulphur Springs (United States of America)',1,1,0),(39109,0,139298,'Sulzbach/Saar','Germany','DE','Sulzbach/Saar (Germany)',1,1,0),(39110,0,139299,'Sulzfeld','Germany','DE','Sulzfeld (Germany)',1,1,0),(39111,26357,139300,'Sumare','Brazil','BR','Sumare (Brazil)',1,1,0),(39112,27259,139301,'Ticonderoga','United States of America','US','Ticonderoga (United States of America)',1,1,0),(39113,0,139302,'Tiefenbach','Germany','DE','Tiefenbach (Germany)',1,1,0),(39114,0,139303,'Tielt','Belgium','BE','Tielt (Belgium)',1,1,0),(39115,27267,139304,'Tieschen','Austria','AT','Tieschen (Austria)',1,1,0),(39116,27268,139305,'Tiffin','United States of America','US','Tiffin (United States of America)',1,1,0),(39117,27273,139306,'Tigard','United States of America','US','Tigard (United States of America)',1,1,0),(39118,27280,139307,'Tihany','Hungary','HU','Tihany (Hungary)',1,1,0),(39119,27287,139308,'Tikehau','French Polynesia','PF','Tikehau (French Polynesia)',1,1,0),(39120,27300,139309,'Tilton','United States of America','US','Tilton (United States of America)',1,1,0),(39121,27302,139310,'Timbavati Game Reserve','South Africa','ZA','Timbavati Game Reserve (South Africa)',1,1,0),(39122,33838,139311,'Tin Can Bay','Australia','AU','Tin Can Bay (Australia)',1,1,0),(39123,0,139312,'Tinejdad','Morocco','MA','Tinejdad (Morocco)',1,1,0),(39124,27328,139313,'Tinnum','Germany','DE','Tinnum (Germany)',1,1,0),(39125,0,139314,'Tintern','United Kingdom','UK','Tintern (United Kingdom)',1,1,0),(39126,0,139316,'Tisbury','United Kingdom','UK','Tisbury (United Kingdom)',1,1,0),(39127,0,139317,'Tisens','Italy','IT','Tisens (Italy)',1,1,0),(39128,27359,139318,'Tiszafured','Hungary','HU','Tiszafured (Hungary)',1,1,0),(39129,0,139319,'Titting-Emsing','Germany','DE','Titting-Emsing (Germany)',1,1,0),(39130,0,139320,'Tivat','Montenegro','ME','Tivat (Montenegro)',1,1,0),(39131,0,139321,'Tlalnepantla de Baz','Mexico','MX','Tlalnepantla de Baz (Mexico)',1,1,0),(39132,0,139322,'Tobermory','United Kingdom','UK','Tobermory (United Kingdom)',1,1,0),(39133,27394,139323,'Toberua Island','Fiji Islands','FJ','Toberua Island (Fiji Islands)',1,1,0),(39134,0,139324,'Toddington','United Kingdom','UK','Toddington (United Kingdom)',1,1,0),(39135,27410,139325,'Todtnau','Germany','DE','Todtnau (Germany)',1,1,0),(39136,0,139326,'Tokai','South Africa','ZA','Tokai (South Africa)',1,1,0),(39137,0,139327,'Tokashiki Island','Japan','JP','Tokashiki Island (Japan)',1,1,0),(39138,27418,139328,'Tokat','Turkey','TR','Tokat (Turkey)',1,1,0),(39139,27430,139329,'Tole','Italy','IT','Tole (Italy)',1,1,0),(39140,27432,139330,'Toledo','United States of America','US','Toledo (United States of America)',1,1,0),(39141,0,139331,'Tolosa','Spain','ES','Tolosa (Spain)',1,1,0),(39142,0,139332,'Toluca de Lerdo','Mexico','MX','Toluca de Lerdo (Mexico)',1,1,0),(39143,27447,139333,'Tomah','United States of America','US','Tomah (United States of America)',1,1,0),(39144,0,139334,'Tommarp','Sweden','SE','Tommarp (Sweden)',1,1,0),(39145,0,139335,'Tonezza del Cimone','Italy','IT','Tonezza del Cimone (Italy)',1,1,0),(39146,0,139336,'Tongling','China','CN','Tongling (China)',1,1,0),(39147,27481,139337,'Tongxiang','China','CN','Tongxiang (China)',1,1,0),(39148,0,139338,'Torgau','Germany','DE','Torgau (Germany)',1,1,0),(39149,0,139339,'Tornac','France','FR','Tornac (France)',1,1,0),(39150,27533,139340,'Torquay','Australia','AU','Torquay (Australia)',1,1,0),(39151,27534,139341,'Torrance','United States of America','US','Torrance (United States of America)',1,1,0),(39152,0,139342,'Torre Faro','Italy','IT','Torre Faro (Italy)',1,1,0),(39153,27536,139343,'Torrecaballeros','Spain','ES','Torrecaballeros (Spain)',1,1,0),(39154,0,139344,'Torredembarra','Spain','ES','Torredembarra (Spain)',1,1,0),(39155,0,139345,'Torreira','Portugal','PT','Torreira (Portugal)',1,1,0),(39156,27542,139346,'Torrelavega','Spain','ES','Torrelavega (Spain)',1,1,0),(39157,0,139347,'Torres','Spain','ES','Torres (Spain)',1,1,0),(39158,0,139348,'Torres Vedras','Portugal','PT','Torres Vedras (Portugal)',1,1,0),(39159,0,139349,'Torricella','Italy','IT','Torricella (Italy)',1,1,0),(39160,0,139350,'Tortora Marina','Italy','IT','Tortora Marina (Italy)',1,1,0),(39161,27575,139351,'Tortoreto','Italy','IT','Tortoreto (Italy)',1,1,0),(39162,0,139352,'Toscolano-Maderno','Italy','IT','Toscolano-Maderno (Italy)',1,1,0),(39163,0,139353,'Tosens','Austria','AT','Tosens (Austria)',1,1,0),(39164,26873,139354,'Tashkent','Uzbekistan','UZ','Tashkent (Uzbekistan)',1,1,0),(39165,27585,139355,'Tossa de Mar','Spain','ES','Tossa de Mar (Spain)',1,1,0),(39166,27588,139356,'Totana','Spain','ES','Totana (Spain)',1,1,0),(39167,27594,139357,'Tottori','Japan','JP','Tottori (Japan)',1,1,0),(39168,27608,139358,'Tourlaville','France','FR','Tourlaville (France)',1,1,0),(39169,0,139359,'Tournehem-sur-la-Hem','France','FR','Tournehem-sur-la-Hem (France)',1,1,0),(39170,27615,139360,'Tournus','France','FR','Tournus (France)',1,1,0),(39171,0,139361,'Toutainville','France','FR','Toutainville (France)',1,1,0),(39172,0,139362,'Towcester','United Kingdom','UK','Towcester (United Kingdom)',1,1,0),(39173,27629,139363,'Towson','United States of America','US','Towson (United States of America)',1,1,0),(39174,0,139364,'Traitsching','Germany','DE','Traitsching (Germany)',1,1,0),(39175,27648,139365,'Trakai','Lithuania','LT','Trakai (Lithuania)',1,1,0),(39176,0,139366,'Tramin','Italy','IT','Tramin (Italy)',1,1,0),(39177,0,139367,'Trampe','Germany','DE','Trampe (Germany)',1,1,0),(39178,27654,139368,'Tranas','Sweden','SE','Tranas (Sweden)',1,1,0),(39179,0,139369,'Trani','Italy','IT','Trani (Italy)',1,1,0),(39180,0,139370,'Trans-en-Provence','France','FR','Trans-en-Provence (France)',1,1,0),(39181,27664,139371,'Trappes','France','FR','Trappes (France)',1,1,0),(39182,0,139372,'Travancinha','Portugal','PT','Travancinha (Portugal)',1,1,0),(39183,0,139373,'Trebur','Germany','DE','Trebur (Germany)',1,1,0),(39184,0,139374,'Treffelstein','Germany','DE','Treffelstein (Germany)',1,1,0),(39185,0,139375,'Treffurt','Germany','DE','Treffurt (Germany)',1,1,0),(39186,27709,139376,'Tregunc','France','FR','Tregunc (France)',1,1,0),(39187,0,139377,'Trencianske Teplice','Slovakia','SK','Trencianske Teplice (Slovakia)',1,1,0),(39188,0,139378,'Trendelburg','Germany','DE','Trendelburg (Germany)',1,1,0),(39189,27734,139379,'Trenton','United States of America','US','Trenton (United States of America)',1,1,0),(39190,0,139380,'Trepassey','Canada','CA','Trepassey (Canada)',1,1,0),(39191,0,139381,'Treppeln','Germany','DE','Treppeln (Germany)',1,1,0),(39192,0,139382,'Tres Cantos','Spain','ES','Tres Cantos (Spain)',1,1,0),(39193,0,139383,'Trevi','Italy','IT','Trevi (Italy)',1,1,0),(39194,27749,139384,'Trevol','France','FR','Trevol (France)',1,1,0),(39195,0,139385,'Tribiano','Italy','IT','Tribiano (Italy)',1,1,0),(39196,27759,139386,'Tricase','Italy','IT','Tricase (Italy)',1,1,0),(39197,0,139387,'Triebes','Germany','DE','Triebes (Germany)',1,1,0),(39198,0,139388,'Trieri','Italy','IT','Trieri (Italy)',1,1,0),(39199,27763,139389,'Triesen','Liechtenstein','LI','Triesen (Liechtenstein)',1,1,0),(39200,0,139390,'Triftern','Germany','DE','Triftern (Germany)',1,1,0),(39201,0,139391,'Trillo','Spain','ES','Trillo (Spain)',1,1,0),(39202,0,139392,'Triptis','Germany','DE','Triptis (Germany)',1,1,0),(39203,0,139393,'Trizonia','Greece','GR','Trizonia (Greece)',1,1,0),(39204,27792,139394,'Trnava','Slovakia','SK','Trnava (Slovakia)',1,1,0),(39205,27797,139395,'Troia','Portugal','PT','Troia (Portugal)',1,1,0),(39206,27807,139396,'Tromso','Norway','NO','Tromso (Norway)',1,1,0),(39207,27811,139397,'Troo','France','FR','Troo (France)',1,1,0),(39208,0,139398,'Trossingen','Germany','DE','Trossingen (Germany)',1,1,0),(39209,33872,139399,'Trouville sur Mer','France','FR','Trouville sur Mer (France)',1,1,0),(39210,27829,139400,'Trpanj','Croatia','HR','Trpanj (Croatia)',1,1,0),(39211,0,139401,'Truchtlaching','Germany','DE','Truchtlaching (Germany)',1,1,0),(39212,0,139402,'True Blue','Grenada','GD','True Blue (Grenada)',1,1,0),(39213,27844,139403,'Trussville','United States of America','US','Trussville (United States of America)',1,1,0),(39214,0,139404,'Tsavo East National Park','Kenya','KE','Tsavo East National Park (Kenya)',1,1,0),(39215,0,139405,'Tschernjachowsk','Russia','RU','Tschernjachowsk (Russia)',1,1,0),(39216,33873,139406,'Tsu','Japan','JP','Tsu (Japan)',1,1,0),(39217,0,139407,'Tsuchiura','Japan','JP','Tsuchiura (Japan)',1,1,0),(39218,0,139408,'Tsuwano','Japan','JP','Tsuwano (Japan)',1,1,0),(39219,27873,139409,'Tualatin','United States of America','US','Tualatin (United States of America)',1,1,0),(39220,27885,139410,'Tucepi','Croatia','HR','Tucepi (Croatia)',1,1,0),(39221,27889,139411,'Tucson','United States of America','US','Tucson (United States of America)',1,1,0),(39222,27897,139412,'Tuglie','Italy','IT','Tuglie (Italy)',1,1,0),(39223,27908,139413,'Tulancingo','Mexico','MX','Tulancingo (Mexico)',1,1,0),(39224,25626,139414,'Sommerfeld','Germany','DE','Sommerfeld (Germany)',1,1,0),(39225,33435,139415,'Son Xoriguer','Spain','ES','Son Xoriguer (Spain)',1,1,0),(39226,0,139416,'Sonceboz-Sombeval','Switzerland','CH','Sonceboz-Sombeval (Switzerland)',1,1,0),(39227,0,139417,'Sonning','United Kingdom','UK','Sonning (United Kingdom)',1,1,0),(39228,0,139418,'Sonoita','United States of America','US','Sonoita (United States of America)',1,1,0),(39229,25661,139419,'Sopot','Poland','PL','Sopot (Poland)',1,1,0),(39230,25666,139420,'Sorbas','Spain','ES','Sorbas (Spain)',1,1,0),(39231,0,139421,'Sorfold','Norway','NO','Sorfold (Norway)',1,1,0),(39232,0,139422,'Sorgun','Turkey','TR','Sorgun (Turkey)',1,1,0),(39233,0,139423,'Sorigny','France','FR','Sorigny (France)',1,1,0),(39234,0,139424,'Sortavala','Russia','RU','Sortavala (Russia)',1,1,0),(39235,33436,139425,'Sos del Rey Catolico','Spain','ES','Sos del Rey Catolico (Spain)',1,1,0),(39236,0,139426,'Soulac','France','FR','Soulac (France)',1,1,0),(39237,0,139427,'Soumoulou','France','FR','Soumoulou (France)',1,1,0),(39238,0,139428,'South Brent','United Kingdom','UK','South Brent (United Kingdom)',1,1,0),(39239,33452,139429,'South Burlington','United States of America','US','South Burlington (United States of America)',1,1,0),(39240,33465,139430,'South Fork','United States of America','US','South Fork (United States of America)',1,1,0),(39241,33485,139431,'South Lake Tahoe','United States of America','US','South Lake Tahoe (United States of America)',1,1,0),(39242,33515,139432,'South San Francisco','United States of America','US','South San Francisco (United States of America)',1,1,0),(39243,25738,139433,'South Water Caye','Belize','BZ','South Water Caye (Belize)',1,1,0),(39244,25791,139434,'Sovicille','Italy','IT','Sovicille (Italy)',1,1,0),(39245,25797,139435,'Spa','Belgium','BE','Spa (Belgium)',1,1,0),(39246,0,139436,'Spatind','Norway','NO','Spatind (Norway)',1,1,0),(39247,0,139437,'Specchiarica','Italy','IT','Specchiarica (Italy)',1,1,0),(39248,0,139438,'Spelle','Germany','DE','Spelle (Germany)',1,1,0),(39249,0,139439,'Spetses Town','Greece','GR','Spetses Town (Greece)',1,1,0),(39250,0,139440,'Spiazzi','Italy','IT','Spiazzi (Italy)',1,1,0),(39251,0,139441,'Spiazzo','Italy','IT','Spiazzo (Italy)',1,1,0),(39252,25843,139442,'Spicewood','United States of America','US','Spicewood (United States of America)',1,1,0),(39253,0,139443,'Spinges','Italy','IT','Spinges (Italy)',1,1,0),(39254,0,139444,'Spital/Semmering','Austria','AT','Spital/Semmering (Austria)',1,1,0),(39255,25860,139445,'Spitzingsee','Germany','DE','Spitzingsee (Germany)',1,1,0),(39256,0,139446,'Splitska','Croatia','HR','Splitska (Croatia)',1,1,0),(39257,0,139447,'Spokane Valley','United States of America','US','Spokane Valley (United States of America)',1,1,0),(39258,0,139448,'Spring City','United States of America','US','Spring City (United States of America)',1,1,0),(39259,0,139449,'Spring Lake','United States of America','US','Spring Lake (United States of America)',1,1,0),(39260,0,139450,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(39261,0,139451,'Springfield','United States of America','US','Springfield (United States of America)',1,1,0),(39262,0,139452,'Srbsko','Czech Republic','CZ','Srbsko (Czech Republic)',1,1,0),(39263,0,139453,'Srebrenica','Bosnia and Herzegowina','BA','Srebrenica (Bosnia and Herzegowina)',1,1,0),(39264,0,139454,'Srednja vas v Bohinju','Slovenia','SI','Srednja vas v Bohinju (Slovenia)',1,1,0),(39265,0,139455,'Srem','Poland','PL','Srem (Poland)',1,1,0),(39266,0,139457,'St Julien des Landes','France','FR','St Julien des Landes (France)',1,1,0),(39267,0,139458,'St Loubes','France','FR','St Loubes (France)',1,1,0),(39268,0,139459,'St Martinville','United States of America','US','St Martinville (United States of America)',1,1,0),(39269,0,139460,'St. Albans','United Kingdom','UK','St. Albans (United Kingdom)',1,1,0),(39270,0,139461,'St. Andrews','United Kingdom','UK','St. Andrews (United Kingdom)',1,1,0),(39271,0,139462,'St. Anne','United Kingdom','UK','St. Anne (United Kingdom)',1,1,0),(39272,0,139463,'St. Armel','France','FR','St. Armel (France)',1,1,0),(39273,25905,139464,'St. Arnaud','New Zealand','NZ','St. Arnaud (New Zealand)',1,1,0),(39274,33679,139465,'St. Augustine','United States of America','US','St. Augustine (United States of America)',1,1,0),(39275,0,139466,'St. Christoph','Austria','AT','St. Christoph (Austria)',1,1,0),(39276,0,139467,'St. Fillans','United Kingdom','UK','St. Fillans (United Kingdom)',1,1,0),(39277,0,139468,'St. Georges d\'Oleron','France','FR','St. Georges d\'Oleron (France)',1,1,0),(39278,0,139469,'St. Gertraud','Austria','AT','St. Gertraud (Austria)',1,1,0),(39279,0,139470,'St. Giorgios','Greece','GR','St. Giorgios (Greece)',1,1,0),(39280,0,139471,'St. Gotthard','Austria','AT','St. Gotthard (Austria)',1,1,0),(39281,0,139472,'St. Ingbert','Germany','DE','St. Ingbert (Germany)',1,1,0),(39282,0,139473,'St. James','Trinidad and Tobago','TT','St. James (Trinidad and Tobago)',1,1,0),(39283,0,139474,'St. John','Barbados','BB','St. John (Barbados)',1,1,0),(39284,33706,139475,'St. John\'s','Canada','CA','St. John\'s (Canada)',1,1,0),(39285,0,139476,'St. Liboire','Canada','CA','St. Liboire (Canada)',1,1,0),(39286,0,139477,'St. Lucia','Saint Lucia','LC','St. Lucia (Saint Lucia)',1,1,0),(39287,0,139478,'St. Lyphard','France','FR','St. Lyphard (France)',1,1,0),(39288,0,139479,'St. Moritz','Switzerland','CH','St. Moritz (Switzerland)',1,1,0),(39289,0,139480,'St. Oswald','Austria','AT','St. Oswald (Austria)',1,1,0),(39290,33730,139481,'St. Paul','United States of America','US','St. Paul (United States of America)',1,1,0),(39291,0,139482,'St. Peter','Germany','DE','St. Peter (Germany)',1,1,0),(39292,0,139483,'St. Peter','Italy','IT','St. Peter (Italy)',1,1,0),(39293,0,139484,'St. Peter','Barbados','BB','St. Peter (Barbados)',1,1,0),(39294,0,139485,'St. Peter Port','United Kingdom','UK','St. Peter Port (United Kingdom)',1,1,0),(39295,0,139486,'St. Primus','Austria','AT','St. Primus (Austria)',1,1,0),(39296,0,139487,'St. Quens Bay','United Kingdom','UK','St. Quens Bay (United Kingdom)',1,1,0),(39297,33740,139488,'St. Regis','United States of America','US','St. Regis (United States of America)',1,1,0),(39298,0,139489,'St. Veit a. d. Glan','Austria','AT','St. Veit a. d. Glan (Austria)',1,1,0),(39299,0,139490,'Stafford','United States of America','US','Stafford (United States of America)',1,1,0),(39300,25971,139491,'Stall','Austria','AT','Stall (Austria)',1,1,0),(39301,25975,139492,'Stams','Austria','AT','Stams (Austria)',1,1,0),(39302,25976,139493,'Stamsried','Germany','DE','Stamsried (Germany)',1,1,0),(39303,25980,139494,'Standish','United States of America','US','Standish (United States of America)',1,1,0),(39304,0,139495,'Stare Hamry','Czech Republic','CZ','Stare Hamry (Czech Republic)',1,1,0),(39305,26018,139496,'Starnberg','Germany','DE','Starnberg (Germany)',1,1,0),(39306,26020,139497,'Stateline','United States of America','US','Stateline (United States of America)',1,1,0),(39307,0,139498,'Staudach-Egerndach','Germany','DE','Staudach-Egerndach (Germany)',1,1,0),(39308,0,139499,'Ste Croix','Switzerland','CH','Ste Croix (Switzerland)',1,1,0),(39309,26040,139500,'Steeg','Austria','AT','Steeg (Austria)',1,1,0),(39310,0,139501,'Ste-Flore-de-Grand-Mere','Canada','CA','Ste-Flore-de-Grand-Mere (Canada)',1,1,0),(39311,0,139502,'Stegaurach','Germany','DE','Stegaurach (Germany)',1,1,0),(39312,26046,139503,'Stegersbach','Austria','AT','Stegersbach (Austria)',1,1,0),(39313,0,139504,'Steinach','Switzerland','CH','Steinach (Switzerland)',1,1,0),(39314,26052,139505,'Steinbach','Canada','CA','Steinbach (Canada)',1,1,0),(39315,0,139506,'Steineberg','Germany','DE','Steineberg (Germany)',1,1,0),(39316,26059,139507,'Steinhatchee','United States of America','US','Steinhatchee (United States of America)',1,1,0),(39317,26060,139508,'Steinhaus','Italy','IT','Steinhaus (Italy)',1,1,0),(39318,0,139509,'Steinheim am Albuch','Germany','DE','Steinheim am Albuch (Germany)',1,1,0),(39319,0,139510,'Stella Cilento','Italy','IT','Stella Cilento (Italy)',1,1,0),(39320,0,139511,'Stennes','United Kingdom','UK','Stennes (United Kingdom)',1,1,0),(39321,0,139512,'Stern','Italy','IT','Stern (Italy)',1,1,0),(39322,0,139513,'Steszew','Poland','PL','Steszew (Poland)',1,1,0),(39323,26085,139514,'Steubenville','United States of America','US','Steubenville (United States of America)',1,1,0),(39324,0,139515,'Stevenson Ranch','United States of America','US','Stevenson Ranch (United States of America)',1,1,0),(39325,26093,139516,'Stewart','Canada','CA','Stewart (Canada)',1,1,0),(39326,0,139517,'Stilbaai','South Africa','ZA','Stilbaai (South Africa)',1,1,0),(39327,0,139518,'Sumoto','Japan','JP','Sumoto (Japan)',1,1,0),(39328,26386,139519,'Sunbury','United States of America','US','Sunbury (United States of America)',1,1,0),(39329,26388,139520,'Sundance','United States of America','US','Sundance (United States of America)',1,1,0),(39330,0,139521,'Sungai Siput','Malaysia','MY','Sungai Siput (Malaysia)',1,1,0),(39331,0,139522,'Sunset Beach','United States of America','US','Sunset Beach (United States of America)',1,1,0),(39332,26425,139523,'Suonenjoki','Finland','FI','Suonenjoki (Finland)',1,1,0),(39333,0,139524,'Suprasl','Poland','PL','Suprasl (Poland)',1,1,0),(39334,26434,139525,'Sur','Oman','OM','Sur (Oman)',1,1,0),(39335,26443,139527,'Suresnes','France','FR','Suresnes (France)',1,1,0),(39336,26448,139528,'Surigao','Philippines','PH','Surigao (Philippines)',1,1,0),(39337,26454,139529,'Surprise','United States of America','US','Surprise (United States of America)',1,1,0),(39338,0,139530,'Susel','Germany','DE','Susel (Germany)',1,1,0),(39339,0,139531,'Susteren','Netherlands','NL','Susteren (Netherlands)',1,1,0),(39340,0,139532,'Svalov','Sweden','SE','Svalov (Sweden)',1,1,0),(39341,26489,139533,'Svarta','Sweden','SE','Svarta (Sweden)',1,1,0),(39342,0,139534,'Svaty Jur','Slovakia','SK','Svaty Jur (Slovakia)',1,1,0),(39343,0,139535,'Sverksna','Lithuania','LT','Sverksna (Lithuania)',1,1,0),(39344,0,139536,'Sveti Naum','Macedonia','MK','Sveti Naum (Macedonia)',1,1,0),(39345,26500,139537,'Svingvoll','Norway','NO','Svingvoll (Norway)',1,1,0),(39346,0,139538,'Svoronata','Greece','GR','Svoronata (Greece)',1,1,0),(39347,26508,139539,'Swakopmund','Namibia','NA','Swakopmund (Namibia)',1,1,0),(39348,0,139540,'Swalmen','Netherlands','NL','Swalmen (Netherlands)',1,1,0),(39349,26522,139541,'Swaziland','Swaziland','SZ','Swaziland (Swaziland)',1,1,0),(39350,26540,139542,'Sydney','Canada','CA','Sydney (Canada)',1,1,0),(39351,26567,139543,'Szekesfehervar','Hungary','HU','Szekesfehervar (Hungary)',1,1,0),(39352,26568,139544,'Szentendre','Hungary','HU','Szentendre (Hungary)',1,1,0),(39353,26580,139545,'Tabanan','Indonesia','ID','Tabanan (Indonesia)',1,1,0),(39354,26592,139546,'Tabor','Czech Republic','CZ','Tabor (Czech Republic)',1,1,0),(39355,0,139547,'Taby','Sweden','SE','Taby (Sweden)',1,1,0),(39356,26599,139548,'Tacna','Peru','PE','Tacna (Peru)',1,1,0),(39357,26607,139549,'Tadoussac','Canada','CA','Tadoussac (Canada)',1,1,0),(39358,0,139550,'Tafalla','Spain','ES','Tafalla (Spain)',1,1,0),(39359,26652,139551,'Taitung','Taiwan','TW','Taitung (Taiwan)',1,1,0),(39360,26657,139552,'Taizz','Yemen','YE','Taizz (Yemen)',1,1,0),(39361,0,139553,'Tajuya','Spain','ES','Tajuya (Spain)',1,1,0),(39362,26673,139554,'Takoma Park','United States of America','US','Takoma Park (United States of America)',1,1,0),(39363,26687,139555,'Talca','Chile','CL','Talca (Chile)',1,1,0),(39364,0,139556,'Tamm','Germany','DE','Tamm (Germany)',1,1,0),(39365,0,139557,'Tamnies','France','FR','Tamnies (France)',1,1,0),(39366,0,139558,'Tana Bru','Norway','NO','Tana Bru (Norway)',1,1,0),(39367,26782,139559,'Tanjung','Indonesia','ID','Tanjung (Indonesia)',1,1,0),(39368,26783,139560,'Tanjung Bungah','Malaysia','MY','Tanjung Bungah (Malaysia)',1,1,0),(39369,26787,139561,'Tanndalen','Sweden','SE','Tanndalen (Sweden)',1,1,0),(39370,26800,139562,'Tapachula','Mexico','MX','Tapachula (Mexico)',1,1,0),(39371,26807,139563,'Tarajalejo','Spain','ES','Tarajalejo (Spain)',1,1,0),(39372,26836,139564,'Tarjan','Hungary','HU','Tarjan (Hungary)',1,1,0),(39373,26850,139565,'Taroudant','Morocco','MA','Taroudant (Morocco)',1,1,0),(39374,26862,139566,'Tarrega','Spain','ES','Tarrega (Spain)',1,1,0),(39375,26867,139567,'Tarvisio','Italy','IT','Tarvisio (Italy)',1,1,0),(39376,26879,139568,'Tatabanya','Hungary','HU','Tatabanya (Hungary)',1,1,0),(39377,0,139569,'Tating','Germany','DE','Tating (Germany)',1,1,0),(39378,0,139570,'Tatoi - Acharnai','Greece','GR','Tatoi - Acharnai (Greece)',1,1,0),(39379,0,139571,'Tatranska Polianka','Slovakia','SK','Tatranska Polianka (Slovakia)',1,1,0),(39380,0,139572,'Taufers im Munstertal','Italy','IT','Taufers im Munstertal (Italy)',1,1,0),(39381,0,139573,'Tavarnelle Val di Pesa','Italy','IT','Tavarnelle Val di Pesa (Italy)',1,1,0),(39382,26907,139574,'Tavel','France','FR','Tavel (France)',1,1,0),(39383,0,139575,'Taviano','Italy','IT','Taviano (Italy)',1,1,0),(39384,0,139576,'Tavsanli','Turkey','TR','Tavsanli (Turkey)',1,1,0),(39385,0,139577,'Taylors Lakes','Australia','AU','Taylors Lakes (Australia)',1,1,0),(39386,0,139578,'Taylorsville','United States of America','US','Taylorsville (United States of America)',1,1,0),(39387,0,139579,'Tazilly','France','FR','Tazilly (France)',1,1,0),(39388,33794,139580,'Te Anau','New Zealand','NZ','Te Anau (New Zealand)',1,1,0),(39389,26945,139581,'Tefe','Brazil','BR','Tefe (Brazil)',1,1,0),(39390,0,139582,'Teggiano','Italy','IT','Teggiano (Italy)',1,1,0),(39391,26958,139583,'Tejeda','Spain','ES','Tejeda (Spain)',1,1,0),(39392,26962,139584,'Tela','Honduras','HN','Tela (Honduras)',1,1,0),(39393,26964,139585,'Telchac Puerto','Mexico','MX','Telchac Puerto (Mexico)',1,1,0),(39394,26972,139586,'Telfs','Austria','AT','Telfs (Austria)',1,1,0),(39395,0,139587,'Telouet','Morocco','MA','Telouet (Morocco)',1,1,0),(39396,0,139588,'Telti','Italy','IT','Telti (Italy)',1,1,0),(39397,26983,139589,'Temecula','United States of America','US','Temecula (United States of America)',1,1,0),(39398,26999,139590,'Templin','Germany','DE','Templin (Germany)',1,1,0),(39399,0,139591,'Temse','Belgium','BE','Temse (Belgium)',1,1,0),(39400,0,139592,'Tenno','Italy','IT','Tenno (Italy)',1,1,0),(39401,0,139593,'Tenterden','United Kingdom','UK','Tenterden (United Kingdom)',1,1,0),(39402,0,139594,'Tepatitlan','Mexico','MX','Tepatitlan (Mexico)',1,1,0),(39403,0,139595,'Teplice nad Becvou','Czech Republic','CZ','Teplice nad Becvou (Czech Republic)',1,1,0),(39404,0,139596,'Teplicka nad Vahom','Slovakia','SK','Teplicka nad Vahom (Slovakia)',1,1,0),(39405,0,139597,'Terelj','Mongolia','MN','Terelj (Mongolia)',1,1,0),(39406,27049,139598,'Terlingua','United States of America','US','Terlingua (United States of America)',1,1,0),(39407,33806,139599,'Terme Vigliatore','Italy','IT','Terme Vigliatore (Italy)',1,1,0),(39408,0,139600,'Ternopil','Ukraine','UA','Ternopil (Ukraine)',1,1,0),(39409,0,139601,'Tersanas','Greece','GR','Tersanas (Greece)',1,1,0),(39410,27088,139602,'Tessera','Italy','IT','Tessera (Italy)',1,1,0),(39411,27092,139603,'Tete','Mozambique','MZ','Tete (Mozambique)',1,1,0),(39412,0,139604,'Teterow','Germany','DE','Teterow (Germany)',1,1,0),(39413,33819,139606,'The Dalles','United States of America','US','The Dalles (United States of America)',1,1,0),(39414,33826,139607,'The Pas','Canada','CA','The Pas (Canada)',1,1,0),(39415,33827,139608,'The Villages','United States of America','US','The Villages (United States of America)',1,1,0),(39416,0,139610,'Thermisia','Greece','GR','Thermisia (Greece)',1,1,0),(39417,0,139611,'Thielle-Wavre','Switzerland','CH','Thielle-Wavre (Switzerland)',1,1,0),(39418,0,139612,'Thierbach','Austria','AT','Thierbach (Austria)',1,1,0),(39419,0,139613,'Thimister-Clermont','Belgium','BE','Thimister-Clermont (Belgium)',1,1,0),(39420,0,139614,'Thoiry','France','FR','Thoiry (France)',1,1,0),(39421,27189,139615,'Thomastown','Ireland','IE','Thomastown (Ireland)',1,1,0),(39422,27194,139616,'Thompsonville','United States of America','US','Thompsonville (United States of America)',1,1,0),(39423,0,139617,'Thorenc','France','FR','Thorenc (France)',1,1,0),(39424,27203,139618,'Thorn','Netherlands','NL','Thorn (Netherlands)',1,1,0),(39425,27205,139619,'Thornburg','United States of America','US','Thornburg (United States of America)',1,1,0),(39426,0,139620,'Thornbury','United Kingdom','UK','Thornbury (United Kingdom)',1,1,0),(39427,0,139621,'Thousand Oaks','United States of America','US','Thousand Oaks (United States of America)',1,1,0),(39428,27224,139622,'Thredbo','Australia','AU','Thredbo (Australia)',1,1,0),(39429,0,139623,'Thueyts','France','FR','Thueyts (France)',1,1,0),(39430,0,139624,'Thurnau','Germany','DE','Thurnau (Germany)',1,1,0),(39431,0,139625,'Thyboron','Denmark','DK','Thyboron (Denmark)',1,1,0),(39432,0,139626,'Thyon 2001','Switzerland','CH','Thyon 2001 (Switzerland)',1,1,0),(39433,27249,139627,'Tiantai','China','CN','Tiantai (China)',1,1,0),(39434,0,139628,'Tiapalsaari','Finland','FI','Tiapalsaari (Finland)',1,1,0),(39435,0,139629,'Tibshelf','United Kingdom','UK','Tibshelf (United Kingdom)',1,1,0),(39436,27260,139630,'Tiedra','Spain','ES','Tiedra (Spain)',1,1,0),(39437,0,139631,'Tiefenbronn','Germany','DE','Tiefenbronn (Germany)',1,1,0),(39438,27262,139632,'Tiel','Netherlands','NL','Tiel (Netherlands)',1,1,0),(39439,0,139633,'Surmene','Turkey','TR','Surmene (Turkey)',1,1,0),(39440,26459,139634,'Sursee','Switzerland','CH','Sursee (Switzerland)',1,1,0),(39441,0,139635,'Susegana','Italy','IT','Susegana (Italy)',1,1,0),(39442,0,139636,'Sutton','United States of America','US','Sutton (United States of America)',1,1,0),(39443,26478,139637,'Suvereto','Italy','IT','Suvereto (Italy)',1,1,0),(39444,26479,139638,'Suwa','Japan','JP','Suwa (Japan)',1,1,0),(39445,0,139639,'Svarta Mustio','Finland','FI','Svarta Mustio (Finland)',1,1,0),(39446,0,139640,'Sventoji','Lithuania','LT','Sventoji (Lithuania)',1,1,0),(39447,0,139641,'Sveti Juraj','Croatia','HR','Sveti Juraj (Croatia)',1,1,0),(39448,0,139642,'Sveti Petar u Sumi','Croatia','HR','Sveti Petar u Sumi (Croatia)',1,1,0),(39449,26495,139643,'Sveti Vlas','Bulgaria','BG','Sveti Vlas (Bulgaria)',1,1,0),(39450,0,139644,'Svinadalur','Iceland','IS','Svinadalur (Iceland)',1,1,0),(39451,0,139645,'Svit','Slovakia','SK','Svit (Slovakia)',1,1,0),(39452,0,139646,'Svolv?r','Norway','NO','Svolv?r (Norway)',1,1,0),(39453,26507,139647,'Swainsboro','United States of America','US','Swainsboro (United States of America)',1,1,0),(39454,26523,139648,'Swedesboro','United States of America','US','Swedesboro (United States of America)',1,1,0),(39455,0,139649,'Swenigorod','Russia','RU','Swenigorod (Russia)',1,1,0),(39456,0,139650,'Swieradow Zdroj','Poland','PL','Swieradow Zdroj (Poland)',1,1,0),(39457,26537,139651,'Swords','Ireland','IE','Swords (Ireland)',1,1,0),(39458,26542,139652,'Syke','Germany','DE','Syke (Germany)',1,1,0),(39459,26547,139653,'Sylmar','United States of America','US','Sylmar (United States of America)',1,1,0),(39460,26549,139654,'Sylva','United States of America','US','Sylva (United States of America)',1,1,0),(39461,26551,139655,'Sylvan Lake','Canada','CA','Sylvan Lake (Canada)',1,1,0),(39462,26552,139656,'Sylvania','United States of America','US','Sylvania (United States of America)',1,1,0),(39463,0,139657,'Szaflary','Poland','PL','Szaflary (Poland)',1,1,0),(39464,0,139658,'Szczawno-Zdroj','Poland','PL','Szczawno-Zdroj (Poland)',1,1,0),(39465,0,139659,'Taghazout','Morocco','MA','Taghazout (Morocco)',1,1,0),(39466,0,139660,'Taglio-Isolaccio','France','FR','Taglio-Isolaccio (France)',1,1,0),(39467,26620,139661,'Tagoat','Ireland','IE','Tagoat (Ireland)',1,1,0),(39468,26632,139662,'Tai\'an','China','CN','Tai\'an (China)',1,1,0),(39469,26636,139663,'Taif','Saudi Arabia','SA','Taif (Saudi Arabia)',1,1,0),(39470,26643,139664,'Taipei','Taiwan','TW','Taipei (Taiwan)',1,1,0),(39471,0,139665,'Taishun','China','CN','Taishun (China)',1,1,0),(39472,0,139666,'Tajuya da Arriba','Spain','ES','Tajuya da Arriba (Spain)',1,1,0),(39473,26658,139667,'Tak','Thailand','TH','Tak (Thailand)',1,1,0),(39474,0,139668,'Takahama','Japan','JP','Takahama (Japan)',1,1,0),(39475,0,139670,'Talais','France','FR','Talais (France)',1,1,0),(39476,26688,139671,'Talcahuano','Chile','CL','Talcahuano (Chile)',1,1,0),(39477,0,139672,'Talisay','Philippines','PH','Talisay (Philippines)',1,1,0),(39478,26695,139673,'Talkeetna','United States of America','US','Talkeetna (United States of America)',1,1,0),(39479,26711,139674,'Talsi','Latvia','LV','Talsi (Latvia)',1,1,0),(39480,0,139675,'Talus-Saint-Prix','France','FR','Talus-Saint-Prix (France)',1,1,0),(39481,0,139676,'Taman Negara-National Park','Malaysia','MY','Taman Negara-National Park (Malaysia)',1,1,0),(39482,26723,139677,'Tamarac','United States of America','US','Tamarac (United States of America)',1,1,0),(39483,26734,139678,'Tambor','Costa Rica','CR','Tambor (Costa Rica)',1,1,0),(39484,0,139679,'Tanah Lot','Indonesia','ID','Tanah Lot (Indonesia)',1,1,0),(39485,0,139680,'Tanjung Benoa','Indonesia','ID','Tanjung Benoa (Indonesia)',1,1,0),(39486,0,139681,'Tarancon','Spain','ES','Tarancon (Spain)',1,1,0),(39487,0,139682,'Tarangire National Park','Tanzania','TZ','Tarangire National Park (Tanzania)',1,1,0),(39488,0,139683,'Tarco','France','FR','Tarco (France)',1,1,0),(39489,0,139684,'Targu Ocna','Romania','RO','Targu Ocna (Romania)',1,1,0),(39490,0,139685,'Tarporley','United Kingdom','UK','Tarporley (United Kingdom)',1,1,0),(39491,26855,139686,'Tarquinia','Italy','IT','Tarquinia (Italy)',1,1,0),(39492,26860,139687,'Tarraleah','Australia','AU','Tarraleah (Australia)',1,1,0),(39493,26863,139688,'Tarrytown','United States of America','US','Tarrytown (United States of America)',1,1,0),(39494,26866,139689,'Tartu','Estonia','EE','Tartu (Estonia)',1,1,0),(39495,0,139690,'Tarusa','Russia','RU','Tarusa (Russia)',1,1,0),(39496,0,139691,'Tasinge','Denmark','DK','Tasinge (Denmark)',1,1,0),(39497,0,139692,'Tat','Hungary','HU','Tat (Hungary)',1,1,0),(39498,26882,139693,'Tataouine','Tunisia','TN','Tataouine (Tunisia)',1,1,0),(39499,26884,139694,'Tatarszentgyorgy','Hungary','HU','Tatarszentgyorgy (Hungary)',1,1,0),(39500,0,139695,'Tatranska Lomnica','Slovakia','SK','Tatranska Lomnica (Slovakia)',1,1,0),(39501,26890,139696,'Tatvan','Turkey','TR','Tatvan (Turkey)',1,1,0),(39502,26896,139697,'Taulov','Denmark','DK','Taulov (Denmark)',1,1,0),(39503,26906,139698,'Tavarnuzze','Italy','IT','Tavarnuzze (Italy)',1,1,0),(39504,0,139700,'Tawangmangu','Indonesia','ID','Tawangmangu (Indonesia)',1,1,0),(39505,26916,139701,'Tawas City','United States of America','US','Tawas City (United States of America)',1,1,0),(39506,26917,139702,'Tawau','Malaysia','MY','Tawau (Malaysia)',1,1,0),(39507,0,139703,'Taylorsville','United States of America','US','Taylorsville (United States of America)',1,1,0),(39508,0,139704,'Tegal','Indonesia','ID','Tegal (Indonesia)',1,1,0),(39509,26949,139705,'Tegucigalpa','Honduras','HN','Tegucigalpa (Honduras)',1,1,0),(39510,26952,139706,'Tehran','Iran','IR','Tehran (Iran)',1,1,0),(39511,0,139707,'Teisendorf','Germany','DE','Teisendorf (Germany)',1,1,0),(39512,26965,139708,'Telde','Spain','ES','Telde (Spain)',1,1,0),(39513,0,139709,'Teluk Bahang','Malaysia','MY','Teluk Bahang (Malaysia)',1,1,0),(39514,0,139710,'Teluk Nibong','Malaysia','MY','Teluk Nibong (Malaysia)',1,1,0),(39515,0,139711,'Temega','Indonesia','ID','Temega (Indonesia)',1,1,0),(39516,26989,139712,'Tempe','United States of America','US','Tempe (United States of America)',1,1,0),(39517,0,139713,'Templecombe','United Kingdom','UK','Templecombe (United Kingdom)',1,1,0),(39518,0,139714,'Templeglantine','Ireland','IE','Templeglantine (Ireland)',1,1,0),(39519,0,139715,'Templepatrick','United Kingdom','UK','Templepatrick (United Kingdom)',1,1,0),(39520,27001,139716,'Temuco','Chile','CL','Temuco (Chile)',1,1,0),(39521,27002,139717,'Tenacatita','Mexico','MX','Tenacatita (Mexico)',1,1,0),(39522,0,139718,'Tenna','Switzerland','CH','Tenna (Switzerland)',1,1,0),(39523,27025,139719,'Tennenbronn','Germany','DE','Tennenbronn (Germany)',1,1,0),(39524,0,139720,'Tepla','Czech Republic','CZ','Tepla (Czech Republic)',1,1,0),(39525,27038,139721,'Tequesquitengo','Mexico','MX','Tequesquitengo (Mexico)',1,1,0),(39526,0,139722,'Termen','Switzerland','CH','Termen (Switzerland)',1,1,0),(39527,27061,139723,'Terneuzen','Netherlands','NL','Terneuzen (Netherlands)',1,1,0),(39528,0,139724,'Teror','Spain','ES','Teror (Spain)',1,1,0),(39529,0,139725,'Terra Nova National Park','Canada','CA','Terra Nova National Park (Canada)',1,1,0),(39530,27065,139726,'Terrace','Canada','CA','Terrace (Canada)',1,1,0),(39531,27069,139727,'Terrasini','Italy','IT','Terrasini (Italy)',1,1,0),(39532,27072,139728,'Terrebonne','Canada','CA','Terrebonne (Canada)',1,1,0),(39533,0,139729,'Teshikaga','Japan','JP','Teshikaga (Japan)',1,1,0),(39534,0,139730,'Testaccio','Italy','IT','Testaccio (Italy)',1,1,0),(39535,0,139731,'Tetbury','United Kingdom','UK','Tetbury (United Kingdom)',1,1,0),(39536,0,139732,'Tetela de Ocampo','Mexico','MX','Tetela de Ocampo (Mexico)',1,1,0),(39537,0,139733,'Teteven','Bulgaria','BG','Teteven (Bulgaria)',1,1,0),(39538,27098,139734,'Tetovo','Macedonia','MK','Tetovo (Macedonia)',1,1,0),(39539,0,139735,'Teutschenthal','Germany','DE','Teutschenthal (Germany)',1,1,0),(39540,27109,139736,'Tewksbury','United States of America','US','Tewksbury (United States of America)',1,1,0),(39541,27118,139737,'Tezze sul Brenta','Italy','IT','Tezze sul Brenta (Italy)',1,1,0),(39542,0,139738,'Thalpe','Sri Lanka','LK','Thalpe (Sri Lanka)',1,1,0),(39543,0,139739,'Tharandt','Germany','DE','Tharandt (Germany)',1,1,0),(39544,27143,139740,'Thassos','Greece','GR','Thassos (Greece)',1,1,0),(39545,0,139741,'The Hague','Netherlands','NL','The Hague (Netherlands)',1,1,0),(39546,33829,139742,'The Woodlands','United States of America','US','The Woodlands (United States of America)',1,1,0),(39547,0,139743,'Thee?en','Germany','DE','Thee?en (Germany)',1,1,0),(39548,27171,139745,'Thief River Falls','United States of America','US','Thief River Falls (United States of America)',1,1,0),(39549,27195,139746,'Thomson','United States of America','US','Thomson (United States of America)',1,1,0),(39550,0,139747,'Thouars','France','FR','Thouars (France)',1,1,0),(39551,0,139748,'Thropton','United Kingdom','UK','Thropton (United Kingdom)',1,1,0),(39552,0,139749,'Thuan An Town','Vietnam','VN','Thuan An Town (Vietnam)',1,1,0),(39553,0,139750,'Thuin','Belgium','BE','Thuin (Belgium)',1,1,0),(39554,0,139751,'Thusis','Switzerland','CH','Thusis (Switzerland)',1,1,0),(39555,0,139752,'Tiana','Spain','ES','Tiana (Spain)',1,1,0),(39556,0,139753,'Tibau do Sul','Brazil','BR','Tibau do Sul (Brazil)',1,1,0),(39557,0,139754,'Tielmes De Tajuna','Spain','ES','Tielmes De Tajuna (Spain)',1,1,0),(39558,0,139755,'Tienray','Netherlands','NL','Tienray (Netherlands)',1,1,0),(39559,0,139756,'Tiers','Italy','IT','Tiers (Italy)',1,1,0),(39560,0,139757,'Tigaday','Spain','ES','Tigaday (Spain)',1,1,0),(39561,0,139758,'Tigliole','Italy','IT','Tigliole (Italy)',1,1,0),(39562,0,139759,'Tinahely','Ireland','IE','Tinahely (Ireland)',1,1,0),(39563,0,139760,'Tipton St John','United Kingdom','UK','Tipton St John (United Kingdom)',1,1,0),(39564,27343,139761,'Tiradentes','Brazil','BR','Tiradentes (Brazil)',1,1,0),(39565,0,139762,'Tirol Village','Italy','IT','Tirol Village (Italy)',1,1,0),(39566,27356,139763,'Tisdale','Canada','CA','Tisdale (Canada)',1,1,0),(39567,27360,139764,'Tiszaujvaros','Hungary','HU','Tiszaujvaros (Hungary)',1,1,0),(39568,27370,139765,'Titreyengol','Turkey','TR','Titreyengol (Turkey)',1,1,0),(39569,0,139766,'Tittling','Germany','DE','Tittling (Germany)',1,1,0),(39570,27388,139767,'Toba','Japan','JP','Toba (Japan)',1,1,0),(39571,0,139768,'Toftlund','Denmark','DK','Toftlund (Denmark)',1,1,0),(39572,0,139769,'Togian Islands','Indonesia','ID','Togian Islands (Indonesia)',1,1,0),(39573,27419,139770,'Tokoname','Japan','JP','Tokoname (Japan)',1,1,0),(39574,0,139771,'Tolkamer','Netherlands','NL','Tolkamer (Netherlands)',1,1,0),(39575,27446,139772,'Tom Price','Australia','AU','Tom Price (Australia)',1,1,0),(39576,0,139773,'Tomelloso','Spain','ES','Tomelloso (Spain)',1,1,0),(39577,0,139774,'Tondoba Bay','Egypt','EG','Tondoba Bay (Egypt)',1,1,0),(39578,27473,139775,'Tongeren','Belgium','BE','Tongeren (Belgium)',1,1,0),(39579,27476,139776,'Tongliao','China','CN','Tongliao (China)',1,1,0),(39580,0,139777,'Tonglu','China','CN','Tonglu (China)',1,1,0),(39581,27490,139778,'Tooleybuc','Australia','AU','Tooleybuc (Australia)',1,1,0),(39582,0,139779,'Toora','Australia','AU','Toora (Australia)',1,1,0),(39583,0,139780,'Topes de Collantes','Cuba','CU','Topes de Collantes (Cuba)',1,1,0),(39584,0,139781,'Torbel','Switzerland','CH','Torbel (Switzerland)',1,1,0),(39585,27515,139782,'Tordandrea','Italy','IT','Tordandrea (Italy)',1,1,0),(39586,0,139783,'Tornesch','Germany','DE','Tornesch (Germany)',1,1,0),(39587,0,139784,'Torre de Moncorvo','Portugal','PT','Torre de Moncorvo (Portugal)',1,1,0),(39588,0,139785,'Torre de Santa Maria','Spain','ES','Torre de Santa Maria (Spain)',1,1,0),(39589,33855,139786,'Torre del Compte','Spain','ES','Torre del Compte (Spain)',1,1,0),(39590,0,139787,'Torre del Lago','Italy','IT','Torre del Lago (Italy)',1,1,0),(39591,0,139788,'Torre dell\'Inserraglio','Italy','IT','Torre dell\'Inserraglio (Italy)',1,1,0),(39592,0,139789,'Torreglia','Italy','IT','Torreglia (Italy)',1,1,0),(39593,27544,139790,'Torrellano','Spain','ES','Torrellano (Spain)',1,1,0),(39594,27554,139791,'Torres Novas','Portugal','PT','Torres Novas (Portugal)',1,1,0),(39595,27576,139792,'Tortosa','Spain','ES','Tortosa (Spain)',1,1,0),(39596,27578,139793,'Torun','Poland','PL','Torun (Poland)',1,1,0),(39597,0,139794,'Touffreville','France','FR','Touffreville (France)',1,1,0),(39598,27612,139795,'Tournon','France','FR','Tournon (France)',1,1,0),(39599,0,139796,'Tournon-Saint-Martin','France','FR','Tournon-Saint-Martin (France)',1,1,0),(39600,27616,139797,'Tourrettes','France','FR','Tourrettes (France)',1,1,0),(39601,0,139798,'Towradgi','Australia','AU','Towradgi (Australia)',1,1,0),(39602,27643,139799,'Tracy','United States of America','US','Tracy (United States of America)',1,1,0),(39603,0,139800,'Tracy-sur-Mer','France','FR','Tracy-sur-Mer (France)',1,1,0),(39604,27646,139801,'Tragaki','Greece','GR','Tragaki (Greece)',1,1,0),(39605,0,139802,'Trakata','Bulgaria','BG','Trakata (Bulgaria)',1,1,0),(39606,0,139803,'Tramacastilla','Spain','ES','Tramacastilla (Spain)',1,1,0),(39607,27656,139804,'Trancoso','Brazil','BR','Trancoso (Brazil)',1,1,0),(39608,27661,139805,'Trapani','Italy','IT','Trapani (Italy)',1,1,0),(39609,27674,139806,'Traunstein','Germany','DE','Traunstein (Germany)',1,1,0),(39610,0,139807,'Travancas','Portugal','PT','Travancas (Portugal)',1,1,0),(39611,0,139808,'Trebiz','Czech Republic','CZ','Trebiz (Czech Republic)',1,1,0),(39612,27702,139809,'Trecenta','Italy','IT','Trecenta (Italy)',1,1,0),(39613,0,139810,'Treffgarne','United Kingdom','UK','Treffgarne (United Kingdom)',1,1,0),(39614,27723,139811,'Tremolat','France','FR','Tremolat (France)',1,1,0),(39615,0,139812,'Trenkwald','Austria','AT','Trenkwald (Austria)',1,1,0),(39616,0,139813,'Trepunti di Giarre','Italy','IT','Trepunti di Giarre (Italy)',1,1,0),(39617,0,139814,'Trest','Czech Republic','CZ','Trest (Czech Republic)',1,1,0),(39618,0,139815,'Trieben','Austria','AT','Trieben (Austria)',1,1,0),(39619,27765,139816,'Trieste','Italy','IT','Trieste (Italy)',1,1,0),(39620,0,139817,'Trikeri','Greece','GR','Trikeri (Greece)',1,1,0),(39621,0,139818,'Tring','United Kingdom','UK','Tring (United Kingdom)',1,1,0),(39622,0,139819,'Trippstadt','Germany','DE','Trippstadt (Germany)',1,1,0),(39623,0,139821,'Trogen','Switzerland','CH','Trogen (Switzerland)',1,1,0),(39624,0,139822,'Trois-Rives','Canada','CA','Trois-Rives (Canada)',1,1,0),(39625,27805,139823,'Trojane','Slovenia','SI','Trojane (Slovenia)',1,1,0),(39626,0,139824,'Trowbridge','United Kingdom','UK','Trowbridge (United Kingdom)',1,1,0),(39627,27834,139825,'Trujillo','Spain','ES','Trujillo (Spain)',1,1,0),(39628,0,139826,'Trusetal','Germany','DE','Trusetal (Germany)',1,1,0),(39629,27843,139827,'Truskavets','Ukraine','UA','Truskavets (Ukraine)',1,1,0),(39630,27847,139828,'Tryon','United States of America','US','Tryon (United States of America)',1,1,0),(39631,0,139829,'Trzesacz','Poland','PL','Trzesacz (Poland)',1,1,0),(39632,0,139830,'Tsavo West National Park','Kenya','KE','Tsavo West National Park (Kenya)',1,1,0),(39633,0,139831,'Tscherkassy','Ukraine','UA','Tscherkassy (Ukraine)',1,1,0),(39634,0,139832,'Tsingtau (Qingdao)','China','CN','Tsingtau (Qingdao) (China)',1,1,0),(39635,0,139833,'Tsitsikamma','South Africa','ZA','Tsitsikamma (South Africa)',1,1,0),(39636,0,139834,'Tsumkwe','Namibia','NA','Tsumkwe (Namibia)',1,1,0),(39637,27904,139835,'Tukwila','United States of America','US','Tukwila (United States of America)',1,1,0),(39638,27909,139836,'Tulare','United States of America','US','Tulare (United States of America)',1,1,0),(39639,27912,139837,'Tulcea','Romania','RO','Tulcea (Romania)',1,1,0),(39640,0,139838,'Tuli Block','South Africa','ZA','Tuli Block (South Africa)',1,1,0),(39641,27918,139839,'Tullah','Australia','AU','Tullah (Australia)',1,1,0),(39642,0,139840,'Tume','Latvia','LV','Tume (Latvia)',1,1,0),(39643,27953,139841,'Tuoro sul Trasimeno','Italy','IT','Tuoro sul Trasimeno (Italy)',1,1,0),(39644,0,139842,'Turcianske Teplice','Slovakia','SK','Turcianske Teplice (Slovakia)',1,1,0),(39645,0,139843,'turk. Ustrumca','Macedonia','MK','turk. Ustrumca (Macedonia)',1,1,0),(39646,27983,139844,'Turrialba','Costa Rica','CR','Turrialba (Costa Rica)',1,1,0),(39647,27999,139845,'Tuskegee','United States of America','US','Tuskegee (United States of America)',1,1,0),(39648,0,139846,'Tutukaka','New Zealand','NZ','Tutukaka (New Zealand)',1,1,0),(39649,28004,139847,'Tuulos','Finland','FI','Tuulos (Finland)',1,1,0),(39650,0,139848,'Tuyen Quang','Vietnam','VN','Tuyen Quang (Vietnam)',1,1,0),(39651,0,139849,'Tver','Russia','RU','Tver (Russia)',1,1,0),(39652,0,139850,'Twee Rivieren','South Africa','ZA','Twee Rivieren (South Africa)',1,1,0),(39653,0,139851,'Tweed Heads','Australia','AU','Tweed Heads (Australia)',1,1,0),(39654,33877,139852,'Two Rivers','United States of America','US','Two Rivers (United States of America)',1,1,0),(39655,0,139853,'Tyrvanto','Finland','FI','Tyrvanto (Finland)',1,1,0),(39656,0,139854,'Tywyn','United Kingdom','UK','Tywyn (United Kingdom)',1,1,0),(39657,0,139855,'Ubelbach','Austria','AT','Ubelbach (Austria)',1,1,0),(39658,0,139856,'Ubersee','Germany','DE','Ubersee (Germany)',1,1,0),(39659,0,139857,'Ubrique','Spain','ES','Ubrique (Spain)',1,1,0),(39660,26376,139858,'Summerton','United States of America','US','Summerton (United States of America)',1,1,0),(39661,33774,139859,'Summit','United States of America','US','Summit (United States of America)',1,1,0),(39662,0,139860,'Sunbury','United States of America','US','Sunbury (United States of America)',1,1,0),(39663,0,139861,'Sunderland','United Kingdom','UK','Sunderland (United Kingdom)',1,1,0),(39664,0,139862,'Sundre','Canada','CA','Sundre (Canada)',1,1,0),(39665,0,139863,'Sungai Petani','Malaysia','MY','Sungai Petani (Malaysia)',1,1,0),(39666,26414,139864,'Sunset','United States of America','US','Sunset (United States of America)',1,1,0),(39667,0,139865,'Sunshine Coast','Australia','AU','Sunshine Coast (Australia)',1,1,0),(39668,0,139866,'Superior','United States of America','US','Superior (United States of America)',1,1,0),(39669,26432,139867,'Suqian','China','CN','Suqian (China)',1,1,0),(39670,26445,139868,'Surfers Paradise','Australia','AU','Surfers Paradise (Australia)',1,1,0),(39671,26457,139869,'Surrey','Canada','CA','Surrey (Canada)',1,1,0),(39672,26463,139870,'Sussex','Canada','CA','Sussex (Canada)',1,1,0),(39673,0,139871,'Sutton Forest','Australia','AU','Sutton Forest (Australia)',1,1,0),(39674,26476,139872,'Suva','Fiji Islands','FJ','Suva (Fiji Islands)',1,1,0),(39675,26488,139873,'Svaneke','Denmark','DK','Svaneke (Denmark)',1,1,0),(39676,26492,139874,'Svendborg','Denmark','DK','Svendborg (Denmark)',1,1,0),(39677,0,139875,'Sveti Kirin','Croatia','HR','Sveti Kirin (Croatia)',1,1,0),(39678,0,139876,'Svratka','Czech Republic','CZ','Svratka (Czech Republic)',1,1,0),(39679,26511,139877,'Swan Hill','Australia','AU','Swan Hill (Australia)',1,1,0),(39680,0,139878,'Swansea','United Kingdom','UK','Swansea (United Kingdom)',1,1,0),(39681,0,139879,'Swinford','Ireland','IE','Swinford (Ireland)',1,1,0),(39682,0,139880,'Sydkoster','Sweden','SE','Sydkoster (Sweden)',1,1,0),(39683,26545,139881,'Sylacauga','United States of America','US','Sylacauga (United States of America)',1,1,0),(39684,26559,139882,'Syosset','United States of America','US','Syosset (United States of America)',1,1,0),(39685,0,139883,'Szczecin','Poland','PL','Szczecin (Poland)',1,1,0),(39686,0,139884,'Szelkow','Poland','PL','Szelkow (Poland)',1,1,0),(39687,0,139885,'Szprotawa','Poland','PL','Szprotawa (Poland)',1,1,0),(39688,0,139886,'Sztutowo','Poland','PL','Sztutowo (Poland)',1,1,0),(39689,26586,139887,'Taber','Canada','CA','Taber (Canada)',1,1,0),(39690,26587,139888,'Tabernas','Spain','ES','Tabernas (Spain)',1,1,0),(39691,26596,139889,'Tabuk','Saudi Arabia','SA','Tabuk (Saudi Arabia)',1,1,0),(39692,0,139890,'Taggia','Italy','IT','Taggia (Italy)',1,1,0),(39693,0,139891,'Tagliolo Monferrato','Italy','IT','Tagliolo Monferrato (Italy)',1,1,0),(39694,0,139892,'Taguig City','Philippines','PH','Taguig City (Philippines)',1,1,0),(39695,0,139893,'Tahanaout','Morocco','MA','Tahanaout (Morocco)',1,1,0),(39696,26627,139894,'Tahoma','United States of America','US','Tahoma (United States of America)',1,1,0),(39697,26637,139895,'Taihape','New Zealand','NZ','Taihape (New Zealand)',1,1,0),(39698,0,139896,'Tain','United Kingdom','UK','Tain (United Kingdom)',1,1,0),(39699,26640,139897,'Tain-l\'Hermitage','France','FR','Tain-l\'Hermitage (France)',1,1,0),(39700,26649,139898,'Tairua','New Zealand','NZ','Tairua (New Zealand)',1,1,0),(39701,26665,139899,'Takarazuka','Japan','JP','Takarazuka (Japan)',1,1,0),(39702,26678,139900,'Talamanca','Spain','ES','Talamanca (Spain)',1,1,0),(39703,26679,139901,'Talamone','Italy','IT','Talamone (Italy)',1,1,0),(39704,26685,139902,'Talayuela','Spain','ES','Talayuela (Spain)',1,1,0),(39705,0,139903,'Talmont-sur-Gironde','France','FR','Talmont-sur-Gironde (France)',1,1,0),(39706,0,139904,'Talsano','Italy','IT','Talsano (Italy)',1,1,0),(39707,0,139905,'Talty','Poland','PL','Talty (Poland)',1,1,0),(39708,26725,139906,'Tamarin','Mauritius','MU','Tamarin (Mauritius)',1,1,0),(39709,0,139907,'Tambach-Dietharz','Germany','DE','Tambach-Dietharz (Germany)',1,1,0),(39710,0,139908,'Tambow','Russia','RU','Tambow (Russia)',1,1,0),(39711,0,139909,'Tamerza','Tunisia','TN','Tamerza (Tunisia)',1,1,0),(39712,26748,139910,'Tamworth','Australia','AU','Tamworth (Australia)',1,1,0),(39713,0,139911,'Tanganjikasee','Tanzania','TZ','Tanganjikasee (Tanzania)',1,1,0),(39714,0,139912,'Tanger','Morocco','MA','Tanger (Morocco)',1,1,0),(39715,26773,139913,'Tangerang','Indonesia','ID','Tangerang (Indonesia)',1,1,0),(39716,0,139914,'Tanjong Malim','Malaysia','MY','Tanjong Malim (Malaysia)',1,1,0),(39717,0,139915,'Tanjung Ringgit','Indonesia','ID','Tanjung Ringgit (Indonesia)',1,1,0),(39718,0,139916,'Tanjung Tabalong','Indonesia','ID','Tanjung Tabalong (Indonesia)',1,1,0),(39719,0,139917,'Tann','Germany','DE','Tann (Germany)',1,1,0),(39720,26790,139918,'Tannheim','Austria','AT','Tannheim (Austria)',1,1,0),(39721,0,139919,'Tanumshede','Sweden','SE','Tanumshede (Sweden)',1,1,0),(39722,0,139920,'Tapia de Casariego','Spain','ES','Tapia de Casariego (Spain)',1,1,0),(39723,26828,139921,'Taree','Australia','AU','Taree (Australia)',1,1,0),(39724,26832,139922,'Targu Mures','Romania','RO','Targu Mures (Romania)',1,1,0),(39725,0,139923,'Targu Neamt','Romania','RO','Targu Neamt (Romania)',1,1,0),(39726,26840,139924,'Tarm','Denmark','DK','Tarm (Denmark)',1,1,0),(39727,0,139925,'Tarmstedt','Germany','DE','Tarmstedt (Germany)',1,1,0),(39728,0,139926,'Tartous','Syria',NULL,'Tartous (Syria)',1,1,0),(39729,0,139927,'Tar-Vabriga','Croatia','HR','Tar-Vabriga (Croatia)',1,1,0),(39730,26876,139928,'Tassin-la-Demi-Lune','France','FR','Tassin-la-Demi-Lune (France)',1,1,0),(39731,0,139929,'Tatajuba','Brazil','BR','Tatajuba (Brazil)',1,1,0),(39732,0,139930,'Tauer','Germany','DE','Tauer (Germany)',1,1,0),(39733,26909,139931,'Tavernier','United States of America','US','Tavernier (United States of America)',1,1,0),(39734,0,139932,'Taxiarchis','Greece','GR','Taxiarchis (Greece)',1,1,0),(39735,26924,139933,'Taylorville','United States of America','US','Taylorville (United States of America)',1,1,0),(39736,33799,139934,'Te Horo','New Zealand','NZ','Te Horo (New Zealand)',1,1,0),(39737,0,139935,'Techirghiol','Romania','RO','Techirghiol (Romania)',1,1,0),(39738,0,139936,'Tegna','Switzerland','CH','Tegna (Switzerland)',1,1,0),(39739,0,139937,'Tegueste','Spain','ES','Tegueste (Spain)',1,1,0),(39740,0,139938,'Teis','Italy','IT','Teis (Italy)',1,1,0),(39741,26961,139939,'Tel Aviv','Israel','IL','Tel Aviv (Israel)',1,1,0),(39742,26963,139940,'Telc','Czech Republic','CZ','Telc (Czech Republic)',1,1,0),(39743,0,139941,'Tella-Sin','Spain','ES','Tella-Sin (Spain)',1,1,0),(39744,26980,139942,'Temara','Morocco','MA','Temara (Morocco)',1,1,0),(39745,0,139943,'Tembilahan','Indonesia','ID','Tembilahan (Indonesia)',1,1,0),(39746,0,139944,'Temple Hills','United States of America','US','Temple Hills (United States of America)',1,1,0),(39747,27008,139945,'Tence','France','FR','Tence (France)',1,1,0),(39748,27029,139946,'Tenterfield','Australia','AU','Tenterfield (Australia)',1,1,0),(39749,0,139947,'Terborg','Netherlands','NL','Terborg (Netherlands)',1,1,0),(39750,0,139948,'Terchova','Slovakia','SK','Terchova (Slovakia)',1,1,0),(39751,0,139949,'Terenten','Italy','IT','Terenten (Italy)',1,1,0),(39752,0,139950,'Tergu','Italy','IT','Tergu (Italy)',1,1,0),(39753,0,139951,'Ternate Island','Indonesia','ID','Ternate Island (Indonesia)',1,1,0),(39754,0,139952,'Ternay','France','FR','Ternay (France)',1,1,0),(39755,27066,139953,'Terracina','Italy','IT','Terracina (Italy)',1,1,0),(39756,33809,139954,'Terre Haute','United States of America','US','Terre Haute (United States of America)',1,1,0),(39757,33811,139955,'Terre Hill','United States of America','US','Terre Hill (United States of America)',1,1,0),(39758,0,139956,'Terskol','Russia','RU','Terskol (Russia)',1,1,0),(39759,27082,139957,'Teruel','Spain','ES','Teruel (Spain)',1,1,0),(39760,0,139958,'Tervuren','Belgium','BE','Tervuren (Belgium)',1,1,0),(39761,0,139959,'Teuven','Belgium','BE','Teuven (Belgium)',1,1,0),(39762,27106,139960,'Teverga','Spain','ES','Teverga (Spain)',1,1,0),(39763,0,139961,'Tha Mai Ruak','Thailand','TH','Tha Mai Ruak (Thailand)',1,1,0),(39764,0,139962,'Tha Sao','Thailand','TH','Tha Sao (Thailand)',1,1,0),(39765,27125,139963,'Thalang','Thailand','TH','Thalang (Thailand)',1,1,0),(39766,27128,139964,'Thalgau','Austria','AT','Thalgau (Austria)',1,1,0),(39767,0,139965,'Thamal','Nepal','NP','Thamal (Nepal)',1,1,0),(39768,27133,139966,'Thames','New Zealand','NZ','Thames (New Zealand)',1,1,0),(39769,33820,139967,'The Entrance','Australia','AU','The Entrance (Australia)',1,1,0),(39770,33828,139968,'The Vines','Australia','AU','The Vines (Australia)',1,1,0),(39771,0,139969,'Thermalbad Wiesenbad','Germany','DE','Thermalbad Wiesenbad (Germany)',1,1,0),(39772,0,139970,'Thonac','France','FR','Thonac (France)',1,1,0),(39773,26785,139971,'Tanna Island','Vanuatu','VU','Tanna Island (Vanuatu)',1,1,0),(39774,0,139972,'Tannenberg (Sachsen)','Germany','DE','Tannenberg (Sachsen) (Germany)',1,1,0),(39775,26810,139973,'Taramundi','Spain','ES','Taramundi (Spain)',1,1,0),(39776,26826,139975,'Tarcal','Hungary','HU','Tarcal (Hungary)',1,1,0),(39777,26839,139976,'Tarlac','Philippines','PH','Tarlac (Philippines)',1,1,0),(39778,0,139977,'Tarnos','France','FR','Tarnos (France)',1,1,0),(39779,0,139978,'Tarpon Springs','United States of America','US','Tarpon Springs (United States of America)',1,1,0),(39780,0,139979,'Tarrenz','Austria','AT','Tarrenz (Austria)',1,1,0),(39781,0,139980,'Taugwitz','Germany','DE','Taugwitz (Germany)',1,1,0),(39782,0,139981,'Taunton','United States of America','US','Taunton (United States of America)',1,1,0),(39783,0,139982,'Taupo','New Zealand','NZ','Taupo (New Zealand)',1,1,0),(39784,26904,139983,'Tavares','United States of America','US','Tavares (United States of America)',1,1,0),(39785,0,139984,'Tavarnelle-Fiano','Italy','IT','Tavarnelle-Fiano (Italy)',1,1,0),(39786,0,139985,'Tavistock','United Kingdom','UK','Tavistock (United Kingdom)',1,1,0),(39787,0,139986,'Tczew','Poland','PL','Tczew (Poland)',1,1,0),(39788,0,139987,'Tea Gardens','Australia','AU','Tea Gardens (Australia)',1,1,0),(39789,26934,139988,'Teba','Spain','ES','Teba (Spain)',1,1,0),(39790,26939,139989,'Tecklenburg','Germany','DE','Tecklenburg (Germany)',1,1,0),(39791,0,139990,'Teddington','United Kingdom','UK','Teddington (United Kingdom)',1,1,0),(39792,26946,139991,'Tegallalang','Indonesia','ID','Tegallalang (Indonesia)',1,1,0),(39793,26967,139992,'Telemark','Norway','NO','Telemark (Norway)',1,1,0),(39794,0,139993,'Telkwa','Canada','CA','Telkwa (Canada)',1,1,0),(39795,0,139994,'Temiscouata-sur-le-Lac','Canada','CA','Temiscouata-sur-le-Lac (Canada)',1,1,0),(39796,0,139995,'Temny Dul','Czech Republic','CZ','Temny Dul (Czech Republic)',1,1,0),(39797,26992,139996,'Temple','United States of America','US','Temple (United States of America)',1,1,0),(39798,0,139997,'Templeogue','Ireland','IE','Templeogue (Ireland)',1,1,0),(39799,0,139998,'Tena','Ecuador','EC','Tena (Ecuador)',1,1,0),(39800,27022,139999,'Tengchong','China','CN','Tengchong (China)',1,1,0),(39801,0,140000,'Tenna','Italy','IT','Tenna (Italy)',1,1,0),(39802,0,140001,'Tenneville','Belgium','BE','Tenneville (Belgium)',1,1,0),(39803,0,140002,'Tenteniguada','Spain','ES','Tenteniguada (Spain)',1,1,0),(39804,0,140003,'Terceira',NULL,NULL,'Terceira ()',1,1,0),(39805,0,140004,'Terenure','Ireland','IE','Terenure (Ireland)',1,1,0),(39806,27045,140005,'Teresina','Brazil','BR','Teresina (Brazil)',1,1,0),(39807,27047,140006,'Teresopolis','Brazil','BR','Teresopolis (Brazil)',1,1,0),(39808,0,140007,'Terni','Italy','IT','Terni (Italy)',1,1,0),(39809,0,140008,'Terras de Bouro','Portugal','PT','Terras de Bouro (Portugal)',1,1,0),(39810,0,140009,'Terrasson-Lavilledieu','France','FR','Terrasson-Lavilledieu (France)',1,1,0),(39811,27075,140010,'Terricciola','Italy','IT','Terricciola (Italy)',1,1,0),(39812,27076,140011,'Terrigal','Australia','AU','Terrigal (Australia)',1,1,0),(39813,0,140012,'Terryglass','Ireland','IE','Terryglass (Ireland)',1,1,0),(39814,0,140013,'Terschelling Island','Netherlands','NL','Terschelling Island (Netherlands)',1,1,0),(39815,27085,140014,'Tesero','Italy','IT','Tesero (Italy)',1,1,0),(39816,0,140015,'Tetebatu','Indonesia','ID','Tetebatu (Indonesia)',1,1,0),(39817,27104,140016,'Teulada','Italy','IT','Teulada (Italy)',1,1,0),(39818,0,140017,'Texingtal','Austria','AT','Texingtal (Austria)',1,1,0),(39819,27122,140018,'Thackerville','United States of America','US','Thackerville (United States of America)',1,1,0),(39820,0,140019,'Thal am Bodensee','Switzerland','CH','Thal am Bodensee (Switzerland)',1,1,0),(39821,33818,140021,'The Colony','United States of America','US','The Colony (United States of America)',1,1,0),(39822,27163,140022,'Thermopolis','United States of America','US','Thermopolis (United States of America)',1,1,0),(39823,27167,140023,'Thetford Mines','Canada','CA','Thetford Mines (Canada)',1,1,0),(39824,0,140024,'Theux','Belgium','BE','Theux (Belgium)',1,1,0),(39825,27170,140025,'Thibodaux','United States of America','US','Thibodaux (United States of America)',1,1,0),(39826,0,140026,'Thiefosse','France','FR','Thiefosse (France)',1,1,0),(39827,0,140027,'Thirsk','United Kingdom','UK','Thirsk (United Kingdom)',1,1,0),(39828,27193,140028,'Thompson','Canada','CA','Thompson (Canada)',1,1,0),(39829,27213,140029,'Thornton','United States of America','US','Thornton (United States of America)',1,1,0),(39830,27226,140030,'Three Hills','Canada','CA','Three Hills (Canada)',1,1,0),(39831,0,140031,'Three Rivers','United States of America','US','Three Rivers (United States of America)',1,1,0),(39832,27240,140033,'Thurmont','United States of America','US','Thurmont (United States of America)',1,1,0),(39833,0,140034,'Thursford','United Kingdom','UK','Thursford (United Kingdom)',1,1,0),(39834,0,140035,'Thyrnau','Germany','DE','Thyrnau (Germany)',1,1,0),(39835,0,140036,'Tierra Dorada','Spain','ES','Tierra Dorada (Spain)',1,1,0),(39836,27283,140037,'Tijuana','Mexico','MX','Tijuana (Mexico)',1,1,0),(39837,27294,140038,'Tillamook','United States of America','US','Tillamook (United States of America)',1,1,0),(39838,27299,140039,'Tilques','France','FR','Tilques (France)',1,1,0),(39839,27324,140040,'Tingsryd','Sweden','SE','Tingsryd (Sweden)',1,1,0),(39840,27325,140041,'Tinian','Northern Mariana Islands','MP','Tinian (Northern Mariana Islands)',1,1,0),(39841,0,140042,'Tinizong','Switzerland','CH','Tinizong (Switzerland)',1,1,0),(39842,0,140043,'Tinjan','Croatia','HR','Tinjan (Croatia)',1,1,0),(39843,33841,140044,'Tinos','Greece','GR','Tinos (Greece)',1,1,0),(39844,27332,140045,'Tinteniac','France','FR','Tinteniac (France)',1,1,0),(39845,27338,140046,'Tipperary','Ireland','IE','Tipperary (Ireland)',1,1,0),(39846,0,140047,'Tiree','United Kingdom','UK','Tiree (United Kingdom)',1,1,0),(39847,0,140048,'Tisvildeleje','Denmark','DK','Tisvildeleje (Denmark)',1,1,0),(39848,27409,140049,'Todtmoos','Germany','DE','Todtmoos (Germany)',1,1,0),(39849,0,140050,'Tofta','Sweden','SE','Tofta (Sweden)',1,1,0),(39850,0,140051,'Toiano','Italy','IT','Toiano (Italy)',1,1,0),(39851,27422,140052,'Tokoriki Island','Fiji Islands','FJ','Tokoriki Island (Fiji Islands)',1,1,0),(39852,0,140053,'Tola','Nicaragua','NI','Tola (Nicaragua)',1,1,0),(39853,0,140054,'Toledo','Brazil','BR','Toledo (Brazil)',1,1,0),(39854,0,140055,'Toloriu','Spain','ES','Toloriu (Spain)',1,1,0),(39855,0,140056,'Tomino','Spain','ES','Tomino (Spain)',1,1,0),(39856,27461,140057,'Tonami','Japan','JP','Tonami (Japan)',1,1,0),(39857,27478,140058,'Tongren','China','CN','Tongren (China)',1,1,0),(39858,27488,140059,'Tonsberg','Norway','NO','Tonsberg (Norway)',1,1,0),(39859,27489,140060,'Tooele','United States of America','US','Tooele (United States of America)',1,1,0),(39860,27495,140061,'Topas','Spain','ES','Topas (Spain)',1,1,0),(39861,0,140062,'Topid','Croatia','HR','Topid (Croatia)',1,1,0),(39862,0,140063,'Toreboda','Sweden','SE','Toreboda (Sweden)',1,1,0),(39863,0,140064,'Torre del Orso','Italy','IT','Torre del Orso (Italy)',1,1,0),(39864,0,140065,'Torre San Giovanni','Italy','IT','Torre San Giovanni (Italy)',1,1,0),(39865,0,140066,'Torrelles De Foix','Spain','ES','Torrelles De Foix (Spain)',1,1,0),(39866,27548,140067,'Torrent','Spain','ES','Torrent (Spain)',1,1,0),(39867,27552,140068,'Torres','Brazil','BR','Torres (Brazil)',1,1,0),(39868,27563,140069,'Torring','Denmark','DK','Torring (Denmark)',1,1,0),(39869,27564,140070,'Torrington','United States of America','US','Torrington (United States of America)',1,1,0),(39870,27568,140071,'Torsby','Sweden','SE','Torsby (Sweden)',1,1,0),(39871,27569,140072,'Torshavn','Faroe Islands','FO','Torshavn (Faroe Islands)',1,1,0),(39872,0,140073,'Toscanella di Dozza','Italy','IT','Toscanella di Dozza (Italy)',1,1,0),(39873,27586,140074,'Tossens','Germany','DE','Tossens (Germany)',1,1,0),(39874,27595,140075,'Toubacouta','Senegal','SN','Toubacouta (Senegal)',1,1,0),(39875,27611,140076,'Tournefeuille','France','FR','Tournefeuille (France)',1,1,0),(39876,27617,140077,'Tourrettes-sur-Loup','France','FR','Tourrettes-sur-Loup (France)',1,1,0),(39877,0,140078,'Traben-Trabach','Germany','DE','Traben-Trabach (Germany)',1,1,0),(39878,0,140079,'Traismauer','Austria','AT','Traismauer (Austria)',1,1,0),(39879,27652,140080,'Tramonti','Italy','IT','Tramonti (Italy)',1,1,0),(39880,0,140081,'Trancoso','Portugal','PT','Trancoso (Portugal)',1,1,0),(39881,27924,140082,'Tullow','Ireland','IE','Tullow (Ireland)',1,1,0),(39882,27925,140083,'Tully','United States of America','US','Tully (United States of America)',1,1,0),(39883,0,140084,'Tuna','Spain','ES','Tuna (Spain)',1,1,0),(39884,27954,140085,'Tupelo','United States of America','US','Tupelo (United States of America)',1,1,0),(39885,0,140086,'Turnau','Austria','AT','Turnau (Austria)',1,1,0),(39886,0,140087,'Turnov','Czech Republic','CZ','Turnov (Czech Republic)',1,1,0),(39887,27982,140088,'Turracher Hohe','Austria','AT','Turracher Hohe (Austria)',1,1,0),(39888,28003,140089,'Tuttlingen','Germany','DE','Tuttlingen (Germany)',1,1,0),(39889,28012,140090,'Tuzla','Bosnia and Herzegowina','BA','Tuzla (Bosnia and Herzegowina)',1,1,0),(39890,28014,140091,'Twain Harte','United States of America','US','Twain Harte (United States of America)',1,1,0),(39891,0,140092,'Tyrrel Bay','St. Vincent & the Grenadines','VC','Tyrrel Bay (St. Vincent & the Grenadines)',1,1,0),(39892,0,140093,'Tzamarelata','Greece','GR','Tzamarelata (Greece)',1,1,0),(39893,28045,140094,'Tzintzuntzan','Mexico','MX','Tzintzuntzan (Mexico)',1,1,0),(39894,28049,140095,'Ubeda','Spain','ES','Ubeda (Spain)',1,1,0),(39895,28051,140096,'Uberlandia','Brazil','BR','Uberlandia (Brazil)',1,1,0),(39896,28054,140097,'Uchisar','Turkey','TR','Uchisar (Turkey)',1,1,0),(39897,28057,140099,'Ucluelet','Canada','CA','Ucluelet (Canada)',1,1,0),(39898,0,140100,'Udawalawe','Sri Lanka','LK','Udawalawe (Sri Lanka)',1,1,0),(39899,28069,140101,'Ueckermunde','Germany','DE','Ueckermunde (Germany)',1,1,0),(39900,28071,140102,'Ueda','Japan','JP','Ueda (Japan)',1,1,0),(39901,28072,140103,'Uelzen','Germany','DE','Uelzen (Germany)',1,1,0),(39902,0,140104,'Uffenheim','Germany','DE','Uffenheim (Germany)',1,1,0),(39903,0,140105,'Uffing am Staffelsee','Germany','DE','Uffing am Staffelsee (Germany)',1,1,0),(39904,0,140106,'Uggiate-Trevano','Italy','IT','Uggiate-Trevano (Italy)',1,1,0),(39905,28085,140107,'Ukiah','United States of America','US','Ukiah (United States of America)',1,1,0),(39906,0,140108,'Uleila del Campo','Spain','ES','Uleila del Campo (Spain)',1,1,0),(39907,0,140109,'Ulmen','Germany','DE','Ulmen (Germany)',1,1,0),(39908,28113,140110,'Ulverstone','Australia','AU','Ulverstone (Australia)',1,1,0),(39909,0,140111,'Umag-Savudrija','Croatia','HR','Umag-Savudrija (Croatia)',1,1,0),(39910,28122,140112,'Umbertide','Italy','IT','Umbertide (Italy)',1,1,0),(39911,0,140113,'Ummanz','Germany','DE','Ummanz (Germany)',1,1,0),(39912,28132,140114,'Unadilla','United States of America','US','Unadilla (United States of America)',1,1,0),(39913,0,140115,'Undeloh - Wesel','Germany','DE','Undeloh - Wesel (Germany)',1,1,0),(39914,28140,140116,'Underberg','South Africa','ZA','Underberg (South Africa)',1,1,0),(39915,0,140117,'Undervelier','Switzerland','CH','Undervelier (Switzerland)',1,1,0),(39916,28143,140118,'Ungasan','Indonesia','ID','Ungasan (Indonesia)',1,1,0),(39917,0,140119,'Ungersheim','France','FR','Ungersheim (France)',1,1,0),(39918,28144,140120,'Unhost','Czech Republic','CZ','Unhost (Czech Republic)',1,1,0),(39919,28149,140121,'Uniontown','United States of America','US','Uniontown (United States of America)',1,1,0),(39920,0,140122,'University Park','United States of America','US','University Park (United States of America)',1,1,0),(39921,28154,140123,'Unken','Austria','AT','Unken (Austria)',1,1,0),(39922,0,140124,'Unterach','Austria','AT','Unterach (Austria)',1,1,0),(39923,0,140125,'Unterburg','Austria','AT','Unterburg (Austria)',1,1,0),(39924,0,140126,'Unterfohring','Germany','DE','Unterfohring (Germany)',1,1,0),(39925,0,140127,'Unterweissenbach','Austria','AT','Unterweissenbach (Austria)',1,1,0),(39926,0,140128,'Upie','France','FR','Upie (France)',1,1,0),(39927,0,140129,'Uppingham','United Kingdom','UK','Uppingham (United Kingdom)',1,1,0),(39928,28198,140130,'Urbandale','United States of America','US','Urbandale (United States of America)',1,1,0),(39929,28202,140131,'Urbar','Germany','DE','Urbar (Germany)',1,1,0),(39930,0,140132,'Urla','Turkey','TR','Urla (Turkey)',1,1,0),(39931,0,140133,'Urmatt','France','FR','Urmatt (France)',1,1,0),(39932,0,140134,'Urnshausen','Germany','DE','Urnshausen (Germany)',1,1,0),(39933,0,140135,'Urubamba-Tal','Peru','PE','Urubamba-Tal (Peru)',1,1,0),(39934,28230,140136,'Ushuaia','Argentina','AR','Ushuaia (Argentina)',1,1,0),(39935,28237,140137,'Uspallata','Argentina','AR','Uspallata (Argentina)',1,1,0),(39936,0,140138,'Ustica Island','Italy','IT','Ustica Island (Italy)',1,1,0),(39937,0,140139,'Ust-Kachka','Russia','RU','Ust-Kachka (Russia)',1,1,0),(39938,28248,140140,'Usulutan','El Salvador','SV','Usulutan (El Salvador)',1,1,0),(39939,0,140141,'Utne','Norway','NO','Utne (Norway)',1,1,0),(39940,0,140142,'Uto','Sweden','SE','Uto (Sweden)',1,1,0),(39941,0,140144,'Uttenweiler','Germany','DE','Uttenweiler (Germany)',1,1,0),(39942,0,140145,'Utzenfeld','Germany','DE','Utzenfeld (Germany)',1,1,0),(39943,28275,140146,'Uvalde','United States of America','US','Uvalde (United States of America)',1,1,0),(39944,28293,140147,'Vaasa','Finland','FI','Vaasa (Finland)',1,1,0),(39945,0,140148,'Vachdorf','Germany','DE','Vachdorf (Germany)',1,1,0),(39946,0,140149,'Vacheresse','France','FR','Vacheresse (France)',1,1,0),(39947,28305,140150,'Vadso','Norway','NO','Vadso (Norway)',1,1,0),(39948,0,140151,'Vagli Sotto','Italy','IT','Vagli Sotto (Italy)',1,1,0),(39949,0,140152,'Vaihingen an der Enz','Germany','DE','Vaihingen an der Enz (Germany)',1,1,0),(39950,0,140153,'Val de Tignet','France','FR','Val de Tignet (France)',1,1,0),(39951,33912,140154,'Val D\'Or','Canada','CA','Val D\'Or (Canada)',1,1,0),(39952,0,140155,'Val-David','Canada','CA','Val-David (Canada)',1,1,0),(39953,28333,140156,'Valdemoro','Spain','ES','Valdemoro (Spain)',1,1,0),(39954,28340,140157,'Valdez','United States of America','US','Valdez (United States of America)',1,1,0),(39955,0,140158,'Valdicastello','Italy','IT','Valdicastello (Italy)',1,1,0),(39956,28369,140159,'Valfabbrica','Italy','IT','Valfabbrica (Italy)',1,1,0),(39957,0,140160,'Valff','France','FR','Valff (France)',1,1,0),(39958,0,140161,'Valkenswaard','Netherlands','NL','Valkenswaard (Netherlands)',1,1,0),(39959,33923,140162,'Vall de Boi','Spain','ES','Vall de Boi (Spain)',1,1,0),(39960,0,140163,'Valla Ruesga','Spain','ES','Valla Ruesga (Spain)',1,1,0),(39961,0,140164,'Valle de Trevelin','Argentina','AR','Valle de Trevelin (Argentina)',1,1,0),(39962,0,140165,'Valle Guerra','Spain','ES','Valle Guerra (Spain)',1,1,0),(39963,0,140166,'Valle Hermoso','Mexico','MX','Valle Hermoso (Mexico)',1,1,0),(39964,33932,140167,'Valle Nevado','Chile','CL','Valle Nevado (Chile)',1,1,0),(39965,0,140168,'Valley View','United States of America','US','Valley View (United States of America)',1,1,0),(39966,28392,140169,'Valleyview','Canada','CA','Valleyview (Canada)',1,1,0),(39967,0,140170,'Vallfogona de Riucorb','Spain','ES','Vallfogona de Riucorb (Spain)',1,1,0),(39968,28404,140171,'Vallsta','Sweden','SE','Vallsta (Sweden)',1,1,0),(39969,0,140172,'Valmeinier','France','FR','Valmeinier (France)',1,1,0),(39970,0,140173,'Valsequillo','Spain','ES','Valsequillo (Spain)',1,1,0),(39971,0,140174,'Valtice','Czech Republic','CZ','Valtice (Czech Republic)',1,1,0),(39972,28417,140175,'Valtournenche','Italy','IT','Valtournenche (Italy)',1,1,0),(39973,0,140176,'Valverde de la Vera','Spain','ES','Valverde de la Vera (Spain)',1,1,0),(39974,0,140177,'Valverde del Fresno','Spain','ES','Valverde del Fresno (Spain)',1,1,0),(39975,0,140178,'Van Wyksdorp','South Africa','ZA','Van Wyksdorp (South Africa)',1,1,0),(39976,28424,140179,'Vance','United States of America','US','Vance (United States of America)',1,1,0),(39977,28457,140180,'Varel','Germany','DE','Varel (Germany)',1,1,0),(39978,28465,140181,'Varginha','Brazil','BR','Varginha (Brazil)',1,1,0),(39979,28466,140182,'Vargon','Sweden','SE','Vargon (Sweden)',1,1,0),(39980,0,140183,'Vata de Jos','Romania','RO','Vata de Jos (Romania)',1,1,0),(39981,0,140184,'Vauclaix','France','FR','Vauclaix (France)',1,1,0),(39982,0,140185,'Vechelde','Germany','DE','Vechelde (Germany)',1,1,0),(39983,28518,140186,'Vega','United States of America','US','Vega (United States of America)',1,1,0),(39984,28528,140187,'Vejer de la Frontera','Spain','ES','Vejer de la Frontera (Spain)',1,1,0),(39985,28538,140188,'Velence','Hungary','HU','Velence (Hungary)',1,1,0),(39986,0,140189,'Velichovky','Czech Republic','CZ','Velichovky (Czech Republic)',1,1,0),(39987,0,140190,'Velikij Nowgorod','Russia','RU','Velikij Nowgorod (Russia)',1,1,0),(39988,0,140191,'Velilla de San Antonio','Spain','ES','Velilla de San Antonio (Spain)',1,1,0),(39989,0,140192,'Velka Upa','Czech Republic','CZ','Velka Upa (Czech Republic)',1,1,0),(39990,0,140193,'Stilo','Italy','IT','Stilo (Italy)',1,1,0),(39991,0,140194,'Stilton','United Kingdom','UK','Stilton (United Kingdom)',1,1,0),(39992,0,140195,'Stirin','Czech Republic','CZ','Stirin (Czech Republic)',1,1,0),(39993,0,140196,'Stoke Fleming','United Kingdom','UK','Stoke Fleming (United Kingdom)',1,1,0),(39994,0,140197,'Stoke Poges','United Kingdom','UK','Stoke Poges (United Kingdom)',1,1,0),(39995,0,140198,'Stoke-on-Trent','United Kingdom','UK','Stoke-on-Trent (United Kingdom)',1,1,0),(39996,0,140199,'Stolp','Poland','PL','Stolp (Poland)',1,1,0),(39997,0,140200,'Stone Harbor','United States of America','US','Stone Harbor (United States of America)',1,1,0),(39998,26150,140201,'Stoneham','Canada','CA','Stoneham (Canada)',1,1,0),(39999,26157,140202,'Stonington','United States of America','US','Stonington (United States of America)',1,1,0),(40000,26158,140203,'Stony Brook','United States of America','US','Stony Brook (United States of America)',1,1,0),(40001,0,140204,'Storjord','Norway','NO','Storjord (Norway)',1,1,0),(40002,26169,140205,'Storms River','South Africa','ZA','Storms River (South Africa)',1,1,0),(40003,0,140206,'Stoughton','United States of America','US','Stoughton (United States of America)',1,1,0),(40004,26200,140207,'Stralsund','Germany','DE','Stralsund (Germany)',1,1,0),(40005,0,140208,'Strandby (Frederikshavn)','Denmark','DK','Strandby (Frederikshavn) (Denmark)',1,1,0),(40006,0,140209,'Strangnas','Sweden','SE','Strangnas (Sweden)',1,1,0),(40007,0,140210,'Stra? in Steiermark','Austria','AT','Stra? in Steiermark (Austria)',1,1,0),(40008,0,140211,'Straznice','Czech Republic','CZ','Straznice (Czech Republic)',1,1,0),(40009,26234,140212,'Streetsboro','United States of America','US','Streetsboro (United States of America)',1,1,0),(40010,26245,140213,'Stribro','Czech Republic','CZ','Stribro (Czech Republic)',1,1,0),(40011,26248,140214,'Strombeek-Bever','Belgium','BE','Strombeek-Bever (Belgium)',1,1,0),(40012,0,140215,'Stronie Slaskie','Poland','PL','Stronie Slaskie (Poland)',1,1,0),(40013,0,140216,'Struth-Helmershof','Germany','DE','Struth-Helmershof (Germany)',1,1,0),(40014,26279,140217,'Sturbridge','United States of America','US','Sturbridge (United States of America)',1,1,0),(40015,0,140218,'St-Ursanne','Switzerland','CH','St-Ursanne (Switzerland)',1,1,0),(40016,26285,140219,'Stuttgart','United States of America','US','Stuttgart (United States of America)',1,1,0),(40017,0,140220,'Stutzerbach','Germany','DE','Stutzerbach (Germany)',1,1,0),(40018,26308,140221,'Sucha Beskidzka','Poland','PL','Sucha Beskidzka (Poland)',1,1,0),(40019,0,140222,'Sucuraj','Croatia','HR','Sucuraj (Croatia)',1,1,0),(40020,0,140223,'Sudbury','United Kingdom','UK','Sudbury (United Kingdom)',1,1,0),(40021,0,140224,'Suderholz','Germany','DE','Suderholz (Germany)',1,1,0),(40022,0,140225,'Sugarloaf Key','United States of America','US','Sugarloaf Key (United States of America)',1,1,0),(40023,0,140226,'Sugiez','Switzerland','CH','Sugiez (Switzerland)',1,1,0),(40024,26329,140227,'Suhl','Germany','DE','Suhl (Germany)',1,1,0),(40025,26338,140228,'Sukagawa','Japan','JP','Sukagawa (Japan)',1,1,0),(40026,0,140229,'Sully-sur-Loire','France','FR','Sully-sur-Loire (France)',1,1,0),(40027,26355,140230,'Sulzbach','Germany','DE','Sulzbach (Germany)',1,1,0),(40028,0,140231,'Sumber','Croatia','HR','Sumber (Croatia)',1,1,0),(40029,26375,140232,'Summersville','United States of America','US','Summersville (United States of America)',1,1,0),(40030,26377,140233,'Summerville','United States of America','US','Summerville (United States of America)',1,1,0),(40031,26381,140234,'Sun City','South Africa','ZA','Sun City (South Africa)',1,1,0),(40032,26411,140236,'Sunnyvale','United States of America','US','Sunnyvale (United States of America)',1,1,0),(40033,26426,140237,'Super-Besse','France','FR','Super-Besse (France)',1,1,0),(40034,26430,140238,'Supersano','Italy','IT','Supersano (Italy)',1,1,0),(40035,26431,140239,'Supetar','Croatia','HR','Supetar (Croatia)',1,1,0),(40036,26433,140240,'Suquamish','United States of America','US','Suquamish (United States of America)',1,1,0),(40037,0,140241,'Surava','Switzerland','CH','Surava (Switzerland)',1,1,0),(40038,0,140242,'Susch','Switzerland','CH','Susch (Switzerland)',1,1,0),(40039,0,140243,'Sussex','Sierra Leone','SL','Sussex (Sierra Leone)',1,1,0),(40040,0,140244,'Sutton','United Kingdom','UK','Sutton (United Kingdom)',1,1,0),(40041,0,140245,'Svente','Latvia','LV','Svente (Latvia)',1,1,0),(40042,0,140246,'Sveta Marina','Croatia','HR','Sveta Marina (Croatia)',1,1,0),(40043,0,140247,'Sveti Anton','Croatia','HR','Sveti Anton (Croatia)',1,1,0),(40044,0,140248,'Sveti Martin','Croatia','HR','Sveti Martin (Croatia)',1,1,0),(40045,0,140249,'Sveti Petar na Moru','Croatia','HR','Sveti Petar na Moru (Croatia)',1,1,0),(40046,26513,140250,'Swan River','Canada','CA','Swan River (Canada)',1,1,0),(40047,0,140251,'Swanage','United Kingdom','UK','Swanage (United Kingdom)',1,1,0),(40048,26516,140252,'Swansea','United States of America','US','Swansea (United States of America)',1,1,0),(40049,0,140253,'Sweetwater','United States of America','US','Sweetwater (United States of America)',1,1,0),(40050,0,140254,'Swiebodzin','Poland','PL','Swiebodzin (Poland)',1,1,0),(40051,0,140255,'Swietajno (Powiat Olecki)','Poland','PL','Swietajno (Powiat Olecki) (Poland)',1,1,0),(40052,26531,140256,'Swift Current','Canada','CA','Swift Current (Canada)',1,1,0),(40053,0,140257,'Swilcza','Poland','PL','Swilcza (Poland)',1,1,0),(40054,26541,140258,'Sydney','Australia','AU','Sydney (Australia)',1,1,0),(40055,0,140259,'Syktywkar','Russia','RU','Syktywkar (Russia)',1,1,0),(40056,26561,140260,'Syracuse','Italy','IT','Syracuse (Italy)',1,1,0),(40057,0,140261,'Syvros','Greece','GR','Syvros (Greece)',1,1,0),(40058,0,140262,'Szazhalombatta','Hungary','HU','Szazhalombatta (Hungary)',1,1,0),(40059,26569,140263,'Szentgotthard','Hungary','HU','Szentgotthard (Hungary)',1,1,0),(40060,26571,140264,'Szigetszentmiklos','Hungary','HU','Szigetszentmiklos (Hungary)',1,1,0),(40061,0,140265,'T Loo','Netherlands','NL','T Loo (Netherlands)',1,1,0),(40062,26582,140266,'Tabarka','Tunisia','TN','Tabarka (Tunisia)',1,1,0),(40063,0,140267,'Tabiano Bagni','Italy','IT','Tabiano Bagni (Italy)',1,1,0),(40064,26601,140268,'Tacuarembo','Uruguay','UY','Tacuarembo (Uruguay)',1,1,0),(40065,0,140269,'Tadcaster','United Kingdom','UK','Tadcaster (United Kingdom)',1,1,0),(40066,26617,140270,'Tagaytay','Philippines','PH','Tagaytay (Philippines)',1,1,0),(40067,0,140271,'Tagerwilen','Switzerland','CH','Tagerwilen (Switzerland)',1,1,0),(40068,0,140272,'Tahiche','Spain','ES','Tahiche (Spain)',1,1,0),(40069,0,140273,'Tai O','Hong Kong','HK','Tai O (Hong Kong)',1,1,0),(40070,0,140274,'Taino','Italy','IT','Taino (Italy)',1,1,0),(40071,26650,140275,'Taishan','China','CN','Taishan (China)',1,1,0),(40072,0,140276,'Taita Hills','Kenya','KE','Taita Hills (Kenya)',1,1,0),(40073,0,140277,'Takashima-gun','Japan','JP','Takashima-gun (Japan)',1,1,0),(40074,0,140278,'Takeley','United Kingdom','UK','Takeley (United Kingdom)',1,1,0),(40075,0,140279,'Takoradi','Ghana','GH','Takoradi (Ghana)',1,1,0),(40076,0,140280,'Tala','Cyprus','CY','Tala (Cyprus)',1,1,0),(40077,0,140281,'Talheim','Germany','DE','Talheim (Germany)',1,1,0),(40078,0,140282,'Taliouine','Morocco','MA','Taliouine (Morocco)',1,1,0),(40079,26696,140283,'Talladega','United States of America','US','Talladega (United States of America)',1,1,0),(40080,0,140284,'Tallahassee','United States of America','US','Tallahassee (United States of America)',1,1,0),(40081,26698,140285,'Tallapoosa','United States of America','US','Tallapoosa (United States of America)',1,1,0),(40082,26699,140286,'Tallard','France','FR','Tallard (France)',1,1,0),(40083,26703,140287,'Tallinn','Estonia','EE','Tallinn (Estonia)',1,1,0),(40084,0,140288,'Tama','Japan','JP','Tama (Japan)',1,1,0),(40085,26724,140289,'Tamarack','United States of America','US','Tamarack (United States of America)',1,1,0),(40086,0,140290,'Tamarit','Spain','ES','Tamarit (Spain)',1,1,0),(40087,0,140291,'Tamariu','Spain','ES','Tamariu (Spain)',1,1,0),(40088,0,140292,'Tameslouht','Morocco','MA','Tameslouht (Morocco)',1,1,0),(40089,26744,140293,'Tampere','Finland','FI','Tampere (Finland)',1,1,0),(40090,26745,140294,'Tampico','Mexico','MX','Tampico (Mexico)',1,1,0),(40091,26746,140295,'Tamsui','Taiwan','TW','Tamsui (Taiwan)',1,1,0),(40092,26755,140296,'Tanabe','Japan','JP','Tanabe (Japan)',1,1,0),(40093,0,140297,'Tanaunella','Italy','IT','Tanaunella (Italy)',1,1,0),(40094,26770,140298,'Tangalle','Sri Lanka','LK','Tangalle (Sri Lanka)',1,1,0),(40095,26779,140299,'Tangshan','China','CN','Tangshan (China)',1,1,0),(40096,26795,140300,'Taormina','Italy','IT','Taormina (Italy)',1,1,0),(40097,0,140301,'Taplow','United Kingdom','UK','Taplow (United Kingdom)',1,1,0),(40098,0,140302,'Tigalate','Spain','ES','Tigalate (Spain)',1,1,0),(40099,27279,140303,'Tigre','Argentina','AR','Tigre (Argentina)',1,1,0),(40100,27292,140304,'Tilcara','Argentina','AR','Tilcara (Argentina)',1,1,0),(40101,27301,140305,'Timaru','New Zealand','NZ','Timaru (New Zealand)',1,1,0),(40102,0,140306,'Timelkam','Austria','AT','Timelkam (Austria)',1,1,0),(40103,0,140307,'Timmendorf Beach','Germany','DE','Timmendorf Beach (Germany)',1,1,0),(40104,27309,140308,'Timmins','Canada','CA','Timmins (Canada)',1,1,0),(40105,27311,140309,'Timonium','United States of America','US','Timonium (United States of America)',1,1,0),(40106,0,140312,'Tistrup','Denmark','DK','Tistrup (Denmark)',1,1,0),(40107,0,140313,'Tiszakecske','Hungary','HU','Tiszakecske (Hungary)',1,1,0),(40108,27371,140314,'Titusville','United States of America','US','Titusville (United States of America)',1,1,0),(40109,27379,140315,'Tjeldsund','Norway','NO','Tjeldsund (Norway)',1,1,0),(40110,27386,140316,'Tlaxcala','Mexico','MX','Tlaxcala (Mexico)',1,1,0),(40111,27390,140317,'Tobadill','Austria','AT','Tobadill (Austria)',1,1,0),(40112,0,140318,'Toblach','Italy','IT','Toblach (Italy)',1,1,0),(40113,0,140319,'Todi','Italy','IT','Todi (Italy)',1,1,0),(40114,0,140320,'Todwick','United Kingdom','UK','Todwick (United Kingdom)',1,1,0),(40115,33843,140321,'Tok','United States of America','US','Tok (United States of America)',1,1,0),(40116,0,140322,'Tokanui','New Zealand','NZ','Tokanui (New Zealand)',1,1,0),(40117,0,140323,'Toledo','Spain','ES','Toledo (Spain)',1,1,0),(40118,0,140324,'Tolofona','Greece','GR','Tolofona (Greece)',1,1,0),(40119,27459,140325,'Toms River','United States of America','US','Toms River (United States of America)',1,1,0),(40120,27466,140326,'Tondela','Portugal','PT','Tondela (Portugal)',1,1,0),(40121,0,140327,'Tongatapu Island','Tonga','TO','Tongatapu Island (Tonga)',1,1,0),(40122,0,140328,'Tongue','United Kingdom','UK','Tongue (United Kingdom)',1,1,0),(40123,27505,140329,'Torba','Turkey','TR','Torba (Turkey)',1,1,0),(40124,27513,140330,'Torchiarolo','Italy','IT','Torchiarolo (Italy)',1,1,0),(40125,0,140331,'Torekov','Sweden','SE','Torekov (Sweden)',1,1,0),(40126,0,140332,'Toroni','Greece','GR','Toroni (Greece)',1,1,0),(40127,27530,140333,'Toronto','Canada','CA','Toronto (Canada)',1,1,0),(40128,33856,140334,'Torre del Greco','Italy','IT','Torre del Greco (Italy)',1,1,0),(40129,0,140335,'Torre Val de San Pedro','Spain','ES','Torre Val de San Pedro (Spain)',1,1,0),(40130,0,140336,'Torrefarrera','Spain','ES','Torrefarrera (Spain)',1,1,0),(40131,27539,140337,'Torregrotta','Italy','IT','Torregrotta (Italy)',1,1,0),(40132,0,140338,'Torrejon el Rubio','Spain','ES','Torrejon el Rubio (Spain)',1,1,0),(40133,27546,140339,'Torremenga','Spain','ES','Torremenga (Spain)',1,1,0),(40134,27553,140340,'Torres del Paine','Chile','CL','Torres del Paine (Chile)',1,1,0),(40135,27566,140341,'Torroella de Montgri','Spain','ES','Torroella de Montgri (Spain)',1,1,0),(40136,27584,140342,'Tosi','Italy','IT','Tosi (Italy)',1,1,0),(40137,0,140343,'Totford','United Kingdom','UK','Totford (United Kingdom)',1,1,0),(40138,0,140344,'Tour-de-Faure','France','FR','Tour-de-Faure (France)',1,1,0),(40139,0,140345,'Tournavaux','France','FR','Tournavaux (France)',1,1,0),(40140,0,140346,'Towada','Japan','JP','Towada (Japan)',1,1,0),(40141,27628,140347,'Townsville','Australia','AU','Townsville (Australia)',1,1,0),(40142,0,140348,'Toyota','Japan','JP','Toyota (Japan)',1,1,0),(40143,0,140349,'Tracadie-Sheila','Canada','CA','Tracadie-Sheila (Canada)',1,1,0),(40144,0,140350,'Tramandai','Brazil','BR','Tramandai (Brazil)',1,1,0),(40145,0,140351,'Trang','Thailand','TH','Trang (Thailand)',1,1,0),(40146,27659,140352,'Transacqua','Italy','IT','Transacqua (Italy)',1,1,0),(40147,27665,140353,'Trappeto','Italy','IT','Trappeto (Italy)',1,1,0),(40148,0,140354,'Trattenbach','Austria','AT','Trattenbach (Austria)',1,1,0),(40149,27688,140355,'Trebas','France','FR','Trebas (France)',1,1,0),(40150,0,140356,'Trebic','Czech Republic','CZ','Trebic (Czech Republic)',1,1,0),(40151,27704,140357,'Treffen','Austria','AT','Treffen (Austria)',1,1,0),(40152,0,140358,'Tregon','France','FR','Tregon (France)',1,1,0),(40153,27708,140359,'Treguier','France','FR','Treguier (France)',1,1,0),(40154,0,140360,'Trelawny Bay','Jamaica','JM','Trelawny Bay (Jamaica)',1,1,0),(40155,0,140361,'Tremblay-en-France','France','FR','Tremblay-en-France (France)',1,1,0),(40156,27724,140362,'Tremonton','United States of America','US','Tremonton (United States of America)',1,1,0),(40157,27728,140363,'Trencin','Slovakia','SK','Trencin (Slovakia)',1,1,0),(40158,0,140364,'Trenton','United States of America','US','Trenton (United States of America)',1,1,0),(40159,27742,140365,'Tresses','France','FR','Tresses (France)',1,1,0),(40160,0,140366,'Treuenbrietzen','Germany','DE','Treuenbrietzen (Germany)',1,1,0),(40161,0,140367,'Trevoux','France','FR','Trevoux (France)',1,1,0),(40162,27751,140368,'Treze Tilias','Brazil','BR','Treze Tilias (Brazil)',1,1,0),(40163,27752,140369,'Trezzano Rosa','Italy','IT','Trezzano Rosa (Italy)',1,1,0),(40164,0,140370,'Trezzo Sull\'Adda','Italy','IT','Trezzo Sull\'Adda (Italy)',1,1,0),(40165,27754,140371,'Triabunna','Australia','AU','Triabunna (Australia)',1,1,0),(40166,0,140372,'Trin Mulin','Switzerland','CH','Trin Mulin (Switzerland)',1,1,0),(40167,27771,140373,'Trincomalee','Sri Lanka','LK','Trincomalee (Sri Lanka)',1,1,0),(40168,27783,140374,'Trins','Austria','AT','Trins (Austria)',1,1,0),(40169,27787,140375,'Tripoli','Greece','GR','Tripoli (Greece)',1,1,0),(40170,27793,140376,'Trockenborn-Wolfersdorf','Germany','DE','Trockenborn-Wolfersdorf (Germany)',1,1,0),(40171,27796,140377,'Trogues','France','FR','Trogues (France)',1,1,0),(40172,0,140378,'Trois Rivieres','Canada','CA','Trois Rivieres (Canada)',1,1,0),(40173,27800,140379,'Troisdorf','Germany','DE','Troisdorf (Germany)',1,1,0),(40174,27806,140380,'Trollhattan','Sweden','SE','Trollhattan (Sweden)',1,1,0),(40175,27810,140381,'Trondheim','Norway','NO','Trondheim (Norway)',1,1,0),(40176,0,140382,'Troon','United Kingdom','UK','Troon (United Kingdom)',1,1,0),(40177,0,140383,'Trostberg','Germany','DE','Trostberg (Germany)',1,1,0),(40178,27821,140384,'Troulos','Greece','GR','Troulos (Greece)',1,1,0),(40179,27825,140385,'Troutville','United States of America','US','Troutville (United States of America)',1,1,0),(40180,27827,140386,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(40181,0,140387,'Truro','United Kingdom','UK','Truro (United Kingdom)',1,1,0),(40182,0,140388,'Trutnov','Czech Republic','CZ','Trutnov (Czech Republic)',1,1,0),(40183,0,140389,'Tscheboksary','Russia','RU','Tscheboksary (Russia)',1,1,0),(40184,0,140390,'Tsehlanyane Nationalpark','Lesotho','LS','Tsehlanyane Nationalpark (Lesotho)',1,1,0),(40185,0,140391,'Tsintsabis','Namibia','NA','Tsintsabis (Namibia)',1,1,0),(40186,0,140392,'Tsoutsouros','Greece','GR','Tsoutsouros (Greece)',1,1,0),(40187,0,140393,'Tuchola','Poland','PL','Tuchola (Poland)',1,1,0),(40188,0,140394,'Tula','Russia','RU','Tula (Russia)',1,1,0),(40189,27910,140395,'Tulbagh','South Africa','ZA','Tulbagh (South Africa)',1,1,0),(40190,27919,140396,'Tullahoma','United States of America','US','Tullahoma (United States of America)',1,1,0),(40191,0,140397,'Tumpat','Malaysia','MY','Tumpat (Malaysia)',1,1,0),(40192,27949,140398,'Tunuyan','Argentina','AR','Tunuyan (Argentina)',1,1,0),(40193,27967,140399,'Turin','Italy','IT','Turin (Italy)',1,1,0),(40194,0,140400,'Turkey','Turkey','TR','Turkey (Turkey)',1,1,0),(40195,27974,140401,'Turku','Finland','FI','Turku (Finland)',1,1,0),(40196,0,140402,'Turneffe Atoll','Belize','BZ','Turneffe Atoll (Belize)',1,1,0),(40197,0,140403,'Turnhout','Belgium','BE','Turnhout (Belgium)',1,1,0),(40198,0,140404,'Turnitz','Austria','AT','Turnitz (Austria)',1,1,0),(40199,0,140405,'Turriff','United Kingdom','UK','Turriff (United Kingdom)',1,1,0),(40200,27993,140406,'Tuscania','Italy','IT','Tuscania (Italy)',1,1,0),(40201,0,140407,'Tutzing','Germany','DE','Tutzing (Germany)',1,1,0),(40202,28007,140408,'Tuxpan','Mexico','MX','Tuxpan (Mexico)',1,1,0),(40203,28008,140409,'Tuxtla Gutierrez','Mexico','MX','Tuxtla Gutierrez (Mexico)',1,1,0),(40204,28013,140410,'Tvedestrand','Norway','NO','Tvedestrand (Norway)',1,1,0),(40205,0,140411,'Twickenham','United Kingdom','UK','Twickenham (United Kingdom)',1,1,0),(40206,0,140412,'Tychy','Poland','PL','Tychy (Poland)',1,1,0),(40207,0,140413,'Tynemouth','United Kingdom','UK','Tynemouth (United Kingdom)',1,1,0),(40208,27175,140414,'Thiersee','Austria','AT','Thiersee (Austria)',1,1,0),(40209,0,140416,'Thillois','France','FR','Thillois (France)',1,1,0),(40210,27186,140417,'Thollon-les-Memises','France','FR','Thollon-les-Memises (France)',1,1,0),(40211,0,140418,'Thomasville','United States of America','US','Thomasville (United States of America)',1,1,0),(40212,0,140419,'Thompson Falls','United States of America','US','Thompson Falls (United States of America)',1,1,0),(40213,0,140420,'Thong Nai Pan Beach','Thailand','TH','Thong Nai Pan Beach (Thailand)',1,1,0),(40214,0,140421,'Thong Pha Phum','Thailand','TH','Thong Pha Phum (Thailand)',1,1,0),(40215,0,140422,'Thoresby Park/Ollerton','United Kingdom','UK','Thoresby Park/Ollerton (United Kingdom)',1,1,0),(40216,0,140423,'Thornbury','Canada','CA','Thornbury (Canada)',1,1,0),(40217,0,140424,'Thornhill','United Kingdom','UK','Thornhill (United Kingdom)',1,1,0),(40218,0,140425,'Thouare-sur-Loire','France','FR','Thouare-sur-Loire (France)',1,1,0),(40219,0,140426,'Thrapston','United Kingdom','UK','Thrapston (United Kingdom)',1,1,0),(40220,0,140427,'Thulagiri','Maldives','MV','Thulagiri (Maldives)',1,1,0),(40221,0,140428,'Thurmansbang','Germany','DE','Thurmansbang (Germany)',1,1,0),(40222,0,140429,'Tianchang','China','CN','Tianchang (China)',1,1,0),(40223,0,140430,'Tideswell','United Kingdom','UK','Tideswell (United Kingdom)',1,1,0),(40224,27261,140431,'Tiefencastel','Switzerland','CH','Tiefencastel (Switzerland)',1,1,0),(40225,0,140432,'Tiefensee','Germany','DE','Tiefensee (Germany)',1,1,0),(40226,27263,140433,'Tieling','China','CN','Tieling (China)',1,1,0),(40227,0,140434,'Tiflis','Georgia','GE','Tiflis (Georgia)',1,1,0),(40228,27286,140435,'Tikal','Guatemala','GT','Tikal (Guatemala)',1,1,0),(40229,0,140436,'Tikhvin','Russia','RU','Tikhvin (Russia)',1,1,0),(40230,0,140437,'Tilba Tilba','Australia','AU','Tilba Tilba (Australia)',1,1,0),(40231,0,140438,'Timbuktu','Mali','ML','Timbuktu (Mali)',1,1,0),(40232,27306,140439,'Timisoara','Romania','RO','Timisoara (Romania)',1,1,0),(40233,27310,140440,'Timmonsville','United States of America','US','Timmonsville (United States of America)',1,1,0),(40234,27317,140441,'Tindari','Italy','IT','Tindari (Italy)',1,1,0),(40235,27320,140442,'Tineo','Spain','ES','Tineo (Spain)',1,1,0),(40236,0,140443,'Tingodden','Denmark','DK','Tingodden (Denmark)',1,1,0),(40237,27329,140444,'Tinqueux','France','FR','Tinqueux (France)',1,1,0),(40238,27345,140445,'Tirana','Albania','AL','Tirana (Albania)',1,1,0),(40239,27346,140446,'Tirano','Italy','IT','Tirano (Italy)',1,1,0),(40240,0,140447,'Tisa','Czech Republic','CZ','Tisa (Czech Republic)',1,1,0),(40241,27358,140448,'Tisleidalen','Norway','NO','Tisleidalen (Norway)',1,1,0),(40242,0,140449,'Tisno','Croatia','HR','Tisno (Croatia)',1,1,0),(40243,0,140450,'Tissamaharama','Sri Lanka','LK','Tissamaharama (Sri Lanka)',1,1,0),(40244,0,140451,'Titchwell','United Kingdom','UK','Titchwell (United Kingdom)',1,1,0),(40245,0,140452,'Titicaca-See','Bolivia','BO','Titicaca-See (Bolivia)',1,1,0),(40246,27366,140453,'Titisee-Neustadt','Germany','DE','Titisee-Neustadt (Germany)',1,1,0),(40247,0,140454,'Tjumen','Russia','RU','Tjumen (Russia)',1,1,0),(40248,0,140455,'Tocopero','Venezuela','VE','Tocopero (Venezuela)',1,1,0),(40249,0,140456,'Todmorden','United Kingdom','UK','Todmorden (United Kingdom)',1,1,0),(40250,0,140457,'Tofo','Mozambique','MZ','Tofo (Mozambique)',1,1,0),(40251,27426,140458,'Tokushima','Japan','JP','Tokushima (Japan)',1,1,0),(40252,0,140459,'Tolbanos','Spain','ES','Tolbanos (Spain)',1,1,0),(40253,0,140460,'Toliary','Madagascar','MG','Toliary (Madagascar)',1,1,0),(40254,27438,140461,'Tolkmicko','Poland','PL','Tolkmicko (Poland)',1,1,0),(40255,0,140462,'Tolmezzo','Italy','IT','Tolmezzo (Italy)',1,1,0),(40256,0,140463,'Tolu','Colombia','CO','Tolu (Colombia)',1,1,0),(40257,27449,140464,'Tomakomai','Japan','JP','Tomakomai (Japan)',1,1,0),(40258,27450,140465,'Tomales','United States of America','US','Tomales (United States of America)',1,1,0),(40259,27452,140466,'Tomar','Portugal','PT','Tomar (Portugal)',1,1,0),(40260,0,140467,'Tomsk','Russia','RU','Tomsk (Russia)',1,1,0),(40261,0,140468,'Tonbridge','United Kingdom','UK','Tonbridge (United Kingdom)',1,1,0),(40262,27470,140469,'Tongariro National Park','New Zealand','NZ','Tongariro National Park (New Zealand)',1,1,0),(40263,27487,140470,'Tonopah','United States of America','US','Tonopah (United States of America)',1,1,0),(40264,27498,140471,'Toppenish','United States of America','US','Toppenish (United States of America)',1,1,0),(40265,27501,140472,'Topsham','United States of America','US','Topsham (United States of America)',1,1,0),(40266,27514,140473,'Torcy','France','FR','Torcy (France)',1,1,0),(40267,0,140474,'Torgon','Switzerland','CH','Torgon (Switzerland)',1,1,0),(40268,0,140475,'Toriza','Greece','GR','Toriza (Greece)',1,1,0),(40269,33850,140476,'Torre Canne','Italy','IT','Torre Canne (Italy)',1,1,0),(40270,33857,140477,'Torre del Mar','Spain','ES','Torre del Mar (Spain)',1,1,0),(40271,0,140478,'Torre delle Stelle','Italy','IT','Torre delle Stelle (Italy)',1,1,0),(40272,33861,140479,'Torre Mozza','Italy','IT','Torre Mozza (Italy)',1,1,0),(40273,33862,140480,'Torre Pacheco','Spain','ES','Torre Pacheco (Spain)',1,1,0),(40274,33864,140481,'Torre Pedrera','Italy','IT','Torre Pedrera (Italy)',1,1,0),(40275,27541,140482,'Torrejon de Ardoz','Spain','ES','Torrejon de Ardoz (Spain)',1,1,0),(40276,27549,140483,'Torreon','Mexico','MX','Torreon (Mexico)',1,1,0),(40277,0,140484,'Torridon','United Kingdom','UK','Torridon (United Kingdom)',1,1,0),(40278,0,140485,'Torrington','United States of America','US','Torrington (United States of America)',1,1,0),(40279,27567,140486,'Torrox','Spain','ES','Torrox (Spain)',1,1,0),(40280,0,140487,'Tortella','Spain','ES','Tortella (Spain)',1,1,0),(40281,0,140488,'Torvaianica','Italy','IT','Torvaianica (Italy)',1,1,0),(40282,0,140489,'Tostedt','Germany','DE','Tostedt (Germany)',1,1,0),(40283,27592,140490,'Totowa','United States of America','US','Totowa (United States of America)',1,1,0),(40284,0,140491,'Totvazsony','Hungary','HU','Totvazsony (Hungary)',1,1,0),(40285,27602,140492,'Toulon','France','FR','Toulon (France)',1,1,0),(40286,0,140493,'Touquin','France','FR','Touquin (France)',1,1,0),(40287,0,140494,'Tournon-d\'Agenais','France','FR','Tournon-d\'Agenais (France)',1,1,0),(40288,27614,140495,'Tournon-sur-Rhone','France','FR','Tournon-sur-Rhone (France)',1,1,0),(40289,0,140496,'Tourves','France','FR','Tourves (France)',1,1,0),(40290,0,140497,'Touws River','South Africa','ZA','Touws River (South Africa)',1,1,0),(40291,0,140498,'Tovo San Giacomo','Italy','IT','Tovo San Giacomo (Italy)',1,1,0),(40292,27623,140499,'Towanda','United States of America','US','Towanda (United States of America)',1,1,0),(40293,0,140500,'Trafalgar','South Africa','ZA','Trafalgar (South Africa)',1,1,0),(40294,0,140501,'Trafoi','Italy','IT','Trafoi (Italy)',1,1,0),(40295,0,140502,'Traiskirchen','Austria','AT','Traiskirchen (Austria)',1,1,0),(40296,27653,140503,'Tramore','Ireland','IE','Tramore (Ireland)',1,1,0),(40297,27662,140504,'Trapezaki','Greece','GR','Trapezaki (Greece)',1,1,0),(40298,27667,140505,'Traralgon','Australia','AU','Traralgon (Australia)',1,1,0),(40299,27671,140506,'Traunkirchen','Austria','AT','Traunkirchen (Austria)',1,1,0),(40300,0,140507,'Trausdorf an der Wulka','Austria','AT','Trausdorf an der Wulka (Austria)',1,1,0),(40301,0,140508,'Trautenstein','Germany','DE','Trautenstein (Germany)',1,1,0),(40302,0,140509,'Trautmannsdorf an der Leitha','Austria','AT','Trautmannsdorf an der Leitha (Austria)',1,1,0),(40303,0,140510,'Tre Fontane','Italy','IT','Tre Fontane (Italy)',1,1,0),(40304,27684,140511,'Treasure Beach','Jamaica','JM','Treasure Beach (Jamaica)',1,1,0),(40305,27686,140512,'Treasure Island','United States of America','US','Treasure Island (United States of America)',1,1,0),(40306,27687,140513,'Treasure Island','Fiji Islands','FJ','Treasure Island (Fiji Islands)',1,1,0),(40307,0,140514,'Trebbo di Reno','Italy','IT','Trebbo di Reno (Italy)',1,1,0),(40308,0,140515,'Trechtingshausen','Germany','DE','Trechtingshausen (Germany)',1,1,0),(40309,27703,140516,'Tredos','Spain','ES','Tredos (Spain)',1,1,0),(40310,0,140517,'Trefacio','Spain','ES','Trefacio (Spain)',1,1,0),(40311,0,140518,'Trehorningsjo','Sweden','SE','Trehorningsjo (Sweden)',1,1,0),(40312,27725,140519,'Tremosine','Italy','IT','Tremosine (Italy)',1,1,0),(40313,0,140520,'Tremosine-Voltino','Italy','IT','Tremosine-Voltino (Italy)',1,1,0),(40314,28053,140521,'Ubud','Indonesia','ID','Ubud (Indonesia)',1,1,0),(40315,0,140523,'Uderns','Austria','AT','Uderns (Austria)',1,1,0),(40316,0,140524,'Udersdorf','Germany','DE','Udersdorf (Germany)',1,1,0),(40317,0,140525,'Uebigau','Germany','DE','Uebigau (Germany)',1,1,0),(40318,0,140526,'Uffculme','United Kingdom','UK','Uffculme (United Kingdom)',1,1,0),(40319,0,140527,'Uffholtz','France','FR','Uffholtz (France)',1,1,0),(40320,28074,140528,'Ugento','Italy','IT','Ugento (Italy)',1,1,0),(40321,0,140529,'Uglitsch','Russia','RU','Uglitsch (Russia)',1,1,0),(40322,0,140530,'Uhlenhorst','Namibia','NA','Uhlenhorst (Namibia)',1,1,0),(40323,0,140531,'Uhlingen-Birkendorf','Germany','DE','Uhlingen-Birkendorf (Germany)',1,1,0),(40324,28077,140532,'Uhrichsville','United States of America','US','Uhrichsville (United States of America)',1,1,0),(40325,0,140533,'Uintah','United States of America','US','Uintah (United States of America)',1,1,0),(40326,0,140534,'Ulricehamn','Sweden','SE','Ulricehamn (Sweden)',1,1,0),(40327,0,140535,'Ulrichshusen','Germany','DE','Ulrichshusen (Germany)',1,1,0),(40328,28108,140536,'Ulundi','South Africa','ZA','Ulundi (South Africa)',1,1,0),(40329,0,140537,'Ulusaba','South Africa','ZA','Ulusaba (South Africa)',1,1,0),(40330,0,140538,'Umalas','Indonesia','ID','Umalas (Indonesia)',1,1,0),(40331,0,140539,'Umkirch','Germany','DE','Umkirch (Germany)',1,1,0),(40332,0,140540,'Ummeln','Germany','DE','Ummeln (Germany)',1,1,0),(40333,28135,140541,'Unawatuna','Sri Lanka','LK','Unawatuna (Sri Lanka)',1,1,0),(40334,28152,140542,'Universal City','United States of America','US','Universal City (United States of America)',1,1,0),(40335,28158,140543,'Unterbergen','Austria','AT','Unterbergen (Austria)',1,1,0),(40336,28160,140544,'Untergriesbach','Germany','DE','Untergriesbach (Germany)',1,1,0),(40337,0,140545,'Unterhain','Germany','DE','Unterhain (Germany)',1,1,0),(40338,0,140546,'Unterkirnach','Germany','DE','Unterkirnach (Germany)',1,1,0),(40339,0,140547,'Unterlu?','Germany','DE','Unterlu? (Germany)',1,1,0),(40340,28164,140548,'Untermeitingen','Germany','DE','Untermeitingen (Germany)',1,1,0),(40341,28166,140549,'Unterpremstatten','Austria','AT','Unterpremstatten (Austria)',1,1,0),(40342,0,140550,'Upolu','Samoa','WS','Upolu (Samoa)',1,1,0),(40343,0,140551,'Upper Bolzano','Italy','IT','Upper Bolzano (Italy)',1,1,0),(40344,28184,140552,'Upper Moutere','New Zealand','NZ','Upper Moutere (New Zealand)',1,1,0),(40345,0,140553,'Upton-upon-Severn','United Kingdom','UK','Upton-upon-Severn (United Kingdom)',1,1,0),(40346,28197,140554,'Urbana','United States of America','US','Urbana (United States of America)',1,1,0),(40347,0,140555,'Urdax','Spain','ES','Urdax (Spain)',1,1,0),(40348,28208,140556,'Urmond','Netherlands','NL','Urmond (Netherlands)',1,1,0),(40349,0,140557,'Urritzola-Galain','Spain','ES','Urritzola-Galain (Spain)',1,1,0),(40350,28215,140558,'Ursensollen','Germany','DE','Ursensollen (Germany)',1,1,0),(40351,0,140559,'Urunga','Australia','AU','Urunga (Australia)',1,1,0),(40352,33897,140560,'Ury','France','FR','Ury (France)',1,1,0),(40353,0,140561,'Usoyka','Bulgaria','BG','Usoyka (Bulgaria)',1,1,0),(40354,0,140562,'Usti nad Orlici','Czech Republic','CZ','Usti nad Orlici (Czech Republic)',1,1,0),(40355,28253,140563,'Uthai Thani','Thailand','TH','Uthai Thani (Thailand)',1,1,0),(40356,28258,140564,'Utopia','United States of America','US','Utopia (United States of America)',1,1,0),(40357,0,140565,'Uttoxeter','United Kingdom','UK','Uttoxeter (United Kingdom)',1,1,0),(40358,28271,140566,'Utuado','Puerto Rico','PR','Utuado (Puerto Rico)',1,1,0),(40359,28276,140567,'Uvernet-Fours','France','FR','Uvernet-Fours (France)',1,1,0),(40360,0,140568,'Uxelles','France','FR','Uxelles (France)',1,1,0),(40361,28283,140569,'Uyuni','Bolivia','BO','Uyuni (Bolivia)',1,1,0),(40362,0,140570,'Uzlina','Romania','RO','Uzlina (Romania)',1,1,0),(40363,28292,140571,'Vaalwater','South Africa','ZA','Vaalwater (South Africa)',1,1,0),(40364,0,140572,'Vacherie','United States of America','US','Vacherie (United States of America)',1,1,0),(40365,28302,140573,'Vado Ligure','Italy','IT','Vado Ligure (Italy)',1,1,0),(40366,28314,140574,'Vagliagli','Italy','IT','Vagliagli (Italy)',1,1,0),(40367,0,140576,'Vairano','Switzerland','CH','Vairano (Switzerland)',1,1,0),(40368,0,140577,'Valdahon','France','FR','Valdahon (France)',1,1,0),(40369,0,140578,'Valdeavellano de Tera','Spain','ES','Valdeavellano de Tera (Spain)',1,1,0),(40370,28332,140579,'Valdemarsvik','Sweden','SE','Valdemarsvik (Sweden)',1,1,0),(40371,28344,140580,'Valdisotto','Italy','IT','Valdisotto (Italy)',1,1,0),(40372,0,140581,'Vale do Garrao','Portugal','PT','Vale do Garrao (Portugal)',1,1,0),(40373,28353,140582,'Valenca','Brazil','BR','Valenca (Brazil)',1,1,0),(40374,0,140583,'Valence-sur-Baise','France','FR','Valence-sur-Baise (France)',1,1,0),(40375,0,140584,'Valensole','France','FR','Valensole (France)',1,1,0),(40376,28361,140585,'Valentine','United States of America','US','Valentine (United States of America)',1,1,0),(40377,28370,140586,'Valfrejus','France','FR','Valfrejus (France)',1,1,0),(40378,0,140587,'Valguarnera Caropepe','Italy','IT','Valguarnera Caropepe (Italy)',1,1,0),(40379,0,140588,'Valjevo','Serbia','RS','Valjevo (Serbia)',1,1,0),(40380,0,140589,'Valle de Lago','Spain','ES','Valle de Lago (Spain)',1,1,0),(40381,0,140590,'Valle di Cadore','Italy','IT','Valle di Cadore (Italy)',1,1,0),(40382,0,140591,'Vallendar','Germany','DE','Vallendar (Germany)',1,1,0),(40383,33934,140592,'Valley Center','United States of America','US','Valley Center (United States of America)',1,1,0),(40384,28394,140594,'Vallio Terme','Italy','IT','Vallio Terme (Italy)',1,1,0),(40385,28399,140595,'Vallon-Pont-d\'Arc','France','FR','Vallon-Pont-d\'Arc (France)',1,1,0),(40386,0,140596,'Valmont','France','FR','Valmont (France)',1,1,0),(40387,28407,140597,'Valognes','France','FR','Valognes (France)',1,1,0),(40388,28408,140598,'Valpacos','Portugal','PT','Valpacos (Portugal)',1,1,0),(40389,28410,140599,'Valparaiso','United States of America','US','Valparaiso (United States of America)',1,1,0),(40390,0,140600,'Vamizi Island','Mozambique','MZ','Vamizi Island (Mozambique)',1,1,0),(40391,28427,140601,'Vandalia','United States of America','US','Vandalia (United States of America)',1,1,0),(40392,0,140602,'Vandalia','United States of America','US','Vandalia (United States of America)',1,1,0),(40393,28448,140603,'Varadero','Cuba','CU','Varadero (Cuba)',1,1,0),(40394,0,140604,'Varengeville-sur-Mer','France','FR','Varengeville-sur-Mer (France)',1,1,0),(40395,28458,140605,'Varenna','Italy','IT','Varenna (Italy)',1,1,0),(40396,28476,140606,'Varsity Lakes','Australia','AU','Varsity Lakes (Australia)',1,1,0),(40397,0,140607,'Vasse','Netherlands','NL','Vasse (Netherlands)',1,1,0),(40398,28483,140608,'Vassiliki','Greece','GR','Vassiliki (Greece)',1,1,0),(40399,28500,140609,'Vaudreuil','Canada','CA','Vaudreuil (Canada)',1,1,0),(40400,28503,140610,'Vaujany','France','FR','Vaujany (France)',1,1,0),(40401,0,140611,'Vaux sur Mer','France','FR','Vaux sur Mer (France)',1,1,0),(40402,28509,140612,'Vaxjo','Sweden','SE','Vaxjo (Sweden)',1,1,0),(40403,0,140613,'Veehraal','South Africa','ZA','Veehraal (South Africa)',1,1,0),(40404,33953,140614,'Vega de San Mateo','Spain','ES','Vega de San Mateo (Spain)',1,1,0),(40405,28526,140615,'Veitshochheim','Germany','DE','Veitshochheim (Germany)',1,1,0),(40406,28533,140616,'Velayos','Spain','ES','Velayos (Spain)',1,1,0),(40407,0,140617,'Velden','Netherlands','NL','Velden (Netherlands)',1,1,0),(40408,28537,140618,'Velen','Germany','DE','Velen (Germany)',1,1,0),(40409,0,140619,'Velencesee','Hungary','HU','Velencesee (Hungary)',1,1,0),(40410,0,140620,'Veles','Macedonia','MK','Veles (Macedonia)',1,1,0),(40411,0,140621,'Veleso','Italy','IT','Veleso (Italy)',1,1,0),(40412,0,140622,'Velez Blanco','Spain','ES','Velez Blanco (Spain)',1,1,0),(40413,0,140623,'Velez de Benaudalla','Spain','ES','Velez de Benaudalla (Spain)',1,1,0),(40414,0,140624,'Veli Jezenj','Croatia','HR','Veli Jezenj (Croatia)',1,1,0),(40415,0,140625,'Velky Meder','Slovakia','SK','Velky Meder (Slovakia)',1,1,0),(40416,0,140626,'Velky Ratmirov','Czech Republic','CZ','Velky Ratmirov (Czech Republic)',1,1,0),(40417,28552,140627,'Velky Slavkov','Slovakia','SK','Velky Slavkov (Slovakia)',1,1,0),(40418,0,140628,'Vella','Switzerland','CH','Vella (Switzerland)',1,1,0),(40419,0,140629,'Velletri','Italy','IT','Velletri (Italy)',1,1,0),(40420,28580,140630,'Venoy','France','FR','Venoy (France)',1,1,0),(40421,27657,140631,'Tranekaer','Denmark','DK','Tranekaer (Denmark)',1,1,0),(40422,27663,140632,'Trapper Creek','United States of America','US','Trapper Creek (United States of America)',1,1,0),(40423,27669,140633,'Trassem','Germany','DE','Trassem (Germany)',1,1,0),(40424,27679,140634,'Travelers Rest','United States of America','US','Travelers Rest (United States of America)',1,1,0),(40425,27690,140635,'Trebelno','Slovenia','SI','Trebelno (Slovenia)',1,1,0),(40426,0,140636,'Trebendorf','Germany','DE','Trebendorf (Germany)',1,1,0),(40427,27695,140637,'Trebisacce','Italy','IT','Trebisacce (Italy)',1,1,0),(40428,27697,140638,'Treboul','France','FR','Treboul (France)',1,1,0),(40429,0,140639,'Trecase','Italy','IT','Trecase (Italy)',1,1,0),(40430,27707,140640,'Tregueux','France','FR','Tregueux (France)',1,1,0),(40431,27719,140641,'Trelleborg','Sweden','SE','Trelleborg (Sweden)',1,1,0),(40432,0,140642,'Tres Lagoas','Brazil','BR','Tres Lagoas (Brazil)',1,1,0),(40433,0,140643,'Treuchtlingen','Germany','DE','Treuchtlingen (Germany)',1,1,0),(40434,0,140644,'Treuen','Germany','DE','Treuen (Germany)',1,1,0),(40435,0,140645,'Treviglio','Italy','IT','Treviglio (Italy)',1,1,0),(40436,0,140646,'Treviso','Italy','IT','Treviso (Italy)',1,1,0),(40437,0,140647,'Trindade','Brazil','BR','Trindade (Brazil)',1,1,0),(40438,27785,140648,'Trion','United States of America','US','Trion (United States of America)',1,1,0),(40439,0,140649,'Tripoli','Libya',NULL,'Tripoli (Libya)',1,1,0),(40440,0,140650,'Tritrang Bay','Thailand','TH','Tritrang Bay (Thailand)',1,1,0),(40441,0,140651,'Trochtelfingen','Germany','DE','Trochtelfingen (Germany)',1,1,0),(40442,0,140652,'Trois-Pistoles','Canada','CA','Trois-Pistoles (Canada)',1,1,0),(40443,0,140653,'Troodos','Cyprus','CY','Troodos (Cyprus)',1,1,0),(40444,27814,140654,'Tropea','Italy','IT','Tropea (Italy)',1,1,0),(40445,27815,140655,'Tropic','United States of America','US','Tropic (United States of America)',1,1,0),(40446,0,140656,'Trostadt','Germany','DE','Trostadt (Germany)',1,1,0),(40447,27818,140657,'Trostau','Germany','DE','Trostau (Germany)',1,1,0),(40448,0,140658,'Trou aux Biches','Mauritius','MU','Trou aux Biches (Mauritius)',1,1,0),(40449,0,140659,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(40450,0,140660,'Tsakhkadzor','Armenia','AM','Tsakhkadzor (Armenia)',1,1,0),(40451,0,140661,'Tsangarada','Greece','GR','Tsangarada (Greece)',1,1,0),(40452,0,140662,'Tschepelare','Bulgaria','BG','Tschepelare (Bulgaria)',1,1,0),(40453,0,140663,'Tschierv','Switzerland','CH','Tschierv (Switzerland)',1,1,0),(40454,0,140664,'Tshipsie','South Africa','ZA','Tshipsie (South Africa)',1,1,0),(40455,27872,140665,'Tsumeb','Namibia','NA','Tsumeb (Namibia)',1,1,0),(40456,0,140666,'Tuapse','Russia','RU','Tuapse (Russia)',1,1,0),(40457,27879,140667,'Tuba City','United States of America','US','Tuba City (United States of America)',1,1,0),(40458,0,140668,'Tubbergen','Netherlands','NL','Tubbergen (Netherlands)',1,1,0),(40459,27882,140669,'Tubingen','Germany','DE','Tubingen (Germany)',1,1,0),(40460,0,140670,'Tugun','Australia','AU','Tugun (Australia)',1,1,0),(40461,0,140671,'Tulln an der Donau','Austria','AT','Tulln an der Donau (Austria)',1,1,0),(40462,0,140672,'Tullnerbach','Austria','AT','Tullnerbach (Austria)',1,1,0),(40463,27926,140673,'Tulsa','United States of America','US','Tulsa (United States of America)',1,1,0),(40464,27928,140674,'Tulum','Mexico','MX','Tulum (Mexico)',1,1,0),(40465,27938,140675,'Tumut','Australia','AU','Tumut (Australia)',1,1,0),(40466,0,140676,'Tunica','United States of America','US','Tunica (United States of America)',1,1,0),(40467,0,140677,'Turfan','China','CN','Turfan (China)',1,1,0),(40468,0,140678,'Turia','Romania','RO','Turia (Romania)',1,1,0),(40469,27985,140679,'Turtle Bay','Mauritius','MU','Turtle Bay (Mauritius)',1,1,0),(40470,27990,140680,'Tusa','Italy','IT','Tusa (Italy)',1,1,0),(40471,28018,140681,'Twentynine Palms','United States of America','US','Twentynine Palms (United States of America)',1,1,0),(40472,0,140682,'Twinsburg','United States of America','US','Twinsburg (United States of America)',1,1,0),(40473,0,140683,'Twist','Germany','DE','Twist (Germany)',1,1,0),(40474,0,140684,'Twistetal','Germany','DE','Twistetal (Germany)',1,1,0),(40475,33876,140685,'Two Harbors','United States of America','US','Two Harbors (United States of America)',1,1,0),(40476,0,140686,'Twyfelfontein','Namibia','NA','Twyfelfontein (Namibia)',1,1,0),(40477,28030,140687,'Tyler','United States of America','US','Tyler (United States of America)',1,1,0),(40478,0,140688,'Tyndrum','United Kingdom','UK','Tyndrum (United Kingdom)',1,1,0),(40479,0,140689,'Tyrlaching','Germany','DE','Tyrlaching (Germany)',1,1,0),(40480,0,140690,'Tysnes','Norway','NO','Tysnes (Norway)',1,1,0),(40481,0,140691,'Tzamaria','Greece','GR','Tzamaria (Greece)',1,1,0),(40482,0,140692,'Tzummarum','Netherlands','NL','Tzummarum (Netherlands)',1,1,0),(40483,0,140693,'Ube','Japan','JP','Ube (Japan)',1,1,0),(40484,0,140694,'Ubstadt-Weiher','Germany','DE','Ubstadt-Weiher (Germany)',1,1,0),(40485,0,140695,'Ucciani','France','FR','Ucciani (France)',1,1,0),(40486,28066,140696,'Udon Thani','Thailand','TH','Udon Thani (Thailand)',1,1,0),(40487,0,140697,'Uettingen','Germany','DE','Uettingen (Germany)',1,1,0),(40488,0,140698,'Uga','Spain','ES','Uga (Spain)',1,1,0),(40489,0,140699,'Uhldingen','Germany','DE','Uhldingen (Germany)',1,1,0),(40490,0,140700,'Uitwellingerga','Netherlands','NL','Uitwellingerga (Netherlands)',1,1,0),(40491,0,140702,'Ujung Pandang','Indonesia','ID','Ujung Pandang (Indonesia)',1,1,0),(40492,0,140703,'Ulan Ude','Russia','RU','Ulan Ude (Russia)',1,1,0),(40493,0,140704,'Ulanqab (Wulanchabu)','China','CN','Ulanqab (Wulanchabu) (China)',1,1,0),(40494,0,140705,'Uljanowsk','Russia','RU','Uljanowsk (Russia)',1,1,0),(40495,28095,140706,'Ulladulla','Australia','AU','Ulladulla (Australia)',1,1,0),(40496,0,140707,'Ulrichen','Switzerland','CH','Ulrichen (Switzerland)',1,1,0),(40497,28111,140708,'Uluwatu','Indonesia','ID','Uluwatu (Indonesia)',1,1,0),(40498,28114,140709,'Ulvik','Norway','NO','Ulvik (Norway)',1,1,0),(40499,0,140710,'Umm al-Quwain','United Arab Emirates','AE','Umm al-Quwain (United Arab Emirates)',1,1,0),(40500,0,140711,'Umuarama','Brazil','BR','Umuarama (Brazil)',1,1,0),(40501,28137,140712,'Uncasville','United States of America','US','Uncasville (United States of America)',1,1,0),(40502,0,140713,'Uniescie','Poland','PL','Uniescie (Poland)',1,1,0),(40503,28146,140714,'Union','United States of America','US','Union (United States of America)',1,1,0),(40504,0,140715,'Union','United States of America','US','Union (United States of America)',1,1,0),(40505,28148,140716,'Uniondale','United States of America','US','Uniondale (United States of America)',1,1,0),(40506,0,140717,'Uniontown','United States of America','US','Uniontown (United States of America)',1,1,0),(40507,28153,140718,'Unkel','Germany','DE','Unkel (Germany)',1,1,0),(40508,28156,140719,'Unna','Germany','DE','Unna (Germany)',1,1,0),(40509,0,140720,'Unserfrau','Italy','IT','Unserfrau (Italy)',1,1,0),(40510,0,140721,'Unterammergau','Germany','DE','Unterammergau (Germany)',1,1,0),(40511,0,140722,'Unterbach','Switzerland','CH','Unterbach (Switzerland)',1,1,0),(40512,28173,140723,'Unterwossen','Germany','DE','Unterwossen (Germany)',1,1,0),(40513,28174,140724,'Unzen','Japan','JP','Unzen (Japan)',1,1,0),(40514,28179,140725,'Upland','United States of America','US','Upland (United States of America)',1,1,0),(40515,33891,140726,'Upper Marlboro','United States of America','US','Upper Marlboro (United States of America)',1,1,0),(40516,0,140727,'Upton Snodsbury','United Kingdom','UK','Upton Snodsbury (United Kingdom)',1,1,0),(40517,0,140728,'Urbana','United States of America','US','Urbana (United States of America)',1,1,0),(40518,0,140729,'Urnasch','Switzerland','CH','Urnasch (Switzerland)',1,1,0),(40519,0,140730,'Ursem','Netherlands','NL','Ursem (Netherlands)',1,1,0),(40520,0,140731,'Urubici','Brazil','BR','Urubici (Brazil)',1,1,0),(40521,28224,140732,'Usak','Turkey','TR','Usak (Turkey)',1,1,0),(40522,28242,140733,'Ustaoset','Norway','NO','Ustaoset (Norway)',1,1,0),(40523,28247,140734,'Ustron','Poland','PL','Ustron (Poland)',1,1,0),(40524,0,140735,'Uvero Alto','Dominican Republic','DO','Uvero Alto (Dominican Republic)',1,1,0),(40525,0,140736,'Uzel','France','FR','Uzel (France)',1,1,0),(40526,28285,140737,'Uzes','France','FR','Uzes (France)',1,1,0),(40527,28290,140738,'Vaaksy','Finland','FI','Vaaksy (Finland)',1,1,0),(40528,28299,140739,'Vacy','Australia','AU','Vacy (Australia)',1,1,0),(40529,0,140740,'Vada','Italy','IT','Vada (Italy)',1,1,0),(40530,28301,140741,'Vadnais Heights','United States of America','US','Vadnais Heights (United States of America)',1,1,0),(40531,0,140742,'Vafkeri','Greece','GR','Vafkeri (Greece)',1,1,0),(40532,28317,140743,'Vail','United States of America','US','Vail (United States of America)',1,1,0),(40533,0,140744,'Vaison la Romaine','France','FR','Vaison la Romaine (France)',1,1,0),(40534,33910,140745,'Val d\'Isere','France','FR','Val d\'Isere (France)',1,1,0),(40535,0,140746,'Thondorf','Austria','AT','Thondorf (Austria)',1,1,0),(40536,27196,140747,'Thones','France','FR','Thones (France)',1,1,0),(40537,0,140748,'Thonville','France','FR','Thonville (France)',1,1,0),(40538,0,140749,'Thornton-le-Moor','United Kingdom','UK','Thornton-le-Moor (United Kingdom)',1,1,0),(40539,0,140750,'Thornybush','South Africa','ZA','Thornybush (South Africa)',1,1,0),(40540,27218,140751,'Thorold','Canada','CA','Thorold (Canada)',1,1,0),(40541,0,140752,'Thoux','France','FR','Thoux (France)',1,1,0),(40542,0,140753,'Thruxton','United Kingdom','UK','Thruxton (United Kingdom)',1,1,0),(40543,0,140754,'Thumersbach','Austria','AT','Thumersbach (Austria)',1,1,0),(40544,27233,140755,'Thun','Switzerland','CH','Thun (Switzerland)',1,1,0),(40545,0,140756,'Thury-Harcourt','France','FR','Thury-Harcourt (France)',1,1,0),(40546,27272,140757,'Tigaki','Greece','GR','Tigaki (Greece)',1,1,0),(40547,0,140758,'Tighnabruaich','United Kingdom','UK','Tighnabruaich (United Kingdom)',1,1,0),(40548,27277,140759,'Tignes','France','FR','Tignes (France)',1,1,0),(40549,27285,140760,'Tijucas do Sul','Brazil','BR','Tijucas do Sul (Brazil)',1,1,0),(40550,27289,140761,'Tilaran','Costa Rica','CR','Tilaran (Costa Rica)',1,1,0),(40551,27291,140762,'Tilburg','Netherlands','NL','Tilburg (Netherlands)',1,1,0),(40552,0,140763,'Timmenrode','Germany','DE','Timmenrode (Germany)',1,1,0),(40553,0,140764,'Timoleague','Ireland','IE','Timoleague (Ireland)',1,1,0),(40554,27315,140765,'Tinajo','Spain','ES','Tinajo (Spain)',1,1,0),(40555,0,140766,'Tirschenreuth','Germany','DE','Tirschenreuth (Germany)',1,1,0),(40556,0,140767,'Tizimin','Mexico','MX','Tizimin (Mexico)',1,1,0),(40557,0,140768,'Tkon','Croatia','HR','Tkon (Croatia)',1,1,0),(40558,0,140769,'Tlacotalpan','Mexico','MX','Tlacotalpan (Mexico)',1,1,0),(40559,0,140770,'Toamasina','Madagascar','MG','Toamasina (Madagascar)',1,1,0),(40560,27391,140771,'Tobago','Trinidad and Tobago','TT','Tobago (Trinidad and Tobago)',1,1,0),(40561,27399,140772,'Toccoa','United States of America','US','Toccoa (United States of America)',1,1,0),(40562,27404,140773,'Tocumwal','Australia','AU','Tocumwal (Australia)',1,1,0),(40563,0,140774,'Toila','Estonia','EE','Toila (Estonia)',1,1,0),(40564,27417,140775,'Tokaj','Hungary','HU','Tokaj (Hungary)',1,1,0),(40565,0,140776,'Toljatti','Russia','RU','Toljatti (Russia)',1,1,0),(40566,27442,140777,'Tolleson','United States of America','US','Tolleson (United States of America)',1,1,0),(40567,27448,140778,'Tomahawk','United States of America','US','Tomahawk (United States of America)',1,1,0),(40568,27454,140779,'Tomball','United States of America','US','Tomball (United States of America)',1,1,0),(40569,0,140780,'Tomintoul','United Kingdom','UK','Tomintoul (United Kingdom)',1,1,0),(40570,0,140781,'Tonadico','Italy','IT','Tonadico (Italy)',1,1,0),(40571,0,140782,'Tonning','Germany','DE','Tonning (Germany)',1,1,0),(40572,0,140783,'Topen','Germany','DE','Topen (Germany)',1,1,0),(40573,0,140784,'Torca','Italy','IT','Torca (Italy)',1,1,0),(40574,27523,140785,'Torhout','Belgium','BE','Torhout (Belgium)',1,1,0),(40575,27527,140786,'Tornio','Finland','FI','Tornio (Finland)',1,1,0),(40576,0,140787,'Torpoint','United Kingdom','UK','Torpoint (United Kingdom)',1,1,0),(40577,27535,140788,'Torrao','Portugal','PT','Torrao (Portugal)',1,1,0),(40578,33863,140789,'Torre Pali','Italy','IT','Torre Pali (Italy)',1,1,0),(40579,0,140790,'Torreilles-Plage','France','FR','Torreilles-Plage (France)',1,1,0),(40580,27558,140791,'Torrico','Spain','ES','Torrico (Spain)',1,1,0),(40581,27561,140792,'Torrijos','Spain','ES','Torrijos (Spain)',1,1,0),(40582,27574,140793,'Tortoli','Italy','IT','Tortoli (Italy)',1,1,0),(40583,0,140794,'Tortona','Italy','IT','Tortona (Italy)',1,1,0),(40584,0,140795,'Tortuguero','Costa Rica','CR','Tortuguero (Costa Rica)',1,1,0),(40585,0,140796,'Toul','France','FR','Toul (France)',1,1,0),(40586,27603,140797,'Toulouse','France','FR','Toulouse (France)',1,1,0),(40587,27609,140798,'Tourlos','Greece','GR','Tourlos (Greece)',1,1,0),(40588,0,140799,'Tourmakeady','Ireland','IE','Tourmakeady (Ireland)',1,1,0),(40589,0,140800,'Town Yetholm','United Kingdom','UK','Town Yetholm (United Kingdom)',1,1,0),(40590,27627,140801,'Townsend','United States of America','US','Townsend (United States of America)',1,1,0),(40591,0,140802,'Townsend','United States of America','US','Townsend (United States of America)',1,1,0),(40592,27641,140803,'Trabzon','Turkey','TR','Trabzon (Turkey)',1,1,0),(40593,27645,140804,'Tragacete','Spain','ES','Tragacete (Spain)',1,1,0),(40594,0,140805,'Trahutten','Austria','AT','Trahutten (Austria)',1,1,0),(40595,27651,140806,'Tramacastilla de Tena','Spain','ES','Tramacastilla de Tena (Spain)',1,1,0),(40596,0,140807,'Trapiche','Argentina','AR','Trapiche (Argentina)',1,1,0),(40597,27666,140808,'Trappitello','Italy','IT','Trappitello (Italy)',1,1,0),(40598,27670,140809,'Trassenheide','Germany','DE','Trassenheide (Germany)',1,1,0),(40599,27672,140810,'Traunreut','Germany','DE','Traunreut (Germany)',1,1,0),(40600,0,140811,'Travagliato','Italy','IT','Travagliato (Italy)',1,1,0),(40601,27681,140812,'Travemunde','Germany','DE','Travemunde (Germany)',1,1,0),(40602,27682,140813,'Traverse City','United States of America','US','Traverse City (United States of America)',1,1,0),(40603,0,140814,'Trawas','Indonesia','ID','Trawas (Indonesia)',1,1,0),(40604,27685,140815,'Treasure Cay','Bahamas','BS','Treasure Cay (Bahamas)',1,1,0),(40605,27693,140816,'Trebeurden','France','FR','Trebeurden (France)',1,1,0),(40606,27694,140817,'Trebinje','Bosnia and Herzegowina','BA','Trebinje (Bosnia and Herzegowina)',1,1,0),(40607,27699,140818,'Trecastagni','Italy','IT','Trecastagni (Italy)',1,1,0),(40608,27706,140819,'Tregastel','France','FR','Tregastel (France)',1,1,0),(40609,27713,140820,'Treillieres','France','FR','Treillieres (France)',1,1,0),(40610,0,140821,'Tremadog','United Kingdom','UK','Tremadog (United Kingdom)',1,1,0),(40611,27721,140822,'Tremeur','France','FR','Tremeur (France)',1,1,0),(40612,27722,140823,'Tremezzo','Italy','IT','Tremezzo (Italy)',1,1,0),(40613,27729,140824,'Trent','Germany','DE','Trent (Germany)',1,1,0),(40614,27730,140825,'Trentham','New Zealand','NZ','Trentham (New Zealand)',1,1,0),(40615,27731,140826,'Trentinara','Italy','IT','Trentinara (Italy)',1,1,0),(40616,0,140827,'Trewoon','United Kingdom','UK','Trewoon (United Kingdom)',1,1,0),(40617,0,140828,'Treyvaux','Switzerland','CH','Treyvaux (Switzerland)',1,1,0),(40618,27764,140829,'Triesenberg','Liechtenstein','LI','Triesenberg (Liechtenstein)',1,1,0),(40619,27766,140830,'Trigance','France','FR','Trigance (France)',1,1,0),(40620,33871,140831,'Trim','Ireland','IE','Trim (Ireland)',1,1,0),(40621,27776,140832,'Trinidad','Cuba','CU','Trinidad (Cuba)',1,1,0),(40622,0,140833,'Trinita d\'Agultu','Italy','IT','Trinita d\'Agultu (Italy)',1,1,0),(40623,0,140834,'Trinity Beach','Australia','AU','Trinity Beach (Australia)',1,1,0),(40624,0,140835,'Triopetra','Greece','GR','Triopetra (Greece)',1,1,0),(40625,0,140836,'Tripiti Beach','Greece','GR','Tripiti Beach (Greece)',1,1,0),(40626,0,140837,'Trittenheim','Germany','DE','Trittenheim (Germany)',1,1,0),(40627,0,140838,'Trizinia','Greece','GR','Trizinia (Greece)',1,1,0),(40628,27794,140839,'Trofa','Portugal','PT','Trofa (Portugal)',1,1,0),(40629,0,140840,'Tronget','France','FR','Tronget (France)',1,1,0),(40630,35139,140841,'Trongsa','Bhutan','BT','Trongsa (Bhutan)',1,1,0),(40631,0,140842,'Trou d\'Eau Douce','Mauritius','MU','Trou d\'Eau Douce (Mauritius)',1,1,0),(40632,0,140843,'Trout Lake','United States of America','US','Trout Lake (United States of America)',1,1,0),(40633,0,140844,'Troyes','France','FR','Troyes (France)',1,1,0),(40634,27830,140845,'Trsteno','Croatia','HR','Trsteno (Croatia)',1,1,0),(40635,27833,140846,'Trujillo','Peru','PE','Trujillo (Peru)',1,1,0),(40636,27842,140847,'Truro','Canada','CA','Truro (Canada)',1,1,0),(40637,0,140848,'Tsapi','Greece','GR','Tsapi (Greece)',1,1,0),(40638,0,140849,'Tschernihiw','Ukraine','UA','Tschernihiw (Ukraine)',1,1,0),(40639,0,140850,'Tschita','Russia','RU','Tschita (Russia)',1,1,0),(40640,27861,140851,'Tsetang','China','CN','Tsetang (China)',1,1,0),(40641,0,140852,'Tsoukalades','Greece','GR','Tsoukalades (Greece)',1,1,0),(40642,0,140853,'Tsuruoka','Japan','JP','Tsuruoka (Japan)',1,1,0),(40643,27874,140854,'Tuam','Ireland','IE','Tuam (Ireland)',1,1,0),(40644,27881,140855,'Tuban','Indonesia','ID','Tuban (Indonesia)',1,1,0),(40645,0,140856,'Tubbercurry','Ireland','IE','Tubbercurry (Ireland)',1,1,0),(40646,27887,140857,'Tucker','United States of America','US','Tucker (United States of America)',1,1,0),(40647,0,140858,'Tulua','Colombia','CO','Tulua (Colombia)',1,1,0),(40648,27929,140859,'Tulungagung','Indonesia','ID','Tulungagung (Indonesia)',1,1,0),(40649,0,140860,'Velke Losiny','Czech Republic','CZ','Velke Losiny (Czech Republic)',1,1,0),(40650,0,140861,'Velten','Germany','DE','Velten (Germany)',1,1,0),(40651,33954,140862,'Vence','France','FR','Vence (France)',1,1,0),(40652,0,140863,'Vendenheim','France','FR','Vendenheim (France)',1,1,0),(40653,0,140864,'Venette','France','FR','Venette (France)',1,1,0),(40654,28575,140865,'Venice','United States of America','US','Venice (United States of America)',1,1,0),(40655,0,140866,'Verbania Pallanza','Italy','IT','Verbania Pallanza (Italy)',1,1,0),(40656,28599,140867,'Verdal','Norway','NO','Verdal (Norway)',1,1,0),(40657,0,140868,'Verges','Spain','ES','Verges (Spain)',1,1,0),(40658,28613,140869,'Verin','Spain','ES','Verin (Spain)',1,1,0),(40659,28619,140870,'Vermillion','United States of America','US','Vermillion (United States of America)',1,1,0),(40660,0,140871,'Vernon','United States of America','US','Vernon (United States of America)',1,1,0),(40661,0,140872,'Vernon','United States of America','US','Vernon (United States of America)',1,1,0),(40662,28632,140873,'Veroli','Italy','IT','Veroli (Italy)',1,1,0),(40663,28633,140874,'Verona','Italy','IT','Verona (Italy)',1,1,0),(40664,28642,140875,'Vers-Pont-du-Gard','France','FR','Vers-Pont-du-Gard (France)',1,1,0),(40665,28654,140876,'Vesoul','France','FR','Vesoul (France)',1,1,0),(40666,0,140877,'Vesteralen','Norway','NO','Vesteralen (Norway)',1,1,0),(40667,28664,140878,'Vetschau','Germany','DE','Vetschau (Germany)',1,1,0),(40668,28670,140879,'Veyrier-du-Lac','France','FR','Veyrier-du-Lac (France)',1,1,0),(40669,0,140880,'Vezzano','Italy','IT','Vezzano (Italy)',1,1,0),(40670,0,140881,'Viagrande','Italy','IT','Viagrande (Italy)',1,1,0),(40671,28681,140882,'Viareggio','Italy','IT','Viareggio (Italy)',1,1,0),(40672,33961,140883,'Vico del Gargano','Italy','IT','Vico del Gargano (Italy)',1,1,0),(40673,28698,140884,'Vic-sur-Cere','France','FR','Vic-sur-Cere (France)',1,1,0),(40674,28703,140885,'Victoria','Malta','MT','Victoria (Malta)',1,1,0),(40675,28711,140886,'Vidalia','United States of America','US','Vidalia (United States of America)',1,1,0),(40676,0,140887,'Vidsel','Sweden','SE','Vidsel (Sweden)',1,1,0),(40677,28729,140888,'Vienna','Austria','AT','Vienna (Austria)',1,1,0),(40678,28739,140889,'Vietri sul Mare','Italy','IT','Vietri sul Mare (Italy)',1,1,0),(40679,28753,140890,'Vigo','Spain','ES','Vigo (Spain)',1,1,0),(40680,0,140891,'Vigso','Denmark','DK','Vigso (Denmark)',1,1,0),(40681,28757,140892,'Vihula','Estonia','EE','Vihula (Estonia)',1,1,0),(40682,33967,140893,'Vik i Myrdal','Iceland','IS','Vik i Myrdal (Iceland)',1,1,0),(40683,33972,140894,'Vila Franca de Xira','Portugal','PT','Vila Franca de Xira (Portugal)',1,1,0),(40684,28762,140895,'Vila Velha','Brazil','BR','Vila Velha (Brazil)',1,1,0),(40685,0,140896,'Vila Verde','Portugal','PT','Vila Verde (Portugal)',1,1,0),(40686,28765,140897,'Viladrau','Spain','ES','Viladrau (Spain)',1,1,0),(40687,0,140898,'Vilafranca de Bonany','Spain','ES','Vilafranca de Bonany (Spain)',1,1,0),(40688,28775,140899,'Vilanculos','Mozambique','MZ','Vilanculos (Mozambique)',1,1,0),(40689,0,140900,'Vilanova de la Barca','Spain','ES','Vilanova de la Barca (Spain)',1,1,0),(40690,0,140901,'Vilaverd','Spain','ES','Vilaverd (Spain)',1,1,0),(40691,28787,140902,'Villa Carlos Paz','Argentina','AR','Villa Carlos Paz (Argentina)',1,1,0),(40692,33999,140903,'Villa Rica','United States of America','US','Villa Rica (United States of America)',1,1,0),(40693,0,140904,'Villamagna','Italy','IT','Villamagna (Italy)',1,1,0),(40694,28818,140905,'Villandry','France','FR','Villandry (France)',1,1,0),(40695,28819,140906,'Villanova','Italy','IT','Villanova (Italy)',1,1,0),(40696,0,140907,'Villanueva de la Serena','Spain','ES','Villanueva de la Serena (Spain)',1,1,0),(40697,0,140908,'Villanueva de las Torres','Spain','ES','Villanueva de las Torres (Spain)',1,1,0),(40698,0,140909,'Villanueva de los Infantes','Spain','ES','Villanueva de los Infantes (Spain)',1,1,0),(40699,28842,140910,'Villava','Spain','ES','Villava (Spain)',1,1,0),(40700,0,140911,'Villaverde de Guadalimar','Spain','ES','Villaverde de Guadalimar (Spain)',1,1,0),(40701,0,140912,'Villeferry','France','FR','Villeferry (France)',1,1,0),(40702,0,140913,'Villegusien-le-Lac','France','FR','Villegusien-le-Lac (France)',1,1,0),(40703,0,140914,'Villemomble','France','FR','Villemomble (France)',1,1,0),(40704,28863,140915,'Villeneuve-d\'Ascq','France','FR','Villeneuve-d\'Ascq (France)',1,1,0),(40705,0,140916,'Villeneuve-d\'Olmes','France','FR','Villeneuve-d\'Olmes (France)',1,1,0),(40706,0,140917,'Villeneuve-le-Roi','France','FR','Villeneuve-le-Roi (France)',1,1,0),(40707,0,140918,'Villers-le-Lac','France','FR','Villers-le-Lac (France)',1,1,0),(40708,0,140919,'Villerville','France','FR','Villerville (France)',1,1,0),(40709,0,140920,'Viloria de Rioja','Spain','ES','Viloria de Rioja (Spain)',1,1,0),(40710,28907,140921,'Vincennes','France','FR','Vincennes (France)',1,1,0),(40711,28910,140922,'Vincentia','Australia','AU','Vincentia (Australia)',1,1,0),(40712,28924,140923,'Vinjerac','Croatia','HR','Vinjerac (Croatia)',1,1,0),(40713,28936,140924,'Virden','Canada','CA','Virden (Canada)',1,1,0),(40714,0,140925,'Vireux-Molhain','France','FR','Vireux-Molhain (France)',1,1,0),(40715,28961,140926,'Viseu','Portugal','PT','Viseu (Portugal)',1,1,0),(40716,0,140927,'Visnjan','Croatia','HR','Visnjan (Croatia)',1,1,0),(40717,28964,140928,'Visperterminen','Switzerland','CH','Visperterminen (Switzerland)',1,1,0),(40718,0,140929,'Vitasaari','Finland','FI','Vitasaari (Finland)',1,1,0),(40719,28971,140930,'Vitorchiano','Italy','IT','Vitorchiano (Italy)',1,1,0),(40720,0,140931,'Vitoria Gasteiz','Spain','ES','Vitoria Gasteiz (Spain)',1,1,0),(40721,0,140932,'Vitsa','Greece','GR','Vitsa (Greece)',1,1,0),(40722,0,140933,'Viwa Island','Fiji Islands','FJ','Viwa Island (Fiji Islands)',1,1,0),(40723,0,140934,'Vlacheronitissa','Greece','GR','Vlacheronitissa (Greece)',1,1,0),(40724,0,140935,'Vladivostok','Russia','RU','Vladivostok (Russia)',1,1,0),(40725,0,140936,'Vna','Switzerland','CH','Vna (Switzerland)',1,1,0),(40726,29014,140937,'Voglans','France','FR','Voglans (France)',1,1,0),(40727,0,140938,'Vogogna','Italy','IT','Vogogna (Italy)',1,1,0),(40728,0,140939,'Vogorno','Switzerland','CH','Vogorno (Switzerland)',1,1,0),(40729,0,140940,'Vohenstrauss-Bohmischbruck','Germany','DE','Vohenstrauss-Bohmischbruck (Germany)',1,1,0),(40730,29024,140941,'Voitsberg','Austria','AT','Voitsberg (Austria)',1,1,0),(40731,29042,140942,'Volpiano','Italy','IT','Volpiano (Italy)',1,1,0),(40732,0,140943,'Vordernebelberg','Austria','AT','Vordernebelberg (Austria)',1,1,0),(40733,0,140944,'Voskresenskoye','Russia','RU','Voskresenskoye (Russia)',1,1,0),(40734,29071,140945,'Voula','Greece','GR','Voula (Greece)',1,1,0),(40735,0,140946,'Vouni','Cyprus','CY','Vouni (Cyprus)',1,1,0),(40736,0,140947,'Vrahassi Lassithi','Greece','GR','Vrahassi Lassithi (Greece)',1,1,0),(40737,0,140948,'Vresse-sur-Semois','Belgium','BE','Vresse-sur-Semois (Belgium)',1,1,0),(40738,0,140949,'Vrsac','Serbia','RS','Vrsac (Serbia)',1,1,0),(40739,0,140950,'Vytegra','Russia','RU','Vytegra (Russia)',1,1,0),(40740,0,140951,'Wabern','Germany','DE','Wabern (Germany)',1,1,0),(40741,0,140952,'Wachau','Germany','DE','Wachau (Germany)',1,1,0),(40742,0,140953,'Wachenheim an der Weinstra?e','Germany','DE','Wachenheim an der Weinstra?e (Germany)',1,1,0),(40743,0,140954,'Wachsenburggemeinde','Germany','DE','Wachsenburggemeinde (Germany)',1,1,0),(40744,0,140955,'Wachtberg','Germany','DE','Wachtberg (Germany)',1,1,0),(40745,0,140956,'Wadenswil','Switzerland','CH','Wadenswil (Switzerland)',1,1,0),(40746,0,140957,'Wadley','United States of America','US','Wadley (United States of America)',1,1,0),(40747,0,140958,'Wafangdian','China','CN','Wafangdian (China)',1,1,0),(40748,29133,140959,'Wagga Wagga','Australia','AU','Wagga Wagga (Australia)',1,1,0),(40749,29136,140960,'Wagoner','United States of America','US','Wagoner (United States of America)',1,1,0),(40750,0,140961,'Waikava','New Zealand','NZ','Waikava (New Zealand)',1,1,0),(40751,0,140962,'Waikiki','United States of America','US','Waikiki (United States of America)',1,1,0),(40752,34008,140963,'Waikoloa','United States of America','US','Waikoloa (United States of America)',1,1,0),(40753,0,140964,'Wailea','United States of America','US','Wailea (United States of America)',1,1,0),(40754,29177,140965,'Wakefield','United States of America','US','Wakefield (United States of America)',1,1,0),(40755,0,140966,'Waldfischbach-Burgalben','Germany','DE','Waldfischbach-Burgalben (Germany)',1,1,0),(40756,0,140967,'Walkendorf','Germany','DE','Walkendorf (Germany)',1,1,0),(40757,0,140968,'Tapolca','Hungary','HU','Tapolca (Hungary)',1,1,0),(40758,26820,140969,'Tarazona','Spain','ES','Tarazona (Spain)',1,1,0),(40759,0,140970,'Tarbes','France','FR','Tarbes (France)',1,1,0),(40760,26825,140971,'Tarboro','United States of America','US','Tarboro (United States of America)',1,1,0),(40761,26872,140972,'Tasch','Switzerland','CH','Tasch (Switzerland)',1,1,0),(40762,0,140973,'Tatranska Javorina','Slovakia','SK','Tatranska Javorina (Slovakia)',1,1,0),(40763,26893,140974,'Tauberbischofsheim','Germany','DE','Tauberbischofsheim (Germany)',1,1,0),(40764,0,140975,'Taufkirchen','Germany','DE','Taufkirchen (Germany)',1,1,0),(40765,0,140976,'Taurage','Lithuania','LT','Taurage (Lithuania)',1,1,0),(40766,26901,140977,'Tauranga','New Zealand','NZ','Tauranga (New Zealand)',1,1,0),(40767,0,140978,'Tavira','Portugal','PT','Tavira (Portugal)',1,1,0),(40768,0,140979,'Tazacorte','Spain','ES','Tazacorte (Spain)',1,1,0),(40769,0,140980,'Te Kaha','New Zealand','NZ','Te Kaha (New Zealand)',1,1,0),(40770,0,140981,'Tebay','United Kingdom','UK','Tebay (United Kingdom)',1,1,0),(40771,0,140982,'Techendorf','Austria','AT','Techendorf (Austria)',1,1,0),(40772,0,140983,'Tegernheim','Germany','DE','Tegernheim (Germany)',1,1,0),(40773,26951,140984,'Tehachapi','United States of America','US','Tehachapi (United States of America)',1,1,0),(40774,0,140985,'Tehuantepec','Mexico','MX','Tehuantepec (Mexico)',1,1,0),(40775,0,140986,'Teichalm','Austria','AT','Teichalm (Austria)',1,1,0),(40776,0,140987,'Teillet','France','FR','Teillet (France)',1,1,0),(40777,26959,140988,'Tekirdag','Turkey','TR','Tekirdag (Turkey)',1,1,0),(40778,0,140989,'Telegraph Cove','Canada','CA','Telegraph Cove (Canada)',1,1,0),(40779,0,140990,'Telendos','Greece','GR','Telendos (Greece)',1,1,0),(40780,0,140991,'Telese Terme','Italy','IT','Telese Terme (Italy)',1,1,0),(40781,0,140992,'Tellingstedt','Germany','DE','Tellingstedt (Germany)',1,1,0),(40782,26979,140993,'Tema','Ghana','GH','Tema (Ghana)',1,1,0),(40783,0,140994,'Tembe Elephant Park','South Africa','ZA','Tembe Elephant Park (South Africa)',1,1,0),(40784,26991,140995,'Tempio Pausania','Italy','IT','Tempio Pausania (Italy)',1,1,0),(40785,0,140996,'Temple Cloud','United Kingdom','UK','Temple Cloud (United Kingdom)',1,1,0),(40786,0,140997,'Temryuk','Russia','RU','Temryuk (Russia)',1,1,0),(40787,0,140998,'Tenbury Wells','United Kingdom','UK','Tenbury Wells (United Kingdom)',1,1,0),(40788,27024,140999,'Tennant Creek','Australia','AU','Tennant Creek (Australia)',1,1,0),(40789,0,141000,'Teos','Turkey','TR','Teos (Turkey)',1,1,0),(40790,0,141001,'Terezin','Czech Republic','CZ','Terezin (Czech Republic)',1,1,0),(40791,0,141002,'Terfens','Austria','AT','Terfens (Austria)',1,1,0),(40792,0,141003,'Terlago','Italy','IT','Terlago (Italy)',1,1,0),(40793,0,141004,'Terlan','Italy','IT','Terlan (Italy)',1,1,0),(40794,0,141005,'Termas de Rio Hondo','Argentina','AR','Termas de Rio Hondo (Argentina)',1,1,0),(40795,0,141006,'Termignon','France','FR','Termignon (France)',1,1,0),(40796,0,141007,'Ternat','Belgium','BE','Ternat (Belgium)',1,1,0),(40797,27058,141008,'Ternate','Italy','IT','Ternate (Italy)',1,1,0),(40798,0,141009,'Ternberg','Austria','AT','Ternberg (Austria)',1,1,0),(40799,0,141010,'Terrassa','Spain','ES','Terrassa (Spain)',1,1,0),(40800,27071,141011,'Terre Rouge','Mauritius','MU','Terre Rouge (Mauritius)',1,1,0),(40801,27078,141012,'Terruggia','Italy','IT','Terruggia (Italy)',1,1,0),(40802,0,141013,'Tervo','Finland','FI','Tervo (Finland)',1,1,0),(40803,0,141014,'Teseguite','Spain','ES','Teseguite (Spain)',1,1,0),(40804,0,141015,'Tetiaroa','French Polynesia','PF','Tetiaroa (French Polynesia)',1,1,0),(40805,27095,141016,'Teton Village','United States of America','US','Teton Village (United States of America)',1,1,0),(40806,27097,141017,'Tetouan','Morocco','MA','Tetouan (Morocco)',1,1,0),(40807,27099,141018,'Tettnang','Germany','DE','Tettnang (Germany)',1,1,0),(40808,0,141019,'Teupitz','Germany','DE','Teupitz (Germany)',1,1,0),(40809,0,141020,'Tewkesbury','United Kingdom','UK','Tewkesbury (United Kingdom)',1,1,0),(40810,0,141021,'Texel','Netherlands','NL','Texel (Netherlands)',1,1,0),(40811,0,141022,'Tha Ton','Thailand','TH','Tha Ton (Thailand)',1,1,0),(40812,27145,141023,'Thatcher','United States of America','US','Thatcher (United States of America)',1,1,0),(40813,0,141024,'Thaxted','United Kingdom','UK','Thaxted (United Kingdom)',1,1,0),(40814,0,141025,'Thebes','Greece','GR','Thebes (Greece)',1,1,0),(40815,27160,141026,'Theologos','Greece','GR','Theologos (Greece)',1,1,0),(40816,0,141027,'Thessaloniki','Greece','GR','Thessaloniki (Greece)',1,1,0),(40817,27173,141028,'Thiene','Italy','IT','Thiene (Italy)',1,1,0),(40818,0,141029,'Thiessow','Germany','DE','Thiessow (Germany)',1,1,0),(40819,0,141030,'Tholaria','Greece','GR','Tholaria (Greece)',1,1,0),(40820,0,141031,'Thornhill','South Africa','ZA','Thornhill (South Africa)',1,1,0),(40821,0,141032,'Thornton-le-Dale','United Kingdom','UK','Thornton-le-Dale (United Kingdom)',1,1,0),(40822,33834,141033,'Thorp','United States of America','US','Thorp (United States of America)',1,1,0),(40823,0,141034,'Thousand Palms','United States of America','US','Thousand Palms (United States of America)',1,1,0),(40824,0,141035,'Three Lakes','United States of America','US','Three Lakes (United States of America)',1,1,0),(40825,0,141036,'Three Rivers','United States of America','US','Three Rivers (United States of America)',1,1,0),(40826,0,141037,'Threna','Germany','DE','Threna (Germany)',1,1,0),(40827,27236,141038,'Thuret','France','FR','Thuret (France)',1,1,0),(40828,27254,141039,'Tiberias','Israel','IL','Tiberias (Israel)',1,1,0),(40829,27256,141040,'Ticaboo','United States of America','US','Ticaboo (United States of America)',1,1,0),(40830,27258,141041,'Ticino','Switzerland','CH','Ticino (Switzerland)',1,1,0),(40831,0,141042,'Tienen','Belgium','BE','Tienen (Belgium)',1,1,0),(40832,0,141043,'Tijarafe','Spain','ES','Tijarafe (Spain)',1,1,0),(40833,0,141044,'Tilghman Island','United States of America','US','Tilghman Island (United States of America)',1,1,0),(40834,0,141045,'Tilissos','Greece','GR','Tilissos (Greece)',1,1,0),(40835,27297,141046,'Tillsonburg','Canada','CA','Tillsonburg (Canada)',1,1,0),(40836,27303,141047,'Timber Creek','Australia','AU','Timber Creek (Australia)',1,1,0),(40837,27304,141048,'Timika','Indonesia','ID','Timika (Indonesia)',1,1,0),(40838,27327,141049,'Tinley Park','United States of America','US','Tinley Park (United States of America)',1,1,0),(40839,0,141050,'Tinnura','Italy','IT','Tinnura (Italy)',1,1,0),(40840,27334,141051,'Tioga','United States of America','US','Tioga (United States of America)',1,1,0),(40841,27337,141052,'Tipp City','United States of America','US','Tipp City (United States of America)',1,1,0),(40842,27341,141053,'Tipton','United States of America','US','Tipton (United States of America)',1,1,0),(40843,0,141055,'Titchmarsh','United Kingdom','UK','Titchmarsh (United Kingdom)',1,1,0),(40844,0,141056,'Titi Lake (Titisee)','Germany','DE','Titi Lake (Titisee) (Germany)',1,1,0),(40845,0,141057,'Tiverton','United Kingdom','UK','Tiverton (United Kingdom)',1,1,0),(40846,0,141058,'Tiwi Beach','Kenya','KE','Tiwi Beach (Kenya)',1,1,0),(40847,0,141059,'Tizi Oozou','Algeria','DZ','Tizi Oozou (Algeria)',1,1,0),(40848,0,141060,'Tizzano','France','FR','Tizzano (France)',1,1,0),(40849,27380,141061,'Tjome','Norway','NO','Tjome (Norway)',1,1,0),(40850,27387,141062,'Tlemcen','Algeria','DZ','Tlemcen (Algeria)',1,1,0),(40851,27392,141063,'Tobermory','Canada','CA','Tobermory (Canada)',1,1,0),(40852,0,141064,'Tocksfors','Sweden','SE','Tocksfors (Sweden)',1,1,0),(40853,0,141065,'Todoque','Spain','ES','Todoque (Spain)',1,1,0),(40854,27408,141066,'Todos Santos','Mexico','MX','Todos Santos (Mexico)',1,1,0),(40855,27434,141067,'Tolentino','Italy','IT','Tolentino (Italy)',1,1,0),(40856,0,141068,'Tollerton','United Kingdom','UK','Tollerton (United Kingdom)',1,1,0),(40857,0,141069,'Tomaszow Mazowiecki','Poland','PL','Tomaszow Mazowiecki (Poland)',1,1,0),(40858,0,141070,'Tomelilla','Sweden','SE','Tomelilla (Sweden)',1,1,0),(40859,0,141071,'Tomohon','Indonesia','ID','Tomohon (Indonesia)',1,1,0),(40860,27474,141072,'Tonghua','China','CN','Tonghua (China)',1,1,0),(40861,27484,141073,'Tonnay-Boutonne','France','FR','Tonnay-Boutonne (France)',1,1,0),(40862,0,141074,'Tonneins','France','FR','Tonneins (France)',1,1,0),(40863,27497,141075,'Topeka','United States of America','US','Topeka (United States of America)',1,1,0),(40864,0,141076,'Torchiara','Italy','IT','Torchiara (Italy)',1,1,0),(40865,27518,141077,'Torello','Spain','ES','Torello (Spain)',1,1,0),(40866,27521,141078,'Torgnon','Italy','IT','Torgnon (Italy)',1,1,0),(40867,27524,141079,'Torla','Spain','ES','Torla (Spain)',1,1,0),(40868,0,141080,'Toro','Spain','ES','Toro (Spain)',1,1,0),(40869,28033,141081,'Tyngsboro','United States of America','US','Tyngsboro (United States of America)',1,1,0),(40870,0,141082,'Tynset','Norway','NO','Tynset (Norway)',1,1,0),(40871,0,141083,'Uberlingen','Germany','DE','Uberlingen (Germany)',1,1,0),(40872,0,141084,'Uchaud','France','FR','Uchaud (France)',1,1,0),(40873,0,141085,'Uchte','Germany','DE','Uchte (Germany)',1,1,0),(40874,0,141086,'Ucles','Spain','ES','Ucles (Spain)',1,1,0),(40875,0,141087,'Uehlfeld','Germany','DE','Uehlfeld (Germany)',1,1,0),(40876,0,141088,'Ugljan','Croatia','HR','Ugljan (Croatia)',1,1,0),(40877,0,141089,'Ukna','Sweden','SE','Ukna (Sweden)',1,1,0),(40878,0,141090,'Ulaanbaatar','Mongolia','MN','Ulaanbaatar (Mongolia)',1,1,0),(40879,0,141091,'Ullared','Sweden','SE','Ullared (Sweden)',1,1,0),(40880,28104,141092,'Ulsteinvik','Norway','NO','Ulsteinvik (Norway)',1,1,0),(40881,0,141093,'Ulvila','Finland','FI','Ulvila (Finland)',1,1,0),(40882,0,141094,'Umhali Beach','South Africa','ZA','Umhali Beach (South Africa)',1,1,0),(40883,0,141095,'Umkomaas','South Africa','ZA','Umkomaas (South Africa)',1,1,0),(40884,0,141096,'Ummendorf','Germany','DE','Ummendorf (Germany)',1,1,0),(40885,28141,141098,'Undersaker','Sweden','SE','Undersaker (Sweden)',1,1,0),(40886,0,141099,'Union City','United States of America','US','Union City (United States of America)',1,1,0),(40887,0,141100,'Union City','United States of America','US','Union City (United States of America)',1,1,0),(40888,0,141101,'Urbach','Germany','DE','Urbach (Germany)',1,1,0),(40889,0,141102,'Ureki','Georgia','GE','Ureki (Georgia)',1,1,0),(40890,0,141103,'Uroa','Tanzania','TZ','Uroa (Tanzania)',1,1,0),(40891,28214,141104,'Ursel','Belgium','BE','Ursel (Belgium)',1,1,0),(40892,28222,141105,'Urumqi','China','CN','Urumqi (China)',1,1,0),(40893,0,141106,'Usakos','Namibia','NA','Usakos (Namibia)',1,1,0),(40894,0,141107,'Userin','Germany','DE','Userin (Germany)',1,1,0),(40895,28231,141108,'Usingen','Germany','DE','Usingen (Germany)',1,1,0),(40896,28255,141109,'Utica','United States of America','US','Utica (United States of America)',1,1,0),(40897,0,141110,'Utica','United States of America','US','Utica (United States of America)',1,1,0),(40898,28268,141111,'Utting am Ammersee','Germany','DE','Utting am Ammersee (Germany)',1,1,0),(40899,28278,141112,'Uwajima','Japan','JP','Uwajima (Japan)',1,1,0),(40900,28281,141113,'Uxmal','Mexico','MX','Uxmal (Mexico)',1,1,0),(40901,28282,141114,'Uyo','Nigeria','NG','Uyo (Nigeria)',1,1,0),(40902,0,141115,'Uzunyurt','Turkey','TR','Uzunyurt (Turkey)',1,1,0),(40903,28289,141116,'Uzwil','Switzerland','CH','Uzwil (Switzerland)',1,1,0),(40904,0,141117,'Vagia','Greece','GR','Vagia (Greece)',1,1,0),(40905,0,141118,'Vagnas','France','FR','Vagnas (France)',1,1,0),(40906,33902,141119,'Val d\'Allos','France','FR','Val d\'Allos (France)',1,1,0),(40907,0,141120,'Val De San Vicente','Spain','ES','Val De San Vicente (Spain)',1,1,0),(40908,0,141121,'Valbandon','Croatia','HR','Valbandon (Croatia)',1,1,0),(40909,0,141122,'Valcianska Dolina/Kleine Fatra','Slovakia','SK','Valcianska Dolina/Kleine Fatra (Slovakia)',1,1,0),(40910,28336,141123,'Valdepenas','Spain','ES','Valdepenas (Spain)',1,1,0),(40911,28337,141124,'Val-de-Reuil','France','FR','Val-de-Reuil (France)',1,1,0),(40912,0,141125,'Valdes','Spain','ES','Valdes (Spain)',1,1,0),(40913,0,141126,'Val-de-Travers','Switzerland','CH','Val-de-Travers (Switzerland)',1,1,0),(40914,0,141127,'Vale de Cambra','Portugal','PT','Vale de Cambra (Portugal)',1,1,0),(40915,0,141128,'Vale de Mendiz','Portugal','PT','Vale de Mendiz (Portugal)',1,1,0),(40916,0,141129,'Valencina de la Concepcion','Spain','ES','Valencina de la Concepcion (Spain)',1,1,0),(40917,28378,141130,'Valladolid','Spain','ES','Valladolid (Spain)',1,1,0),(40918,0,141131,'Valldemossa','Spain','ES','Valldemossa (Spain)',1,1,0),(40919,28386,141132,'Valledupar','Colombia','CO','Valledupar (Colombia)',1,1,0),(40920,0,141133,'Vallejera de Riofrio','Spain','ES','Vallejera de Riofrio (Spain)',1,1,0),(40921,0,141134,'Valley','Germany','DE','Valley (Germany)',1,1,0),(40922,0,141135,'Vall-Llobrega','Spain','ES','Vall-Llobrega (Spain)',1,1,0),(40923,28398,141136,'Vallombrosa','Italy','IT','Vallombrosa (Italy)',1,1,0),(40924,28405,141137,'Valmadrera','Italy','IT','Valmadrera (Italy)',1,1,0),(40925,0,141138,'Valoria la Buena','Spain','ES','Valoria la Buena (Spain)',1,1,0),(40926,28409,141139,'Valparaiso','Chile','CL','Valparaiso (Chile)',1,1,0),(40927,0,141140,'Valreas','France','FR','Valreas (France)',1,1,0),(40928,28415,141141,'Valtierra','Spain','ES','Valtierra (Spain)',1,1,0),(40929,28416,141142,'Valtopina','Italy','IT','Valtopina (Italy)',1,1,0),(40930,0,141143,'Vanberg - Olden','Norway','NO','Vanberg - Olden (Norway)',1,1,0),(40931,28426,141144,'Vancouver','United States of America','US','Vancouver (United States of America)',1,1,0),(40932,0,141145,'Vandans','Austria','AT','Vandans (Austria)',1,1,0),(40933,28443,141146,'Vanves','France','FR','Vanves (France)',1,1,0),(40934,28456,141148,'Varedo','Italy','IT','Varedo (Italy)',1,1,0),(40935,0,141149,'Varena','Italy','IT','Varena (Italy)',1,1,0),(40936,0,141150,'Vargarda','Sweden','SE','Vargarda (Sweden)',1,1,0),(40937,0,141151,'Varia','Greece','GR','Varia (Greece)',1,1,0),(40938,0,141152,'Vasilitsi','Greece','GR','Vasilitsi (Greece)',1,1,0),(40939,0,141153,'Vason','Italy','IT','Vason (Italy)',1,1,0),(40940,28491,141154,'Vathy','Greece','GR','Vathy (Greece)',1,1,0),(40941,0,141155,'Vatodedi','Greece','GR','Vatodedi (Greece)',1,1,0),(40942,28507,141156,'Vava\'u','Tonga','TO','Vava\'u (Tonga)',1,1,0),(40943,28515,141157,'Vedene','France','FR','Vedene (France)',1,1,0),(40944,28525,141158,'Veitsch','Austria','AT','Veitsch (Austria)',1,1,0),(40945,0,141159,'Vejle','Denmark','DK','Vejle (Denmark)',1,1,0),(40946,0,141160,'Velaux','France','FR','Velaux (France)',1,1,0),(40947,0,141161,'Veldenz','Germany','DE','Veldenz (Germany)',1,1,0),(40948,0,141162,'Velez Malaga','Spain','ES','Velez Malaga (Spain)',1,1,0),(40949,0,141163,'Veli Losinj Island','Croatia','HR','Veli Losinj Island (Croatia)',1,1,0),(40950,0,141164,'Velke Mezirici','Czech Republic','CZ','Velke Mezirici (Czech Republic)',1,1,0),(40951,0,141165,'Vemdalen','Sweden','SE','Vemdalen (Sweden)',1,1,0),(40952,28569,141166,'Venelles','France','FR','Venelles (France)',1,1,0),(40953,28584,141167,'Ventimiglia','Italy','IT','Ventimiglia (Italy)',1,1,0),(40954,0,141168,'Ventosa','Spain','ES','Ventosa (Spain)',1,1,0),(40955,0,141169,'Ventura Beach','United States of America','US','Ventura Beach (United States of America)',1,1,0),(40956,0,141170,'Venus','Romania','RO','Venus (Romania)',1,1,0),(40957,33956,141171,'Vera de Bidasoa','Spain','ES','Vera de Bidasoa (Spain)',1,1,0),(40958,28596,141172,'Verbier','Switzerland','CH','Verbier (Switzerland)',1,1,0),(40959,0,141173,'Verden (Aller)','Germany','DE','Verden (Aller) (Germany)',1,1,0),(40960,28605,141174,'Verdun','France','FR','Verdun (France)',1,1,0),(40961,0,141175,'Vermenton','France','FR','Vermenton (France)',1,1,0),(40962,28624,141176,'Vernazza','Italy','IT','Vernazza (Italy)',1,1,0),(40963,28625,141177,'Verneuil-sur-Avre','France','FR','Verneuil-sur-Avre (France)',1,1,0),(40964,0,141178,'Vernouillet','France','FR','Vernouillet (France)',1,1,0),(40965,0,141179,'Verres','Italy','IT','Verres (Italy)',1,1,0),(40966,0,141180,'Vers (Lot)','France','FR','Vers (Lot) (France)',1,1,0),(40967,28646,141181,'Vertus','France','FR','Vertus (France)',1,1,0),(40968,0,141182,'Veruno','Italy','IT','Veruno (Italy)',1,1,0),(40969,28648,141183,'Verviers','Belgium','BE','Verviers (Belgium)',1,1,0),(40970,0,141184,'Vesio di Tremosine','Italy','IT','Vesio di Tremosine (Italy)',1,1,0),(40971,28663,141185,'Vetralla','Italy','IT','Vetralla (Italy)',1,1,0),(40972,0,141186,'Veynes','France','FR','Veynes (France)',1,1,0),(40973,28669,141187,'Veyrier','Switzerland','CH','Veyrier (Switzerland)',1,1,0),(40974,28680,141188,'Vianen','Netherlands','NL','Vianen (Netherlands)',1,1,0),(40975,0,141189,'Victoire','Canada','CA','Victoire (Canada)',1,1,0),(40976,28708,141190,'Victorville','United States of America','US','Victorville (United States of America)',1,1,0),(40977,28709,141191,'Vida','United States of America','US','Vida (United States of America)',1,1,0),(40978,0,141192,'Vidiciatico','Italy','IT','Vidiciatico (Italy)',1,1,0),(40979,0,141193,'Trensum','Sweden','SE','Trensum (Sweden)',1,1,0),(40980,27735,141194,'Trenton','Canada','CA','Trenton (Canada)',1,1,0),(40981,0,141195,'Trenton','United States of America','US','Trenton (United States of America)',1,1,0),(40982,0,141196,'Tres Pontas','Brazil','BR','Tres Pontas (Brazil)',1,1,0),(40983,0,141197,'Trescore Balneario','Italy','IT','Trescore Balneario (Italy)',1,1,0),(40984,27762,141198,'Trier','Germany','DE','Trier (Germany)',1,1,0),(40985,27770,141199,'Trilj','Croatia','HR','Trilj (Croatia)',1,1,0),(40986,0,141200,'Triquivijate','Spain','ES','Triquivijate (Spain)',1,1,0),(40987,27791,141201,'Trizay','France','FR','Trizay (France)',1,1,0),(40988,27795,141202,'Trogir','Croatia','HR','Trogir (Croatia)',1,1,0),(40989,0,141203,'Trois Revieres','Guadeloupe','GP','Trois Revieres (Guadeloupe)',1,1,0),(40990,0,141204,'Trois-Ponts','Belgium','BE','Trois-Ponts (Belgium)',1,1,0),(40991,27804,141205,'Troisvierges','Luxembourg','LU','Troisvierges (Luxembourg)',1,1,0),(40992,27817,141206,'Trosa','Sweden','SE','Trosa (Sweden)',1,1,0),(40993,27822,141207,'Trout Creek','United States of America','US','Trout Creek (United States of America)',1,1,0),(40994,0,141208,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(40995,27831,141209,'Truckee','United States of America','US','Truckee (United States of America)',1,1,0),(40996,27839,141210,'Trumbull','United States of America','US','Trumbull (United States of America)',1,1,0),(40997,0,141211,'Trzebiatow','Poland','PL','Trzebiatow (Poland)',1,1,0),(40998,0,141212,'Tsarabanjina','Madagascar','MG','Tsarabanjina (Madagascar)',1,1,0),(40999,27856,141213,'Tsarevo','Bulgaria','BG','Tsarevo (Bulgaria)',1,1,0),(41000,27858,141214,'Tsawwassen','Canada','CA','Tsawwassen (Canada)',1,1,0),(41001,27859,141215,'Tschagguns','Austria','AT','Tschagguns (Austria)',1,1,0),(41002,0,141216,'Tscheljabinsk','Russia','RU','Tscheljabinsk (Russia)',1,1,0),(41003,0,141217,'Tscherms','Italy','IT','Tscherms (Italy)',1,1,0),(41004,0,141218,'Tsepelovo','Greece','GR','Tsepelovo (Greece)',1,1,0),(41005,27883,141219,'Tubuai','French Polynesia','PF','Tubuai (French Polynesia)',1,1,0),(41006,27886,141220,'Tuchlovice','Czech Republic','CZ','Tuchlovice (Czech Republic)',1,1,0),(41007,27891,141221,'Tucumcari','United States of America','US','Tucumcari (United States of America)',1,1,0),(41008,0,141222,'Tuhelj','Croatia','HR','Tuhelj (Croatia)',1,1,0),(41009,0,141223,'Tuineje','Spain','ES','Tuineje (Spain)',1,1,0),(41010,27914,141224,'Tulfes','Austria','AT','Tulfes (Austria)',1,1,0),(41011,27933,141225,'Tumbes','Peru','PE','Tumbes (Peru)',1,1,0),(41012,27950,141226,'Tunxi','China','CN','Tunxi (China)',1,1,0),(41013,0,141227,'Turawa','Poland','PL','Turawa (Poland)',1,1,0),(41014,27975,141228,'Turlock','United States of America','US','Turlock (United States of America)',1,1,0),(41015,0,141229,'Turnberry','United Kingdom','UK','Turnberry (United Kingdom)',1,1,0),(41016,27997,141230,'Tuscumbia','United States of America','US','Tuscumbia (United States of America)',1,1,0),(41017,0,141232,'Tux- Lanersbach','Austria','AT','Tux- Lanersbach (Austria)',1,1,0),(41018,28015,141233,'Twann','Switzerland','CH','Twann (Switzerland)',1,1,0),(41019,0,141234,'Tylissos','Greece','GR','Tylissos (Greece)',1,1,0),(41020,0,141235,'Tynaarlo','Netherlands','NL','Tynaarlo (Netherlands)',1,1,0),(41021,0,141236,'Tynningo - Vaxholm Island','Sweden','SE','Tynningo - Vaxholm Island (Sweden)',1,1,0),(41022,0,141237,'Tyringe','Sweden','SE','Tyringe (Sweden)',1,1,0),(41023,0,141238,'Uberherrn','Germany','DE','Uberherrn (Germany)',1,1,0),(41024,28052,141239,'Ubon Ratchathani','Thailand','TH','Ubon Ratchathani (Thailand)',1,1,0),(41025,28062,141240,'Uddevalla','Sweden','SE','Uddevalla (Sweden)',1,1,0),(41026,0,141241,'Udias','Spain','ES','Udias (Spain)',1,1,0),(41027,0,141242,'Udine','Italy','IT','Udine (Italy)',1,1,0),(41028,0,141243,'Uelsen','Germany','DE','Uelsen (Germany)',1,1,0),(41029,0,141244,'Uetersen','Germany','DE','Uetersen (Germany)',1,1,0),(41030,0,141245,'Uitenhage','South Africa','ZA','Uitenhage (South Africa)',1,1,0),(41031,0,141246,'Ulcinj','Montenegro','ME','Ulcinj (Montenegro)',1,1,0),(41032,28100,141247,'Ullin','United States of America','US','Ullin (United States of America)',1,1,0),(41033,0,141248,'Ulongwe','Malawi','MW','Ulongwe (Malawi)',1,1,0),(41034,0,141249,'Ulrichstein','Germany','DE','Ulrichstein (Germany)',1,1,0),(41035,0,141250,'Ultental','Italy','IT','Ultental (Italy)',1,1,0),(41036,0,141251,'Ultzama','Spain','ES','Ultzama (Spain)',1,1,0),(41037,0,141252,'Ulverston','United Kingdom','UK','Ulverston (United Kingdom)',1,1,0),(41038,28116,141253,'Ulysses','United States of America','US','Ulysses (United States of America)',1,1,0),(41039,0,141254,'Umdloti','South Africa','ZA','Umdloti (South Africa)',1,1,0),(41040,28129,141255,'Umina Beach','Australia','AU','Umina Beach (Australia)',1,1,0),(41041,0,141256,'Unadilla','United States of America','US','Unadilla (United States of America)',1,1,0),(41042,0,141257,'Undenas - Karlsborg','Sweden','SE','Undenas - Karlsborg (Sweden)',1,1,0),(41043,0,141258,'Ungheni','Moldova','MD','Ungheni (Moldova)',1,1,0),(41044,0,141259,'Union','United States of America','US','Union (United States of America)',1,1,0),(41045,0,141260,'Unterleinleiter','Germany','DE','Unterleinleiter (Germany)',1,1,0),(41046,0,141261,'Unterschonau','Germany','DE','Unterschonau (Germany)',1,1,0),(41047,0,141262,'Untersiebenbrunn','Austria','AT','Untersiebenbrunn (Austria)',1,1,0),(41048,0,141263,'Unterterzen','Switzerland','CH','Unterterzen (Switzerland)',1,1,0),(41049,28178,141264,'Upington','South Africa','ZA','Upington (South Africa)',1,1,0),(41050,0,141265,'Upper Economy','Canada','CA','Upper Economy (Canada)',1,1,0),(41051,0,141266,'Urbana','United States of America','US','Urbana (United States of America)',1,1,0),(41052,0,141267,'Urda','Spain','ES','Urda (Spain)',1,1,0),(41053,0,141268,'Uriz','Spain','ES','Uriz (Spain)',1,1,0),(41054,0,141269,'Urmiri (Oruro)','Bolivia','BO','Urmiri (Oruro) (Bolivia)',1,1,0),(41055,0,141270,'Uschhorod','Ukraine','UA','Uschhorod (Ukraine)',1,1,0),(41056,28226,141271,'Uscio','Italy','IT','Uscio (Italy)',1,1,0),(41057,28234,141272,'Uslar','Germany','DE','Uslar (Germany)',1,1,0),(41058,0,141273,'Usmate Velate','Italy','IT','Usmate Velate (Italy)',1,1,0),(41059,0,141274,'Ussel (Correze)','France','FR','Ussel (Correze) (France)',1,1,0),(41060,28244,141275,'Uster','Switzerland','CH','Uster (Switzerland)',1,1,0),(41061,0,141276,'Usti nad Labem','Czech Republic','CZ','Usti nad Labem (Czech Republic)',1,1,0),(41062,28252,141277,'Utersum','Germany','DE','Utersum (Germany)',1,1,0),(41063,0,141278,'Utrillas','Spain','ES','Utrillas (Spain)',1,1,0),(41064,28263,141279,'Utsunomiya','Japan','JP','Utsunomiya (Japan)',1,1,0),(41065,28274,141280,'Uusikaupunki','Finland','FI','Uusikaupunki (Finland)',1,1,0),(41066,0,141281,'Uxbridge','United Kingdom','UK','Uxbridge (United Kingdom)',1,1,0),(41067,0,141282,'Uxheim','Germany','DE','Uxheim (Germany)',1,1,0),(41068,28291,141283,'Vaals','Netherlands','NL','Vaals (Netherlands)',1,1,0),(41069,0,141284,'Vacallo','Switzerland','CH','Vacallo (Switzerland)',1,1,0),(41070,0,141285,'Vachendorf','Germany','DE','Vachendorf (Germany)',1,1,0),(41071,0,141286,'Vacoas','Mauritius','MU','Vacoas (Mauritius)',1,1,0),(41072,28316,141287,'Vaiges','France','FR','Vaiges (France)',1,1,0),(41073,33920,141288,'Val Thorens','France','FR','Val Thorens (France)',1,1,0),(41074,0,141289,'Valado dos Frades','Portugal','PT','Valado dos Frades (Portugal)',1,1,0),(41075,0,141290,'Valasske Mezirici','Czech Republic','CZ','Valasske Mezirici (Czech Republic)',1,1,0),(41076,28326,141291,'Valberg','France','FR','Valberg (France)',1,1,0),(41077,0,141292,'Valdeblore','France','FR','Valdeblore (France)',1,1,0),(41078,0,141293,'Valdecaballeros','Spain','ES','Valdecaballeros (Spain)',1,1,0),(41079,0,141294,'Valdes','Argentina','AR','Valdes (Argentina)',1,1,0),(41080,0,141295,'Valdigem','Portugal','PT','Valdigem (Portugal)',1,1,0),(41081,0,141296,'Vale','United Kingdom','UK','Vale (United Kingdom)',1,1,0),(41082,0,141297,'Valencia','Spain','ES','Valencia (Spain)',1,1,0),(41083,28356,141298,'Valencia','United States of America','US','Valencia (United States of America)',1,1,0),(41084,28355,141299,'Valencia','Venezuela','VE','Valencia (Venezuela)',1,1,0),(41085,28372,141300,'Valga','Spain','ES','Valga (Spain)',1,1,0),(41086,28380,141301,'Vallauris','France','FR','Vallauris (France)',1,1,0),(41087,0,141302,'Vallehermoso','Spain','ES','Vallehermoso (Spain)',1,1,0),(41088,28388,141303,'Vallenar','Chile','CL','Vallenar (Chile)',1,1,0),(41089,28401,141304,'Vallorcine','France','FR','Vallorcine (France)',1,1,0),(41090,0,141305,'Valloria','Italy','IT','Valloria (Italy)',1,1,0),(41091,0,141306,'Valpelline','Italy','IT','Valpelline (Italy)',1,1,0),(41092,0,141307,'Ventnor','United Kingdom','UK','Ventnor (United Kingdom)',1,1,0),(41093,28595,141308,'Verbania','Italy','IT','Verbania (Italy)',1,1,0),(41094,28604,141309,'Verditz','Austria','AT','Verditz (Austria)',1,1,0),(41095,0,141310,'Verdon','France','FR','Verdon (France)',1,1,0),(41096,0,141311,'Vergina','Greece','GR','Vergina (Greece)',1,1,0),(41097,0,141312,'Veringenstadt','Germany','DE','Veringenstadt (Germany)',1,1,0),(41098,28617,141313,'Vermilion','Canada','CA','Vermilion (Canada)',1,1,0),(41099,28621,141314,'Vernal','United States of America','US','Vernal (United States of America)',1,1,0),(41100,0,141315,'Vernon','United States of America','US','Vernon (United States of America)',1,1,0),(41101,0,141316,'Verpelet','Hungary','HU','Verpelet (Hungary)',1,1,0),(41102,0,141317,'Vesser','Germany','DE','Vesser (Germany)',1,1,0),(41103,28658,141318,'Vestmannaeyjar','Iceland','IS','Vestmannaeyjar (Iceland)',1,1,0),(41104,28667,141319,'Vevay','United States of America','US','Vevay (United States of America)',1,1,0),(41105,28668,141320,'Vevey','Switzerland','CH','Vevey (Switzerland)',1,1,0),(41106,28707,141321,'Victoriaville','Canada','CA','Victoriaville (Canada)',1,1,0),(41107,28716,141322,'Vidor','United States of America','US','Vidor (United States of America)',1,1,0),(41108,0,141323,'Vienenburg','Germany','DE','Vienenburg (Germany)',1,1,0),(41109,28737,141324,'Vierzon','France','FR','Vierzon (France)',1,1,0),(41110,0,141325,'Vietgest','Germany','DE','Vietgest (Germany)',1,1,0),(41111,0,141326,'Vieux Boucau','France','FR','Vieux Boucau (France)',1,1,0),(41112,33978,141327,'Vila Nova de Famalicao','Portugal','PT','Vila Nova de Famalicao (Portugal)',1,1,0),(41113,33980,141328,'Vila Nova de Gaia','Portugal','PT','Vila Nova de Gaia (Portugal)',1,1,0),(41114,33981,141329,'Vila Nova de Milfontes','Portugal','PT','Vila Nova de Milfontes (Portugal)',1,1,0),(41115,33991,141330,'Vila Vicosa','Portugal','PT','Vila Vicosa (Portugal)',1,1,0),(41116,28774,141331,'Vilanant','Spain','ES','Vilanant (Spain)',1,1,0),(41117,28781,141332,'Vildbjerg','Denmark','DK','Vildbjerg (Denmark)',1,1,0),(41118,28782,141333,'Vilhelmina','Sweden','SE','Vilhelmina (Sweden)',1,1,0),(41119,0,141334,'Villa Del Dique','Argentina','AR','Villa Del Dique (Argentina)',1,1,0),(41120,0,141335,'Villa di Piteccio','Italy','IT','Villa di Piteccio (Italy)',1,1,0),(41121,0,141336,'Villa General Belgrano','Argentina','AR','Villa General Belgrano (Argentina)',1,1,0),(41122,0,141337,'Villa Gral Belgrano','Argentina','AR','Villa Gral Belgrano (Argentina)',1,1,0),(41123,34001,141338,'Villa San Giovanni','Italy','IT','Villa San Giovanni (Italy)',1,1,0),(41124,28794,141339,'Villacarriedo','Spain','ES','Villacarriedo (Spain)',1,1,0),(41125,0,141340,'Villadepalos','Spain','ES','Villadepalos (Spain)',1,1,0),(41126,0,141341,'Villagonzalo-Pedernales','Spain','ES','Villagonzalo-Pedernales (Spain)',1,1,0),(41127,0,141342,'Villagrazia d.Carini','Italy','IT','Villagrazia d.Carini (Italy)',1,1,0),(41128,28804,141343,'Villahermosa','Mexico','MX','Villahermosa (Mexico)',1,1,0),(41129,28809,141344,'Villalpando','Spain','ES','Villalpando (Spain)',1,1,0),(41130,0,141345,'Villarrin de Campos','Spain','ES','Villarrin de Campos (Spain)',1,1,0),(41131,28836,141346,'Villars','France','FR','Villars (France)',1,1,0),(41132,0,141347,'Villars-les-Dombes','France','FR','Villars-les-Dombes (France)',1,1,0),(41133,28850,141348,'Villedieu-les-Poeles','France','FR','Villedieu-les-Poeles (France)',1,1,0),(41134,0,141349,'Villena','Spain','ES','Villena (Spain)',1,1,0),(41135,0,141350,'Villeneuve','Switzerland','CH','Villeneuve (Switzerland)',1,1,0),(41136,0,141351,'Villeneuve les Avignon','France','FR','Villeneuve les Avignon (France)',1,1,0),(41137,0,141352,'Villeneuve-de-Berg','France','FR','Villeneuve-de-Berg (France)',1,1,0),(41138,28876,141353,'Villerest','France','FR','Villerest (France)',1,1,0),(41139,28878,141354,'Villersexel','France','FR','Villersexel (France)',1,1,0),(41140,0,141355,'Villno?','Italy','IT','Villno? (Italy)',1,1,0),(41141,0,141356,'Villora','Spain','ES','Villora (Spain)',1,1,0),(41142,0,141357,'Vils','Austria','AT','Vils (Austria)',1,1,0),(41143,0,141358,'Vilsbiburg','Germany','DE','Vilsbiburg (Germany)',1,1,0),(41144,28894,141359,'Vilvoorde','Belgium','BE','Vilvoorde (Belgium)',1,1,0),(41145,28908,141360,'Vincennes','United States of America','US','Vincennes (United States of America)',1,1,0),(41146,0,141361,'Vingaker','Sweden','SE','Vingaker (Sweden)',1,1,0),(41147,0,141362,'Vinkuran','Croatia','HR','Vinkuran (Croatia)',1,1,0),(41148,0,141363,'Vinuesa','Spain','ES','Vinuesa (Spain)',1,1,0),(41149,0,141364,'Vipperow','Germany','DE','Vipperow (Germany)',1,1,0),(41150,0,141365,'Virgen','Austria','AT','Virgen (Austria)',1,1,0),(41151,0,141366,'Virserum','Sweden','SE','Virserum (Sweden)',1,1,0),(41152,28953,141367,'Visan','France','FR','Visan (France)',1,1,0),(41153,0,141368,'Vitigliano','Italy','IT','Vitigliano (Italy)',1,1,0),(41154,28978,141369,'Vitre','France','FR','Vitre (France)',1,1,0),(41155,28983,141370,'Vittoria','Italy','IT','Vittoria (Italy)',1,1,0),(41156,28997,141372,'Vlaardingen','Netherlands','NL','Vlaardingen (Netherlands)',1,1,0),(41157,29002,141373,'Vlijmen','Netherlands','NL','Vlijmen (Netherlands)',1,1,0),(41158,29003,141374,'Vlissingen','Netherlands','NL','Vlissingen (Netherlands)',1,1,0),(41159,29006,141375,'Vlore','Albania','AL','Vlore (Albania)',1,1,0),(41160,0,141376,'Vogue','France','FR','Vogue (France)',1,1,0),(41161,29020,141377,'Vohl','Germany','DE','Vohl (Germany)',1,1,0),(41162,0,141378,'Vohringen','Germany','DE','Vohringen (Germany)',1,1,0),(41163,0,141379,'Volgograd','Russia','RU','Volgograd (Russia)',1,1,0),(41164,0,141380,'Volimes','Greece','GR','Volimes (Greece)',1,1,0),(41165,0,141381,'Volkerode','Germany','DE','Volkerode (Germany)',1,1,0),(41166,0,141382,'Volklingen','Germany','DE','Volklingen (Germany)',1,1,0),(41167,0,141383,'Vollan','Italy','IT','Vollan (Italy)',1,1,0),(41168,0,141384,'Volonne','France','FR','Volonne (France)',1,1,0),(41169,0,141385,'Vomp','Austria','AT','Vomp (Austria)',1,1,0),(41170,29052,141386,'Voorschoten','Netherlands','NL','Voorschoten (Netherlands)',1,1,0),(41171,0,141387,'Vora','Albania','AL','Vora (Albania)',1,1,0),(41172,0,141388,'Vorbasse','Denmark','DK','Vorbasse (Denmark)',1,1,0),(41173,0,141389,'Vorra','Germany','DE','Vorra (Germany)',1,1,0),(41174,0,141390,'Vrachos','Greece','GR','Vrachos (Greece)',1,1,0),(41175,0,141392,'Vrouwenpolder','Netherlands','NL','Vrouwenpolder (Netherlands)',1,1,0),(41176,29094,141393,'Vught','Netherlands','NL','Vught (Netherlands)',1,1,0),(41177,29096,141394,'Vulpera','Switzerland','CH','Vulpera (Switzerland)',1,1,0),(41178,0,141395,'Vuorela','Finland','FI','Vuorela (Finland)',1,1,0),(41179,0,141396,'Waabs','Germany','DE','Waabs (Germany)',1,1,0),(41180,0,141397,'Wackernheim','Germany','DE','Wackernheim (Germany)',1,1,0),(41181,0,141398,'Waco','United States of America','US','Waco (United States of America)',1,1,0),(41182,29122,141399,'Wadena','United States of America','US','Wadena (United States of America)',1,1,0),(41183,29127,141400,'Wadi Musa','Jordan','JO','Wadi Musa (Jordan)',1,1,0),(41184,0,141401,'Wahiba Sands','Oman','OM','Wahiba Sands (Oman)',1,1,0),(41185,0,141402,'Wahlhausen','Germany','DE','Wahlhausen (Germany)',1,1,0),(41186,0,141403,'Waikkal','Sri Lanka','LK','Waikkal (Sri Lanka)',1,1,0),(41187,0,141404,'Wakaya Island','Fiji Islands','FJ','Wakaya Island (Fiji Islands)',1,1,0),(41188,0,141405,'Wakefield','United Kingdom','UK','Wakefield (United Kingdom)',1,1,0),(41189,29184,141406,'Walcha','Australia','AU','Walcha (Australia)',1,1,0),(41190,29188,141407,'Waldbreitbach','Germany','DE','Waldbreitbach (Germany)',1,1,0),(41191,0,141408,'Waldshut-Tiengen','Germany','DE','Waldshut-Tiengen (Germany)',1,1,0),(41192,29207,141409,'Walker','United States of America','US','Walker (United States of America)',1,1,0),(41193,29210,141410,'Walla Walla','United States of America','US','Walla Walla (United States of America)',1,1,0),(41194,29211,141411,'Wallace','United States of America','US','Wallace (United States of America)',1,1,0),(41195,29213,141412,'Wallaceburg','Canada','CA','Wallaceburg (Canada)',1,1,0),(41196,0,141413,'Wallaroo','Australia','AU','Wallaroo (Australia)',1,1,0),(41197,0,141414,'Wallenstein','Germany','DE','Wallenstein (Germany)',1,1,0),(41198,0,141415,'Wallerfangen','Germany','DE','Wallerfangen (Germany)',1,1,0),(41199,0,141416,'Wallern','Austria','AT','Wallern (Austria)',1,1,0),(41200,0,141417,'Valandovo','Macedonia','MK','Valandovo (Macedonia)',1,1,0),(41201,28324,141418,'Valaurie','France','FR','Valaurie (France)',1,1,0),(41202,28325,141419,'Valbella','Switzerland','CH','Valbella (Switzerland)',1,1,0),(41203,0,141420,'Valderice Trapani','Italy','IT','Valderice Trapani (Italy)',1,1,0),(41204,28345,141421,'Valdivia','Chile','CL','Valdivia (Chile)',1,1,0),(41205,0,141422,'Vale de Amoreira','Portugal','PT','Vale de Amoreira (Portugal)',1,1,0),(41206,0,141423,'Vale de Parra','Portugal','PT','Vale de Parra (Portugal)',1,1,0),(41207,28351,141424,'Valemount','Canada','CA','Valemount (Canada)',1,1,0),(41208,33922,141425,'Valence','France','FR','Valence (France)',1,1,0),(41209,0,141426,'Valencia de Alcantara','Spain','ES','Valencia de Alcantara (Spain)',1,1,0),(41210,0,141427,'Valencia de Don Juan','Spain','ES','Valencia de Don Juan (Spain)',1,1,0),(41211,28360,141428,'Valenciennes','France','FR','Valenciennes (France)',1,1,0),(41212,0,141429,'Valentigney','France','FR','Valentigney (France)',1,1,0),(41213,0,141430,'Valganon','Spain','ES','Valganon (Spain)',1,1,0),(41214,0,141431,'Vall d\' Incles','Andorra','AD','Vall d\' Incles (Andorra)',1,1,0),(41215,0,141432,'Valle de Bravo','Mexico','MX','Valle de Bravo (Mexico)',1,1,0),(41216,0,141433,'Valle de Mena','Spain','ES','Valle de Mena (Spain)',1,1,0),(41217,0,141434,'Valleseco','Spain','ES','Valleseco (Spain)',1,1,0),(41218,28390,141435,'Valletta','Malta','MT','Valletta (Malta)',1,1,0),(41219,33935,141436,'Valley City','United States of America','US','Valley City (United States of America)',1,1,0),(41220,33938,141437,'Valley Ford','United States of America','US','Valley Ford (United States of America)',1,1,0),(41221,28403,141438,'Valls','Spain','ES','Valls (Spain)',1,1,0),(41222,0,141439,'Val-Morin','Canada','CA','Val-Morin (Canada)',1,1,0),(41223,0,141440,'Valongo','Portugal','PT','Valongo (Portugal)',1,1,0),(41224,0,141441,'Vals les Bains','France','FR','Vals les Bains (France)',1,1,0),(41225,0,141442,'Valsavarenche','Italy','IT','Valsavarenche (Italy)',1,1,0),(41226,0,141443,'Valverde del Majano','Spain','ES','Valverde del Majano (Spain)',1,1,0),(41227,28422,141444,'Valverdon','Spain','ES','Valverdon (Spain)',1,1,0),(41228,0,141445,'Vama','Romania','RO','Vama (Romania)',1,1,0),(41229,0,141446,'Vamos','Greece','GR','Vamos (Greece)',1,1,0),(41230,0,141447,'Vanadzor','Armenia','AM','Vanadzor (Armenia)',1,1,0),(41231,28425,141448,'Vancouver','Canada','CA','Vancouver (Canada)',1,1,0),(41232,0,141449,'Vannes','France','FR','Vannes (France)',1,1,0),(41233,28464,141451,'Varetz','France','FR','Varetz (France)',1,1,0),(41234,0,141452,'Varies','United States of America','US','Varies (United States of America)',1,1,0),(41235,0,141453,'Varignana','Italy','IT','Varignana (Italy)',1,1,0),(41236,28473,141454,'Varnamo','Sweden','SE','Varnamo (Sweden)',1,1,0),(41237,0,141455,'Varshets','Bulgaria','BG','Varshets (Bulgaria)',1,1,0),(41238,0,141456,'Vartholomio','Greece','GR','Vartholomio (Greece)',1,1,0),(41239,0,141457,'Vassouras','Brazil','BR','Vassouras (Brazil)',1,1,0),(41240,0,141458,'Vasterlanda','Sweden','SE','Vasterlanda (Sweden)',1,1,0),(41241,28487,141459,'Vasto','Italy','IT','Vasto (Italy)',1,1,0),(41242,0,141460,'Vasto Marina','Italy','IT','Vasto Marina (Italy)',1,1,0),(41243,0,141461,'Vatterode','Germany','DE','Vatterode (Germany)',1,1,0),(41244,0,141462,'Vaugines','France','FR','Vaugines (France)',1,1,0),(41245,0,141463,'Vaux-sur-Sure','Belgium','BE','Vaux-sur-Sure (Belgium)',1,1,0),(41246,28512,141464,'Vecindario','Spain','ES','Vecindario (Spain)',1,1,0),(41247,28514,141465,'Vedbaek','Denmark','DK','Vedbaek (Denmark)',1,1,0),(41248,28517,141466,'Veere','Netherlands','NL','Veere (Netherlands)',1,1,0),(41249,28523,141467,'Veigy-Foncenex','France','FR','Veigy-Foncenex (France)',1,1,0),(41250,0,141468,'Velas','Portugal','PT','Velas (Portugal)',1,1,0),(41251,28536,141469,'Veldhoven','Netherlands','NL','Veldhoven (Netherlands)',1,1,0),(41252,28561,141470,'Venaco','France','FR','Venaco (France)',1,1,0),(41253,0,141471,'Vendeuil','France','FR','Vendeuil (France)',1,1,0),(41254,0,141472,'Vendryne','Czech Republic','CZ','Vendryne (Czech Republic)',1,1,0),(41255,0,141473,'Venosa','Italy','IT','Venosa (Italy)',1,1,0),(41256,0,141474,'Vent','Austria','AT','Vent (Austria)',1,1,0),(41257,0,141475,'Venzolasca','France','FR','Venzolasca (France)',1,1,0),(41258,0,141476,'Vera Cruz','Brazil','BR','Vera Cruz (Brazil)',1,1,0),(41259,0,141477,'Vercana','Italy','IT','Vercana (Italy)',1,1,0),(41260,0,141478,'Verceia','Italy','IT','Verceia (Italy)',1,1,0),(41261,28597,141479,'Vercelli','Italy','IT','Vercelli (Italy)',1,1,0),(41262,0,141480,'Verdins','Italy','IT','Verdins (Italy)',1,1,0),(41263,0,141481,'Verdun-sur-le-Doubs','France','FR','Verdun-sur-le-Doubs (France)',1,1,0),(41264,0,141482,'Vermiglio','Italy','IT','Vermiglio (Italy)',1,1,0),(41265,28618,141483,'Vermilion','United States of America','US','Vermilion (United States of America)',1,1,0),(41266,0,141484,'Vernayaz','Switzerland','CH','Vernayaz (Switzerland)',1,1,0),(41267,28628,141485,'Vernon','Canada','CA','Vernon (Canada)',1,1,0),(41268,0,141486,'Verrieres-de-Joux','France','FR','Verrieres-de-Joux (France)',1,1,0),(41269,0,141487,'Verrieres-le-Buisson','France','FR','Verrieres-le-Buisson (France)',1,1,0),(41270,28647,141488,'Verucchio','Italy','IT','Verucchio (Italy)',1,1,0),(41271,0,141489,'Vetheuil','France','FR','Vetheuil (France)',1,1,0),(41272,0,141490,'Vetriolo','Italy','IT','Vetriolo (Italy)',1,1,0),(41273,0,141491,'Vezzano Ligure','Italy','IT','Vezzano Ligure (Italy)',1,1,0),(41274,28686,141492,'Vicar','Spain','ES','Vicar (Spain)',1,1,0),(41275,28697,141493,'Vicoforte','Italy','IT','Vicoforte (Italy)',1,1,0),(41276,0,141494,'Vicovaro','Italy','IT','Vicovaro (Italy)',1,1,0),(41277,28704,141495,'Victoria','Canada','CA','Victoria (Canada)',1,1,0),(41278,0,141496,'Victoria de Durango','Mexico','MX','Victoria de Durango (Mexico)',1,1,0),(41279,28706,141497,'Victoria Falls','Zimbabwe','ZW','Victoria Falls (Zimbabwe)',1,1,0),(41280,0,141498,'Vidalia','United States of America','US','Vidalia (United States of America)',1,1,0),(41281,28712,141499,'Vidauban','France','FR','Vidauban (France)',1,1,0),(41282,0,141500,'Videb?k','Denmark','DK','Videb?k (Denmark)',1,1,0),(41283,0,141501,'Vieille - Brioude','France','FR','Vieille - Brioude (France)',1,1,0),(41284,0,141502,'Vieira do Minho','Portugal','PT','Vieira do Minho (Portugal)',1,1,0),(41285,0,141503,'Vienne','France','FR','Vienne (France)',1,1,0),(41286,28730,141504,'Vienne-le-Chateau','France','FR','Vienne-le-Chateau (France)',1,1,0),(41287,0,141505,'Viganj','Croatia','HR','Viganj (Croatia)',1,1,0),(41288,0,141506,'Vignanello','Italy','IT','Vignanello (Italy)',1,1,0),(41289,0,141507,'Vila do Paco','Portugal','PT','Vila do Paco (Portugal)',1,1,0),(41290,33986,141508,'Vila Praia de Ancora','Portugal','PT','Vila Praia de Ancora (Portugal)',1,1,0),(41291,28763,141509,'Vilaboa','Spain','ES','Vilaboa (Spain)',1,1,0),(41292,0,141510,'Vilacolum','Spain','ES','Vilacolum (Spain)',1,1,0),(41293,0,141511,'Viladamat','Spain','ES','Viladamat (Spain)',1,1,0),(41294,28767,141512,'Vilaflor','Spain','ES','Vilaflor (Spain)',1,1,0),(41295,0,141513,'Vilaosende','Spain','ES','Vilaosende (Spain)',1,1,0),(41296,0,141514,'Vila-Seca','Spain','ES','Vila-Seca (Spain)',1,1,0),(41297,28785,141515,'Viljandi','Estonia','EE','Viljandi (Estonia)',1,1,0),(41298,0,141516,'Villa Beach','St. Vincent & the Grenadines','VC','Villa Beach (St. Vincent & the Grenadines)',1,1,0),(41299,33993,141517,'Villa d\'Alme','Italy','IT','Villa d\'Alme (Italy)',1,1,0),(41300,0,141518,'Villa Rosa','Italy','IT','Villa Rosa (Italy)',1,1,0),(41301,28803,141519,'Villagrande Strisaili','Italy','IT','Villagrande Strisaili (Italy)',1,1,0),(41302,0,141520,'Villanova del Battista','Italy','IT','Villanova del Battista (Italy)',1,1,0),(41303,0,141521,'Villanovaforru','Italy','IT','Villanovaforru (Italy)',1,1,0),(41304,0,141522,'Villanueva de Gallego','Spain','ES','Villanueva de Gallego (Spain)',1,1,0),(41305,0,141523,'Villanueva de Henares','Spain','ES','Villanueva de Henares (Spain)',1,1,0),(41306,0,141524,'Villapiana Lido','Italy','IT','Villapiana Lido (Italy)',1,1,0),(41307,27944,141525,'Tunis','Tunisia','TN','Tunis (Tunisia)',1,1,0),(41308,0,141526,'Turcifal','Portugal','PT','Turcifal (Portugal)',1,1,0),(41309,0,141527,'Turda','Romania','RO','Turda (Romania)',1,1,0),(41310,0,141529,'turkisch Doyran','Macedonia','MK','turkisch Doyran (Macedonia)',1,1,0),(41311,27970,141530,'Turkler','Turkey','TR','Turkler (Turkey)',1,1,0),(41312,0,141531,'Turquoise','Turks & Caicos Islands',NULL,'Turquoise (Turks & Caicos Islands)',1,1,0),(41313,27995,141532,'Tuscola','United States of America','US','Tuscola (United States of America)',1,1,0),(41314,0,141533,'Tussenhausen','Germany','DE','Tussenhausen (Germany)',1,1,0),(41315,0,141534,'Tux','Austria','AT','Tux (Austria)',1,1,0),(41316,28009,141535,'Tuy','Spain','ES','Tuy (Spain)',1,1,0),(41317,0,141536,'Tweedsmuir Provincial Park','Canada','CA','Tweedsmuir Provincial Park (Canada)',1,1,0),(41318,28031,141537,'Tylstrup','Denmark','DK','Tylstrup (Denmark)',1,1,0),(41319,0,141538,'Tynec nad Labem','Czech Republic','CZ','Tynec nad Labem (Czech Republic)',1,1,0),(41320,0,141539,'Tzaneria','Greece','GR','Tzaneria (Greece)',1,1,0),(41321,33880,141540,'Ua Pou','French Polynesia','PF','Ua Pou (French Polynesia)',1,1,0),(41322,0,141541,'Ubajara','Brazil','BR','Ubajara (Brazil)',1,1,0),(41323,28048,141542,'Ubatuba','Brazil','BR','Ubatuba (Brazil)',1,1,0),(41324,28050,141543,'Uberaba','Brazil','BR','Uberaba (Brazil)',1,1,0),(41325,0,141544,'Uckfield','United Kingdom','UK','Uckfield (United Kingdom)',1,1,0),(41326,0,141545,'Ugab Fluss','Namibia','NA','Ugab Fluss (Namibia)',1,1,0),(41327,0,141546,'Uggiano la Chiesa','Italy','IT','Uggiano la Chiesa (Italy)',1,1,0),(41328,0,141547,'Uglich','Russia','RU','Uglich (Russia)',1,1,0),(41329,28092,141548,'Ulassai','Italy','IT','Ulassai (Italy)',1,1,0),(41330,0,141549,'Ullapool','United Kingdom','UK','Ullapool (United Kingdom)',1,1,0),(41331,33884,141550,'Ulm','Germany','DE','Ulm (Germany)',1,1,0),(41332,0,141551,'Ulmerfeld','Austria','AT','Ulmerfeld (Austria)',1,1,0),(41333,0,141552,'Ulmet','Germany','DE','Ulmet (Germany)',1,1,0),(41334,0,141553,'Uloybukt','Norway','NO','Uloybukt (Norway)',1,1,0),(41335,0,141554,'Ulrichsberg','Austria','AT','Ulrichsberg (Austria)',1,1,0),(41336,28103,141555,'Ulsan','South Korea','KR','Ulsan (South Korea)',1,1,0),(41337,0,141556,'Ulvsvag','Norway','NO','Ulvsvag (Norway)',1,1,0),(41338,28126,141557,'Umhausen','Austria','AT','Umhausen (Austria)',1,1,0),(41339,0,141558,'Umhloti','South Africa','ZA','Umhloti (South Africa)',1,1,0),(41340,28131,141559,'Umtata','South Africa','ZA','Umtata (South Africa)',1,1,0),(41341,0,141560,'Una','Spain','ES','Una (Spain)',1,1,0),(41342,0,141561,'Undara','Australia','AU','Undara (Australia)',1,1,0),(41343,0,141562,'Unhais da Serra','Portugal','PT','Unhais da Serra (Portugal)',1,1,0),(41344,0,141563,'Union','United States of America','US','Union (United States of America)',1,1,0),(41345,0,141564,'Union City','United States of America','US','Union City (United States of America)',1,1,0),(41346,0,141565,'Union Island','St. Vincent & the Grenadines','VC','Union Island (St. Vincent & the Grenadines)',1,1,0),(41347,0,141566,'Unterbrunn','Germany','DE','Unterbrunn (Germany)',1,1,0),(41348,28161,141567,'Unterhaching','Germany','DE','Unterhaching (Germany)',1,1,0),(41349,0,141568,'Unterjoch','Germany','DE','Unterjoch (Germany)',1,1,0),(41350,0,141569,'Untertauern','Austria','AT','Untertauern (Austria)',1,1,0),(41351,0,141570,'Untertilliach','Austria','AT','Untertilliach (Austria)',1,1,0),(41352,0,141571,'Uphall','United Kingdom','UK','Uphall (United Kingdom)',1,1,0),(41353,0,141572,'Uplengen','Germany','DE','Uplengen (Germany)',1,1,0),(41354,0,141573,'Urbies','Spain','ES','Urbies (Spain)',1,1,0),(41355,0,141574,'Urbino','Italy','IT','Urbino (Italy)',1,1,0),(41356,28206,141575,'Urgup','Turkey','TR','Urgup (Turkey)',1,1,0),(41357,0,141576,'Urretxu','Spain','ES','Urretxu (Spain)',1,1,0),(41358,28218,141577,'Uruapan','Mexico','MX','Uruapan (Mexico)',1,1,0),(41359,0,141579,'Uttenheim am Kronplatz','Italy','IT','Uttenheim am Kronplatz (Italy)',1,1,0),(41360,28277,141580,'Uvita','Costa Rica','CR','Uvita (Costa Rica)',1,1,0),(41361,28279,141581,'Uxbridge','United States of America','US','Uxbridge (United States of America)',1,1,0),(41362,28284,141582,'Uzerche','France','FR','Uzerche (France)',1,1,0),(41363,0,141583,'Uzungol','Turkey','TR','Uzungol (Turkey)',1,1,0),(41364,0,141584,'Uzzano Castello','Italy','IT','Uzzano Castello (Italy)',1,1,0),(41365,0,141585,'Vaal Marina','South Africa','ZA','Vaal Marina (South Africa)',1,1,0),(41366,28296,141586,'Vacaville','United States of America','US','Vacaville (United States of America)',1,1,0),(41367,0,141588,'V?ggerlose','Denmark','DK','V?ggerlose (Denmark)',1,1,0),(41368,0,141589,'Vafios','Greece','GR','Vafios (Greece)',1,1,0),(41369,28315,141590,'Vagos','Portugal','PT','Vagos (Portugal)',1,1,0),(41370,0,141591,'Vahrn','Italy','IT','Vahrn (Italy)',1,1,0),(41371,0,141592,'Val della Torre','Italy','IT','Val della Torre (Italy)',1,1,0),(41372,0,141593,'Val d\'Illiez','Switzerland','CH','Val d\'Illiez (Switzerland)',1,1,0),(41373,0,141594,'Valdeverdeja','Spain','ES','Valdeverdeja (Spain)',1,1,0),(41374,0,141595,'Valea Draganului','Romania','RO','Valea Draganului (Romania)',1,1,0),(41375,28350,141596,'Valeggio sul Mincio','Italy','IT','Valeggio sul Mincio (Italy)',1,1,0),(41376,0,141597,'Valendas','Switzerland','CH','Valendas (Switzerland)',1,1,0),(41377,0,141598,'Valenii de Munte','Romania','RO','Valenii de Munte (Romania)',1,1,0),(41378,0,141599,'Valgiano','Italy','IT','Valgiano (Italy)',1,1,0),(41379,0,141600,'Valiano di Montepulciano','Italy','IT','Valiano di Montepulciano (Italy)',1,1,0),(41380,28375,141601,'Valkeakoski','Finland','FI','Valkeakoski (Finland)',1,1,0),(41381,0,141602,'Valle de Colchagua','Chile','CL','Valle de Colchagua (Chile)',1,1,0),(41382,0,141603,'Valle de Lierp','Spain','ES','Valle de Lierp (Spain)',1,1,0),(41383,33931,141604,'Valle Gran Rey','Spain','ES','Valle Gran Rey (Spain)',1,1,0),(41384,28385,141605,'Valledoria','Italy','IT','Valledoria (Italy)',1,1,0),(41385,28396,141606,'Valloire','France','FR','Valloire (France)',1,1,0),(41386,28400,141607,'Vallorbe','Switzerland','CH','Vallorbe (Switzerland)',1,1,0),(41387,0,141608,'Valmiera','Latvia','LV','Valmiera (Latvia)',1,1,0),(41388,0,141609,'Valor','Spain','ES','Valor (Spain)',1,1,0),(41389,0,141610,'Valterice','Czech Republic','CZ','Valterice (Czech Republic)',1,1,0),(41390,0,141611,'Valtessiniko','Greece','GR','Valtessiniko (Greece)',1,1,0),(41391,0,141612,'Valtos-Strand','Greece','GR','Valtos-Strand (Greece)',1,1,0),(41392,0,141613,'Valverde di Cesenatico','Italy','IT','Valverde di Cesenatico (Italy)',1,1,0),(41393,0,141614,'Valwig','Germany','DE','Valwig (Germany)',1,1,0),(41394,28435,141616,'Vanersborg','Sweden','SE','Vanersborg (Sweden)',1,1,0),(41395,0,141617,'Vanua Levu Island','Fiji Islands','FJ','Vanua Levu Island (Fiji Islands)',1,1,0),(41396,28454,141619,'Varde','Denmark','DK','Varde (Denmark)',1,1,0),(41397,0,141620,'Varennes-Jarcy','France','FR','Varennes-Jarcy (France)',1,1,0),(41398,28462,141621,'Varennes-Vauzelles','France','FR','Varennes-Vauzelles (France)',1,1,0),(41399,0,141622,'Varese Ligure','Italy','IT','Varese Ligure (Italy)',1,1,0),(41400,28470,141623,'Varmdo','Sweden','SE','Varmdo (Sweden)',1,1,0),(41401,0,141624,'Varra Blanca','Costa Rica','CR','Varra Blanca (Costa Rica)',1,1,0),(41402,0,141625,'Vasa','Cyprus','CY','Vasa (Cyprus)',1,1,0),(41403,0,141626,'Vasarosnameny','Hungary','HU','Vasarosnameny (Hungary)',1,1,0),(41404,28489,141627,'Vaterstetten','Germany','DE','Vaterstetten (Germany)',1,1,0),(41405,28501,141628,'Vaughan','Canada','CA','Vaughan (Canada)',1,1,0),(41406,28502,141629,'Vaughn','United States of America','US','Vaughn (United States of America)',1,1,0),(41407,0,141631,'Veigne','France','FR','Veigne (France)',1,1,0),(41408,28529,141632,'Vela Luka','Croatia','HR','Vela Luka (Croatia)',1,1,0),(41409,28534,141633,'Velbert','Germany','DE','Velbert (Germany)',1,1,0),(41410,28551,141634,'Velka Lomnica','Slovakia','SK','Velka Lomnica (Slovakia)',1,1,0),(41411,28554,141635,'Velleron','France','FR','Velleron (France)',1,1,0),(41412,0,141636,'Wallace','United States of America','US','Wallace (United States of America)',1,1,0),(41413,29214,141637,'Wallagrass','United States of America','US','Wallagrass (United States of America)',1,1,0),(41414,0,141638,'Wallerawang','Australia','AU','Wallerawang (Australia)',1,1,0),(41415,29236,141639,'Walsenburg','United States of America','US','Walsenburg (United States of America)',1,1,0),(41416,29254,141640,'Wandlitz','Germany','DE','Wandlitz (Germany)',1,1,0),(41417,29280,141641,'Warburg','Germany','DE','Warburg (Germany)',1,1,0),(41418,0,141642,'Wareham','United Kingdom','UK','Wareham (United Kingdom)',1,1,0),(41419,34018,141643,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(41420,29309,141644,'Warrens','United States of America','US','Warrens (United States of America)',1,1,0),(41421,29313,141645,'Warrenville','United States of America','US','Warrenville (United States of America)',1,1,0),(41422,0,141646,'Warri','Nigeria','NG','Warri (Nigeria)',1,1,0),(41423,0,141647,'Warrington','United Kingdom','UK','Warrington (United Kingdom)',1,1,0),(41424,29321,141648,'Warstein','Germany','DE','Warstein (Germany)',1,1,0),(41425,29328,141649,'Warwick','United States of America','US','Warwick (United States of America)',1,1,0),(41426,29343,141650,'Wassenaar','Netherlands','NL','Wassenaar (Netherlands)',1,1,0),(41427,0,141651,'Wasserliesch','Germany','DE','Wasserliesch (Germany)',1,1,0),(41428,29347,141652,'Wassertrudingen','Germany','DE','Wassertrudingen (Germany)',1,1,0),(41429,29353,141653,'Waterbury','United States of America','US','Waterbury (United States of America)',1,1,0),(41430,0,141654,'Waterloo','United Kingdom','UK','Waterloo (United Kingdom)',1,1,0),(41431,0,141655,'Waterville','Canada','CA','Waterville (Canada)',1,1,0),(41432,29387,141656,'Wattala','Sri Lanka','LK','Wattala (Sri Lanka)',1,1,0),(41433,0,141657,'Watton','United Kingdom','UK','Watton (United Kingdom)',1,1,0),(41434,29395,141658,'Wauconda','United States of America','US','Wauconda (United States of America)',1,1,0),(41435,29397,141659,'Waukesha','United States of America','US','Waukesha (United States of America)',1,1,0),(41436,29409,141660,'Waverly','United States of America','US','Waverly (United States of America)',1,1,0),(41437,29416,141661,'Waynesboro','United States of America','US','Waynesboro (United States of America)',1,1,0),(41438,29420,141662,'Weatherford','United States of America','US','Weatherford (United States of America)',1,1,0),(41439,29423,141663,'Weaverville','United States of America','US','Weaverville (United States of America)',1,1,0),(41440,29435,141664,'Weehawken','United States of America','US','Weehawken (United States of America)',1,1,0),(41441,29437,141665,'Weeki Wachee','United States of America','US','Weeki Wachee (United States of America)',1,1,0),(41442,0,141666,'Weiler b Monzingen','Germany','DE','Weiler b Monzingen (Germany)',1,1,0),(41443,0,141667,'Weilrod','Germany','DE','Weilrod (Germany)',1,1,0),(41444,29465,141668,'Weisenheim am Berg','Germany','DE','Weisenheim am Berg (Germany)',1,1,0),(41445,0,141669,'Weissenburg','Switzerland','CH','Weissenburg (Switzerland)',1,1,0),(41446,0,141670,'Weissig','Germany','DE','Weissig (Germany)',1,1,0),(41447,0,141671,'Weldon Spring','United States of America','US','Weldon Spring (United States of America)',1,1,0),(41448,0,141672,'Welingrad','Bulgaria','BG','Welingrad (Bulgaria)',1,1,0),(41449,0,141673,'Wellington','United States of America','US','Wellington (United States of America)',1,1,0),(41450,0,141674,'Wellington (Somerset)','United Kingdom','UK','Wellington (Somerset) (United Kingdom)',1,1,0),(41451,29492,141675,'Wellsville','United States of America','US','Wellsville (United States of America)',1,1,0),(41452,29495,141676,'Welschenrohr','Switzerland','CH','Welschenrohr (Switzerland)',1,1,0),(41453,0,141677,'Wemeldinge','Netherlands','NL','Wemeldinge (Netherlands)',1,1,0),(41454,29508,141678,'Wenden','Germany','DE','Wenden (Germany)',1,1,0),(41455,0,141679,'Wenigzell','Austria','AT','Wenigzell (Austria)',1,1,0),(41456,0,141680,'Wensickendorf','Germany','DE','Wensickendorf (Germany)',1,1,0),(41457,0,141681,'Wentworth','Canada','CA','Wentworth (Canada)',1,1,0),(41458,0,141682,'Werder (Havel)','Germany','DE','Werder (Havel) (Germany)',1,1,0),(41459,0,141683,'Wesselburen','Germany','DE','Wesselburen (Germany)',1,1,0),(41460,34029,141684,'West Allis','United States of America','US','West Allis (United States of America)',1,1,0),(41461,34041,141685,'West Branch','United States of America','US','West Branch (United States of America)',1,1,0),(41462,0,141686,'West Drayton','United Kingdom','UK','West Drayton (United Kingdom)',1,1,0),(41463,34069,141687,'West Frankfort','United States of America','US','West Frankfort (United States of America)',1,1,0),(41464,34106,141688,'West Middlesex','United States of America','US','West Middlesex (United States of America)',1,1,0),(41465,34139,141689,'West Union','United States of America','US','West Union (United States of America)',1,1,0),(41466,29549,141690,'Westbrook','United States of America','US','Westbrook (United States of America)',1,1,0),(41467,0,141691,'Westerham','United Kingdom','UK','Westerham (United Kingdom)',1,1,0),(41468,0,141692,'Westhausen','Germany','DE','Westhausen (Germany)',1,1,0),(41469,29587,141693,'Westlake','United States of America','US','Westlake (United States of America)',1,1,0),(41470,29599,141694,'Westmorland','United States of America','US','Westmorland (United States of America)',1,1,0),(41471,0,141695,'Westport','United States of America','US','Westport (United States of America)',1,1,0),(41472,29624,141696,'Wettenberg','Germany','DE','Wettenberg (Germany)',1,1,0),(41473,29628,141697,'Wevelgem','Belgium','BE','Wevelgem (Belgium)',1,1,0),(41474,29633,141698,'Weyburn','Canada','CA','Weyburn (Canada)',1,1,0),(41475,29635,141699,'Weyhausen','Germany','DE','Weyhausen (Germany)',1,1,0),(41476,0,141700,'Weywertz','Belgium','BE','Weywertz (Belgium)',1,1,0),(41477,34176,141701,'White Settlement','United States of America','US','White Settlement (United States of America)',1,1,0),(41478,0,141702,'Whitebridge','United Kingdom','UK','Whitebridge (United Kingdom)',1,1,0),(41479,29676,141703,'Whitecourt','Canada','CA','Whitecourt (Canada)',1,1,0),(41480,29694,141704,'Whiteville','United States of America','US','Whiteville (United States of America)',1,1,0),(41481,0,141705,'Whitley Bay','United Kingdom','UK','Whitley Bay (United Kingdom)',1,1,0),(41482,29708,141706,'Whittier','United States of America','US','Whittier (United States of America)',1,1,0),(41483,0,141707,'Whittier','United States of America','US','Whittier (United States of America)',1,1,0),(41484,0,141708,'Wiarton','Canada','CA','Wiarton (Canada)',1,1,0),(41485,0,141709,'Wichit','Thailand','TH','Wichit (Thailand)',1,1,0),(41486,29714,141710,'Wickenburg','United States of America','US','Wickenburg (United States of America)',1,1,0),(41487,0,141711,'Widnes','United Kingdom','UK','Widnes (United Kingdom)',1,1,0),(41488,0,141712,'Wielun','Poland','PL','Wielun (Poland)',1,1,0),(41489,0,141713,'Wierschem','Germany','DE','Wierschem (Germany)',1,1,0),(41490,0,141714,'Wiersdorf (Eifel)','Germany','DE','Wiersdorf (Eifel) (Germany)',1,1,0),(41491,0,141715,'Wieselburg','Austria','AT','Wieselburg (Austria)',1,1,0),(41492,29732,141716,'Wiesensteig','Germany','DE','Wiesensteig (Germany)',1,1,0),(41493,0,141717,'Wiesing','Austria','AT','Wiesing (Austria)',1,1,0),(41494,0,141718,'Wijhe','Netherlands','NL','Wijhe (Netherlands)',1,1,0),(41495,0,141719,'Wildflecken','Germany','DE','Wildflecken (Germany)',1,1,0),(41496,0,141720,'Wilga','Poland','PL','Wilga (Poland)',1,1,0),(41497,29761,141721,'Wilhelmshaven','Germany','DE','Wilhelmshaven (Germany)',1,1,0),(41498,29765,141722,'Willard','United States of America','US','Willard (United States of America)',1,1,0),(41499,29772,141723,'Williams','United States of America','US','Williams (United States of America)',1,1,0),(41500,29781,141724,'Williamstown','Australia','AU','Williamstown (Australia)',1,1,0),(41501,29780,141725,'Williamstown','United States of America','US','Williamstown (United States of America)',1,1,0),(41502,29790,141726,'Williston','United States of America','US','Williston (United States of America)',1,1,0),(41503,0,141727,'Williton','United Kingdom','UK','Williton (United Kingdom)',1,1,0),(41504,29795,141728,'Willow Vale','Australia','AU','Willow Vale (Australia)',1,1,0),(41505,0,141729,'Willsboro','United States of America','US','Willsboro (United States of America)',1,1,0),(41506,29804,141730,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(41507,0,141731,'Wilmslow','United Kingdom','UK','Wilmslow (United Kingdom)',1,1,0),(41508,0,141732,'Wilnsdorf','Germany','DE','Wilnsdorf (Germany)',1,1,0),(41509,29819,141733,'Wiltz','Luxembourg','LU','Wiltz (Luxembourg)',1,1,0),(41510,0,141734,'Wincanton (Somerset)','United Kingdom','UK','Wincanton (Somerset) (United Kingdom)',1,1,0),(41511,29834,141735,'Winder','United States of America','US','Winder (United States of America)',1,1,0),(41512,0,141736,'Windermere','United Kingdom','UK','Windermere (United Kingdom)',1,1,0),(41513,29838,141737,'Windham','United States of America','US','Windham (United States of America)',1,1,0),(41514,29840,141738,'Windischgarsten','Austria','AT','Windischgarsten (Austria)',1,1,0),(41515,29861,141739,'Winner','United States of America','US','Winner (United States of America)',1,1,0),(41516,29867,141740,'Winnsboro','United States of America','US','Winnsboro (United States of America)',1,1,0),(41517,0,141741,'Winterburg','Germany','DE','Winterburg (Germany)',1,1,0),(41518,29883,141742,'Winterthur','Switzerland','CH','Winterthur (Switzerland)',1,1,0),(41519,29899,141743,'Wise','United States of America','US','Wise (United States of America)',1,1,0),(41520,0,141744,'Wiselka','Poland','PL','Wiselka (Poland)',1,1,0),(41521,29917,141745,'Witsand','South Africa','ZA','Witsand (South Africa)',1,1,0),(41522,0,141746,'Torre Alfina','Italy','IT','Torre Alfina (Italy)',1,1,0),(41523,33849,141747,'Torre Annunziata','Italy','IT','Torre Annunziata (Italy)',1,1,0),(41524,33853,141748,'Torre de la Reina','Spain','ES','Torre de la Reina (Spain)',1,1,0),(41525,33854,141749,'Torre dei Corsari','Italy','IT','Torre dei Corsari (Italy)',1,1,0),(41526,0,141750,'Torre Lapillo','Italy','IT','Torre Lapillo (Italy)',1,1,0),(41527,0,141751,'Torre Ruffa','Italy','IT','Torre Ruffa (Italy)',1,1,0),(41528,0,141752,'Torre Soli Nou','Spain','ES','Torre Soli Nou (Spain)',1,1,0),(41529,27537,141753,'Torrecuso','Italy','IT','Torrecuso (Italy)',1,1,0),(41530,27547,141754,'Torremolinos','Spain','ES','Torremolinos (Spain)',1,1,0),(41531,0,141755,'Torrenova','Italy','IT','Torrenova (Italy)',1,1,0),(41532,27565,141756,'Torrita di Siena','Italy','IT','Torrita di Siena (Italy)',1,1,0),(41533,0,141757,'Torrox Costa','Spain','ES','Torrox Costa (Spain)',1,1,0),(41534,27587,141758,'Tosu','Japan','JP','Tosu (Japan)',1,1,0),(41535,27606,141759,'Tourcoing','France','FR','Tourcoing (France)',1,1,0),(41536,0,141760,'Tour-en-Sologne','France','FR','Tour-en-Sologne (France)',1,1,0),(41537,0,141761,'Tournoisis','France','FR','Tournoisis (France)',1,1,0),(41538,33866,141762,'Tours','France','FR','Tours (France)',1,1,0),(41539,27618,141763,'Tourtour','France','FR','Tourtour (France)',1,1,0),(41540,27621,141764,'Touzac','France','FR','Touzac (France)',1,1,0),(41541,27631,141765,'Toyama','Japan','JP','Toyama (Japan)',1,1,0),(41542,27634,141766,'Toyohashi','Japan','JP','Toyohashi (Japan)',1,1,0),(41543,27637,141767,'Toyooka','Japan','JP','Toyooka (Japan)',1,1,0),(41544,27638,141768,'Tozeur','Tunisia','TN','Tozeur (Tunisia)',1,1,0),(41545,0,141769,'Trabia','Italy','IT','Trabia (Italy)',1,1,0),(41546,0,141770,'Trail','Canada','CA','Trail (Canada)',1,1,0),(41547,27649,141771,'Tralee','Ireland','IE','Tralee (Ireland)',1,1,0),(41548,0,141772,'Trat','Thailand','TH','Trat (Thailand)',1,1,0),(41549,27689,141773,'Trebbin','Germany','DE','Trebbin (Germany)',1,1,0),(41550,0,141774,'Trebesing','Austria','AT','Trebesing (Austria)',1,1,0),(41551,27696,141775,'Trebon','Czech Republic','CZ','Trebon (Czech Republic)',1,1,0),(41552,0,141776,'Trecchina','Italy','IT','Trecchina (Italy)',1,1,0),(41553,0,141777,'Treffort','France','FR','Treffort (France)',1,1,0),(41554,0,141778,'Trego','United States of America','US','Trego (United States of America)',1,1,0),(41555,0,141779,'Tregorrick','United Kingdom','UK','Tregorrick (United Kingdom)',1,1,0),(41556,27715,141780,'Treis-Karden','Germany','DE','Treis-Karden (Germany)',1,1,0),(41557,0,141781,'Treiso','Italy','IT','Treiso (Italy)',1,1,0),(41558,0,141782,'Trelevern','France','FR','Trelevern (France)',1,1,0),(41559,0,141783,'Trenque Lauquen','Argentina','AR','Trenque Lauquen (Argentina)',1,1,0),(41560,27736,141784,'Trequanda','Italy','IT','Trequanda (Italy)',1,1,0),(41561,0,141785,'Treseburg','Germany','DE','Treseburg (Germany)',1,1,0),(41562,27745,141786,'Trets','France','FR','Trets (France)',1,1,0),(41563,0,141787,'Trevelez','Spain','ES','Trevelez (Spain)',1,1,0),(41564,0,141788,'Trevignano Romano','Italy','IT','Trevignano Romano (Italy)',1,1,0),(41565,0,141789,'Treville','Italy','IT','Treville (Italy)',1,1,0),(41566,0,141790,'Trezzo Tinella','Italy','IT','Trezzo Tinella (Italy)',1,1,0),(41567,0,141791,'Triangle','United States of America','US','Triangle (United States of America)',1,1,0),(41568,27757,141792,'Triberg','Germany','DE','Triberg (Germany)',1,1,0),(41569,0,141793,'Trinidad','Paraguay','PY','Trinidad (Paraguay)',1,1,0),(41570,27789,141794,'Tripoli','Lebanon','LB','Tripoli (Lebanon)',1,1,0),(41571,0,141795,'Trittau','Germany','DE','Trittau (Germany)',1,1,0),(41572,0,141796,'Trivigno','Italy','IT','Trivigno (Italy)',1,1,0),(41573,0,141797,'Troistorrents','Switzerland','CH','Troistorrents (Switzerland)',1,1,0),(41574,0,141798,'Trojanovice','Czech Republic','CZ','Trojanovice (Czech Republic)',1,1,0),(41575,0,141799,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(41576,0,141800,'Truden im Naturpark','Italy','IT','Truden im Naturpark (Italy)',1,1,0),(41577,0,141801,'Trudoxhill','United Kingdom','UK','Trudoxhill (United Kingdom)',1,1,0),(41578,27864,141802,'Tsilivi','Greece','GR','Tsilivi (Greece)',1,1,0),(41579,27870,141803,'Tsukuba','Japan','JP','Tsukuba (Japan)',1,1,0),(41580,27871,141804,'Tsumagoi','Japan','JP','Tsumagoi (Japan)',1,1,0),(41581,27876,141805,'Tuan Chau Island','Vietnam','VN','Tuan Chau Island (Vietnam)',1,1,0),(41582,0,141806,'Tuban Beach','Indonesia','ID','Tuban Beach (Indonesia)',1,1,0),(41583,27888,141807,'Tucker\'s Town','Bermuda','BM','Tucker\'s Town (Bermuda)',1,1,0),(41584,0,141808,'Tufi','Papua New Guinea','PG','Tufi (Papua New Guinea)',1,1,0),(41585,0,141809,'Tula de Allende','Mexico','MX','Tula de Allende (Mexico)',1,1,0),(41586,27921,141810,'Tullamore','Ireland','IE','Tullamore (Ireland)',1,1,0),(41587,27934,141811,'Tumbler Ridge','Canada','CA','Tumbler Ridge (Canada)',1,1,0),(41588,27939,141812,'Tumwater','United States of America','US','Tumwater (United States of America)',1,1,0),(41589,0,141813,'Tunja','Colombia','CO','Tunja (Colombia)',1,1,0),(41590,27946,141814,'Tunkhannock','United States of America','US','Tunkhannock (United States of America)',1,1,0),(41591,0,141815,'Tupa','Brazil','BR','Tupa (Brazil)',1,1,0),(41592,27958,141816,'Turangi','New Zealand','NZ','Turangi (New Zealand)',1,1,0),(41593,27963,141817,'Turckheim','France','FR','Turckheim (France)',1,1,0),(41594,27966,141818,'Turi','Italy','IT','Turi (Italy)',1,1,0),(41595,0,141819,'Turunc / Mugla','Turkey','TR','Turunc / Mugla (Turkey)',1,1,0),(41596,27991,141820,'Tusayan','United States of America','US','Tusayan (United States of America)',1,1,0),(41597,27992,141821,'Tuscaloosa','United States of America','US','Tuscaloosa (United States of America)',1,1,0),(41598,0,141822,'Tuupovaara','Finland','FI','Tuupovaara (Finland)',1,1,0),(41599,28005,141823,'Tuusula','Finland','FI','Tuusula (Finland)',1,1,0),(41600,0,141824,'Twin Falls','United States of America','US','Twin Falls (United States of America)',1,1,0),(41601,28025,141825,'Twizel','New Zealand','NZ','Twizel (New Zealand)',1,1,0),(41602,0,141826,'U. L. Frau im Walde','Italy','IT','U. L. Frau im Walde (Italy)',1,1,0),(41603,0,141827,'Uhingen','Germany','DE','Uhingen (Germany)',1,1,0),(41604,28080,141828,'Uithoorn','Netherlands','NL','Uithoorn (Netherlands)',1,1,0),(41605,0,141829,'Uki','Australia','AU','Uki (Australia)',1,1,0),(41606,0,141830,'Ullensaker','Norway','NO','Ullensaker (Norway)',1,1,0),(41607,28106,141831,'Uludag','Turkey','TR','Uludag (Turkey)',1,1,0),(41608,0,141833,'Umberleigh','United Kingdom','UK','Umberleigh (United Kingdom)',1,1,0),(41609,28123,141834,'Umea','Sweden','SE','Umea (Sweden)',1,1,0),(41610,0,141835,'Umhlanga Rocks','South Africa','ZA','Umhlanga Rocks (South Africa)',1,1,0),(41611,28136,141836,'Uncastillo','Spain','ES','Uncastillo (Spain)',1,1,0),(41612,0,141837,'Universal City','United States of America','US','Universal City (United States of America)',1,1,0),(41613,0,141838,'University Place','United States of America','US','University Place (United States of America)',1,1,0),(41614,0,141839,'Unteregg','Germany','DE','Unteregg (Germany)',1,1,0),(41615,0,141840,'Unterlamm','Austria','AT','Unterlamm (Austria)',1,1,0),(41616,0,141841,'Unternberg','Austria','AT','Unternberg (Austria)',1,1,0),(41617,0,141842,'Unterschlei?heim','Germany','DE','Unterschlei?heim (Germany)',1,1,0),(41618,28172,141843,'Unterwasser','Switzerland','CH','Unterwasser (Switzerland)',1,1,0),(41619,0,141844,'Unterwei?bach','Germany','DE','Unterwei?bach (Germany)',1,1,0),(41620,28189,141845,'Uppsala','Sweden','SE','Uppsala (Sweden)',1,1,0),(41621,28196,141846,'Urayasu','Japan','JP','Urayasu (Japan)',1,1,0),(41622,28223,141847,'Urzig','Germany','DE','Urzig (Germany)',1,1,0),(41623,0,141848,'Usigliano','Italy','IT','Usigliano (Italy)',1,1,0),(41624,0,141849,'Usk','United Kingdom','UK','Usk (United Kingdom)',1,1,0),(41625,28251,141850,'Utebo','Spain','ES','Utebo (Spain)',1,1,0),(41626,0,141851,'Uthli','Iceland','IS','Uthli (Iceland)',1,1,0),(41627,28261,141852,'Utrera','Spain','ES','Utrera (Spain)',1,1,0),(41628,0,141853,'Uttaradit','Thailand','TH','Uttaradit (Thailand)',1,1,0),(41629,28266,141854,'Uttendorf','Austria','AT','Uttendorf (Austria)',1,1,0),(41630,0,141855,'Uzice','Serbia','RS','Uzice (Serbia)',1,1,0),(41631,0,141856,'Vacov','Czech Republic','CZ','Vacov (Czech Republic)',1,1,0),(41632,0,141857,'Vagney','France','FR','Vagney (France)',1,1,0),(41633,0,141858,'Vidovice','Czech Republic','CZ','Vidovice (Czech Republic)',1,1,0),(41634,28719,141859,'Viedma','Argentina','AR','Viedma (Argentina)',1,1,0),(41635,0,141860,'Viernau','Germany','DE','Viernau (Germany)',1,1,0),(41636,28734,141861,'Viernheim','Germany','DE','Viernheim (Germany)',1,1,0),(41637,0,141862,'Vierville-sur-Mer','France','FR','Vierville-sur-Mer (France)',1,1,0),(41638,28745,141863,'Vigarano Mainarda','Italy','IT','Vigarano Mainarda (Italy)',1,1,0),(41639,0,141864,'Vignee','Belgium','BE','Vignee (Belgium)',1,1,0),(41640,0,141865,'Vignola','Italy','IT','Vignola (Italy)',1,1,0),(41641,28755,141866,'Vigonza','Italy','IT','Vigonza (Italy)',1,1,0),(41642,0,141867,'Viitasaari','Finland','FI','Viitasaari (Finland)',1,1,0),(41643,0,141868,'Vijlen','Netherlands','NL','Vijlen (Netherlands)',1,1,0),(41644,28760,141869,'Vikersund','Norway','NO','Vikersund (Norway)',1,1,0),(41645,33971,141870,'Vila do Porto','Portugal','PT','Vila do Porto (Portugal)',1,1,0),(41646,33987,141871,'Vila Real','Portugal','PT','Vila Real (Portugal)',1,1,0),(41647,33988,141872,'Vila Real de Santo Antonio','Portugal','PT','Vila Real de Santo Antonio (Portugal)',1,1,0),(41648,0,141873,'Vilaller','Spain','ES','Vilaller (Spain)',1,1,0),(41649,0,141874,'Vilarmaior','Spain','ES','Vilarmaior (Spain)',1,1,0),(41650,0,141875,'Vilcabamba','Ecuador','EC','Vilcabamba (Ecuador)',1,1,0),(41651,0,141876,'Villa Point','St. Vincent & the Grenadines','VC','Villa Point (St. Vincent & the Grenadines)',1,1,0),(41652,28799,141877,'Villafranca di Verona','Italy','IT','Villafranca di Verona (Italy)',1,1,0),(41653,0,141878,'Villafranca Tirrena','Italy','IT','Villafranca Tirrena (Italy)',1,1,0),(41654,0,141879,'Villafria de Burgos','Spain','ES','Villafria de Burgos (Spain)',1,1,0),(41655,0,141880,'Villalba de la Sierra','Spain','ES','Villalba de la Sierra (Spain)',1,1,0),(41656,0,141881,'Villamarina di Cesenatico','Italy','IT','Villamarina di Cesenatico (Italy)',1,1,0),(41657,0,141882,'Villanova','Spain','ES','Villanova (Spain)',1,1,0),(41658,0,141883,'Villanova d\'Asti','Italy','IT','Villanova d\'Asti (Italy)',1,1,0),(41659,0,141884,'Villanueva de la Vera','Spain','ES','Villanueva de la Vera (Spain)',1,1,0),(41660,0,141885,'Villardiegua de la Ribera','Spain','ES','Villardiegua de la Ribera (Spain)',1,1,0),(41661,0,141886,'Villargordo del Cabriel','Spain','ES','Villargordo del Cabriel (Spain)',1,1,0),(41662,0,141887,'Villars / Ollon','Switzerland','CH','Villars / Ollon (Switzerland)',1,1,0),(41663,28871,141888,'Villennes-sur-Seine','France','FR','Villennes-sur-Seine (France)',1,1,0),(41664,0,141889,'Villeparisis','France','FR','Villeparisis (France)',1,1,0),(41665,28879,141890,'Villers-Saint-Paul','France','FR','Villers-Saint-Paul (France)',1,1,0),(41666,28883,141891,'Villiers-le-Mahieu','France','FR','Villiers-le-Mahieu (France)',1,1,0),(41667,28890,141892,'Villorba','Italy','IT','Villorba (Italy)',1,1,0),(41668,28892,141893,'Vilnius','Lithuania','LT','Vilnius (Lithuania)',1,1,0),(41669,0,141894,'Vimioso','Portugal','PT','Vimioso (Portugal)',1,1,0),(41670,28897,141895,'Vimmerby','Sweden','SE','Vimmerby (Sweden)',1,1,0),(41671,28898,141896,'Vimodrone','Italy','IT','Vimodrone (Italy)',1,1,0),(41672,0,141897,'Vimoutiers','France','FR','Vimoutiers (France)',1,1,0),(41673,0,141898,'Vineuil (Loir-et-Cher)','France','FR','Vineuil (Loir-et-Cher) (France)',1,1,0),(41674,0,141899,'Vinsobres','France','FR','Vinsobres (France)',1,1,0),(41675,28943,141900,'Viriat','France','FR','Viriat (France)',1,1,0),(41676,28947,141901,'Virton','Belgium','BE','Virton (Belgium)',1,1,0),(41677,0,141902,'Viseu de Sus','Romania','RO','Viseu de Sus (Romania)',1,1,0),(41678,0,141903,'Viskovici','Croatia','HR','Viskovici (Croatia)',1,1,0),(41679,28963,141904,'Visp','Switzerland','CH','Visp (Switzerland)',1,1,0),(41680,0,141905,'Vispieres','Spain','ES','Vispieres (Spain)',1,1,0),(41681,34006,141906,'Vista','United States of America','US','Vista (United States of America)',1,1,0),(41682,28979,141907,'Vitrolles','France','FR','Vitrolles (France)',1,1,0),(41683,28991,141908,'Vivonne','France','FR','Vivonne (France)',1,1,0),(41684,29007,141909,'Vlotho','Germany','DE','Vlotho (Germany)',1,1,0),(41685,0,141910,'Vocklabruck','Austria','AT','Vocklabruck (Austria)',1,1,0),(41686,0,141911,'Vodnany','Czech Republic','CZ','Vodnany (Czech Republic)',1,1,0),(41687,0,141912,'Vohrenbach','Germany','DE','Vohrenbach (Germany)',1,1,0),(41688,29026,141913,'Volcan','Panama','PA','Volcan (Panama)',1,1,0),(41689,0,141914,'Vollenhove','Netherlands','NL','Vollenhove (Netherlands)',1,1,0),(41690,0,141915,'Volos','Greece','GR','Volos (Greece)',1,1,0),(41691,0,141916,'Voran','Italy','IT','Voran (Italy)',1,1,0),(41692,0,141917,'Vorderschmiding','Germany','DE','Vorderschmiding (Germany)',1,1,0),(41693,0,141918,'Vordingborg','Denmark','DK','Vordingborg (Denmark)',1,1,0),(41694,0,141919,'Voue','France','FR','Voue (France)',1,1,0),(41695,29073,141920,'Vourvoulos','Greece','GR','Vourvoulos (Greece)',1,1,0),(41696,0,141921,'Vouvry','Switzerland','CH','Vouvry (Switzerland)',1,1,0),(41697,0,141922,'Vouziers','France','FR','Vouziers (France)',1,1,0),(41698,0,141923,'Vrigny','France','FR','Vrigny (France)',1,1,0),(41699,0,141924,'Waal','Germany','DE','Waal (Germany)',1,1,0),(41700,0,141925,'Wackersberg','Germany','DE','Wackersberg (Germany)',1,1,0),(41701,29120,141926,'Wade','United States of America','US','Wade (United States of America)',1,1,0),(41702,0,141927,'Wadhurst','United Kingdom','UK','Wadhurst (United Kingdom)',1,1,0),(41703,0,141928,'Wadi Rum','Jordan','JO','Wadi Rum (Jordan)',1,1,0),(41704,29129,141929,'Wading River','United States of America','US','Wading River (United States of America)',1,1,0),(41705,29137,141930,'Wagrain','Austria','AT','Wagrain (Austria)',1,1,0),(41706,0,141931,'Wahlwies','Germany','DE','Wahlwies (Germany)',1,1,0),(41707,0,141932,'Wahrenholz','Germany','DE','Wahrenholz (Germany)',1,1,0),(41708,0,141933,'Waikato','New Zealand','NZ','Waikato (New Zealand)',1,1,0),(41709,0,141934,'Waimea - Big Island','United States of America','US','Waimea - Big Island (United States of America)',1,1,0),(41710,29163,141935,'Wainwright','Canada','CA','Wainwright (Canada)',1,1,0),(41711,29175,141936,'Wakayama','Japan','JP','Wakayama (Japan)',1,1,0),(41712,0,141937,'Waldbockelheim','Germany','DE','Waldbockelheim (Germany)',1,1,0),(41713,0,141938,'Waldbronn','Germany','DE','Waldbronn (Germany)',1,1,0),(41714,29189,141939,'Waldburg','Germany','DE','Waldburg (Germany)',1,1,0),(41715,0,141940,'Walderbach','Germany','DE','Walderbach (Germany)',1,1,0),(41716,0,141941,'Waldkirchen am Wesen','Austria','AT','Waldkirchen am Wesen (Austria)',1,1,0),(41717,0,141942,'Wald-Michelbach','Germany','DE','Wald-Michelbach (Germany)',1,1,0),(41718,0,141943,'Waldniel','Germany','DE','Waldniel (Germany)',1,1,0),(41719,0,141944,'Waldsassen','Germany','DE','Waldsassen (Germany)',1,1,0),(41720,0,141945,'Walker','United States of America','US','Walker (United States of America)',1,1,0),(41721,0,141946,'Walkerville','Australia','AU','Walkerville (Australia)',1,1,0),(41722,0,141947,'Wall','United States of America','US','Wall (United States of America)',1,1,0),(41723,29219,141948,'Walled Lake','United States of America','US','Walled Lake (United States of America)',1,1,0),(41724,29224,141949,'Wallingford','United States of America','US','Wallingford (United States of America)',1,1,0),(41725,0,141950,'Wallington','United Kingdom','UK','Wallington (United Kingdom)',1,1,0),(41726,0,141951,'Walluf','Germany','DE','Walluf (Germany)',1,1,0),(41727,0,141952,'Walnut','United States of America','US','Walnut (United States of America)',1,1,0),(41728,29233,141953,'Walpole','Australia','AU','Walpole (Australia)',1,1,0),(41729,0,141954,'Walting','Germany','DE','Walting (Germany)',1,1,0),(41730,0,141955,'Walton','United Kingdom','UK','Walton (United Kingdom)',1,1,0),(41731,29251,141956,'Wamena','Indonesia','ID','Wamena (Indonesia)',1,1,0),(41732,29253,141957,'Wanaka','New Zealand','NZ','Wanaka (New Zealand)',1,1,0),(41733,34015,141958,'Wangen im Allgau','Germany','DE','Wangen im Allgau (Germany)',1,1,0),(41734,29262,141959,'Wangerooge','Germany','DE','Wangerooge (Germany)',1,1,0),(41735,29285,141961,'Wareham','United States of America','US','Wareham (United States of America)',1,1,0),(41736,29294,141962,'Warkworth','New Zealand','NZ','Warkworth (New Zealand)',1,1,0),(41737,0,141963,'Warmensteinach','Germany','DE','Warmensteinach (Germany)',1,1,0),(41738,0,141964,'Warnemunde','Germany','DE','Warnemunde (Germany)',1,1,0),(41739,29301,141965,'Warner Robins','United States of America','US','Warner Robins (United States of America)',1,1,0),(41740,0,141966,'Warnsdorf','Germany','DE','Warnsdorf (Germany)',1,1,0),(41741,28419,141967,'Valverde','Spain','ES','Valverde (Spain)',1,1,0),(41742,0,141968,'Valverde de Leganes','Spain','ES','Valverde de Leganes (Spain)',1,1,0),(41743,28428,141969,'Vandellos','Spain','ES','Vandellos (Spain)',1,1,0),(41744,28429,141970,'Vanderbijlpark','South Africa','ZA','Vanderbijlpark (South Africa)',1,1,0),(41745,0,141971,'Vang Vieng','LAOS','LA','Vang Vieng (LAOS)',1,1,0),(41746,28452,141972,'Varberg','Sweden','SE','Varberg (Sweden)',1,1,0),(41747,28460,141973,'Varennes-sur-Allier','France','FR','Varennes-sur-Allier (France)',1,1,0),(41748,0,141974,'Vargesztes','Hungary','HU','Vargesztes (Hungary)',1,1,0),(41749,0,141975,'Vari','Greece','GR','Vari (Greece)',1,1,0),(41750,28469,141977,'Varkiza','Greece','GR','Varkiza (Greece)',1,1,0),(41751,0,141978,'Varmahlid','Iceland','IS','Varmahlid (Iceland)',1,1,0),(41752,0,141979,'Varreddes','France','FR','Varreddes (France)',1,1,0),(41753,0,141981,'Vassilatika','Greece','GR','Vassilatika (Greece)',1,1,0),(41754,28484,141982,'Vasteras','Sweden','SE','Vasteras (Sweden)',1,1,0),(41755,0,141983,'Vaucouleurs','France','FR','Vaucouleurs (France)',1,1,0),(41756,0,141984,'Vauvert','France','FR','Vauvert (France)',1,1,0),(41757,28516,141985,'Veenendaal','Netherlands','NL','Veenendaal (Netherlands)',1,1,0),(41758,0,141986,'Vega de Valcarce','Spain','ES','Vega de Valcarce (Spain)',1,1,0),(41759,28543,141987,'Veligandu','Maldives','MV','Veligandu (Maldives)',1,1,0),(41760,0,141988,'Velika Plana','Serbia','RS','Velika Plana (Serbia)',1,1,0),(41761,0,141989,'Velsen','Netherlands','NL','Velsen (Netherlands)',1,1,0),(41762,0,141990,'Venancio Aires','Brazil','BR','Venancio Aires (Brazil)',1,1,0),(41763,0,141991,'Venaria Reale','Italy','IT','Venaria Reale (Italy)',1,1,0),(41764,28564,141992,'Venasque','France','FR','Venasque (France)',1,1,0),(41765,0,141993,'Vendres-Plage','France','FR','Vendres-Plage (France)',1,1,0),(41766,28577,141994,'Venlo','Netherlands','NL','Venlo (Netherlands)',1,1,0),(41767,28579,141995,'Venosc','France','FR','Venosc (France)',1,1,0),(41768,0,141996,'Ventura','United States of America','US','Ventura (United States of America)',1,1,0),(41769,28590,141997,'Venturina','Italy','IT','Venturina (Italy)',1,1,0),(41770,33957,141998,'Vera Playa','Spain','ES','Vera Playa (Spain)',1,1,0),(41771,0,141999,'Verchen','Germany','DE','Verchen (Germany)',1,1,0),(41772,28614,142000,'Verl','Germany','DE','Verl (Germany)',1,1,0),(41773,0,142001,'Vernet Les Bains','France','FR','Vernet Les Bains (France)',1,1,0),(41774,0,142002,'Vernon Hills','United States of America','US','Vernon Hills (United States of America)',1,1,0),(41775,28634,142003,'Verona','United States of America','US','Verona (United States of America)',1,1,0),(41776,28652,142004,'Verzej','Slovenia','SI','Verzej (Slovenia)',1,1,0),(41777,28656,142005,'Vestal','United States of America','US','Vestal (United States of America)',1,1,0),(41778,0,142006,'Vestby','Norway','NO','Vestby (Norway)',1,1,0),(41779,28661,142007,'Veszprem','Hungary','HU','Veszprem (Hungary)',1,1,0),(41780,28662,142008,'Vetlanda','Sweden','SE','Vetlanda (Sweden)',1,1,0),(41781,0,142009,'Vetroz','Switzerland','CH','Vetroz (Switzerland)',1,1,0),(41782,0,142010,'Viana do Castelo','Portugal','PT','Viana do Castelo (Portugal)',1,1,0),(41783,0,142011,'Vias Plage','France','FR','Vias Plage (France)',1,1,0),(41784,28684,142012,'Viborg','Denmark','DK','Viborg (Denmark)',1,1,0),(41785,0,142013,'Vicheres','France','FR','Vicheres (France)',1,1,0),(41786,33962,142014,'Vico Equense','Italy','IT','Vico Equense (Italy)',1,1,0),(41787,0,142015,'Vico Morcote','Switzerland','CH','Vico Morcote (Switzerland)',1,1,0),(41788,28701,142016,'Victoria','United States of America','US','Victoria (United States of America)',1,1,0),(41789,0,142017,'Victoria-by-the-Sea','Canada','CA','Victoria-by-the-Sea (Canada)',1,1,0),(41790,0,142018,'Vidigueira','Portugal','PT','Vidigueira (Portugal)',1,1,0),(41791,28722,142019,'Vieira de Leiria','Portugal','PT','Vieira de Leiria (Portugal)',1,1,0),(41792,28723,142020,'Vielha','Spain','ES','Vielha (Spain)',1,1,0),(41793,28727,142021,'Vielsalm','Belgium','BE','Vielsalm (Belgium)',1,1,0),(41794,0,142022,'Viggiu','Italy','IT','Viggiu (Italy)',1,1,0),(41795,0,142023,'Vignale Monferrato','Italy','IT','Vignale Monferrato (Italy)',1,1,0),(41796,0,142024,'Vila do Maio / Maio','Cape Verde','CV','Vila do Maio / Maio (Cape Verde)',1,1,0),(41797,0,142025,'Vila Flor','Portugal','PT','Vila Flor (Portugal)',1,1,0),(41798,33973,142026,'Vila Franca do Campo','Portugal','PT','Vila Franca do Campo (Portugal)',1,1,0),(41799,0,142027,'Vila Nova do Corvo','Portugal','PT','Vila Nova do Corvo (Portugal)',1,1,0),(41800,33984,142028,'Vila Pouca da Beira','Portugal','PT','Vila Pouca da Beira (Portugal)',1,1,0),(41801,0,142029,'Villa Catedral','Argentina','AR','Villa Catedral (Argentina)',1,1,0),(41802,0,142030,'Villa de Alvarez','Mexico','MX','Villa de Alvarez (Mexico)',1,1,0),(41803,0,142031,'Villa del Rio','Spain','ES','Villa del Rio (Spain)',1,1,0),(41804,0,142032,'Villa di Tirano','Italy','IT','Villa di Tirano (Italy)',1,1,0),(41805,0,142033,'Villa Maria','Argentina','AR','Villa Maria (Argentina)',1,1,0),(41806,0,142034,'Villa San Lorenzo','Argentina','AR','Villa San Lorenzo (Argentina)',1,1,0),(41807,28793,142035,'Villabuena de Alava','Spain','ES','Villabuena de Alava (Spain)',1,1,0),(41808,0,142036,'Villadiego','Spain','ES','Villadiego (Spain)',1,1,0),(41809,0,142037,'Villafranca','Spain','ES','Villafranca (Spain)',1,1,0),(41810,34003,142038,'Villalba','Spain','ES','Villalba (Spain)',1,1,0),(41811,0,142039,'Villalta','Italy','IT','Villalta (Italy)',1,1,0),(41812,0,142040,'Villamartin de la Abadia','Spain','ES','Villamartin de la Abadia (Spain)',1,1,0),(41813,28817,142041,'Villandraut','France','FR','Villandraut (France)',1,1,0),(41814,0,142042,'Villanova d\'Albenga','Italy','IT','Villanova d\'Albenga (Italy)',1,1,0),(41815,28820,142043,'Villanua','Spain','ES','Villanua (Spain)',1,1,0),(41816,0,142044,'Villanueva','Spain','ES','Villanueva (Spain)',1,1,0),(41817,28823,142045,'Villany','Hungary','HU','Villany (Hungary)',1,1,0),(41818,28824,142046,'Villaputzu','Italy','IT','Villaputzu (Italy)',1,1,0),(41819,28834,142047,'Villarreal','Spain','ES','Villarreal (Spain)',1,1,0),(41820,28835,142048,'Villarrica','Chile','CL','Villarrica (Chile)',1,1,0),(41821,0,142049,'Villarrobledo','Spain','ES','Villarrobledo (Spain)',1,1,0),(41822,0,142050,'Villatoro','Spain','ES','Villatoro (Spain)',1,1,0),(41823,0,142051,'Villecien','France','FR','Villecien (France)',1,1,0),(41824,28851,142052,'Villefargeau','France','FR','Villefargeau (France)',1,1,0),(41825,0,142053,'Villefranche-du-Perigord','France','FR','Villefranche-du-Perigord (France)',1,1,0),(41826,28855,142054,'Villefranche-sur-Mer','France','FR','Villefranche-sur-Mer (France)',1,1,0),(41827,28856,142055,'Villefranche-sur-Saone','France','FR','Villefranche-sur-Saone (France)',1,1,0),(41828,28869,142056,'Villeneuve-sur-Lot','France','FR','Villeneuve-sur-Lot (France)',1,1,0),(41829,0,142057,'Villeperrot','France','FR','Villeperrot (France)',1,1,0),(41830,28881,142058,'Villers-sur-Mer','France','FR','Villers-sur-Mer (France)',1,1,0),(41831,0,142059,'Villigen','Switzerland','CH','Villigen (Switzerland)',1,1,0),(41832,0,142060,'Vilsteren','Netherlands','NL','Vilsteren (Netherlands)',1,1,0),(41833,0,142061,'Vineyard Haven','United States of America','US','Vineyard Haven (United States of America)',1,1,0),(41834,28922,142062,'Vinisce','Croatia','HR','Vinisce (Croatia)',1,1,0),(41835,28925,142063,'Vinkeveen','Netherlands','NL','Vinkeveen (Netherlands)',1,1,0),(41836,28931,142064,'Vinton','United States of America','US','Vinton (United States of America)',1,1,0),(41837,28941,142065,'Virginia','Ireland','IE','Virginia (Ireland)',1,1,0),(41838,0,142066,'Virginia Beach','United States of America','US','Virginia Beach (United States of America)',1,1,0),(41839,0,142067,'Virginia City','United States of America','US','Virginia City (United States of America)',1,1,0),(41840,28956,142068,'Visby','Sweden','SE','Visby (Sweden)',1,1,0),(41841,0,142069,'Viserba di Rimini','Italy','IT','Viserba di Rimini (Italy)',1,1,0),(41842,0,142071,'Visingso','Sweden','SE','Visingso (Sweden)',1,1,0),(41843,0,142072,'Vitkovice','Czech Republic','CZ','Vitkovice (Czech Republic)',1,1,0),(41844,0,142073,'Walnut Grove','United States of America','US','Walnut Grove (United States of America)',1,1,0),(41845,0,142074,'Walsall','United Kingdom','UK','Walsall (United Kingdom)',1,1,0),(41846,29249,142075,'Walzenhausen','Switzerland','CH','Walzenhausen (Switzerland)',1,1,0),(41847,29263,142076,'Wangle','Austria','AT','Wangle (Austria)',1,1,0),(41848,29274,142077,'Wapakoneta','United States of America','US','Wapakoneta (United States of America)',1,1,0),(41849,0,142078,'Ware','United Kingdom','UK','Ware (United Kingdom)',1,1,0),(41850,0,142079,'Warmenhuizen','Netherlands','NL','Warmenhuizen (Netherlands)',1,1,0),(41851,0,142080,'Warner Springs','United States of America','US','Warner Springs (United States of America)',1,1,0),(41852,29304,142081,'Warragul','Australia','AU','Warragul (Australia)',1,1,0),(41853,29318,142082,'Warroad','United States of America','US','Warroad (United States of America)',1,1,0),(41854,0,142083,'Warsaw','United States of America','US','Warsaw (United States of America)',1,1,0),(41855,29324,142084,'Warth','Austria','AT','Warth (Austria)',1,1,0),(41856,29325,142085,'Warthausen','Germany','DE','Warthausen (Germany)',1,1,0),(41857,0,142086,'Warwick Farm','Australia','AU','Warwick Farm (Australia)',1,1,0),(41858,0,142087,'Washington','United Kingdom','UK','Washington (United Kingdom)',1,1,0),(41859,29337,142088,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(41860,29338,142089,'Washougal','United States of America','US','Washougal (United States of America)',1,1,0),(41861,0,142090,'Wasungen','Germany','DE','Wasungen (Germany)',1,1,0),(41862,0,142091,'Waterberge','South Africa','ZA','Waterberge (South Africa)',1,1,0),(41863,0,142092,'Waterberg-Nationalpark','Namibia','NA','Waterberg-Nationalpark (Namibia)',1,1,0),(41864,29356,142093,'Waterford','Ireland','IE','Waterford (Ireland)',1,1,0),(41865,0,142094,'Waterloo','Belgium','BE','Waterloo (Belgium)',1,1,0),(41866,29361,142095,'Waterloo','United States of America','US','Waterloo (United States of America)',1,1,0),(41867,0,142096,'Watertown','United States of America','US','Watertown (United States of America)',1,1,0),(41868,29372,142097,'Waterville','United States of America','US','Waterville (United States of America)',1,1,0),(41869,29379,142098,'Watkins Glen','United States of America','US','Watkins Glen (United States of America)',1,1,0),(41870,29386,142099,'Watsonville','United States of America','US','Watsonville (United States of America)',1,1,0),(41871,0,142100,'Waverly','United States of America','US','Waverly (United States of America)',1,1,0),(41872,0,142101,'Waverly','United States of America','US','Waverly (United States of America)',1,1,0),(41873,29411,142102,'Waxahachie','United States of America','US','Waxahachie (United States of America)',1,1,0),(41874,34022,142103,'Wayne','United States of America','US','Wayne (United States of America)',1,1,0),(41875,0,142104,'Waynesboro','United States of America','US','Waynesboro (United States of America)',1,1,0),(41876,29417,142105,'Waynesburg','United States of America','US','Waynesburg (United States of America)',1,1,0),(41877,0,142106,'Weberstedt','Germany','DE','Weberstedt (Germany)',1,1,0),(41878,29427,142107,'Webster','United States of America','US','Webster (United States of America)',1,1,0),(41879,0,142108,'Wegberg','Germany','DE','Wegberg (Germany)',1,1,0),(41880,0,142109,'Weilerswist','Germany','DE','Weilerswist (Germany)',1,1,0),(41881,0,142110,'Weinbergen','Germany','DE','Weinbergen (Germany)',1,1,0),(41882,29456,142111,'Weinbohla','Germany','DE','Weinbohla (Germany)',1,1,0),(41883,0,142112,'Weingarten (Wurttemberg)','Germany','DE','Weingarten (Wurttemberg) (Germany)',1,1,0),(41884,0,142113,'Weissbach','Germany','DE','Weissbach (Germany)',1,1,0),(41885,29468,142114,'Weissbad','Switzerland','CH','Weissbad (Switzerland)',1,1,0),(41886,0,142115,'Wei?en','Germany','DE','Wei?en (Germany)',1,1,0),(41887,0,142116,'Wei?enburg','France','FR','Wei?enburg (France)',1,1,0),(41888,29478,142117,'Welches','United States of America','US','Welches (United States of America)',1,1,0),(41889,0,142118,'Welgevonden Game Reserve','South Africa','ZA','Welgevonden Game Reserve (South Africa)',1,1,0),(41890,0,142119,'Well','Netherlands','NL','Well (Netherlands)',1,1,0),(41891,35426,142120,'Wellington','New Zealand','NZ','Wellington (New Zealand)',1,1,0),(41892,29493,142121,'Wellton','United States of America','US','Wellton (United States of America)',1,1,0),(41893,29494,142122,'Wels','Austria','AT','Wels (Austria)',1,1,0),(41894,0,142123,'Welsberg','Italy','IT','Welsberg (Italy)',1,1,0),(41895,29496,142124,'Welschneudorf','Germany','DE','Welschneudorf (Germany)',1,1,0),(41896,29501,142125,'Wemding','Germany','DE','Wemding (Germany)',1,1,0),(41897,0,142126,'Wencheng','China','CN','Wencheng (China)',1,1,0),(41898,0,142127,'Wendlingen am Neckar','Germany','DE','Wendlingen am Neckar (Germany)',1,1,0),(41899,29510,142128,'Wengen','Switzerland','CH','Wengen (Switzerland)',1,1,0),(41900,0,142129,'Werchter','Belgium','BE','Werchter (Belgium)',1,1,0),(41901,0,142130,'Werdohl','Germany','DE','Werdohl (Germany)',1,1,0),(41902,0,142131,'Werlte','Germany','DE','Werlte (Germany)',1,1,0),(41903,0,142132,'Wermelskirchen','Germany','DE','Wermelskirchen (Germany)',1,1,0),(41904,0,142133,'Wernberg','Austria','AT','Wernberg (Austria)',1,1,0),(41905,29524,142134,'Wernberg-Koblitz','Germany','DE','Wernberg-Koblitz (Germany)',1,1,0),(41906,0,142135,'Wertach','Germany','DE','Wertach (Germany)',1,1,0),(41907,0,142136,'Wertheim-Bettingen','Germany','DE','Wertheim-Bettingen (Germany)',1,1,0),(41908,0,142137,'Wesel','Germany','DE','Wesel (Germany)',1,1,0),(41909,29535,142138,'Wesley Chapel','United States of America','US','Wesley Chapel (United States of America)',1,1,0),(41910,0,142139,'West Bay','Cayman Islands','KY','West Bay (Cayman Islands)',1,1,0),(41911,34045,142140,'West Chester','United States of America','US','West Chester (United States of America)',1,1,0),(41912,34048,142141,'West Columbia','United States of America','US','West Columbia (United States of America)',1,1,0),(41913,0,142142,'West Lulworth','United Kingdom','UK','West Lulworth (United Kingdom)',1,1,0),(41914,34120,142143,'West Point','United States of America','US','West Point (United States of America)',1,1,0),(41915,34141,142144,'West Valley City','United States of America','US','West Valley City (United States of America)',1,1,0),(41916,34147,142145,'West Wyalong','Australia','AU','West Wyalong (Australia)',1,1,0),(41917,34149,142146,'West Yarmouth','United States of America','US','West Yarmouth (United States of America)',1,1,0),(41918,34150,142147,'West Yellowstone','United States of America','US','West Yellowstone (United States of America)',1,1,0),(41919,29547,142148,'Westbank','Canada','CA','Westbank (Canada)',1,1,0),(41920,0,142149,'Westerdeichstrich','Germany','DE','Westerdeichstrich (Germany)',1,1,0),(41921,0,142150,'Westfield','United States of America','US','Westfield (United States of America)',1,1,0),(41922,29601,142151,'Weston','United States of America','US','Weston (United States of America)',1,1,0),(41923,0,142152,'Weyarn','Germany','DE','Weyarn (Germany)',1,1,0),(41924,0,142153,'Weymouth','United Kingdom','UK','Weymouth (United Kingdom)',1,1,0),(41925,29650,142154,'Wheat Ridge','United States of America','US','Wheat Ridge (United States of America)',1,1,0),(41926,29657,142155,'Wheeling','United States of America','US','Wheeling (United States of America)',1,1,0),(41927,29672,142156,'White River','South Africa','ZA','White River (South Africa)',1,1,0),(41928,29674,142157,'White Sand Beach','Thailand','TH','White Sand Beach (Thailand)',1,1,0),(41929,0,142158,'Whitegate','Ireland','IE','Whitegate (Ireland)',1,1,0),(41930,29690,142159,'Whites City','United States of America','US','Whites City (United States of America)',1,1,0),(41931,0,142160,'Whitmuir','United Kingdom','UK','Whitmuir (United Kingdom)',1,1,0),(41932,0,142161,'Widnau','Switzerland','CH','Widnau (Switzerland)',1,1,0),(41933,0,142162,'Wieda','Germany','DE','Wieda (Germany)',1,1,0),(41934,0,142163,'Wiesau','Germany','DE','Wiesau (Germany)',1,1,0),(41935,0,142164,'Wiesen GR','Switzerland','CH','Wiesen GR (Switzerland)',1,1,0),(41936,0,142165,'Wiesenbronn','Germany','DE','Wiesenbronn (Germany)',1,1,0),(41937,29736,142166,'Wiggensbach','Germany','DE','Wiggensbach (Germany)',1,1,0),(41938,0,142167,'Wijchen','Netherlands','NL','Wijchen (Netherlands)',1,1,0),(41939,0,142168,'Wildenranna','Germany','DE','Wildenranna (Germany)',1,1,0),(41940,0,142169,'Wildwood','United States of America','US','Wildwood (United States of America)',1,1,0),(41941,0,142170,'Wilhelmsfeld','Germany','DE','Wilhelmsfeld (Germany)',1,1,0),(41942,29776,142171,'Williamsburg','United States of America','US','Williamsburg (United States of America)',1,1,0),(41943,0,142172,'Williamsburg','United States of America','US','Williamsburg (United States of America)',1,1,0),(41944,29779,142173,'Williamston','United States of America','US','Williamston (United States of America)',1,1,0),(41945,29782,142174,'Williamsville','United States of America','US','Williamsville (United States of America)',1,1,0),(41946,0,142175,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(41947,29811,142176,'Wilsdruff','Germany','DE','Wilsdruff (Germany)',1,1,0),(41948,29812,142177,'Wilson','United States of America','US','Wilson (United States of America)',1,1,0),(41949,29821,142178,'Wimberley','United States of America','US','Wimberley (United States of America)',1,1,0),(41950,0,142179,'Wimborne Minster','United Kingdom','UK','Wimborne Minster (United Kingdom)',1,1,0),(41951,29824,142180,'Wimereux','France','FR','Wimereux (France)',1,1,0),(41952,0,142181,'Windorf','Germany','DE','Windorf (Germany)',1,1,0),(41953,0,142182,'Windsor','United States of America','US','Windsor (United States of America)',1,1,0),(41954,28829,142183,'Villard-sur-Doron','France','FR','Villard-sur-Doron (France)',1,1,0),(41955,28843,142184,'Villaverde','Spain','ES','Villaverde (Spain)',1,1,0),(41956,0,142185,'Ville','France','FR','Ville (France)',1,1,0),(41957,0,142186,'Villecomtal','France','FR','Villecomtal (France)',1,1,0),(41958,0,142187,'Villeneuve','Italy','IT','Villeneuve (Italy)',1,1,0),(41959,28873,142188,'Villepinte','France','FR','Villepinte (France)',1,1,0),(41960,0,142189,'Villerouge-la-Cremade','France','FR','Villerouge-la-Cremade (France)',1,1,0),(41961,28877,142190,'Villers-Cotterets','France','FR','Villers-Cotterets (France)',1,1,0),(41962,28880,142191,'Villers-Semeuse','France','FR','Villers-Semeuse (France)',1,1,0),(41963,0,142192,'Villmergen','Switzerland','CH','Villmergen (Switzerland)',1,1,0),(41964,0,142193,'Vimbodi i Poblet','Spain','ES','Vimbodi i Poblet (Spain)',1,1,0),(41965,0,142194,'Vinchio','Italy','IT','Vinchio (Italy)',1,1,0),(41966,28934,142195,'Vira','Switzerland','CH','Vira (Switzerland)',1,1,0),(41967,0,142196,'Virgin Gorda','British Virgin Islands','VG','Virgin Gorda (British Virgin Islands)',1,1,0),(41968,0,142197,'Virovitica','Croatia','HR','Virovitica (Croatia)',1,1,0),(41969,0,142199,'Viti Levu','Fiji Islands','FJ','Viti Levu (Fiji Islands)',1,1,0),(41970,0,142200,'Vitoscha','Bulgaria','BG','Vitoscha (Bulgaria)',1,1,0),(41971,0,142201,'Vitte','Germany','DE','Vitte (Germany)',1,1,0),(41972,28985,142202,'Vitulazio','Italy','IT','Vitulazio (Italy)',1,1,0),(41973,0,142203,'Vitzenburg','Germany','DE','Vitzenburg (Germany)',1,1,0),(41974,0,142204,'Vivari','Greece','GR','Vivari (Greece)',1,1,0),(41975,0,142205,'Viveda','Spain','ES','Viveda (Spain)',1,1,0),(41976,28987,142206,'Viveiro','Spain','ES','Viveiro (Spain)',1,1,0),(41977,0,142207,'Vize','Turkey','TR','Vize (Turkey)',1,1,0),(41978,0,142208,'Vlasici','Croatia','HR','Vlasici (Croatia)',1,1,0),(41979,29008,142209,'Vlychada','Greece','GR','Vlychada (Greece)',1,1,0),(41980,0,142210,'Vodice','Croatia','HR','Vodice (Croatia)',1,1,0),(41981,29012,142211,'Vogelgrun','France','FR','Vogelgrun (France)',1,1,0),(41982,0,142212,'Volada','Greece','GR','Volada (Greece)',1,1,0),(41983,0,142213,'Volcano Village','United States of America','US','Volcano Village (United States of America)',1,1,0),(41984,29034,142214,'Volkach','Germany','DE','Volkach (Germany)',1,1,0),(41985,0,142215,'Volvic','France','FR','Volvic (France)',1,1,0),(41986,29053,142216,'Vopnafjordur','Iceland','IS','Vopnafjordur (Iceland)',1,1,0),(41987,0,142217,'Vorbeck','Germany','DE','Vorbeck (Germany)',1,1,0),(41988,0,142218,'Vorderstoder','Austria','AT','Vorderstoder (Austria)',1,1,0),(41989,29056,142219,'Voreppe','France','FR','Voreppe (France)',1,1,0),(41990,29064,142220,'Vosne-Romanee','France','FR','Vosne-Romanee (France)',1,1,0),(41991,29068,142221,'Vougeot','France','FR','Vougeot (France)',1,1,0),(41992,0,142222,'Vouno','Greece','GR','Vouno (Greece)',1,1,0),(41993,0,142223,'Vrastama','Greece','GR','Vrastama (Greece)',1,1,0),(41994,29084,142224,'Vravrona','Greece','GR','Vravrona (Greece)',1,1,0),(41995,29086,142225,'Vrigstad','Sweden','SE','Vrigstad (Sweden)',1,1,0),(41996,29089,142226,'Vryheid','South Africa','ZA','Vryheid (South Africa)',1,1,0),(41997,0,142227,'Vulcano Island','Italy','IT','Vulcano Island (Italy)',1,1,0),(41998,0,142228,'Wachow','Germany','DE','Wachow (Germany)',1,1,0),(41999,29117,142229,'Waconia','United States of America','US','Waconia (United States of America)',1,1,0),(42000,0,142230,'Waddens','Germany','DE','Waddens (Germany)',1,1,0),(42001,0,142231,'Wadebridge','United Kingdom','UK','Wadebridge (United Kingdom)',1,1,0),(42002,29124,142232,'Wadersloh','Germany','DE','Wadersloh (Germany)',1,1,0),(42003,0,142233,'Waidhaus','Germany','DE','Waidhaus (Germany)',1,1,0),(42004,0,142234,'Waihi Beach','New Zealand','NZ','Waihi Beach (New Zealand)',1,1,0),(42005,0,142235,'Waikabubak','Indonesia','ID','Waikabubak (Indonesia)',1,1,0),(42006,0,142236,'Waischenfeld','Germany','DE','Waischenfeld (Germany)',1,1,0),(42007,0,142237,'Wald','Switzerland','CH','Wald (Switzerland)',1,1,0),(42008,0,142238,'Wald am Arlberg','Austria','AT','Wald am Arlberg (Austria)',1,1,0),(42009,29187,142239,'Waldachtal','Germany','DE','Waldachtal (Germany)',1,1,0),(42010,0,142240,'Waldesch','Germany','DE','Waldesch (Germany)',1,1,0),(42011,29197,142241,'Waldo','United States of America','US','Waldo (United States of America)',1,1,0),(42012,29199,142242,'Waldorf','United States of America','US','Waldorf (United States of America)',1,1,0),(42013,0,142243,'Walkenried','Germany','DE','Walkenried (Germany)',1,1,0),(42014,0,142244,'Wallasey','United Kingdom','UK','Wallasey (United Kingdom)',1,1,0),(42015,0,142245,'Wallendorf-Pont','Luxembourg','LU','Wallendorf-Pont (Luxembourg)',1,1,0),(42016,0,142246,'Wallingford','United Kingdom','UK','Wallingford (United Kingdom)',1,1,0),(42017,0,142247,'Waltenhofen-Martinszell','Germany','DE','Waltenhofen-Martinszell (Germany)',1,1,0),(42018,0,142248,'Waltham Abbey','United Kingdom','UK','Waltham Abbey (United Kingdom)',1,1,0),(42019,29247,142249,'Walvis Bay','Namibia','NA','Walvis Bay (Namibia)',1,1,0),(42020,0,142250,'Wandersleben','Germany','DE','Wandersleben (Germany)',1,1,0),(42021,0,142251,'Wangen an der Aare','Switzerland','CH','Wangen an der Aare (Switzerland)',1,1,0),(42022,0,142252,'Waratah','Australia','AU','Waratah (Australia)',1,1,0),(42023,29282,142253,'Warder','Netherlands','NL','Warder (Netherlands)',1,1,0),(42024,29288,142254,'Warendorf','Germany','DE','Warendorf (Germany)',1,1,0),(42025,0,142255,'Warmeriville','France','FR','Warmeriville (France)',1,1,0),(42026,29323,142256,'Wartenberg','Germany','DE','Wartenberg (Germany)',1,1,0),(42027,0,142257,'Wartenberg-Rohrbach','Germany','DE','Wartenberg-Rohrbach (Germany)',1,1,0),(42028,29327,142258,'Warwick','Australia','AU','Warwick (Australia)',1,1,0),(42029,29335,142259,'Washburn','United States of America','US','Washburn (United States of America)',1,1,0),(42030,0,142260,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42031,0,142261,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42032,0,142262,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42033,29342,142263,'Wasquehal','France','FR','Wasquehal (France)',1,1,0),(42034,0,142264,'Wasselonne','France','FR','Wasselonne (France)',1,1,0),(42035,29346,142265,'Wasserlosen','Germany','DE','Wasserlosen (Germany)',1,1,0),(42036,29349,142266,'Watamu','Kenya','KE','Watamu (Kenya)',1,1,0),(42037,29362,142267,'Waterloo','Canada','CA','Waterloo (Canada)',1,1,0),(42038,29370,142268,'Watertown','United States of America','US','Watertown (United States of America)',1,1,0),(42039,29371,142269,'Waterville','Ireland','IE','Waterville (Ireland)',1,1,0),(42040,29375,142270,'Watford City','United States of America','US','Watford City (United States of America)',1,1,0),(42041,29398,142271,'Waukon','United States of America','US','Waukon (United States of America)',1,1,0),(42042,29401,142272,'Waupun','United States of America','US','Waupun (United States of America)',1,1,0),(42043,29406,142273,'Wauwatosa','United States of America','US','Wauwatosa (United States of America)',1,1,0),(42044,0,142274,'Waynesboro','United States of America','US','Waynesboro (United States of America)',1,1,0),(42045,0,142275,'Weare','United States of America','US','Weare (United States of America)',1,1,0),(42046,0,142276,'Wedde','Netherlands','NL','Wedde (Netherlands)',1,1,0),(42047,29438,142277,'Weer','Austria','AT','Weer (Austria)',1,1,0),(42048,0,142278,'Weesp','Netherlands','NL','Weesp (Netherlands)',1,1,0),(42049,29442,142279,'Weeze','Germany','DE','Weeze (Germany)',1,1,0),(42050,29443,142280,'Weggis','Switzerland','CH','Weggis (Switzerland)',1,1,0),(42051,0,142281,'Wegrow','Poland','PL','Wegrow (Poland)',1,1,0),(42052,0,142282,'Weidhausen b Coburg','Germany','DE','Weidhausen b Coburg (Germany)',1,1,0),(42053,29457,142283,'Weinfelden','Switzerland','CH','Weinfelden (Switzerland)',1,1,0),(42054,0,142284,'Weismain','Germany','DE','Weismain (Germany)',1,1,0),(42055,0,142285,'Wei?enbach am Lech','Austria','AT','Wei?enbach am Lech (Austria)',1,1,0),(42056,0,142286,'Wei?enkirchen i. d. Wachau','Austria','AT','Wei?enkirchen i. d. Wachau (Austria)',1,1,0),(42057,0,142287,'Weitenegg','Austria','AT','Weitenegg (Austria)',1,1,0),(42058,0,142288,'Weitenfeld','Austria','AT','Weitenfeld (Austria)',1,1,0),(42059,29475,142289,'Weitnau','Germany','DE','Weitnau (Germany)',1,1,0),(42060,0,142290,'Wellen','Belgium','BE','Wellen (Belgium)',1,1,0),(42061,0,142291,'Welwyn','United Kingdom','UK','Welwyn (United Kingdom)',1,1,0),(42062,0,142292,'Wenduine','Belgium','BE','Wenduine (Belgium)',1,1,0),(42063,0,142293,'Weng','Austria','AT','Weng (Austria)',1,1,0),(42064,0,142294,'Velpke','Germany','DE','Velpke (Germany)',1,1,0),(42065,28567,142296,'Vendome','France','FR','Vendome (France)',1,1,0),(42066,28571,142297,'Venetico','Italy','IT','Venetico (Italy)',1,1,0),(42067,0,142298,'Verbilki','Russia','RU','Verbilki (Russia)',1,1,0),(42068,0,142299,'Verchaix','France','FR','Verchaix (France)',1,1,0),(42069,0,142300,'Vercorin','Switzerland','CH','Vercorin (Switzerland)',1,1,0),(42070,28631,142301,'Veroia','Greece','GR','Veroia (Greece)',1,1,0),(42071,0,142302,'Verona','United States of America','US','Verona (United States of America)',1,1,0),(42072,0,142303,'Verona','United States of America','US','Verona (United States of America)',1,1,0),(42073,0,142304,'Veryan','United Kingdom','UK','Veryan (United Kingdom)',1,1,0),(42074,0,142305,'Vetrni','Czech Republic','CZ','Vetrni (Czech Republic)',1,1,0),(42075,28666,142306,'Veules-les-Roses','France','FR','Veules-les-Roses (France)',1,1,0),(42076,28674,142307,'Vezelay','France','FR','Vezelay (France)',1,1,0),(42077,0,142308,'Vezenobres','France','FR','Vezenobres (France)',1,1,0),(42078,28677,142309,'Viana','Spain','ES','Viana (Spain)',1,1,0),(42079,28679,142310,'Vianden','Luxembourg','LU','Vianden (Luxembourg)',1,1,0),(42080,0,142311,'Vias','France','FR','Vias (France)',1,1,0),(42081,33960,142312,'Vic','Spain','ES','Vic (Spain)',1,1,0),(42082,0,142313,'Vic en Bigorre','France','FR','Vic en Bigorre (France)',1,1,0),(42083,28691,142314,'Vicenza','Italy','IT','Vicenza (Italy)',1,1,0),(42084,0,142315,'Vichtenstein','Austria','AT','Vichtenstein (Austria)',1,1,0),(42085,28693,142316,'Vichy','France','FR','Vichy (France)',1,1,0),(42086,28695,142317,'Vicksburg','United States of America','US','Vicksburg (United States of America)',1,1,0),(42087,0,142318,'Vico','France','FR','Vico (France)',1,1,0),(42088,0,142319,'Victor Harbor','Australia','AU','Victor Harbor (Australia)',1,1,0),(42089,0,142320,'Victoria Falls','Zambia','ZM','Victoria Falls (Zambia)',1,1,0),(42090,0,142321,'Vidnoye','Russia','RU','Vidnoye (Russia)',1,1,0),(42091,28732,142322,'Vieques','Puerto Rico','PR','Vieques (Puerto Rico)',1,1,0),(42092,0,142323,'Vierumaki (Heinola)','Finland','FI','Vierumaki (Heinola) (Finland)',1,1,0),(42093,0,142324,'Viggianello','Italy','IT','Viggianello (Italy)',1,1,0),(42094,0,142325,'Vigneux-sur-Seine','France','FR','Vigneux-sur-Seine (France)',1,1,0),(42095,0,142326,'Vila Nova de Poiares','Portugal','PT','Vila Nova de Poiares (Portugal)',1,1,0),(42096,33982,142327,'Vila Nova de Santo Andre','Portugal','PT','Vila Nova de Santo Andre (Portugal)',1,1,0),(42097,28764,142328,'Viladecans','Spain','ES','Viladecans (Spain)',1,1,0),(42098,0,142329,'Vilafames','Spain','ES','Vilafames (Spain)',1,1,0),(42099,0,142330,'Vilafranca del Penedes','Spain','ES','Vilafranca del Penedes (Spain)',1,1,0),(42100,28769,142331,'Vilagarcia de Arousa','Spain','ES','Vilagarcia de Arousa (Spain)',1,1,0),(42101,28773,142332,'Vilamoura','Portugal','PT','Vilamoura (Portugal)',1,1,0),(42102,0,142333,'Vilarrubla de Santiago','Spain','ES','Vilarrubla de Santiago (Spain)',1,1,0),(42103,0,142334,'Vilassar de Mar','Spain','ES','Vilassar de Mar (Spain)',1,1,0),(42104,0,142335,'Villa de Leiva','Colombia','CO','Villa de Leiva (Colombia)',1,1,0),(42105,34002,142336,'Villa San Pietro','Italy','IT','Villa San Pietro (Italy)',1,1,0),(42106,28798,142337,'Villafranca de Cordoba','Spain','ES','Villafranca de Cordoba (Spain)',1,1,0),(42107,28808,142338,'Villalonga','Spain','ES','Villalonga (Spain)',1,1,0),(42108,28811,142339,'Villaluenga del Rosario','Spain','ES','Villaluenga del Rosario (Spain)',1,1,0),(42109,0,142340,'Villamanrique de la Condesa','Spain','ES','Villamanrique de la Condesa (Spain)',1,1,0),(42110,28813,142341,'Villamartin','Spain','ES','Villamartin (Spain)',1,1,0),(42111,28814,142342,'Villamayor','Spain','ES','Villamayor (Spain)',1,1,0),(42112,0,142343,'Villanders','Italy','IT','Villanders (Italy)',1,1,0),(42113,0,142344,'Villarmentero de Campos','Spain','ES','Villarmentero de Campos (Spain)',1,1,0),(42114,0,142345,'Ville di Corsano','Italy','IT','Ville di Corsano (Italy)',1,1,0),(42115,28849,142346,'Villebon-sur-Yvette','France','FR','Villebon-sur-Yvette (France)',1,1,0),(42116,0,142347,'Villemandeur','France','FR','Villemandeur (France)',1,1,0),(42117,0,142348,'Villeneuve-l\'Archeveque','France','FR','Villeneuve-l\'Archeveque (France)',1,1,0),(42118,28866,142349,'Villeneuve-Les-Beziers','France','FR','Villeneuve-Les-Beziers (France)',1,1,0),(42119,0,142350,'Villeneuve-les-Maguelone','France','FR','Villeneuve-les-Maguelone (France)',1,1,0),(42120,0,142351,'Villie-Morgon','France','FR','Villie-Morgon (France)',1,1,0),(42121,0,142352,'Villiers-sur-Suize','France','FR','Villiers-sur-Suize (France)',1,1,0),(42122,28887,142353,'Villingen-Schwenningen','Germany','DE','Villingen-Schwenningen (Germany)',1,1,0),(42123,0,142354,'Villmar','Germany','DE','Villmar (Germany)',1,1,0),(42124,0,142355,'Vilopriu','Spain','ES','Vilopriu (Spain)',1,1,0),(42125,0,142356,'Vinh','Vietnam','VN','Vinh (Vietnam)',1,1,0),(42126,0,142357,'Vir','Croatia','HR','Vir (Croatia)',1,1,0),(42127,0,142358,'Virginia','United States of America','US','Virginia (United States of America)',1,1,0),(42128,28952,142359,'Visalia','United States of America','US','Visalia (United States of America)',1,1,0),(42129,28955,142360,'Visbek','Germany','DE','Visbek (Germany)',1,1,0),(42130,0,142361,'Vizzavona','France','FR','Vizzavona (France)',1,1,0),(42131,28996,142362,'Vizzola Ticino','Italy','IT','Vizzola Ticino (Italy)',1,1,0),(42132,0,142363,'Vlahiana','Greece','GR','Vlahiana (Greece)',1,1,0),(42133,0,142364,'Vlieland Island','Netherlands','NL','Vlieland Island (Netherlands)',1,1,0),(42134,29025,142365,'Vojens','Denmark','DK','Vojens (Denmark)',1,1,0),(42135,0,142366,'Volary','Czech Republic','CZ','Volary (Czech Republic)',1,1,0),(42136,29029,142367,'Volda','Norway','NO','Volda (Norway)',1,1,0),(42137,0,142368,'Volders','Austria','AT','Volders (Austria)',1,1,0),(42138,0,142369,'Volpija','Croatia','HR','Volpija (Croatia)',1,1,0),(42139,29045,142370,'Volterra','Italy','IT','Volterra (Italy)',1,1,0),(42140,29047,142371,'Vomo Island','Fiji Islands','FJ','Vomo Island (Fiji Islands)',1,1,0),(42141,29051,142372,'Voorhees','United States of America','US','Voorhees (United States of America)',1,1,0),(42142,0,142373,'Vorchdorf','Austria','AT','Vorchdorf (Austria)',1,1,0),(42143,0,142374,'Vordernberg','Austria','AT','Vordernberg (Austria)',1,1,0),(42144,29057,142375,'Vorey','France','FR','Vorey (France)',1,1,0),(42145,29062,142376,'Vosendorf','Austria','AT','Vosendorf (Austria)',1,1,0),(42146,29066,142377,'Voss','Norway','NO','Voss (Norway)',1,1,0),(42147,0,142378,'Votsalakia-Kambos','Greece','GR','Votsalakia-Kambos (Greece)',1,1,0),(42148,29074,142379,'Vourvourou','Greece','GR','Vourvourou (Greece)',1,1,0),(42149,0,142380,'Vouvray (Indre-et-Loire)','France','FR','Vouvray (Indre-et-Loire) (France)',1,1,0),(42150,0,142381,'Vreden','Germany','DE','Vreden (Germany)',1,1,0),(42151,29085,142382,'Vreeland','Netherlands','NL','Vreeland (Netherlands)',1,1,0),(42152,0,142383,'Vricko','Slovakia','SK','Vricko (Slovakia)',1,1,0),(42153,0,142384,'Vrontados','Greece','GR','Vrontados (Greece)',1,1,0),(42154,0,142385,'Vrvari','Croatia','HR','Vrvari (Croatia)',1,1,0),(42155,29097,142386,'Vung Tau','Vietnam','VN','Vung Tau (Vietnam)',1,1,0),(42156,0,142387,'Vysne Ruzbachy','Slovakia','SK','Vysne Ruzbachy (Slovakia)',1,1,0),(42157,0,142388,'Vysoke nad Jizerou','Czech Republic','CZ','Vysoke nad Jizerou (Czech Republic)',1,1,0),(42158,29106,142389,'Vytina','Greece','GR','Vytina (Greece)',1,1,0),(42159,0,142390,'Waasmunster','Belgium','BE','Waasmunster (Belgium)',1,1,0),(42160,0,142391,'Wachtendonk','Germany','DE','Wachtendonk (Germany)',1,1,0),(42161,29125,142392,'Wadesboro','United States of America','US','Wadesboro (United States of America)',1,1,0),(42162,0,142393,'Wadesmill','United Kingdom','UK','Wadesmill (United Kingdom)',1,1,0),(42163,29130,142394,'Wadsworth','United States of America','US','Wadsworth (United States of America)',1,1,0),(42164,0,142395,'Waffenrod','Germany','DE','Waffenrod (Germany)',1,1,0),(42165,0,142396,'Waging on Sea','Germany','DE','Waging on Sea (Germany)',1,1,0),(42166,0,142397,'Wagrowiec','Poland','PL','Wagrowiec (Poland)',1,1,0),(42167,0,142398,'Wahlbach','France','FR','Wahlbach (France)',1,1,0),(42168,0,142399,'Wai\'anae','United States of America','US','Wai\'anae (United States of America)',1,1,0),(42169,0,142400,'Witten','Germany','DE','Witten (Germany)',1,1,0),(42170,0,142401,'Wittenheim','France','FR','Wittenheim (France)',1,1,0),(42171,29926,142402,'Wittmund','Germany','DE','Wittmund (Germany)',1,1,0),(42172,0,142403,'Wloszakowice','Poland','PL','Wloszakowice (Poland)',1,1,0),(42173,29931,142404,'Woburn','United States of America','US','Woburn (United States of America)',1,1,0),(42174,0,142405,'Wohlmirstedt','Germany','DE','Wohlmirstedt (Germany)',1,1,0),(42175,0,142406,'Woldegk','Germany','DE','Woldegk (Germany)',1,1,0),(42176,0,142407,'Wolfach','Germany','DE','Wolfach (Germany)',1,1,0),(42177,29945,142408,'Wolfenschiessen','Switzerland','CH','Wolfenschiessen (Switzerland)',1,1,0),(42178,0,142409,'Wolfhalden','Switzerland','CH','Wolfhalden (Switzerland)',1,1,0),(42179,0,142410,'Wolfsberg (Thuringen)','Germany','DE','Wolfsberg (Thuringen) (Germany)',1,1,0),(42180,0,142411,'Wolfsegg am Hausruck','Austria','AT','Wolfsegg am Hausruck (Austria)',1,1,0),(42181,29959,142412,'Wollongong','Australia','AU','Wollongong (Australia)',1,1,0),(42182,29971,142413,'Woodbridge','United States of America','US','Woodbridge (United States of America)',1,1,0),(42183,0,142414,'Woodbridge','United Kingdom','UK','Woodbridge (United Kingdom)',1,1,0),(42184,0,142415,'Woodbridge','United States of America','US','Woodbridge (United States of America)',1,1,0),(42185,29975,142416,'Woodbury','United States of America','US','Woodbury (United States of America)',1,1,0),(42186,29983,142417,'Woodland','United States of America','US','Woodland (United States of America)',1,1,0),(42187,29996,142418,'Woodville','United States of America','US','Woodville (United States of America)',1,1,0),(42188,0,142419,'Worpswede','Germany','DE','Worpswede (Germany)',1,1,0),(42189,0,142420,'Worschach','Austria','AT','Worschach (Austria)',1,1,0),(42190,0,142421,'Worth','Austria','AT','Worth (Austria)',1,1,0),(42191,34193,142422,'Worth','United States of America','US','Worth (United States of America)',1,1,0),(42192,0,142423,'Wrightsville Beach Island','United States of America','US','Wrightsville Beach Island (United States of America)',1,1,0),(42193,30062,142424,'Wujie','Taiwan','TW','Wujie (Taiwan)',1,1,0),(42194,0,142425,'Wulkow bei Trebnitz','Germany','DE','Wulkow bei Trebnitz (Germany)',1,1,0),(42195,0,142426,'Wunstorf','Germany','DE','Wunstorf (Germany)',1,1,0),(42196,30071,142427,'Wuppertal','Germany','DE','Wuppertal (Germany)',1,1,0),(42197,0,142428,'Wurzbach','Germany','DE','Wurzbach (Germany)',1,1,0),(42198,30073,142429,'Wurzburg','Germany','DE','Wurzburg (Germany)',1,1,0),(42199,30076,142430,'Wuxi','China','CN','Wuxi (China)',1,1,0),(42200,0,142431,'Wuxue','China','CN','Wuxue (China)',1,1,0),(42201,0,142432,'Wuzhou','China','CN','Wuzhou (China)',1,1,0),(42202,30092,142433,'Wyoming','United States of America','US','Wyoming (United States of America)',1,1,0),(42203,30095,142434,'Wyong','Australia','AU','Wyong (Australia)',1,1,0),(42204,30096,142435,'Wysox','United States of America','US','Wysox (United States of America)',1,1,0),(42205,0,142436,'Xanthates','Greece','GR','Xanthates (Greece)',1,1,0),(42206,30107,142437,'Xemxija','Malta','MT','Xemxija (Malta)',1,1,0),(42207,30111,142438,'Xiaguan','China','CN','Xiaguan (China)',1,1,0),(42208,0,142439,'Xiangshan','China','CN','Xiangshan (China)',1,1,0),(42209,0,142440,'Xiangyang','China','CN','Xiangyang (China)',1,1,0),(42210,0,142441,'Xigaze','China','CN','Xigaze (China)',1,1,0),(42211,0,142442,'Xinchang','China','CN','Xinchang (China)',1,1,0),(42212,30129,142443,'Xingtai','China','CN','Xingtai (China)',1,1,0),(42213,30130,142444,'Xining','China','CN','Xining (China)',1,1,0),(42214,0,142445,'Xinyi','China','CN','Xinyi (China)',1,1,0),(42215,0,142446,'Xuhui','China','CN','Xuhui (China)',1,1,0),(42216,30145,142447,'Xuzhou','China','CN','Xuzhou (China)',1,1,0),(42217,30149,142448,'Ya\'an','China','CN','Ya\'an (China)',1,1,0),(42218,30150,142449,'Yabucoa','Puerto Rico','PR','Yabucoa (Puerto Rico)',1,1,0),(42219,30160,142450,'Yala','Sri Lanka','LK','Yala (Sri Lanka)',1,1,0),(42220,0,142451,'Yaliciftlik','Turkey','TR','Yaliciftlik (Turkey)',1,1,0),(42221,30180,142452,'Yanakie','Australia','AU','Yanakie (Australia)',1,1,0),(42222,0,142453,'Yangpyeong','South Korea','KR','Yangpyeong (South Korea)',1,1,0),(42223,0,142454,'Yangzhong','China','CN','Yangzhong (China)',1,1,0),(42224,0,142455,'Yanzhou','China','CN','Yanzhou (China)',1,1,0),(42225,0,142456,'Yastrebki','Russia','RU','Yastrebki (Russia)',1,1,0),(42226,0,142457,'Ybbsitz','Austria','AT','Ybbsitz (Austria)',1,1,0),(42227,34198,142458,'Yellowstone National Park','United States of America','US','Yellowstone National Park (United States of America)',1,1,0),(42228,30262,142459,'Yichang','China','CN','Yichang (China)',1,1,0),(42229,30273,142460,'Yiyang','China','CN','Yiyang (China)',1,1,0),(42230,30275,142461,'Yllas','Finland','FI','Yllas (Finland)',1,1,0),(42231,0,142462,'Yngsjo','Sweden','SE','Yngsjo (Sweden)',1,1,0),(42232,30278,142463,'Yogyakarta','Indonesia','ID','Yogyakarta (Indonesia)',1,1,0),(42233,0,142464,'Yongkang','Taiwan','TW','Yongkang (Taiwan)',1,1,0),(42234,0,142465,'York','United States of America','US','York (United States of America)',1,1,0),(42235,0,142466,'Young Island','St. Vincent & the Grenadines','VC','Young Island (St. Vincent & the Grenadines)',1,1,0),(42236,30303,142467,'Youngstown','United States of America','US','Youngstown (United States of America)',1,1,0),(42237,30328,142468,'Yukon','United States of America','US','Yukon (United States of America)',1,1,0),(42238,30332,142469,'Yulin','China','CN','Yulin (China)',1,1,0),(42239,30334,142470,'Yuncheng','China','CN','Yuncheng (China)',1,1,0),(42240,30350,142471,'Yverdon-les-Bains','Switzerland','CH','Yverdon-les-Bains (Switzerland)',1,1,0),(42241,0,142472,'Yvonand','Switzerland','CH','Yvonand (Switzerland)',1,1,0),(42242,0,142473,'Yvoy-le-Marron','France','FR','Yvoy-le-Marron (France)',1,1,0),(42243,0,142474,'Yvre-l\'Eveque','France','FR','Yvre-l\'Eveque (France)',1,1,0),(42244,0,142475,'Yzeure','France','FR','Yzeure (France)',1,1,0),(42245,0,142476,'Zabljak','Montenegro','ME','Zabljak (Montenegro)',1,1,0),(42246,0,142477,'Zacharo','Greece','GR','Zacharo (Greece)',1,1,0),(42247,0,142478,'Zahara de la Sierra','Spain','ES','Zahara de la Sierra (Spain)',1,1,0),(42248,0,142479,'Zambratija','Croatia','HR','Zambratija (Croatia)',1,1,0),(42249,0,142480,'Zambujeira do Mar','Portugal','PT','Zambujeira do Mar (Portugal)',1,1,0),(42250,30400,142481,'Zamora','Mexico','MX','Zamora (Mexico)',1,1,0),(42251,30401,142482,'Zamosc','Poland','PL','Zamosc (Poland)',1,1,0),(42252,30403,142483,'Zandt','Germany','DE','Zandt (Germany)',1,1,0),(42253,0,142484,'Zarnowska','Poland','PL','Zarnowska (Poland)',1,1,0),(42254,30427,142485,'Zdar nad Sazavou','Czech Republic','CZ','Zdar nad Sazavou (Czech Republic)',1,1,0),(42255,30430,142486,'Zebbug','Malta','MT','Zebbug (Malta)',1,1,0),(42256,30433,142487,'Zeegse','Netherlands','NL','Zeegse (Netherlands)',1,1,0),(42257,0,142488,'Zeesen','Germany','DE','Zeesen (Germany)',1,1,0),(42258,0,142489,'Zeewolde','Netherlands','NL','Zeewolde (Netherlands)',1,1,0),(42259,0,142490,'Zelenograd','Russia','RU','Zelenograd (Russia)',1,1,0),(42260,0,142491,'Zella-Mehlis','Germany','DE','Zella-Mehlis (Germany)',1,1,0),(42261,30443,142492,'Zephyr','Canada','CA','Zephyr (Canada)',1,1,0),(42262,30465,142493,'Zhangzhou','China','CN','Zhangzhou (China)',1,1,0),(42263,30466,142494,'Zhanjiang','China','CN','Zhanjiang (China)',1,1,0),(42264,0,142495,'Zheltsy','Russia','RU','Zheltsy (Russia)',1,1,0),(42265,30477,142496,'Zhongli','Taiwan','TW','Zhongli (Taiwan)',1,1,0),(42266,0,142497,'Ziegenhagen','Germany','DE','Ziegenhagen (Germany)',1,1,0),(42267,0,142498,'Zierow','Germany','DE','Zierow (Germany)',1,1,0),(42268,30496,142499,'Zillah','United States of America','US','Zillah (United States of America)',1,1,0),(42269,0,142500,'Zinkovy','Czech Republic','CZ','Zinkovy (Czech Republic)',1,1,0),(42270,0,142501,'Zitkova','Czech Republic','CZ','Zitkova (Czech Republic)',1,1,0),(42271,0,142502,'Zlan','Austria','AT','Zlan (Austria)',1,1,0),(42272,30523,142503,'Zonguldak','Turkey','TR','Zonguldak (Turkey)',1,1,0),(42273,0,142504,'Zorraquin','Spain','ES','Zorraquin (Spain)',1,1,0),(42274,30534,142505,'Zuheros','Spain','ES','Zuheros (Spain)',1,1,0),(42275,0,142506,'Zuid-Beijerland','Netherlands','NL','Zuid-Beijerland (Netherlands)',1,1,0),(42276,0,142507,'Zuidwolde','Netherlands','NL','Zuidwolde (Netherlands)',1,1,0),(42277,0,142508,'Zululand','South Africa','ZA','Zululand (South Africa)',1,1,0),(42278,30542,142509,'Zumbrota','United States of America','US','Zumbrota (United States of America)',1,1,0),(42279,0,142510,'Zupanici','Croatia','HR','Zupanici (Croatia)',1,1,0),(42280,30548,142511,'Zurich','Switzerland','CH','Zurich (Switzerland)',1,1,0),(42281,0,142512,'Zuschen','Germany','DE','Zuschen (Germany)',1,1,0),(42282,0,142513,'Zwischenwasser','Austria','AT','Zwischenwasser (Austria)',1,1,0),(42283,0,142514,'Val d\'Ajol','France','FR','Val d\'Ajol (France)',1,1,0),(42284,0,142515,'Valderrobres','Spain','ES','Valderrobres (Spain)',1,1,0),(42285,28347,142516,'Valdosta','United States of America','US','Valdosta (United States of America)',1,1,0),(42286,0,142517,'Valenca do Minho','Portugal','PT','Valenca do Minho (Portugal)',1,1,0),(42287,0,142518,'Valencia d\'Aneu','Spain','ES','Valencia d\'Aneu (Spain)',1,1,0),(42288,0,142519,'Valentia Island','Ireland','IE','Valentia Island (Ireland)',1,1,0),(42289,0,142520,'Valenzano','Italy','IT','Valenzano (Italy)',1,1,0),(42290,28366,142521,'Valeria','Spain','ES','Valeria (Spain)',1,1,0),(42291,0,142522,'Valfurva','Italy','IT','Valfurva (Italy)',1,1,0),(42292,0,142523,'Valgrisenche','Italy','IT','Valgrisenche (Italy)',1,1,0),(42293,28377,142524,'Valladolid','Mexico','MX','Valladolid (Mexico)',1,1,0),(42294,0,142525,'Valros','France','FR','Valros (France)',1,1,0),(42295,0,142526,'Vals GR','Switzerland','CH','Vals GR (Switzerland)',1,1,0),(42296,28420,142527,'Valverde','Italy','IT','Valverde (Italy)',1,1,0),(42297,0,142528,'Valverde del Camino','Spain','ES','Valverde del Camino (Spain)',1,1,0),(42298,33944,142529,'Van','Turkey','TR','Van (Turkey)',1,1,0),(42299,33945,142530,'Van Buren','United States of America','US','Van Buren (United States of America)',1,1,0),(42300,33947,142531,'Van Nuys','United States of America','US','Van Nuys (United States of America)',1,1,0),(42301,28434,142532,'Vandre','France','FR','Vandre (France)',1,1,0),(42302,0,142533,'Vanrhynsdorp','South Africa','ZA','Vanrhynsdorp (South Africa)',1,1,0),(42303,0,142534,'Varades','France','FR','Varades (France)',1,1,0),(42304,0,142535,'Varallo Pombia','Italy','IT','Varallo Pombia (Italy)',1,1,0),(42305,0,142536,'Varano de\' Melegari','Italy','IT','Varano de\' Melegari (Italy)',1,1,0),(42306,28450,142537,'Varazdin','Croatia','HR','Varazdin (Croatia)',1,1,0),(42307,28451,142538,'Varazze','Italy','IT','Varazze (Italy)',1,1,0),(42308,28463,142539,'Varese','Italy','IT','Varese (Italy)',1,1,0),(42309,28468,142540,'Varkaus','Finland','FI','Varkaus (Finland)',1,1,0),(42310,0,142541,'Varko Pogonias','Greece','GR','Varko Pogonias (Greece)',1,1,0),(42311,0,142542,'Vasad','Hungary','HU','Vasad (Hungary)',1,1,0),(42312,28482,142543,'Vaslui','Romania','RO','Vaslui (Romania)',1,1,0),(42313,0,142544,'Vassilias','Greece','GR','Vassilias (Greece)',1,1,0),(42314,0,142545,'Vatnsdalur','Iceland','IS','Vatnsdalur (Iceland)',1,1,0),(42315,0,142546,'Vatos','Greece','GR','Vatos (Greece)',1,1,0),(42316,0,142547,'Vatsa','Greece','GR','Vatsa (Greece)',1,1,0),(42317,28495,142548,'Vattaro','Italy','IT','Vattaro (Italy)',1,1,0),(42318,0,142549,'Vaulnaveys-le-Haut','France','FR','Vaulnaveys-le-Haut (France)',1,1,0),(42319,28505,142550,'Vaulx-en-Velin','France','FR','Vaulx-en-Velin (France)',1,1,0),(42320,0,142551,'Veendam','Netherlands','NL','Veendam (Netherlands)',1,1,0),(42321,28527,142552,'Vejen','Denmark','DK','Vejen (Denmark)',1,1,0),(42322,28535,142553,'Velden','Austria','AT','Velden (Austria)',1,1,0),(42323,0,142554,'Velehrad','Czech Republic','CZ','Velehrad (Czech Republic)',1,1,0),(42324,28545,142555,'Veliko Tarnovo','Bulgaria','BG','Veliko Tarnovo (Bulgaria)',1,1,0),(42325,0,142556,'Vencimont','Belgium','BE','Vencimont (Belgium)',1,1,0),(42326,28565,142557,'Vendays-Montalivet','France','FR','Vendays-Montalivet (France)',1,1,0),(42327,0,142558,'Vendoire','France','FR','Vendoire (France)',1,1,0),(42328,0,142559,'Venice Beach','United States of America','US','Venice Beach (United States of America)',1,1,0),(42329,0,142560,'Venise-en-Quebec','Canada','CA','Venise-en-Quebec (Canada)',1,1,0),(42330,0,142561,'Ventiseri','France','FR','Ventiseri (France)',1,1,0),(42331,28588,142562,'Ventron','France','FR','Ventron (France)',1,1,0),(42332,28610,142564,'Vergennes','United States of America','US','Vergennes (United States of America)',1,1,0),(42333,28611,142565,'Vergiate','Italy','IT','Vergiate (Italy)',1,1,0),(42334,28616,142566,'Vermezzo','Italy','IT','Vermezzo (Italy)',1,1,0),(42335,28623,142567,'Vernantois','France','FR','Vernantois (France)',1,1,0),(42336,28639,142568,'Versailles','France','FR','Versailles (France)',1,1,0),(42337,28641,142569,'Versoix','Switzerland','CH','Versoix (Switzerland)',1,1,0),(42338,28649,142570,'Vervins','France','FR','Vervins (France)',1,1,0),(42339,0,142571,'Veurne','Belgium','BE','Veurne (Belgium)',1,1,0),(42340,28671,142572,'Veysonnaz','Switzerland','CH','Veysonnaz (Switzerland)',1,1,0),(42341,28687,142573,'Vicchio','Italy','IT','Vicchio (Italy)',1,1,0),(42342,28690,142574,'Vicente Lopez','Argentina','AR','Vicente Lopez (Argentina)',1,1,0),(42343,28699,142575,'Victor','United States of America','US','Victor (United States of America)',1,1,0),(42344,0,142576,'Victor','United States of America','US','Victor (United States of America)',1,1,0),(42345,28718,142577,'Viechtach','Germany','DE','Viechtach (Germany)',1,1,0),(42346,0,142578,'Viehhofen','Austria','AT','Viehhofen (Austria)',1,1,0),(42347,0,142579,'Vientiane','LAOS','LA','Vientiane (LAOS)',1,1,0),(42348,0,142580,'Viersen','Germany','DE','Viersen (Germany)',1,1,0),(42349,28740,142581,'Vieux Fort','Saint Lucia','LC','Vieux Fort (Saint Lucia)',1,1,0),(42350,0,142582,'Vieux-Villez','France','FR','Vieux-Villez (France)',1,1,0),(42351,28751,142583,'Vignec','France','FR','Vignec (France)',1,1,0),(42352,0,142584,'Vignieu','France','FR','Vignieu (France)',1,1,0),(42353,33965,142585,'Vik','Norway','NO','Vik (Norway)',1,1,0),(42354,33969,142586,'Vila do Bispo','Portugal','PT','Vila do Bispo (Portugal)',1,1,0),(42355,33970,142587,'Vila do Conde','Portugal','PT','Vila do Conde (Portugal)',1,1,0),(42356,0,142588,'Vila Ruiva','Portugal','PT','Vila Ruiva (Portugal)',1,1,0),(42357,0,142589,'Vilalonga','Spain','ES','Vilalonga (Spain)',1,1,0),(42358,0,142590,'Vila-Nova','Portugal','PT','Vila-Nova (Portugal)',1,1,0),(42359,0,142591,'Vilanova de Arousa','Spain','ES','Vilanova de Arousa (Spain)',1,1,0),(42360,0,142592,'Vilar Formoso','Portugal','PT','Vilar Formoso (Portugal)',1,1,0),(42361,0,142593,'Vilingili','Maldives','MV','Vilingili (Maldives)',1,1,0),(42362,0,142594,'Villa Gesell','Argentina','AR','Villa Gesell (Argentina)',1,1,0),(42363,0,142595,'Villa Giardino','Argentina','AR','Villa Giardino (Argentina)',1,1,0),(42364,0,142596,'Villablanca','Spain','ES','Villablanca (Spain)',1,1,0),(42365,28795,142597,'Villach','Austria','AT','Villach (Austria)',1,1,0),(42366,28806,142598,'Villajoyosa','Spain','ES','Villajoyosa (Spain)',1,1,0),(42367,0,142599,'Villanueva de Arosa','Spain','ES','Villanueva de Arosa (Spain)',1,1,0),(42368,0,142600,'Villanueva de Tapia','Spain','ES','Villanueva de Tapia (Spain)',1,1,0),(42369,0,142601,'Villanueva del Arzobispo','Spain','ES','Villanueva del Arzobispo (Spain)',1,1,0),(42370,0,142602,'Villanuvea de los Infantes','Spain','ES','Villanuvea de los Infantes (Spain)',1,1,0),(42371,28827,142603,'Villar-d\'Arene','France','FR','Villar-d\'Arene (France)',1,1,0),(42372,28828,142604,'Villard-de-Lans','France','FR','Villard-de-Lans (France)',1,1,0),(42373,0,142605,'Villares de la Reina','Spain','ES','Villares de la Reina (Spain)',1,1,0),(42374,0,142606,'Villaricca','Italy','IT','Villaricca (Italy)',1,1,0),(42375,28840,142607,'Villasimius','Italy','IT','Villasimius (Italy)',1,1,0),(42376,0,142608,'Villatoya','Spain','ES','Villatoya (Spain)',1,1,0),(42377,28845,142609,'Villaviciosa','Spain','ES','Villaviciosa (Spain)',1,1,0),(42378,0,142610,'Ville Platte','United States of America','US','Ville Platte (United States of America)',1,1,0),(42379,0,142611,'Villecroze','France','FR','Villecroze (France)',1,1,0),(42380,28852,142612,'Villefontaine','France','FR','Villefontaine (France)',1,1,0),(42381,0,142613,'Villeneuve-de-Marsan','France','FR','Villeneuve-de-Marsan (France)',1,1,0),(42382,28875,142614,'Villereal','France','FR','Villereal (France)',1,1,0),(42383,0,142615,'Villers-Bocage','France','FR','Villers-Bocage (France)',1,1,0),(42384,28891,142616,'Villy-le-Pelloux','France','FR','Villy-le-Pelloux (France)',1,1,0),(42385,28893,142617,'Vilpiano','Italy','IT','Vilpiano (Italy)',1,1,0),(42386,0,142618,'Vilshofen','Germany','DE','Vilshofen (Germany)',1,1,0),(42387,28900,142619,'Vina del Mar','Chile','CL','Vina del Mar (Chile)',1,1,0),(42388,28901,142620,'Vinales','Cuba','CU','Vinales (Cuba)',1,1,0),(42389,0,142621,'Vinaroz','Spain','ES','Vinaroz (Spain)',1,1,0),(42390,0,142622,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(42391,29312,142623,'Warrenton','United States of America','US','Warrenton (United States of America)',1,1,0),(42392,29317,142624,'Warrnambool','Australia','AU','Warrnambool (Australia)',1,1,0),(42393,0,142625,'Warwick','United Kingdom','UK','Warwick (United Kingdom)',1,1,0),(42394,29329,142626,'Warwick','Bermuda','BM','Warwick (Bermuda)',1,1,0),(42395,0,142627,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42396,0,142628,'Washington D.C.','United States of America','US','Washington D.C. (United States of America)',1,1,0),(42397,0,142629,'Waterton','United States of America','US','Waterton (United States of America)',1,1,0),(42398,0,142630,'Waterton Park','Canada','CA','Waterton Park (Canada)',1,1,0),(42399,0,142631,'Watertown','United States of America','US','Watertown (United States of America)',1,1,0),(42400,29382,142632,'Watseka','United States of America','US','Watseka (United States of America)',1,1,0),(42401,29388,142633,'Wattens','Austria','AT','Wattens (Austria)',1,1,0),(42402,29396,142634,'Waukegan','United States of America','US','Waukegan (United States of America)',1,1,0),(42403,0,142635,'Waxweiler','Germany','DE','Waxweiler (Germany)',1,1,0),(42404,0,142636,'Weener','Germany','DE','Weener (Germany)',1,1,0),(42405,0,142637,'Wegscheid','Germany','DE','Wegscheid (Germany)',1,1,0),(42406,0,142638,'Weiden in der Oberpfalz','Germany','DE','Weiden in der Oberpfalz (Germany)',1,1,0),(42407,0,142639,'Weiding bei Oberviechtach','Germany','DE','Weiding bei Oberviechtach (Germany)',1,1,0),(42408,0,142640,'Weilerbach','Germany','DE','Weilerbach (Germany)',1,1,0),(42409,0,142641,'Weilerbach','Luxembourg','LU','Weilerbach (Luxembourg)',1,1,0),(42410,0,142642,'Weisendorf','Germany','DE','Weisendorf (Germany)',1,1,0),(42411,0,142643,'Wei?bach bei Lofer','Austria','AT','Wei?bach bei Lofer (Austria)',1,1,0),(42412,29469,142644,'Weissenburg','Germany','DE','Weissenburg (Germany)',1,1,0),(42413,0,142645,'Wei?enfels','Germany','DE','Wei?enfels (Germany)',1,1,0),(42414,29474,142646,'Weisswasser','Germany','DE','Weisswasser (Germany)',1,1,0),(42415,29479,142647,'Weldon','United States of America','US','Weldon (United States of America)',1,1,0),(42416,0,142648,'Weligama','Sri Lanka','LK','Weligama (Sri Lanka)',1,1,0),(42417,29482,142649,'Welland','Canada','CA','Welland (Canada)',1,1,0),(42418,0,142650,'Wellingborough','United Kingdom','UK','Wellingborough (United Kingdom)',1,1,0),(42419,0,142651,'Wembdon','United Kingdom','UK','Wembdon (United Kingdom)',1,1,0),(42420,0,142652,'Wendisch-Rietz','Germany','DE','Wendisch-Rietz (Germany)',1,1,0),(42421,0,142653,'Wenling','China','CN','Wenling (China)',1,1,0),(42422,29511,142654,'Wenningstedt','Germany','DE','Wenningstedt (Germany)',1,1,0),(42423,29516,142655,'Wentworth','Australia','AU','Wentworth (Australia)',1,1,0),(42424,29522,142656,'Werl','Germany','DE','Werl (Germany)',1,1,0),(42425,29523,142657,'Wernau','Germany','DE','Wernau (Germany)',1,1,0),(42426,29529,142658,'Werribee','Australia','AU','Werribee (Australia)',1,1,0),(42427,0,142659,'Wershofen','Germany','DE','Wershofen (Germany)',1,1,0),(42428,0,142660,'Werther','Germany','DE','Werther (Germany)',1,1,0),(42429,0,142661,'Werther (Westf.)','Germany','DE','Werther (Westf.) (Germany)',1,1,0),(42430,0,142662,'West Bromwich','United Kingdom','UK','West Bromwich (United Kingdom)',1,1,0),(42431,0,142663,'West Chester','United States of America','US','West Chester (United States of America)',1,1,0),(42432,29543,142664,'West End Village','Anguilla','AI','West End Village (Anguilla)',1,1,0),(42433,34066,142665,'West Forks','United States of America','US','West Forks (United States of America)',1,1,0),(42434,34076,142666,'West Haven','United States of America','US','West Haven (United States of America)',1,1,0),(42435,34080,142667,'West Helena','United States of America','US','West Helena (United States of America)',1,1,0),(42436,34109,142668,'West Monroe','United States of America','US','West Monroe (United States of America)',1,1,0),(42437,0,142669,'West Point','United States of America','US','West Point (United States of America)',1,1,0),(42438,34127,142670,'West Seneca','United States of America','US','West Seneca (United States of America)',1,1,0),(42439,34144,142671,'West Wendover','United States of America','US','West Wendover (United States of America)',1,1,0),(42440,0,142672,'Westbrook','United States of America','US','Westbrook (United States of America)',1,1,0),(42441,29550,142673,'Westbury','Australia','AU','Westbury (Australia)',1,1,0),(42442,0,142674,'Westerholz','Germany','DE','Westerholz (Germany)',1,1,0),(42443,29568,142675,'Westerlo','Belgium','BE','Westerlo (Belgium)',1,1,0),(42444,29579,142676,'Westfield','United States of America','US','Westfield (United States of America)',1,1,0),(42445,29593,142677,'Westminster','United States of America','US','Westminster (United States of America)',1,1,0),(42446,0,142678,'Westoverledingen','Germany','DE','Westoverledingen (Germany)',1,1,0),(42447,29609,142679,'Westport','Ireland','IE','Westport (Ireland)',1,1,0),(42448,0,142680,'Westpunt','Curaçao','CW','Westpunt (Curaçao)',1,1,0),(42449,0,142681,'Wetzikon','Switzerland','CH','Wetzikon (Switzerland)',1,1,0),(42450,29636,142682,'Weyhe','Germany','DE','Weyhe (Germany)',1,1,0),(42451,0,142683,'Weyregg','Austria','AT','Weyregg (Austria)',1,1,0),(42452,29648,142684,'Wharton','United States of America','US','Wharton (United States of America)',1,1,0),(42453,29653,142685,'Wheatley','United States of America','US','Wheatley (United States of America)',1,1,0),(42454,29656,142686,'Wheelersburg','United States of America','US','Wheelersburg (United States of America)',1,1,0),(42455,0,142687,'Wheeling','United States of America','US','Wheeling (United States of America)',1,1,0),(42456,34152,142688,'White Bear Lake','United States of America','US','White Bear Lake (United States of America)',1,1,0),(42457,29684,142689,'Whitehouse','Jamaica','JM','Whitehouse (Jamaica)',1,1,0),(42458,0,142690,'Whitford','New Zealand','NZ','Whitford (New Zealand)',1,1,0),(42459,0,142691,'Whittier','United States of America','US','Whittier (United States of America)',1,1,0),(42460,29715,142692,'Wickerode','Germany','DE','Wickerode (Germany)',1,1,0),(42461,0,142693,'Widecombe-in-the-Moor','United Kingdom','UK','Widecombe-in-the-Moor (United Kingdom)',1,1,0),(42462,0,142694,'Wieck','Germany','DE','Wieck (Germany)',1,1,0),(42463,29724,142695,'Wielki Gleboczek','Poland','PL','Wielki Gleboczek (Poland)',1,1,0),(42464,29729,142696,'Wierre-Effroy','France','FR','Wierre-Effroy (France)',1,1,0),(42465,0,142697,'Wiesemscheid','Germany','DE','Wiesemscheid (Germany)',1,1,0),(42466,0,142698,'Wietmarschen','Germany','DE','Wietmarschen (Germany)',1,1,0),(42467,0,142699,'Wigton','United Kingdom','UK','Wigton (United Kingdom)',1,1,0),(42468,29752,142700,'Wildersville','United States of America','US','Wildersville (United States of America)',1,1,0),(42469,0,142701,'Wildon','Austria','AT','Wildon (Austria)',1,1,0),(42470,0,142702,'Wilgartswiesen','Germany','DE','Wilgartswiesen (Germany)',1,1,0),(42471,29766,142703,'Willcox','United States of America','US','Willcox (United States of America)',1,1,0),(42472,0,142704,'Williams','United States of America','US','Williams (United States of America)',1,1,0),(42473,0,142705,'Williams Lake','Canada','CA','Williams Lake (Canada)',1,1,0),(42474,29789,142706,'Willis','United States of America','US','Willis (United States of America)',1,1,0),(42475,29793,142707,'Willmar','United States of America','US','Willmar (United States of America)',1,1,0),(42476,0,142708,'Willow Grove','United States of America','US','Willow Grove (United States of America)',1,1,0),(42477,0,142709,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(42478,0,142710,'Wilmot','Australia','AU','Wilmot (Australia)',1,1,0),(42479,0,142711,'Wilson','United States of America','US','Wilson (United States of America)',1,1,0),(42480,29813,142712,'Wilson Island','Australia','AU','Wilson Island (Australia)',1,1,0),(42481,0,142713,'Wilson\'s Promontory','Australia','AU','Wilson\'s Promontory (Australia)',1,1,0),(42482,0,142714,'Wilster','Germany','DE','Wilster (Germany)',1,1,0),(42483,0,142715,'Winchester','United States of America','US','Winchester (United States of America)',1,1,0),(42484,0,142716,'Winchmore Hill','United Kingdom','UK','Winchmore Hill (United Kingdom)',1,1,0),(42485,29831,142717,'Wind Gap','United States of America','US','Wind Gap (United States of America)',1,1,0),(42486,0,142718,'Windelsbach','Germany','DE','Windelsbach (Germany)',1,1,0),(42487,0,142719,'Winden im Elztal','Germany','DE','Winden im Elztal (Germany)',1,1,0),(42488,29843,142720,'Windom','United States of America','US','Windom (United States of America)',1,1,0),(42489,0,142721,'Winnyzja','Ukraine','UA','Winnyzja (Ukraine)',1,1,0),(42490,0,142722,'Winsley','United Kingdom','UK','Winsley (United Kingdom)',1,1,0),(42491,29877,142723,'Wintergreen','United States of America','US','Wintergreen (United States of America)',1,1,0),(42492,0,142724,'Wipperfurth','Germany','DE','Wipperfurth (Germany)',1,1,0),(42493,0,142725,'Wissenkerke','Netherlands','NL','Wissenkerke (Netherlands)',1,1,0),(42494,0,142726,'Wizebsk','Belarus','BY','Wizebsk (Belarus)',1,1,0),(42495,29933,142727,'Woerden','Netherlands','NL','Woerden (Netherlands)',1,1,0),(42496,0,142728,'Wohlsborn','Germany','DE','Wohlsborn (Germany)',1,1,0),(42497,28986,142729,'Vitznau','Switzerland','CH','Vitznau (Switzerland)',1,1,0),(42498,28989,142730,'Viviers-du-Lac','France','FR','Viviers-du-Lac (France)',1,1,0),(42499,28990,142731,'Vivoin','France','FR','Vivoin (France)',1,1,0),(42500,0,142732,'Vix','France','FR','Vix (France)',1,1,0),(42501,0,142733,'Viznar','Spain','ES','Viznar (Spain)',1,1,0),(42502,0,142734,'Vlezenbeek','Belgium','BE','Vlezenbeek (Belgium)',1,1,0),(42503,29021,142735,'Voiron','France','FR','Voiron (France)',1,1,0),(42504,0,142736,'Volkenschwand','Germany','DE','Volkenschwand (Germany)',1,1,0),(42505,0,142737,'Volkse','Germany','DE','Volkse (Germany)',1,1,0),(42506,29038,142738,'Volla','Italy','IT','Volla (Italy)',1,1,0),(42507,29039,142739,'Vollore-Ville','France','FR','Vollore-Ville (France)',1,1,0),(42508,0,142740,'Volzhsky','Russia','RU','Volzhsky (Russia)',1,1,0),(42509,0,142741,'Vonore','United States of America','US','Vonore (United States of America)',1,1,0),(42510,0,142742,'Vonyarcvashegy','Hungary','HU','Vonyarcvashegy (Hungary)',1,1,0),(42511,0,142743,'Voorthuizen','Netherlands','NL','Voorthuizen (Netherlands)',1,1,0),(42512,0,142744,'Vorno','Italy','IT','Vorno (Italy)',1,1,0),(42513,0,142745,'Votsi','Greece','GR','Votsi (Greece)',1,1,0),(42514,29072,142746,'Vouliagmeni','Greece','GR','Vouliagmeni (Greece)',1,1,0),(42515,0,142747,'Vrane Nad Vltavou','Czech Republic','CZ','Vrane Nad Vltavou (Czech Republic)',1,1,0),(42516,0,142748,'Vranje','Serbia','RS','Vranje (Serbia)',1,1,0),(42517,0,142749,'Vratislavice nad Nisou','Czech Republic','CZ','Vratislavice nad Nisou (Czech Republic)',1,1,0),(42518,0,142750,'Vrbice','Czech Republic','CZ','Vrbice (Czech Republic)',1,1,0),(42519,0,142751,'Vrdnik','Serbia','RS','Vrdnik (Serbia)',1,1,0),(42520,0,142752,'Vredehoek','South Africa','ZA','Vredehoek (South Africa)',1,1,0),(42521,0,142753,'Vrhnika','Slovenia','SI','Vrhnika (Slovenia)',1,1,0),(42522,0,142754,'Vroenhoven','Belgium','BE','Vroenhoven (Belgium)',1,1,0),(42523,0,142755,'Vrsi','Croatia','HR','Vrsi (Croatia)',1,1,0),(42524,0,142756,'Vsemina Zlin','Czech Republic','CZ','Vsemina Zlin (Czech Republic)',1,1,0),(42525,0,142757,'Vue-des-Alpes','Switzerland','CH','Vue-des-Alpes (Switzerland)',1,1,0),(42526,0,142758,'Vyshny Volochyok','Russia','RU','Vyshny Volochyok (Russia)',1,1,0),(42527,29111,142759,'Wabash','United States of America','US','Wabash (United States of America)',1,1,0),(42528,0,142760,'Waglikowice','Poland','PL','Waglikowice (Poland)',1,1,0),(42529,0,142761,'Wahlsburg','Germany','DE','Wahlsburg (Germany)',1,1,0),(42530,29141,142762,'Wahpeton','United States of America','US','Wahpeton (United States of America)',1,1,0),(42531,0,142763,'Waiau','New Zealand','NZ','Waiau (New Zealand)',1,1,0),(42532,0,142764,'Waigeo Island','Indonesia','ID','Waigeo Island (Indonesia)',1,1,0),(42533,29154,142765,'Waiheke Island','New Zealand','NZ','Waiheke Island (New Zealand)',1,1,0),(42534,0,142766,'Wakefiled','United States of America','US','Wakefiled (United States of America)',1,1,0),(42535,0,142767,'Wakkerstroom','South Africa','ZA','Wakkerstroom (South Africa)',1,1,0),(42536,0,142768,'Walchensee','Germany','DE','Walchensee (Germany)',1,1,0),(42537,29185,142769,'Walchsee','Austria','AT','Walchsee (Austria)',1,1,0),(42538,29190,142770,'Waldeck','Germany','DE','Waldeck (Germany)',1,1,0),(42539,0,142771,'Waldheim','Germany','DE','Waldheim (Germany)',1,1,0),(42540,29193,142772,'Waldkirch','Germany','DE','Waldkirch (Germany)',1,1,0),(42541,29198,142773,'Waldoboro','United States of America','US','Waldoboro (United States of America)',1,1,0),(42542,0,142774,'Walkington','United Kingdom','UK','Walkington (United Kingdom)',1,1,0),(42543,29212,142775,'Wallace','Canada','CA','Wallace (Canada)',1,1,0),(42544,29215,142776,'Walland','United States of America','US','Walland (United States of America)',1,1,0),(42545,0,142777,'Walldorf (Baden)','Germany','DE','Walldorf (Baden) (Germany)',1,1,0),(42546,0,142778,'Walnut Creek','United States of America','US','Walnut Creek (United States of America)',1,1,0),(42547,29232,142779,'Walpole','United States of America','US','Walpole (United States of America)',1,1,0),(42548,0,142780,'Walsrode-Hunzingen','Germany','DE','Walsrode-Hunzingen (Germany)',1,1,0),(42549,29239,142781,'Waltenhofen','Germany','DE','Waltenhofen (Germany)',1,1,0),(42550,29240,142782,'Walterboro','United States of America','US','Walterboro (United States of America)',1,1,0),(42551,29242,142783,'Waltham','United States of America','US','Waltham (United States of America)',1,1,0),(42552,0,142784,'Waltrop','Germany','DE','Waltrop (Germany)',1,1,0),(42553,0,142785,'Wanderup','Germany','DE','Wanderup (Germany)',1,1,0),(42554,0,142786,'Wangenbourg','France','FR','Wangenbourg (France)',1,1,0),(42555,29266,142787,'Wanning','China','CN','Wanning (China)',1,1,0),(42556,0,142788,'Wantage','United Kingdom','UK','Wantage (United Kingdom)',1,1,0),(42557,0,142789,'Wanzleben','Germany','DE','Wanzleben (Germany)',1,1,0),(42558,0,142790,'Wapse','Netherlands','NL','Wapse (Netherlands)',1,1,0),(42559,0,142791,'Warchaly','Poland','PL','Warchaly (Poland)',1,1,0),(42560,0,142792,'Wardenburg','Germany','DE','Wardenburg (Germany)',1,1,0),(42561,29291,142793,'Warfordsburg','United States of America','US','Warfordsburg (United States of America)',1,1,0),(42562,0,142794,'Warin','Germany','DE','Warin (Germany)',1,1,0),(42563,29296,142795,'Warm Springs','United States of America','US','Warm Springs (United States of America)',1,1,0),(42564,0,142796,'Warmbad','Austria','AT','Warmbad (Austria)',1,1,0),(42565,0,142797,'Warner','United States of America','US','Warner (United States of America)',1,1,0),(42566,29302,142798,'Warners Bay','Australia','AU','Warners Bay (Australia)',1,1,0),(42567,0,142799,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(42568,29310,142800,'Warrensburg','United States of America','US','Warrensburg (United States of America)',1,1,0),(42569,0,142801,'Warrenton','United States of America','US','Warrenton (United States of America)',1,1,0),(42570,0,142802,'Waschleithe','Germany','DE','Waschleithe (Germany)',1,1,0),(42571,29333,142803,'Wasco','United States of America','US','Wasco (United States of America)',1,1,0),(42572,0,142804,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42573,0,142805,'Wateren','Netherlands','NL','Wateren (Netherlands)',1,1,0),(42574,0,142806,'Waterside','United Kingdom','UK','Waterside (United Kingdom)',1,1,0),(42575,0,142807,'Waterval Boven','South Africa','ZA','Waterval Boven (South Africa)',1,1,0),(42576,0,142808,'Waterville','United States of America','US','Waterville (United States of America)',1,1,0),(42577,0,142809,'Wattwiller','France','FR','Wattwiller (France)',1,1,0),(42578,29399,142810,'Waunakee','United States of America','US','Waunakee (United States of America)',1,1,0),(42579,29407,142811,'Waveland','United States of America','US','Waveland (United States of America)',1,1,0),(42580,0,142812,'Wayne','United States of America','US','Wayne (United States of America)',1,1,0),(42581,0,142813,'Weatherford','United States of America','US','Weatherford (United States of America)',1,1,0),(42582,29421,142814,'Weathersfield','United States of America','US','Weathersfield (United States of America)',1,1,0),(42583,29430,142815,'Wedendorf','Germany','DE','Wedendorf (Germany)',1,1,0),(42584,0,142816,'Weedon Bec','United Kingdom','UK','Weedon Bec (United Kingdom)',1,1,0),(42585,29439,142817,'Weerberg','Austria','AT','Weerberg (Austria)',1,1,0),(42586,29441,142818,'Weesen','Switzerland','CH','Weesen (Switzerland)',1,1,0),(42587,0,142819,'Weibersbrunn','Germany','DE','Weibersbrunn (Germany)',1,1,0),(42588,0,142820,'Weichering','Germany','DE','Weichering (Germany)',1,1,0),(42589,0,142821,'Weida','Germany','DE','Weida (Germany)',1,1,0),(42590,29445,142822,'Weiding','Germany','DE','Weiding (Germany)',1,1,0),(42591,29450,142823,'Weilburg','Germany','DE','Weilburg (Germany)',1,1,0),(42592,0,142824,'Weissenbach an der Triesting','Austria','AT','Weissenbach an der Triesting (Austria)',1,1,0),(42593,0,142825,'Wei?enhorn','Germany','DE','Wei?enhorn (Germany)',1,1,0),(42594,0,142826,'Weisskirchen','Austria','AT','Weisskirchen (Austria)',1,1,0),(42595,29476,142827,'Weiz','Austria','AT','Weiz (Austria)',1,1,0),(42596,0,142828,'Wellington','United States of America','US','Wellington (United States of America)',1,1,0),(42597,0,142829,'Wells','Canada','CA','Wells (Canada)',1,1,0),(42598,29505,142830,'Wenchang','China','CN','Wenchang (China)',1,1,0),(42599,29507,142831,'Wendeburg','Germany','DE','Wendeburg (Germany)',1,1,0),(42600,0,142832,'Wendelstein','Germany','DE','Wendelstein (Germany)',1,1,0),(42601,0,142833,'Wendorf','Germany','DE','Wendorf (Germany)',1,1,0),(42602,29509,142834,'Wendover','United States of America','US','Wendover (United States of America)',1,1,0),(42603,0,142835,'Wenshan','China','CN','Wenshan (China)',1,1,0),(42604,0,142836,'Wermsdorf','Germany','DE','Wermsdorf (Germany)',1,1,0),(42605,29525,142837,'Werne','Germany','DE','Werne (Germany)',1,1,0),(42606,29527,142838,'Wernigerode','Germany','DE','Wernigerode (Germany)',1,1,0),(42607,0,142839,'Wernstein','Austria','AT','Wernstein (Austria)',1,1,0),(42608,0,142840,'Wertingen','Germany','DE','Wertingen (Germany)',1,1,0),(42609,0,142841,'Windsor','Canada','CA','Windsor (Canada)',1,1,0),(42610,0,142842,'Windsor','Australia','AU','Windsor (Australia)',1,1,0),(42611,0,142843,'Wingerode','Germany','DE','Wingerode (Germany)',1,1,0),(42612,29856,142844,'Winkler','Canada','CA','Winkler (Canada)',1,1,0),(42613,0,142845,'Winklern bei (by)Treffen','Austria','AT','Winklern bei (by)Treffen (Austria)',1,1,0),(42614,0,142846,'Winnebach by Innichen','Italy','IT','Winnebach by Innichen (Italy)',1,1,0),(42615,29860,142847,'Winnenden','Germany','DE','Winnenden (Germany)',1,1,0),(42616,29868,142848,'Winona','United States of America','US','Winona (United States of America)',1,1,0),(42617,29872,142849,'Winslow','United States of America','US','Winslow (United States of America)',1,1,0),(42618,0,142850,'Winston-Salem','United States of America','US','Winston-Salem (United States of America)',1,1,0),(42619,29874,142851,'Winterbach','Germany','DE','Winterbach (Germany)',1,1,0),(42620,29875,142852,'Winterberg','Germany','DE','Winterberg (Germany)',1,1,0),(42621,29882,142853,'Winterswijk','Netherlands','NL','Winterswijk (Netherlands)',1,1,0),(42622,29898,142854,'Wisconsin Dells','United States of America','US','Wisconsin Dells (United States of America)',1,1,0),(42623,0,142855,'Wishaw','United Kingdom','UK','Wishaw (United Kingdom)',1,1,0),(42624,29920,142856,'Wittenberg','Germany','DE','Wittenberg (Germany)',1,1,0),(42625,0,142857,'Wittersdorf','France','FR','Wittersdorf (France)',1,1,0),(42626,29925,142858,'Wittlich','Germany','DE','Wittlich (Germany)',1,1,0),(42627,0,142859,'Witzenhausen','Germany','DE','Witzenhausen (Germany)',1,1,0),(42628,29928,142860,'Wixom','United States of America','US','Wixom (United States of America)',1,1,0),(42629,0,142861,'Wladimir','Russia','RU','Wladimir (Russia)',1,1,0),(42630,0,142862,'Wloszczowa','Poland','PL','Wloszczowa (Poland)',1,1,0),(42631,0,142863,'Woblitzsee','Germany','DE','Woblitzsee (Germany)',1,1,0),(42632,29934,142864,'Woippy','France','FR','Woippy (France)',1,1,0),(42633,0,142865,'Wolfratshausen','Germany','DE','Wolfratshausen (Germany)',1,1,0),(42634,0,142866,'Wolfstein','Germany','DE','Wolfstein (Germany)',1,1,0),(42635,29961,142867,'Wolnzach','Germany','DE','Wolnzach (Germany)',1,1,0),(42636,0,142868,'Woodbury','United States of America','US','Woodbury (United States of America)',1,1,0),(42637,29981,142869,'Woodhaven','United States of America','US','Woodhaven (United States of America)',1,1,0),(42638,0,142870,'Woodland Park','United States of America','US','Woodland Park (United States of America)',1,1,0),(42639,34191,142871,'Woods Cross','United States of America','US','Woods Cross (United States of America)',1,1,0),(42640,29991,142872,'Woodstock','United States of America','US','Woodstock (United States of America)',1,1,0),(42641,29994,142873,'Woodview','Canada','CA','Woodview (Canada)',1,1,0),(42642,0,142874,'Woody Point','Canada','CA','Woody Point (Canada)',1,1,0),(42643,0,142875,'Woolacombe','United Kingdom','UK','Woolacombe (United Kingdom)',1,1,0),(42644,0,142876,'Woolverton','United Kingdom','UK','Woolverton (United Kingdom)',1,1,0),(42645,30025,142877,'Worland','United States of America','US','Worland (United States of America)',1,1,0),(42646,0,142878,'Worth am Rhein','Germany','DE','Worth am Rhein (Germany)',1,1,0),(42647,0,142879,'Worth an der Donau','Germany','DE','Worth an der Donau (Germany)',1,1,0),(42648,0,142880,'Wroxall','United Kingdom','UK','Wroxall (United Kingdom)',1,1,0),(42649,30060,142881,'Wuhu','China','CN','Wuhu (China)',1,1,0),(42650,0,142882,'Wutach','Germany','DE','Wutach (Germany)',1,1,0),(42651,0,142883,'Wuyuan','China','CN','Wuyuan (China)',1,1,0),(42652,0,142884,'Wyboston','United Kingdom','UK','Wyboston (United Kingdom)',1,1,0),(42653,0,142885,'Wydminy','Poland','PL','Wydminy (Poland)',1,1,0),(42654,0,142886,'Wyhl am Kaiserstuhl','Germany','DE','Wyhl am Kaiserstuhl (Germany)',1,1,0),(42655,30085,142887,'Wylie','United States of America','US','Wylie (United States of America)',1,1,0),(42656,30087,142888,'Wyndham','Australia','AU','Wyndham (Australia)',1,1,0),(42657,30104,142889,'Xanthi','Greece','GR','Xanthi (Greece)',1,1,0),(42658,30105,142890,'Xativa','Spain','ES','Xativa (Spain)',1,1,0),(42659,30112,142891,'Xiamen','China','CN','Xiamen (China)',1,1,0),(42660,0,142892,'Xian','China','CN','Xian (China)',1,1,0),(42661,30114,142893,'Xiangfan','China','CN','Xiangfan (China)',1,1,0),(42662,30133,142894,'Xishuangbanna','China','CN','Xishuangbanna (China)',1,1,0),(42663,30136,142895,'Xlendi','Malta','MT','Xlendi (Malta)',1,1,0),(42664,30138,142896,'Xochitepec','Mexico','MX','Xochitepec (Mexico)',1,1,0),(42665,30142,142897,'Xpujil','Mexico','MX','Xpujil (Mexico)',1,1,0),(42666,30147,142898,'Xylokastro','Greece','GR','Xylokastro (Greece)',1,1,0),(42667,30151,142899,'Yabuli','China','CN','Yabuli (China)',1,1,0),(42668,30163,142900,'Yalong Bay','China','CN','Yalong Bay (China)',1,1,0),(42669,30170,142901,'Yamanashi','Japan','JP','Yamanashi (Japan)',1,1,0),(42670,30179,142902,'Yanahuara','Peru','PE','Yanahuara (Peru)',1,1,0),(42671,30186,142903,'Yanchep','Australia','AU','Yanchep (Australia)',1,1,0),(42672,30191,142904,'Yangshuo','China','CN','Yangshuo (China)',1,1,0),(42673,30199,142905,'Yantai','China','CN','Yantai (China)',1,1,0),(42674,0,142906,'Yasothon','Thailand','TH','Yasothon (Thailand)',1,1,0),(42675,30229,142907,'Yazoo City','United States of America','US','Yazoo City (United States of America)',1,1,0),(42676,30230,142908,'Ychoux','France','FR','Ychoux (France)',1,1,0),(42677,30255,142909,'Yesa','Spain','ES','Yesa (Spain)',1,1,0),(42678,30260,142910,'Ygrande','France','FR','Ygrande (France)',1,1,0),(42679,30264,142911,'Yichun','China','CN','Yichun (China)',1,1,0),(42680,30274,142912,'Ylivieska','Finland','FI','Ylivieska (Finland)',1,1,0),(42681,30281,142913,'Yokohama','Japan','JP','Yokohama (Japan)',1,1,0),(42682,30282,142914,'Yokosuka','Japan','JP','Yokosuka (Japan)',1,1,0),(42683,30291,142915,'Yonkers','United States of America','US','Yonkers (United States of America)',1,1,0),(42684,30295,142916,'Yorktown','United States of America','US','Yorktown (United States of America)',1,1,0),(42685,0,142917,'Yoron','Japan','JP','Yoron (Japan)',1,1,0),(42686,30300,142918,'Youghal','Ireland','IE','Youghal (Ireland)',1,1,0),(42687,30302,142919,'Young Harris','United States of America','US','Young Harris (United States of America)',1,1,0),(42688,0,142920,'Yport','France','FR','Yport (France)',1,1,0),(42689,30329,142921,'Yukuhashi','Japan','JP','Yukuhashi (Japan)',1,1,0),(42690,0,142922,'Yutsubo','Japan','JP','Yutsubo (Japan)',1,1,0),(42691,30346,142923,'Yuyao','China','CN','Yuyao (China)',1,1,0),(42692,0,142924,'Yvetot','France','FR','Yvetot (France)',1,1,0),(42693,30357,142925,'Zabok','Croatia','HR','Zabok (Croatia)',1,1,0),(42694,30359,142926,'Zabreh','Czech Republic','CZ','Zabreh (Czech Republic)',1,1,0),(42695,0,142927,'Zacler','Czech Republic','CZ','Zacler (Czech Republic)',1,1,0),(42696,30377,142928,'Zahle','Lebanon','LB','Zahle (Lebanon)',1,1,0),(42697,0,142929,'Zaldibia','Spain','ES','Zaldibia (Spain)',1,1,0),(42698,0,142930,'Zalec','Slovenia','SI','Zalec (Slovenia)',1,1,0),(42699,0,142931,'Zambezi','Zambia','ZM','Zambezi (Zambia)',1,1,0),(42700,30398,142932,'Zambrone','Italy','IT','Zambrone (Italy)',1,1,0),(42701,0,142933,'Zarraton','Spain','ES','Zarraton (Spain)',1,1,0),(42702,30422,142934,'Zarzis','Tunisia','TN','Zarzis (Tunisia)',1,1,0),(42703,0,142935,'Zawiercie','Poland','PL','Zawiercie (Poland)',1,1,0),(42704,0,142936,'Zechlinerhutte','Germany','DE','Zechlinerhutte (Germany)',1,1,0),(42705,0,142937,'Zehdenick','Germany','DE','Zehdenick (Germany)',1,1,0),(42706,0,142938,'Zeitlarn','Germany','DE','Zeitlarn (Germany)',1,1,0),(42707,0,142939,'Zell am Moos','Austria','AT','Zell am Moos (Austria)',1,1,0),(42708,0,142940,'Zell im Wiesental','Germany','DE','Zell im Wiesental (Germany)',1,1,0),(42709,0,142941,'Zentendorf','Germany','DE','Zentendorf (Germany)',1,1,0),(42710,30454,142942,'Zeven','Germany','DE','Zeven (Germany)',1,1,0),(42711,0,142943,'Zhangjiakou','China','CN','Zhangjiakou (China)',1,1,0),(42712,30472,142944,'Zhenjiang','China','CN','Zhenjiang (China)',1,1,0),(42713,0,142945,'Zhilino-Gorki','Russia','RU','Zhilino-Gorki (Russia)',1,1,0),(42714,30481,142946,'Zhoushan','China','CN','Zhoushan (China)',1,1,0),(42715,30483,142947,'Zhuhai','China','CN','Zhuhai (China)',1,1,0),(42716,0,142948,'Zichtau','Germany','DE','Zichtau (Germany)',1,1,0),(42717,0,142949,'Zilzie','Australia','AU','Zilzie (Australia)',1,1,0),(42718,0,142950,'Zimnicea','Romania','RO','Zimnicea (Romania)',1,1,0),(42719,0,142951,'Zion Crossroads','United States of America','US','Zion Crossroads (United States of America)',1,1,0),(42720,30502,142952,'Ziordia','Spain','ES','Ziordia (Spain)',1,1,0),(42721,30512,142953,'Znojmo','Czech Republic','CZ','Znojmo (Czech Republic)',1,1,0),(42722,0,142954,'Zonza','France','FR','Zonza (France)',1,1,0),(42723,0,142955,'Zossen bei Berlin','Germany','DE','Zossen bei Berlin (Germany)',1,1,0),(42724,0,142956,'Wenholthausen','Germany','DE','Wenholthausen (Germany)',1,1,0),(42725,0,142957,'Wenighosbach','Germany','DE','Wenighosbach (Germany)',1,1,0),(42726,0,142958,'Wenkendorf','Germany','DE','Wenkendorf (Germany)',1,1,0),(42727,0,142959,'Weno','Micronesia','FM','Weno (Micronesia)',1,1,0),(42728,0,142960,'Weppersdorf','Austria','AT','Weppersdorf (Austria)',1,1,0),(42729,0,142961,'Werbomont','Belgium','BE','Werbomont (Belgium)',1,1,0),(42730,0,142962,'Weseke','Germany','DE','Weseke (Germany)',1,1,0),(42731,29534,142963,'Weslaco','United States of America','US','Weslaco (United States of America)',1,1,0),(42732,0,142964,'West Bay Beach','Honduras','HN','West Bay Beach (Honduras)',1,1,0),(42733,34039,142965,'West Bend','United States of America','US','West Bend (United States of America)',1,1,0),(42734,0,142966,'West Coast','Mauritius','MU','West Coast (Mauritius)',1,1,0),(42735,34053,142967,'West Dennis','United States of America','US','West Dennis (United States of America)',1,1,0),(42736,34055,142968,'West Dover','United States of America','US','West Dover (United States of America)',1,1,0),(42737,0,142969,'West Dundee','United States of America','US','West Dundee (United States of America)',1,1,0),(42738,34065,142970,'West Fargo','United States of America','US','West Fargo (United States of America)',1,1,0),(42739,34075,142971,'West Harwich','United States of America','US','West Harwich (United States of America)',1,1,0),(42740,0,142972,'West Kilbride','United Kingdom','UK','West Kilbride (United Kingdom)',1,1,0),(42741,34092,142973,'West Lebanon','United States of America','US','West Lebanon (United States of America)',1,1,0),(42742,34108,142974,'West Mifflin','United States of America','US','West Mifflin (United States of America)',1,1,0),(42743,0,142975,'West Point','United States of America','US','West Point (United States of America)',1,1,0),(42744,34131,142976,'West Springfield','United States of America','US','West Springfield (United States of America)',1,1,0),(42745,0,142977,'West Witton','United Kingdom','UK','West Witton (United Kingdom)',1,1,0),(42746,0,142978,'Westampton','United States of America','US','Westampton (United States of America)',1,1,0),(42747,29552,142979,'Westby','United States of America','US','Westby (United States of America)',1,1,0),(42748,0,142980,'Westelbeers','Netherlands','NL','Westelbeers (Netherlands)',1,1,0),(42749,29564,142981,'Westerburg','Germany','DE','Westerburg (Germany)',1,1,0),(42750,0,142982,'Westerhever','Germany','DE','Westerhever (Germany)',1,1,0),(42751,0,142983,'Westerkappeln','Germany','DE','Westerkappeln (Germany)',1,1,0),(42752,29567,142984,'Westerland','Germany','DE','Westerland (Germany)',1,1,0),(42753,29581,142985,'Westford','United States of America','US','Westford (United States of America)',1,1,0),(42754,29586,142986,'Westkapelle','Netherlands','NL','Westkapelle (Netherlands)',1,1,0),(42755,0,142987,'Westouter','Belgium','BE','Westouter (Belgium)',1,1,0),(42756,29608,142988,'Westport','United States of America','US','Westport (United States of America)',1,1,0),(42757,29617,142989,'Westwego','United States of America','US','Westwego (United States of America)',1,1,0),(42758,29618,142990,'Westwood','United States of America','US','Westwood (United States of America)',1,1,0),(42759,29619,142991,'Wetaskiwin','Canada','CA','Wetaskiwin (Canada)',1,1,0),(42760,29647,142992,'Whangarei','New Zealand','NZ','Whangarei (New Zealand)',1,1,0),(42761,29651,142993,'Wheatland','United States of America','US','Wheatland (United States of America)',1,1,0),(42762,34167,142994,'White Pine','United States of America','US','White Pine (United States of America)',1,1,0),(42763,34168,142995,'White Plains','United States of America','US','White Plains (United States of America)',1,1,0),(42764,29683,142996,'Whitehorse','Canada','CA','Whitehorse (Canada)',1,1,0),(42765,29695,142997,'Whitewater','United States of America','US','Whitewater (United States of America)',1,1,0),(42766,0,142998,'Whitsand','South Africa','ZA','Whitsand (South Africa)',1,1,0),(42767,0,142999,'Whitstone','United Kingdom','UK','Whitstone (United Kingdom)',1,1,0),(42768,29710,143000,'Whyalla','Australia','AU','Whyalla (Australia)',1,1,0),(42769,29713,143001,'Wichita','United States of America','US','Wichita (United States of America)',1,1,0),(42770,0,143002,'Wickede (Ruhr)','Germany','DE','Wickede (Ruhr) (Germany)',1,1,0),(42771,0,143003,'Wicko','Poland','PL','Wicko (Poland)',1,1,0),(42772,0,143004,'Widen','Switzerland','CH','Widen (Switzerland)',1,1,0),(42773,0,143005,'Widin','Bulgaria','BG','Widin (Bulgaria)',1,1,0),(42774,0,143006,'Wiek','Germany','DE','Wiek (Germany)',1,1,0),(42775,29723,143007,'Wieliczka','Poland','PL','Wieliczka (Poland)',1,1,0),(42776,29730,143008,'Wiesbaden','Germany','DE','Wiesbaden (Germany)',1,1,0),(42777,0,143009,'Wildberg','Germany','DE','Wildberg (Germany)',1,1,0),(42778,29750,143010,'Wildermieming','Austria','AT','Wildermieming (Austria)',1,1,0),(42779,29755,143011,'Wildhaus','Switzerland','CH','Wildhaus (Switzerland)',1,1,0),(42780,0,143012,'Wilhelmsthal','Germany','DE','Wilhelmsthal (Germany)',1,1,0),(42781,29763,143013,'Wilkesboro','United States of America','US','Wilkesboro (United States of America)',1,1,0),(42782,0,143014,'Williamsburg','United States of America','US','Williamsburg (United States of America)',1,1,0),(42783,0,143015,'Willich','Germany','DE','Willich (Germany)',1,1,0),(42784,29787,143016,'Willingen','Germany','DE','Willingen (Germany)',1,1,0),(42785,0,143017,'Willoughby','United States of America','US','Willoughby (United States of America)',1,1,0),(42786,0,143018,'Willowmore','South Africa','ZA','Willowmore (South Africa)',1,1,0),(42787,0,143019,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(42788,0,143020,'Wilpena Pound','Australia','AU','Wilpena Pound (Australia)',1,1,0),(42789,29829,143021,'Wincheringen','Germany','DE','Wincheringen (Germany)',1,1,0),(42790,29835,143022,'Windermere','Canada','CA','Windermere (Canada)',1,1,0),(42791,0,143023,'Windham','United States of America','US','Windham (United States of America)',1,1,0),(42792,0,143024,'Windischeschenbach','Germany','DE','Windischeschenbach (Germany)',1,1,0),(42793,29846,143025,'Windsor','United States of America','US','Windsor (United States of America)',1,1,0),(42794,0,143026,'Windsor','United States of America','US','Windsor (United States of America)',1,1,0),(42795,0,143027,'Windstein','France','FR','Windstein (France)',1,1,0),(42796,29850,143028,'Winfield','United States of America','US','Winfield (United States of America)',1,1,0),(42797,0,143029,'Winklern-Iselsberg','Austria','AT','Winklern-Iselsberg (Austria)',1,1,0),(42798,29863,143030,'Winnfield','United States of America','US','Winnfield (United States of America)',1,1,0),(42799,29865,143031,'Winnipeg','Canada','CA','Winnipeg (Canada)',1,1,0),(42800,0,143032,'Winscombe','United Kingdom','UK','Winscombe (United Kingdom)',1,1,0),(42801,0,143033,'Winter Garden','United States of America','US','Winter Garden (United States of America)',1,1,0),(42802,0,143034,'Winteringham','United Kingdom','UK','Winteringham (United Kingdom)',1,1,0),(42803,29881,143035,'Winterset','United States of America','US','Winterset (United States of America)',1,1,0),(42804,0,143036,'Winterstein','Germany','DE','Winterstein (Germany)',1,1,0),(42805,0,143037,'Winthrop Harbor','United States of America','US','Winthrop Harbor (United States of America)',1,1,0),(42806,29887,143038,'Winton','Australia','AU','Winton (Australia)',1,1,0),(42807,0,143039,'Wirdum','Netherlands','NL','Wirdum (Netherlands)',1,1,0),(42808,0,143040,'Wisconsin Rapids','United States of America','US','Wisconsin Rapids (United States of America)',1,1,0),(42809,29903,143041,'Wisla','Poland','PL','Wisla (Poland)',1,1,0),(42810,29904,143042,'Wismar','Germany','DE','Wismar (Germany)',1,1,0),(42811,0,143043,'Witsum auf Fohr','Germany','DE','Witsum auf Fohr (Germany)',1,1,0),(42812,0,143044,'Wittenhofen','Germany','DE','Wittenhofen (Germany)',1,1,0),(42813,0,143045,'Wittingen','Germany','DE','Wittingen (Germany)',1,1,0),(42814,29932,143046,'Wodonga','Australia','AU','Wodonga (Australia)',1,1,0),(42815,0,143047,'Wohrden','Germany','DE','Wohrden (Germany)',1,1,0),(42816,29942,143048,'Wolfeboro','United States of America','US','Wolfeboro (United States of America)',1,1,0),(42817,0,143049,'Wolfern','Austria','AT','Wolfern (Austria)',1,1,0),(42818,29950,143050,'Wolfsberg','Austria','AT','Wolfsberg (Austria)',1,1,0),(42819,0,143051,'Wolmirstedt','Germany','DE','Wolmirstedt (Germany)',1,1,0),(42820,0,143052,'Woltersdorf','Germany','DE','Woltersdorf (Germany)',1,1,0),(42821,0,143053,'Woodchurch','United Kingdom','UK','Woodchurch (United Kingdom)',1,1,0),(42822,0,143054,'Woodhall Spa','United Kingdom','UK','Woodhall Spa (United Kingdom)',1,1,0),(42823,0,143055,'Woodstock','Canada','CA','Woodstock (Canada)',1,1,0),(42824,29997,143056,'Woodward','United States of America','US','Woodward (United States of America)',1,1,0),(42825,0,143057,'Woolford','United States of America','US','Woolford (United States of America)',1,1,0),(42826,30009,143058,'Woolooga','Australia','AU','Woolooga (Australia)',1,1,0),(42827,30017,143059,'Wooster','United States of America','US','Wooster (United States of America)',1,1,0),(42828,0,143060,'Worksop','United Kingdom','UK','Worksop (United Kingdom)',1,1,0),(42829,30030,143061,'Wormleysburg','United States of America','US','Wormleysburg (United States of America)',1,1,0),(42830,0,143062,'Woronesch','Russia','RU','Woronesch (Russia)',1,1,0),(42831,0,143063,'Worrstadt','Germany','DE','Worrstadt (Germany)',1,1,0),(42832,0,143064,'Worthersee (Lake Worther)','Austria','AT','Worthersee (Lake Worther) (Austria)',1,1,0),(42833,0,143065,'Worthing Beach','Barbados','BB','Worthing Beach (Barbados)',1,1,0),(42834,0,143066,'Worthsee','Germany','DE','Worthsee (Germany)',1,1,0),(42835,0,143067,'Wailua','United States of America','US','Wailua (United States of America)',1,1,0),(42836,0,143068,'Wailuku','United States of America','US','Wailuku (United States of America)',1,1,0),(42837,0,143069,'Wairita','Indonesia','ID','Wairita (Indonesia)',1,1,0),(42838,29186,143070,'Walcott','United States of America','US','Walcott (United States of America)',1,1,0),(42839,0,143071,'Wald','Germany','DE','Wald (Germany)',1,1,0),(42840,0,143072,'Waldbeuren','Germany','DE','Waldbeuren (Germany)',1,1,0),(42841,0,143073,'Waldmohr','Germany','DE','Waldmohr (Germany)',1,1,0),(42842,0,143074,'Waldzell','Austria','AT','Waldzell (Austria)',1,1,0),(42843,29206,143075,'Walhalla','Australia','AU','Walhalla (Australia)',1,1,0),(42844,0,143076,'Walker','United States of America','US','Walker (United States of America)',1,1,0),(42845,0,143077,'Walkerton','Canada','CA','Walkerton (Canada)',1,1,0),(42846,0,143078,'Walkertshofen','Germany','DE','Walkertshofen (Germany)',1,1,0),(42847,34010,143079,'Wall','United States of America','US','Wall (United States of America)',1,1,0),(42848,0,143080,'Wallenfels','Germany','DE','Wallenfels (Germany)',1,1,0),(42849,29222,143081,'Wallgau','Germany','DE','Wallgau (Germany)',1,1,0),(42850,0,143082,'Walnut','United States of America','US','Walnut (United States of America)',1,1,0),(42851,29238,143083,'Walsrode','Germany','DE','Walsrode (Germany)',1,1,0),(42852,29241,143084,'Walters Falls','Canada','CA','Walters Falls (Canada)',1,1,0),(42853,0,143085,'Wangels','Germany','DE','Wangels (Germany)',1,1,0),(42854,0,143086,'Wangen bei Olten','Switzerland','CH','Wangen bei Olten (Switzerland)',1,1,0),(42855,29261,143087,'Wangerland','Germany','DE','Wangerland (Germany)',1,1,0),(42856,29264,143088,'Wanli','Taiwan','TW','Wanli (Taiwan)',1,1,0),(42857,0,143089,'Wanneperveen','Netherlands','NL','Wanneperveen (Netherlands)',1,1,0),(42858,0,143090,'Wapenveld','Netherlands','NL','Wapenveld (Netherlands)',1,1,0),(42859,0,143091,'Wardija','Malta','MT','Wardija (Malta)',1,1,0),(42860,0,143092,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(42861,0,143093,'Warrenton','United States of America','US','Warrenton (United States of America)',1,1,0),(42862,0,143094,'Warsaw','United States of America','US','Warsaw (United States of America)',1,1,0),(42863,0,143095,'Warsow','Germany','DE','Warsow (Germany)',1,1,0),(42864,0,143096,'Wartau','Switzerland','CH','Wartau (Switzerland)',1,1,0),(42865,0,143097,'Warzenried','Germany','DE','Warzenried (Germany)',1,1,0),(42866,0,143098,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42867,0,143099,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(42868,0,143100,'Wasilla','United States of America','US','Wasilla (United States of America)',1,1,0),(42869,29341,143101,'Waskesiu Lake','Canada','CA','Waskesiu Lake (Canada)',1,1,0),(42870,29345,143102,'Wasserburg','Germany','DE','Wasserburg (Germany)',1,1,0),(42871,0,143103,'Waterfall Estate','South Africa','ZA','Waterfall Estate (South Africa)',1,1,0),(42872,29355,143104,'Waterford','United States of America','US','Waterford (United States of America)',1,1,0),(42873,29373,143105,'Watervliet','United States of America','US','Watervliet (United States of America)',1,1,0),(42874,29390,143106,'Wattle Hill','Australia','AU','Wattle Hill (Australia)',1,1,0),(42875,29400,143107,'Waupaca','United States of America','US','Waupaca (United States of America)',1,1,0),(42876,29410,143108,'Wavre','Belgium','BE','Wavre (Belgium)',1,1,0),(42877,0,143109,'Wawa','Canada','CA','Wawa (Canada)',1,1,0),(42878,0,143110,'Waxenberg','Austria','AT','Waxenberg (Austria)',1,1,0),(42879,0,143111,'Way Kambas Nationalpark','Indonesia','ID','Way Kambas Nationalpark (Indonesia)',1,1,0),(42880,29413,143112,'Waycross','United States of America','US','Waycross (United States of America)',1,1,0),(42881,29418,143113,'Waynesville','United States of America','US','Waynesville (United States of America)',1,1,0),(42882,0,143114,'Webster','United States of America','US','Webster (United States of America)',1,1,0),(42883,0,143115,'Webster City','United States of America','US','Webster City (United States of America)',1,1,0),(42884,34023,143116,'Wedel','Germany','DE','Wedel (Germany)',1,1,0),(42885,29432,143117,'Weed','United States of America','US','Weed (United States of America)',1,1,0),(42886,0,143118,'Wehr','Germany','DE','Wehr (Germany)',1,1,0),(42887,29447,143119,'Weihai','China','CN','Weihai (China)',1,1,0),(42888,0,143120,'Weinstadt','Germany','DE','Weinstadt (Germany)',1,1,0),(42889,29461,143121,'Weipa','Australia','AU','Weipa (Australia)',1,1,0),(42890,29463,143122,'Weirton','United States of America','US','Weirton (United States of America)',1,1,0),(42891,0,143123,'Weissenbach am Attersee','Austria','AT','Weissenbach am Attersee (Austria)',1,1,0),(42892,0,143124,'Weissenhauser Beach (Weissenhauser Strand)','Germany','DE','Weissenhauser Beach (Weissenhauser Strand) (Germany)',1,1,0),(42893,0,143125,'Wei?ensberg','Germany','DE','Wei?ensberg (Germany)',1,1,0),(42894,0,143126,'Wei?enstadt','Germany','DE','Wei?enstadt (Germany)',1,1,0),(42895,0,143127,'Welikije Luki','Russia','RU','Welikije Luki (Russia)',1,1,0),(42896,0,143128,'Wellerlooi','Netherlands','NL','Wellerlooi (Netherlands)',1,1,0),(42897,29486,143129,'Wellfleet','United States of America','US','Wellfleet (United States of America)',1,1,0),(42898,0,143130,'Wellin','Belgium','BE','Wellin (Belgium)',1,1,0),(42899,0,143131,'Wellington','United States of America','US','Wellington (United States of America)',1,1,0),(42900,0,143132,'Welschnofen','Italy','IT','Welschnofen (Italy)',1,1,0),(42901,29504,143133,'Wenatchee','United States of America','US','Wenatchee (United States of America)',1,1,0),(42902,29506,143134,'Wendake','Canada','CA','Wendake (Canada)',1,1,0),(42903,0,143135,'Werben (Spreewald)','Germany','DE','Werben (Spreewald) (Germany)',1,1,0),(42904,0,143136,'Wernberg','Germany','DE','Wernberg (Germany)',1,1,0),(42905,0,143137,'Werneuchen','Germany','DE','Werneuchen (Germany)',1,1,0),(42906,0,143138,'Wernshausen','Germany','DE','Wernshausen (Germany)',1,1,0),(42907,0,143139,'Wesenufer','Austria','AT','Wesenufer (Austria)',1,1,0),(42908,29537,143140,'Wesseling','Germany','DE','Wesseling (Germany)',1,1,0),(42909,0,143141,'Wessin','Germany','DE','Wessin (Germany)',1,1,0),(42910,34036,143142,'West Barnstable','United States of America','US','West Barnstable (United States of America)',1,1,0),(42911,34040,143143,'West Boylston','United States of America','US','West Boylston (United States of America)',1,1,0),(42912,0,143144,'West Bridgford','United Kingdom','UK','West Bridgford (United Kingdom)',1,1,0),(42913,0,143145,'West Chesterfield','United States of America','US','West Chesterfield (United States of America)',1,1,0),(42914,34051,143146,'West Covina','United States of America','US','West Covina (United States of America)',1,1,0),(42915,34093,143147,'West Liberty','United States of America','US','West Liberty (United States of America)',1,1,0),(42916,0,143148,'West Liberty','United States of America','US','West Liberty (United States of America)',1,1,0),(42917,34133,143149,'West Stockbridge','United States of America','US','West Stockbridge (United States of America)',1,1,0),(42918,29551,143150,'Westbury','United States of America','US','Westbury (United States of America)',1,1,0),(42919,29563,143151,'Westerbork','Netherlands','NL','Westerbork (Netherlands)',1,1,0),(42920,29573,143152,'Western Shore','Canada','CA','Western Shore (Canada)',1,1,0),(42921,29577,143153,'Westerville','United States of America','US','Westerville (United States of America)',1,1,0),(42922,29584,143154,'Westhampton Beach','United States of America','US','Westhampton Beach (United States of America)',1,1,0),(42923,0,143155,'Westlake','United States of America','US','Westlake (United States of America)',1,1,0),(42924,0,143156,'Westlake Village','United States of America','US','Westlake Village (United States of America)',1,1,0),(42925,0,143157,'Weston','United States of America','US','Weston (United States of America)',1,1,0),(42926,0,143158,'Weststellingwerf','Netherlands','NL','Weststellingwerf (Netherlands)',1,1,0),(42927,29622,143159,'Wethersfield','United States of America','US','Wethersfield (United States of America)',1,1,0),(42928,0,143160,'Wethersfield',NULL,NULL,'Wethersfield ()',1,1,0),(42929,0,143161,'Wettolsheim','France','FR','Wettolsheim (France)',1,1,0),(42930,29626,143162,'Wetumpka','United States of America','US','Wetumpka (United States of America)',1,1,0),(42931,29627,143163,'Wetzlar','Germany','DE','Wetzlar (Germany)',1,1,0),(42932,0,143164,'Weyerbusch','Germany','DE','Weyerbusch (Germany)',1,1,0),(42933,29642,143165,'Whakatane','New Zealand','NZ','Whakatane (New Zealand)',1,1,0),(42934,0,143166,'Whatton','United Kingdom','UK','Whatton (United Kingdom)',1,1,0),(42935,0,143167,'Wheddon Cross','United Kingdom','UK','Wheddon Cross (United Kingdom)',1,1,0),(42936,29669,143168,'Whitby','Canada','CA','Whitby (Canada)',1,1,0),(42937,0,143169,'Whitby','United Kingdom','UK','Whitby (United Kingdom)',1,1,0),(42938,0,143170,'White Cliffs','Australia','AU','White Cliffs (Australia)',1,1,0),(42939,34180,143171,'White Sulphur Springs','United States of America','US','White Sulphur Springs (United States of America)',1,1,0),(42940,29681,143172,'Whitehall','United States of America','US','Whitehall (United States of America)',1,1,0),(42941,0,143173,'Whiteparish','United Kingdom','UK','Whiteparish (United Kingdom)',1,1,0),(42942,30563,143174,'Zwolle','Netherlands','NL','Zwolle (Netherlands)',1,1,0),(42943,28913,143175,'Vinci','Italy','IT','Vinci (Italy)',1,1,0),(42944,28916,143176,'Vineland','United States of America','US','Vineland (United States of America)',1,1,0),(42945,0,143177,'Vinez','Croatia','HR','Vinez (Croatia)',1,1,0),(42946,0,143178,'Vinica','Macedonia','MK','Vinica (Macedonia)',1,1,0),(42947,0,143179,'Vipingo','Kenya','KE','Vipingo (Kenya)',1,1,0),(42948,0,143180,'Virgen del Camino','Spain','ES','Virgen del Camino (Spain)',1,1,0),(42949,0,143181,'Viriville','France','FR','Viriville (France)',1,1,0),(42950,28946,143182,'Viroqua','United States of America','US','Viroqua (United States of America)',1,1,0),(42951,28950,143183,'Viry-Chatillon','France','FR','Viry-Chatillon (France)',1,1,0),(42952,0,143184,'Vis Island','Croatia','HR','Vis Island (Croatia)',1,1,0),(42953,0,143185,'Vis la Gardiole / Vic la Gardiole','France','FR','Vis la Gardiole / Vic la Gardiole (France)',1,1,0),(42954,0,143186,'Vise','Belgium','BE','Vise (Belgium)',1,1,0),(42955,28958,143187,'Visegrad','Hungary','HU','Visegrad (Hungary)',1,1,0),(42956,0,143188,'Visselhovede','Germany','DE','Visselhovede (Germany)',1,1,0),(42957,28968,143189,'Viterbo','Italy','IT','Viterbo (Italy)',1,1,0),(42958,28972,143190,'Vitoria','Brazil','BR','Vitoria (Brazil)',1,1,0),(42959,0,143191,'Vitry-le-Francois','France','FR','Vitry-le-Francois (France)',1,1,0),(42960,28981,143192,'Vitry-sur-Seine','France','FR','Vitry-sur-Seine (France)',1,1,0),(42961,28984,143193,'Vittorio Veneto','Italy','IT','Vittorio Veneto (Italy)',1,1,0),(42962,0,143194,'Vivar del Cid','Spain','ES','Vivar del Cid (Spain)',1,1,0),(42963,28992,143195,'Vivy','France','FR','Vivy (France)',1,1,0),(42964,28995,143196,'Vizzini','Italy','IT','Vizzini (Italy)',1,1,0),(42965,29009,143197,'Vodnjan','Croatia','HR','Vodnjan (Croatia)',1,1,0),(42966,29011,143198,'Vogar','Iceland','IS','Vogar (Iceland)',1,1,0),(42967,0,143199,'Volakas','Greece','GR','Volakas (Greece)',1,1,0),(42968,0,143200,'Volcans National Park','Rwanda','RW','Volcans National Park (Rwanda)',1,1,0),(42969,29030,143201,'Volendam','Netherlands','NL','Volendam (Netherlands)',1,1,0),(42970,0,143202,'Volissos','Greece','GR','Volissos (Greece)',1,1,0),(42971,0,143203,'Volvera','Italy','IT','Volvera (Italy)',1,1,0),(42972,29049,143204,'Vonnas','France','FR','Vonnas (France)',1,1,0),(42973,29069,143205,'Vouhe','France','FR','Vouhe (France)',1,1,0),(42974,0,143206,'Vouzela','Portugal','PT','Vouzela (Portugal)',1,1,0),(42975,29079,143207,'Vrachati','Greece','GR','Vrachati (Greece)',1,1,0),(42976,29080,143208,'Vradal','Norway','NO','Vradal (Norway)',1,1,0),(42977,0,143209,'Vranov u Brna','Czech Republic','CZ','Vranov u Brna (Czech Republic)',1,1,0),(42978,0,143210,'Vratimov','Czech Republic','CZ','Vratimov (Czech Republic)',1,1,0),(42979,0,143211,'Vrbnik','Croatia','HR','Vrbnik (Croatia)',1,1,0),(42980,0,143212,'Vrchlabi','Czech Republic','CZ','Vrchlabi (Czech Republic)',1,1,0),(42981,29088,143213,'Vrsar','Croatia','HR','Vrsar (Croatia)',1,1,0),(42982,0,143214,'Vrsine','Croatia','HR','Vrsine (Croatia)',1,1,0),(42983,29098,143215,'Vuokatti','Finland','FI','Vuokatti (Finland)',1,1,0),(42984,0,143216,'Vynnyky','Ukraine','UA','Vynnyky (Ukraine)',1,1,0),(42985,0,143217,'Vysna Boca','Slovakia','SK','Vysna Boca (Slovakia)',1,1,0),(42986,0,143218,'Vyssi Brod','Czech Republic','CZ','Vyssi Brod (Czech Republic)',1,1,0),(42987,0,143219,'Waakirchen am Tegernsee','Germany','DE','Waakirchen am Tegernsee (Germany)',1,1,0),(42988,29112,143220,'Wabasha','United States of America','US','Wabasha (United States of America)',1,1,0),(42989,0,143221,'Wachenroth','Germany','DE','Wachenroth (Germany)',1,1,0),(42990,0,143222,'Wackersdorf','Germany','DE','Wackersdorf (Germany)',1,1,0),(42991,29119,143223,'Wadduwa','Sri Lanka','LK','Wadduwa (Sri Lanka)',1,1,0),(42992,0,143224,'Wadgassen','Germany','DE','Wadgassen (Germany)',1,1,0),(42993,29131,143225,'Wageningen','Netherlands','NL','Wageningen (Netherlands)',1,1,0),(42994,0,143226,'Waghausel','Germany','DE','Waghausel (Germany)',1,1,0),(42995,29148,143227,'Waiatarua','New Zealand','NZ','Waiatarua (New Zealand)',1,1,0),(42996,29149,143228,'Waiblingen','Germany','DE','Waiblingen (Germany)',1,1,0),(42997,0,143229,'Waidhofen an der Thaya','Austria','AT','Waidhofen an der Thaya (Austria)',1,1,0),(42998,0,143230,'Waidhofen an der Ybbs (Waidhofen on Ybbs)','Austria','AT','Waidhofen an der Ybbs (Waidhofen on Ybbs) (Austria)',1,1,0),(42999,29152,143231,'Waidring','Austria','AT','Waidring (Austria)',1,1,0),(43000,0,143232,'Waimea','United States of America','US','Waimea (United States of America)',1,1,0),(43001,0,143233,'Waimes','Belgium','BE','Waimes (Belgium)',1,1,0),(43002,0,143234,'Waitakere','New Zealand','NZ','Waitakere (New Zealand)',1,1,0),(43003,29173,143235,'Waitomo','New Zealand','NZ','Waitomo (New Zealand)',1,1,0),(43004,29174,143236,'Waitsfield','United States of America','US','Waitsfield (United States of America)',1,1,0),(43005,0,143237,'Wakatobi Island','Indonesia','ID','Wakatobi Island (Indonesia)',1,1,0),(43006,29176,143238,'Wake Forest','United States of America','US','Wake Forest (United States of America)',1,1,0),(43007,29179,143239,'Wakkanai','Japan','JP','Wakkanai (Japan)',1,1,0),(43008,0,143240,'Walawe Ganga','Sri Lanka','LK','Walawe Ganga (Sri Lanka)',1,1,0),(43009,34009,143241,'Wald im Pinzgau','Austria','AT','Wald im Pinzgau (Austria)',1,1,0),(43010,0,143242,'Waldau','Germany','DE','Waldau (Germany)',1,1,0),(43011,0,143243,'Waldbrol','Germany','DE','Waldbrol (Germany)',1,1,0),(43012,29192,143244,'Waldenburg','Germany','DE','Waldenburg (Germany)',1,1,0),(43013,0,143245,'Waldenburg','Poland','PL','Waldenburg (Poland)',1,1,0),(43014,29194,143246,'Waldkirchen','Germany','DE','Waldkirchen (Germany)',1,1,0),(43015,29201,143247,'Waldport','United States of America','US','Waldport (United States of America)',1,1,0),(43016,29202,143248,'Waldrach','Germany','DE','Waldrach (Germany)',1,1,0),(43017,0,143249,'Waldsee (Pfalz)','Germany','DE','Waldsee (Pfalz) (Germany)',1,1,0),(43018,0,143250,'Walenstadt','Switzerland','CH','Walenstadt (Switzerland)',1,1,0),(43019,0,143251,'Walim','Poland','PL','Walim (Poland)',1,1,0),(43020,29221,143252,'Waller','United States of America','US','Waller (United States of America)',1,1,0),(43021,29231,143253,'Walpertskirchen','Germany','DE','Walpertskirchen (Germany)',1,1,0),(43022,0,143254,'Walshford','United Kingdom','UK','Walshford (United Kingdom)',1,1,0),(43023,0,143255,'Waltershausen','Germany','DE','Waltershausen (Germany)',1,1,0),(43024,29259,143256,'Wangaratta','Australia','AU','Wangaratta (Australia)',1,1,0),(43025,0,143257,'Wanna','Germany','DE','Wanna (Germany)',1,1,0),(43026,0,143258,'Warakapola','Sri Lanka','LK','Warakapola (Sri Lanka)',1,1,0),(43027,0,143259,'Waregem','Belgium','BE','Waregem (Belgium)',1,1,0),(43028,29286,143260,'Waren','Germany','DE','Waren (Germany)',1,1,0),(43029,0,143261,'Warminster','United Kingdom','UK','Warminster (United Kingdom)',1,1,0),(43030,29298,143262,'Warminster','United States of America','US','Warminster (United States of America)',1,1,0),(43031,0,143263,'Warmun','Australia','AU','Warmun (Australia)',1,1,0),(43032,0,143264,'Warsaw','United States of America','US','Warsaw (United States of America)',1,1,0),(43033,29334,143265,'Waseca','United States of America','US','Waseca (United States of America)',1,1,0),(43034,0,143266,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(43035,0,143267,'Wasserburg (Bodensee)','Germany','DE','Wasserburg (Bodensee) (Germany)',1,1,0),(43036,0,143268,'Waterford','United States of America','US','Waterford (United States of America)',1,1,0),(43037,0,143269,'Waterloo','United States of America','US','Waterloo (United States of America)',1,1,0),(43038,0,143270,'Waterloo','United States of America','US','Waterloo (United States of America)',1,1,0),(43039,0,143271,'Waterville Valley','United States of America','US','Waterville Valley (United States of America)',1,1,0),(43040,0,143272,'Watlington','United Kingdom','UK','Watlington (United Kingdom)',1,1,0),(43041,0,143273,'Watou','Belgium','BE','Watou (Belgium)',1,1,0),(43042,0,143274,'Wattwil','Switzerland','CH','Wattwil (Switzerland)',1,1,0),(43043,29393,143275,'Wauchope','Australia','AU','Wauchope (Australia)',1,1,0),(43044,29404,143276,'Wauseon','United States of America','US','Wauseon (United States of America)',1,1,0),(43045,0,143277,'Wayne','United States of America','US','Wayne (United States of America)',1,1,0),(43046,0,143278,'Webau','Germany','DE','Webau (Germany)',1,1,0),(43047,0,143279,'Weelde','Belgium','BE','Weelde (Belgium)',1,1,0),(43048,0,143280,'Weerselo','Netherlands','NL','Weerselo (Netherlands)',1,1,0),(43049,0,143281,'Wegorzewo','Poland','PL','Wegorzewo (Poland)',1,1,0),(43050,29444,143282,'Weiden am See','Austria','AT','Weiden am See (Austria)',1,1,0),(43051,0,143283,'Weidenberg','Germany','DE','Weidenberg (Germany)',1,1,0),(43052,0,143284,'Wokingham','United Kingdom','UK','Wokingham (United Kingdom)',1,1,0),(43053,29943,143285,'Wolfegg','Germany','DE','Wolfegg (Germany)',1,1,0),(43054,0,143286,'Wolfersheim','Germany','DE','Wolfersheim (Germany)',1,1,0),(43055,0,143287,'Wolferszell','Germany','DE','Wolferszell (Germany)',1,1,0),(43056,0,143288,'Wolframs-Eschenbach','Germany','DE','Wolframs-Eschenbach (Germany)',1,1,0),(43057,0,143289,'Wolfshagen','Germany','DE','Wolfshagen (Germany)',1,1,0),(43058,0,143290,'Wolfshagen b Perleberg','Germany','DE','Wolfshagen b Perleberg (Germany)',1,1,0),(43059,0,143291,'Wolgast','Germany','DE','Wolgast (Germany)',1,1,0),(43060,0,143292,'Wologda','Russia','RU','Wologda (Russia)',1,1,0),(43061,0,143293,'Wolpertshausen','Germany','DE','Wolpertshausen (Germany)',1,1,0),(43062,29974,143294,'Woodburn','United States of America','US','Woodburn (United States of America)',1,1,0),(43063,0,143295,'Woodstock','United States of America','US','Woodstock (United States of America)',1,1,0),(43064,0,143296,'Woodstock','United States of America','US','Woodstock (United States of America)',1,1,0),(43065,29998,143297,'Woodway','United States of America','US','Woodway (United States of America)',1,1,0),(43066,30012,143298,'Woolwine','United States of America','US','Woolwine (United States of America)',1,1,0),(43067,0,143299,'Wooroonooran Nationalpark','Australia','AU','Wooroonooran Nationalpark (Australia)',1,1,0),(43068,30019,143300,'Worcester','United States of America','US','Worcester (United States of America)',1,1,0),(43069,30022,143301,'Worgl','Austria','AT','Worgl (Austria)',1,1,0),(43070,0,143302,'Workington','United Kingdom','UK','Workington (United Kingdom)',1,1,0),(43071,30027,143303,'Worlitz','Germany','DE','Worlitz (Germany)',1,1,0),(43072,0,143304,'Worthing','United Kingdom','UK','Worthing (United Kingdom)',1,1,0),(43073,0,143305,'Worthington','United States of America','US','Worthington (United States of America)',1,1,0),(43074,0,143306,'Wray','United States of America','US','Wray (United States of America)',1,1,0),(43075,30070,143307,'Wunsiedel','Germany','DE','Wunsiedel (Germany)',1,1,0),(43076,0,143308,'Wurzen/Nischwitz','Germany','DE','Wurzen/Nischwitz (Germany)',1,1,0),(43077,0,143309,'Wustenrot','Germany','DE','Wustenrot (Germany)',1,1,0),(43078,0,143310,'Wustermark','Germany','DE','Wustermark (Germany)',1,1,0),(43079,30075,143311,'Wuwei','China','CN','Wuwei (China)',1,1,0),(43080,0,143312,'Wuyi (Jinhua)','China','CN','Wuyi (Jinhua) (China)',1,1,0),(43081,0,143313,'Wyborg','Russia','RU','Wyborg (Russia)',1,1,0),(43082,0,143314,'Wyrzysk','Poland','PL','Wyrzysk (Poland)',1,1,0),(43083,30098,143315,'Wytheville','United States of America','US','Wytheville (United States of America)',1,1,0),(43084,30100,143316,'Xaghra','Malta','MT','Xaghra (Malta)',1,1,0),(43085,0,143317,'Xankendi','Armenia','AM','Xankendi (Armenia)',1,1,0),(43086,0,143318,'Xianning','China','CN','Xianning (China)',1,1,0),(43087,30132,143319,'Xinyu','China','CN','Xinyu (China)',1,1,0),(43088,0,143320,'Xinzhou','China','CN','Xinzhou (China)',1,1,0),(43089,0,143321,'Xirokambi','Greece','GR','Xirokambi (Greece)',1,1,0),(43090,30139,143322,'Xonrupt-Longemer','France','FR','Xonrupt-Longemer (France)',1,1,0),(43091,30164,143323,'Yalova','Turkey','TR','Yalova (Turkey)',1,1,0),(43092,30166,143324,'Yamagata','Japan','JP','Yamagata (Japan)',1,1,0),(43093,30193,143325,'Yangyang','South Korea','KR','Yangyang (South Korea)',1,1,0),(43094,30215,143326,'Yarrawonga','Australia','AU','Yarrawonga (Australia)',1,1,0),(43095,30219,143327,'Yate','New Caledonia','NC','Yate (New Caledonia)',1,1,0),(43096,30234,143328,'Yehiam','Israel','IL','Yehiam (Israel)',1,1,0),(43097,30259,143330,'Yffiniac','France','FR','Yffiniac (France)',1,1,0),(43098,0,143331,'Yingkou','China','CN','Yingkou (China)',1,1,0),(43099,30270,143332,'Yiwu','China','CN','Yiwu (China)',1,1,0),(43100,30284,143333,'Yona','Guam','GU','Yona (Guam)',1,1,0),(43101,30285,143334,'Yonago','Japan','JP','Yonago (Japan)',1,1,0),(43102,0,143335,'Yongin','South Korea','KR','Yongin (South Korea)',1,1,0),(43103,30293,143336,'York','United States of America','US','York (United States of America)',1,1,0),(43104,30306,143337,'Yountville','United States of America','US','Yountville (United States of America)',1,1,0),(43105,0,143338,'Yuchi Township','Taiwan','TW','Yuchi Township (Taiwan)',1,1,0),(43106,30326,143339,'Yugawara','Japan','JP','Yugawara (Japan)',1,1,0),(43107,30351,143340,'Yvoire','France','FR','Yvoire (France)',1,1,0),(43108,0,143341,'Zabcice','Czech Republic','CZ','Zabcice (Czech Republic)',1,1,0),(43109,0,143342,'Zachenberg','Germany','DE','Zachenberg (Germany)',1,1,0),(43110,30369,143343,'Zagora','Greece','GR','Zagora (Greece)',1,1,0),(43111,30392,143344,'Zalaszentlaszlo','Hungary','HU','Zalaszentlaszlo (Hungary)',1,1,0),(43112,0,143345,'Zanica','Italy','IT','Zanica (Italy)',1,1,0),(43113,0,143346,'Zanzibar City','Tanzania','TZ','Zanzibar City (Tanzania)',1,1,0),(43114,30406,143347,'Zao','Japan','JP','Zao (Japan)',1,1,0),(43115,0,143348,'Zarza la Mayor','Spain','ES','Zarza la Mayor (Spain)',1,1,0),(43116,0,143349,'Zauchensee','Austria','AT','Zauchensee (Austria)',1,1,0),(43117,0,143350,'Zduny','Poland','PL','Zduny (Poland)',1,1,0),(43118,0,143351,'Zeilarn','Germany','DE','Zeilarn (Germany)',1,1,0),(43119,0,143352,'Zelking','Austria','AT','Zelking (Austria)',1,1,0),(43120,0,143353,'Zell (Mosel)','Germany','DE','Zell (Mosel) (Germany)',1,1,0),(43121,0,143354,'Zeltweg','Austria','AT','Zeltweg (Austria)',1,1,0),(43122,0,143355,'Zempin','Germany','DE','Zempin (Germany)',1,1,0),(43123,0,143356,'Zeneggen','Switzerland','CH','Zeneggen (Switzerland)',1,1,0),(43124,30442,143357,'Zengcheng','China','CN','Zengcheng (China)',1,1,0),(43125,30453,143358,'Zeuthen','Germany','DE','Zeuthen (Germany)',1,1,0),(43126,30478,143359,'Zhongshan','China','CN','Zhongshan (China)',1,1,0),(43127,0,143360,'Zhongxiang','China','CN','Zhongxiang (China)',1,1,0),(43128,30480,143361,'Zhoukou','China','CN','Zhoukou (China)',1,1,0),(43129,30497,143362,'Zinal','Switzerland','CH','Zinal (Switzerland)',1,1,0),(43130,30499,143363,'Zingst','Germany','DE','Zingst (Germany)',1,1,0),(43131,30501,143364,'Zion','United States of America','US','Zion (United States of America)',1,1,0),(43132,30505,143365,'Zirl','Austria','AT','Zirl (Austria)',1,1,0),(43133,0,143366,'Zivogosce','Croatia','HR','Zivogosce (Croatia)',1,1,0),(43134,0,143367,'Zizeleves','Czech Republic','CZ','Zizeleves (Czech Republic)',1,1,0),(43135,0,143368,'Zlockie','Poland','PL','Zlockie (Poland)',1,1,0),(43136,0,143369,'Zman','Croatia','HR','Zman (Croatia)',1,1,0),(43137,0,143370,'Zobern','Austria','AT','Zobern (Austria)',1,1,0),(43138,0,143371,'Zolochiv','Ukraine','UA','Zolochiv (Ukraine)',1,1,0),(43139,0,143372,'Zorge','Germany','DE','Zorge (Germany)',1,1,0),(43140,0,143373,'Zrece','Slovenia','SI','Zrece (Slovenia)',1,1,0),(43141,0,143374,'Zrenjanin','Serbia','RS','Zrenjanin (Serbia)',1,1,0),(43142,0,143375,'Zuos','Switzerland','CH','Zuos (Switzerland)',1,1,0),(43143,0,143376,'Zussow','Germany','DE','Zussow (Germany)',1,1,0),(43144,0,143377,'Zutendaal','Belgium','BE','Zutendaal (Belgium)',1,1,0),(43145,0,143378,'Zvornik','Bosnia and Herzegowina','BA','Zvornik (Bosnia and Herzegowina)',1,1,0),(43146,30564,143379,'Zwota','Germany','DE','Zwota (Germany)',1,1,0),(43147,0,143380,'Wervershoof','Netherlands','NL','Wervershoof (Netherlands)',1,1,0),(43148,29531,143381,'Wesenberg','Germany','DE','Wesenberg (Germany)',1,1,0),(43149,0,143382,'Wesselburenerkoog','Germany','DE','Wesselburenerkoog (Germany)',1,1,0),(43150,34054,143383,'West Des Moines','United States of America','US','West Des Moines (United States of America)',1,1,0),(43151,34081,143384,'West Hollywood','United States of America','US','West Hollywood (United States of America)',1,1,0),(43152,34088,143385,'West Lafayette','United States of America','US','West Lafayette (United States of America)',1,1,0),(43153,34104,143386,'West Memphis','United States of America','US','West Memphis (United States of America)',1,1,0),(43154,34115,143387,'West Palm Beach','United States of America','US','West Palm Beach (United States of America)',1,1,0),(43155,34119,143388,'West Plains','United States of America','US','West Plains (United States of America)',1,1,0),(43156,34125,143389,'West Salem','United States of America','US','West Salem (United States of America)',1,1,0),(43157,34128,143390,'West Siloam Springs','United States of America','US','West Siloam Springs (United States of America)',1,1,0),(43158,29548,143391,'Westborough','United States of America','US','Westborough (United States of America)',1,1,0),(43159,0,143392,'Westende','Belgium','BE','Westende (Belgium)',1,1,0),(43160,0,143393,'Westende-Bad','Belgium','BE','Westende-Bad (Belgium)',1,1,0),(43161,29560,143394,'Westendorf','Austria','AT','Westendorf (Austria)',1,1,0),(43162,0,143395,'Westerbroek','Netherlands','NL','Westerbroek (Netherlands)',1,1,0),(43163,0,143396,'Westerheim','Germany','DE','Westerheim (Germany)',1,1,0),(43164,0,143397,'Western Cape','South Africa','ZA','Western Cape (South Africa)',1,1,0),(43165,0,143398,'Westernieland','Netherlands','NL','Westernieland (Netherlands)',1,1,0),(43166,29576,143399,'Westerstede','Germany','DE','Westerstede (Germany)',1,1,0),(43167,0,143400,'Westfield','United States of America','US','Westfield (United States of America)',1,1,0),(43168,0,143401,'Westminster','United States of America','US','Westminster (United States of America)',1,1,0),(43169,0,143402,'Weston','United States of America','US','Weston (United States of America)',1,1,0),(43170,0,143403,'Weston-super-Mare','United Kingdom','UK','Weston-super-Mare (United Kingdom)',1,1,0),(43171,0,143404,'Wetherby','United Kingdom','UK','Wetherby (United Kingdom)',1,1,0),(43172,0,143405,'Wettringen','Germany','DE','Wettringen (Germany)',1,1,0),(43173,29631,143406,'Wexford','United States of America','US','Wexford (United States of America)',1,1,0),(43174,0,143407,'Weybridge','United Kingdom','UK','Weybridge (United Kingdom)',1,1,0),(43175,0,143408,'Wheyrigg','United Kingdom','UK','Wheyrigg (United Kingdom)',1,1,0),(43176,29661,143409,'Whippany','United States of America','US','Whippany (United States of America)',1,1,0),(43177,29665,143410,'Whistler','Canada','CA','Whistler (Canada)',1,1,0),(43178,34151,143411,'White','United States of America','US','White (United States of America)',1,1,0),(43179,34154,143412,'White Castle','United States of America','US','White Castle (United States of America)',1,1,0),(43180,34177,143413,'White Springs','United States of America','US','White Springs (United States of America)',1,1,0),(43181,29678,143414,'Whitefield','United States of America','US','Whitefield (United States of America)',1,1,0),(43182,0,143415,'Whitehall','United States of America','US','Whitehall (United States of America)',1,1,0),(43183,0,143416,'Whitehall','United States of America','US','Whitehall (United States of America)',1,1,0),(43184,0,143417,'Whitehaven','United Kingdom','UK','Whitehaven (United Kingdom)',1,1,0),(43185,0,143418,'Whites Creek','United States of America','US','Whites Creek (United States of America)',1,1,0),(43186,29692,143419,'Whitesburg','United States of America','US','Whitesburg (United States of America)',1,1,0),(43187,0,143420,'Whiteville','United States of America','US','Whiteville (United States of America)',1,1,0),(43188,29697,143421,'Whitianga','New Zealand','NZ','Whitianga (New Zealand)',1,1,0),(43189,29700,143422,'Whitley City','United States of America','US','Whitley City (United States of America)',1,1,0),(43190,29704,143423,'Whitney','Canada','CA','Whitney (Canada)',1,1,0),(43191,0,143424,'Whitney-on-Wye','United Kingdom','UK','Whitney-on-Wye (United Kingdom)',1,1,0),(43192,29705,143425,'Whitsett','United States of America','US','Whitsett (United States of America)',1,1,0),(43193,0,143426,'Wieringerwerf','Netherlands','NL','Wieringerwerf (Netherlands)',1,1,0),(43194,0,143427,'Wiesenttal','Germany','DE','Wiesenttal (Germany)',1,1,0),(43195,0,143428,'Wiesmoor','Germany','DE','Wiesmoor (Germany)',1,1,0),(43196,0,143429,'Wiesthal','Germany','DE','Wiesthal (Germany)',1,1,0),(43197,0,143430,'Wietze','Germany','DE','Wietze (Germany)',1,1,0),(43198,34183,143431,'Wijk aan Zee','Netherlands','NL','Wijk aan Zee (Netherlands)',1,1,0),(43199,29745,143432,'Wild Coast','South Africa','ZA','Wild Coast (South Africa)',1,1,0),(43200,0,143433,'Wildalpen','Austria','AT','Wildalpen (Austria)',1,1,0),(43201,0,143434,'Wildeck','Germany','DE','Wildeck (Germany)',1,1,0),(43202,29748,143435,'Wilder','United States of America','US','Wilder (United States of America)',1,1,0),(43203,0,143436,'Wiler-Lotschen','Switzerland','CH','Wiler-Lotschen (Switzerland)',1,1,0),(43204,0,143437,'Wilhelmsdorf','Germany','DE','Wilhelmsdorf (Germany)',1,1,0),(43205,0,143438,'Wilkau-Ha?lau','Germany','DE','Wilkau-Ha?lau (Germany)',1,1,0),(43206,0,143439,'Williamstown','United States of America','US','Williamstown (United States of America)',1,1,0),(43207,0,143440,'Willigen-Usseln','Germany','DE','Willigen-Usseln (Germany)',1,1,0),(43208,0,143441,'Willingshausen','Germany','DE','Willingshausen (Germany)',1,1,0),(43209,29788,143442,'Willington','United States of America','US','Willington (United States of America)',1,1,0),(43210,0,143443,'Winchelsea','United Kingdom','UK','Winchelsea (United Kingdom)',1,1,0),(43211,0,143444,'Winchester','United States of America','US','Winchester (United States of America)',1,1,0),(43212,29833,143445,'Windeck','Germany','DE','Windeck (Germany)',1,1,0),(43213,29837,143446,'Windhagen','Germany','DE','Windhagen (Germany)',1,1,0),(43214,0,143447,'Windsbach','Germany','DE','Windsbach (Germany)',1,1,0),(43215,0,143448,'Windsor','United States of America','US','Windsor (United States of America)',1,1,0),(43216,0,143449,'Windsor Locks','United States of America','US','Windsor Locks (United States of America)',1,1,0),(43217,29848,143450,'Windwhistle','New Zealand','NZ','Windwhistle (New Zealand)',1,1,0),(43218,0,143451,'Winkleigh','United Kingdom','UK','Winkleigh (United Kingdom)',1,1,0),(43219,29857,143452,'Winklern','Austria','AT','Winklern (Austria)',1,1,0),(43220,0,143453,'Winnemark','Germany','DE','Winnemark (Germany)',1,1,0),(43221,0,143454,'Winningen','Germany','DE','Winningen (Germany)',1,1,0),(43222,0,143455,'Winnsboro','United States of America','US','Winnsboro (United States of America)',1,1,0),(43223,0,143456,'Winschoten','Netherlands','NL','Winschoten (Netherlands)',1,1,0),(43224,0,143457,'Winter Park','United States of America','US','Winter Park (United States of America)',1,1,0),(43225,0,143458,'Wirral','United Kingdom','UK','Wirral (United Kingdom)',1,1,0),(43226,29894,143459,'Wirsberg','Germany','DE','Wirsberg (Germany)',1,1,0),(43227,0,143460,'Wischhafen','Germany','DE','Wischhafen (Germany)',1,1,0),(43228,0,143461,'Wissen','Germany','DE','Wissen (Germany)',1,1,0),(43229,0,143462,'Witelsbos','South Africa','ZA','Witelsbos (South Africa)',1,1,0),(43230,0,143463,'Wittstock','Germany','DE','Wittstock (Germany)',1,1,0),(43231,0,143464,'Wladikawkas','Russia','RU','Wladikawkas (Russia)',1,1,0),(43232,0,143465,'Wlodawa','Poland','PL','Wlodawa (Poland)',1,1,0),(43233,0,143466,'Woking','United Kingdom','UK','Woking (United Kingdom)',1,1,0),(43234,0,143467,'Woldzegarten','Germany','DE','Woldzegarten (Germany)',1,1,0),(43235,29947,143468,'Wolfgangsee','Austria','AT','Wolfgangsee (Austria)',1,1,0),(43236,0,143469,'Wolfhagen','Germany','DE','Wolfhagen (Germany)',1,1,0),(43237,0,143470,'Wolhusen','Switzerland','CH','Wolhusen (Switzerland)',1,1,0),(43238,0,143471,'Wonneberg','Germany','DE','Wonneberg (Germany)',1,1,0),(43239,0,143472,'Woodinville','United States of America','US','Woodinville (United States of America)',1,1,0),(43240,0,143473,'Woodstock','United States of America','US','Woodstock (United States of America)',1,1,0),(43241,0,143474,'Worb','Switzerland','CH','Worb (Switzerland)',1,1,0),(43242,0,143475,'Worlington','United Kingdom','UK','Worlington (United Kingdom)',1,1,0),(43243,0,143476,'Worthington','United States of America','US','Worthington (United States of America)',1,1,0),(43244,0,143477,'Wrangell-St.-Elias-Nationalpark','United States of America','US','Wrangell-St.-Elias-Nationalpark (United States of America)',1,1,0),(43245,30043,143478,'Wrightstown','United States of America','US','Wrightstown (United States of America)',1,1,0),(43246,0,143479,'Wukang Town','China','CN','Wukang Town (China)',1,1,0),(43247,0,143480,'Wulfershausen','Germany','DE','Wulfershausen (Germany)',1,1,0),(43248,0,143482,'Wymbolwood Beach','Canada','CA','Wymbolwood Beach (Canada)',1,1,0),(43249,0,143483,'Wymondham','United Kingdom','UK','Wymondham (United Kingdom)',1,1,0),(43250,0,143484,'Wyoming','United States of America','US','Wyoming (United States of America)',1,1,0),(43251,30103,143485,'Xanten','Germany','DE','Xanten (Germany)',1,1,0),(43252,30109,143486,'Xerta','Spain','ES','Xerta (Spain)',1,1,0),(43253,0,143487,'Zuberec','Slovakia','SK','Zuberec (Slovakia)',1,1,0),(43254,0,143488,'Zufre','Spain','ES','Zufre (Spain)',1,1,0),(43255,0,143489,'Zuidland','Netherlands','NL','Zuidland (Netherlands)',1,1,0),(43256,30546,143490,'Zunyi','China','CN','Zunyi (China)',1,1,0),(43257,0,143491,'Zvolen','Slovakia','SK','Zvolen (Slovakia)',1,1,0),(43258,30554,143492,'Zwanenburg','Netherlands','NL','Zwanenburg (Netherlands)',1,1,0),(43259,30558,143493,'Zweisimmen','Switzerland','CH','Zweisimmen (Switzerland)',1,1,0),(43260,0,143494,'Zwieslerwaldhaus','Germany','DE','Zwieslerwaldhaus (Germany)',1,1,0),(43261,30040,143495,'Wrentham','United States of America','US','Wrentham (United States of America)',1,1,0),(43262,0,143496,'Wronki','Poland','PL','Wronki (Poland)',1,1,0),(43263,0,143497,'Wusterwitz','Germany','DE','Wusterwitz (Germany)',1,1,0),(43264,0,143498,'Xeraco','Spain','ES','Xeraco (Spain)',1,1,0),(43265,30119,143499,'Xianyang','China','CN','Xianyang (China)',1,1,0),(43266,0,143500,'Xingcheng','China','CN','Xingcheng (China)',1,1,0),(43267,0,143501,'Xinyang','China','CN','Xinyang (China)',1,1,0),(43268,0,143502,'Yaiza','Spain','ES','Yaiza (Spain)',1,1,0),(43269,30174,143503,'Yamba','Australia','AU','Yamba (Australia)',1,1,0),(43270,30196,143504,'Yanji','China','CN','Yanji (China)',1,1,0),(43271,30205,143505,'Yardley','United States of America','US','Yardley (United States of America)',1,1,0),(43272,0,143506,'Yarmouth Port','United States of America','US','Yarmouth Port (United States of America)',1,1,0),(43273,30213,143507,'Yarragon','Australia','AU','Yarragon (Australia)',1,1,0),(43274,0,143508,'Yashezero','Russia','RU','Yashezero (Russia)',1,1,0),(43275,0,143509,'Yattendon','United Kingdom','UK','Yattendon (United Kingdom)',1,1,0),(43276,0,143510,'Ye','Spain','ES','Ye (Spain)',1,1,0),(43277,0,143511,'Yealmpton','United Kingdom','UK','Yealmpton (United Kingdom)',1,1,0),(43278,0,143512,'Yessingeaux','France','FR','Yessingeaux (France)',1,1,0),(43279,30261,143513,'Yibin','China','CN','Yibin (China)',1,1,0),(43280,0,143514,'Yingtan','China','CN','Yingtan (China)',1,1,0),(43281,30272,143515,'Yixing','China','CN','Yixing (China)',1,1,0),(43282,30292,143516,'Yorba Linda','United States of America','US','Yorba Linda (United States of America)',1,1,0),(43283,0,143517,'York','United States of America','US','York (United States of America)',1,1,0),(43284,30294,143518,'Yorkton','Canada','CA','Yorkton (Canada)',1,1,0),(43285,30296,143519,'Yorkville','United States of America','US','Yorkville (United States of America)',1,1,0),(43286,0,143520,'Yosano','Japan','JP','Yosano (Japan)',1,1,0),(43287,0,143521,'Ypsos','Greece','GR','Ypsos (Greece)',1,1,0),(43288,0,143522,'Zabia Wola','Poland','PL','Zabia Wola (Poland)',1,1,0),(43289,30367,143523,'Zagarolo','Italy','IT','Zagarolo (Italy)',1,1,0),(43290,0,143524,'Zaglav','Croatia','HR','Zaglav (Croatia)',1,1,0),(43291,30373,143525,'Zagreb','Croatia','HR','Zagreb (Croatia)',1,1,0),(43292,0,143526,'Zahora','Spain','ES','Zahora (Spain)',1,1,0),(43293,30391,143527,'Zalakaros','Hungary','HU','Zalakaros (Hungary)',1,1,0),(43294,30405,143528,'Zanesville','United States of America','US','Zanesville (United States of America)',1,1,0),(43295,0,143529,'Zaozhuang','China','CN','Zaozhuang (China)',1,1,0),(43296,30418,143530,'Zarautz','Spain','ES','Zarautz (Spain)',1,1,0),(43297,0,143531,'Zauchwitz','Germany','DE','Zauchwitz (Germany)',1,1,0),(43298,30425,143532,'Zaventem','Belgium','BE','Zaventem (Belgium)',1,1,0),(43299,0,143533,'Zeddam','Netherlands','NL','Zeddam (Netherlands)',1,1,0),(43300,0,143534,'Zedelgem','Belgium','BE','Zedelgem (Belgium)',1,1,0),(43301,0,143535,'Zeitz','Germany','DE','Zeitz (Germany)',1,1,0),(43302,0,143536,'Zellertal','Germany','DE','Zellertal (Germany)',1,1,0),(43303,0,143537,'Zeltingen-Rachtig','Germany','DE','Zeltingen-Rachtig (Germany)',1,1,0),(43304,30444,143538,'Zephyr Cove','United States of America','US','Zephyr Cove (United States of America)',1,1,0),(43305,0,143539,'Zgornje Gorje','Slovenia','SI','Zgornje Gorje (Slovenia)',1,1,0),(43306,30461,143540,'Zgorzelec','Poland','PL','Zgorzelec (Poland)',1,1,0),(43307,0,143541,'Zheleznovodsk','Russia','RU','Zheleznovodsk (Russia)',1,1,0),(43308,0,143542,'Zhlobin','Belarus','BY','Zhlobin (Belarus)',1,1,0),(43309,0,143543,'Zhongwei','China','CN','Zhongwei (China)',1,1,0),(43310,30484,143544,'Zhuji','China','CN','Zhuji (China)',1,1,0),(43311,30485,143545,'Zhuzhou','China','CN','Zhuzhou (China)',1,1,0),(43312,30488,143546,'Zielonka','Poland','PL','Zielonka (Poland)',1,1,0),(43313,30492,143547,'Zigong','China','CN','Zigong (China)',1,1,0),(43314,0,143548,'Zihuatanejo','Mexico','MX','Zihuatanejo (Mexico)',1,1,0),(43315,0,143549,'Zistersdorf','Austria','AT','Zistersdorf (Austria)',1,1,0),(43316,30511,143550,'Zlotoryja','Poland','PL','Zlotoryja (Poland)',1,1,0),(43317,0,143551,'Zlutice','Czech Republic','CZ','Zlutice (Czech Republic)',1,1,0),(43318,30513,143552,'Zoagli','Italy','IT','Zoagli (Italy)',1,1,0),(43319,0,143553,'Zoetermeer','Netherlands','NL','Zoetermeer (Netherlands)',1,1,0),(43320,0,143554,'Zofingen','Switzerland','CH','Zofingen (Switzerland)',1,1,0),(43321,30522,143555,'Zomba','Malawi','MW','Zomba (Malawi)',1,1,0),(43322,34207,143556,'Zone','Italy','IT','Zone (Italy)',1,1,0),(43323,30524,143557,'Zorneding','Germany','DE','Zorneding (Germany)',1,1,0),(43324,0,143558,'Zruc','Czech Republic','CZ','Zruc (Czech Republic)',1,1,0),(43325,0,143559,'Zudar','Germany','DE','Zudar (Germany)',1,1,0),(43326,30536,143560,'Zuidbroek','Netherlands','NL','Zuidbroek (Netherlands)',1,1,0),(43327,30539,143561,'Zujar','Spain','ES','Zujar (Spain)',1,1,0),(43328,30544,143562,'Zunhua','China','CN','Zunhua (China)',1,1,0),(43329,0,143563,'Zvikovske Podhradi','Czech Republic','CZ','Zvikovske Podhradi (Czech Republic)',1,1,0),(43330,30561,143564,'Zwiesel','Germany','DE','Zwiesel (Germany)',1,1,0),(43331,0,143565,'Zyrardow','Poland','PL','Zyrardow (Poland)',1,1,0),(43332,0,143566,'Zywiec','Poland','PL','Zywiec (Poland)',1,1,0),(43333,0,143567,'Whitsunday Island','Australia','AU','Whitsunday Island (Australia)',1,1,0),(43334,0,143568,'Wieck a. Dar?','Germany','DE','Wieck a. Dar? (Germany)',1,1,0),(43335,29727,143569,'Wiener Neustadt','Austria','AT','Wiener Neustadt (Austria)',1,1,0),(43336,29728,143570,'Wienhausen','Germany','DE','Wienhausen (Germany)',1,1,0),(43337,0,143571,'Wiesentheid','Germany','DE','Wiesentheid (Germany)',1,1,0),(43338,0,143572,'Wietzendorf','Germany','DE','Wietzendorf (Germany)',1,1,0),(43339,29754,143573,'Wildeshausen','Germany','DE','Wildeshausen (Germany)',1,1,0),(43340,29757,143574,'Wildschonau','Austria','AT','Wildschonau (Austria)',1,1,0),(43341,0,143575,'Wildwood','United States of America','US','Wildwood (United States of America)',1,1,0),(43342,0,143576,'Wildwood Crest','United States of America','US','Wildwood Crest (United States of America)',1,1,0),(43343,0,143577,'Wilfersdorf','Austria','AT','Wilfersdorf (Austria)',1,1,0),(43344,0,143578,'Wilhelmsthal (Marksuhl)','Germany','DE','Wilhelmsthal (Marksuhl) (Germany)',1,1,0),(43345,29777,143579,'Williamson','United States of America','US','Williamson (United States of America)',1,1,0),(43346,29778,143580,'Williamsport','United States of America','US','Williamsport (United States of America)',1,1,0),(43347,0,143581,'Williamstown','United States of America','US','Williamstown (United States of America)',1,1,0),(43348,0,143582,'Williamstown','United States of America','US','Williamstown (United States of America)',1,1,0),(43349,0,143583,'Williston','United States of America','US','Williston (United States of America)',1,1,0),(43350,0,143584,'Willow Park','United States of America','US','Willow Park (United States of America)',1,1,0),(43351,29796,143585,'Willowbrook','United States of America','US','Willowbrook (United States of America)',1,1,0),(43352,0,143586,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(43353,29816,143587,'Wilthen','Germany','DE','Wilthen (Germany)',1,1,0),(43354,29817,143588,'Wilton','United States of America','US','Wilton (United States of America)',1,1,0),(43355,0,143589,'Winchester','United Kingdom','UK','Winchester (United Kingdom)',1,1,0),(43356,0,143590,'Winchester','United States of America','US','Winchester (United States of America)',1,1,0),(43357,29845,143591,'Window Rock','United States of America','US','Window Rock (United States of America)',1,1,0),(43358,0,143592,'Winkel','Germany','DE','Winkel (Germany)',1,1,0),(43359,29858,143593,'Winnellie','Australia','AU','Winnellie (Australia)',1,1,0),(43360,29859,143594,'Winnemucca','United States of America','US','Winnemucca (United States of America)',1,1,0),(43361,0,143595,'Winsen (Aller)','Germany','DE','Winsen (Aller) (Germany)',1,1,0),(43362,0,143596,'Winsen (Luhe)','Germany','DE','Winsen (Luhe) (Germany)',1,1,0),(43363,0,143597,'Winsford','United Kingdom','UK','Winsford (United Kingdom)',1,1,0),(43364,0,143598,'Winter Park','United States of America','US','Winter Park (United States of America)',1,1,0),(43365,29886,143599,'Winthrop','United States of America','US','Winthrop (United States of America)',1,1,0),(43366,0,143600,'Winton','New Zealand','NZ','Winton (New Zealand)',1,1,0),(43367,0,143601,'Wisbech','United Kingdom','UK','Wisbech (United Kingdom)',1,1,0),(43368,29908,143602,'Witbank','South Africa','ZA','Witbank (South Africa)',1,1,0),(43369,0,143603,'Witkowo','Poland','PL','Witkowo (Poland)',1,1,0),(43370,0,143604,'Wloclawek','Poland','PL','Wloclawek (Poland)',1,1,0),(43371,0,143605,'Wolfach- St. Roman','Germany','DE','Wolfach- St. Roman (Germany)',1,1,0),(43372,29944,143606,'Wolfenbuttel','Germany','DE','Wolfenbuttel (Germany)',1,1,0),(43373,0,143607,'Wolfisberg','Switzerland','CH','Wolfisberg (Switzerland)',1,1,0),(43374,29951,143608,'Wolfsburg','Germany','DE','Wolfsburg (Germany)',1,1,0),(43375,0,143609,'Wolfshausen','Germany','DE','Wolfshausen (Germany)',1,1,0),(43376,29963,143610,'Wolvega','Netherlands','NL','Wolvega (Netherlands)',1,1,0),(43377,0,143611,'Wolverhampton','United Kingdom','UK','Wolverhampton (United Kingdom)',1,1,0),(43378,0,143612,'Wonosobo','Indonesia','ID','Wonosobo (Indonesia)',1,1,0),(43379,29977,143613,'Woodend','Australia','AU','Woodend (Australia)',1,1,0),(43380,0,143614,'Woodland Hills','United States of America','US','Woodland Hills (United States of America)',1,1,0),(43381,0,143615,'Woodstock','United States of America','US','Woodstock (United States of America)',1,1,0),(43382,0,143616,'Worben','Switzerland','CH','Worben (Switzerland)',1,1,0),(43383,0,143617,'Worcester','United Kingdom','UK','Worcester (United Kingdom)',1,1,0),(43384,0,143618,'Wordern','Austria','AT','Wordern (Austria)',1,1,0),(43385,0,143619,'Wotton-under-Edge','United Kingdom','UK','Wotton-under-Edge (United Kingdom)',1,1,0),(43386,0,143620,'Woudenberg','Netherlands','NL','Woudenberg (Netherlands)',1,1,0),(43387,0,143621,'Woudrichem','Netherlands','NL','Woudrichem (Netherlands)',1,1,0),(43388,0,143622,'Wrixum','Germany','DE','Wrixum (Germany)',1,1,0),(43389,0,143623,'Wrzesnia','Poland','PL','Wrzesnia (Poland)',1,1,0),(43390,30064,143624,'Wulai','Taiwan','TW','Wulai (Taiwan)',1,1,0),(43391,0,143625,'Wulmeringhausen','Germany','DE','Wulmeringhausen (Germany)',1,1,0),(43392,30072,143626,'Wurtsboro','United States of America','US','Wurtsboro (United States of America)',1,1,0),(43393,0,143627,'Wusterhausen/Dosse','Germany','DE','Wusterhausen/Dosse (Germany)',1,1,0),(43394,0,143628,'Wustrau-Altfriesack','Germany','DE','Wustrau-Altfriesack (Germany)',1,1,0),(43395,0,143629,'Wutai','China','CN','Wutai (China)',1,1,0),(43396,30078,143630,'Wuzhen','China','CN','Wuzhen (China)',1,1,0),(43397,0,143631,'Xerokambos','Greece','GR','Xerokambos (Greece)',1,1,0),(43398,0,143632,'Xeropigado','Greece','GR','Xeropigado (Greece)',1,1,0),(43399,0,143633,'Xi Katogis','Greece','GR','Xi Katogis (Greece)',1,1,0),(43400,30131,143634,'Xinxiang','China','CN','Xinxiang (China)',1,1,0),(43401,30152,143635,'Yachats','United States of America','US','Yachats (United States of America)',1,1,0),(43402,30154,143636,'Yadkinville','United States of America','US','Yadkinville (United States of America)',1,1,0),(43403,30161,143637,'Yalikavak','Turkey','TR','Yalikavak (Turkey)',1,1,0),(43404,0,143638,'Yaliscari','Greece','GR','Yaliscari (Greece)',1,1,0),(43405,30181,143640,'Yan\'an','China','CN','Yan\'an (China)',1,1,0),(43406,30184,143641,'Yanceyville','United States of America','US','Yanceyville (United States of America)',1,1,0),(43407,30216,143642,'Yasawa Island','Fiji Islands','FJ','Yasawa Island (Fiji Islands)',1,1,0),(43408,0,143643,'Ybbs an der Donau','Austria','AT','Ybbs an der Donau (Austria)',1,1,0),(43409,30240,143644,'Yelapa','Mexico','MX','Yelapa (Mexico)',1,1,0),(43410,0,143645,'Yellowstone National Park','United States of America','US','Yellowstone National Park (United States of America)',1,1,0),(43411,30245,143646,'Yemassee','United States of America','US','Yemassee (United States of America)',1,1,0),(43412,0,143647,'Yeovil','United Kingdom','UK','Yeovil (United Kingdom)',1,1,0),(43413,0,143648,'Yigo','Guam','GU','Yigo (Guam)',1,1,0),(43414,30276,143649,'Yllasjarvi','Finland','FI','Yllasjarvi (Finland)',1,1,0),(43415,30280,143650,'Yokkaichi','Japan','JP','Yokkaichi (Japan)',1,1,0),(43416,0,143651,'Yorkeys Knob','Australia','AU','Yorkeys Knob (Australia)',1,1,0),(43417,0,143652,'Ysselsteyn','Netherlands','NL','Ysselsteyn (Netherlands)',1,1,0),(43418,0,143653,'Ytra-Aland','Iceland','IS','Ytra-Aland (Iceland)',1,1,0),(43419,30323,143654,'Yueyang','China','CN','Yueyang (China)',1,1,0),(43420,30331,143655,'Yulee','United States of America','US','Yulee (United States of America)',1,1,0),(43421,0,143656,'Yuxi','China','CN','Yuxi (China)',1,1,0),(43422,30364,143657,'Zadar','Croatia','HR','Zadar (Croatia)',1,1,0),(43423,30380,143658,'Zakopane','Poland','PL','Zakopane (Poland)',1,1,0),(43424,30393,143659,'Zalau','Romania','RO','Zalau (Romania)',1,1,0),(43425,30397,143660,'Zamboanga','Philippines','PH','Zamboanga (Philippines)',1,1,0),(43426,30404,143661,'Zandvoort','Netherlands','NL','Zandvoort (Netherlands)',1,1,0),(43427,30409,143662,'Zapala','Argentina','AR','Zapala (Argentina)',1,1,0),(43428,0,143663,'Zaton Nin','Croatia','HR','Zaton Nin (Croatia)',1,1,0),(43429,0,143664,'Zavidovo','Russia','RU','Zavidovo (Russia)',1,1,0),(43430,0,143665,'Zavora','Mozambique','MZ','Zavora (Mozambique)',1,1,0),(43431,0,143666,'Zawoja','Poland','PL','Zawoja (Poland)',1,1,0),(43432,0,143667,'Zazriva','Slovakia','SK','Zazriva (Slovakia)',1,1,0),(43433,30428,143668,'Zdiar','Slovakia','SK','Zdiar (Slovakia)',1,1,0),(43434,34202,143669,'Zell am Harmersbach','Germany','DE','Zell am Harmersbach (Germany)',1,1,0),(43435,34203,143670,'Zell am See','Austria','AT','Zell am See (Austria)',1,1,0),(43436,34204,143671,'Zell am Ziller','Austria','AT','Zell am Ziller (Austria)',1,1,0),(43437,0,143672,'Zell im Fichtelgebirge','Germany','DE','Zell im Fichtelgebirge (Germany)',1,1,0),(43438,0,143673,'Zemunik Gornji','Croatia','HR','Zemunik Gornji (Croatia)',1,1,0),(43439,0,143674,'Zevenhuizen','Netherlands','NL','Zevenhuizen (Netherlands)',1,1,0),(43440,34024,143675,'Weil am Rhein','Germany','DE','Weil am Rhein (Germany)',1,1,0),(43441,0,143676,'Weilmunster','Germany','DE','Weilmunster (Germany)',1,1,0),(43442,29453,143677,'Weimar','Germany','DE','Weimar (Germany)',1,1,0),(43443,29454,143678,'Weimar','United States of America','US','Weimar (United States of America)',1,1,0),(43444,29467,143679,'Weiskirchen','Germany','DE','Weiskirchen (Germany)',1,1,0),(43445,0,143680,'Wei?briach','Austria','AT','Wei?briach (Austria)',1,1,0),(43446,0,143681,'Wei?enbach','Italy','IT','Wei?enbach (Italy)',1,1,0),(43447,0,143682,'Wei?enfeld','Germany','DE','Wei?enfeld (Germany)',1,1,0),(43448,0,143683,'Weitra','Austria','AT','Weitra (Austria)',1,1,0),(43449,0,143684,'Welle','Germany','DE','Welle (Germany)',1,1,0),(43450,0,143685,'Wellington','United States of America','US','Wellington (United States of America)',1,1,0),(43451,0,143686,'Wellington','South Africa','ZA','Wellington (South Africa)',1,1,0),(43452,0,143687,'Wells','United Kingdom','UK','Wells (United Kingdom)',1,1,0),(43453,34025,143688,'Wells','United States of America','US','Wells (United States of America)',1,1,0),(43454,0,143689,'Wells','United States of America','US','Wells (United States of America)',1,1,0),(43455,0,143690,'Welshpool','United Kingdom','UK','Welshpool (United Kingdom)',1,1,0),(43456,0,143691,'Wendtorf','Germany','DE','Wendtorf (Germany)',1,1,0),(43457,0,143692,'Wengen','Italy','IT','Wengen (Italy)',1,1,0),(43458,0,143693,'Wennigsen (Deister)','Germany','DE','Wennigsen (Deister) (Germany)',1,1,0),(43459,0,143694,'Wentorf bei Hamburg','Germany','DE','Wentorf bei Hamburg (Germany)',1,1,0),(43460,29517,143695,'Wentzville','United States of America','US','Wentzville (United States of America)',1,1,0),(43461,29518,143696,'Wenzhou','China','CN','Wenzhou (China)',1,1,0),(43462,0,143697,'Werbach','Germany','DE','Werbach (Germany)',1,1,0),(43463,0,143698,'Werdenberg','Switzerland','CH','Werdenberg (Switzerland)',1,1,0),(43464,29520,143699,'Werfenweng','Austria','AT','Werfenweng (Austria)',1,1,0),(43465,29526,143700,'Werneck','Germany','DE','Werneck (Germany)',1,1,0),(43466,29530,143701,'Wertheim','Germany','DE','Wertheim (Germany)',1,1,0),(43467,0,143702,'West','United States of America','US','West (United States of America)',1,1,0),(43468,0,143703,'West Branch','United States of America','US','West Branch (United States of America)',1,1,0),(43469,34072,143704,'West Greenwich','United States of America','US','West Greenwich (United States of America)',1,1,0),(43470,0,143705,'West Linton','United Kingdom','UK','West Linton (United Kingdom)',1,1,0),(43471,34113,143706,'West Orange','United States of America','US','West Orange (United States of America)',1,1,0),(43472,34143,143707,'West Warwick','United States of America','US','West Warwick (United States of America)',1,1,0),(43473,29554,143708,'Westchester','United States of America','US','Westchester (United States of America)',1,1,0),(43474,29569,143709,'Westerly','United States of America','US','Westerly (United States of America)',1,1,0),(43475,0,143710,'Westfield',NULL,NULL,'Westfield ()',1,1,0),(43476,0,143711,'Westhalten','France','FR','Westhalten (France)',1,1,0),(43477,29591,143712,'Westlock','Canada','CA','Westlock (Canada)',1,1,0),(43478,0,143713,'Westminster','United States of America','US','Westminster (United States of America)',1,1,0),(43479,0,143714,'Westminster','United States of America','US','Westminster (United States of America)',1,1,0),(43480,29594,143715,'Westmont','United States of America','US','Westmont (United States of America)',1,1,0),(43481,0,143716,'Weston','United States of America','US','Weston (United States of America)',1,1,0),(43482,0,143717,'Westport','United States of America','US','Westport (United States of America)',1,1,0),(43483,0,143718,'Wettin','Germany','DE','Wettin (Germany)',1,1,0),(43484,29637,143719,'Weymouth','United States of America','US','Weymouth (United States of America)',1,1,0),(43485,29646,143720,'Whangamata','New Zealand','NZ','Whangamata (New Zealand)',1,1,0),(43486,0,143721,'Whangaparaoa','New Zealand','NZ','Whangaparaoa (New Zealand)',1,1,0),(43487,0,143722,'Whitchurch',NULL,NULL,'Whitchurch ()',1,1,0),(43488,0,143723,'Whitchurch',NULL,NULL,'Whitchurch ()',1,1,0),(43489,34156,143724,'White City','United States of America','US','White City (United States of America)',1,1,0),(43490,34172,143725,'White River Junction','United States of America','US','White River Junction (United States of America)',1,1,0),(43491,0,143726,'White Sands','United States of America','US','White Sands (United States of America)',1,1,0),(43492,29679,143728,'Whitefish','United States of America','US','Whitefish (United States of America)',1,1,0),(43493,0,143729,'Whitehall','United States of America','US','Whitehall (United States of America)',1,1,0),(43494,29691,143730,'Whitesboro','United States of America','US','Whitesboro (United States of America)',1,1,0),(43495,34182,143731,'Wieden','Germany','DE','Wieden (Germany)',1,1,0),(43496,0,143732,'Wiefelstede','Germany','DE','Wiefelstede (Germany)',1,1,0),(43497,29722,143733,'Wiehl','Germany','DE','Wiehl (Germany)',1,1,0),(43498,0,143734,'Wierzenica','Poland','PL','Wierzenica (Poland)',1,1,0),(43499,0,143735,'Wiesenburg','Germany','DE','Wiesenburg (Germany)',1,1,0),(43500,0,143736,'Wijk bij Duurstede','Netherlands','NL','Wijk bij Duurstede (Netherlands)',1,1,0),(43501,0,143737,'Wildemann','Germany','DE','Wildemann (Germany)',1,1,0),(43502,29751,143738,'Wilderness','South Africa','ZA','Wilderness (South Africa)',1,1,0),(43503,0,143739,'Wilhelmsthal','Poland','PL','Wilhelmsthal (Poland)',1,1,0),(43504,0,143740,'Wilkasy','Poland','PL','Wilkasy (Poland)',1,1,0),(43505,0,143741,'Wilkes Barre','United States of America','US','Wilkes Barre (United States of America)',1,1,0),(43506,0,143742,'Williams','United States of America','US','Williams (United States of America)',1,1,0),(43507,0,143743,'Williamsburg','United States of America','US','Williamsburg (United States of America)',1,1,0),(43508,29792,143744,'Willits','United States of America','US','Willits (United States of America)',1,1,0),(43509,0,143745,'Winchester','New Zealand','NZ','Winchester (New Zealand)',1,1,0),(43510,29839,143746,'Windhoek','Namibia','NA','Windhoek (Namibia)',1,1,0),(43511,0,143747,'Winfield','United States of America','US','Winfield (United States of America)',1,1,0),(43512,29854,143748,'Wingst','Germany','DE','Wingst (Germany)',1,1,0),(43513,0,143749,'Winkel','France','FR','Winkel (France)',1,1,0),(43514,0,143750,'Winona','United States of America','US','Winona (United States of America)',1,1,0),(43515,0,143751,'Winterspelt','Germany','DE','Winterspelt (Germany)',1,1,0),(43516,0,143752,'Winthrop','United States of America','US','Winthrop (United States of America)',1,1,0),(43517,0,143753,'Wintrich','Germany','DE','Wintrich (Germany)',1,1,0),(43518,0,143754,'Winwardside','Bonaire Sint Eustatius and Saba',NULL,'Winwardside (Bonaire Sint Eustatius and Saba)',1,1,0),(43519,29906,143755,'Wissembourg','France','FR','Wissembourg (France)',1,1,0),(43520,0,143756,'Wi?mannsdorf','Germany','DE','Wi?mannsdorf (Germany)',1,1,0),(43521,0,143757,'Wittelte','Netherlands','NL','Wittelte (Netherlands)',1,1,0),(43522,0,143758,'Wittenbeck','Germany','DE','Wittenbeck (Germany)',1,1,0),(43523,29924,143759,'Witteveen','Netherlands','NL','Witteveen (Netherlands)',1,1,0),(43524,29929,143760,'Wladyslawowo','Poland','PL','Wladyslawowo (Poland)',1,1,0),(43525,0,143761,'Wohlenberg','Germany','DE','Wohlenberg (Germany)',1,1,0),(43526,29949,143762,'Wolfheze','Netherlands','NL','Wolfheze (Netherlands)',1,1,0),(43527,0,143763,'Wolfsburg-Unkeroda','Germany','DE','Wolfsburg-Unkeroda (Germany)',1,1,0),(43528,0,143764,'Wolfurt','Austria','AT','Wolfurt (Austria)',1,1,0),(43529,29952,143765,'Wolfville','Canada','CA','Wolfville (Canada)',1,1,0),(43530,0,143766,'Wolkenstein','Germany','DE','Wolkenstein (Germany)',1,1,0),(43531,0,143767,'Wolkersdorf im Weinviertel','Austria','AT','Wolkersdorf im Weinviertel (Austria)',1,1,0),(43532,0,143768,'Wollstein','Germany','DE','Wollstein (Germany)',1,1,0),(43533,0,143769,'Woodbury','United States of America','US','Woodbury (United States of America)',1,1,0),(43534,29976,143770,'Woodcliff Lake','United States of America','US','Woodcliff Lake (United States of America)',1,1,0),(43535,0,143771,'Wooler','United Kingdom','UK','Wooler (United Kingdom)',1,1,0),(43536,0,143772,'Workum','Netherlands','NL','Workum (Netherlands)',1,1,0),(43537,0,143773,'Worliny','Poland','PL','Worliny (Poland)',1,1,0),(43538,30039,143774,'Wremen','Germany','DE','Wremen (Germany)',1,1,0),(43539,0,143775,'Wrexham','United Kingdom','UK','Wrexham (United Kingdom)',1,1,0),(43540,30047,143776,'Wroclaw','Poland','PL','Wroclaw (Poland)',1,1,0),(43541,30058,143777,'Wuhai','China','CN','Wuhai (China)',1,1,0),(43542,30059,143778,'Wuhan','China','CN','Wuhan (China)',1,1,0),(43543,0,143779,'Wurmlingen','Germany','DE','Wurmlingen (Germany)',1,1,0),(43544,0,143780,'Wutha-Farnroda','Germany','DE','Wutha-Farnroda (Germany)',1,1,0),(43545,0,143781,'Wuyi Shan','China','CN','Wuyi Shan (China)',1,1,0),(43546,30079,143782,'Wuzhishan','China','CN','Wuzhishan (China)',1,1,0),(43547,0,143783,'Wyk','Germany','DE','Wyk (Germany)',1,1,0),(43548,30118,143784,'Xianju','China','CN','Xianju (China)',1,1,0),(43549,0,143785,'Xiantao','China','CN','Xiantao (China)',1,1,0),(43550,0,143786,'Xilin Hot','China','CN','Xilin Hot (China)',1,1,0),(43551,0,143787,'Xinmi','China','CN','Xinmi (China)',1,1,0),(43552,0,143788,'Xitta','Italy','IT','Xitta (Italy)',1,1,0),(43553,30143,143789,'Xuchang','China','CN','Xuchang (China)',1,1,0),(43554,0,143790,'Xunqueira De Espadanedo','Spain','ES','Xunqueira De Espadanedo (Spain)',1,1,0),(43555,30156,143791,'Yakima','United States of America','US','Yakima (United States of America)',1,1,0),(43556,30162,143792,'Yallingup','Australia','AU','Yallingup (Australia)',1,1,0),(43557,30177,143793,'Yampa','United States of America','US','Yampa (United States of America)',1,1,0),(43558,30183,143794,'Yanbu','Saudi Arabia','SA','Yanbu (Saudi Arabia)',1,1,0),(43559,0,143795,'Yangchun','China','CN','Yangchun (China)',1,1,0),(43560,30190,143796,'Yangsan','South Korea','KR','Yangsan (South Korea)',1,1,0),(43561,30202,143797,'Yaounde','Cameroon','CM','Yaounde (Cameroon)',1,1,0),(43562,30233,143799,'Yecla','Spain','ES','Yecla (Spain)',1,1,0),(43563,0,143800,'Yeni Foca','Turkey','TR','Yeni Foca (Turkey)',1,1,0),(43564,30249,143801,'Yeppoon','Australia','AU','Yeppoon (Australia)',1,1,0),(43565,30257,143802,'Yessod Hamaa\'la','Israel','IL','Yessod Hamaa\'la (Israel)',1,1,0),(43566,0,143803,'Yeysk','Russia','RU','Yeysk (Russia)',1,1,0),(43567,30269,143804,'Yining','China','CN','Yining (China)',1,1,0),(43568,0,143805,'Ylitornio','Finland','FI','Ylitornio (Finland)',1,1,0),(43569,0,143806,'York Beach','United States of America','US','York Beach (United States of America)',1,1,0),(43570,0,143807,'Yosemite National Park','United States of America','US','Yosemite National Park (United States of America)',1,1,0),(43571,30310,143808,'Ypsilanti','United States of America','US','Ypsilanti (United States of America)',1,1,0),(43572,30311,143809,'Yreka','United States of America','US','Yreka (United States of America)',1,1,0),(43573,0,143810,'Ytterby','Sweden','SE','Ytterby (Sweden)',1,1,0),(43574,30324,143811,'Yufu','Japan','JP','Yufu (Japan)',1,1,0),(43575,30339,143812,'Yunlin','Taiwan','TW','Yunlin (Taiwan)',1,1,0),(43576,0,143813,'Yunotsu','Japan','JP','Yunotsu (Japan)',1,1,0),(43577,0,143814,'yy Berlinchen (Barlinek ?)','Germany','DE','yy Berlinchen (Barlinek ?) (Germany)',1,1,0),(43578,0,143815,'Zabeltitz','Germany','DE','Zabeltitz (Germany)',1,1,0),(43579,0,143816,'Zaberfeld','Germany','DE','Zaberfeld (Germany)',1,1,0),(43580,0,143817,'Zafferana','Italy','IT','Zafferana (Italy)',1,1,0),(43581,30368,143818,'Zagora','Morocco','MA','Zagora (Morocco)',1,1,0),(43582,30375,143819,'Zahara de los Atunes','Spain','ES','Zahara de los Atunes (Spain)',1,1,0),(43583,0,143820,'Zamardi','Hungary','HU','Zamardi (Hungary)',1,1,0),(43584,0,143821,'Zams bei Landeck','Austria','AT','Zams bei Landeck (Austria)',1,1,0),(43585,0,143822,'Zanca','Italy','IT','Zanca (Italy)',1,1,0),(43586,0,143823,'Zaniemysl','Poland','PL','Zaniemysl (Poland)',1,1,0),(43587,30410,143824,'Zapata','United States of America','US','Zapata (United States of America)',1,1,0),(43588,30421,143825,'Zaros','Greece','GR','Zaros (Greece)',1,1,0),(43589,30423,143826,'Zatec','Czech Republic','CZ','Zatec (Czech Republic)',1,1,0),(43590,0,143827,'Zbiroh','Czech Republic','CZ','Zbiroh (Czech Republic)',1,1,0),(43591,0,143828,'Zdikov','Czech Republic','CZ','Zdikov (Czech Republic)',1,1,0),(43592,30434,143829,'Zeehan','Australia','AU','Zeehan (Australia)',1,1,0),(43593,0,143830,'Zeil am Main','Germany','DE','Zeil am Main (Germany)',1,1,0),(43594,0,143831,'Zeitlofs','Germany','DE','Zeitlofs (Germany)',1,1,0),(43595,0,143832,'Zelenogorsk','Russia','RU','Zelenogorsk (Russia)',1,1,0),(43596,30439,143833,'Zelezna Ruda','Czech Republic','CZ','Zelezna Ruda (Czech Republic)',1,1,0),(43597,0,143834,'Zeliezovce','Slovakia','SK','Zeliezovce (Slovakia)',1,1,0),(43598,0,143835,'Zellberg','Austria','AT','Zellberg (Austria)',1,1,0),(43599,0,143836,'Zellingen','Germany','DE','Zellingen (Germany)',1,1,0),(43600,0,143837,'Zendscheid','Germany','DE','Zendscheid (Germany)',1,1,0),(43601,0,143838,'Zenica','Bosnia and Herzegowina','BA','Zenica (Bosnia and Herzegowina)',1,1,0),(43602,30445,143839,'Zephyrhills','United States of America','US','Zephyrhills (United States of America)',1,1,0),(43603,0,143840,'Zerbst (Anhalt)','Germany','DE','Zerbst (Anhalt) (Germany)',1,1,0),(43604,0,143841,'Zernitz-Lohm','Germany','DE','Zernitz-Lohm (Germany)',1,1,0),(43605,30455,143842,'Zevenaar','Netherlands','NL','Zevenaar (Netherlands)',1,1,0),(43606,30462,143843,'Zhangjiagang','China','CN','Zhangjiagang (China)',1,1,0),(43607,30463,143844,'Zhangjiajie','China','CN','Zhangjiajie (China)',1,1,0),(43608,0,143845,'Zhucheng','China','CN','Zhucheng (China)',1,1,0),(43609,30487,143846,'Zielona Gora','Poland','PL','Zielona Gora (Poland)',1,1,0),(43610,30493,143847,'Ziguinchor','Senegal','SN','Ziguinchor (Senegal)',1,1,0),(43611,30506,143848,'Zirndorf','Germany','DE','Zirndorf (Germany)',1,1,0),(43612,30515,143849,'Zocca','Italy','IT','Zocca (Italy)',1,1,0),(43613,0,143850,'Zohar Hot Springs','Israel','IL','Zohar Hot Springs (Israel)',1,1,0),(43614,34206,143851,'Zola Predosa','Italy','IT','Zola Predosa (Italy)',1,1,0),(43615,30520,143852,'Zollikofen','Switzerland','CH','Zollikofen (Switzerland)',1,1,0),(43616,0,143853,'Zonhoven','Belgium','BE','Zonhoven (Belgium)',1,1,0),(43617,0,143854,'Zoutelande','Netherlands','NL','Zoutelande (Netherlands)',1,1,0),(43618,30553,143855,'Zuzenhausen','Germany','DE','Zuzenhausen (Germany)',1,1,0),(43619,30562,143856,'Zwijndrecht','Netherlands','NL','Zwijndrecht (Netherlands)',1,1,0),(43620,0,143857,'Zygi','Cyprus','CY','Zygi (Cyprus)',1,1,0),(43621,0,143858,'Zgierz','Poland','PL','Zgierz (Poland)',1,1,0),(43622,30467,143859,'Zhaoqing','China','CN','Zhaoqing (China)',1,1,0),(43623,30469,143860,'Zhdeniyevo','Ukraine','UA','Zhdeniyevo (Ukraine)',1,1,0),(43624,30471,143861,'Zhengzhou','China','CN','Zhengzhou (China)',1,1,0),(43625,30482,143862,'Zhouzhuang','China','CN','Zhouzhuang (China)',1,1,0),(43626,30491,143863,'Zighy Bay','Oman','OM','Zighy Bay (Oman)',1,1,0),(43627,0,143864,'Zimbali','South Africa','ZA','Zimbali (South Africa)',1,1,0),(43628,0,143865,'Zimmerau','Germany','DE','Zimmerau (Germany)',1,1,0),(43629,30504,143866,'Zirchow','Germany','DE','Zirchow (Germany)',1,1,0),(43630,0,143867,'Zitundo','Mozambique','MZ','Zitundo (Mozambique)',1,1,0),(43631,0,143868,'Ziyang','China','CN','Ziyang (China)',1,1,0),(43632,0,143869,'Zlatibor','Serbia','RS','Zlatibor (Serbia)',1,1,0),(43633,0,143870,'Zoldo Alto','Italy','IT','Zoldo Alto (Italy)',1,1,0),(43634,0,143871,'Zorbig','Germany','DE','Zorbig (Germany)',1,1,0),(43635,0,143872,'Zorgvlied','Netherlands','NL','Zorgvlied (Netherlands)',1,1,0),(43636,30531,143873,'Zuera','Spain','ES','Zuera (Spain)',1,1,0),(43637,30533,143874,'Zug','Switzerland','CH','Zug (Switzerland)',1,1,0),(43638,0,143875,'Zuidzande','Netherlands','NL','Zuidzande (Netherlands)',1,1,0),(43639,0,143876,'Zukowo','Poland','PL','Zukowo (Poland)',1,1,0),(43640,30551,143877,'Zusmarshausen','Germany','DE','Zusmarshausen (Germany)',1,1,0),(43641,30552,143878,'Zutphen','Netherlands','NL','Zutphen (Netherlands)',1,1,0),(43642,0,143879,'Zwenkau','Germany','DE','Zwenkau (Germany)',1,1,0),(43643,0,143880,'Zwenzow','Germany','DE','Zwenzow (Germany)',1,1,0),(43644,30090,143881,'Wynyard','Australia','AU','Wynyard (Australia)',1,1,0),(43645,30094,143882,'Wyomissing','United States of America','US','Wyomissing (United States of America)',1,1,0),(43646,0,143883,'Xingyi','China','CN','Xingyi (China)',1,1,0),(43647,30134,143884,'Xitang','China','CN','Xitang (China)',1,1,0),(43648,30141,143885,'Xpu-Ha','Mexico','MX','Xpu-Ha (Mexico)',1,1,0),(43649,0,143886,'Y Felinheli','United Kingdom','UK','Y Felinheli (United Kingdom)',1,1,0),(43650,0,143887,'Yakushima Island','Japan','JP','Yakushima Island (Japan)',1,1,0),(43651,30171,143888,'Yamanouchi','Japan','JP','Yamanouchi (Japan)',1,1,0),(43652,0,143889,'Yandina','Australia','AU','Yandina (Australia)',1,1,0),(43653,0,143890,'Yangquan','China','CN','Yangquan (China)',1,1,0),(43654,0,143891,'Yarm','United Kingdom','UK','Yarm (United Kingdom)',1,1,0),(43655,30228,143892,'Yazd','Iran','IR','Yazd (Iran)',1,1,0),(43656,0,143893,'Yeghegnadzor','Armenia','AM','Yeghegnadzor (Armenia)',1,1,0),(43657,0,143894,'Yelverton','United Kingdom','UK','Yelverton (United Kingdom)',1,1,0),(43658,0,143895,'Yennadio','Greece','GR','Yennadio (Greece)',1,1,0),(43659,30251,143896,'Yerevan','Armenia','AM','Yerevan (Armenia)',1,1,0),(43660,0,143897,'Yesilovacik','Turkey','TR','Yesilovacik (Turkey)',1,1,0),(43661,30268,143898,'Yinchuan','China','CN','Yinchuan (China)',1,1,0),(43662,0,143899,'Yongzhou','China','CN','Yongzhou (China)',1,1,0),(43663,0,143900,'York','Australia','AU','York (Australia)',1,1,0),(43664,30301,143901,'Young','Australia','AU','Young (Australia)',1,1,0),(43665,30308,143902,'Yozgat','Turkey','TR','Yozgat (Turkey)',1,1,0),(43666,30312,143903,'Yspertal','Austria','AT','Yspertal (Austria)',1,1,0),(43667,30314,143904,'Ystad','Sweden','SE','Ystad (Sweden)',1,1,0),(43668,30316,143905,'Yuba City','United States of America','US','Yuba City (United States of America)',1,1,0),(43669,30336,143906,'Yungaburra','Australia','AU','Yungaburra (Australia)',1,1,0),(43670,30344,143907,'Yutz','France','FR','Yutz (France)',1,1,0),(43671,30347,143908,'Yuzawa','Japan','JP','Yuzawa (Japan)',1,1,0),(43672,30353,143909,'Zaandam','Netherlands','NL','Zaandam (Netherlands)',1,1,0),(43673,0,143910,'Zab','Poland','PL','Zab (Poland)',1,1,0),(43674,30363,143911,'Zachary','United States of America','US','Zachary (United States of America)',1,1,0),(43675,0,143912,'Zagori-Berge','Greece','GR','Zagori-Berge (Greece)',1,1,0),(43676,0,143913,'Zajecar','Serbia','RS','Zajecar (Serbia)',1,1,0),(43677,0,143914,'Zalacsany','Hungary','HU','Zalacsany (Hungary)',1,1,0),(43678,30395,143915,'Zaltbommel','Netherlands','NL','Zaltbommel (Netherlands)',1,1,0),(43679,0,143916,'Zante','Greece','GR','Zante (Greece)',1,1,0),(43680,30412,143917,'Zapopan','Mexico','MX','Zapopan (Mexico)',1,1,0),(43681,0,143918,'Zary','Poland','PL','Zary (Poland)',1,1,0),(43682,0,143919,'Zas','Spain','ES','Zas (Spain)',1,1,0),(43683,0,143920,'Zeanuri','Spain','ES','Zeanuri (Spain)',1,1,0),(43684,0,143921,'Zegrze','Poland','PL','Zegrze (Poland)',1,1,0),(43685,30437,143922,'Zeist','Netherlands','NL','Zeist (Netherlands)',1,1,0),(43686,0,143923,'Zelzate','Belgium','BE','Zelzate (Belgium)',1,1,0),(43687,30448,143924,'Zermatt','Switzerland','CH','Zermatt (Switzerland)',1,1,0),(43688,30451,143925,'Zestoa','Spain','ES','Zestoa (Spain)',1,1,0),(43689,30452,143926,'Zeulenroda','Germany','DE','Zeulenroda (Germany)',1,1,0),(43690,30456,143927,'Zevenbergen','Netherlands','NL','Zevenbergen (Netherlands)',1,1,0),(43691,0,143928,'Zgornja Polskava','Slovenia','SI','Zgornja Polskava (Slovenia)',1,1,0),(43692,30464,143929,'Zhangye','China','CN','Zhangye (China)',1,1,0),(43693,0,143930,'Zhongba','China','CN','Zhongba (China)',1,1,0),(43694,0,143931,'Zhumadian','China','CN','Zhumadian (China)',1,1,0),(43695,0,143932,'Ziano','Italy','IT','Ziano (Italy)',1,1,0),(43696,30490,143933,'Ziesar','Germany','DE','Ziesar (Germany)',1,1,0),(43697,0,143934,'Zion National Park','United States of America','US','Zion National Park (United States of America)',1,1,0),(43698,0,143935,'Zipf','Austria','AT','Zipf (Austria)',1,1,0),(43699,0,143936,'Zirc-Szarvaskut','Hungary','HU','Zirc-Szarvaskut (Hungary)',1,1,0),(43700,0,143937,'Zirkow','Germany','DE','Zirkow (Germany)',1,1,0),(43701,0,143938,'Zizers','Switzerland','CH','Zizers (Switzerland)',1,1,0),(43702,30525,143939,'Zory','Poland','PL','Zory (Poland)',1,1,0),(43703,0,143940,'Zuchwil','Switzerland','CH','Zuchwil (Switzerland)',1,1,0),(43704,0,143941,'Zulu Nyala Game','South Africa','ZA','Zulu Nyala Game (South Africa)',1,1,0),(43705,0,143942,'Zwartsluis','Netherlands','NL','Zwartsluis (Netherlands)',1,1,0),(43706,0,143943,'Zwentendorf an der Donau','Austria','AT','Zwentendorf an der Donau (Austria)',1,1,0),(43707,30560,143944,'Zwickau','Germany','DE','Zwickau (Germany)',1,1,0),(43708,0,143945,'Armagh','United Kingdom','UK','Armagh (United Kingdom)',1,1,0),(43709,0,143946,'Armavir','Russia','RU','Armavir (Russia)',1,1,0),(43710,1440,143947,'Armenia','Colombia','CO','Armenia (Colombia)',1,1,0),(43711,1441,143948,'Armenistis','Greece','GR','Armenistis (Greece)',1,1,0),(43712,0,143949,'Arnemuiden','Netherlands','NL','Arnemuiden (Netherlands)',1,1,0),(43713,0,143950,'Arnstorf','Germany','DE','Arnstorf (Germany)',1,1,0),(43714,1484,143951,'Arpino','Italy','IT','Arpino (Italy)',1,1,0),(43715,1492,143952,'Arreau','France','FR','Arreau (France)',1,1,0),(43716,1500,143953,'Arroyo','Spain','ES','Arroyo (Spain)',1,1,0),(43717,1512,143954,'Artena','Italy','IT','Artena (Italy)',1,1,0),(43718,0,143955,'Arucas','Spain','ES','Arucas (Spain)',1,1,0),(43719,0,143956,'Arvier','Italy','IT','Arvier (Italy)',1,1,0),(43720,1543,143957,'Arzachena','Italy','IT','Arzachena (Italy)',1,1,0),(43721,0,143958,'Arzl','Austria','AT','Arzl (Austria)',1,1,0),(43722,1552,143959,'Asan','South Korea','KR','Asan (South Korea)',1,1,0),(43723,1561,143960,'Ascheberg','Germany','DE','Ascheberg (Germany)',1,1,0),(43724,1570,143961,'Ascutney','United States of America','US','Ascutney (United States of America)',1,1,0),(43725,1572,143962,'Asendorf','Germany','DE','Asendorf (Germany)',1,1,0),(43726,0,143963,'Ashbourne','United Kingdom','UK','Ashbourne (United Kingdom)',1,1,0),(43727,0,143964,'Ashby-de-la-Zouch','United Kingdom','UK','Ashby-de-la-Zouch (United Kingdom)',1,1,0),(43728,1602,143965,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(43729,0,143966,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(43730,0,143967,'Ashland','United States of America','US','Ashland (United States of America)',1,1,0),(43731,0,143968,'Asni','Morocco','MA','Asni (Morocco)',1,1,0),(43732,0,143969,'Aspa Bruk','Sweden','SE','Aspa Bruk (Sweden)',1,1,0),(43733,0,143970,'Assis','Brazil','BR','Assis (Brazil)',1,1,0),(43734,1646,143971,'Assmannshausen','Germany','DE','Assmannshausen (Germany)',1,1,0),(43735,0,143972,'Astakeri','Greece','GR','Astakeri (Greece)',1,1,0),(43736,1650,143973,'Astana','Kazakhstan','KZ','Astana (Kazakhstan)',1,1,0),(43737,1668,143974,'Atarfe','Spain','ES','Atarfe (Spain)',1,1,0),(43738,1681,143975,'Athens','United States of America','US','Athens (United States of America)',1,1,0),(43739,0,143976,'Atherstone','United Kingdom','UK','Atherstone (United Kingdom)',1,1,0),(43740,1687,143977,'Athis-Mons','France','FR','Athis-Mons (France)',1,1,0),(43741,1688,143978,'Athlone','Ireland','IE','Athlone (Ireland)',1,1,0),(43742,1694,143979,'Athy','Ireland','IE','Athy (Ireland)',1,1,0),(43743,1695,143980,'Atibaia','Brazil','BR','Atibaia (Brazil)',1,1,0),(43744,1697,143981,'Atitlan','Guatemala','GT','Atitlan (Guatemala)',1,1,0),(43745,1701,143982,'Atkins','United States of America','US','Atkins (United States of America)',1,1,0),(43746,1704,143983,'Atlanta','United States of America','US','Atlanta (United States of America)',1,1,0),(43747,1706,143984,'Atlantic','United States of America','US','Atlantic (United States of America)',1,1,0),(43748,1709,143985,'Atlixco','Mexico','MX','Atlixco (Mexico)',1,1,0),(43749,1724,143986,'Attenkirchen','Germany','DE','Attenkirchen (Germany)',1,1,0),(43750,1737,143987,'Aubais','France','FR','Aubais (France)',1,1,0),(43751,1743,143988,'Aubignan','France','FR','Aubignan (France)',1,1,0),(43752,1746,143989,'Auburn','United States of America','US','Auburn (United States of America)',1,1,0),(43753,0,143990,'Auchterader','United Kingdom','UK','Auchterader (United Kingdom)',1,1,0),(43754,0,143991,'Auderath','Germany','DE','Auderath (Germany)',1,1,0),(43755,0,143992,'Audincourt','France','FR','Audincourt (France)',1,1,0),(43756,1756,143993,'Audrieu','France','FR','Audrieu (France)',1,1,0),(43757,0,143994,'Auerstedt','Germany','DE','Auerstedt (Germany)',1,1,0),(43758,0,143995,'Auetal','Germany','DE','Auetal (Germany)',1,1,0),(43759,1768,143996,'Augusta','Australia','AU','Augusta (Australia)',1,1,0),(43760,1767,143997,'Augusta','Italy','IT','Augusta (Italy)',1,1,0),(43761,1769,143998,'Augustenborg','Denmark','DK','Augustenborg (Denmark)',1,1,0),(43762,1789,143999,'Aurach','Germany','DE','Aurach (Germany)',1,1,0),(43763,0,144000,'Auriac-du-Perigord','France','FR','Auriac-du-Perigord (France)',1,1,0),(43764,0,144001,'Aurignac','France','FR','Aurignac (France)',1,1,0),(43765,1795,144002,'Aurillac','France','FR','Aurillac (France)',1,1,0),(43766,1801,144003,'Aurora','United States of America','US','Aurora (United States of America)',1,1,0),(43767,1804,144004,'Ausserberg','Switzerland','CH','Ausserberg (Switzerland)',1,1,0),(43768,0,144005,'Au?ervillgraten','Austria','AT','Au?ervillgraten (Austria)',1,1,0),(43769,1807,144006,'Austell','United States of America','US','Austell (United States of America)',1,1,0),(43770,1809,144007,'Austin','United States of America','US','Austin (United States of America)',1,1,0),(43771,1812,144008,'Austintown','United States of America','US','Austintown (United States of America)',1,1,0),(43772,1825,144009,'Avalon','United States of America','US','Avalon (United States of America)',1,1,0),(43773,1835,144010,'Avella','United States of America','US','Avella (United States of America)',1,1,0),(43774,1840,144011,'Avenches','Switzerland','CH','Avenches (Switzerland)',1,1,0),(43775,1850,144012,'Avetrana','Italy','IT','Avetrana (Italy)',1,1,0),(43776,1859,144013,'Avigliana','Italy','IT','Avigliana (Italy)',1,1,0),(43777,1860,144014,'Avignon','France','FR','Avignon (France)',1,1,0),(43778,0,144015,'Avliotes','Greece','GR','Avliotes (Greece)',1,1,0),(43779,1874,144016,'Avon','United States of America','US','Avon (United States of America)',1,1,0),(43780,1884,144017,'Avry-devant-Pont','Switzerland','CH','Avry-devant-Pont (Switzerland)',1,1,0),(43781,1903,144018,'Aydin','Turkey','TR','Aydin (Turkey)',1,1,0),(43782,1907,144019,'Ayerbe','Spain','ES','Ayerbe (Spain)',1,1,0),(43783,1918,144020,'Ayna','Spain','ES','Ayna (Spain)',1,1,0),(43784,0,144021,'Ayora','Spain','ES','Ayora (Spain)',1,1,0),(43785,1928,144022,'Ayvalik','Turkey','TR','Ayvalik (Turkey)',1,1,0),(43786,0,144023,'Azay-le-Ferron','France','FR','Azay-le-Ferron (France)',1,1,0),(43787,1946,144024,'Azuqueca de Henares','Spain','ES','Azuqueca de Henares (Spain)',1,1,0),(43788,1951,144025,'Baa Atoll','Maldives','MV','Baa Atoll (Maldives)',1,1,0),(43789,0,144026,'Babb','United States of America','US','Babb (United States of America)',1,1,0),(43790,0,144027,'Bacina','Croatia','HR','Bacina (Croatia)',1,1,0),(43791,0,144028,'Backnang','Germany','DE','Backnang (Germany)',1,1,0),(43792,0,144029,'Bad Blenhorst','Germany','DE','Bad Blenhorst (Germany)',1,1,0),(43793,0,144030,'Bad Blumau','Austria','AT','Bad Blumau (Austria)',1,1,0),(43794,0,144031,'Bad Boll','Germany','DE','Bad Boll (Germany)',1,1,0),(43795,0,144032,'Bad Bruckenau','Germany','DE','Bad Bruckenau (Germany)',1,1,0),(43796,0,144033,'Bad Camberg','Germany','DE','Bad Camberg (Germany)',1,1,0),(43797,0,144034,'Bad Driburg','Germany','DE','Bad Driburg (Germany)',1,1,0),(43798,0,144035,'Bad Duben','Germany','DE','Bad Duben (Germany)',1,1,0),(43799,0,144036,'Bad Durrnberg','Austria','AT','Bad Durrnberg (Austria)',1,1,0),(43800,0,144037,'Bad Gandersheim','Germany','DE','Bad Gandersheim (Germany)',1,1,0),(43801,0,144038,'Bad Herrenalb','Germany','DE','Bad Herrenalb (Germany)',1,1,0),(43802,0,144039,'Bad Kostritz','Germany','DE','Bad Kostritz (Germany)',1,1,0),(43803,0,144040,'Bad Laer','Germany','DE','Bad Laer (Germany)',1,1,0),(43804,0,144041,'Bad Liebenwerda','Germany','DE','Bad Liebenwerda (Germany)',1,1,0),(43805,0,144042,'Bad Lippspringe','Germany','DE','Bad Lippspringe (Germany)',1,1,0),(43806,0,144043,'Bad Pirawarth','Austria','AT','Bad Pirawarth (Austria)',1,1,0),(43807,0,144044,'Bad Pistyan','Slovakia','SK','Bad Pistyan (Slovakia)',1,1,0),(43808,0,144045,'Bad Sackingen','Germany','DE','Bad Sackingen (Germany)',1,1,0),(43809,0,144046,'Bad Saulgau','Germany','DE','Bad Saulgau (Germany)',1,1,0),(43810,0,144047,'Bad Schwartau','Germany','DE','Bad Schwartau (Germany)',1,1,0),(43811,0,144048,'Bad Sobernheim','Germany','DE','Bad Sobernheim (Germany)',1,1,0),(43812,0,144049,'Bad Soden-Salmunster','Germany','DE','Bad Soden-Salmunster (Germany)',1,1,0),(43813,0,144050,'Bad Vigaun','Austria','AT','Bad Vigaun (Austria)',1,1,0),(43814,0,144051,'Bad Wilsnack','Germany','DE','Bad Wilsnack (Germany)',1,1,0),(43815,0,144052,'Bad Zurzach','Switzerland','CH','Bad Zurzach (Switzerland)',1,1,0),(43816,0,144053,'Badacsonytomaj','Hungary','HU','Badacsonytomaj (Hungary)',1,1,0),(43817,0,144054,'Badbergen','Germany','DE','Badbergen (Germany)',1,1,0),(43818,0,144055,'Baderna','Croatia','HR','Baderna (Croatia)',1,1,0),(43819,1994,144056,'Badesi','Italy','IT','Badesi (Italy)',1,1,0),(43820,0,144057,'Badia a Ruoti','Italy','IT','Badia a Ruoti (Italy)',1,1,0),(43821,0,144058,'Baena','Spain','ES','Baena (Spain)',1,1,0),(43822,2006,144059,'Baeza','Spain','ES','Baeza (Spain)',1,1,0),(43823,0,144060,'Baginton','United Kingdom','UK','Baginton (United Kingdom)',1,1,0),(43824,2020,144061,'Bagnaia','Italy','IT','Bagnaia (Italy)',1,1,0),(43825,0,144062,'Baia Chia','Italy','IT','Baia Chia (Italy)',1,1,0),(43826,0,144063,'Baie Longue','Saint Martin (French part)','MF','Baie Longue (Saint Martin (French part))',1,1,0),(43827,0,144064,'Baie-Trinite','Canada','CA','Baie-Trinite (Canada)',1,1,0),(43828,2075,144065,'Bain Boeuf','Mauritius','MU','Bain Boeuf (Mauritius)',1,1,0),(43829,0,144066,'Bain-de-Bretagne','France','FR','Bain-de-Bretagne (France)',1,1,0),(43830,0,144067,'Bakonybel','Hungary','HU','Bakonybel (Hungary)',1,1,0),(43831,0,144068,'Balapitiya','Sri Lanka','LK','Balapitiya (Sri Lanka)',1,1,0),(43832,2104,144069,'Balaruc-les-Bains','France','FR','Balaruc-les-Bains (France)',1,1,0),(43833,0,144070,'Balatonaliga','Hungary','HU','Balatonaliga (Hungary)',1,1,0),(43834,0,144071,'Balatonfenyves','Hungary','HU','Balatonfenyves (Hungary)',1,1,0),(43835,2113,144072,'Balatonlelle','Hungary','HU','Balatonlelle (Hungary)',1,1,0),(43836,2119,144073,'Balbriggan','Ireland','IE','Balbriggan (Ireland)',1,1,0),(43837,0,144074,'Bald Head Island','United States of America','US','Bald Head Island (United States of America)',1,1,0),(43838,2124,144075,'Baldenheim','France','FR','Baldenheim (France)',1,1,0),(43839,2131,144076,'Balestrand','Norway','NO','Balestrand (Norway)',1,1,0),(43840,0,144077,'Bali','Greece','GR','Bali (Greece)',1,1,0),(43841,2150,144078,'Ballandean','Australia','AU','Ballandean (Australia)',1,1,0),(43842,0,144079,'Ballantrae','United Kingdom','UK','Ballantrae (United Kingdom)',1,1,0),(43843,2167,144080,'Ballingeary','Ireland','IE','Ballingeary (Ireland)',1,1,0),(43844,0,144081,'Ballston','United States of America','US','Ballston (United States of America)',1,1,0),(43845,0,144082,'Ballyconneely','Ireland','IE','Ballyconneely (Ireland)',1,1,0),(43846,2205,144083,'Balsthal','Switzerland','CH','Balsthal (Switzerland)',1,1,0),(43847,0,144084,'Baltenii de Sus','Romania','RO','Baltenii de Sus (Romania)',1,1,0),(43848,0,144085,'Balve','Germany','DE','Balve (Germany)',1,1,0),(43849,0,144086,'Bamburgh','United Kingdom','UK','Bamburgh (United Kingdom)',1,1,0),(43850,0,144087,'Bammental','Germany','DE','Bammental (Germany)',1,1,0),(43851,0,144088,'Ban Rak Beach','Thailand','TH','Ban Rak Beach (Thailand)',1,1,0),(43852,0,144089,'Banagher','Ireland','IE','Banagher (Ireland)',1,1,0),(43853,2250,144090,'Banding Island','Malaysia','MY','Banding Island (Malaysia)',1,1,0),(43854,0,144091,'Bang Saphan','Thailand','TH','Bang Saphan (Thailand)',1,1,0),(43855,2266,144092,'Bangkok','Thailand','TH','Bangkok (Thailand)',1,1,0),(43856,2271,144093,'Banja Luka','Bosnia and Herzegowina','BA','Banja Luka (Bosnia and Herzegowina)',1,1,0),(43857,2272,144094,'Banjarmasin','Indonesia','ID','Banjarmasin (Indonesia)',1,1,0),(43858,0,144095,'Bannewitz','Germany','DE','Bannewitz (Germany)',1,1,0),(43859,2285,144096,'Banska Bystrica','Slovakia','SK','Banska Bystrica (Slovakia)',1,1,0),(43860,2296,144097,'Banyuwangi','Indonesia','ID','Banyuwangi (Indonesia)',1,1,0),(43861,2297,144098,'Banzkow','Germany','DE','Banzkow (Germany)',1,1,0),(43862,2315,144099,'Barahona','Dominican Republic','DO','Barahona (Dominican Republic)',1,1,0),(43863,2322,144100,'Baraqueville','France','FR','Baraqueville (France)',1,1,0),(43864,0,144101,'Barberino Val d\'Elsa','Italy','IT','Barberino Val d\'Elsa (Italy)',1,1,0),(43865,2342,144102,'Barberton','South Africa','ZA','Barberton (South Africa)',1,1,0),(43866,0,144103,'Barcenilla','Spain','ES','Barcenilla (Spain)',1,1,0),(43867,2372,144104,'Barentin','France','FR','Barentin (France)',1,1,0),(43868,0,144105,'Barhoft','Germany','DE','Barhoft (Germany)',1,1,0),(43869,0,144106,'Barjols','France','FR','Barjols (France)',1,1,0),(43870,2388,144107,'Barka','Oman','OM','Barka (Oman)',1,1,0),(43871,2391,144108,'Barkeyville','United States of America','US','Barkeyville (United States of America)',1,1,0),(43872,2397,144109,'Barletta','Italy','IT','Barletta (Italy)',1,1,0),(43873,0,144110,'Barnet','United Kingdom','UK','Barnet (United Kingdom)',1,1,0),(43874,0,144111,'Barnstaple','United Kingdom','UK','Barnstaple (United Kingdom)',1,1,0),(43875,0,144112,'Baro','Spain','ES','Baro (Spain)',1,1,0),(43876,2425,144113,'Barooga','Australia','AU','Barooga (Australia)',1,1,0),(43877,30575,144114,'Barr','France','FR','Barr (France)',1,1,0),(43878,0,144115,'Barranda','Spain','ES','Barranda (Spain)',1,1,0),(43879,2442,144116,'Barreiras','Brazil','BR','Barreiras (Brazil)',1,1,0),(43880,2466,144117,'Bartlesville','United States of America','US','Bartlesville (United States of America)',1,1,0),(43881,0,144118,'Bartlett','United States of America','US','Bartlett (United States of America)',1,1,0),(43882,2477,144119,'Barumini','Italy','IT','Barumini (Italy)',1,1,0),(43883,2481,144120,'Basalt','United States of America','US','Basalt (United States of America)',1,1,0),(43884,0,144121,'Bascara','Spain','ES','Bascara (Spain)',1,1,0),(43885,2494,144122,'Baska','Croatia','HR','Baska (Croatia)',1,1,0),(43886,0,144123,'Bassac','France','FR','Bassac (France)',1,1,0),(43887,0,144124,'Bastia Umbra','Italy','IT','Bastia Umbra (Italy)',1,1,0),(43888,2529,144125,'Batemans Bay','Australia','AU','Batemans Bay (Australia)',1,1,0),(43889,2530,144126,'Batesville','United States of America','US','Batesville (United States of America)',1,1,0),(43890,0,144127,'Batteaux Bay','Trinidad and Tobago','TT','Batteaux Bay (Trinidad and Tobago)',1,1,0),(43891,2549,144128,'Battle Creek','United States of America','US','Battle Creek (United States of America)',1,1,0),(43892,0,144129,'Battle Ground','United States of America','US','Battle Ground (United States of America)',1,1,0),(43893,0,144130,'Battle Harbour Island','Canada','CA','Battle Harbour Island (Canada)',1,1,0),(43894,2559,144131,'Baudette','United States of America','US','Baudette (United States of America)',1,1,0),(43895,0,144132,'Bay Island','Honduras','HN','Bay Island (Honduras)',1,1,0),(43896,2605,144133,'Bazincourt-Sur-Epte','France','FR','Bazincourt-Sur-Epte (France)',1,1,0),(43897,0,144134,'Bazna','Romania','RO','Bazna (Romania)',1,1,0),(43898,2607,144135,'Bazzano','Italy','IT','Bazzano (Italy)',1,1,0),(43899,0,144136,'Beattock','United Kingdom','UK','Beattock (United Kingdom)',1,1,0),(43900,2646,144137,'Beaumont','United States of America','US','Beaumont (United States of America)',1,1,0),(43901,0,144138,'Beaumont-de-Lomagne','France','FR','Beaumont-de-Lomagne (France)',1,1,0),(43902,0,144139,'Beauvoir sur Mer','France','FR','Beauvoir sur Mer (France)',1,1,0),(43903,0,144140,'Beauvoir',NULL,NULL,'Beauvoir ()',1,1,0),(43904,0,144141,'Beauvoorde','Belgium','BE','Beauvoorde (Belgium)',1,1,0),(43905,2667,144142,'Beblenheim','France','FR','Beblenheim (France)',1,1,0),(43906,0,144143,'Becici','Croatia','HR','Becici (Croatia)',1,1,0),(43907,0,144144,'Becov nad Teplou','Czech Republic','CZ','Becov nad Teplou (Czech Republic)',1,1,0),(43908,2680,144145,'Bedarra Island','Australia','AU','Bedarra Island (Australia)',1,1,0),(43909,0,144146,'Bedee','France','FR','Bedee (France)',1,1,0),(43910,0,144147,'Bednja','Croatia','HR','Bednja (Croatia)',1,1,0),(43911,0,144148,'Bedollo de Pine','Italy','IT','Bedollo de Pine (Italy)',1,1,0),(43912,0,144149,'Beeskow','Germany','DE','Beeskow (Germany)',1,1,0),(43913,2707,144150,'Beetsterzwaag','Netherlands','NL','Beetsterzwaag (Netherlands)',1,1,0),(43914,0,144151,'Begadan','France','FR','Begadan (France)',1,1,0),(43915,0,144152,'Behrendorf (Nordfriesland)','Germany','DE','Behrendorf (Nordfriesland) (Germany)',1,1,0),(43916,0,144153,'Behringen','Germany','DE','Behringen (Germany)',1,1,0),(43917,2726,144154,'Beijing','China','CN','Beijing (China)',1,1,0),(43918,0,144155,'Beinan','Taiwan','TW','Beinan (Taiwan)',1,1,0),(43919,2742,144156,'Bejaia','Algeria','DZ','Bejaia (Algeria)',1,1,0),(43920,0,144157,'Belalp','Switzerland','CH','Belalp (Switzerland)',1,1,0),(43921,2759,144158,'Beldibi','Turkey','TR','Beldibi (Turkey)',1,1,0),(43922,2765,144159,'Belfair','United States of America','US','Belfair (United States of America)',1,1,0),(43923,0,144160,'Beli','Croatia','HR','Beli (Croatia)',1,1,0),(43924,0,144161,'Belize City','Belize','BZ','Belize City (Belize)',1,1,0),(43925,2795,144162,'Bella Vista','United States of America','US','Bella Vista (United States of America)',1,1,0),(43926,2816,144163,'Bellegarde-sur-Valserine','France','FR','Bellegarde-sur-Valserine (France)',1,1,0),(43927,2821,144164,'Bellentre','France','FR','Bellentre (France)',1,1,0),(43928,2822,144165,'Bellerive-sur-Allier','France','FR','Bellerive-sur-Allier (France)',1,1,0),(43929,0,144166,'Belleville','United States of America','US','Belleville (United States of America)',1,1,0),(43930,0,144167,'Belleville','United States of America','US','Belleville (United States of America)',1,1,0),(43931,2858,144168,'Belmopan','Belize','BZ','Belmopan (Belize)',1,1,0),(43932,0,144169,'Belmullet','Ireland','IE','Belmullet (Ireland)',1,1,0),(43933,2859,144170,'Belo Horizonte','Brazil','BR','Belo Horizonte (Brazil)',1,1,0),(43934,0,144171,'Belokomiti','Greece','GR','Belokomiti (Greece)',1,1,0),(43935,2869,144172,'Beltsville','United States of America','US','Beltsville (United States of America)',1,1,0),(43936,0,144173,'Belturbet','Ireland','IE','Belturbet (Ireland)',1,1,0),(43937,2888,144174,'Benalmadena','Spain','ES','Benalmadena (Spain)',1,1,0),(43938,0,144175,'Benalmadena Costa','Spain','ES','Benalmadena Costa (Spain)',1,1,0),(43939,0,144176,'Benassal','Spain','ES','Benassal (Spain)',1,1,0),(43940,0,144177,'Benchijigua','Spain','ES','Benchijigua (Spain)',1,1,0),(43941,2901,144178,'Bene Vagienna','Italy','IT','Bene Vagienna (Italy)',1,1,0),(43942,2905,144179,'Benevento','Italy','IT','Benevento (Italy)',1,1,0),(43943,0,144180,'Bengel','Germany','DE','Bengel (Germany)',1,1,0),(43944,2916,144181,'Benicasim','Spain','ES','Benicasim (Spain)',1,1,0),(43945,0,144182,'Benimaurell / Banimaurell','Spain','ES','Benimaurell / Banimaurell (Spain)',1,1,0),(43946,0,144183,'Beni-Mellal','Morocco','MA','Beni-Mellal (Morocco)',1,1,0),(43947,2921,144184,'Benisano','Spain','ES','Benisano (Spain)',1,1,0),(43948,0,144185,'Benissoda','Spain','ES','Benissoda (Spain)',1,1,0),(43949,2935,144186,'Bensalem','United States of America','US','Bensalem (United States of America)',1,1,0),(43950,2937,144187,'Bensenville','United States of America','US','Bensenville (United States of America)',1,1,0),(43951,0,144188,'Benson','United States of America','US','Benson (United States of America)',1,1,0),(43952,2945,144189,'Benton','United States of America','US','Benton (United States of America)',1,1,0),(43953,2947,144190,'Bentonsport','United States of America','US','Bentonsport (United States of America)',1,1,0),(43954,2949,144191,'Bentota','Sri Lanka','LK','Bentota (Sri Lanka)',1,1,0),(43955,0,144192,'Beograd','Serbia','RS','Beograd (Serbia)',1,1,0),(43956,0,144193,'Bequia','St. Vincent & the Grenadines','VC','Bequia (St. Vincent & the Grenadines)',1,1,0),(43957,0,144194,'Berck-sur-Mer','France','FR','Berck-sur-Mer (France)',1,1,0),(43958,0,144195,'Berdorf','Luxembourg','LU','Berdorf (Luxembourg)',1,1,0),(43959,0,144196,'Berg am Starnberger See','Germany','DE','Berg am Starnberger See (Germany)',1,1,0),(43960,0,144197,'Berg En Dal','Netherlands','NL','Berg En Dal (Netherlands)',1,1,0),(43961,2975,144198,'Bergambacht','Netherlands','NL','Bergambacht (Netherlands)',1,1,0),(43962,0,144199,'Berge','Spain','ES','Berge (Spain)',1,1,0),(43963,0,144200,'Bergen op Zoom','Netherlands','NL','Bergen op Zoom (Netherlands)',1,1,0),(43964,2983,144201,'Bergerac','France','FR','Bergerac (France)',1,1,0),(43965,0,144202,'Berghausen','Germany','DE','Berghausen (Germany)',1,1,0),(43966,0,144203,'Bergun/Bravuogn','Switzerland','CH','Bergun/Bravuogn (Switzerland)',1,1,0),(43967,2994,144204,'Beriain','Spain','ES','Beriain (Spain)',1,1,0),(43968,2996,144205,'Berkane','Morocco','MA','Berkane (Morocco)',1,1,0),(43969,0,144206,'Bermatingen','Germany','DE','Bermatingen (Germany)',1,1,0),(43970,3007,144207,'Bermeo','Spain','ES','Bermeo (Spain)',1,1,0),(43971,0,144208,'Bernal','Mexico','MX','Bernal (Mexico)',1,1,0),(43972,0,144209,'Bernau on Chiemsee /Chiem Lake)','Germany','DE','Bernau on Chiemsee /Chiem Lake) (Germany)',1,1,0),(43973,0,144210,'Berndorf','Germany','DE','Berndorf (Germany)',1,1,0),(43974,0,144211,'Bernedo','Spain','ES','Bernedo (Spain)',1,1,0),(43975,0,144212,'Bernieres-sur-Mer','France','FR','Bernieres-sur-Mer (France)',1,1,0),(43976,3036,144213,'Berry','Australia','AU','Berry (Australia)',1,1,0),(43977,0,144214,'Berry Islands','Bahamas','BS','Berry Islands (Bahamas)',1,1,0),(43978,3049,144215,'Beruete','Spain','ES','Beruete (Spain)',1,1,0),(43979,0,144216,'Berxulle','Albania','AL','Berxulle (Albania)',1,1,0),(43980,0,144217,'Bestensee','Germany','DE','Bestensee (Germany)',1,1,0),(43981,3076,144218,'Bethany','United States of America','US','Bethany (United States of America)',1,1,0),(43982,0,144219,'Betina','Croatia','HR','Betina (Croatia)',1,1,0),(43983,0,144220,'Betten','Switzerland','CH','Betten (Switzerland)',1,1,0),(43984,3088,144221,'Bettles','United States of America','US','Bettles (United States of America)',1,1,0),(43985,0,144222,'Beulich','Germany','DE','Beulich (Germany)',1,1,0),(43986,3099,144223,'Bevagna','Italy','IT','Bevagna (Italy)',1,1,0),(43987,0,144224,'Beynac-et-Cazenac','France','FR','Beynac-et-Cazenac (France)',1,1,0),(43988,3117,144225,'Beynost','France','FR','Beynost (France)',1,1,0),(43989,3126,144226,'Bhaktapur','Nepal','NP','Bhaktapur (Nepal)',1,1,0),(43990,0,144231,'Biala Podlaska','Poland','PL','Biala Podlaska (Poland)',1,1,0),(43991,0,144232,'Bialy Dunajec','Poland','PL','Bialy Dunajec (Poland)',1,1,0),(43992,3158,144233,'Bibbiena','Italy','IT','Bibbiena (Italy)',1,1,0),(43993,3159,144234,'Bibbona','Italy','IT','Bibbona (Italy)',1,1,0),(43994,0,144235,'Biblis','Germany','DE','Biblis (Germany)',1,1,0),(43995,3166,144236,'Bicheno','Australia','AU','Bicheno (Australia)',1,1,0),(43996,0,144237,'Bichlbach','Austria','AT','Bichlbach (Austria)',1,1,0),(43997,0,144238,'Biedermannsdorf','Austria','AT','Biedermannsdorf (Austria)',1,1,0),(43998,0,144239,'Biedrusko','Poland','PL','Biedrusko (Poland)',1,1,0),(43999,3183,144240,'Biella','Italy','IT','Biella (Italy)',1,1,0),(44000,0,144241,'Biendorf','Germany','DE','Biendorf (Germany)',1,1,0),(44001,3189,144242,'Bierge','Spain','ES','Bierge (Spain)',1,1,0),(44002,0,144243,'Biesheim','France','FR','Biesheim (France)',1,1,0),(44003,0,144244,'Bievre','Belgium','BE','Bievre (Belgium)',1,1,0),(44004,3201,144245,'Biggera Waters','Australia','AU','Biggera Waters (Australia)',1,1,0),(44005,0,144246,'Bijagua de Upala','Costa Rica','CR','Bijagua de Upala (Costa Rica)',1,1,0),(44006,0,144248,'Bila Tremesna','Czech Republic','CZ','Bila Tremesna (Czech Republic)',1,1,0),(44007,0,144249,'Billdal','Sweden','SE','Billdal (Sweden)',1,1,0),(44008,0,144250,'Billerbeck','Germany','DE','Billerbeck (Germany)',1,1,0),(44009,0,144251,'Bininsatua','Spain','ES','Bininsatua (Spain)',1,1,0),(44010,0,144252,'Bippen','Germany','DE','Bippen (Germany)',1,1,0),(44011,3260,144253,'Bir El Bey','Tunisia','TN','Bir El Bey (Tunisia)',1,1,0),(44012,3264,144254,'Birchwood','United States of America','US','Birchwood (United States of America)',1,1,0),(44013,0,144255,'Birkenhead','United Kingdom','UK','Birkenhead (United Kingdom)',1,1,0),(44014,0,144256,'Bischoffsheim','France','FR','Bischoffsheim (France)',1,1,0),(44015,3291,144257,'Bischwihr','France','FR','Bischwihr (France)',1,1,0),(44016,3312,144258,'Bissendorf','Germany','DE','Bissendorf (Germany)',1,1,0),(44017,3314,144259,'Bistrita','Romania','RO','Bistrita (Romania)',1,1,0),(44018,0,144260,'Bitola','Macedonia','MK','Bitola (Macedonia)',1,1,0),(44019,3324,144261,'Bivio','Switzerland','CH','Bivio (Switzerland)',1,1,0),(44020,0,144262,'Bizau','Austria','AT','Bizau (Austria)',1,1,0),(44021,0,144263,'Bjarnarfjordur','Iceland','IS','Bjarnarfjordur (Iceland)',1,1,0),(44022,0,144264,'Bjorli','Norway','NO','Bjorli (Norway)',1,1,0),(44023,0,144265,'Black River','Jamaica','JM','Black River (Jamaica)',1,1,0),(44024,0,144266,'Blackpool','United Kingdom','UK','Blackpool (United Kingdom)',1,1,0),(44025,0,144267,'Blackwaterfoot','United Kingdom','UK','Blackwaterfoot (United Kingdom)',1,1,0),(44026,0,144268,'Blaesheim','France','FR','Blaesheim (France)',1,1,0),(44027,0,144269,'Blagoveshchensk','Russia','RU','Blagoveshchensk (Russia)',1,1,0),(44028,0,144270,'Blaimont','Belgium','BE','Blaimont (Belgium)',1,1,0),(44029,0,144271,'Blairsville','United States of America','US','Blairsville (United States of America)',1,1,0),(44030,3391,144272,'Blakeslee','United States of America','US','Blakeslee (United States of America)',1,1,0),(44031,3393,144273,'Blanchard','United States of America','US','Blanchard (United States of America)',1,1,0),(44032,0,144274,'Blanco','United States of America','US','Blanco (United States of America)',1,1,0),(44033,0,144275,'Blankenhain','Germany','DE','Blankenhain (Germany)',1,1,0),(44034,0,144276,'Blankenheim','Germany','DE','Blankenheim (Germany)',1,1,0),(44035,3406,144277,'Blanquefort','France','FR','Blanquefort (France)',1,1,0),(44036,0,144278,'Blavozy','France','FR','Blavozy (France)',1,1,0),(44037,3417,144279,'Bled','Slovenia','SI','Bled (Slovenia)',1,1,0),(44038,0,144280,'Bleneau','France','FR','Bleneau (France)',1,1,0),(44039,0,144281,'Blere','France','FR','Blere (France)',1,1,0),(44040,3444,144282,'Bloomington','United States of America','US','Bloomington (United States of America)',1,1,0),(44041,0,144283,'Blowing Point Village','Anguilla','AI','Blowing Point Village (Anguilla)',1,1,0),(44042,0,144284,'Blue Earth','United States of America','US','Blue Earth (United States of America)',1,1,0),(44043,0,144285,'Blue Eye','United States of America','US','Blue Eye (United States of America)',1,1,0),(44044,3460,144286,'Blue River','Canada','CA','Blue River (Canada)',1,1,0),(44045,0,144287,'Blythedale Beach','South Africa','ZA','Blythedale Beach (South Africa)',1,1,0),(44046,0,144288,'Boara Pisani','Italy','IT','Boara Pisani (Italy)',1,1,0),(44047,0,144289,'Boats','Boats Country',NULL,'Boats (Boats Country)',1,1,0),(44048,0,144290,'Bobbing','United Kingdom','UK','Bobbing (United Kingdom)',1,1,0),(44049,3488,144291,'Bobigny','France','FR','Bobigny (France)',1,1,0),(44050,0,144292,'Boca Arenal','Costa Rica','CR','Boca Arenal (Costa Rica)',1,1,0),(44051,3497,144293,'Boca del Rio','Mexico','MX','Boca del Rio (Mexico)',1,1,0),(44052,0,144294,'Boca Tapada','Costa Rica','CR','Boca Tapada (Costa Rica)',1,1,0),(44053,3499,144295,'Bocairent','Spain','ES','Bocairent (Spain)',1,1,0),(44054,3510,144296,'Bodega','United States of America','US','Bodega (United States of America)',1,1,0),(44055,3521,144297,'Bodrum','Turkey','TR','Bodrum (Turkey)',1,1,0),(44056,0,144298,'Bogazak','Turkey','TR','Bogazak (Turkey)',1,1,0),(44057,0,144299,'Bohmte','Germany','DE','Bohmte (Germany)',1,1,0),(44058,0,144300,'Bojonegoro','Indonesia','ID','Bojonegoro (Indonesia)',1,1,0),(44059,3594,144301,'Bollene','France','FR','Bollene (France)',1,1,0),(44060,0,144302,'Bolsterlang','Germany','DE','Bolsterlang (Germany)',1,1,0),(44061,3612,144303,'Bolton Landing','United States of America','US','Bolton Landing (United States of America)',1,1,0),(44062,0,144304,'Bolton-by-Bowland','United Kingdom','UK','Bolton-by-Bowland (United Kingdom)',1,1,0),(44063,3613,144305,'Bolu','Turkey','TR','Bolu (Turkey)',1,1,0),(44064,0,144307,'Bomlitz','Germany','DE','Bomlitz (Germany)',1,1,0),(44065,3624,144308,'Bonaduz','Switzerland','CH','Bonaduz (Switzerland)',1,1,0),(44066,0,144309,'Bondi Junction','Australia','AU','Bondi Junction (Australia)',1,1,0),(44067,3642,144310,'Bonifacio','France','FR','Bonifacio (France)',1,1,0),(44068,0,144311,'Bonndorf im Schwarzwald','Germany','DE','Bonndorf im Schwarzwald (Germany)',1,1,0),(44069,3654,144312,'Bonners Ferry','United States of America','US','Bonners Ferry (United States of America)',1,1,0),(44070,0,144313,'Bonnetage','France','FR','Bonnetage (France)',1,1,0),(44071,0,144314,'Boo de Pielagos','Spain','ES','Boo de Pielagos (Spain)',1,1,0),(44072,0,144315,'Boone','United States of America','US','Boone (United States of America)',1,1,0),(44073,0,144316,'Bophut Beach','Thailand','TH','Bophut Beach (Thailand)',1,1,0),(44074,3683,144317,'Boppard','Germany','DE','Boppard (Germany)',1,1,0),(44075,30598,144318,'Bordeaux','France','FR','Bordeaux (France)',1,1,0),(44076,0,144319,'Borello','Italy','IT','Borello (Italy)',1,1,0),(44077,0,144320,'Borgo a Mozzano','Italy','IT','Borgo a Mozzano (Italy)',1,1,0),(44078,0,144321,'Borgo Sant\'Agata','Italy','IT','Borgo Sant\'Agata (Italy)',1,1,0),(44079,0,144322,'Borgomaro','Italy','IT','Borgomaro (Italy)',1,1,0),(44080,0,144323,'Borik','Croatia','HR','Borik (Croatia)',1,1,0),(44081,0,144324,'Bork Havn','Denmark','DK','Bork Havn (Denmark)',1,1,0),(44082,0,144325,'Borrby','Sweden','SE','Borrby (Sweden)',1,1,0),(44083,0,144326,'Borreda','Spain','ES','Borreda (Spain)',1,1,0),(44084,0,144327,'Borstahusen','Sweden','SE','Borstahusen (Sweden)',1,1,0),(44085,0,144328,'Bosau','Germany','DE','Bosau (Germany)',1,1,0),(44086,0,144329,'Boscastle','United Kingdom','UK','Boscastle (United Kingdom)',1,1,0),(44087,0,144330,'Bosco Gurin','Switzerland','CH','Bosco Gurin (Switzerland)',1,1,0),(44088,0,144331,'Boskovice','Czech Republic','CZ','Boskovice (Czech Republic)',1,1,0),(44089,3757,144332,'Bossost','Spain','ES','Bossost (Spain)',1,1,0),(44090,0,144333,'Boston Heights','United States of America','US','Boston Heights (United States of America)',1,1,0),(44091,3773,144334,'Bottrop','Germany','DE','Bottrop (Germany)',1,1,0),(44092,0,144335,'Botzingen','Germany','DE','Botzingen (Germany)',1,1,0),(44093,3803,144336,'Boumalne Dades','Morocco','MA','Boumalne Dades (Morocco)',1,1,0),(44094,3847,144337,'Bovec','Slovenia','SI','Bovec (Slovenia)',1,1,0),(44095,3849,144338,'Boves','France','FR','Boves (France)',1,1,0),(44096,3854,144339,'Bow','United States of America','US','Bow (United States of America)',1,1,0),(44097,0,144340,'Bowling Green','United States of America','US','Bowling Green (United States of America)',1,1,0),(44098,0,144341,'Bowness-on-Windermere','United Kingdom','UK','Bowness-on-Windermere (United Kingdom)',1,1,0),(44099,0,144342,'Boyne Falls','United States of America','US','Boyne Falls (United States of America)',1,1,0),(44100,3883,144343,'Bozi Dar','Czech Republic','CZ','Bozi Dar (Czech Republic)',1,1,0),(44101,3888,144344,'Bracciano','Italy','IT','Bracciano (Italy)',1,1,0),(44102,0,144345,'Brakel','Germany','DE','Brakel (Germany)',1,1,0),(44103,3936,144346,'Brand','Austria','AT','Brand (Austria)',1,1,0),(44104,3945,144347,'Brandon','Canada','CA','Brandon (Canada)',1,1,0),(44105,0,144348,'Brandon','United Kingdom','UK','Brandon (United Kingdom)',1,1,0),(44106,3947,144349,'Brandsen','Argentina','AR','Brandsen (Argentina)',1,1,0),(44107,3953,144350,'Brantford','Canada','CA','Brantford (Canada)',1,1,0),(44108,3960,144351,'Braselton','United States of America','US','Braselton (United States of America)',1,1,0),(44109,3966,144352,'Brasschaat','Belgium','BE','Brasschaat (Belgium)',1,1,0),(44110,0,144353,'Brauneberg','Germany','DE','Brauneberg (Germany)',1,1,0),(44111,0,144354,'Braunlingen','Germany','DE','Braunlingen (Germany)',1,1,0),(44112,0,144355,'Braunston','United Kingdom','UK','Braunston (United Kingdom)',1,1,0),(44113,0,144356,'Brax','France','FR','Brax (France)',1,1,0),(44114,0,144357,'Brda','Slovenia','SI','Brda (Slovenia)',1,1,0),(44115,3992,144358,'Breckenridge','United States of America','US','Breckenridge (United States of America)',1,1,0),(44116,0,144359,'Breitengu?bach','Germany','DE','Breitengu?bach (Germany)',1,1,0),(44117,4015,144360,'Brelidy','France','FR','Brelidy (France)',1,1,0),(44118,0,144361,'Bremm','Germany','DE','Bremm (Germany)',1,1,0),(44119,4038,144362,'Bressuire','France','FR','Bressuire (France)',1,1,0),(44120,4039,144363,'Brest','France','FR','Brest (France)',1,1,0),(44121,4045,144364,'Bretten','Germany','DE','Bretten (Germany)',1,1,0),(44122,0,144365,'Bretteville-sur-Laize','France','FR','Bretteville-sur-Laize (France)',1,1,0),(44123,0,144366,'Brezno / Tale','Slovakia','SK','Brezno / Tale (Slovakia)',1,1,0),(44124,4071,144367,'Briatico','Italy','IT','Briatico (Italy)',1,1,0),(44125,4080,144368,'Bridgeport','United States of America','US','Bridgeport (United States of America)',1,1,0),(44126,0,144369,'Bridgeport','United States of America','US','Bridgeport (United States of America)',1,1,0),(44127,4081,144370,'Bridgeton','United States of America','US','Bridgeton (United States of America)',1,1,0),(44128,4085,144371,'Bridgetown','Barbados','BB','Bridgetown (Barbados)',1,1,0),(44129,0,144372,'Brier Island','Canada','CA','Brier Island (Canada)',1,1,0),(44130,4103,144373,'Brietlingen','Germany','DE','Brietlingen (Germany)',1,1,0),(44131,4106,144374,'Brigantine','United States of America','US','Brigantine (United States of America)',1,1,0),(44132,0,144375,'Brigels','Switzerland','CH','Brigels (Switzerland)',1,1,0),(44133,0,144376,'Brigerbad','Switzerland','CH','Brigerbad (Switzerland)',1,1,0),(44134,4110,144377,'Bright','Australia','AU','Bright (Australia)',1,1,0),(44135,0,144378,'Brighton','United Kingdom','UK','Brighton (United Kingdom)',1,1,0),(44136,4111,144379,'Brighton','United States of America','US','Brighton (United States of America)',1,1,0),(44137,0,144380,'Brihuega-Pajares','Spain','ES','Brihuega-Pajares (Spain)',1,1,0),(44138,4120,144381,'Brinchang','Malaysia','MY','Brinchang (Malaysia)',1,1,0),(44139,0,144382,'Brisco',NULL,NULL,'Brisco ()',1,1,0),(44140,0,144383,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(44141,0,144384,'Bristol','United States of America','US','Bristol (United States of America)',1,1,0),(44142,0,144385,'Brives-Charensac','France','FR','Brives-Charensac (France)',1,1,0),(44143,4152,144386,'Briviesca','Spain','ES','Briviesca (Spain)',1,1,0),(44144,4153,144387,'Brixen im Thale','Austria','AT','Brixen im Thale (Austria)',1,1,0),(44145,0,144388,'Brixlegg','Austria','AT','Brixlegg (Austria)',1,1,0),(44146,0,144389,'Broadstairs','United Kingdom','UK','Broadstairs (United Kingdom)',1,1,0),(44147,0,144390,'Broadway','United Kingdom','UK','Broadway (United Kingdom)',1,1,0),(44148,4197,144391,'Brondby','Denmark','DK','Brondby (Denmark)',1,1,0),(44149,0,144392,'Brookdale','United States of America','US','Brookdale (United States of America)',1,1,0),(44150,4209,144393,'Brookfield','United States of America','US','Brookfield (United States of America)',1,1,0),(44151,0,144394,'Brookfield','United States of America','US','Brookfield (United States of America)',1,1,0),(44152,0,144395,'Brooklyn','United States of America','US','Brooklyn (United States of America)',1,1,0),(44153,0,144396,'Brooklyn','United States of America','US','Brooklyn (United States of America)',1,1,0),(44154,4223,144397,'Brooks','United States of America','US','Brooks (United States of America)',1,1,0),(44155,0,144398,'Brough','United Kingdom','UK','Brough (United Kingdom)',1,1,0),(44156,0,144399,'Brouwershaven','Netherlands','NL','Brouwershaven (Netherlands)',1,1,0),(44157,0,144400,'Brouzet-les-Ales','France','FR','Brouzet-les-Ales (France)',1,1,0),(44158,4250,144401,'Brownsburg','United States of America','US','Brownsburg (United States of America)',1,1,0),(44159,0,144402,'Brownsville','United States of America','US','Brownsville (United States of America)',1,1,0),(44160,0,144403,'Bruck an der Glocknerstrasse','Austria','AT','Bruck an der Glocknerstrasse (Austria)',1,1,0),(44161,4282,144404,'Brunate','Italy','IT','Brunate (Italy)',1,1,0),(44162,0,144405,'Brunn','Germany','DE','Brunn (Germany)',1,1,0),(44163,4295,144406,'Brunswick','United States of America','US','Brunswick (United States of America)',1,1,0),(44164,0,144407,'Brusago','Italy','IT','Brusago (Italy)',1,1,0),(44165,4303,144408,'Brusque','France','FR','Brusque (France)',1,1,0),(44166,0,144409,'Bruttig-Fankel','Germany','DE','Bruttig-Fankel (Germany)',1,1,0),(44167,0,144410,'Bruyeres','France','FR','Bruyeres (France)',1,1,0),(44168,4309,144411,'Bryant','United States of America','US','Bryant (United States of America)',1,1,0),(44169,4316,144412,'Bry-sur-Marne','France','FR','Bry-sur-Marne (France)',1,1,0),(44170,0,144413,'Bublava','Czech Republic','CZ','Bublava (Czech Republic)',1,1,0),(44171,0,144414,'Buchholz (Beelitz)','Germany','DE','Buchholz (Beelitz) (Germany)',1,1,0),(44172,0,144415,'Budzyn','Poland','PL','Budzyn (Poland)',1,1,0),(44173,4390,144416,'Buffalo','United States of America','US','Buffalo (United States of America)',1,1,0),(44174,0,144417,'Buffalo Grove','United States of America','US','Buffalo Grove (United States of America)',1,1,0),(44175,0,144418,'Buhl','United States of America','US','Buhl (United States of America)',1,1,0),(44176,0,144419,'Builth Wells','United Kingdom','UK','Builth Wells (United Kingdom)',1,1,0),(44177,0,144420,'Builyan','Australia','AU','Builyan (Australia)',1,1,0),(44178,4406,144421,'Buk','Hungary','HU','Buk (Hungary)',1,1,0),(44179,4420,144422,'Bull Shoals','United States of America','US','Bull Shoals (United States of America)',1,1,0),(44180,4428,144423,'Bunbury','Australia','AU','Bunbury (Australia)',1,1,0),(44181,0,144424,'Bunde','Germany','DE','Bunde (Germany)',1,1,0),(44182,4447,144425,'Bunyola','Spain','ES','Bunyola (Spain)',1,1,0),(44183,4450,144426,'Buon Ma Thuot','Vietnam','VN','Buon Ma Thuot (Vietnam)',1,1,0),(44184,4451,144427,'Buonconvento','Italy','IT','Buonconvento (Italy)',1,1,0),(44185,0,144428,'Burghaun','Germany','DE','Burghaun (Germany)',1,1,0),(44186,0,144429,'Burg-Reuland','Belgium','BE','Burg-Reuland (Belgium)',1,1,0),(44187,4485,144430,'Burguillos','Spain','ES','Burguillos (Spain)',1,1,0),(44188,4505,144431,'Burlington','United States of America','US','Burlington (United States of America)',1,1,0),(44189,0,144432,'Burnham','United States of America','US','Burnham (United States of America)',1,1,0),(44190,0,144433,'Burnley','United Kingdom','UK','Burnley (United Kingdom)',1,1,0),(44191,0,144434,'Burs','Austria','AT','Burs (Austria)',1,1,0),(44192,0,144435,'Bury Saint Edmunds','United Kingdom','UK','Bury Saint Edmunds (United Kingdom)',1,1,0),(44193,0,144436,'Buseck','Germany','DE','Buseck (Germany)',1,1,0),(44194,4545,144437,'Bushkill','United States of America','US','Bushkill (United States of America)',1,1,0),(44195,0,144438,'Bushmills','United Kingdom','UK','Bushmills (United Kingdom)',1,1,0),(44196,0,144439,'Busingen am Hochrhein','Germany','DE','Busingen am Hochrhein (Germany)',1,1,0),(44197,4550,144440,'Busquistar','Spain','ES','Busquistar (Spain)',1,1,0),(44198,0,144441,'Busturia','Spain','ES','Busturia (Spain)',1,1,0),(44199,4564,144442,'Busuanga','Philippines','PH','Busuanga (Philippines)',1,1,0),(44200,0,144443,'Butler','United States of America','US','Butler (United States of America)',1,1,0),(44201,0,144444,'Butterworth','Malaysia','MY','Butterworth (Malaysia)',1,1,0),(44202,4577,144445,'Buxton','United States of America','US','Buxton (United States of America)',1,1,0),(44203,4584,144446,'Buzzards Bay','United States of America','US','Buzzards Bay (United States of America)',1,1,0),(44204,0,144447,'Bwindi National Park','Uganda','UG','Bwindi National Park (Uganda)',1,1,0),(44205,4585,144448,'Byala','Bulgaria','BG','Byala (Bulgaria)',1,1,0),(44206,4587,144449,'Bydgoszcz','Poland','PL','Bydgoszcz (Poland)',1,1,0),(44207,4588,144450,'Byers','United States of America','US','Byers (United States of America)',1,1,0),(44208,4590,144451,'Byglandsfjord','Norway','NO','Byglandsfjord (Norway)',1,1,0),(44209,0,144452,'Bysice','Czech Republic','CZ','Bysice (Czech Republic)',1,1,0),(44210,4599,144453,'Cabanas','Portugal','PT','Cabanas (Portugal)',1,1,0),(44211,0,144454,'Cabilao','Philippines','PH','Cabilao (Philippines)',1,1,0),(44212,0,144455,'Cabo Frio','Brazil','BR','Cabo Frio (Brazil)',1,1,0),(44213,4622,144456,'Cabourg','France','FR','Cabourg (France)',1,1,0),(44214,0,144457,'Cabra','Spain','ES','Cabra (Spain)',1,1,0),(44215,4635,144458,'Caceres','Spain','ES','Caceres (Spain)',1,1,0),(44216,4644,144459,'Cademario','Switzerland','CH','Cademario (Switzerland)',1,1,0),(44217,4647,144460,'Cadenet','France','FR','Cadenet (France)',1,1,0),(44218,4668,144461,'Cagli','Italy','IT','Cagli (Italy)',1,1,0),(44219,4669,144462,'Cagliari','Italy','IT','Cagliari (Italy)',1,1,0),(44220,0,144463,'Cala Alcaufar','Spain','ES','Cala Alcaufar (Spain)',1,1,0),(44221,0,144464,'Cala Canyelles','Spain','ES','Cala Canyelles (Spain)',1,1,0),(44222,4707,144465,'Cala di Volpe','Italy','IT','Cala di Volpe (Italy)',1,1,0),(44223,30625,144466,'Cala Ferrera','Spain','ES','Cala Ferrera (Spain)',1,1,0),(44224,30633,144467,'Cala Mandia','Spain','ES','Cala Mandia (Spain)',1,1,0),(44225,0,144468,'Calacuccia','France','FR','Calacuccia (France)',1,1,0),(44226,0,144469,'Calamandrana','Italy','IT','Calamandrana (Italy)',1,1,0),(44227,0,144470,'Cala\'n Bosch','Spain','ES','Cala\'n Bosch (Spain)',1,1,0),(44228,4737,144471,'Calatabiano','Italy','IT','Calatabiano (Italy)',1,1,0),(44229,0,144472,'Calatafimi-Segesta','Italy','IT','Calatafimi-Segesta (Italy)',1,1,0),(44230,0,144473,'Calau','Germany','DE','Calau (Germany)',1,1,0),(44231,0,144474,'Caleta de Velez','Spain','ES','Caleta de Velez (Spain)',1,1,0),(44232,0,144476,'Calitzdorp','South Africa','ZA','Calitzdorp (South Africa)',1,1,0),(44233,0,144477,'Calizzano','Italy','IT','Calizzano (Italy)',1,1,0),(44234,0,144478,'Calo d\'en Real','Spain','ES','Calo d\'en Real (Spain)',1,1,0),(44235,0,144479,'Calodyne','Mauritius','MU','Calodyne (Mauritius)',1,1,0),(44236,4801,144480,'Calolziocorte','Italy','IT','Calolziocorte (Italy)',1,1,0),(44237,0,144481,'Calumet','Canada','CA','Calumet (Canada)',1,1,0),(44238,4820,144482,'Calvisson','France','FR','Calvisson (France)',1,1,0),(44239,4821,144483,'Calw','Germany','DE','Calw (Germany)',1,1,0),(44240,0,144484,'Cambrils de Mar','Spain','ES','Cambrils de Mar (Spain)',1,1,0),(44241,4857,144485,'Camden','United States of America','US','Camden (United States of America)',1,1,0),(44242,4860,144486,'Camdenton','United States of America','US','Camdenton (United States of America)',1,1,0),(44243,4863,144487,'Camerino','Italy','IT','Camerino (Italy)',1,1,0),(44244,0,144488,'Cameron Park','United States of America','US','Cameron Park (United States of America)',1,1,0),(44245,4868,144489,'Camigliano','Italy','IT','Camigliano (Italy)',1,1,0),(44246,4870,144490,'Camiguin','Philippines','PH','Camiguin (Philippines)',1,1,0),(44247,30654,144491,'Camp Springs','United States of America','US','Camp Springs (United States of America)',1,1,0),(44248,30655,144492,'Camp Verde','United States of America','US','Camp Verde (United States of America)',1,1,0),(44249,4882,144493,'Campagnatico','Italy','IT','Campagnatico (Italy)',1,1,0),(44250,4884,144494,'Campana','Argentina','AR','Campana (Argentina)',1,1,0),(44251,4894,144495,'Campbellton','Canada','CA','Campbellton (Canada)',1,1,0),(44252,4901,144496,'Campelles','Spain','ES','Campelles (Spain)',1,1,0),(44253,4904,144497,'Campertogno','Italy','IT','Campertogno (Italy)',1,1,0),(44254,4906,144498,'Campi Bisenzio','Italy','IT','Campi Bisenzio (Italy)',1,1,0),(44255,0,144499,'Campill','Italy','IT','Campill (Italy)',1,1,0),(44256,0,144500,'Campo Largo','Brazil','BR','Campo Largo (Brazil)',1,1,0),(44257,0,144501,'Campo Real','Spain','ES','Campo Real (Spain)',1,1,0),(44258,0,144502,'Campoamor','Spain','ES','Campoamor (Spain)',1,1,0),(44259,0,144503,'Camporosso','Italy','IT','Camporosso (Italy)',1,1,0),(44260,0,144504,'Campos Novos','Brazil','BR','Campos Novos (Brazil)',1,1,0),(44261,4944,144505,'Canadensis','United States of America','US','Canadensis (United States of America)',1,1,0),(44262,4949,144506,'Canal Winchester','United States of America','US','Canal Winchester (United States of America)',1,1,0),(44263,0,144507,'Canalda','Spain','ES','Canalda (Spain)',1,1,0),(44264,4955,144508,'Canas','Costa Rica','CR','Canas (Costa Rica)',1,1,0),(44265,4962,144509,'Cancale','France','FR','Cancale (France)',1,1,0),(44266,0,144511,'Cangas de Morrazo','Spain','ES','Cangas de Morrazo (Spain)',1,1,0),(44267,4995,144512,'Cangzhou','China','CN','Cangzhou (China)',1,1,0),(44268,4998,144513,'Canillo','Andorra','AD','Canillo (Andorra)',1,1,0),(44269,5007,144514,'Canneto','Italy','IT','Canneto (Italy)',1,1,0),(44270,0,144515,'Cannington',NULL,NULL,'Cannington ()',1,1,0),(44271,5021,144516,'Canonsburg','United States of America','US','Canonsburg (United States of America)',1,1,0),(44272,0,144517,'Canow','Germany','DE','Canow (Germany)',1,1,0),(44273,5032,144518,'Cantallops','Spain','ES','Cantallops (Spain)',1,1,0),(44274,0,144519,'Canton','United States of America','US','Canton (United States of America)',1,1,0),(44275,0,144520,'Cantonhede','Portugal','PT','Cantonhede (Portugal)',1,1,0),(44276,5043,144521,'Canyamel','Spain','ES','Canyamel (Spain)',1,1,0),(44277,30658,144522,'Canyon','United States of America','US','Canyon (United States of America)',1,1,0),(44278,30666,144523,'Cap D\'Agde','France','FR','Cap D\'Agde (France)',1,1,0),(44279,0,144524,'Cap d\'Artrutx','Spain','ES','Cap d\'Artrutx (Spain)',1,1,0),(44280,0,144525,'Cap-aux-Meules','Canada','CA','Cap-aux-Meules (Canada)',1,1,0),(44281,0,144526,'Capdepara','Spain','ES','Capdepara (Spain)',1,1,0),(44282,5069,144527,'Cape Town','South Africa','ZA','Cape Town (South Africa)',1,1,0),(44283,0,144528,'Cape Tribulation','Australia','AU','Cape Tribulation (Australia)',1,1,0),(44284,0,144529,'Capistrello','Italy','IT','Capistrello (Italy)',1,1,0),(44285,5089,144530,'Capoliveri','Italy','IT','Capoliveri (Italy)',1,1,0),(44286,5126,144531,'Carate','Costa Rica','CR','Carate (Costa Rica)',1,1,0),(44287,5128,144532,'Caravaca de la Cruz','Spain','ES','Caravaca de la Cruz (Spain)',1,1,0),(44288,5133,144533,'Carbondale','United States of America','US','Carbondale (United States of America)',1,1,0),(44289,0,144534,'Carcans Plage','France','FR','Carcans Plage (France)',1,1,0),(44290,5136,144535,'Carcassonne','France','FR','Carcassonne (France)',1,1,0),(44291,0,144536,'Cardano','Italy','IT','Cardano (Italy)',1,1,0),(44292,5159,144537,'Carilo','Argentina','AR','Carilo (Argentina)',1,1,0),(44293,0,144538,'Carla-Bayle','France','FR','Carla-Bayle (France)',1,1,0),(44294,5169,144539,'Carle Place','United States of America','US','Carle Place (United States of America)',1,1,0),(44295,5170,144540,'Carleton','Canada','CA','Carleton (Canada)',1,1,0),(44296,0,144541,'Carlisle','United Kingdom','UK','Carlisle (United Kingdom)',1,1,0),(44297,0,144542,'Carlsfeld','Germany','DE','Carlsfeld (Germany)',1,1,0),(44298,0,144543,'Carnoustie','United Kingdom','UK','Carnoustie (United Kingdom)',1,1,0),(44299,0,144544,'Carrabassett','United States of America','US','Carrabassett (United States of America)',1,1,0),(44300,5231,144545,'Carranque','Spain','ES','Carranque (Spain)',1,1,0),(44301,0,144546,'Carrascal de La Cuesta','Spain','ES','Carrascal de La Cuesta (Spain)',1,1,0),(44302,0,144547,'Carrbridge','United Kingdom','UK','Carrbridge (United Kingdom)',1,1,0),(44303,0,144548,'Carricola','Spain','ES','Carricola (Spain)',1,1,0),(44304,5250,144549,'Carrington','United States of America','US','Carrington (United States of America)',1,1,0),(44305,5251,144550,'Carrizo Springs','United States of America','US','Carrizo Springs (United States of America)',1,1,0),(44306,5252,144551,'Carrizozo','United States of America','US','Carrizozo (United States of America)',1,1,0),(44307,5286,144552,'Casal Borsetti','Italy','IT','Casal Borsetti (Italy)',1,1,0),(44308,5315,144553,'Caserta','Italy','IT','Caserta (Italy)',1,1,0),(44309,0,144554,'Casillas del Angel','Spain','ES','Casillas del Angel (Spain)',1,1,0),(44310,5325,144555,'Casino','Australia','AU','Casino (Australia)',1,1,0),(44311,0,144556,'Cassacco','Italy','IT','Cassacco (Italy)',1,1,0),(44312,0,144557,'Cassaniouze','France','FR','Cassaniouze (France)',1,1,0),(44313,0,144558,'Cassano d\'Adda','Italy','IT','Cassano d\'Adda (Italy)',1,1,0),(44314,5340,144559,'Casselton','United States of America','US','Casselton (United States of America)',1,1,0),(44315,0,144560,'Cassone','Italy','IT','Cassone (Italy)',1,1,0),(44316,0,144561,'Castel','United Kingdom','UK','Castel (United Kingdom)',1,1,0),(44317,5371,144562,'Castellar de la Frontera','Spain','ES','Castellar de la Frontera (Spain)',1,1,0),(44318,0,144563,'Castello delle Forme','Italy','IT','Castello delle Forme (Italy)',1,1,0),(44319,0,144564,'Castelmoron - sur - Lot','France','FR','Castelmoron - sur - Lot (France)',1,1,0),(44320,0,144565,'Castelnuovo Cilento','Italy','IT','Castelnuovo Cilento (Italy)',1,1,0),(44321,0,144566,'Castelnuovo di Porto','Italy','IT','Castelnuovo di Porto (Italy)',1,1,0),(44322,0,144567,'Castelnuovo Magra','Italy','IT','Castelnuovo Magra (Italy)',1,1,0),(44323,0,144568,'Castelsarrasin','France','FR','Castelsarrasin (France)',1,1,0),(44324,0,144569,'Castera-Verduzan','France','FR','Castera-Verduzan (France)',1,1,0),(44325,0,144570,'Castiglione della Valle','Italy','IT','Castiglione della Valle (Italy)',1,1,0),(44326,0,144571,'Castiglione d\'Intelvi','Italy','IT','Castiglione d\'Intelvi (Italy)',1,1,0),(44327,5410,144572,'Castillon-du-Gard','France','FR','Castillon-du-Gard (France)',1,1,0),(44328,5411,144573,'Castillonnes','France','FR','Castillonnes (France)',1,1,0),(44329,5417,144574,'Castlebaldwin','Ireland','IE','Castlebaldwin (Ireland)',1,1,0),(44330,0,144575,'Castledermet','Ireland','IE','Castledermet (Ireland)',1,1,0),(44331,5426,144576,'Castlegregory','Ireland','IE','Castlegregory (Ireland)',1,1,0),(44332,5429,144577,'Castlemartyr','Ireland','IE','Castlemartyr (Ireland)',1,1,0),(44333,0,144578,'Castrignano del Capo','Italy','IT','Castrignano del Capo (Italy)',1,1,0),(44334,5441,144579,'Castro Marim','Portugal','PT','Castro Marim (Portugal)',1,1,0),(44335,0,144580,'Castroville','United States of America','US','Castroville (United States of America)',1,1,0),(44336,0,144581,'Catacamas','Honduras','HN','Catacamas (Honduras)',1,1,0),(44337,0,144582,'Catagena','Spain','ES','Catagena (Spain)',1,1,0),(44338,0,144583,'Catanzaro Lido','Italy','IT','Catanzaro Lido (Italy)',1,1,0),(44339,5469,144584,'Cattolica','Italy','IT','Cattolica (Italy)',1,1,0),(44340,0,144585,'Cavaliere','France','FR','Cavaliere (France)',1,1,0),(44341,5505,144586,'Cavernago','Italy','IT','Cavernago (Italy)',1,1,0),(44342,5520,144587,'Cayman Brac','Cayman Islands','KY','Cayman Brac (Cayman Islands)',1,1,0),(44343,0,144588,'Cayo District','Belize','BZ','Cayo District (Belize)',1,1,0),(44344,0,144589,'Cayo Santa Maria','Cuba','CU','Cayo Santa Maria (Cuba)',1,1,0),(44345,5527,144590,'Cazadero','United States of America','US','Cazadero (United States of America)',1,1,0),(44346,5546,144591,'Cecina','Italy','IT','Cecina (Italy)',1,1,0),(44347,0,144592,'Cedynia','Poland','PL','Cedynia (Poland)',1,1,0),(44348,5559,144593,'Ceiba','Puerto Rico','PR','Ceiba (Puerto Rico)',1,1,0),(44349,5574,144594,'Celldomolk','Hungary','HU','Celldomolk (Hungary)',1,1,0),(44350,0,144595,'Cellino San Marco','Italy','IT','Cellino San Marco (Italy)',1,1,0),(44351,0,144596,'Centerville','United States of America','US','Centerville (United States of America)',1,1,0),(44352,5587,144597,'Cento','Italy','IT','Cento (Italy)',1,1,0),(44353,0,144598,'Centobuchi','Italy','IT','Centobuchi (Italy)',1,1,0),(44354,0,144599,'Central City','United States of America','US','Central City (United States of America)',1,1,0),(44355,0,144600,'Centurion (near Pretoria)','South Africa','ZA','Centurion (near Pretoria) (South Africa)',1,1,0),(44356,0,144601,'Cepazzano Pianore','Italy','IT','Cepazzano Pianore (Italy)',1,1,0),(44357,0,144602,'Cepu','Indonesia','ID','Cepu (Indonesia)',1,1,0),(44358,0,144603,'Cergy-Pontoise','France','FR','Cergy-Pontoise (France)',1,1,0),(44359,5624,144604,'Ceriana','Italy','IT','Ceriana (Italy)',1,1,0),(44360,0,144605,'Ceru','Indonesia','ID','Ceru (Indonesia)',1,1,0),(44361,0,144606,'Cervo','Italy','IT','Cervo (Italy)',1,1,0),(44362,0,144607,'Ceska Lipa','Czech Republic','CZ','Ceska Lipa (Czech Republic)',1,1,0),(44363,0,144608,'Cesky Krumlov / Krumau','Czech Republic','CZ','Cesky Krumlov / Krumau (Czech Republic)',1,1,0),(44364,5660,144609,'Cesme','Turkey','TR','Cesme (Turkey)',1,1,0),(44365,5679,144610,'Chachoengsao','Thailand','TH','Chachoengsao (Thailand)',1,1,0),(44366,5680,144611,'Chacras de Coria','Argentina','AR','Chacras de Coria (Argentina)',1,1,0),(44367,0,144612,'Chalabre','France','FR','Chalabre (France)',1,1,0),(44368,0,144613,'Chalon sur Saone','France','FR','Chalon sur Saone (France)',1,1,0),(44369,5711,144614,'Chalons-en-Champagne','France','FR','Chalons-en-Champagne (France)',1,1,0),(44370,5715,144615,'Cham','Germany','DE','Cham (Germany)',1,1,0),(44371,0,144616,'Chamarel','Mauritius','MU','Chamarel (Mauritius)',1,1,0),(44372,0,144617,'Chamberet','France','FR','Chamberet (France)',1,1,0),(44373,5725,144618,'Chambery','France','FR','Chambery (France)',1,1,0),(44374,0,144619,'Champagneux','France','FR','Champagneux (France)',1,1,0),(44375,5763,144620,'Chance Harbour','Canada','CA','Chance Harbour (Canada)',1,1,0),(44376,5764,144621,'Chancelade','France','FR','Chancelade (France)',1,1,0),(44377,5767,144622,'Chandler','United States of America','US','Chandler (United States of America)',1,1,0),(44378,5810,144623,'Chaoyang','China','CN','Chaoyang (China)',1,1,0),(44379,5823,144624,'Chapmanville','United States of America','US','Chapmanville (United States of America)',1,1,0),(44380,0,144625,'Charaki','Greece','GR','Charaki (Greece)',1,1,0),(44381,5827,144626,'Charbonnieres-les-Bains','France','FR','Charbonnieres-les-Bains (France)',1,1,0),(44382,5838,144627,'Chariton','United States of America','US','Chariton (United States of America)',1,1,0),(44383,0,144628,'Charlbury','United Kingdom','UK','Charlbury (United Kingdom)',1,1,0),(44384,0,144629,'Charleston','United States of America','US','Charleston (United States of America)',1,1,0),(44385,5850,144630,'Charlestown','Australia','AU','Charlestown (Australia)',1,1,0),(44386,5854,144631,'Charleville','Australia','AU','Charleville (Australia)',1,1,0),(44387,5862,144632,'Charlottenlund','Denmark','DK','Charlottenlund (Denmark)',1,1,0),(44388,0,144633,'Charmes-sur-Rhone','France','FR','Charmes-sur-Rhone (France)',1,1,0),(44389,0,144634,'Charquemont','France','FR','Charquemont (France)',1,1,0),(44390,0,144635,'Charvensod','Italy','IT','Charvensod (Italy)',1,1,0),(44391,0,144636,'Chascomus','Argentina','AR','Chascomus (Argentina)',1,1,0),(44392,5882,144637,'Chaska','United States of America','US','Chaska (United States of America)',1,1,0),(44393,0,144638,'Chateaudun','France','FR','Chateaudun (France)',1,1,0),(44394,0,144639,'Chatham','Canada','CA','Chatham (Canada)',1,1,0),(44395,0,144640,'Chatillon-sur-Chalaronne','France','FR','Chatillon-sur-Chalaronne (France)',1,1,0),(44396,5932,144641,'Chatswood','Australia','AU','Chatswood (Australia)',1,1,0),(44397,0,144642,'Chauffour-sur-Vell','France','FR','Chauffour-sur-Vell (France)',1,1,0),(44398,5945,144643,'Chaumont','France','FR','Chaumont (France)',1,1,0),(44399,5946,144644,'Chaumontel','France','FR','Chaumontel (France)',1,1,0),(44400,5963,144645,'Chebeague Island','United States of America','US','Chebeague Island (United States of America)',1,1,0),(44401,0,144646,'Chejilipes','Spain','ES','Chejilipes (Spain)',1,1,0),(44402,5975,144647,'Chelles','France','FR','Chelles (France)',1,1,0),(44403,5997,144648,'Chengde','China','CN','Chengde (China)',1,1,0),(44404,0,144649,'Chepstow','United Kingdom','UK','Chepstow (United Kingdom)',1,1,0),(44405,0,144650,'Cherain','Belgium','BE','Cherain (Belgium)',1,1,0),(44406,6011,144651,'Cherasco','Italy','IT','Cherasco (Italy)',1,1,0),(44407,0,144652,'Cherethiana','Greece','GR','Cherethiana (Greece)',1,1,0),(44408,0,144653,'Chermignon','Switzerland','CH','Chermignon (Switzerland)',1,1,0),(44409,6021,144654,'Chernex','Switzerland','CH','Chernex (Switzerland)',1,1,0),(44410,0,144655,'Cherng Talay','Thailand','TH','Cherng Talay (Thailand)',1,1,0),(44411,6023,144656,'Cherokee','United States of America','US','Cherokee (United States of America)',1,1,0),(44412,0,144657,'Cherokee','United States of America','US','Cherokee (United States of America)',1,1,0),(44413,6032,144658,'Chesapeake','United States of America','US','Chesapeake (United States of America)',1,1,0),(44414,0,144659,'Chesham','United Kingdom','UK','Chesham (United Kingdom)',1,1,0),(44415,6038,144660,'Chesieres','Switzerland','CH','Chesieres (Switzerland)',1,1,0),(44416,0,144661,'Chessington','United Kingdom','UK','Chessington (United Kingdom)',1,1,0),(44417,0,144662,'Chester','United States of America','US','Chester (United States of America)',1,1,0),(44418,6054,144663,'Chetumal','Mexico','MX','Chetumal (Mexico)',1,1,0),(44419,6062,144664,'Chevreuse','France','FR','Chevreuse (France)',1,1,0),(44420,6074,144665,'Chiang Dao','Thailand','TH','Chiang Dao (Thailand)',1,1,0),(44421,6080,144666,'Chiasso','Switzerland','CH','Chiasso (Switzerland)',1,1,0),(44422,6084,144667,'Chiayi','Taiwan','TW','Chiayi (Taiwan)',1,1,0),(44423,0,144668,'Chichiscastenango','Guatemala','GT','Chichiscastenango (Guatemala)',1,1,0),(44424,0,144669,'Chiconcuac','Mexico','MX','Chiconcuac (Mexico)',1,1,0),(44425,6103,144670,'Chiefland','United States of America','US','Chiefland (United States of America)',1,1,0),(44426,0,144671,'Chiflika','Bulgaria','BG','Chiflika (Bulgaria)',1,1,0),(44427,0,144672,'Chignin','France','FR','Chignin (France)',1,1,0),(44428,6119,144673,'Chilhowie','United States of America','US','Chilhowie (United States of America)',1,1,0),(44429,6127,144674,'Chilliwack','Canada','CA','Chilliwack (Canada)',1,1,0),(44430,6129,144675,'Chilly-Mazarin','France','FR','Chilly-Mazarin (France)',1,1,0),(44431,0,144676,'Chimki','Russia','RU','Chimki (Russia)',1,1,0),(44432,6144,144677,'Chinchon','Spain','ES','Chinchon (Spain)',1,1,0),(44433,6155,144678,'Chioggia','Italy','IT','Chioggia (Italy)',1,1,0),(44434,6158,144679,'Chipiona','Spain','ES','Chipiona (Spain)',1,1,0),(44435,0,144680,'Chissay en Touraine','France','FR','Chissay en Touraine (France)',1,1,0),(44436,6198,144681,'Chiusi','Italy','IT','Chiusi (Italy)',1,1,0),(44437,6199,144682,'Chiva','Spain','ES','Chiva (Spain)',1,1,0),(44438,0,144683,'Chobe Nationalpark','Botswana','BW','Chobe Nationalpark (Botswana)',1,1,0),(44439,0,144684,'Chorley','United Kingdom','UK','Chorley (United Kingdom)',1,1,0),(44440,0,144685,'Chouzy-sur-Cisse','France','FR','Chouzy-sur-Cisse (France)',1,1,0),(44441,0,144686,'Chrani','Greece','GR','Chrani (Greece)',1,1,0),(44442,6244,144687,'Christchurch','New Zealand','NZ','Christchurch (New Zealand)',1,1,0),(44443,6264,144688,'Chugwater','United States of America','US','Chugwater (United States of America)',1,1,0),(44444,6273,144689,'Chuncheon','South Korea','KR','Chuncheon (South Korea)',1,1,0),(44445,0,144690,'Churanov','Czech Republic','CZ','Churanov (Czech Republic)',1,1,0),(44446,0,144691,'Church Fenton','United Kingdom','UK','Church Fenton (United Kingdom)',1,1,0),(44447,6288,144692,'Churwalden','Switzerland','CH','Churwalden (Switzerland)',1,1,0),(44448,6306,144693,'Cieszyn','Poland','PL','Cieszyn (Poland)',1,1,0),(44449,6310,144694,'Cilacap','Indonesia','ID','Cilacap (Indonesia)',1,1,0),(44450,0,144695,'Cinfaes','Portugal','PT','Cinfaes (Portugal)',1,1,0),(44451,6321,144696,'Cinigiano','Italy','IT','Cinigiano (Italy)',1,1,0),(44452,6332,144697,'Cirali','Turkey','TR','Cirali (Turkey)',1,1,0),(44453,6339,144698,'Ciro Marina','Italy','IT','Ciro Marina (Italy)',1,1,0),(44454,6351,144699,'Cittiglio','Italy','IT','Cittiglio (Italy)',1,1,0),(44455,0,144700,'Ciudad del Cabo','South Africa','ZA','Ciudad del Cabo (South Africa)',1,1,0),(44456,0,144701,'Ciudad Hidalgo','Mexico','MX','Ciudad Hidalgo (Mexico)',1,1,0),(44457,30709,144702,'Ciudad Real','Spain','ES','Ciudad Real (Spain)',1,1,0),(44458,0,144703,'Ciudad Valles','Mexico','MX','Ciudad Valles (Mexico)',1,1,0),(44459,0,144704,'Ciudad Victoria','Mexico','MX','Ciudad Victoria (Mexico)',1,1,0),(44460,6359,144705,'Ciutadella','Spain','ES','Ciutadella (Spain)',1,1,0),(44461,0,144706,'Civitella del Tronto','Italy','IT','Civitella del Tronto (Italy)',1,1,0),(44462,6376,144707,'Clamart','France','FR','Clamart (France)',1,1,0),(44463,6386,144708,'Clare','Australia','AU','Clare (Australia)',1,1,0),(44464,6389,144709,'Claremont','United States of America','US','Claremont (United States of America)',1,1,0),(44465,6391,144710,'Claremore','United States of America','US','Claremore (United States of America)',1,1,0),(44466,6441,144711,'Clearfield','United States of America','US','Clearfield (United States of America)',1,1,0),(44467,0,144712,'Clearfield','United States of America','US','Clearfield (United States of America)',1,1,0),(44468,6445,144713,'Clearwater','Canada','CA','Clearwater (Canada)',1,1,0),(44469,6444,144714,'Clearwater','United States of America','US','Clearwater (United States of America)',1,1,0),(44470,6460,144715,'Clermont','Australia','AU','Clermont (Australia)',1,1,0),(44471,0,144716,'Clermont Ferrand','France','FR','Clermont Ferrand (France)',1,1,0),(44472,6470,144717,'Cleveland','United States of America','US','Cleveland (United States of America)',1,1,0),(44473,6484,144718,'Clinton','United States of America','US','Clinton (United States of America)',1,1,0),(44474,6495,144719,'Cloncurry','Australia','AU','Cloncurry (Australia)',1,1,0),(44475,6508,144720,'Clovis','United States of America','US','Clovis (United States of America)',1,1,0),(44476,0,144721,'Clyde','New Zealand','NZ','Clyde (New Zealand)',1,1,0),(44477,0,144722,'Clydebank','United Kingdom','UK','Clydebank (United Kingdom)',1,1,0),(44478,6531,144723,'Coassolo Torinese','Italy','IT','Coassolo Torinese (Italy)',1,1,0),(44479,0,144724,'Cobark','Australia','AU','Cobark (Australia)',1,1,0),(44480,6543,144725,'Cobh','Ireland','IE','Cobh (Ireland)',1,1,0),(44481,6549,144726,'Cobram','Australia','AU','Cobram (Australia)',1,1,0),(44482,6555,144727,'Cocconato','Italy','IT','Cocconato (Italy)',1,1,0),(44483,6576,144728,'Coconut Creek','United States of America','US','Coconut Creek (United States of America)',1,1,0),(44484,6581,144729,'Codiponte','Italy','IT','Codiponte (Italy)',1,1,0),(44485,6588,144730,'Coeur d\'Alene','United States of America','US','Coeur d\'Alene (United States of America)',1,1,0),(44486,0,144731,'Coffee Bay','South Africa','ZA','Coffee Bay (South Africa)',1,1,0),(44487,6590,144732,'Coffeyville','United States of America','US','Coffeyville (United States of America)',1,1,0),(44488,0,144733,'Cofrentes','Spain','ES','Cofrentes (Spain)',1,1,0),(44489,6596,144734,'Cognac','France','FR','Cognac (France)',1,1,0),(44490,0,144736,'Cokuni','Croatia','HR','Cokuni (Croatia)',1,1,0),(44491,6615,144737,'Colac','Australia','AU','Colac (Australia)',1,1,0),(44492,6623,144738,'Colca','Peru','PE','Colca (Peru)',1,1,0),(44493,6633,144739,'Colebrook','United States of America','US','Colebrook (United States of America)',1,1,0),(44494,0,144740,'Coleraine','United Kingdom','UK','Coleraine (United Kingdom)',1,1,0),(44495,0,144741,'Colinas Verdes','Portugal','PT','Colinas Verdes (Portugal)',1,1,0),(44496,6649,144742,'Collecchio','Italy','IT','Collecchio (Italy)',1,1,0),(44497,6679,144743,'Cologne','Germany','DE','Cologne (Germany)',1,1,0),(44498,0,144744,'Cologno Monzese','Italy','IT','Cologno Monzese (Italy)',1,1,0),(44499,6689,144745,'Colombo','Sri Lanka','LK','Colombo (Sri Lanka)',1,1,0),(44500,6692,144746,'Colon','Panama','PA','Colon (Panama)',1,1,0),(44501,0,144747,'Colpi di Folgaria','Italy','IT','Colpi di Folgaria (Italy)',1,1,0),(44502,0,144748,'Colter Bay Village','United States of America','US','Colter Bay Village (United States of America)',1,1,0),(44503,6707,144749,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(44504,0,144750,'Columbia','United States of America','US','Columbia (United States of America)',1,1,0),(44505,0,144751,'Columbus','United States of America','US','Columbus (United States of America)',1,1,0),(44506,6727,144752,'Comblain-la-Tour','Belgium','BE','Comblain-la-Tour (Belgium)',1,1,0),(44507,0,144753,'Comrie','United Kingdom','UK','Comrie (United Kingdom)',1,1,0),(44508,6759,144754,'Conakry','Guinea','GN','Conakry (Guinea)',1,1,0),(44509,6764,144755,'Concepcion','Chile','CL','Concepcion (Chile)',1,1,0),(44510,0,144756,'Conches-en-Ouche','France','FR','Conches-en-Ouche (France)',1,1,0),(44511,6774,144757,'Concordia','United States of America','US','Concordia (United States of America)',1,1,0),(44512,6777,144758,'Concorezzo','Italy','IT','Concorezzo (Italy)',1,1,0),(44513,6786,144759,'Conde-Northen','France','FR','Conde-Northen (France)',1,1,0),(44514,6791,144760,'Condrieu','France','FR','Condrieu (France)',1,1,0),(44515,0,144761,'Connerre','France','FR','Connerre (France)',1,1,0),(44516,6828,144762,'Constanta','Romania','RO','Constanta (Romania)',1,1,0),(44517,0,144763,'Contres','France','FR','Contres (France)',1,1,0),(44518,0,144764,'Conversano','Italy','IT','Conversano (Italy)',1,1,0),(44519,6847,144765,'Conway','United States of America','US','Conway (United States of America)',1,1,0),(44520,0,144766,'Coo','Belgium','BE','Coo (Belgium)',1,1,0),(44521,0,144767,'Coolbeg Cross','Ireland','IE','Coolbeg Cross (Ireland)',1,1,0),(44522,0,144768,'Coolea','Ireland','IE','Coolea (Ireland)',1,1,0),(44523,6887,144769,'Copan','Honduras','HN','Copan (Honduras)',1,1,0),(44524,6892,144770,'Copley','United States of America','US','Copley (United States of America)',1,1,0),(44525,6896,144771,'Copper Center','United States of America','US','Copper Center (United States of America)',1,1,0),(44526,0,144772,'Coptiviney','United Kingdom','UK','Coptiviney (United Kingdom)',1,1,0),(44527,6904,144773,'Coquimbo','Chile','CL','Coquimbo (Chile)',1,1,0),(44528,6919,144774,'Corbigny','France','FR','Corbigny (France)',1,1,0),(44529,6928,144775,'Cordele','United States of America','US','Cordele (United States of America)',1,1,0),(44530,6969,144776,'Cornaredo','Italy','IT','Cornaredo (Italy)',1,1,0),(44531,0,144777,'Corning/Finger Lakes','United States of America','US','Corning/Finger Lakes (United States of America)',1,1,0),(44532,6994,144778,'Corps','France','FR','Corps (France)',1,1,0),(44533,6999,144779,'Correggio','Italy','IT','Correggio (Italy)',1,1,0),(44534,0,144780,'Cortanze','Italy','IT','Cortanze (Italy)',1,1,0),(44535,7026,144781,'Coruche','Portugal','PT','Coruche (Portugal)',1,1,0),(44536,7027,144782,'Corum','Turkey','TR','Corum (Turkey)',1,1,0),(44537,0,144783,'Cosgaya','Spain','ES','Cosgaya (Spain)',1,1,0),(44538,0,144784,'Costa Ballena','Spain','ES','Costa Ballena (Spain)',1,1,0),(44539,0,144785,'Costa Dei Gabbiani','Italy','IT','Costa Dei Gabbiani (Italy)',1,1,0),(44540,0,144786,'Costa Paradiso','Italy','IT','Costa Paradiso (Italy)',1,1,0),(44541,0,144787,'Costantina','Spain','ES','Costantina (Spain)',1,1,0),(44542,0,144788,'Cotai','China','CN','Cotai (China)',1,1,0),(44543,0,144789,'Cotas','Portugal','PT','Cotas (Portugal)',1,1,0),(44544,0,144790,'Coti Chiavari','France','FR','Coti Chiavari (France)',1,1,0),(44545,0,144791,'Cotillo','Spain','ES','Cotillo (Spain)',1,1,0),(44546,0,144792,'Cotopaxi Nationalpark','Ecuador','EC','Cotopaxi Nationalpark (Ecuador)',1,1,0),(44547,7061,144793,'Cotronei','Italy','IT','Cotronei (Italy)',1,1,0),(44548,0,144794,'Cottingham','United Kingdom','UK','Cottingham (United Kingdom)',1,1,0),(44549,0,144795,'Coucy-le-Chateau-Auffrique','France','FR','Coucy-le-Chateau-Auffrique (France)',1,1,0),(44550,0,144796,'Coueron','France','FR','Coueron (France)',1,1,0),(44551,7076,144797,'Couiza','France','FR','Couiza (France)',1,1,0),(44552,7080,144798,'Counce','United States of America','US','Counce (United States of America)',1,1,0),(44553,0,144799,'Courdimanche-sur-Essonne','France','FR','Courdimanche-sur-Essonne (France)',1,1,0),(44554,0,144800,'Cousset','Switzerland','CH','Cousset (Switzerland)',1,1,0),(44555,0,144801,'Coutansouze','France','FR','Coutansouze (France)',1,1,0),(44556,7111,144802,'Coventry','United States of America','US','Coventry (United States of America)',1,1,0),(44557,7116,144803,'Covina','United States of America','US','Covina (United States of America)',1,1,0),(44558,0,144804,'Cowes','United Kingdom','UK','Cowes (United Kingdom)',1,1,0),(44559,7164,144805,'Cran-Gevrier','France','FR','Cran-Gevrier (France)',1,1,0),(44560,7167,144806,'Cranston','United States of America','US','Cranston (United States of America)',1,1,0),(44561,0,144807,'Crawfordsburn','United Kingdom','UK','Crawfordsburn (United Kingdom)',1,1,0),(44562,7182,144808,'Crazannes','France','FR','Crazannes (France)',1,1,0),(44563,0,144809,'Crecado de Arana','Spain','ES','Crecado de Arana (Spain)',1,1,0),(44564,7194,144810,'Creil','France','FR','Creil (France)',1,1,0),(44565,0,144811,'Crema','Italy','IT','Crema (Italy)',1,1,0),(44566,0,144812,'Crespellano','Italy','IT','Crespellano (Italy)',1,1,0),(44567,0,144813,'Crest','France','FR','Crest (France)',1,1,0),(44568,0,144814,'Creysse (Lot)','France','FR','Creysse (Lot) (France)',1,1,0),(44569,0,144815,'Criccieth','United Kingdom','UK','Criccieth (United Kingdom)',1,1,0),(44570,0,144816,'Crithoni','Greece','GR','Crithoni (Greece)',1,1,0),(44571,7255,144817,'Crivitz','United States of America','US','Crivitz (United States of America)',1,1,0),(44572,0,144818,'Crni Lug','Croatia','HR','Crni Lug (Croatia)',1,1,0),(44573,0,144819,'Crocker Range','Malaysia','MY','Crocker Range (Malaysia)',1,1,0),(44574,7278,144820,'Crosby','United States of America','US','Crosby (United States of America)',1,1,0),(44575,0,144821,'Crossmaglen','United Kingdom','UK','Crossmaglen (United Kingdom)',1,1,0),(44576,7286,144822,'Crossville','United States of America','US','Crossville (United States of America)',1,1,0),(44577,0,144823,'Crottendorf','Germany','DE','Crottendorf (Germany)',1,1,0),(44578,0,144824,'Croy','United Kingdom','UK','Croy (United Kingdom)',1,1,0),(44579,0,144825,'Crystal Bay','United States of America','US','Crystal Bay (United States of America)',1,1,0),(44580,0,144826,'Crystal Beach','United States of America','US','Crystal Beach (United States of America)',1,1,0),(44581,0,144827,'Crystal Falls','United States of America','US','Crystal Falls (United States of America)',1,1,0),(44582,0,144828,'Crystall Falls','Canada','CA','Crystall Falls (Canada)',1,1,0),(44583,7331,144829,'Cucugnan','France','FR','Cucugnan (France)',1,1,0),(44584,7338,144830,'Cudrefin','Switzerland','CH','Cudrefin (Switzerland)',1,1,0),(44585,7340,144831,'Cuenca','Ecuador','EC','Cuenca (Ecuador)',1,1,0),(44586,0,144832,'Cuers','France','FR','Cuers (France)',1,1,0),(44587,7344,144833,'Cuiaba','Brazil','BR','Cuiaba (Brazil)',1,1,0),(44588,0,144834,'Cul-de-Sac','Saint Martin (French part)','MF','Cul-de-Sac (Saint Martin (French part))',1,1,0),(44589,0,144835,'Culloden Bay','Trinidad and Tobago','TT','Culloden Bay (Trinidad and Tobago)',1,1,0),(44590,7361,144836,'Cully','Switzerland','CH','Cully (Switzerland)',1,1,0),(44591,0,144837,'Cumbernauld','United Kingdom','UK','Cumbernauld (United Kingdom)',1,1,0),(44592,0,144838,'Cupra Marittima','Italy','IT','Cupra Marittima (Italy)',1,1,0),(44593,7402,144839,'Cusago','Italy','IT','Cusago (Italy)',1,1,0),(44594,30739,144840,'Cut Bank','United States of America','US','Cut Bank (United States of America)',1,1,0),(44595,7413,144841,'Cutro','Italy','IT','Cutro (Italy)',1,1,0),(44596,0,144842,'Cwmbran','United Kingdom','UK','Cwmbran (United Kingdom)',1,1,0),(44597,0,144843,'Czarna Gora','Poland','PL','Czarna Gora (Poland)',1,1,0),(44598,7428,144844,'Czorsztyn','Poland','PL','Czorsztyn (Poland)',1,1,0),(44599,0,144845,'Czosnow','Poland','PL','Czosnow (Poland)',1,1,0),(44600,0,144846,'Dadin','Spain','ES','Dadin (Spain)',1,1,0),(44601,7447,144847,'Dahlewitz','Germany','DE','Dahlewitz (Germany)',1,1,0),(44602,7456,144848,'Daimiel','Spain','ES','Daimiel (Spain)',1,1,0),(44603,7460,144849,'Dakar','Senegal','SN','Dakar (Senegal)',1,1,0),(44604,7462,144850,'Dakhla Oasis','Egypt','EG','Dakhla Oasis (Egypt)',1,1,0),(44605,30742,144851,'Dal','Norway','NO','Dal (Norway)',1,1,0),(44606,7470,144852,'Dalby','Australia','AU','Dalby (Australia)',1,1,0),(44607,7474,144853,'Daleville','United States of America','US','Daleville (United States of America)',1,1,0),(44608,7485,144854,'Dallas','United States of America','US','Dallas (United States of America)',1,1,0),(44609,7492,144855,'Dalmine','Italy','IT','Dalmine (Italy)',1,1,0),(44610,0,144856,'Daly Waters','Australia','AU','Daly Waters (Australia)',1,1,0),(44611,7499,144857,'Damai Beach','Malaysia','MY','Damai Beach (Malaysia)',1,1,0),(44612,7511,144858,'Dammarie-les-Lys','France','FR','Dammarie-les-Lys (France)',1,1,0),(44613,0,144859,'Dana','Jordan','JO','Dana (Jordan)',1,1,0),(44614,7521,144860,'Danby','United States of America','US','Danby (United States of America)',1,1,0),(44615,7526,144861,'Dandridge','United States of America','US','Dandridge (United States of America)',1,1,0),(44616,0,144862,'Dangio-Torre','Switzerland','CH','Dangio-Torre (Switzerland)',1,1,0),(44617,7539,144863,'Danville','United States of America','US','Danville (United States of America)',1,1,0),(44618,0,144864,'Danyang','South Korea','KR','Danyang (South Korea)',1,1,0),(44619,7547,144865,'Darby','United States of America','US','Darby (United States of America)',1,1,0),(44620,7555,144866,'Darien','United States of America','US','Darien (United States of America)',1,1,0),(44621,0,144867,'Darscheid','Germany','DE','Darscheid (Germany)',1,1,0),(44622,0,144868,'Dartmouth','United Kingdom','UK','Dartmouth (United Kingdom)',1,1,0),(44623,0,144869,'Darwen','United Kingdom','UK','Darwen (United Kingdom)',1,1,0),(44624,0,144870,'Daschow','Germany','DE','Daschow (Germany)',1,1,0),(44625,7580,144871,'Dasman','Kuwait','KW','Dasman (Kuwait)',1,1,0),(44626,7584,144872,'Datai Bay','Malaysia','MY','Datai Bay (Malaysia)',1,1,0),(44627,7591,144873,'Daugavpils','Latvia','LV','Daugavpils (Latvia)',1,1,0),(44628,0,144875,'Daverdisse','Belgium','BE','Daverdisse (Belgium)',1,1,0),(44629,0,144876,'Dawlish','United Kingdom','UK','Dawlish (United Kingdom)',1,1,0),(44630,0,144877,'Daytona Beach','United States of America','US','Daytona Beach (United States of America)',1,1,0),(44631,7630,144878,'Dayville','United States of America','US','Dayville (United States of America)',1,1,0),(44632,7632,144879,'Dazu','China','CN','Dazu (China)',1,1,0),(44633,30750,144880,'De Haan','Belgium','BE','De Haan (Belgium)',1,1,0),(44634,0,144881,'De Kwakel','Netherlands','NL','De Kwakel (Netherlands)',1,1,0),(44635,7643,144882,'Dease Lake','Canada','CA','Dease Lake (Canada)',1,1,0),(44636,7644,144883,'Death Valley','United States of America','US','Death Valley (United States of America)',1,1,0),(44637,0,144884,'Debark','Ethiopia','ET','Debark (Ethiopia)',1,1,0),(44638,7651,144885,'Debrecen','Hungary','HU','Debrecen (Hungary)',1,1,0),(44639,7653,144886,'Decatur','United States of America','US','Decatur (United States of America)',1,1,0),(44640,0,144887,'Dedham','United Kingdom','UK','Dedham (United Kingdom)',1,1,0),(44641,0,144888,'Deep Bay','Antigua & Barbuda','AG','Deep Bay (Antigua & Barbuda)',1,1,0),(44642,0,144889,'Deir ez-Zor','Syria',NULL,'Deir ez-Zor (Syria)',1,1,0),(44643,7687,144890,'Deiva Marina','Italy','IT','Deiva Marina (Italy)',1,1,0),(44644,0,144891,'Deizisau','Germany','DE','Deizisau (Germany)',1,1,0),(44645,7690,144892,'Delafield','United States of America','US','Delafield (United States of America)',1,1,0),(44646,7692,144893,'Delano','United States of America','US','Delano (United States of America)',1,1,0),(44647,7697,144894,'Delemont','Switzerland','CH','Delemont (Switzerland)',1,1,0),(44648,7703,144895,'Delicias','Mexico','MX','Delicias (Mexico)',1,1,0),(44649,7710,144896,'Delmar','United States of America','US','Delmar (United States of America)',1,1,0),(44650,7714,144897,'Delphi','Greece','GR','Delphi (Greece)',1,1,0),(44651,0,144898,'Delve','Germany','DE','Delve (Germany)',1,1,0),(44652,0,144899,'Den Oever','Netherlands','NL','Den Oever (Netherlands)',1,1,0),(44653,0,144900,'Denerau','Fiji Islands','FJ','Denerau (Fiji Islands)',1,1,0),(44654,30773,144901,'Denton','United States of America','US','Denton (United States of America)',1,1,0),(44655,7748,144902,'Denver','United States of America','US','Denver (United States of America)',1,1,0),(44656,0,144903,'Deols','France','FR','Deols (France)',1,1,0),(44657,7757,144904,'Deqing','China','CN','Deqing (China)',1,1,0),(44658,0,144905,'Derby','United Kingdom','UK','Derby (United Kingdom)',1,1,0),(44659,7765,144906,'Derio','Spain','ES','Derio (Spain)',1,1,0),(44660,7781,144907,'Deshaies','Guadeloupe','GP','Deshaies (Guadeloupe)',1,1,0),(44661,0,144908,'Detroit','United States of America','US','Detroit (United States of America)',1,1,0),(44662,0,144909,'Detroit Lakes','United States of America','US','Detroit Lakes (United States of America)',1,1,0),(44663,7794,144910,'Dettelbach','Germany','DE','Dettelbach (Germany)',1,1,0),(44664,0,144911,'Dettighofen','Germany','DE','Dettighofen (Germany)',1,1,0),(44665,0,144912,'Devizes','United Kingdom','UK','Devizes (United Kingdom)',1,1,0),(44666,0,144914,'Dhermi','Albania','AL','Dhermi (Albania)',1,1,0),(44667,7847,144915,'Diano Marina','Italy','IT','Diano Marina (Italy)',1,1,0),(44668,7853,144916,'Dicastillo','Spain','ES','Dicastillo (Spain)',1,1,0),(44669,0,144917,'Diegten','Switzerland','CH','Diegten (Switzerland)',1,1,0),(44670,7867,144918,'Diemelsee','Germany','DE','Diemelsee (Germany)',1,1,0),(44671,7879,144919,'Diessenhofen','Switzerland','CH','Diessenhofen (Switzerland)',1,1,0),(44672,0,144920,'Dieue-sur-Meuse','France','FR','Dieue-sur-Meuse (France)',1,1,0),(44673,7890,144921,'Digne-les-Bains','France','FR','Digne-les-Bains (France)',1,1,0),(44674,7892,144922,'Dijon','France','FR','Dijon (France)',1,1,0),(44675,0,144923,'Dikarpaz','Cyprus','CY','Dikarpaz (Cyprus)',1,1,0),(44676,7904,144924,'Dillingen','Germany','DE','Dillingen (Germany)',1,1,0),(44677,0,144925,'Dily','Czech Republic','CZ','Dily (Czech Republic)',1,1,0),(44678,0,144926,'Dimos Krioneridas','Greece','GR','Dimos Krioneridas (Greece)',1,1,0),(44679,7921,144927,'Dingle','Ireland','IE','Dingle (Ireland)',1,1,0),(44680,0,144928,'Dingxi','China','CN','Dingxi (China)',1,1,0),(44681,0,144929,'Dirinella','Switzerland','CH','Dirinella (Switzerland)',1,1,0),(44682,7940,144930,'Disentis','Switzerland','CH','Disentis (Switzerland)',1,1,0),(44683,7950,144931,'Ditzingen','Germany','DE','Ditzingen (Germany)',1,1,0),(44684,0,144932,'Diveyevo','Russia','RU','Diveyevo (Russia)',1,1,0),(44685,0,144933,'Dixon','United States of America','US','Dixon (United States of America)',1,1,0),(44686,7970,144934,'Dnepropetrovsk','Ukraine','UA','Dnepropetrovsk (Ukraine)',1,1,0),(44687,0,144935,'Dobrikow','Germany','DE','Dobrikow (Germany)',1,1,0),(44688,7980,144936,'Docklands','Australia','AU','Docklands (Australia)',1,1,0),(44689,7985,144937,'Dodoma','Tanzania','TZ','Dodoma (Tanzania)',1,1,0),(44690,0,144938,'Dogubeyazit','Turkey','TR','Dogubeyazit (Turkey)',1,1,0),(44691,0,144939,'Dolcedo-Lecchiore','Italy','IT','Dolcedo-Lecchiore (Italy)',1,1,0),(44692,0,144940,'Dollach','Austria','AT','Dollach (Austria)',1,1,0),(44693,8005,144941,'Dollnstein','Germany','DE','Dollnstein (Germany)',1,1,0),(44694,8019,144942,'Domaso','Italy','IT','Domaso (Italy)',1,1,0),(44695,0,144943,'Dombovar','Hungary','HU','Dombovar (Hungary)',1,1,0),(44696,8025,144944,'Dominica','Dominica','DM','Dominica (Dominica)',1,1,0),(44697,30779,144945,'Don Valley','Australia','AU','Don Valley (Australia)',1,1,0),(44698,8045,144946,'Donchery','France','FR','Donchery (France)',1,1,0),(44699,0,144947,'Dong\'ao Island','China','CN','Dong\'ao Island (China)',1,1,0),(44700,0,144948,'Dongara','Australia','AU','Dongara (Australia)',1,1,0),(44701,8066,144949,'Donnini','Italy','IT','Donnini (Italy)',1,1,0),(44702,0,144951,'Doorn','Netherlands','NL','Doorn (Netherlands)',1,1,0),(44703,8082,144952,'Dorado','Puerto Rico','PR','Dorado (Puerto Rico)',1,1,0),(44704,0,144953,'Dorentrup','Germany','DE','Dorentrup (Germany)',1,1,0),(44705,0,144954,'Dorio','Italy','IT','Dorio (Italy)',1,1,0),(44706,0,144955,'Dornecy','France','FR','Dornecy (France)',1,1,0),(44707,0,144956,'Dornstadt','Germany','DE','Dornstadt (Germany)',1,1,0),(44708,0,144957,'Dornum','Germany','DE','Dornum (Germany)',1,1,0),(44709,8103,144958,'Dorsten','Germany','DE','Dorsten (Germany)',1,1,0),(44710,0,144959,'Dottingen','Germany','DE','Dottingen (Germany)',1,1,0),(44711,8114,144960,'Douala','Cameroon','CM','Douala (Cameroon)',1,1,0),(44712,0,144961,'Douglas Lake','Canada','CA','Douglas Lake (Canada)',1,1,0),(44713,0,144962,'Dover','United States of America','US','Dover (United States of America)',1,1,0),(44714,8138,144963,'Downings','Ireland','IE','Downings (Ireland)',1,1,0),(44715,0,144964,'Draaikraal','South Africa','ZA','Draaikraal (South Africa)',1,1,0),(44716,0,144965,'Drage','Germany','DE','Drage (Germany)',1,1,0),(44717,8159,144966,'Drakensberg','South Africa','ZA','Drakensberg (South Africa)',1,1,0),(44718,8161,144967,'Drammen','Norway','NO','Drammen (Norway)',1,1,0),(44719,8166,144968,'Drapia','Italy','IT','Drapia (Italy)',1,1,0),(44720,0,144969,'Drasnice','Croatia','HR','Drasnice (Croatia)',1,1,0),(44721,0,144970,'Drawnik-Borowiec','Poland','PL','Drawnik-Borowiec (Poland)',1,1,0),(44722,8181,144971,'Dreznik Grad','Croatia','HR','Dreznik Grad (Croatia)',1,1,0),(44723,0,144972,'Drimiskos','Greece','GR','Drimiskos (Greece)',1,1,0),(44724,0,144973,'Dro','Italy','IT','Dro (Italy)',1,1,0),(44725,0,144974,'Dromineer','Ireland','IE','Dromineer (Ireland)',1,1,0),(44726,8196,144975,'Dronninglund','Denmark','DK','Dronninglund (Denmark)',1,1,0),(44727,8197,144976,'Drouin','Australia','AU','Drouin (Australia)',1,1,0),(44728,8201,144977,'Drumheller','Canada','CA','Drumheller (Canada)',1,1,0),(44729,0,144978,'Drumnadrochit','United Kingdom','UK','Drumnadrochit (United Kingdom)',1,1,0),(44730,8209,144979,'Druskininkai','Lithuania','LT','Druskininkai (Lithuania)',1,1,0),(44731,0,144980,'Dryos','Greece','GR','Dryos (Greece)',1,1,0),(44732,30786,144981,'Du Quoin','United States of America','US','Du Quoin (United States of America)',1,1,0),(44733,8218,144982,'Duarte','United States of America','US','Duarte (United States of America)',1,1,0),(44734,8222,144983,'Dublin','Ireland','IE','Dublin (Ireland)',1,1,0),(44735,8232,144984,'Dubuque','United States of America','US','Dubuque (United States of America)',1,1,0),(44736,0,144985,'Dudley','United Kingdom','UK','Dudley (United Kingdom)',1,1,0),(44737,0,144986,'Duggingen','Switzerland','CH','Duggingen (Switzerland)',1,1,0),(44738,0,144987,'Dugi Otok','Croatia','HR','Dugi Otok (Croatia)',1,1,0),(44739,8253,144988,'Duino','Italy','IT','Duino (Italy)',1,1,0),(44740,8261,144989,'Dulles','United States of America','US','Dulles (United States of America)',1,1,0),(44741,0,144990,'Dulnain Bridge','United Kingdom','UK','Dulnain Bridge (United Kingdom)',1,1,0),(44742,0,144991,'Dumas','United States of America','US','Dumas (United States of America)',1,1,0),(44743,8276,144992,'Dumfries','United States of America','US','Dumfries (United States of America)',1,1,0),(44744,0,144993,'Duna Verde','Italy','IT','Duna Verde (Italy)',1,1,0),(44745,8305,144994,'Dunedin','United States of America','US','Dunedin (United States of America)',1,1,0),(44746,0,144995,'Dungannon','United Kingdom','UK','Dungannon (United Kingdom)',1,1,0),(44747,0,144997,'Dunjaska Streda','Slovakia','SK','Dunjaska Streda (Slovakia)',1,1,0),(44748,8319,144998,'Dunkeld','Australia','AU','Dunkeld (Australia)',1,1,0),(44749,0,144999,'Dunkerque (Dunkirchen)','France','FR','Dunkerque (Dunkirchen) (France)',1,1,0),(44750,8326,145000,'Dunmore East','Ireland','IE','Dunmore East (Ireland)',1,1,0),(44751,8337,145001,'Dunsmuir','United States of America','US','Dunsmuir (United States of America)',1,1,0),(44752,8345,145002,'Dupont','United States of America','US','Dupont (United States of America)',1,1,0),(44753,8356,145003,'Durbuy','Belgium','BE','Durbuy (Belgium)',1,1,0),(44754,0,145004,'Durrus','Ireland','IE','Durrus (Ireland)',1,1,0),(44755,8371,145005,'Duson','United States of America','US','Duson (United States of America)',1,1,0),(44756,8385,145007,'Dyersburg','United States of America','US','Dyersburg (United States of America)',1,1,0),(44757,0,145008,'Dymnica','Poland','PL','Dymnica (Poland)',1,1,0),(44758,0,145009,'Dzialdowo','Poland','PL','Dzialdowo (Poland)',1,1,0),(44759,0,145010,'Eagle','United States of America','US','Eagle (United States of America)',1,1,0),(44760,0,145011,'Earlswood','United Kingdom','UK','Earlswood (United Kingdom)',1,1,0),(44761,30806,145012,'East Elmhurst','United States of America','US','East Elmhurst (United States of America)',1,1,0),(44762,30812,145013,'East Greenbush','United States of America','US','East Greenbush (United States of America)',1,1,0),(44763,30817,145014,'East Hampton','United States of America','US','East Hampton (United States of America)',1,1,0),(44764,0,145015,'East Jamaica','United States of America','US','East Jamaica (United States of America)',1,1,0),(44765,30851,145016,'East Syracuse','United States of America','US','East Syracuse (United States of America)',1,1,0),(44766,0,145017,'Eastleigh','United Kingdom','UK','Eastleigh (United Kingdom)',1,1,0),(44767,8445,145018,'Eastman','United States of America','US','Eastman (United States of America)',1,1,0),(44768,8446,145019,'Easton','United States of America','US','Easton (United States of America)',1,1,0),(44769,8454,145020,'Eaubonne','France','FR','Eaubonne (France)',1,1,0),(44770,0,145021,'Eaux-Puiseaux','France','FR','Eaux-Puiseaux (France)',1,1,0),(44771,0,145022,'Ebelsbach','Germany','DE','Ebelsbach (Germany)',1,1,0),(44772,8463,145023,'Ebendorf','Germany','DE','Ebendorf (Germany)',1,1,0),(44773,8464,145024,'Ebensburg','United States of America','US','Ebensburg (United States of America)',1,1,0),(44774,0,145025,'Ebenthal','Austria','AT','Ebenthal (Austria)',1,1,0),(44775,0,145026,'Eberbach','Germany','DE','Eberbach (Germany)',1,1,0),(44776,0,145027,'Eberswalde','Germany','DE','Eberswalde (Germany)',1,1,0),(44777,0,145028,'Ebnat-Kappel','Switzerland','CH','Ebnat-Kappel (Switzerland)',1,1,0),(44778,8470,145029,'Eboli','Italy','IT','Eboli (Italy)',1,1,0),(44779,0,145030,'Ebsdorfergrund','Germany','DE','Ebsdorfergrund (Germany)',1,1,0),(44780,0,145031,'Eckernforde','Germany','DE','Eckernforde (Germany)',1,1,0),(44781,0,145032,'Ecuras','France','FR','Ecuras (France)',1,1,0),(44782,8502,145033,'Edenvale','South Africa','ZA','Edenvale (South Africa)',1,1,0),(44783,8508,145034,'Edgartown','United States of America','US','Edgartown (United States of America)',1,1,0),(44784,8515,145035,'Edgewater','United States of America','US','Edgewater (United States of America)',1,1,0),(44785,0,145036,'Edinburg','United States of America','US','Edinburg (United States of America)',1,1,0),(44786,8528,145037,'Edmonton','Canada','CA','Edmonton (Canada)',1,1,0),(44787,8538,145038,'Edwards','United States of America','US','Edwards (United States of America)',1,1,0),(44788,0,145039,'Eext','Netherlands','NL','Eext (Netherlands)',1,1,0),(44789,0,145040,'Effelder-Rauenstein','Germany','DE','Effelder-Rauenstein (Germany)',1,1,0),(44790,0,145041,'Eggenburg','Austria','AT','Eggenburg (Austria)',1,1,0),(44791,0,145042,'Eggenthal','Germany','DE','Eggenthal (Germany)',1,1,0),(44792,0,145043,'Ehlscheid','Germany','DE','Ehlscheid (Germany)',1,1,0),(44793,8573,145044,'Ehrwald','Austria','AT','Ehrwald (Austria)',1,1,0),(44794,8579,145045,'Eicklingen','Germany','DE','Eicklingen (Germany)',1,1,0),(44795,0,145046,'Eisenbach (Hochschwarzwald)','Germany','DE','Eisenbach (Hochschwarzwald) (Germany)',1,1,0),(44796,0,145047,'Eisenberg (Allgau)','Germany','DE','Eisenberg (Allgau) (Germany)',1,1,0),(44797,8603,145048,'Ekero','Sweden','SE','Ekero (Sweden)',1,1,0),(44798,0,145049,'El Astillero','Spain','ES','El Astillero (Spain)',1,1,0),(44799,30872,145050,'El Burgo','Spain','ES','El Burgo (Spain)',1,1,0),(44800,0,145051,'El Cabaco','Spain','ES','El Cabaco (Spain)',1,1,0),(44801,30875,145052,'El Calafate','Argentina','AR','El Calafate (Argentina)',1,1,0),(44802,0,145053,'El Charco del Palo','Spain','ES','El Charco del Palo (Spain)',1,1,0),(44803,0,145054,'El Coronil','Spain','ES','El Coronil (Spain)',1,1,0),(44804,30893,145055,'El Fuerte','Mexico','MX','El Fuerte (Mexico)',1,1,0),(44805,30894,145056,'El Gastor','Spain','ES','El Gastor (Spain)',1,1,0),(44806,30920,145057,'El Puerto de Santa Maria','Spain','ES','El Puerto de Santa Maria (Spain)',1,1,0),(44807,30927,145058,'El Rocio','Spain','ES','El Rocio (Spain)',1,1,0),(44808,30928,145059,'El Rompido','Spain','ES','El Rompido (Spain)',1,1,0),(44809,30932,145060,'El Segundo','United States of America','US','El Segundo (United States of America)',1,1,0),(44810,0,145061,'El Serrat','Andorra','AD','El Serrat (Andorra)',1,1,0),(44811,30934,145062,'El Tanque','Spain','ES','El Tanque (Spain)',1,1,0),(44812,30938,145063,'El Vendrell','Spain','ES','El Vendrell (Spain)',1,1,0),(44813,0,145064,'Elbing','Poland','PL','Elbing (Poland)',1,1,0),(44814,8638,145065,'Eleuthera','Bahamas','BS','Eleuthera (Bahamas)',1,1,0),(44815,0,145066,'Elia Beach','Greece','GR','Elia Beach (Greece)',1,1,0),(44816,8653,145067,'Elixhausen','Austria','AT','Elixhausen (Austria)',1,1,0),(44817,0,145068,'Elizabethtown','United States of America','US','Elizabethtown (United States of America)',1,1,0),(44818,0,145069,'Elkeringhausen','Germany','DE','Elkeringhausen (Germany)',1,1,0),(44819,8662,145070,'Elkhorn','United States of America','US','Elkhorn (United States of America)',1,1,0),(44820,0,145071,'Elland','United Kingdom','UK','Elland (United Kingdom)',1,1,0),(44821,0,145072,'Elliniko','Greece','GR','Elliniko (Greece)',1,1,0),(44822,30943,145073,'Elma','United States of America','US','Elma (United States of America)',1,1,0),(44823,0,145074,'Elmsford','United States of America','US','Elmsford (United States of America)',1,1,0),(44824,0,145075,'Elne','France','FR','Elne (France)',1,1,0),(44825,8699,145076,'Elora','Canada','CA','Elora (Canada)',1,1,0),(44826,0,145077,'Els Poblets','Spain','ES','Els Poblets (Spain)',1,1,0),(44827,8708,145078,'Elst','Netherlands','NL','Elst (Netherlands)',1,1,0),(44828,0,145079,'Elsterwerda','Germany','DE','Elsterwerda (Germany)',1,1,0),(44829,0,145080,'Eltendorf','Austria','AT','Eltendorf (Austria)',1,1,0),(44830,8712,145081,'Eltham','Australia','AU','Eltham (Australia)',1,1,0),(44831,0,145082,'Eltmann','Germany','DE','Eltmann (Germany)',1,1,0),(44832,0,145083,'Elysium','South Africa','ZA','Elysium (South Africa)',1,1,0),(44833,8734,145084,'Emerald Isle','United States of America','US','Emerald Isle (United States of America)',1,1,0),(44834,0,145085,'Emory','United States of America','US','Emory (United States of America)',1,1,0),(44835,8749,145086,'Empedrado','Argentina','AR','Empedrado (Argentina)',1,1,0),(44836,8761,145087,'Encarnacion','Paraguay','PY','Encarnacion (Paraguay)',1,1,0),(44837,0,145088,'Ennevelin','France','FR','Ennevelin (France)',1,1,0),(44838,8800,145089,'Enniscorthy','Ireland','IE','Enniscorthy (Ireland)',1,1,0),(44839,8806,145090,'Enns','Austria','AT','Enns (Austria)',1,1,0),(44840,0,145091,'Ensisheim','France','FR','Ensisheim (France)',1,1,0),(44841,0,145092,'Entabeni Game Reserve','South Africa','ZA','Entabeni Game Reserve (South Africa)',1,1,0),(44842,8822,145093,'Entre Rios','Argentina','AR','Entre Rios (Argentina)',1,1,0),(44843,0,145094,'Epernon','France','FR','Epernon (France)',1,1,0),(44844,8832,145095,'Ephraim','United States of America','US','Ephraim (United States of America)',1,1,0),(44845,0,145096,'Ephrata','United States of America','US','Ephrata (United States of America)',1,1,0),(44846,8838,145097,'Epinay-sur-Seine','France','FR','Epinay-sur-Seine (France)',1,1,0),(44847,8839,145098,'Epiniac','France','FR','Epiniac (France)',1,1,0),(44848,8841,145099,'Epone','France','FR','Epone (France)',1,1,0),(44849,8846,145100,'Eptingen','Switzerland','CH','Eptingen (Switzerland)',1,1,0),(44850,8856,145101,'Erbusco','Italy','IT','Erbusco (Italy)',1,1,0),(44851,8866,145102,'Erechim','Brazil','BR','Erechim (Brazil)',1,1,0),(44852,0,145103,'Erg Chegaga','Morocco','MA','Erg Chegaga (Morocco)',1,1,0),(44853,0,145104,'Eriskirch','Germany','DE','Eriskirch (Germany)',1,1,0),(44854,0,145105,'Erkelenz','Germany','DE','Erkelenz (Germany)',1,1,0),(44855,8882,145106,'Erlangen','Germany','DE','Erlangen (Germany)',1,1,0),(44856,0,145107,'Erlbach','Germany','DE','Erlbach (Germany)',1,1,0),(44857,8884,145108,'Erldunda','Australia','AU','Erldunda (Australia)',1,1,0),(44858,8885,145109,'Erlensee','Germany','DE','Erlensee (Germany)',1,1,0),(44859,0,145111,'Erratzu','Spain','ES','Erratzu (Spain)',1,1,0),(44860,0,145112,'Erskine','United Kingdom','UK','Erskine (United Kingdom)',1,1,0),(44861,30952,145113,'Es Migjorn Gran','Spain','ES','Es Migjorn Gran (Spain)',1,1,0),(44862,0,145114,'Eschau','Germany','DE','Eschau (Germany)',1,1,0),(44863,0,145115,'Eschede','Germany','DE','Eschede (Germany)',1,1,0),(44864,8922,145116,'Eschwege','Germany','DE','Eschwege (Germany)',1,1,0),(44865,8924,145117,'Escolives-Sainte-Camille','France','FR','Escolives-Sainte-Camille (France)',1,1,0),(44866,8967,145118,'Essex','United States of America','US','Essex (United States of America)',1,1,0),(44867,8975,145119,'Essoyes','France','FR','Essoyes (France)',1,1,0),(44868,0,145120,'Estellenchs','Spain','ES','Estellenchs (Spain)',1,1,0),(44869,8991,145121,'Estevan','Canada','CA','Estevan (Canada)',1,1,0),(44870,0,145122,'Esto-Sadok','Russia','RU','Esto-Sadok (Russia)',1,1,0),(44871,0,145123,'Esvres-sur-Indre','France','FR','Esvres-sur-Indre (France)',1,1,0),(44872,9005,145124,'Etiolles','France','FR','Etiolles (France)',1,1,0),(44873,9021,145125,'Etten-Leur','Netherlands','NL','Etten-Leur (Netherlands)',1,1,0),(44874,9031,145126,'Euerdorf','Germany','DE','Euerdorf (Germany)',1,1,0),(44875,0,145127,'Euratsfeld','Austria','AT','Euratsfeld (Austria)',1,1,0),(44876,0,145128,'Evander','South Africa','ZA','Evander (South Africa)',1,1,0),(44877,9060,145129,'Everett','United States of America','US','Everett (United States of America)',1,1,0),(44878,0,145130,'Everglades National Park','United States of America','US','Everglades National Park (United States of America)',1,1,0),(44879,0,145131,'Evergreen','United States of America','US','Evergreen (United States of America)',1,1,0),(44880,0,145132,'Evershot','United Kingdom','UK','Evershot (United Kingdom)',1,1,0),(44881,9068,145133,'Evian-les-Bains','France','FR','Evian-les-Bains (France)',1,1,0),(44882,0,145134,'Exeter','United Kingdom','UK','Exeter (United Kingdom)',1,1,0),(44883,9088,145135,'Exmouth','Australia','AU','Exmouth (Australia)',1,1,0),(44884,9098,145136,'Eygurande','France','FR','Eygurande (France)',1,1,0),(44885,0,145137,'Eyre Square','Ireland','IE','Eyre Square (Ireland)',1,1,0),(44886,0,145138,'Ez Zahra','Tunisia','TN','Ez Zahra (Tunisia)',1,1,0),(44887,0,145139,'Ezhou','China','CN','Ezhou (China)',1,1,0),(44888,9111,145140,'Faak am See','Austria','AT','Faak am See (Austria)',1,1,0),(44889,0,145141,'Fabbrica di Peccioli','Italy','IT','Fabbrica di Peccioli (Italy)',1,1,0),(44890,9129,145142,'Fahrenzhausen','Germany','DE','Fahrenzhausen (Germany)',1,1,0),(44891,9140,145143,'Fairfield','United States of America','US','Fairfield (United States of America)',1,1,0),(44892,0,145144,'Fairfield Bay','United States of America','US','Fairfield Bay (United States of America)',1,1,0),(44893,9147,145145,'Fairlawn','United States of America','US','Fairlawn (United States of America)',1,1,0),(44894,0,145146,'Faja Grande','Portugal','PT','Faja Grande (Portugal)',1,1,0),(44895,9169,145147,'Falcade','Italy','IT','Falcade (Italy)',1,1,0),(44896,0,145148,'Falfield','United Kingdom','UK','Falfield (United Kingdom)',1,1,0),(44897,0,145149,'Falkenstein/Vogtl.','Germany','DE','Falkenstein/Vogtl. (Germany)',1,1,0),(44898,9196,145150,'Falmouth Harbour','Antigua & Barbuda','AG','Falmouth Harbour (Antigua & Barbuda)',1,1,0),(44899,0,145151,'Falset','Spain','ES','Falset (Spain)',1,1,0),(44900,0,145152,'Fara Gera d\'Adda','Italy','IT','Fara Gera d\'Adda (Italy)',1,1,0),(44901,9215,145153,'Fara in Sabina','Italy','IT','Fara in Sabina (Italy)',1,1,0),(44902,9224,145154,'Farevejle','Denmark','DK','Farevejle (Denmark)',1,1,0),(44903,0,145155,'Faringdon','United Kingdom','UK','Faringdon (United Kingdom)',1,1,0),(44904,9248,145156,'Farra di Soligo','Italy','IT','Farra di Soligo (Italy)',1,1,0),(44905,0,145157,'Farschweiler','Germany','DE','Farschweiler (Germany)',1,1,0),(44906,0,145158,'Farstad','Norway','NO','Farstad (Norway)',1,1,0),(44907,0,145159,'Fasano','Italy','IT','Fasano (Italy)',1,1,0),(44908,0,145160,'Fatima','Argentina','AR','Fatima (Argentina)',1,1,0),(44909,9270,145161,'Favara','Spain','ES','Favara (Spain)',1,1,0),(44910,0,145162,'Fayetteville','United States of America','US','Fayetteville (United States of America)',1,1,0),(44911,0,145163,'Fayt-Lez-Manage','Belgium','BE','Fayt-Lez-Manage (Belgium)',1,1,0),(44912,0,145164,'Federow','Germany','DE','Federow (Germany)',1,1,0),(44913,0,145165,'Feichten','Austria','AT','Feichten (Austria)',1,1,0),(44914,9298,145166,'Feira de Santana','Brazil','BR','Feira de Santana (Brazil)',1,1,0),(44915,9305,145167,'Feldkirchen an der Donau','Austria','AT','Feldkirchen an der Donau (Austria)',1,1,0),(44916,0,145168,'Felixstowe','United Kingdom','UK','Felixstowe (United Kingdom)',1,1,0),(44917,9312,145169,'Fellbach','Germany','DE','Fellbach (Germany)',1,1,0),(44918,0,145170,'Fenton','United States of America','US','Fenton (United States of America)',1,1,0),(44919,9337,145171,'Ferentillo','Italy','IT','Ferentillo (Italy)',1,1,0),(44920,9338,145172,'Ferentino','Italy','IT','Ferentino (Italy)',1,1,0),(44921,0,145173,'Ferlini','Croatia','HR','Ferlini (Croatia)',1,1,0),(44922,9350,145174,'Fernandina Beach','United States of America','US','Fernandina Beach (United States of America)',1,1,0),(44923,9352,145175,'Ferndale','United States of America','US','Ferndale (United States of America)',1,1,0),(44924,9362,145176,'Ferragudo','Portugal','PT','Ferragudo (Portugal)',1,1,0),(44925,0,145177,'Ferreira do Alentejo','Portugal','PT','Ferreira do Alentejo (Portugal)',1,1,0),(44926,0,145178,'Ferrette','France','FR','Ferrette (France)',1,1,0),(44927,0,145179,'Ferry','Guadeloupe','GP','Ferry (Guadeloupe)',1,1,0),(44928,0,145180,'Fettercairn','United Kingdom','UK','Fettercairn (United Kingdom)',1,1,0),(44929,9383,145181,'Feuchtwangen','Germany','DE','Feuchtwangen (Germany)',1,1,0),(44930,0,145182,'Fichtenau','Germany','DE','Fichtenau (Germany)',1,1,0),(44931,9397,145183,'Fiera di Primiero','Italy','IT','Fiera di Primiero (Italy)',1,1,0),(44932,9398,145184,'Fiesch','Switzerland','CH','Fiesch (Switzerland)',1,1,0),(44933,0,145185,'Filipini','Croatia','HR','Filipini (Croatia)',1,1,0),(44934,9437,145186,'Finiki','Greece','GR','Finiki (Greece)',1,1,0),(44935,0,145187,'Finistere','France','FR','Finistere (France)',1,1,0),(44936,0,145188,'Finnentrop','Germany','DE','Finnentrop (Germany)',1,1,0),(44937,9444,145189,'Finningen','Germany','DE','Finningen (Germany)',1,1,0),(44938,9447,145190,'Finspang','Sweden','SE','Finspang (Sweden)',1,1,0),(44939,0,145191,'Fintry','United Kingdom','UK','Fintry (United Kingdom)',1,1,0),(44940,0,145192,'Fintry','Canada','CA','Fintry (Canada)',1,1,0),(44941,9458,145193,'Firenzuola','Italy','IT','Firenzuola (Italy)',1,1,0),(44942,0,145194,'Fiscardo','Greece','GR','Fiscardo (Greece)',1,1,0),(44943,9465,145195,'Fish Camp','United States of America','US','Fish Camp (United States of America)',1,1,0),(44944,9466,145196,'Fish Hoek','South Africa','ZA','Fish Hoek (South Africa)',1,1,0),(44945,9468,145197,'Fisher Island','United States of America','US','Fisher Island (United States of America)',1,1,0),(44946,0,145198,'Fister','Norway','NO','Fister (Norway)',1,1,0),(44947,0,145199,'Fitou','France','FR','Fitou (France)',1,1,0),(44948,0,145200,'Fiumana di Predappio','Italy','IT','Fiumana di Predappio (Italy)',1,1,0),(44949,0,145201,'Fjallbacka','Sweden','SE','Fjallbacka (Sweden)',1,1,0),(44950,0,145202,'Fla','Norway','NO','Fla (Norway)',1,1,0),(44951,0,145203,'Flaach','Switzerland','CH','Flaach (Switzerland)',1,1,0),(44952,9500,145204,'Flam','Norway','NO','Flam (Norway)',1,1,0),(44953,0,145205,'Flatsia','Greece','GR','Flatsia (Greece)',1,1,0),(44954,0,145206,'Flein','Germany','DE','Flein (Germany)',1,1,0),(44955,9510,145207,'Flekkefjord','Norway','NO','Flekkefjord (Norway)',1,1,0),(44956,9515,145208,'Flensburg','Germany','DE','Flensburg (Germany)',1,1,0),(44957,0,145209,'Fleurie','France','FR','Fleurie (France)',1,1,0),(44958,0,145210,'Floirac','France','FR','Floirac (France)',1,1,0),(44959,9543,145211,'Florence','United States of America','US','Florence (United States of America)',1,1,0),(44960,0,145212,'Florencia','Colombia','CO','Florencia (Colombia)',1,1,0),(44961,0,145213,'Flurlingen','Switzerland','CH','Flurlingen (Switzerland)',1,1,0),(44962,0,145214,'Foli','Croatia','HR','Foli (Croatia)',1,1,0),(44963,0,145215,'Folkestone','United Kingdom','UK','Folkestone (United Kingdom)',1,1,0),(44964,0,145216,'Folkstone','United Kingdom','UK','Folkstone (United Kingdom)',1,1,0),(44965,9603,145217,'Follina','Italy','IT','Follina (Italy)',1,1,0),(44966,9606,145218,'Folsom','United States of America','US','Folsom (United States of America)',1,1,0),(44967,9608,145219,'Fond du Lac','United States of America','US','Fond du Lac (United States of America)',1,1,0),(44968,0,145220,'Font de Sa Cala','Spain','ES','Font de Sa Cala (Spain)',1,1,0),(44969,0,145221,'Fontaine-la-Soret','France','FR','Fontaine-la-Soret (France)',1,1,0),(44970,9614,145222,'Fontaine-Notre-Dame','France','FR','Fontaine-Notre-Dame (France)',1,1,0),(44971,0,145223,'Fontanella-Faschina','Austria','AT','Fontanella-Faschina (Austria)',1,1,0),(44972,0,145224,'Fontclara','Spain','ES','Fontclara (Spain)',1,1,0),(44973,0,145225,'Fonte','Italy','IT','Fonte (Italy)',1,1,0),(44974,0,145226,'Fontevivo','Italy','IT','Fontevivo (Italy)',1,1,0),(44975,9640,145227,'Forbes','Australia','AU','Forbes (Australia)',1,1,0),(44976,9650,145228,'Fordyce','United States of America','US','Fordyce (United States of America)',1,1,0),(44977,0,145229,'Forest Grove','United States of America','US','Forest Grove (United States of America)',1,1,0),(44978,0,145230,'Forest Hill','United States of America','US','Forest Hill (United States of America)',1,1,0),(44979,9657,145231,'Forestville','Canada','CA','Forestville (Canada)',1,1,0),(44980,0,145232,'Foret-Fouesnant','France','FR','Foret-Fouesnant (France)',1,1,0),(44981,0,145233,'Forfar','United Kingdom','UK','Forfar (United Kingdom)',1,1,0),(44982,0,145234,'Forio (d\'Ischia)','Italy','IT','Forio (d\'Ischia) (Italy)',1,1,0),(44983,9667,145235,'Forks','United States of America','US','Forks (United States of America)',1,1,0),(44984,0,145236,'Formazza','Italy','IT','Formazza (Italy)',1,1,0),(44985,9685,145237,'Forresters Beach','Australia','AU','Forresters Beach (Australia)',1,1,0),(44986,0,145238,'Fort Hood','United States of America','US','Fort Hood (United States of America)',1,1,0),(44987,0,145239,'Fort McMurray','Canada','CA','Fort McMurray (Canada)',1,1,0),(44988,0,145240,'Fort Portal','Uganda','UG','Fort Portal (Uganda)',1,1,0),(44989,31021,145241,'Fort Smith','United States of America','US','Fort Smith (United States of America)',1,1,0),(44990,9696,145242,'Fort-de-France','Martinique','MQ','Fort-de-France (Martinique)',1,1,0),(44991,9705,145243,'Forza d\'Agro','Italy','IT','Forza d\'Agro (Italy)',1,1,0),(44992,0,145244,'Fossacesia','Italy','IT','Fossacesia (Italy)',1,1,0),(44993,9719,145245,'Fougeres','France','FR','Fougeres (France)',1,1,0),(44994,0,145246,'Fouquieres-les-Bethu','France','FR','Fouquieres-les-Bethu (France)',1,1,0),(44995,0,145247,'Four Oaks','United States of America','US','Four Oaks (United States of America)',1,1,0),(44996,9725,145248,'Fouras','France','FR','Fouras (France)',1,1,0),(44997,9727,145249,'Fourmies','France','FR','Fourmies (France)',1,1,0),(44998,9741,145250,'Foz','Spain','ES','Foz (Spain)',1,1,0),(44999,0,145251,'Frammersbach','Germany','DE','Frammersbach (Germany)',1,1,0),(45000,0,145252,'Franca do Campo','Portugal','PT','Franca do Campo (Portugal)',1,1,0),(45001,0,145253,'Franceses','Spain','ES','Franceses (Spain)',1,1,0),(45002,9754,145254,'Francistown','Botswana','BW','Francistown (Botswana)',1,1,0),(45003,9759,145255,'Franeker','Netherlands','NL','Franeker (Netherlands)',1,1,0),(45004,9773,145256,'Frantiskovy Lazne','Czech Republic','CZ','Frantiskovy Lazne (Czech Republic)',1,1,0),(45005,9783,145257,'Frauenau','Germany','DE','Frauenau (Germany)',1,1,0),(45006,9784,145258,'Frauenfeld','Switzerland','CH','Frauenfeld (Switzerland)',1,1,0),(45007,9788,145259,'Fray Bentos','Uruguay','UY','Fray Bentos (Uruguay)',1,1,0),(45008,9789,145260,'Frazer','United States of America','US','Frazer (United States of America)',1,1,0),(45009,9805,145261,'Fredonia','United States of America','US','Fredonia (United States of America)',1,1,0),(45010,9810,145262,'Freehold','United States of America','US','Freehold (United States of America)',1,1,0),(45011,0,145263,'Freeport','United States of America','US','Freeport (United States of America)',1,1,0),(45012,0,145264,'Freeport','United States of America','US','Freeport (United States of America)',1,1,0),(45013,9816,145265,'Freetown','Sierra Leone','SL','Freetown (Sierra Leone)',1,1,0),(45014,9821,145266,'Freiberg','Germany','DE','Freiberg (Germany)',1,1,0),(45015,9825,145267,'Freiensteinau','Germany','DE','Freiensteinau (Germany)',1,1,0),(45016,0,145268,'Freistadt','Austria','AT','Freistadt (Austria)',1,1,0),(45017,0,145269,'Freixinho','Portugal','PT','Freixinho (Portugal)',1,1,0),(45018,0,145270,'Freshford','Ireland','IE','Freshford (Ireland)',1,1,0),(45019,9843,145271,'Fresnadillo','Spain','ES','Fresnadillo (Spain)',1,1,0),(45020,9847,145272,'Fresnillo','Mexico','MX','Fresnillo (Mexico)',1,1,0),(45021,9853,145273,'Freyming-Merlebach','France','FR','Freyming-Merlebach (France)',1,1,0),(45022,9854,145274,'Fribourg','Switzerland','CH','Fribourg (Switzerland)',1,1,0),(45023,9856,145275,'Fridley','United States of America','US','Fridley (United States of America)',1,1,0),(45024,0,145276,'Friesenheim (Baden)','Germany','DE','Friesenheim (Baden) (Germany)',1,1,0),(45025,9872,145277,'Frigate Bay','St. Kitts and Nevis','KN','Frigate Bay (St. Kitts and Nevis)',1,1,0),(45026,0,145278,'Frodsham','United Kingdom','UK','Frodsham (United Kingdom)',1,1,0),(45027,0,145279,'Frumoasa (Harghita)','Romania','RO','Frumoasa (Harghita) (Romania)',1,1,0),(45028,0,145280,'Fuchsmuhl','Germany','DE','Fuchsmuhl (Germany)',1,1,0),(45029,9916,145281,'Fuenlabrada','Spain','ES','Fuenlabrada (Spain)',1,1,0),(45030,0,145282,'Fuente Obejuna','Spain','ES','Fuente Obejuna (Spain)',1,1,0),(45031,9937,145283,'Fugen','Austria','AT','Fugen (Austria)',1,1,0),(45032,0,145284,'Fuldabruck','Germany','DE','Fuldabruck (Germany)',1,1,0),(45033,0,145285,'Fully','Switzerland','CH','Fully (Switzerland)',1,1,0),(45034,9954,145286,'Fulpmes','Austria','AT','Fulpmes (Austria)',1,1,0),(45035,9957,145287,'Fultonville','United States of America','US','Fultonville (United States of America)',1,1,0),(45036,9960,145288,'Funabashi','Japan','JP','Funabashi (Japan)',1,1,0),(45037,0,145289,'Funamadua','Maldives','MV','Funamadua (Maldives)',1,1,0),(45038,0,145290,'Fundy National Park','Canada','CA','Fundy National Park (Canada)',1,1,0),(45039,0,145291,'Fuquay Varina','United States of America','US','Fuquay Varina (United States of America)',1,1,0),(45040,0,145292,'Furstenau','Germany','DE','Furstenau (Germany)',1,1,0),(45041,0,145293,'Furstenberg','Germany','DE','Furstenberg (Germany)',1,1,0),(45042,0,145294,'Gailingen am Hochrhein','Germany','DE','Gailingen am Hochrhein (Germany)',1,1,0),(45043,10019,145295,'Gaillon','France','FR','Gaillon (France)',1,1,0),(45044,0,145296,'Gaimberg','Austria','AT','Gaimberg (Austria)',1,1,0),(45045,0,145297,'Gaisthal','Germany','DE','Gaisthal (Germany)',1,1,0),(45046,0,145298,'Galapagos','Ecuador','EC','Galapagos (Ecuador)',1,1,0),(45047,10043,145299,'Galdeano','Spain','ES','Galdeano (Spain)',1,1,0),(45048,0,145300,'Gallargues','France','FR','Gallargues (France)',1,1,0),(45049,0,145301,'Gallbrunn','Austria','AT','Gallbrunn (Austria)',1,1,0),(45050,10061,145302,'Galliano','United States of America','US','Galliano (United States of America)',1,1,0),(45051,0,145303,'Gallina','Italy','IT','Gallina (Italy)',1,1,0),(45052,10080,145304,'Gambara','Italy','IT','Gambara (Italy)',1,1,0),(45053,10081,145305,'Gambarie','Italy','IT','Gambarie (Italy)',1,1,0),(45054,0,145306,'Gaming','Austria','AT','Gaming (Austria)',1,1,0),(45055,0,145307,'Gammelin','Germany','DE','Gammelin (Germany)',1,1,0),(45056,0,145308,'Gampel','Switzerland','CH','Gampel (Switzerland)',1,1,0),(45057,0,145309,'Ganja','Azerbaijan','AZ','Ganja (Azerbaijan)',1,1,0),(45058,0,145310,'Garajau','Portugal','PT','Garajau (Portugal)',1,1,0),(45059,10123,145311,'Garbsen','Germany','DE','Garbsen (Germany)',1,1,0),(45060,31039,145312,'Garden City','United States of America','US','Garden City (United States of America)',1,1,0),(45061,0,145313,'Garden City','United States of America','US','Garden City (United States of America)',1,1,0),(45062,10129,145314,'Gardendale','United States of America','US','Gardendale (United States of America)',1,1,0),(45063,10137,145315,'Gardone Riviera','Italy','IT','Gardone Riviera (Italy)',1,1,0),(45064,10155,145316,'Garlenda','Italy','IT','Garlenda (Italy)',1,1,0),(45065,0,145317,'Garmisch Partenkirchen','Germany','DE','Garmisch Partenkirchen (Germany)',1,1,0),(45066,10161,145318,'Garniga Terme','Italy','IT','Garniga Terme (Italy)',1,1,0),(45067,10163,145319,'Garopaba','Brazil','BR','Garopaba (Brazil)',1,1,0),(45068,0,145320,'Garray','Spain','ES','Garray (Spain)',1,1,0),(45069,10171,145321,'Garrovillas de Alconetar','Spain','ES','Garrovillas de Alconetar (Spain)',1,1,0),(45070,0,145322,'Gartow','Germany','DE','Gartow (Germany)',1,1,0),(45071,10178,145323,'Garwolin','Poland','PL','Garwolin (Poland)',1,1,0),(45072,0,145324,'Gasselternijveen','Netherlands','NL','Gasselternijveen (Netherlands)',1,1,0),(45073,10215,145325,'Gava','Spain','ES','Gava (Spain)',1,1,0),(45074,0,145326,'Gavere','Belgium','BE','Gavere (Belgium)',1,1,0),(45075,10220,145327,'Gaviao','Portugal','PT','Gaviao (Portugal)',1,1,0),(45076,10223,145328,'Gavorrano','Italy','IT','Gavorrano (Italy)',1,1,0),(45077,0,145329,'Gebersdorf','Germany','DE','Gebersdorf (Germany)',1,1,0),(45078,10242,145330,'Geilenkirchen','Germany','DE','Geilenkirchen (Germany)',1,1,0),(45079,0,145331,'Geisa','Germany','DE','Geisa (Germany)',1,1,0),(45080,10251,145332,'Geithain','Germany','DE','Geithain (Germany)',1,1,0),(45081,10260,145333,'Gelsenkirchen','Germany','DE','Gelsenkirchen (Germany)',1,1,0),(45082,10262,145334,'Gembloux','Belgium','BE','Gembloux (Belgium)',1,1,0),(45083,0,145335,'Gemona del Friuli','Italy','IT','Gemona del Friuli (Italy)',1,1,0),(45084,0,145336,'Genarp','Sweden','SE','Genarp (Sweden)',1,1,0),(45085,10279,145337,'Genk','Belgium','BE','Genk (Belgium)',1,1,0),(45086,10280,145338,'Gennadi','Greece','GR','Gennadi (Greece)',1,1,0),(45087,10287,145339,'Genthin','Germany','DE','Genthin (Germany)',1,1,0),(45088,10292,145340,'Genzano di Roma','Italy','IT','Genzano di Roma (Italy)',1,1,0),(45089,10302,145341,'Georgetown','Australia','AU','Georgetown (Australia)',1,1,0),(45090,10301,145342,'Georgetown','United States of America','US','Georgetown (United States of America)',1,1,0),(45091,10307,145343,'Georgeville','Belize','BZ','Georgeville (Belize)',1,1,0),(45092,0,145344,'Georgsmarienhutte','Germany','DE','Georgsmarienhutte (Germany)',1,1,0),(45093,10311,145345,'Gerakini','Greece','GR','Gerakini (Greece)',1,1,0),(45094,10322,145346,'Geres','Portugal','PT','Geres (Portugal)',1,1,0),(45095,0,145347,'Gernrode','Germany','DE','Gernrode (Germany)',1,1,0),(45096,10338,145348,'Gernsbach','Germany','DE','Gernsbach (Germany)',1,1,0),(45097,0,145349,'Gerzensee','Switzerland','CH','Gerzensee (Switzerland)',1,1,0),(45098,0,145350,'Ghoudi','Cyprus','CY','Ghoudi (Cyprus)',1,1,0),(45099,0,145351,'Gialova','Greece','GR','Gialova (Greece)',1,1,0),(45100,0,145352,'Gieten','Netherlands','NL','Gieten (Netherlands)',1,1,0),(45101,10415,145353,'Gilgandra','Australia','AU','Gilgandra (Australia)',1,1,0),(45102,0,145354,'Gilling West','United Kingdom','UK','Gilling West (United Kingdom)',1,1,0),(45103,10437,145355,'Gimont','France','FR','Gimont (France)',1,1,0),(45104,10447,145356,'Giovinazzo','Italy','IT','Giovinazzo (Italy)',1,1,0),(45105,10452,145357,'Girdwood','United States of America','US','Girdwood (United States of America)',1,1,0),(45106,10466,145358,'Giurdignano','Italy','IT','Giurdignano (Italy)',1,1,0),(45107,10476,145359,'Gizycko','Poland','PL','Gizycko (Poland)',1,1,0),(45108,10477,145360,'Gizzeria','Italy','IT','Gizzeria (Italy)',1,1,0),(45109,0,145361,'Gjirokastra','Albania','AL','Gjirokastra (Albania)',1,1,0),(45110,0,145362,'Gladenbach','Germany','DE','Gladenbach (Germany)',1,1,0),(45111,0,145363,'Glasgow','United States of America','US','Glasgow (United States of America)',1,1,0),(45112,0,145364,'Glastonbury','United Kingdom','UK','Glastonbury (United Kingdom)',1,1,0),(45113,0,145365,'Glauchau','Germany','DE','Glauchau (Germany)',1,1,0),(45114,10505,145366,'Gleiszellen-Gleishorbach','Germany','DE','Gleiszellen-Gleishorbach (Germany)',1,1,0),(45115,10515,145367,'Glendive','United States of America','US','Glendive (United States of America)',1,1,0),(45116,10540,145368,'Glentanner','New Zealand','NZ','Glentanner (New Zealand)',1,1,0),(45117,10542,145369,'Glenville','United States of America','US','Glenville (United States of America)',1,1,0),(45118,0,145370,'Glimpse Lake','Canada','CA','Glimpse Lake (Canada)',1,1,0),(45119,0,145371,'Glogow Malopolski','Poland','PL','Glogow Malopolski (Poland)',1,1,0),(45120,0,145372,'Glurns','Italy','IT','Glurns (Italy)',1,1,0),(45121,0,145373,'Glyki','Greece','GR','Glyki (Greece)',1,1,0),(45122,0,145374,'Gmund in Karnten','Austria','AT','Gmund in Karnten (Austria)',1,1,0),(45123,0,145375,'Gmunden am Traunsee (by Lake Traun)','Austria','AT','Gmunden am Traunsee (by Lake Traun) (Austria)',1,1,0),(45124,0,145376,'Godafoss','Iceland','IS','Godafoss (Iceland)',1,1,0),(45125,0,145377,'Godega di Sant\'Urbano','Italy','IT','Godega di Sant\'Urbano (Italy)',1,1,0),(45126,10593,145378,'Godollo','Hungary','HU','Godollo (Hungary)',1,1,0),(45127,0,145379,'Godshill','United Kingdom','UK','Godshill (United Kingdom)',1,1,0),(45128,0,145380,'Golchen','Germany','DE','Golchen (Germany)',1,1,0),(45129,10616,145381,'Gold Coast','Australia','AU','Gold Coast (Australia)',1,1,0),(45130,10617,145382,'Golden','Canada','CA','Golden (Canada)',1,1,0),(45131,10622,145383,'Golden Sands','Bulgaria','BG','Golden Sands (Bulgaria)',1,1,0),(45132,0,145384,'Golden Square','Australia','AU','Golden Square (Australia)',1,1,0),(45133,0,145385,'Goldrain','Italy','IT','Goldrain (Italy)',1,1,0),(45134,10630,145386,'Golega','Portugal','PT','Golega (Portugal)',1,1,0),(45135,0,145387,'Golfo Aranci','Italy','IT','Golfo Aranci (Italy)',1,1,0),(45136,10651,145388,'Gondomar','Portugal','PT','Gondomar (Portugal)',1,1,0),(45137,10664,145389,'Gonzales','United States of America','US','Gonzales (United States of America)',1,1,0),(45138,10667,145390,'Goodland','United States of America','US','Goodland (United States of America)',1,1,0),(45139,10668,145391,'Goodlettsville','United States of America','US','Goodlettsville (United States of America)',1,1,0),(45140,10694,145392,'Gore Bay','Canada','CA','Gore Bay (Canada)',1,1,0),(45141,10697,145393,'Goreme','Turkey','TR','Goreme (Turkey)',1,1,0),(45142,0,145394,'Gorgo al Monticano','Italy','IT','Gorgo al Monticano (Italy)',1,1,0),(45143,0,145395,'Goriach','Austria','AT','Goriach (Austria)',1,1,0),(45144,0,145396,'Gorica Lipnicka','Croatia','HR','Gorica Lipnicka (Croatia)',1,1,0),(45145,10710,145397,'Gormanston','Ireland','IE','Gormanston (Ireland)',1,1,0),(45146,10722,145398,'Goshen','United States of America','US','Goshen (United States of America)',1,1,0),(45147,0,145399,'Gossitz','Germany','DE','Gossitz (Germany)',1,1,0),(45148,10742,145400,'Gouda','Netherlands','NL','Gouda (Netherlands)',1,1,0),(45149,0,145401,'Gouvia','Greece','GR','Gouvia (Greece)',1,1,0),(45150,10762,145402,'Government Camp','United States of America','US','Government Camp (United States of America)',1,1,0),(45151,0,145403,'Gozo Island','Malta','MT','Gozo Island (Malta)',1,1,0),(45152,10769,145404,'Gozzano','Italy','IT','Gozzano (Italy)',1,1,0),(45153,0,145405,'Grabovac','Croatia','HR','Grabovac (Croatia)',1,1,0),(45154,10783,145406,'Gradara','Italy','IT','Gradara (Italy)',1,1,0),(45155,10797,145407,'Grahamstown','South Africa','ZA','Grahamstown (South Africa)',1,1,0),(45156,10819,145408,'Granby','United States of America','US','Granby (United States of America)',1,1,0),(45157,31060,145409,'Grand Forks','United States of America','US','Grand Forks (United States of America)',1,1,0),(45158,0,145410,'Grand Gaube','Mauritius','MU','Grand Gaube (Mauritius)',1,1,0),(45159,31061,145411,'Grand Haven','United States of America','US','Grand Haven (United States of America)',1,1,0),(45160,0,145412,'Grand Manan','Canada','CA','Grand Manan (Canada)',1,1,0),(45161,0,145413,'Grand Marais','United States of America','US','Grand Marais (United States of America)',1,1,0),(45162,0,145414,'Grand Mound','United States of America','US','Grand Mound (United States of America)',1,1,0),(45163,0,145415,'Grand Teton National Park','United States of America','US','Grand Teton National Park (United States of America)',1,1,0),(45164,0,145416,'Grande Anse','Seychelles','SC','Grande Anse (Seychelles)',1,1,0),(45165,0,145417,'Grandes-Piles','Canada','CA','Grandes-Piles (Canada)',1,1,0),(45166,0,145418,'Grandfontaine','France','FR','Grandfontaine (France)',1,1,0),(45167,10840,145419,'Grandola','Portugal','PT','Grandola (Portugal)',1,1,0),(45168,10841,145420,'Grandview','United States of America','US','Grandview (United States of America)',1,1,0),(45169,0,145421,'Granen','Spain','ES','Granen (Spain)',1,1,0),(45170,0,145422,'Grange-over-Sands','United Kingdom','UK','Grange-over-Sands (United Kingdom)',1,1,0),(45171,10849,145423,'Grangeville','United States of America','US','Grangeville (United States of America)',1,1,0),(45172,10861,145424,'Granville','France','FR','Granville (France)',1,1,0),(45173,0,145425,'Graskop','South Africa','ZA','Graskop (South Africa)',1,1,0),(45174,10888,145426,'Gravina in Puglia','Italy','IT','Gravina in Puglia (Italy)',1,1,0),(45175,10891,145427,'Grayling','United States of America','US','Grayling (United States of America)',1,1,0),(45176,0,145428,'Great Falls','United States of America','US','Great Falls (United States of America)',1,1,0),(45177,0,145429,'Great Missenden','United Kingdom','UK','Great Missenden (United Kingdom)',1,1,0),(45178,10912,145431,'Gredos','Spain','ES','Gredos (Spain)',1,1,0),(45179,10920,145432,'Greenbelt','United States of America','US','Greenbelt (United States of America)',1,1,0),(45180,10922,145433,'Greencastle','United States of America','US','Greencastle (United States of America)',1,1,0),(45181,0,145434,'Greencastle','United States of America','US','Greencastle (United States of America)',1,1,0),(45182,10934,145435,'Greenport','United States of America','US','Greenport (United States of America)',1,1,0),(45183,10935,145436,'Greensboro','United States of America','US','Greensboro (United States of America)',1,1,0),(45184,0,145437,'Greenup','United States of America','US','Greenup (United States of America)',1,1,0),(45185,10945,145438,'Greenwood','United States of America','US','Greenwood (United States of America)',1,1,0),(45186,0,145439,'Greisdorf','Austria','AT','Greisdorf (Austria)',1,1,0),(45187,0,145440,'Gremmelin','Germany','DE','Gremmelin (Germany)',1,1,0),(45188,0,145441,'Gremsdorf','Germany','DE','Gremsdorf (Germany)',1,1,0),(45189,10955,145442,'Grenaa','Denmark','DK','Grenaa (Denmark)',1,1,0),(45190,0,145443,'Greve de Lecq Bay','United Kingdom','UK','Greve de Lecq Bay (United Kingdom)',1,1,0),(45191,10976,145444,'Grevenbroich','Germany','DE','Grevenbroich (Germany)',1,1,0),(45192,0,145445,'Grevenmacher','Luxembourg','LU','Grevenmacher (Luxembourg)',1,1,0),(45193,10986,145446,'Griesheim','Germany','DE','Griesheim (Germany)',1,1,0),(45194,0,145447,'Grignan','France','FR','Grignan (France)',1,1,0),(45195,0,145448,'Grillon','France','FR','Grillon (France)',1,1,0),(45196,10993,145449,'Grimbergen','Belgium','BE','Grimbergen (Belgium)',1,1,0),(45197,10996,145450,'Grimmen','Germany','DE','Grimmen (Germany)',1,1,0),(45198,0,145451,'Grimsby','United Kingdom','UK','Grimsby (United Kingdom)',1,1,0),(45199,11000,145452,'Grimshaw','Canada','CA','Grimshaw (Canada)',1,1,0),(45200,11007,145453,'Grinnell','United States of America','US','Grinnell (United States of America)',1,1,0),(45201,0,145454,'Grodkow','Poland','PL','Grodkow (Poland)',1,1,0),(45202,0,145455,'Grohote','Croatia','HR','Grohote (Croatia)',1,1,0),(45203,0,145456,'Gronhoj','Denmark','DK','Gronhoj (Denmark)',1,1,0),(45204,11025,145457,'Groningen','Netherlands','NL','Groningen (Netherlands)',1,1,0),(45205,0,145458,'Gro? Dolln','Germany','DE','Gro? Dolln (Germany)',1,1,0),(45206,0,145459,'Gro? Potrems','Germany','DE','Gro? Potrems (Germany)',1,1,0),(45207,0,145460,'Gro? Schonebeck','Germany','DE','Gro? Schonebeck (Germany)',1,1,0),(45208,0,145461,'Gro? Schwansee','Germany','DE','Gro? Schwansee (Germany)',1,1,0),(45209,0,145462,'Gro? Stromkendorf','Germany','DE','Gro? Stromkendorf (Germany)',1,1,0),(45210,0,145463,'Gro?-Gerau','Germany','DE','Gro?-Gerau (Germany)',1,1,0),(45211,0,145464,'Gro?littgen','Germany','DE','Gro?littgen (Germany)',1,1,0),(45212,0,145465,'Gro?mutschen','Austria','AT','Gro?mutschen (Austria)',1,1,0),(45213,0,145466,'Gro?ostheim','Germany','DE','Gro?ostheim (Germany)',1,1,0),(45214,0,145467,'Gro?raschen','Germany','DE','Gro?raschen (Germany)',1,1,0),(45215,11061,145468,'Grovetown','United States of America','US','Grovetown (United States of America)',1,1,0),(45216,0,145469,'Grumeti-Wildreservat','Tanzania','TZ','Grumeti-Wildreservat (Tanzania)',1,1,0),(45217,11066,145470,'Grunau im Almtal','Austria','AT','Grunau im Almtal (Austria)',1,1,0),(45218,0,145471,'Grunberg','Germany','DE','Grunberg (Germany)',1,1,0),(45219,0,145472,'Grundau','Germany','DE','Grundau (Germany)',1,1,0),(45220,11069,145473,'Grundy','United States of America','US','Grundy (United States of America)',1,1,0),(45221,0,145474,'Grunkraut','Germany','DE','Grunkraut (Germany)',1,1,0),(45222,11073,145475,'Grunwald','Germany','DE','Grunwald (Germany)',1,1,0),(45223,0,145476,'Guacimo','Costa Rica','CR','Guacimo (Costa Rica)',1,1,0),(45224,11084,145477,'Guadalupe','Spain','ES','Guadalupe (Spain)',1,1,0),(45225,11092,145478,'Gualala','United States of America','US','Gualala (United States of America)',1,1,0),(45226,11096,145479,'Gualta','Spain','ES','Gualta (Spain)',1,1,0),(45227,0,145480,'Guardia Piemontese Lido','Italy','IT','Guardia Piemontese Lido (Italy)',1,1,0),(45228,11138,145481,'Guaymas','Mexico','MX','Guaymas (Mexico)',1,1,0),(45229,11178,145482,'Guillaumes','France','FR','Guillaumes (France)',1,1,0),(45230,0,145483,'Guipuzcoa','Spain','ES','Guipuzcoa (Spain)',1,1,0),(45231,0,145484,'Gulzow','Germany','DE','Gulzow (Germany)',1,1,0),(45232,11201,145485,'Gumi','South Korea','KR','Gumi (South Korea)',1,1,0),(45233,11204,145486,'Gummersbach','Germany','DE','Gummersbach (Germany)',1,1,0),(45234,11208,145487,'Gun Barrel City','United States of America','US','Gun Barrel City (United States of America)',1,1,0),(45235,0,145488,'Gundogdu','Turkey','TR','Gundogdu (Turkey)',1,1,0),(45236,0,145489,'Gurk','Austria','AT','Gurk (Austria)',1,1,0),(45237,0,145490,'Gurupokuna Hungama','Sri Lanka','LK','Gurupokuna Hungama (Sri Lanka)',1,1,0),(45238,11230,145491,'Guspini','Italy','IT','Guspini (Italy)',1,1,0),(45239,0,145492,'Gustow','Germany','DE','Gustow (Germany)',1,1,0),(45240,0,145493,'Gustrow','Germany','DE','Gustrow (Germany)',1,1,0),(45241,0,145494,'Guzelcamli','Turkey','TR','Guzelcamli (Turkey)',1,1,0),(45242,11256,145495,'Gyenesdias','Hungary','HU','Gyenesdias (Hungary)',1,1,0),(45243,0,145496,'Haa Alifu Atoll','Maldives','MV','Haa Alifu Atoll (Maldives)',1,1,0),(45244,0,145497,'Haag','Germany','DE','Haag (Germany)',1,1,0),(45245,11268,145498,'Haan','Germany','DE','Haan (Germany)',1,1,0),(45246,11270,145499,'Haar','Germany','DE','Haar (Germany)',1,1,0),(45247,11272,145500,'Haast','New Zealand','NZ','Haast (New Zealand)',1,1,0),(45248,11277,145501,'Hachinohe','Japan','JP','Hachinohe (Japan)',1,1,0),(45249,11286,145502,'Haddonfield','United States of America','US','Haddonfield (United States of America)',1,1,0),(45250,11296,145503,'Haenertsburg','South Africa','ZA','Haenertsburg (South Africa)',1,1,0),(45251,0,145504,'Hafjell','Norway','NO','Hafjell (Norway)',1,1,0),(45252,11303,145505,'Hafslo','Norway','NO','Hafslo (Norway)',1,1,0),(45253,11318,145506,'Hahira','United States of America','US','Hahira (United States of America)',1,1,0),(45254,0,145507,'Haibach (Niederbayern)','Germany','DE','Haibach (Niederbayern) (Germany)',1,1,0),(45255,11328,145508,'Haifa','Israel','IL','Haifa (Israel)',1,1,0),(45256,0,145509,'Halbinsel Zapata','Cuba','CU','Halbinsel Zapata (Cuba)',1,1,0),(45257,11379,145510,'Halibut Cove','United States of America','US','Halibut Cove (United States of America)',1,1,0),(45258,11393,145511,'Haller','Luxembourg','LU','Haller (Luxembourg)',1,1,0),(45259,0,145512,'Hallstadt','Germany','DE','Hallstadt (Germany)',1,1,0),(45260,11400,145513,'Hallstatt','Austria','AT','Hallstatt (Austria)',1,1,0),(45261,11404,145514,'Halmstad','Sweden','SE','Halmstad (Sweden)',1,1,0),(45262,0,145515,'Haltwhistle','United Kingdom','UK','Haltwhistle (United Kingdom)',1,1,0),(45263,31095,145516,'Ham Lake','United States of America','US','Ham Lake (United States of America)',1,1,0),(45264,0,145517,'Hama','Syria',NULL,'Hama (Syria)',1,1,0),(45265,0,145518,'Hamata','Egypt','EG','Hamata (Egypt)',1,1,0),(45266,11425,145519,'Hamburg','United States of America','US','Hamburg (United States of America)',1,1,0),(45267,0,145520,'Hamburg','United States of America','US','Hamburg (United States of America)',1,1,0),(45268,11435,145521,'Hamilton','Canada','CA','Hamilton (Canada)',1,1,0),(45269,11434,145522,'Hamilton','United States of America','US','Hamilton (United States of America)',1,1,0),(45270,11440,145523,'Hamm','Germany','DE','Hamm (Germany)',1,1,0),(45271,11443,145524,'Hammamet','Tunisia','TN','Hammamet (Tunisia)',1,1,0),(45272,0,145525,'Hampton','United States of America','US','Hampton (United States of America)',1,1,0),(45273,0,145526,'Hampton','United Kingdom','UK','Hampton (United Kingdom)',1,1,0),(45274,0,145527,'Hampton Bays','United States of America','US','Hampton Bays (United States of America)',1,1,0),(45275,0,145528,'Hampton Falls','United States of America','US','Hampton Falls (United States of America)',1,1,0),(45276,0,145529,'Hamra','Sweden','SE','Hamra (Sweden)',1,1,0),(45277,11462,145530,'Hanalei','United States of America','US','Hanalei (United States of America)',1,1,0),(45278,11470,145531,'Handa','Japan','JP','Handa (Japan)',1,1,0),(45279,34861,145532,'Hangzhou','China','CN','Hangzhou (China)',1,1,0),(45280,11484,145533,'Hanno','Japan','JP','Hanno (Japan)',1,1,0),(45281,0,145534,'Hannonville-sous-les-Cotes','France','FR','Hannonville-sous-les-Cotes (France)',1,1,0),(45282,11487,145535,'Hanoi','Vietnam','VN','Hanoi (Vietnam)',1,1,0),(45283,11496,145536,'Hanstholm','Denmark','DK','Hanstholm (Denmark)',1,1,0),(45284,0,145537,'Harau','Romania','RO','Harau (Romania)',1,1,0),(45285,11535,145538,'Harker Heights','United States of America','US','Harker Heights (United States of America)',1,1,0),(45286,0,145539,'Harre','Belgium','BE','Harre (Belgium)',1,1,0),(45287,0,145540,'Harrietsham','United Kingdom','UK','Harrietsham (United Kingdom)',1,1,0),(45288,11570,145541,'Harstad','Norway','NO','Harstad (Norway)',1,1,0),(45289,31105,145542,'Hart','United States of America','US','Hart (United States of America)',1,1,0),(45290,0,145543,'Hartington','United Kingdom','UK','Hartington (United Kingdom)',1,1,0),(45291,11586,145544,'Hartsville','United States of America','US','Hartsville (United States of America)',1,1,0),(45292,11589,145545,'Harvey','United States of America','US','Harvey (United States of America)',1,1,0),(45293,0,145546,'Hasborn','Germany','DE','Hasborn (Germany)',1,1,0),(45294,0,145547,'Haslach','Austria','AT','Haslach (Austria)',1,1,0),(45295,0,145548,'Hasle Lystskov','Denmark','DK','Hasle Lystskov (Denmark)',1,1,0),(45296,0,145549,'Hasparren','France','FR','Hasparren (France)',1,1,0),(45297,11613,145550,'Hastings','Barbados','BB','Hastings (Barbados)',1,1,0),(45298,0,145551,'Hathersage','United Kingdom','UK','Hathersage (United Kingdom)',1,1,0),(45299,11637,145552,'Haugesund','Norway','NO','Haugesund (Norway)',1,1,0),(45300,11638,145553,'Haukipudas','Finland','FI','Haukipudas (Finland)',1,1,0),(45301,0,145554,'Havelberg','Germany','DE','Havelberg (Germany)',1,1,0),(45302,11666,145555,'Havixbeck','Germany','DE','Havixbeck (Germany)',1,1,0),(45303,11693,145556,'Hawkesbury','Canada','CA','Hawkesbury (Canada)',1,1,0),(45304,11703,145557,'Hawthorne','United States of America','US','Hawthorne (United States of America)',1,1,0),(45305,0,145558,'Hayle','United Kingdom','UK','Hayle (United Kingdom)',1,1,0),(45306,0,145559,'Haymarket','Australia','AU','Haymarket (Australia)',1,1,0),(45307,0,145560,'Haynsburg','Germany','DE','Haynsburg (Germany)',1,1,0),(45308,0,145561,'Hay-on-Wye','United Kingdom','UK','Hay-on-Wye (United Kingdom)',1,1,0),(45309,11717,145562,'Hayward','United States of America','US','Hayward (United States of America)',1,1,0),(45310,11719,145563,'Hazard','United States of America','US','Hazard (United States of America)',1,1,0),(45311,0,145564,'Hazel Park','United States of America','US','Hazel Park (United States of America)',1,1,0),(45312,11723,145565,'Hazelhurst','United States of America','US','Hazelhurst (United States of America)',1,1,0),(45313,11733,145566,'Hazleton','United States of America','US','Hazleton (United States of America)',1,1,0),(45314,11742,145567,'Healesville','Australia','AU','Healesville (Australia)',1,1,0),(45315,0,145568,'Heathrow','United Kingdom','UK','Heathrow (United Kingdom)',1,1,0),(45316,11755,145569,'Heber','United States of America','US','Heber (United States of America)',1,1,0),(45317,0,145570,'Hebron','United States of America','US','Hebron (United States of America)',1,1,0),(45318,0,145571,'Hecklingen','Germany','DE','Hecklingen (Germany)',1,1,0),(45319,0,145572,'Hede-Bazouges','France','FR','Hede-Bazouges (France)',1,1,0),(45320,0,145573,'Heek','Germany','DE','Heek (Germany)',1,1,0),(45321,31109,145574,'Heide','Germany','DE','Heide (Germany)',1,1,0),(45322,0,145575,'Heidenau','Germany','DE','Heidenau (Germany)',1,1,0),(45323,11787,145576,'Heijenrath','Netherlands','NL','Heijenrath (Netherlands)',1,1,0),(45324,11791,145577,'Heiligendamm','Germany','DE','Heiligendamm (Germany)',1,1,0),(45325,0,145578,'Heiligenkreuz im Lafnitztal','Austria','AT','Heiligenkreuz im Lafnitztal (Austria)',1,1,0),(45326,11796,145579,'Heiligenthal','Germany','DE','Heiligenthal (Germany)',1,1,0),(45327,0,145580,'Heinkenszand','Netherlands','NL','Heinkenszand (Netherlands)',1,1,0),(45328,0,145581,'Helensburgh','United Kingdom','UK','Helensburgh (United Kingdom)',1,1,0),(45329,0,145582,'Helfenberg im Muhviertel','Austria','AT','Helfenberg im Muhviertel (Austria)',1,1,0),(45330,0,145583,'Hellin','Spain','ES','Hellin (Spain)',1,1,0),(45331,11826,145584,'Helmond','Netherlands','NL','Helmond (Netherlands)',1,1,0),(45332,0,145585,'Helvoirt','Netherlands','NL','Helvoirt (Netherlands)',1,1,0),(45333,11838,145586,'Hemavan','Sweden','SE','Hemavan (Sweden)',1,1,0),(45334,0,145587,'Hencse','Hungary','HU','Hencse (Hungary)',1,1,0),(45335,11847,145588,'Henderson','United States of America','US','Henderson (United States of America)',1,1,0),(45336,11850,145589,'Hengchun','Taiwan','TW','Hengchun (Taiwan)',1,1,0),(45337,11860,145590,'Hennebont','France','FR','Hennebont (France)',1,1,0),(45338,11867,145591,'Henrietta','United States of America','US','Henrietta (United States of America)',1,1,0),(45339,11876,145592,'Hepburn Springs','Australia','AU','Hepburn Springs (Australia)',1,1,0),(45340,0,145593,'Heraklion','Greece','GR','Heraklion (Greece)',1,1,0),(45341,11884,145594,'Herceghalom','Hungary','HU','Herceghalom (Hungary)',1,1,0),(45342,0,145595,'Herdwangen-Kleinschonach','Germany','DE','Herdwangen-Kleinschonach (Germany)',1,1,0),(45343,11899,145596,'Herkimer','United States of America','US','Herkimer (United States of America)',1,1,0),(45344,0,145597,'Herm','United Kingdom','UK','Herm (United Kingdom)',1,1,0),(45345,11914,145598,'Hermigua','Spain','ES','Hermigua (Spain)',1,1,0),(45346,11917,145599,'Hermitage','United States of America','US','Hermitage (United States of America)',1,1,0),(45347,0,145600,'Hernani','Spain','ES','Hernani (Spain)',1,1,0),(45348,0,145601,'Heroldstatt','Germany','DE','Heroldstatt (Germany)',1,1,0),(45349,0,145602,'Herrstein','Germany','DE','Herrstein (Germany)',1,1,0),(45350,0,145603,'Hertvikovice','Czech Republic','CZ','Hertvikovice (Czech Republic)',1,1,0),(45351,11946,145604,'Hervey Bay','Australia','AU','Hervey Bay (Australia)',1,1,0),(45352,0,145605,'Herzebrock-Clarholz','Germany','DE','Herzebrock-Clarholz (Germany)',1,1,0),(45353,0,145606,'Hesdin','France','FR','Hesdin (France)',1,1,0),(45354,0,145607,'He?dorf','Germany','DE','He?dorf (Germany)',1,1,0),(45355,0,145608,'Heywood','United Kingdom','UK','Heywood (United Kingdom)',1,1,0),(45356,11979,145609,'Heze','China','CN','Heze (China)',1,1,0),(45357,31111,145610,'Hico','United States of America','US','Hico (United States of America)',1,1,0),(45358,0,145611,'Hidalgo del Parral','Mexico','MX','Hidalgo del Parral (Mexico)',1,1,0),(45359,0,145612,'High Wycombe','United Kingdom','UK','High Wycombe (United Kingdom)',1,1,0),(45360,0,145613,'Highland Park','United States of America','US','Highland Park (United States of America)',1,1,0),(45361,12021,145614,'Hikkaduwa','Sri Lanka','LK','Hikkaduwa (Sri Lanka)',1,1,0),(45362,12024,145615,'Hildesheim','Germany','DE','Hildesheim (Germany)',1,1,0),(45363,0,145616,'Hillcrest','South Africa','ZA','Hillcrest (South Africa)',1,1,0),(45364,0,145617,'Hillscheid','Germany','DE','Hillscheid (Germany)',1,1,0),(45365,12039,145618,'Hillsdale','United States of America','US','Hillsdale (United States of America)',1,1,0),(45366,12050,145619,'Himeville','South Africa','ZA','Himeville (South Africa)',1,1,0),(45367,12054,145620,'Hinchinbrook Island','Australia','AU','Hinchinbrook Island (Australia)',1,1,0),(45368,12060,145621,'Hinesville','United States of America','US','Hinesville (United States of America)',1,1,0),(45369,0,145622,'Hinojosas de Calatrava','Spain','ES','Hinojosas de Calatrava (Spain)',1,1,0),(45370,0,145623,'Hinte','Germany','DE','Hinte (Germany)',1,1,0),(45371,12064,145624,'Hinterbruhl','Austria','AT','Hinterbruhl (Austria)',1,1,0),(45372,0,145625,'Hinterhermsdorf','Germany','DE','Hinterhermsdorf (Germany)',1,1,0),(45373,0,145626,'Hintersee','Austria','AT','Hintersee (Austria)',1,1,0),(45374,12073,145627,'Hiram','United States of America','US','Hiram (United States of America)',1,1,0),(45375,0,145628,'Hirvihaara','Finland','FI','Hirvihaara (Finland)',1,1,0),(45376,0,145629,'Hiva Oa','French Polynesia','PF','Hiva Oa (French Polynesia)',1,1,0),(45377,12098,145630,'Hluboka nad Vltavou','Czech Republic','CZ','Hluboka nad Vltavou (Czech Republic)',1,1,0),(45378,31118,145631,'Ho Tram','Vietnam','VN','Ho Tram (Vietnam)',1,1,0),(45379,12104,145632,'Hobbs','United States of America','US','Hobbs (United States of America)',1,1,0),(45380,0,145633,'Hochpillberg','Austria','AT','Hochpillberg (Austria)',1,1,0),(45381,0,145634,'Hochstadt im Fichtelgebirge','Germany','DE','Hochstadt im Fichtelgebirge (Germany)',1,1,0),(45382,12124,145635,'Hoedspruit','South Africa','ZA','Hoedspruit (South Africa)',1,1,0),(45383,0,145636,'Hoerdt','France','FR','Hoerdt (France)',1,1,0),(45384,31119,145637,'Hof','Germany','DE','Hof (Germany)',1,1,0),(45385,12130,145638,'Hofen','Austria','AT','Hofen (Austria)',1,1,0),(45386,0,145639,'Hofkirchen im Muhlkreis','Austria','AT','Hofkirchen im Muhlkreis (Austria)',1,1,0),(45387,0,145640,'Hog John Bay','Antigua & Barbuda','AG','Hog John Bay (Antigua & Barbuda)',1,1,0),(45388,12136,145641,'Hogansburg','United States of America','US','Hogansburg (United States of America)',1,1,0),(45389,0,145642,'Hohenstein-Ernssthal','Germany','DE','Hohenstein-Ernssthal (Germany)',1,1,0),(45390,0,145643,'Hohr - Grenzhausen','Germany','DE','Hohr - Grenzhausen (Germany)',1,1,0),(45391,0,145644,'Hojesin Sec','Czech Republic','CZ','Hojesin Sec (Czech Republic)',1,1,0),(45392,0,145645,'Hol','Norway','NO','Hol (Norway)',1,1,0),(45393,0,145646,'Holcombe','United Kingdom','UK','Holcombe (United Kingdom)',1,1,0),(45394,12168,145647,'Holdrege','United States of America','US','Holdrege (United States of America)',1,1,0),(45395,12171,145648,'Holguin','Cuba','CU','Holguin (Cuba)',1,1,0),(45396,0,145649,'Holic','Slovakia','SK','Holic (Slovakia)',1,1,0),(45397,12173,145650,'Holiday','United States of America','US','Holiday (United States of America)',1,1,0),(45398,0,145651,'Hollern','Germany','DE','Hollern (Germany)',1,1,0),(45399,12181,145652,'Hollister','United States of America','US','Hollister (United States of America)',1,1,0),(45400,12182,145653,'Hollum','Netherlands','NL','Hollum (Netherlands)',1,1,0),(45401,12212,145654,'Holzgau','Austria','AT','Holzgau (Austria)',1,1,0),(45402,0,145655,'Honeysuckle','Australia','AU','Honeysuckle (Australia)',1,1,0),(45403,35355,145656,'Hong Kong','Hong Kong','HK','Hong Kong (Hong Kong)',1,1,0),(45404,0,145657,'Honiton','United Kingdom','UK','Honiton (United Kingdom)',1,1,0),(45405,0,145658,'Hontanx','France','FR','Hontanx (France)',1,1,0),(45406,0,145659,'Hoogezand','Netherlands','NL','Hoogezand (Netherlands)',1,1,0),(45407,0,145661,'Hook','United Kingdom','UK','Hook (United Kingdom)',1,1,0),(45408,12264,145662,'Hope Island','Australia','AU','Hope Island (Australia)',1,1,0),(45409,0,145663,'Hoppenrade','Germany','DE','Hoppenrade (Germany)',1,1,0),(45410,0,145664,'Hoppstadten-Weiersbach','Germany','DE','Hoppstadten-Weiersbach (Germany)',1,1,0),(45411,0,145665,'Hopsten','Germany','DE','Hopsten (Germany)',1,1,0),(45412,0,145666,'Horazdovice','Czech Republic','CZ','Horazdovice (Czech Republic)',1,1,0),(45413,0,145667,'Horbranz','Austria','AT','Horbranz (Austria)',1,1,0),(45414,0,145668,'Horezu','Romania','RO','Horezu (Romania)',1,1,0),(45415,12281,145669,'Horgen','Switzerland','CH','Horgen (Switzerland)',1,1,0),(45416,0,145670,'Horice v Podkrkonosi','Czech Republic','CZ','Horice v Podkrkonosi (Czech Republic)',1,1,0),(45417,0,145671,'Hornchurch','United Kingdom','UK','Hornchurch (United Kingdom)',1,1,0),(45418,0,145672,'Hornsea','United Kingdom','UK','Hornsea (United Kingdom)',1,1,0),(45419,0,145673,'Hornum','Germany','DE','Hornum (Germany)',1,1,0),(45420,0,145674,'Horny Vadicov','Slovakia','SK','Horny Vadicov (Slovakia)',1,1,0),(45421,0,145675,'Hosbach','Germany','DE','Hosbach (Germany)',1,1,0),(45422,0,145676,'Hosenfeld','Germany','DE','Hosenfeld (Germany)',1,1,0),(45423,0,145677,'Hostinne','Czech Republic','CZ','Hostinne (Czech Republic)',1,1,0),(45424,0,145678,'Hot Springs','United States of America','US','Hot Springs (United States of America)',1,1,0),(45425,0,145679,'Hotton','Belgium','BE','Hotton (Belgium)',1,1,0),(45426,0,145680,'Houaixay','LAOS','LA','Houaixay (LAOS)',1,1,0),(45427,12338,145681,'Houdemont','France','FR','Houdemont (France)',1,1,0),(45428,0,145682,'Houghton Lake','United States of America','US','Houghton Lake (United States of America)',1,1,0),(45429,12352,145683,'Hourtin','France','FR','Hourtin (France)',1,1,0),(45430,0,145684,'Houthalen-Helchteren','Belgium','BE','Houthalen-Helchteren (Belgium)',1,1,0),(45431,0,145685,'Houyet','Belgium','BE','Houyet (Belgium)',1,1,0),(45432,12358,145686,'Hovborg','Denmark','DK','Hovborg (Denmark)',1,1,0),(45433,0,145688,'Hoz de Anero','Spain','ES','Hoz de Anero (Spain)',1,1,0),(45434,12382,145689,'Hsinchu','Taiwan','TW','Hsinchu (Taiwan)',1,1,0),(45435,0,145690,'Hua Thanon','Thailand','TH','Hua Thanon (Thailand)',1,1,0),(45436,12390,145691,'Huai\'an','China','CN','Huai\'an (China)',1,1,0),(45437,0,145692,'Huangshan-Mountains','China','CN','Huangshan-Mountains (China)',1,1,0),(45438,0,145693,'Huatusco','Mexico','MX','Huatusco (Mexico)',1,1,0),(45439,0,145695,'Hude','Germany','DE','Hude (Germany)',1,1,0),(45440,31132,145696,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(45441,0,145697,'Hudson','United States of America','US','Hudson (United States of America)',1,1,0),(45442,0,145698,'Hufingen','Germany','DE','Hufingen (Germany)',1,1,0),(45443,0,145699,'Huludao','China','CN','Huludao (China)',1,1,0),(45444,12469,145700,'Hunedoara','Romania','RO','Hunedoara (Romania)',1,1,0),(45445,12472,145701,'Hunibach','Switzerland','CH','Hunibach (Switzerland)',1,1,0),(45446,0,145702,'Huningue','France','FR','Huningue (France)',1,1,0),(45447,12480,145703,'Hunter Valley','Australia','AU','Hunter Valley (Australia)',1,1,0),(45448,12482,145704,'Huntersville','United States of America','US','Huntersville (United States of America)',1,1,0),(45449,0,145705,'Hurka','Czech Republic','CZ','Hurka (Czech Republic)',1,1,0),(45450,12503,145706,'Hurth','Germany','DE','Hurth (Germany)',1,1,0),(45451,12505,145707,'Husavik','Iceland','IS','Husavik (Iceland)',1,1,0),(45452,12514,145708,'Hutchinson','United States of America','US','Hutchinson (United States of America)',1,1,0),(45453,0,145709,'Hveravellir','Iceland','IS','Hveravellir (Iceland)',1,1,0),(45454,0,145711,'Ibarlucea','Argentina','AR','Ibarlucea (Argentina)',1,1,0),(45455,12556,145712,'Ibbenburen','Germany','DE','Ibbenburen (Germany)',1,1,0),(45456,0,145713,'Ichenhausen','Germany','DE','Ichenhausen (Germany)',1,1,0),(45457,0,145714,'Ichinomiya','Japan','JP','Ichinomiya (Japan)',1,1,0),(45458,12572,145715,'Icod de los Vinos','Spain','ES','Icod de los Vinos (Spain)',1,1,0),(45459,12575,145716,'Idanha-a-Nova','Portugal','PT','Idanha-a-Nova (Portugal)',1,1,0),(45460,0,145717,'Ida-Virumaa','Estonia','EE','Ida-Virumaa (Estonia)',1,1,0),(45461,12586,145718,'Idyllwild','United States of America','US','Idyllwild (United States of America)',1,1,0),(45462,0,145719,'Iga','Japan','JP','Iga (Japan)',1,1,0),(45463,12602,145720,'Igoumenitsa','Greece','GR','Igoumenitsa (Greece)',1,1,0),(45464,0,145721,'Iguape','Brazil','BR','Iguape (Brazil)',1,1,0),(45465,12608,145722,'Ihosy','Madagascar','MG','Ihosy (Madagascar)',1,1,0),(45466,12616,145723,'Ikaria','Greece','GR','Ikaria (Greece)',1,1,0),(45467,0,145724,'Iki (Insel)','Japan','JP','Iki (Insel) (Japan)',1,1,0),(45468,0,145725,'Ile De Brehat','France','FR','Ile De Brehat (France)',1,1,0),(45469,0,145726,'Ile Rousse','France','FR','Ile Rousse (France)',1,1,0),(45470,0,145727,'Ile-d\'Aix','France','FR','Ile-d\'Aix (France)',1,1,0),(45471,0,145728,'Ilfracombe','United Kingdom','UK','Ilfracombe (United Kingdom)',1,1,0),(45472,0,145729,'Ilkley','United Kingdom','UK','Ilkley (United Kingdom)',1,1,0),(45473,0,145730,'Illescas','Spain','ES','Illescas (Spain)',1,1,0),(45474,0,145731,'Illingen','Germany','DE','Illingen (Germany)',1,1,0),(45475,0,145732,'Illschwang','Germany','DE','Illschwang (Germany)',1,1,0),(45476,12656,145733,'Ilmenau','Germany','DE','Ilmenau (Germany)',1,1,0),(45477,0,145734,'Ilminster','United Kingdom','UK','Ilminster (United Kingdom)',1,1,0),(45478,0,145735,'Ilshofen','Germany','DE','Ilshofen (Germany)',1,1,0),(45479,0,145736,'Ilsington','United Kingdom','UK','Ilsington (United Kingdom)',1,1,0),(45480,12662,145737,'Ilulissat','Greenland','GL','Ilulissat (Greenland)',1,1,0),(45481,12666,145738,'Imatra','Finland','FI','Imatra (Finland)',1,1,0),(45482,12673,145739,'Imlil','Morocco','MA','Imlil (Morocco)',1,1,0),(45483,0,145740,'Immerath','Germany','DE','Immerath (Germany)',1,1,0),(45484,12678,145741,'Imperia','Italy','IT','Imperia (Italy)',1,1,0),(45485,0,145742,'Inarcs','Hungary','HU','Inarcs (Hungary)',1,1,0),(45486,0,145743,'Inchbae','United Kingdom','UK','Inchbae (United Kingdom)',1,1,0),(45487,0,145744,'Inderoy','Norway','NO','Inderoy (Norway)',1,1,0),(45488,12701,145745,'Indialantic','United States of America','US','Indialantic (United States of America)',1,1,0),(45489,0,145746,'Indian Harbour','Canada','CA','Indian Harbour (Canada)',1,1,0),(45490,0,145747,'Indian Lake','United States of America','US','Indian Lake (United States of America)',1,1,0),(45491,0,145748,'Indian Shore Beach','United States of America','US','Indian Shore Beach (United States of America)',1,1,0),(45492,12708,145749,'Induno Olona','Italy','IT','Induno Olona (Italy)',1,1,0),(45493,12712,145750,'Industry','United States of America','US','Industry (United States of America)',1,1,0),(45494,12715,145751,'Infiesto','Spain','ES','Infiesto (Spain)',1,1,0),(45495,0,145752,'Innisfil','Canada','CA','Innisfil (Canada)',1,1,0),(45496,0,145753,'Insel Bulon Lae','Thailand','TH','Insel Bulon Lae (Thailand)',1,1,0),(45497,0,145754,'Insel Libong','Thailand','TH','Insel Libong (Thailand)',1,1,0),(45498,0,145755,'Insel Marie Galante','Guadeloupe','GP','Insel Marie Galante (Guadeloupe)',1,1,0),(45499,0,145756,'Insel Mnemba','Tanzania','TZ','Insel Mnemba (Tanzania)',1,1,0),(45500,0,145757,'Insel Phayam','Thailand','TH','Insel Phayam (Thailand)',1,1,0),(45501,0,145758,'Insel Putuo Shan','China','CN','Insel Putuo Shan (China)',1,1,0),(45502,0,145759,'Insel Qamea','Fiji Islands','FJ','Insel Qamea (Fiji Islands)',1,1,0),(45503,0,145760,'Insel Rava','Croatia','HR','Insel Rava (Croatia)',1,1,0),(45504,0,145761,'Insel St Mary\'s','United Kingdom','UK','Insel St Mary\'s (United Kingdom)',1,1,0),(45505,0,145762,'Insel Yao Noi','Thailand','TH','Insel Yao Noi (Thailand)',1,1,0),(45506,0,145763,'Intra','Italy','IT','Intra (Italy)',1,1,0),(45507,0,145764,'Ios Marina','Greece','GR','Ios Marina (Greece)',1,1,0),(45508,0,145765,'Ios-Stadt','Greece','GR','Ios-Stadt (Greece)',1,1,0),(45509,0,145766,'Iowa City','United States of America','US','Iowa City (United States of America)',1,1,0),(45510,12796,145767,'Ipoh','Malaysia','MY','Ipoh (Malaysia)',1,1,0),(45511,12797,145768,'Ipojuca','Brazil','BR','Ipojuca (Brazil)',1,1,0),(45512,12802,145769,'Ipswich','Australia','AU','Ipswich (Australia)',1,1,0),(45513,0,145770,'Iraklia (bei Naxos)','Greece','GR','Iraklia (bei Naxos) (Greece)',1,1,0),(45514,12810,145771,'Irbid','Jordan','JO','Irbid (Jordan)',1,1,0),(45515,12816,145772,'Irigny','France','FR','Irigny (France)',1,1,0),(45516,12827,145773,'Iruya','Argentina','AR','Iruya (Argentina)',1,1,0),(45517,0,145774,'Irvinestown','United Kingdom','UK','Irvinestown (United Kingdom)',1,1,0),(45518,0,145775,'Isaris','Greece','GR','Isaris (Greece)',1,1,0),(45519,12856,145776,'Iskenderun','Turkey','TR','Iskenderun (Turkey)',1,1,0),(45520,0,145777,'Isla Grande','Panama','PA','Isla Grande (Panama)',1,1,0),(45521,12862,145778,'Isla Verde','Puerto Rico','PR','Isla Verde (Puerto Rico)',1,1,0),(45522,0,145779,'Isle','United States of America','US','Isle (United States of America)',1,1,0),(45523,0,145780,'Isle of Islay','United Kingdom','UK','Isle of Islay (United Kingdom)',1,1,0),(45524,31188,145781,'Isle of Palms','United States of America','US','Isle of Palms (United States of America)',1,1,0),(45525,12887,145782,'Ismaning','Germany','DE','Ismaning (Germany)',1,1,0),(45526,0,145783,'Iso-Syote','Finland','FI','Iso-Syote (Finland)',1,1,0),(45527,0,145784,'Istia','Italy','IT','Istia (Italy)',1,1,0),(45528,12913,145785,'Itaborai','Brazil','BR','Itaborai (Brazil)',1,1,0),(45529,0,145786,'Ithala Game Reserve','South Africa','ZA','Ithala Game Reserve (South Africa)',1,1,0),(45530,0,145787,'Itri','Italy','IT','Itri (Italy)',1,1,0),(45531,0,145788,'Ivanic-Grad','Croatia','HR','Ivanic-Grad (Croatia)',1,1,0),(45532,0,145789,'Ivato','Madagascar','MG','Ivato (Madagascar)',1,1,0),(45533,12940,145790,'Ivins','United States of America','US','Ivins (United States of America)',1,1,0),(45534,0,145791,'Ivrea','Italy','IT','Ivrea (Italy)',1,1,0),(45535,0,145792,'Iwajlowgrad','Bulgaria','BG','Iwajlowgrad (Bulgaria)',1,1,0),(45536,12954,145793,'Ixtapan de la Sal','Mexico','MX','Ixtapan de la Sal (Mexico)',1,1,0),(45537,12967,145794,'Izumisano','Japan','JP','Izumisano (Japan)',1,1,0),(45538,0,145795,'Jabaga','Spain','ES','Jabaga (Spain)',1,1,0),(45539,0,145796,'Jabbeke','Belgium','BE','Jabbeke (Belgium)',1,1,0),(45540,0,145797,'Jachymov','Czech Republic','CZ','Jachymov (Czech Republic)',1,1,0),(45541,12979,145798,'Jackpot','United States of America','US','Jackpot (United States of America)',1,1,0),(45542,0,145799,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(45543,0,145800,'Jackson','United States of America','US','Jackson (United States of America)',1,1,0),(45544,0,145801,'Jackson Hole','United States of America','US','Jackson Hole (United States of America)',1,1,0),(45545,12982,145802,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(45546,0,145803,'Jacksonville','United States of America','US','Jacksonville (United States of America)',1,1,0),(45547,0,145804,'Jacobs Bay','South Africa','ZA','Jacobs Bay (South Africa)',1,1,0),(45548,0,145805,'Jagdaqi','China','CN','Jagdaqi (China)',1,1,0),(45549,0,145806,'Jahnsdorf','Germany','DE','Jahnsdorf (Germany)',1,1,0),(45550,13005,145807,'Jalcomulco','Mexico','MX','Jalcomulco (Mexico)',1,1,0),(45551,0,145808,'Jalhay','Belgium','BE','Jalhay (Belgium)',1,1,0),(45552,0,145809,'Jalta','Ukraine','UA','Jalta (Ukraine)',1,1,0),(45553,13029,145810,'Janesville','United States of America','US','Janesville (United States of America)',1,1,0),(45554,0,145811,'Janske Lazne','Czech Republic','CZ','Janske Lazne (Czech Republic)',1,1,0),(45555,13030,145812,'Japaratinga','Brazil','BR','Japaratinga (Brazil)',1,1,0),(45556,0,145813,'Jaremtsche','Ukraine','UA','Jaremtsche (Ukraine)',1,1,0),(45557,0,145814,'Jaslo','Poland','PL','Jaslo (Poland)',1,1,0),(45558,13043,145815,'Jasper','United States of America','US','Jasper (United States of America)',1,1,0),(45559,0,145816,'Jastrzebia Gora','Poland','PL','Jastrzebia Gora (Poland)',1,1,0),(45560,13050,145817,'Jaunay-Clan','France','FR','Jaunay-Clan (France)',1,1,0),(45561,0,145818,'Jedburgh','United Kingdom','UK','Jedburgh (United Kingdom)',1,1,0),(45562,0,145819,'Yekaterinburg','Russia','RU','Yekaterinburg (Russia)',1,1,0),(45563,13080,145820,'Jena','Germany','DE','Jena (Germany)',1,1,0),(45564,0,145821,'Jenesien','Italy','IT','Jenesien (Italy)',1,1,0),(45565,0,145822,'Jerez del Marquesado','Spain','ES','Jerez del Marquesado (Spain)',1,1,0),(45566,13105,145823,'Jerzens','Austria','AT','Jerzens (Austria)',1,1,0),(45567,13108,145824,'Jesi','Italy','IT','Jesi (Italy)',1,1,0),(45568,0,145825,'Jessentuki','Russia','RU','Jessentuki (Russia)',1,1,0),(45569,0,145826,'Jesteburg','Germany','DE','Jesteburg (Germany)',1,1,0),(45570,0,145827,'Jezera','Croatia','HR','Jezera (Croatia)',1,1,0),(45571,13131,145828,'Jiangyin','China','CN','Jiangyin (China)',1,1,0),(45572,13141,145829,'Jihlava','Czech Republic','CZ','Jihlava (Czech Republic)',1,1,0),(45573,0,145830,'Jimena','Spain','ES','Jimena (Spain)',1,1,0),(45574,0,145831,'Jinchang','China','CN','Jinchang (China)',1,1,0),(45575,13155,145832,'Jinggangshan','China','CN','Jinggangshan (China)',1,1,0),(45576,13158,145833,'Jingmen','China','CN','Jingmen (China)',1,1,0),(45577,0,145834,'Jiyeh','Lebanon','LB','Jiyeh (Lebanon)',1,1,0),(45578,0,145835,'Joao Monlevade','Brazil','BR','Joao Monlevade (Brazil)',1,1,0),(45579,0,145837,'Jogevamaa','Estonia','EE','Jogevamaa (Estonia)',1,1,0),(45580,13189,145838,'Johannesburg','South Africa','ZA','Johannesburg (South Africa)',1,1,0),(45581,13204,145839,'Joinville-Le-Pont','France','FR','Joinville-Le-Pont (France)',1,1,0),(45582,0,145840,'Jongny','Switzerland','CH','Jongny (Switzerland)',1,1,0),(45583,0,145841,'Jo?nitz','Germany','DE','Jo?nitz (Germany)',1,1,0),(45584,13252,145842,'Jouy-en-Josas','France','FR','Jouy-en-Josas (France)',1,1,0),(45585,13259,145843,'Juan-Les-Pins','France','FR','Juan-Les-Pins (France)',1,1,0),(45586,0,145844,'Juba','Sudan','SD','Juba (Sudan)',1,1,0),(45587,0,145845,'Juchsen','Germany','DE','Juchsen (Germany)',1,1,0),(45588,0,145846,'Jugowice','Poland','PL','Jugowice (Poland)',1,1,0),(45589,0,145847,'Juia','Spain','ES','Juia (Spain)',1,1,0),(45590,31202,145848,'Junction City','United States of America','US','Junction City (United States of America)',1,1,0),(45591,0,145849,'Junction City','United States of America','US','Junction City (United States of America)',1,1,0),(45592,0,145850,'Jupiter','Romania','RO','Jupiter (Romania)',1,1,0),(45593,13296,145851,'Jupiter','United States of America','US','Jupiter (United States of America)',1,1,0),(45594,0,145852,'Juquehy','Brazil','BR','Juquehy (Brazil)',1,1,0),(45595,0,145853,'Jurong','China','CN','Jurong (China)',1,1,0),(45596,0,145854,'Jussac','France','FR','Jussac (France)',1,1,0),(45597,0,145855,'Kaarz','Germany','DE','Kaarz (Germany)',1,1,0),(45598,0,145857,'Kai Bae Beach','Thailand','TH','Kai Bae Beach (Thailand)',1,1,0),(45599,0,145858,'Kalaegerszeg','Hungary','HU','Kalaegerszeg (Hungary)',1,1,0),(45600,13377,145859,'Kalajoki','Finland','FI','Kalajoki (Finland)',1,1,0),(45601,0,145860,'Kalandra','Greece','GR','Kalandra (Greece)',1,1,0),(45602,0,145861,'Kalbach','Germany','DE','Kalbach (Germany)',1,1,0),(45603,0,145862,'Kalefeld','Germany','DE','Kalefeld (Germany)',1,1,0),(45604,13398,145863,'Kalgoorlie','Australia','AU','Kalgoorlie (Australia)',1,1,0),(45605,13406,145864,'Kalisz','Poland','PL','Kalisz (Poland)',1,1,0),(45606,0,145865,'Kall','Germany','DE','Kall (Germany)',1,1,0),(45607,0,145866,'Kalletal','Germany','DE','Kalletal (Germany)',1,1,0),(45608,0,145867,'Kallista','Australia','AU','Kallista (Australia)',1,1,0),(45609,0,145868,'Kalo Chorio','Greece','GR','Kalo Chorio (Greece)',1,1,0),(45610,0,145869,'Kalonyktis','Greece','GR','Kalonyktis (Greece)',1,1,0),(45611,0,145870,'Kalpitiya','Sri Lanka','LK','Kalpitiya (Sri Lanka)',1,1,0),(45612,0,145871,'Kaltern am See','Italy','IT','Kaltern am See (Italy)',1,1,0),(45613,13436,145873,'Kamalame Cay','Bahamas','BS','Kamalame Cay (Bahamas)',1,1,0),(45614,0,145874,'Kamperland','Netherlands','NL','Kamperland (Netherlands)',1,1,0),(45615,13468,145875,'Kampong Cham','Cambodia','KH','Kampong Cham (Cambodia)',1,1,0),(45616,13471,145876,'Kampot','Cambodia','KH','Kampot (Cambodia)',1,1,0),(45617,0,145877,'Kanallaki','Greece','GR','Kanallaki (Greece)',1,1,0),(45618,0,145878,'Kani Keli','Comoros','KM','Kani Keli (Comoros)',1,1,0),(45619,13510,145879,'Kankaanpaa','Finland','FI','Kankaanpaa (Finland)',1,1,0),(45620,0,145880,'Kanouli','Greece','GR','Kanouli (Greece)',1,1,0),(45621,0,145881,'Kansas City','United States of America','US','Kansas City (United States of America)',1,1,0),(45622,0,145882,'Kap Sounion','Greece','GR','Kap Sounion (Greece)',1,1,0),(45623,0,145883,'Kapelica','Croatia','HR','Kapelica (Croatia)',1,1,0),(45624,0,145884,'Kappara','Malta','MT','Kappara (Malta)',1,1,0),(45625,0,145885,'Kappelrodeck','Germany','DE','Kappelrodeck (Germany)',1,1,0),(45626,0,145886,'Kara','Togo','TG','Kara (Togo)',1,1,0),(45627,0,145887,'Kardaras','Greece','GR','Kardaras (Greece)',1,1,0),(45628,0,145888,'Kardzhali','Bulgaria','BG','Kardzhali (Bulgaria)',1,1,0),(45629,0,145889,'Karlova Studanka','Czech Republic','CZ','Karlova Studanka (Czech Republic)',1,1,0),(45630,0,145890,'Karlovassi','Greece','GR','Karlovassi (Greece)',1,1,0),(45631,0,145891,'Karlstein am Main','Germany','DE','Karlstein am Main (Germany)',1,1,0),(45632,0,145892,'Kasperske Horny','Czech Republic','CZ','Kasperske Horny (Czech Republic)',1,1,0),(45633,13655,145893,'Kastellaun','Germany','DE','Kastellaun (Germany)',1,1,0),(45634,0,145894,'Kastro','Greece','GR','Kastro (Greece)',1,1,0),(45635,13663,145895,'Kastrup','Denmark','DK','Kastrup (Denmark)',1,1,0),(45636,0,145896,'Kata Beach','Thailand','TH','Kata Beach (Thailand)',1,1,0),(45637,0,145897,'Katalagari','Greece','GR','Katalagari (Greece)',1,1,0),(45638,13672,145898,'Kathmandu','Nepal','NP','Kathmandu (Nepal)',1,1,0),(45639,0,145899,'Kato Loutraki','Greece','GR','Kato Loutraki (Greece)',1,1,0),(45640,0,145900,'Kato Stalos','Greece','GR','Kato Stalos (Greece)',1,1,0),(45641,0,145901,'Katsikia','Greece','GR','Katsikia (Greece)',1,1,0),(45642,0,145902,'Katzow','Germany','DE','Katzow (Germany)',1,1,0),(45643,13711,145903,'Kaunakakai','United States of America','US','Kaunakakai (United States of America)',1,1,0),(45644,13724,145904,'Kavos','Greece','GR','Kavos (Greece)',1,1,0),(45645,0,145905,'Kavran','Croatia','HR','Kavran (Croatia)',1,1,0),(45646,13725,145906,'Kavros','Greece','GR','Kavros (Greece)',1,1,0),(45647,0,145907,'Kayakoy','Turkey','TR','Kayakoy (Turkey)',1,1,0),(45648,13754,145908,'Kebili','Tunisia','TN','Kebili (Tunisia)',1,1,0),(45649,0,145909,'Kedange-sur-Canner','France','FR','Kedange-sur-Canner (France)',1,1,0),(45650,13766,145910,'Keene','Canada','CA','Keene (Canada)',1,1,0),(45651,0,145911,'Keila','Estonia','EE','Keila (Estonia)',1,1,0),(45652,0,145912,'Kellenhusen (Ostsee)','Germany','DE','Kellenhusen (Ostsee) (Germany)',1,1,0),(45653,13809,145913,'Kemah','United States of America','US','Kemah (United States of America)',1,1,0),(45654,0,145914,'Kemer Village','Turkey','TR','Kemer Village (Turkey)',1,1,0),(45655,0,145915,'Kemlitz','Germany','DE','Kemlitz (Germany)',1,1,0),(45656,13835,145916,'Kenly','United States of America','US','Kenly (United States of America)',1,1,0),(45657,13837,145917,'Kenmare','Ireland','IE','Kenmare (Ireland)',1,1,0),(45658,0,145918,'Kenmore','United Kingdom','UK','Kenmore (United Kingdom)',1,1,0),(45659,0,145919,'Kennett Square','United States of America','US','Kennett Square (United States of America)',1,1,0),(45660,13863,145920,'Kenting','Taiwan','TW','Kenting (Taiwan)',1,1,0),(45661,0,145921,'Kenya','Kenya','KE','Kenya (Kenya)',1,1,0),(45662,0,145922,'Kenyatta Beach','Kenya','KE','Kenyatta Beach (Kenya)',1,1,0),(45663,0,145923,'Keri','Greece','GR','Keri (Greece)',1,1,0),(45664,0,145924,'Kerkini','Greece','GR','Kerkini (Greece)',1,1,0),(45665,0,145925,'Kesten','Germany','DE','Kesten (Germany)',1,1,0),(45666,13901,145926,'Keswick','United States of America','US','Keswick (United States of America)',1,1,0),(45667,0,145927,'Khao Phra Tamnak Beach','Thailand','TH','Khao Phra Tamnak Beach (Thailand)',1,1,0),(45668,0,145928,'Kharga Oasis','Egypt','EG','Kharga Oasis (Egypt)',1,1,0),(45669,0,145929,'Khorat','Thailand','TH','Khorat (Thailand)',1,1,0),(45670,13971,145930,'Kiawah Island','United States of America','US','Kiawah Island (United States of America)',1,1,0),(45671,0,145931,'Kicevo','Macedonia','MK','Kicevo (Macedonia)',1,1,0),(45672,0,145932,'Kidepo Valley National Park','Uganda','UG','Kidepo Valley National Park (Uganda)',1,1,0),(45673,0,145933,'Kidwelly','United Kingdom','UK','Kidwelly (United Kingdom)',1,1,0),(45674,0,145934,'Kiens','Italy','IT','Kiens (Italy)',1,1,0),(45675,13986,145935,'Kiev','Ukraine','UA','Kiev (Ukraine)',1,1,0),(45676,0,145936,'Kigomani','Tanzania','TZ','Kigomani (Tanzania)',1,1,0),(45677,13989,145937,'Kihei','United States of America','US','Kihei (United States of America)',1,1,0),(45678,0,145938,'Kilada','Greece','GR','Kilada (Greece)',1,1,0),(45679,0,145939,'Kilgetty','United Kingdom','UK','Kilgetty (United Kingdom)',1,1,0),(45680,0,145940,'Killadeas','United Kingdom','UK','Killadeas (United Kingdom)',1,1,0),(45681,14027,145941,'Killorglin','Ireland','IE','Killorglin (Ireland)',1,1,0),(45682,0,145942,'Kilrush','Ireland','IE','Kilrush (Ireland)',1,1,0),(45683,0,145943,'Kilve','United Kingdom','UK','Kilve (United Kingdom)',1,1,0),(45684,0,145944,'Kimana Reservat','Kenya','KE','Kimana Reservat (Kenya)',1,1,0),(45685,14042,145945,'Kimball','United States of America','US','Kimball (United States of America)',1,1,0),(45686,0,145946,'Kimbe Bay','Papua New Guinea','PG','Kimbe Bay (Papua New Guinea)',1,1,0),(45687,14045,145947,'Kimberley','South Africa','ZA','Kimberley (South Africa)',1,1,0),(45688,0,145948,'Kimberling City','United States of America','US','Kimberling City (United States of America)',1,1,0),(45689,0,145949,'Kinglake','Australia','AU','Kinglake (Australia)',1,1,0),(45690,0,145950,'Kingsclere','United Kingdom','UK','Kingsclere (United Kingdom)',1,1,0),(45691,0,145951,'Kingston','United Kingdom','UK','Kingston (United Kingdom)',1,1,0),(45692,0,145952,'Kingston SE','Australia','AU','Kingston SE (Australia)',1,1,0),(45693,0,145953,'Kingussie','United Kingdom','UK','Kingussie (United Kingdom)',1,1,0),(45694,14092,145954,'Kingwood','United States of America','US','Kingwood (United States of America)',1,1,0),(45695,0,145955,'Kionia','Greece','GR','Kionia (Greece)',1,1,0),(45696,0,145956,'Kirchdorf am Inn','Germany','DE','Kirchdorf am Inn (Germany)',1,1,0),(45697,0,145957,'Kirchdorf bei Sulingen','Germany','DE','Kirchdorf bei Sulingen (Germany)',1,1,0),(45698,14128,145958,'Kirchheimbolanden','Germany','DE','Kirchheimbolanden (Germany)',1,1,0),(45699,0,145959,'Kirkcudbright','United Kingdom','UK','Kirkcudbright (United Kingdom)',1,1,0),(45700,14163,145960,'Kiruna','Sweden','SE','Kiruna (Sweden)',1,1,0),(45701,14167,145961,'Kisarazu','Japan','JP','Kisarazu (Japan)',1,1,0),(45702,0,145962,'Kisber','Hungary','HU','Kisber (Hungary)',1,1,0),(45703,0,145963,'Kiskunhalas','Hungary','HU','Kiskunhalas (Hungary)',1,1,0),(45704,0,145964,'Kissamos','Greece','GR','Kissamos (Greece)',1,1,0),(45705,0,145965,'Ki?legg','Germany','DE','Ki?legg (Germany)',1,1,0),(45706,0,145966,'Kitagawa','Japan','JP','Kitagawa (Japan)',1,1,0),(45707,14185,145967,'Kitami','Japan','JP','Kitami (Japan)',1,1,0),(45708,0,145968,'Kitashiobara','Japan','JP','Kitashiobara (Japan)',1,1,0),(45709,14188,145969,'Kiten','Bulgaria','BG','Kiten (Bulgaria)',1,1,0),(45710,14195,145970,'Kittila','Finland','FI','Kittila (Finland)',1,1,0),(45711,0,145971,'Kitulgala','Sri Lanka','LK','Kitulgala (Sri Lanka)',1,1,0),(45712,0,145972,'Kizimkazi','Tanzania','TZ','Kizimkazi (Tanzania)',1,1,0),(45713,14213,145973,'Klang','Malaysia','MY','Klang (Malaysia)',1,1,0),(45714,0,145974,'Klein Dobbern','Germany','DE','Klein Dobbern (Germany)',1,1,0),(45715,0,145975,'Klein Drakenstein','South Africa','ZA','Klein Drakenstein (South Africa)',1,1,0),(45716,14218,145976,'Kleinarl','Austria','AT','Kleinarl (Austria)',1,1,0),(45717,14221,145977,'Kleine Scheidegg','Switzerland','CH','Kleine Scheidegg (Switzerland)',1,1,0),(45718,0,145978,'Kleinich','Germany','DE','Kleinich (Germany)',1,1,0),(45719,0,145979,'Kleitoria','Greece','GR','Kleitoria (Greece)',1,1,0),(45720,0,145980,'Klimno','Croatia','HR','Klimno (Croatia)',1,1,0),(45721,0,145981,'Klingelbach','Germany','DE','Klingelbach (Germany)',1,1,0),(45722,14232,145982,'Klingenbrunn','Germany','DE','Klingenbrunn (Germany)',1,1,0),(45723,0,145983,'Klosterfelde','Germany','DE','Klosterfelde (Germany)',1,1,0),(45724,0,145984,'Kluane Lake','Canada','CA','Kluane Lake (Canada)',1,1,0),(45725,0,145985,'Knaresborough','United Kingdom','UK','Knaresborough (United Kingdom)',1,1,0),(45726,0,145986,'Knebworth','United Kingdom','UK','Knebworth (United Kingdom)',1,1,0),(45727,31220,145987,'Knox','United States of America','US','Knox (United States of America)',1,1,0),(45728,0,145988,'Ko Hai',NULL,NULL,'Ko Hai ()',1,1,0),(45729,0,145989,'Kobryn','Belarus','BY','Kobryn (Belarus)',1,1,0),(45730,14291,145990,'Kofu','Japan','JP','Kofu (Japan)',1,1,0),(45731,0,145991,'Koh Russey','Cambodia','KH','Koh Russey (Cambodia)',1,1,0),(45732,0,145992,'Kokemaki','Finland','FI','Kokemaki (Finland)',1,1,0),(45733,0,145993,'Kokkinos Pirgos','Greece','GR','Kokkinos Pirgos (Greece)',1,1,0),(45734,14304,145994,'Kokkola','Finland','FI','Kokkola (Finland)',1,1,0),(45735,0,145995,'Kokstad','South Africa','ZA','Kokstad (South Africa)',1,1,0),(45736,0,145996,'Koktebel','Ukraine','UA','Koktebel (Ukraine)',1,1,0),(45737,0,145997,'Kolitzheim','Germany','DE','Kolitzheim (Germany)',1,1,0),(45738,0,145998,'Kolka-Kap','Latvia','LV','Kolka-Kap (Latvia)',1,1,0),(45739,0,145999,'Kolsass','Austria','AT','Kolsass (Austria)',1,1,0),(45740,14331,146000,'Kolymbia','Greece','GR','Kolymbia (Greece)',1,1,0),(45741,0,146001,'Kona','United States of America','US','Kona (United States of America)',1,1,0),(45742,14346,146002,'Konakli','Turkey','TR','Konakli (Turkey)',1,1,0),(45743,14353,146003,'Kongsvinger','Norway','NO','Kongsvinger (Norway)',1,1,0),(45744,14372,146004,'Kooralbyn','Australia','AU','Kooralbyn (Australia)',1,1,0),(45745,0,146005,'Kopingsvik','Sweden','SE','Kopingsvik (Sweden)',1,1,0),(45746,0,146006,'Koppl','Austria','AT','Koppl (Austria)',1,1,0),(45747,14393,146007,'Korla','China','CN','Korla (China)',1,1,0),(45748,14398,146008,'Koroni','Greece','GR','Koroni (Greece)',1,1,0),(45749,0,146009,'Koropi','Greece','GR','Koropi (Greece)',1,1,0),(45750,14400,146010,'Koror','Palau','PW','Koror (Palau)',1,1,0),(45751,0,146011,'Koscielisko','Poland','PL','Koscielisko (Poland)',1,1,0),(45752,14408,146012,'Koserow','Germany','DE','Koserow (Germany)',1,1,0),(45753,14412,146013,'Kosice','Slovakia','SK','Kosice (Slovakia)',1,1,0),(45754,0,146014,'Kosmonosy','Czech Republic','CZ','Kosmonosy (Czech Republic)',1,1,0),(45755,0,146015,'Kossen','Austria','AT','Kossen (Austria)',1,1,0),(45756,14421,146016,'Kosta','Sweden','SE','Kosta (Sweden)',1,1,0),(45757,14431,146017,'Kotka','Finland','FI','Kotka (Finland)',1,1,0),(45758,0,146018,'Kotronas','Greece','GR','Kotronas (Greece)',1,1,0),(45759,0,146019,'Kotz','Germany','DE','Kotz (Germany)',1,1,0),(45760,0,146020,'Kotzting','Germany','DE','Kotzting (Germany)',1,1,0),(45761,0,146021,'Kraj','Croatia','HR','Kraj (Croatia)',1,1,0),(45762,0,146022,'Kranichfeld','Germany','DE','Kranichfeld (Germany)',1,1,0),(45763,0,146023,'Kransberg Nationalpark','South Africa','ZA','Kransberg Nationalpark (South Africa)',1,1,0),(45764,0,146024,'Krasnogorsk','Russia','RU','Krasnogorsk (Russia)',1,1,0),(45765,0,146025,'Krasnojarsk','Russia','RU','Krasnojarsk (Russia)',1,1,0),(45766,0,146026,'Krausnick','Germany','DE','Krausnick (Germany)',1,1,0),(45767,0,146027,'Kreien','Germany','DE','Kreien (Germany)',1,1,0),(45768,0,146028,'Kreiensen','Germany','DE','Kreiensen (Germany)',1,1,0),(45769,0,146029,'Kriebstein','Germany','DE','Kriebstein (Germany)',1,1,0),(45770,0,146030,'Kring van Dorth','Netherlands','NL','Kring van Dorth (Netherlands)',1,1,0),(45771,0,146031,'Krinica','Croatia','HR','Krinica (Croatia)',1,1,0),(45772,14517,146032,'Kromeriz','Czech Republic','CZ','Kromeriz (Czech Republic)',1,1,0),(45773,0,146033,'Kronplatz','Italy','IT','Kronplatz (Italy)',1,1,0),(45774,0,146034,'Kronstorf','Austria','AT','Kronstorf (Austria)',1,1,0),(45775,0,146035,'Kropotkin','Russia','RU','Kropotkin (Russia)',1,1,0),(45776,0,146036,'Kropp','Germany','DE','Kropp (Germany)',1,1,0),(45777,0,146037,'Krosno','Poland','PL','Krosno (Poland)',1,1,0),(45778,14525,146038,'Krugersdorp','South Africa','ZA','Krugersdorp (South Africa)',1,1,0),(45779,0,146039,'Krugsdorf','Germany','DE','Krugsdorf (Germany)',1,1,0),(45780,0,146040,'Kruje','Albania','AL','Kruje (Albania)',1,1,0),(45781,0,146041,'Krusa','Denmark','DK','Krusa (Denmark)',1,1,0),(45782,0,146042,'Kuala Penyu','Malaysia','MY','Kuala Penyu (Malaysia)',1,1,0),(45783,0,146043,'Kuchl','Austria','AT','Kuchl (Austria)',1,1,0),(45784,14555,146044,'Kufstein','Austria','AT','Kufstein (Austria)',1,1,0),(45785,0,146045,'Kulai','Malaysia','MY','Kulai (Malaysia)',1,1,0),(45786,0,146046,'Kuldiga','Latvia','LV','Kuldiga (Latvia)',1,1,0),(45787,0,146048,'Kulsheim','Germany','DE','Kulsheim (Germany)',1,1,0),(45788,14579,146049,'Kumasi','Ghana','GH','Kumasi (Ghana)',1,1,0),(45789,14584,146050,'Kumejima','Japan','JP','Kumejima (Japan)',1,1,0),(45790,14599,146052,'Kununurra','Australia','AU','Kununurra (Australia)',1,1,0),(45791,0,146053,'Kunzelsau','Germany','DE','Kunzelsau (Germany)',1,1,0),(45792,0,146054,'Kuranda','Australia','AU','Kuranda (Australia)',1,1,0),(45793,0,146055,'Kurmond','Australia','AU','Kurmond (Australia)',1,1,0),(45794,14618,146056,'Kurten','Germany','DE','Kurten (Germany)',1,1,0),(45795,0,146057,'Kurtinig an der Weinstra?e','Italy','IT','Kurtinig an der Weinstra?e (Italy)',1,1,0),(45796,0,146058,'Kussnacht','Switzerland','CH','Kussnacht (Switzerland)',1,1,0),(45797,14640,146059,'Kutno','Poland','PL','Kutno (Poland)',1,1,0),(45798,14669,146060,'Kyle','United States of America','US','Kyle (United States of America)',1,1,0),(45799,31235,146061,'La Baie','Canada','CA','La Baie (Canada)',1,1,0),(45800,31240,146062,'La Baule','France','FR','La Baule (France)',1,1,0),(45801,0,146063,'La Carihuela','Spain','ES','La Carihuela (Spain)',1,1,0),(45802,31264,146064,'La Chaise-Dieu','France','FR','La Chaise-Dieu (France)',1,1,0),(45803,31280,146065,'La Chomette','France','FR','La Chomette (France)',1,1,0),(45804,31300,146066,'La Crosse','United States of America','US','La Crosse (United States of America)',1,1,0),(45805,0,146067,'La Faute sur Mer','France','FR','La Faute sur Mer (France)',1,1,0),(45806,31377,146068,'La Londe-les-Maures','France','FR','La Londe-les-Maures (France)',1,1,0),(45807,31381,146069,'La Malbaie','Canada','CA','La Malbaie (Canada)',1,1,0),(45808,14687,146070,'La Marsa','Tunisia','TN','La Marsa (Tunisia)',1,1,0),(45809,0,146071,'La Norma','France','FR','La Norma (France)',1,1,0),(45810,0,146072,'La Paz','Costa Rica','CR','La Paz (Costa Rica)',1,1,0),(45811,0,146073,'La Petite France','Reunion','RE','La Petite France (Reunion)',1,1,0),(45812,0,146074,'La Plaine','Dominica','DM','La Plaine (Dominica)',1,1,0),(45813,0,146075,'La Restinga','Spain','ES','La Restinga (Spain)',1,1,0),(45814,31450,146076,'La Rioja','Argentina','AR','La Rioja (Argentina)',1,1,0),(45815,31467,146077,'La Romana','Spain','ES','La Romana (Spain)',1,1,0),(45816,31471,146078,'La Rosiere','France','FR','La Rosiere (France)',1,1,0),(45817,0,146079,'La Sage','Switzerland','CH','La Sage (Switzerland)',1,1,0),(45818,0,146080,'La Santa','Spain','ES','La Santa (Spain)',1,1,0),(45819,0,146081,'La Tour-de-Peilz','Switzerland','CH','La Tour-de-Peilz (Switzerland)',1,1,0),(45820,31499,146082,'La Tour-du-Pin','France','FR','La Tour-du-Pin (France)',1,1,0),(45821,31507,146083,'La Turballe','France','FR','La Turballe (France)',1,1,0),(45822,0,146084,'La Vega','Spain','ES','La Vega (Spain)',1,1,0),(45823,31515,146085,'La Vergne','United States of America','US','La Vergne (United States of America)',1,1,0),(45824,31518,146086,'La Veta','United States of America','US','La Veta (United States of America)',1,1,0),(45825,31524,146087,'La Vista','United States of America','US','La Vista (United States of America)',1,1,0),(45826,0,146088,'Laas','France','FR','Laas (France)',1,1,0),(45827,0,146089,'Lac Edouard','Canada','CA','Lac Edouard (Canada)',1,1,0),(45828,31533,146090,'Lac La Biche','Canada','CA','Lac La Biche (Canada)',1,1,0),(45829,14727,146092,'Lackawanna','United States of America','US','Lackawanna (United States of America)',1,1,0),(45830,14736,146093,'Ladiko','Greece','GR','Ladiko (Greece)',1,1,0),(45831,0,146094,'Ladismith','South Africa','ZA','Ladismith (South Africa)',1,1,0),(45832,14740,146095,'Ladoix-Serrigny','France','FR','Ladoix-Serrigny (France)',1,1,0),(45833,0,146096,'Ladurns','Italy','IT','Ladurns (Italy)',1,1,0),(45834,0,146097,'Laem Set Beach','Thailand','TH','Laem Set Beach (Thailand)',1,1,0),(45835,0,146098,'Lagny-sur-Marne','France','FR','Lagny-sur-Marne (France)',1,1,0),(45836,0,146099,'Lagord','France','FR','Lagord (France)',1,1,0),(45837,14777,146100,'Laguardia','Spain','ES','Laguardia (Spain)',1,1,0),(45838,14780,146101,'Laguna','Brazil','BR','Laguna (Brazil)',1,1,0),(45839,0,146102,'Laguna Vista','United States of America','US','Laguna Vista (United States of America)',1,1,0),(45840,14785,146103,'Lahaina','United States of America','US','Lahaina (United States of America)',1,1,0),(45841,0,146105,'Laiyang','China','CN','Laiyang (China)',1,1,0),(45842,0,146106,'Lajas Arriba','Puerto Rico','PR','Lajas Arriba (Puerto Rico)',1,1,0),(45843,31540,146107,'Lake Arrowhead','United States of America','US','Lake Arrowhead (United States of America)',1,1,0),(45844,31546,146108,'Lake Charles','United States of America','US','Lake Charles (United States of America)',1,1,0),(45845,31548,146109,'Lake City','United States of America','US','Lake City (United States of America)',1,1,0),(45846,31569,146110,'Lake Jackson','United States of America','US','Lake Jackson (United States of America)',1,1,0),(45847,31575,146111,'Lake Luzerne','United States of America','US','Lake Luzerne (United States of America)',1,1,0),(45848,0,146112,'Lake Monchneversdorf','Germany','DE','Lake Monchneversdorf (Germany)',1,1,0),(45849,0,146113,'Lake Mosvatnet','Norway','NO','Lake Mosvatnet (Norway)',1,1,0),(45850,0,146114,'Lake Mutirikwe / Lake Kyle','Zimbabwe','ZW','Lake Mutirikwe / Lake Kyle (Zimbabwe)',1,1,0),(45851,31586,146115,'Lake Placid','United States of America','US','Lake Placid (United States of America)',1,1,0),(45852,0,146116,'Lake Tekapo','New Zealand','NZ','Lake Tekapo (New Zealand)',1,1,0),(45853,31602,146117,'Lake Worth','United States of America','US','Lake Worth (United States of America)',1,1,0),(45854,0,146118,'Lakewood','United States of America','US','Lakewood (United States of America)',1,1,0),(45855,0,146119,'Laki','Poland','PL','Laki (Poland)',1,1,0),(45856,0,146120,'Lakki','Greece','GR','Lakki (Greece)',1,1,0),(45857,14841,146121,'Lalacelle','France','FR','Lalacelle (France)',1,1,0),(45858,14865,146122,'Lamezia Terme','Italy','IT','Lamezia Terme (Italy)',1,1,0),(45859,0,146123,'Lampertheim (Bas-Rhin)','France','FR','Lampertheim (Bas-Rhin) (France)',1,1,0),(45860,0,146124,'Lamu Island','Kenya','KE','Lamu Island (Kenya)',1,1,0),(45861,14896,146125,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(45862,0,146126,'Lancaster','United States of America','US','Lancaster (United States of America)',1,1,0),(45863,14905,146127,'Landeck','Austria','AT','Landeck (Austria)',1,1,0),(45864,14906,146128,'Landeda','France','FR','Landeda (France)',1,1,0),(45865,14907,146129,'Lander','United States of America','US','Lander (United States of America)',1,1,0),(45866,0,146130,'Landevieille','France','FR','Landevieille (France)',1,1,0),(45867,14912,146131,'Landivisiau','France','FR','Landivisiau (France)',1,1,0),(45868,0,146132,'Landsberg an der Warthe','Poland','PL','Landsberg an der Warthe (Poland)',1,1,0),(45869,0,146133,'Landsborough','Australia','AU','Landsborough (Australia)',1,1,0),(45870,0,146134,'Lanesborough','Ireland','IE','Lanesborough (Ireland)',1,1,0),(45871,0,146135,'Langadia','Greece','GR','Langadia (Greece)',1,1,0),(45872,14934,146136,'Langeais','France','FR','Langeais (France)',1,1,0),(45873,0,146137,'Langebaanweg','South Africa','ZA','Langebaanweg (South Africa)',1,1,0),(45874,31609,146138,'Langen','Germany','DE','Langen (Germany)',1,1,0),(45875,14940,146139,'Langenhagen','Germany','DE','Langenhagen (Germany)',1,1,0),(45876,0,146140,'Langhagen','Germany','DE','Langhagen (Germany)',1,1,0),(45877,0,146141,'Langkampfen','Austria','AT','Langkampfen (Austria)',1,1,0),(45878,14957,146142,'Langley','United States of America','US','Langley (United States of America)',1,1,0),(45879,0,146143,'Langlingen','Germany','DE','Langlingen (Germany)',1,1,0),(45880,14959,146144,'Langogne','France','FR','Langogne (France)',1,1,0),(45881,0,146145,'Langon','France','FR','Langon (France)',1,1,0),(45882,0,146146,'Lanov','Czech Republic','CZ','Lanov (Czech Republic)',1,1,0),(45883,0,146147,'L\'Anse-Saint-Jean','Canada','CA','L\'Anse-Saint-Jean (Canada)',1,1,0),(45884,14982,146148,'Lansing','United States of America','US','Lansing (United States of America)',1,1,0),(45885,14984,146149,'Lanslevillard','France','FR','Lanslevillard (France)',1,1,0),(45886,14988,146150,'Lanton','France','FR','Lanton (France)',1,1,0),(45887,0,146151,'Lanusei','Italy','IT','Lanusei (Italy)',1,1,0),(45888,0,146152,'Lanzada','Spain','ES','Lanzada (Spain)',1,1,0),(45889,0,146153,'Lanzo d\'Intelvi','Italy','IT','Lanzo d\'Intelvi (Italy)',1,1,0),(45890,0,146154,'Lapalisse','France','FR','Lapalisse (France)',1,1,0),(45891,0,146155,'LaPorte','United States of America','US','LaPorte (United States of America)',1,1,0),(45892,0,146156,'Lapsze-Nizne','Poland','PL','Lapsze-Nizne (Poland)',1,1,0),(45893,0,146157,'Lara-Kundu','Turkey','TR','Lara-Kundu (Turkey)',1,1,0),(45894,0,146158,'Larbro','Sweden','SE','Larbro (Sweden)',1,1,0),(45895,0,146159,'Largs','United Kingdom','UK','Largs (United Kingdom)',1,1,0),(45896,15037,146160,'Larkspur','United States of America','US','Larkspur (United States of America)',1,1,0),(45897,0,146161,'Larnas','France','FR','Larnas (France)',1,1,0),(45898,15042,146162,'Larned','United States of America','US','Larned (United States of America)',1,1,0),(45899,0,146163,'Larraga','Spain','ES','Larraga (Spain)',1,1,0),(45900,0,146164,'Las Almunias de Rodellar','Spain','ES','Las Almunias de Rodellar (Spain)',1,1,0),(45901,31618,146165,'Las Cruces','United States of America','US','Las Cruces (United States of America)',1,1,0),(45902,0,146166,'Las Indias','Spain','ES','Las Indias (Spain)',1,1,0),(45903,0,146167,'Las Norias','Spain','ES','Las Norias (Spain)',1,1,0),(45904,31626,146168,'Las Palmas','Spain','ES','Las Palmas (Spain)',1,1,0),(45905,0,146169,'Las Toscas','Spain','ES','Las Toscas (Spain)',1,1,0),(45906,0,146170,'Lasarte-Oria','Spain','ES','Lasarte-Oria (Spain)',1,1,0),(45907,15057,146171,'Lascelle','France','FR','Lascelle (France)',1,1,0),(45908,0,146172,'Lasithi','Greece','GR','Lasithi (Greece)',1,1,0),(45909,15058,146173,'Lasko','Slovenia','SI','Lasko (Slovenia)',1,1,0),(45910,15070,146174,'Latacunga','Ecuador','EC','Latacunga (Ecuador)',1,1,0),(45911,0,146175,'Lauenau','Germany','DE','Lauenau (Germany)',1,1,0),(45912,0,146176,'Lauenstein','Germany','DE','Lauenstein (Germany)',1,1,0),(45913,15102,146177,'Laugarvatn','Iceland','IS','Laugarvatn (Iceland)',1,1,0),(45914,0,146178,'Lauperath','Germany','DE','Lauperath (Germany)',1,1,0),(45915,0,146179,'Laurel','United States of America','US','Laurel (United States of America)',1,1,0),(45916,15119,146180,'Laurinburg','United States of America','US','Laurinburg (United States of America)',1,1,0),(45917,15123,146181,'Laussonne','France','FR','Laussonne (France)',1,1,0),(45918,15126,146182,'Lauterbrunnen','Switzerland','CH','Lauterbrunnen (Switzerland)',1,1,0),(45919,0,146183,'Lautzenhausen','Germany','DE','Lautzenhausen (Germany)',1,1,0),(45920,0,146185,'Lavacherie','Belgium','BE','Lavacherie (Belgium)',1,1,0),(45921,0,146186,'Lavalleja','Uruguay','UY','Lavalleja (Uruguay)',1,1,0),(45922,0,146187,'Lavern','Spain','ES','Lavern (Spain)',1,1,0),(45923,0,146188,'Lax','Switzerland','CH','Lax (Switzerland)',1,1,0),(45924,0,146189,'Lazaropole','Macedonia','MK','Lazaropole (Macedonia)',1,1,0),(45925,31635,146190,'Le Barcares','France','FR','Le Barcares (France)',1,1,0),(45926,31645,146191,'Le Bourget','France','FR','Le Bourget (France)',1,1,0),(45927,31654,146192,'Le Cannet','France','FR','Le Cannet (France)',1,1,0),(45928,0,146193,'Le Cannet-des-Maures','France','FR','Le Cannet-des-Maures (France)',1,1,0),(45929,0,146194,'Le Conquet','France','FR','Le Conquet (France)',1,1,0),(45930,31662,146195,'Le Corbier','France','FR','Le Corbier (France)',1,1,0),(45931,0,146196,'Le Coudray','France','FR','Le Coudray (France)',1,1,0),(45932,0,146197,'Le Diamant','Martinique','MQ','Le Diamant (Martinique)',1,1,0),(45933,31668,146198,'Le Faou','France','FR','Le Faou (France)',1,1,0),(45934,0,146199,'Le Francois','Martinique','MQ','Le Francois (Martinique)',1,1,0),(45935,0,146200,'Le Gavre','France','FR','Le Gavre (France)',1,1,0),(45936,0,146201,'Le Landeron','Switzerland','CH','Le Landeron (Switzerland)',1,1,0),(45937,31683,146202,'Le Lauzet-Ubaye','France','FR','Le Lauzet-Ubaye (France)',1,1,0),(45938,0,146203,'Le Mele-sur-Sarthe','France','FR','Le Mele-sur-Sarthe (France)',1,1,0),(45939,0,146204,'Le Mesnil-Esnard','France','FR','Le Mesnil-Esnard (France)',1,1,0),(45940,0,146206,'Le Pleynet','France','FR','Le Pleynet (France)',1,1,0),(45941,0,146207,'Le Portel','France','FR','Le Portel (France)',1,1,0),(45942,31739,146208,'Le Verdon-sur-Mer','France','FR','Le Verdon-sur-Mer (France)',1,1,0),(45943,0,146209,'Leavenworth','United States of America','US','Leavenworth (United States of America)',1,1,0),(45944,15182,146210,'Leca da Palmeira','Portugal','PT','Leca da Palmeira (Portugal)',1,1,0),(45945,0,146211,'Lechbruck','Germany','DE','Lechbruck (Germany)',1,1,0),(45946,15207,146212,'Lees Summit','United States of America','US','Lees Summit (United States of America)',1,1,0),(45947,0,146213,'Lefkakia','Greece','GR','Lefkakia (Greece)',1,1,0),(45948,0,146214,'Lefokastro','Greece','GR','Lefokastro (Greece)',1,1,0),(45949,15222,146215,'Legden','Germany','DE','Legden (Germany)',1,1,0),(45950,0,146216,'Legionowo','Poland','PL','Legionowo (Poland)',1,1,0),(45951,0,146217,'Lehrberg','Germany','DE','Lehrberg (Germany)',1,1,0),(45952,15233,146218,'Lehrte','Germany','DE','Lehrte (Germany)',1,1,0),(45953,0,146219,'Leicester','United Kingdom','UK','Leicester (United Kingdom)',1,1,0),(45954,31749,146220,'Leigh Creek','Australia','AU','Leigh Creek (Australia)',1,1,0),(45955,15244,146221,'Leikanger','Norway','NO','Leikanger (Norway)',1,1,0),(45956,15245,146222,'Leimen','Germany','DE','Leimen (Germany)',1,1,0),(45957,15255,146223,'Leissigen','Switzerland','CH','Leissigen (Switzerland)',1,1,0),(45958,15266,146224,'Leland','United States of America','US','Leland (United States of America)',1,1,0),(45959,15270,146225,'Lelystad','Netherlands','NL','Lelystad (Netherlands)',1,1,0),(45960,0,146226,'Lembeh Strait','Indonesia','ID','Lembeh Strait (Indonesia)',1,1,0),(45961,0,146227,'Lembongan Island','Indonesia','ID','Lembongan Island (Indonesia)',1,1,0),(45962,0,146228,'Lemforde','Germany','DE','Lemforde (Germany)',1,1,0),(45963,15276,146229,'Lemoore','United States of America','US','Lemoore (United States of America)',1,1,0),(45964,15280,146230,'Lenexa','United States of America','US','Lenexa (United States of America)',1,1,0),(45965,15303,146231,'Leogang','Austria','AT','Leogang (Austria)',1,1,0),(45966,0,146232,'Leon','France','FR','Leon (France)',1,1,0),(45967,15312,146233,'Leonberg','Germany','DE','Leonberg (Germany)',1,1,0),(45968,0,146234,'Les Avirons','Reunion','RE','Les Avirons (Reunion)',1,1,0),(45969,0,146235,'Les Begues','France','FR','Les Begues (France)',1,1,0),(45970,0,146236,'Les Cabannes (Tarn)','France','FR','Les Cabannes (Tarn) (France)',1,1,0),(45971,0,146237,'Les Cases d\'Alcanar','Spain','ES','Les Cases d\'Alcanar (Spain)',1,1,0),(45972,31773,146238,'Les Coches','France','FR','Les Coches (France)',1,1,0),(45973,0,146239,'Les Echelles','France','FR','Les Echelles (France)',1,1,0),(45974,0,146240,'Les Mosses','Switzerland','CH','Les Mosses (Switzerland)',1,1,0),(45975,0,146241,'Les Moutiers en Retz','France','FR','Les Moutiers en Retz (France)',1,1,0),(45976,31794,146242,'Les Orres','France','FR','Les Orres (France)',1,1,0),(45977,0,146243,'Les Piards','France','FR','Les Piards (France)',1,1,0),(45978,0,146244,'Les Sables Vigniers','France','FR','Les Sables Vigniers (France)',1,1,0),(45979,0,146245,'Les Saintes Maries de la Mer','France','FR','Les Saintes Maries de la Mer (France)',1,1,0),(45980,0,146246,'Les Vigneaux','France','FR','Les Vigneaux (France)',1,1,0),(45981,15351,146247,'L\'Estartit','Spain','ES','L\'Estartit (Spain)',1,1,0),(45982,15353,146248,'Lester','United States of America','US','Lester (United States of America)',1,1,0),(45983,0,146249,'L\'Etivaz','Switzerland','CH','L\'Etivaz (Switzerland)',1,1,0),(45984,0,146250,'Letohrad-Kunice','Czech Republic','CZ','Letohrad-Kunice (Czech Republic)',1,1,0),(45985,0,146251,'Letschin','Germany','DE','Letschin (Germany)',1,1,0),(45986,0,146252,'Leun','Germany','DE','Leun (Germany)',1,1,0),(45987,15381,146253,'Levanger','Norway','NO','Levanger (Norway)',1,1,0),(45988,15391,146254,'Levin','New Zealand','NZ','Levin (New Zealand)',1,1,0),(45989,15392,146255,'Levis','Canada','CA','Levis (Canada)',1,1,0),(45990,15403,146256,'Lewisport','United States of America','US','Lewisport (United States of America)',1,1,0),(45991,15404,146257,'Lewistown','United States of America','US','Lewistown (United States of America)',1,1,0),(45992,0,146258,'Leyburn','United Kingdom','UK','Leyburn (United Kingdom)',1,1,0),(45993,15418,146259,'Lezzeno','Italy','IT','Lezzeno (Italy)',1,1,0),(45994,0,146260,'L\'Houmeau','France','FR','L\'Houmeau (France)',1,1,0),(45995,15424,146261,'Liano','Spain','ES','Liano (Spain)',1,1,0),(45996,15432,146262,'Liberal','United States of America','US','Liberal (United States of America)',1,1,0),(45997,15436,146263,'Liberty','United States of America','US','Liberty (United States of America)',1,1,0),(45998,0,146264,'Liberty','United States of America','US','Liberty (United States of America)',1,1,0),(45999,0,146265,'Libstat','Czech Republic','CZ','Libstat (Czech Republic)',1,1,0),(46000,15443,146266,'Lichinga','Mozambique','MZ','Lichinga (Mozambique)',1,1,0),(46001,0,146267,'Lichtenberg (Lausitz)','Germany','DE','Lichtenberg (Lausitz) (Germany)',1,1,0),(46002,0,146268,'Lichtenburg','South Africa','ZA','Lichtenburg (South Africa)',1,1,0),(46003,15446,146269,'Lichtenfels','Germany','DE','Lichtenfels (Germany)',1,1,0),(46004,0,146270,'Lichtenhain','Germany','DE','Lichtenhain (Germany)',1,1,0),(46005,0,146271,'Lichtenstein-Honau','Germany','DE','Lichtenstein-Honau (Germany)',1,1,0),(46006,0,146272,'Lichtenvoorde','Netherlands','NL','Lichtenvoorde (Netherlands)',1,1,0),(46007,15449,146273,'Lichtenwalde','Germany','DE','Lichtenwalde (Germany)',1,1,0),(46008,15453,146274,'Licodia Eubea','Italy','IT','Licodia Eubea (Italy)',1,1,0),(46009,15457,146275,'Lidkoping','Sweden','SE','Lidkoping (Sweden)',1,1,0),(46010,0,146276,'Lido di Noto','Italy','IT','Lido di Noto (Italy)',1,1,0),(46011,0,146277,'Liebenburg','Germany','DE','Liebenburg (Germany)',1,1,0),(46012,15461,146278,'Liechtenstein','Liechtenstein','LI','Liechtenstein (Liechtenstein)',1,1,0),(46013,15470,146279,'Lierganes','Spain','ES','Lierganes (Spain)',1,1,0),(46014,15479,146280,'Liffre','France','FR','Liffre (France)',1,1,0),(46015,0,146281,'Lifton','United Kingdom','UK','Lifton (United Kingdom)',1,1,0),(46016,15498,146282,'Lilienthal','Germany','DE','Lilienthal (Germany)',1,1,0),(46017,0,146283,'Lille','Belgium','BE','Lille (Belgium)',1,1,0),(46018,15503,146284,'Lillehammer','Norway','NO','Lillehammer (Norway)',1,1,0),(46019,15504,146285,'Lillesand','Norway','NO','Lillesand (Norway)',1,1,0),(46020,15505,146286,'Lillestrom','Norway','NO','Lillestrom (Norway)',1,1,0),(46021,0,146287,'Limavady','United Kingdom','UK','Limavady (United Kingdom)',1,1,0),(46022,0,146288,'Limni Keriou','Greece','GR','Limni Keriou (Greece)',1,1,0),(46023,15530,146289,'Limon','United States of America','US','Limon (United States of America)',1,1,0),(46024,0,146290,'Limone sul Garda','Italy','IT','Limone sul Garda (Italy)',1,1,0),(46025,0,146291,'Limpopo River Mouth','Mozambique','MZ','Limpopo River Mouth (Mozambique)',1,1,0),(46026,0,146292,'Linares','Mexico','MX','Linares (Mexico)',1,1,0),(46027,15547,146293,'Lincoln','United States of America','US','Lincoln (United States of America)',1,1,0),(46028,15568,146294,'Lindlar','Germany','DE','Lindlar (Germany)',1,1,0),(46029,0,146295,'Lindoso','Portugal','PT','Lindoso (Portugal)',1,1,0),(46030,31821,146296,'Lingen','Germany','DE','Lingen (Germany)',1,1,0),(46031,15576,146297,'Lingenau','Austria','AT','Lingenau (Austria)',1,1,0),(46032,0,146298,'Linlithgow','United Kingdom','UK','Linlithgow (United Kingdom)',1,1,0),(46033,15587,146299,'Lino Lakes','United States of America','US','Lino Lakes (United States of America)',1,1,0),(46034,0,146300,'Linxe','France','FR','Linxe (France)',1,1,0),(46035,0,146301,'Lipezk','Russia','RU','Lipezk (Russia)',1,1,0),(46036,0,146302,'Lipizza','Slovenia','SI','Lipizza (Slovenia)',1,1,0),(46037,0,146303,'Liptovsky Mikulas','Slovakia','SK','Liptovsky Mikulas (Slovakia)',1,1,0),(46038,0,146304,'Lisacannor / Liscannor','Ireland','IE','Lisacannor / Liscannor (Ireland)',1,1,0),(46039,15609,146305,'Lisbon','Portugal','PT','Lisbon (Portugal)',1,1,0),(46040,15617,146306,'Lisciano Niccone','Italy','IT','Lisciano Niccone (Italy)',1,1,0),(46041,15621,146307,'Lishui','China','CN','Lishui (China)',1,1,0),(46042,15622,146308,'Lisieux','France','FR','Lisieux (France)',1,1,0),(46043,0,146309,'L\'Isle-Jourdain','France','FR','L\'Isle-Jourdain (France)',1,1,0),(46044,15628,146310,'Lismore','Ireland','IE','Lismore (Ireland)',1,1,0),(46045,0,146311,'Listrac-Medoc','France','FR','Listrac-Medoc (France)',1,1,0),(46046,0,146312,'Litchfield National Park','Australia','AU','Litchfield National Park (Australia)',1,1,0),(46047,0,146313,'Lithochoro','Greece','GR','Lithochoro (Greece)',1,1,0),(46048,15646,146314,'Little Cayman','Cayman Islands','KY','Little Cayman (Cayman Islands)',1,1,0),(46049,0,146315,'Little Downham','United Kingdom','UK','Little Downham (United Kingdom)',1,1,0),(46050,0,146316,'Littlehampton','United Kingdom','UK','Littlehampton (United Kingdom)',1,1,0),(46051,0,146317,'Livade','Croatia','HR','Livade (Croatia)',1,1,0),(46052,15656,146318,'Lively','Canada','CA','Lively (Canada)',1,1,0),(46053,15661,146319,'Liverpool','Canada','CA','Liverpool (Canada)',1,1,0),(46054,15670,146320,'Livonia','United States of America','US','Livonia (United States of America)',1,1,0),(46055,15675,146321,'Liwa','United Arab Emirates','AE','Liwa (United Arab Emirates)',1,1,0),(46056,0,146322,'Lixouri','Greece','GR','Lixouri (Greece)',1,1,0),(46057,0,146323,'Lizzano','Italy','IT','Lizzano (Italy)',1,1,0),(46058,0,146324,'Llangefni','United Kingdom','UK','Llangefni (United Kingdom)',1,1,0),(46059,15726,146325,'Llavorsi','Spain','ES','Llavorsi (Spain)',1,1,0),(46060,0,146326,'Llerana-Saro','Spain','ES','Llerana-Saro (Spain)',1,1,0),(46061,15729,146327,'Llerena','Spain','ES','Llerena (Spain)',1,1,0),(46062,0,146328,'Lles de Cerdanya','Spain','ES','Lles de Cerdanya (Spain)',1,1,0),(46063,0,146329,'Lloreda','Spain','ES','Lloreda (Spain)',1,1,0),(46064,0,146330,'Lloydminster (Saskatchewan)','Canada','CA','Lloydminster (Saskatchewan) (Canada)',1,1,0),(46065,0,146331,'Llyswen','United Kingdom','UK','Llyswen (United Kingdom)',1,1,0),(46066,0,146332,'Lochearnhead','United Kingdom','UK','Lochearnhead (United Kingdom)',1,1,0),(46067,15748,146333,'Lochem','Netherlands','NL','Lochem (Netherlands)',1,1,0),(46068,0,146334,'Lochristi','Belgium','BE','Lochristi (Belgium)',1,1,0),(46069,15756,146335,'Lockport','United States of America','US','Lockport (United States of America)',1,1,0),(46070,0,146336,'Loftus','United Kingdom','UK','Loftus (United Kingdom)',1,1,0),(46071,0,146337,'Lohfelden','Germany','DE','Lohfelden (Germany)',1,1,0),(46072,0,146338,'Lohme','Germany','DE','Lohme (Germany)',1,1,0),(46073,15801,146339,'Loja','Ecuador','EC','Loja (Ecuador)',1,1,0),(46074,15804,146340,'Loket','Czech Republic','CZ','Loket (Czech Republic)',1,1,0),(46075,15809,146341,'Lolo','United States of America','US','Lolo (United States of America)',1,1,0),(46076,15811,146342,'Lom','Norway','NO','Lom (Norway)',1,1,0),(46077,0,146343,'Lomselenas','Sweden','SE','Lomselenas (Sweden)',1,1,0),(46078,0,146344,'Londonderry','United Kingdom','UK','Londonderry (United Kingdom)',1,1,0),(46079,15841,146345,'Londrina','Brazil','BR','Londrina (Brazil)',1,1,0),(46080,0,146346,'Long Branch','United States of America','US','Long Branch (United States of America)',1,1,0),(46081,0,146347,'Long Preston','United Kingdom','UK','Long Preston (United Kingdom)',1,1,0),(46082,0,146348,'Long Valley','United States of America','US','Long Valley (United States of America)',1,1,0),(46083,0,146349,'Longevilles-Mont-d’Or','France','FR','Longevilles-Mont-d’Or (France)',1,1,0),(46084,0,146350,'Longkou','China','CN','Longkou (China)',1,1,0),(46085,0,146351,'Longsheng','China','CN','Longsheng (China)',1,1,0),(46086,15868,146352,'Longueuil','Canada','CA','Longueuil (Canada)',1,1,0),(46087,15876,146353,'Longyou','China','CN','Longyou (China)',1,1,0),(46088,0,146354,'Lonneberga','Sweden','SE','Lonneberga (Sweden)',1,1,0),(46089,31833,146355,'Lons','France','FR','Lons (France)',1,1,0),(46090,15882,146356,'Loomis','United States of America','US','Loomis (United States of America)',1,1,0),(46091,15899,146357,'Loreto','Italy','IT','Loreto (Italy)',1,1,0),(46092,15904,146358,'Lorica','Italy','IT','Lorica (Italy)',1,1,0),(46093,0,146359,'Lormes','France','FR','Lormes (France)',1,1,0),(46094,15911,146360,'Loro Ciuffenna','Italy','IT','Loro Ciuffenna (Italy)',1,1,0),(46095,31850,146361,'Los Canos de Meca','Spain','ES','Los Canos de Meca (Spain)',1,1,0),(46096,0,146362,'Los Llanillos','Spain','ES','Los Llanillos (Spain)',1,1,0),(46097,31858,146363,'Los Llanos de Aridane','Spain','ES','Los Llanos de Aridane (Spain)',1,1,0),(46098,0,146364,'Los Villares','Spain','ES','Los Villares (Spain)',1,1,0),(46099,0,146365,'Losnich','Germany','DE','Losnich (Germany)',1,1,0),(46100,0,146366,'Lo?burg','Germany','DE','Lo?burg (Germany)',1,1,0),(46101,0,146367,'Lostwithiel','United Kingdom','UK','Lostwithiel (United Kingdom)',1,1,0),(46102,0,146368,'Lottum','Netherlands','NL','Lottum (Netherlands)',1,1,0),(46103,0,146369,'Louannec','France','FR','Louannec (France)',1,1,0),(46104,15957,146370,'Lousada','Portugal','PT','Lousada (Portugal)',1,1,0),(46105,0,146371,'Loutra','Greece','GR','Loutra (Greece)',1,1,0),(46106,0,146372,'Loutra Ipatis','Greece','GR','Loutra Ipatis (Greece)',1,1,0),(46107,15968,146373,'Lovech','Bulgaria','BG','Lovech (Bulgaria)',1,1,0),(46108,15985,146374,'Lower Hutt','New Zealand','NZ','Lower Hutt (New Zealand)',1,1,0),(46109,0,146375,'Lubenia','Poland','PL','Lubenia (Poland)',1,1,0),(46110,0,146376,'Lubriano','Italy','IT','Lubriano (Italy)',1,1,0),(46111,0,146377,'Lucca','Italy','IT','Lucca (Italy)',1,1,0),(46112,0,146378,'Lucerne','United States of America','US','Lucerne (United States of America)',1,1,0),(46113,0,146379,'Lucky','Slovakia','SK','Lucky (Slovakia)',1,1,0),(46114,0,146380,'Ludwigswinkel','Germany','DE','Ludwigswinkel (Germany)',1,1,0),(46115,0,146381,'Lufeng','China','CN','Lufeng (China)',1,1,0),(46116,16058,146382,'Lugoj','Romania','RO','Lugoj (Romania)',1,1,0),(46117,0,146383,'Luhden','Germany','DE','Luhden (Germany)',1,1,0),(46118,16063,146384,'Luino','Italy','IT','Luino (Italy)',1,1,0),(46119,16064,146385,'Lujan','Argentina','AR','Lujan (Argentina)',1,1,0),(46120,0,146386,'Lumphat','Cambodia','KH','Lumphat (Cambodia)',1,1,0),(46121,16097,146387,'Lunen','Germany','DE','Lunen (Germany)',1,1,0),(46122,0,146388,'Lunteren','Netherlands','NL','Lunteren (Netherlands)',1,1,0),(46123,16113,146389,'Luosto','Finland','FI','Luosto (Finland)',1,1,0),(46124,0,146390,'Lurs','France','FR','Lurs (France)',1,1,0),(46125,16127,146391,'Luso','Portugal','PT','Luso (Portugal)',1,1,0),(46126,0,146392,'Luson','Italy','IT','Luson (Italy)',1,1,0),(46127,0,146393,'Lutschental','Switzerland','CH','Lutschental (Switzerland)',1,1,0),(46128,0,146394,'Luttach','Italy','IT','Luttach (Italy)',1,1,0),(46129,16149,146395,'Luxembourg','Luxembourg','LU','Luxembourg (Luxembourg)',1,1,0),(46130,16155,146396,'Luyego','Spain','ES','Luyego (Spain)',1,1,0),(46131,16179,146397,'Lynden','United States of America','US','Lynden (United States of America)',1,1,0),(46132,0,146398,'Lyons','United States of America','US','Lyons (United States of America)',1,1,0),(46133,0,146399,'Lysomice','Poland','PL','Lysomice (Poland)',1,1,0),(46134,0,146400,'Lyuliang','China','CN','Lyuliang (China)',1,1,0),(46135,0,146401,'Ma\'agan','Israel','IL','Ma\'agan (Israel)',1,1,0),(46136,16213,146402,'Maam Cross','Ireland','IE','Maam Cross (Ireland)',1,1,0),(46137,16217,146403,'Maaseik','Belgium','BE','Maaseik (Belgium)',1,1,0),(46138,0,146404,'Maasmechelen','Belgium','BE','Maasmechelen (Belgium)',1,1,0),(46139,0,146405,'Macclesfield','United Kingdom','UK','Macclesfield (United Kingdom)',1,1,0),(46140,16239,146406,'Macedo de Cavaleiros','Portugal','PT','Macedo de Cavaleiros (Portugal)',1,1,0),(46141,16255,146407,'Mackay','Australia','AU','Mackay (Australia)',1,1,0),(46142,0,146408,'Macot-la-Plagne','France','FR','Macot-la-Plagne (France)',1,1,0),(46143,16271,146409,'Macungie','United States of America','US','Macungie (United States of America)',1,1,0),(46144,16273,146410,'Madaba','Jordan','JO','Madaba (Jordan)',1,1,0),(46145,16274,146411,'Madalena','Portugal','PT','Madalena (Portugal)',1,1,0),(46146,16281,146412,'Madeira','Portugal','PT','Madeira (Portugal)',1,1,0),(46147,0,146413,'Madera','United States of America','US','Madera (United States of America)',1,1,0),(46148,0,146414,'Madinat Coraya','Egypt','EG','Madinat Coraya (Egypt)',1,1,0),(46149,0,146415,'Madison','United States of America','US','Madison (United States of America)',1,1,0),(46150,16307,146416,'Madivaru','Maldives','MV','Madivaru (Maldives)',1,1,0),(46151,16316,146417,'Madronera','Spain','ES','Madronera (Spain)',1,1,0),(46152,0,146418,'Maentwrog','United Kingdom','UK','Maentwrog (United Kingdom)',1,1,0),(46153,0,146419,'Maenza','Italy','IT','Maenza (Italy)',1,1,0),(46154,16329,146420,'Mafikeng','South Africa','ZA','Mafikeng (South Africa)',1,1,0),(46155,0,146421,'Magazin Beach','Grenada','GD','Magazin Beach (Grenada)',1,1,0),(46156,16345,146422,'Magelang','Indonesia','ID','Magelang (Indonesia)',1,1,0),(46157,0,146423,'Magnac-Laval','France','FR','Magnac-Laval (France)',1,1,0),(46158,16359,146424,'Magnanville','France','FR','Magnanville (France)',1,1,0),(46159,16369,146425,'Magny-les-Hameaux','France','FR','Magny-les-Hameaux (France)',1,1,0),(46160,16370,146426,'Magog','Canada','CA','Magog (Canada)',1,1,0),(46161,0,146427,'Mahiyanganaya','Sri Lanka','LK','Mahiyanganaya (Sri Lanka)',1,1,0),(46162,0,146428,'Mahlberg','Germany','DE','Mahlberg (Germany)',1,1,0),(46163,0,146429,'Mahmutlar','Turkey','TR','Mahmutlar (Turkey)',1,1,0),(46164,16405,146430,'Maienfeld','Switzerland','CH','Maienfeld (Switzerland)',1,1,0),(46165,0,146431,'Main Brook','Canada','CA','Main Brook (Canada)',1,1,0),(46166,0,146432,'Mainhausen','Germany','DE','Mainhausen (Germany)',1,1,0),(46167,16413,146433,'Maintal','Germany','DE','Maintal (Germany)',1,1,0),(46168,0,146434,'Maisons-du-Bois-Lievremont','France','FR','Maisons-du-Bois-Lievremont (France)',1,1,0),(46169,16429,146435,'Maisons-Laffitte','France','FR','Maisons-Laffitte (France)',1,1,0),(46170,0,146436,'Maisons-les-Chaource','France','FR','Maisons-les-Chaource (France)',1,1,0),(46171,0,146437,'Maissin','Belgium','BE','Maissin (Belgium)',1,1,0),(46172,16434,146438,'Maizieres-la-Grande-Paroisse','France','FR','Maizieres-la-Grande-Paroisse (France)',1,1,0),(46173,0,146439,'Majdal Shams','Israel','IL','Majdal Shams (Israel)',1,1,0),(46174,0,146440,'Makadi Bay','Egypt','EG','Makadi Bay (Egypt)',1,1,0),(46175,16456,146441,'Makawao','United States of America','US','Makawao (United States of America)',1,1,0),(46176,0,146442,'Makgadikgadi-Pans-Nationalpark','Botswana','BW','Makgadikgadi-Pans-Nationalpark (Botswana)',1,1,0),(46177,0,146443,'Makhachkala','Russia','RU','Makhachkala (Russia)',1,1,0),(46178,0,146444,'Mala','Sweden','SE','Mala (Sweden)',1,1,0),(46179,0,146445,'Mala Lucivna','Slovakia','SK','Mala Lucivna (Slovakia)',1,1,0),(46180,16483,146446,'Malakal','Palau','PW','Malakal (Palau)',1,1,0),(46181,16497,146448,'Malay','Philippines','PH','Malay (Philippines)',1,1,0),(46182,0,146449,'Malediven','Maldives','MV','Malediven (Maldives)',1,1,0),(46183,0,146450,'Malgrate','Italy','IT','Malgrate (Italy)',1,1,0),(46184,0,146451,'Mallin','Germany','DE','Mallin (Germany)',1,1,0),(46185,0,146452,'Malo','Italy','IT','Malo (Italy)',1,1,0),(46186,0,146453,'Malsch','Germany','DE','Malsch (Germany)',1,1,0),(46187,0,146454,'Malschwitz','Germany','DE','Malschwitz (Germany)',1,1,0),(46188,0,146455,'Mamer','Luxembourg','LU','Mamer (Luxembourg)',1,1,0),(46189,0,146456,'Manara','Israel','IL','Manara (Israel)',1,1,0),(46190,16606,146457,'Mancelona','United States of America','US','Mancelona (United States of America)',1,1,0),(46191,0,146458,'Manchester','United States of America','US','Manchester (United States of America)',1,1,0),(46192,0,146459,'Manda Island','Kenya','KE','Manda Island (Kenya)',1,1,0),(46193,0,146460,'Mandayona','Spain','ES','Mandayona (Spain)',1,1,0),(46194,0,146461,'Mandeville','Canada','CA','Mandeville (Canada)',1,1,0),(46195,16642,146463,'Mangere','New Zealand','NZ','Mangere (New Zealand)',1,1,0),(46196,16660,146464,'Manilva','Spain','ES','Manilva (Spain)',1,1,0),(46197,16663,146465,'Maniquerville','France','FR','Maniquerville (France)',1,1,0),(46198,16664,146466,'Manisa','Turkey','TR','Manisa (Turkey)',1,1,0),(46199,16667,146467,'Manistique','United States of America','US','Manistique (United States of America)',1,1,0),(46200,16680,146468,'Manly','Australia','AU','Manly (Australia)',1,1,0),(46201,16696,146469,'Manson','United States of America','US','Manson (United States of America)',1,1,0),(46202,0,146470,'Manukan Island','Malaysia','MY','Manukan Island (Malaysia)',1,1,0),(46203,16717,146471,'Manyeleti Game Reserve','South Africa','ZA','Manyeleti Game Reserve (South Africa)',1,1,0),(46204,16721,146472,'Manzanillo','Mexico','MX','Manzanillo (Mexico)',1,1,0),(46205,0,146473,'Manzanillo','Costa Rica','CR','Manzanillo (Costa Rica)',1,1,0),(46206,0,146474,'Manzanillo','Cuba','CU','Manzanillo (Cuba)',1,1,0),(46207,16723,146475,'Manziana','Italy','IT','Manziana (Italy)',1,1,0),(46208,16724,146476,'Manzini','Swaziland','SZ','Manzini (Swaziland)',1,1,0),(46209,0,146477,'Maple Shade','United States of America','US','Maple Shade (United States of America)',1,1,0),(46210,16737,146478,'Maputo','Mozambique','MZ','Maputo (Mozambique)',1,1,0),(46211,16740,146479,'Maracaibo','Venezuela','VE','Maracaibo (Venezuela)',1,1,0),(46212,0,146480,'Maracalagonis','Italy','IT','Maracalagonis (Italy)',1,1,0),(46213,0,146482,'Maraha','New Zealand','NZ','Maraha (New Zealand)',1,1,0),(46214,16754,146483,'Marao','Portugal','PT','Marao (Portugal)',1,1,0),(46215,0,146485,'Marasi','Croatia','HR','Marasi (Croatia)',1,1,0),(46216,0,146486,'Marathokefala','Greece','GR','Marathokefala (Greece)',1,1,0),(46217,16758,146487,'Marathon','United States of America','US','Marathon (United States of America)',1,1,0),(46218,16760,146488,'Marathon','Canada','CA','Marathon (Canada)',1,1,0),(46219,16773,146489,'Marburg','Germany','DE','Marburg (Germany)',1,1,0),(46220,0,146490,'March','Germany','DE','March (Germany)',1,1,0),(46221,16781,146491,'Marciac','France','FR','Marciac (France)',1,1,0),(46222,16783,146492,'Marcialla','Italy','IT','Marcialla (Italy)',1,1,0),(46223,16787,146493,'Marcinowice','Poland','PL','Marcinowice (Poland)',1,1,0),(46224,16794,146494,'Mardin','Turkey','TR','Mardin (Turkey)',1,1,0),(46225,0,146495,'Margaree Forks','Canada','CA','Margaree Forks (Canada)',1,1,0),(46226,16811,146496,'Margaretville','United States of America','US','Margaretville (United States of America)',1,1,0),(46227,0,146497,'Margate','South Africa','ZA','Margate (South Africa)',1,1,0),(46228,16815,146498,'Margherita di Savoia','Italy','IT','Margherita di Savoia (Italy)',1,1,0),(46229,16834,146499,'Maricopa','United States of America','US','Maricopa (United States of America)',1,1,0),(46230,16840,146500,'Marienberg','Germany','DE','Marienberg (Germany)',1,1,0),(46231,16845,146501,'Marienville','United States of America','US','Marienville (United States of America)',1,1,0),(46232,16846,146502,'Mariestad','Sweden','SE','Mariestad (Sweden)',1,1,0),(46233,16848,146503,'Marigliano','Italy','IT','Marigliano (Italy)',1,1,0),(46234,16851,146504,'Marigot','Dominica','DM','Marigot (Dominica)',1,1,0),(46235,31899,146505,'Marina di Campo','Italy','IT','Marina di Campo (Italy)',1,1,0),(46236,0,146506,'Marina di Portisco-Costa Smeralda','Italy','IT','Marina di Portisco-Costa Smeralda (Italy)',1,1,0),(46237,0,146507,'Marina di Pulsano','Italy','IT','Marina di Pulsano (Italy)',1,1,0),(46238,0,146508,'Marina Romea','Italy','IT','Marina Romea (Italy)',1,1,0),(46239,16864,146509,'Marinette','United States of America','US','Marinette (United States of America)',1,1,0),(46240,16868,146510,'Marion','United States of America','US','Marion (United States of America)',1,1,0),(46241,0,146511,'Markdorf','Germany','DE','Markdorf (Germany)',1,1,0),(46242,0,146512,'Marken','Netherlands','NL','Marken (Netherlands)',1,1,0),(46243,0,146513,'Markgrafenheide','Germany','DE','Markgrafenheide (Germany)',1,1,0),(46244,16876,146514,'Markham','United States of America','US','Markham (United States of America)',1,1,0),(46245,0,146515,'Markt Erlbach','Germany','DE','Markt Erlbach (Germany)',1,1,0),(46246,0,146516,'Marktoberdorf','Germany','DE','Marktoberdorf (Germany)',1,1,0),(46247,16887,146517,'Marktredwitz','Germany','DE','Marktredwitz (Germany)',1,1,0),(46248,0,146518,'Marlow','United Kingdom','UK','Marlow (United Kingdom)',1,1,0),(46249,0,146519,'Marmirolo','Italy','IT','Marmirolo (Italy)',1,1,0),(46250,0,146520,'Marne','Germany','DE','Marne (Germany)',1,1,0),(46251,16915,146521,'Maroantsetra','Madagascar','MG','Maroantsetra (Madagascar)',1,1,0),(46252,0,146522,'Marratxi','Spain','ES','Marratxi (Spain)',1,1,0),(46253,0,146523,'Marsan','France','FR','Marsan (France)',1,1,0),(46254,16947,146524,'Marsh Harbour','Bahamas','BS','Marsh Harbour (Bahamas)',1,1,0),(46255,0,146525,'Martell','Italy','IT','Martell (Italy)',1,1,0),(46256,0,146526,'Martin','Slovakia','SK','Martin (Slovakia)',1,1,0),(46257,0,146527,'Martinamor','Spain','ES','Martinamor (Spain)',1,1,0),(46258,16991,146528,'Mary Esther','United States of America','US','Mary Esther (United States of America)',1,1,0),(46259,17013,146529,'Masaya','Nicaragua','NI','Masaya (Nicaragua)',1,1,0),(46260,17015,146530,'Mascali','Italy','IT','Mascali (Italy)',1,1,0),(46261,0,146531,'Masein','Switzerland','CH','Masein (Switzerland)',1,1,0),(46262,0,146532,'Mashabei Sadeh','Israel','IL','Mashabei Sadeh (Israel)',1,1,0),(46263,0,146534,'Maslives','France','FR','Maslives (France)',1,1,0),(46264,0,146535,'Maslow','Poland','PL','Maslow (Poland)',1,1,0),(46265,17041,146536,'Masquefa','Spain','ES','Masquefa (Spain)',1,1,0),(46266,0,146537,'Massapequa Park','United States of America','US','Massapequa Park (United States of America)',1,1,0),(46267,17048,146538,'Massena','United States of America','US','Massena (United States of America)',1,1,0),(46268,17053,146539,'Massignac','France','FR','Massignac (France)',1,1,0),(46269,0,146540,'Mastiano','Italy','IT','Mastiano (Italy)',1,1,0),(46270,17070,146541,'Matakana','New Zealand','NZ','Matakana (New Zealand)',1,1,0),(46271,17078,146542,'Matamoros','Mexico','MX','Matamoros (Mexico)',1,1,0),(46272,0,146543,'Matarrana','Spain','ES','Matarrana (Spain)',1,1,0),(46273,17087,146544,'Matehuala','Mexico','MX','Matehuala (Mexico)',1,1,0),(46274,0,146546,'Mathon','Austria','AT','Mathon (Austria)',1,1,0),(46275,0,146547,'Matjiesfontein','South Africa','ZA','Matjiesfontein (South Africa)',1,1,0),(46276,0,146548,'Matten bei Interlaken','Switzerland','CH','Matten bei Interlaken (Switzerland)',1,1,0),(46277,0,146549,'Mattersburg','Austria','AT','Mattersburg (Austria)',1,1,0),(46278,17127,146550,'Maturin','Venezuela','VE','Maturin (Venezuela)',1,1,0),(46279,17132,146551,'Maues','Brazil','BR','Maues (Brazil)',1,1,0),(46280,17148,146552,'Maulevrier','France','FR','Maulevrier (France)',1,1,0),(46281,17149,146553,'Maumee','United States of America','US','Maumee (United States of America)',1,1,0),(46282,17160,146554,'Mauriac','France','FR','Mauriac (France)',1,1,0),(46283,17165,146555,'Maury','France','FR','Maury (France)',1,1,0),(46284,0,146556,'Mavrikiano','Greece','GR','Mavrikiano (Greece)',1,1,0),(46285,0,146557,'Mavrovouni Gythion','Greece','GR','Mavrovouni Gythion (Greece)',1,1,0),(46286,0,146558,'Mayens-de-Sion','Switzerland','CH','Mayens-de-Sion (Switzerland)',1,1,0),(46287,17196,146559,'Maynooth','Ireland','IE','Maynooth (Ireland)',1,1,0),(46288,0,146560,'Mayville','United States of America','US','Mayville (United States of America)',1,1,0),(46289,17234,146561,'McAlester','United States of America','US','McAlester (United States of America)',1,1,0),(46290,17249,146562,'McDonough','United States of America','US','McDonough (United States of America)',1,1,0),(46291,17259,146563,'McKellar','Canada','CA','McKellar (Canada)',1,1,0),(46292,17271,146564,'McPherson','United States of America','US','McPherson (United States of America)',1,1,0),(46293,31924,146565,'Meade','United States of America','US','Meade (United States of America)',1,1,0),(46294,17278,146566,'Meadview','United States of America','US','Meadview (United States of America)',1,1,0),(46295,17280,146567,'Meaford','Canada','CA','Meaford (Canada)',1,1,0),(46296,0,146568,'Meaulne','France','FR','Meaulne (France)',1,1,0),(46297,17288,146569,'Mechanicsburg','United States of America','US','Mechanicsburg (United States of America)',1,1,0),(46298,0,146570,'Medford','United States of America','US','Medford (United States of America)',1,1,0),(46299,0,146571,'Medianeira','Brazil','BR','Medianeira (Brazil)',1,1,0),(46300,17306,146572,'Medicine Hat','Canada','CA','Medicine Hat (Canada)',1,1,0),(46301,0,146573,'Medveja','Croatia','HR','Medveja (Croatia)',1,1,0),(46302,0,146574,'Meer','Belgium','BE','Meer (Belgium)',1,1,0),(46303,0,146576,'Meesiger','Germany','DE','Meesiger (Germany)',1,1,0),(46304,0,146577,'Mefjordv?r','Norway','NO','Mefjordv?r (Norway)',1,1,0),(46305,17330,146578,'Megalochori','Greece','GR','Megalochori (Greece)',1,1,0),(46306,0,146579,'Meixing','China','CN','Meixing (China)',1,1,0),(46307,17351,146580,'Meizhou','China','CN','Meizhou (China)',1,1,0),(46308,0,146581,'Melchsee-Frutt','Switzerland','CH','Melchsee-Frutt (Switzerland)',1,1,0),(46309,17365,146582,'Meldorf','Germany','DE','Meldorf (Germany)',1,1,0),(46310,0,146583,'Melides','Portugal','PT','Melides (Portugal)',1,1,0),(46311,17382,146584,'Melle','Germany','DE','Melle (Germany)',1,1,0),(46312,0,146585,'Mellensee','Germany','DE','Mellensee (Germany)',1,1,0),(46313,0,146586,'Melrose Park','United States of America','US','Melrose Park (United States of America)',1,1,0),(46314,0,146587,'Menai Bridge','United Kingdom','UK','Menai Bridge (United Kingdom)',1,1,0),(46315,17419,146588,'Mendenhall','United States of America','US','Mendenhall (United States of America)',1,1,0),(46316,0,146589,'Mendig','Germany','DE','Mendig (Germany)',1,1,0),(46317,17425,146590,'Mendoza','Argentina','AR','Mendoza (Argentina)',1,1,0),(46318,17435,146591,'Mengibar','Spain','ES','Mengibar (Spain)',1,1,0),(46319,0,146592,'Menjangan-Bucht','Indonesia','ID','Menjangan-Bucht (Indonesia)',1,1,0),(46320,17460,146593,'Meolo','Italy','IT','Meolo (Italy)',1,1,0),(46321,0,146594,'Mercuer','France','FR','Mercuer (France)',1,1,0),(46322,0,146595,'Mereworth','United Kingdom','UK','Mereworth (United Kingdom)',1,1,0),(46323,17484,146596,'Merida','Mexico','MX','Merida (Mexico)',1,1,0),(46324,17485,146597,'Merida','Spain','ES','Merida (Spain)',1,1,0),(46325,17490,146598,'Merignac','France','FR','Merignac (France)',1,1,0),(46326,0,146599,'Merlingen','Switzerland','CH','Merlingen (Switzerland)',1,1,0),(46327,17521,146600,'Mertola','Portugal','PT','Mertola (Portugal)',1,1,0),(46328,0,146601,'Mervent','France','FR','Mervent (France)',1,1,0),(46329,0,146602,'Merzkirchen','Germany','DE','Merzkirchen (Germany)',1,1,0),(46330,17529,146603,'Mesagne','Italy','IT','Mesagne (Italy)',1,1,0),(46331,17532,146604,'Mescalero','United States of America','US','Mescalero (United States of America)',1,1,0),(46332,17538,146605,'Mesquer','France','FR','Mesquer (France)',1,1,0),(46333,0,146606,'Messotopos','Greece','GR','Messotopos (Greece)',1,1,0),(46334,17552,146607,'Mestre','Italy','IT','Mestre (Italy)',1,1,0),(46335,17553,146608,'Mestrino','Italy','IT','Mestrino (Italy)',1,1,0),(46336,17573,146609,'Mettmann','Germany','DE','Mettmann (Germany)',1,1,0),(46337,0,146610,'Meuselbach-Schwarzmuhle','Germany','DE','Meuselbach-Schwarzmuhle (Germany)',1,1,0),(46338,0,146611,'Meuselwitz','Germany','DE','Meuselwitz (Germany)',1,1,0),(46339,17584,146612,'Mexicali','Mexico','MX','Mexicali (Mexico)',1,1,0),(46340,0,146613,'Mexico','Mexico','MX','Mexico (Mexico)',1,1,0),(46341,17586,146614,'Mexy','France','FR','Mexy (France)',1,1,0),(46342,0,146615,'Meyras','France','FR','Meyras (France)',1,1,0),(46343,17600,146616,'Mezzana','Italy','IT','Mezzana (Italy)',1,1,0),(46344,17603,146617,'Mgarr','Malta','MT','Mgarr (Malta)',1,1,0),(46345,0,146618,'Miamisburg','United States of America','US','Miamisburg (United States of America)',1,1,0),(46346,17613,146619,'Mianzhu','China','CN','Mianzhu (China)',1,1,0),(46347,0,146620,'Micklauzhof','Austria','AT','Micklauzhof (Austria)',1,1,0),(46348,17624,146621,'Middelburg','Netherlands','NL','Middelburg (Netherlands)',1,1,0),(46349,0,146622,'Middleton Stoney','United Kingdom','UK','Middleton Stoney (United Kingdom)',1,1,0),(46350,0,146623,'Midlothian','United States of America','US','Midlothian (United States of America)',1,1,0),(46351,17671,146624,'Mifflintown','United States of America','US','Mifflintown (United States of America)',1,1,0),(46352,0,146625,'Miguel Esteban','Spain','ES','Miguel Esteban (Spain)',1,1,0),(46353,17687,146626,'Milano Marittima','Italy','IT','Milano Marittima (Italy)',1,1,0),(46354,0,146627,'Millas','France','FR','Millas (France)',1,1,0),(46355,17711,146628,'Millbrae','United States of America','US','Millbrae (United States of America)',1,1,0),(46356,0,146629,'Millingen am Rhein','Netherlands','NL','Millingen am Rhein (Netherlands)',1,1,0),(46357,17723,146630,'Millinocket','United States of America','US','Millinocket (United States of America)',1,1,0),(46358,17728,146631,'Milltown','Ireland','IE','Milltown (Ireland)',1,1,0),(46359,17732,146632,'Milo','Italy','IT','Milo (Italy)',1,1,0),(46360,0,146633,'Milos-Stadt','Greece','GR','Milos-Stadt (Greece)',1,1,0),(46361,17735,146634,'Milowka','Poland','PL','Milowka (Poland)',1,1,0),(46362,17738,146635,'Milroy','United States of America','US','Milroy (United States of America)',1,1,0),(46363,0,146636,'Mils','Austria','AT','Mils (Austria)',1,1,0),(46364,0,146637,'Mimetiz','Spain','ES','Mimetiz (Spain)',1,1,0),(46365,0,146638,'Minakami-machi','Japan','JP','Minakami-machi (Japan)',1,1,0),(46366,17753,146639,'Minami','Japan','JP','Minami (Japan)',1,1,0),(46367,17755,146640,'Minamichita','Japan','JP','Minamichita (Japan)',1,1,0),(46368,17757,146641,'Minamioguni','Japan','JP','Minamioguni (Japan)',1,1,0),(46369,0,146642,'Mindelheim','Germany','DE','Mindelheim (Germany)',1,1,0),(46370,0,146643,'Minden','United States of America','US','Minden (United States of America)',1,1,0),(46371,17774,146644,'Minerbio','Italy','IT','Minerbio (Italy)',1,1,0),(46372,0,146645,'Minheim','Germany','DE','Minheim (Germany)',1,1,0),(46373,17792,146646,'Minori','Italy','IT','Minori (Italy)',1,1,0),(46374,17826,146647,'Mirbat','Oman','OM','Mirbat (Oman)',1,1,0),(46375,17827,146648,'Mirecourt','France','FR','Mirecourt (France)',1,1,0),(46376,0,146649,'Mischor','Ukraine','UA','Mischor (Ukraine)',1,1,0),(46377,17862,146650,'Mitcham','Australia','AU','Mitcham (Australia)',1,1,0),(46378,17866,146651,'Mitilini','Greece','GR','Mitilini (Greece)',1,1,0),(46379,17869,146652,'Mittagong','Australia','AU','Mittagong (Australia)',1,1,0),(46380,17872,146653,'Mittelkalbach','Germany','DE','Mittelkalbach (Germany)',1,1,0),(46381,17877,146654,'Mittersill','Austria','AT','Mittersill (Austria)',1,1,0),(46382,0,146655,'Mkhuhlu','South Africa','ZA','Mkhuhlu (South Africa)',1,1,0),(46383,17904,146656,'Moana','New Zealand','NZ','Moana (New Zealand)',1,1,0),(46384,0,146657,'Moclinejo','Spain','ES','Moclinejo (Spain)',1,1,0),(46385,0,146658,'Mocona-Wasserfall','Argentina','AR','Mocona-Wasserfall (Argentina)',1,1,0),(46386,0,146659,'Modautal','Germany','DE','Modautal (Germany)',1,1,0),(46387,17927,146660,'Moerdijk','Netherlands','NL','Moerdijk (Netherlands)',1,1,0),(46388,17929,146661,'Moers','Germany','DE','Moers (Germany)',1,1,0),(46389,0,146662,'Mogadouro','Portugal','PT','Mogadouro (Portugal)',1,1,0),(46390,0,146663,'Mohe','China','CN','Mohe (China)',1,1,0),(46391,0,146664,'Moieciu','Romania','RO','Moieciu (Romania)',1,1,0),(46392,0,146665,'Mokosica','Croatia','HR','Mokosica (Croatia)',1,1,0),(46393,0,146666,'Mol','Belgium','BE','Mol (Belgium)',1,1,0),(46394,0,146667,'Moldovita','Romania','RO','Moldovita (Romania)',1,1,0),(46395,17979,146668,'Moline','United States of America','US','Moline (United States of America)',1,1,0),(46396,0,146669,'Mollans sur Ouveze','France','FR','Mollans sur Ouveze (France)',1,1,0),(46397,0,146670,'Mollbrucke','Austria','AT','Mollbrucke (Austria)',1,1,0),(46398,0,146671,'Molnlycke','Sweden','SE','Molnlycke (Sweden)',1,1,0),(46399,0,146672,'Mols','Switzerland','CH','Mols (Switzerland)',1,1,0),(46400,17995,146673,'Molsheim','France','FR','Molsheim (France)',1,1,0),(46401,17997,146674,'Molveno','Italy','IT','Molveno (Italy)',1,1,0),(46402,18014,146675,'Monaco','Monaco','MC','Monaco (Monaco)',1,1,0),(46403,0,146676,'Monaghan','Ireland','IE','Monaghan (Ireland)',1,1,0),(46404,18057,146677,'Monemvasia','Greece','GR','Monemvasia (Greece)',1,1,0),(46405,18070,146678,'Monforte de Lemos','Spain','ES','Monforte de Lemos (Spain)',1,1,0),(46406,18074,146679,'Mongu','Zambia','ZM','Mongu (Zambia)',1,1,0),(46407,0,146680,'Monnaie','France','FR','Monnaie (France)',1,1,0),(46408,18104,146681,'Mons-en-Baroeul','France','FR','Mons-en-Baroeul (France)',1,1,0),(46409,0,146682,'Monsteras','Sweden','SE','Monsteras (Sweden)',1,1,0),(46410,0,146683,'Montagny-pres-Yverdon','Switzerland','CH','Montagny-pres-Yverdon (Switzerland)',1,1,0),(46411,18117,146684,'Montagu','South Africa','ZA','Montagu (South Africa)',1,1,0),(46412,18120,146685,'Montague','Canada','CA','Montague (Canada)',1,1,0),(46413,18130,146686,'Montanejos','Spain','ES','Montanejos (Spain)',1,1,0),(46414,18140,146687,'Montbazon','France','FR','Montbazon (France)',1,1,0),(46415,18146,146688,'Montbrison','France','FR','Montbrison (France)',1,1,0),(46416,18151,146689,'Montcavrel','France','FR','Montcavrel (France)',1,1,0),(46417,18153,146690,'Montchanin','France','FR','Montchanin (France)',1,1,0),(46418,0,146691,'Mont-Dauphin','France','FR','Mont-Dauphin (France)',1,1,0),(46419,18160,146692,'Mont-de-Marsan','France','FR','Mont-de-Marsan (France)',1,1,0),(46420,31969,146693,'Monte Argentario','Italy','IT','Monte Argentario (Italy)',1,1,0),(46421,0,146694,'Monte Carasso','Switzerland','CH','Monte Carasso (Switzerland)',1,1,0),(46422,0,146695,'Monte Cristi','Dominican Republic','DO','Monte Cristi (Dominican Republic)',1,1,0),(46423,0,146696,'Montecarotto','Italy','IT','Montecarotto (Italy)',1,1,0),(46424,0,146697,'Montecchio Emilia','Italy','IT','Montecchio Emilia (Italy)',1,1,0),(46425,0,146698,'Montegrosso d\'Asti','Italy','IT','Montegrosso d\'Asti (Italy)',1,1,0),(46426,0,146699,'Monteporzio Catone','Italy','IT','Monteporzio Catone (Italy)',1,1,0),(46427,0,146700,'Monterosso al Mare','Italy','IT','Monterosso al Mare (Italy)',1,1,0),(46428,0,146701,'Montesclado','Spain','ES','Montesclado (Spain)',1,1,0),(46429,0,146702,'Montesilvano Marina','Italy','IT','Montesilvano Marina (Italy)',1,1,0),(46430,0,146703,'Montevettolini','Italy','IT','Montevettolini (Italy)',1,1,0),(46431,0,146704,'Monteviale','Italy','IT','Monteviale (Italy)',1,1,0),(46432,18244,146705,'Montferrer','Spain','ES','Montferrer (Spain)',1,1,0),(46433,18259,146706,'Monticello','France','FR','Monticello (France)',1,1,0),(46434,0,146707,'Montier-en-Der','France','FR','Montier-en-Der (France)',1,1,0),(46435,18268,146708,'Montigny-la-Resle','France','FR','Montigny-la-Resle (France)',1,1,0),(46436,18271,146709,'Montilla','Spain','ES','Montilla (Spain)',1,1,0),(46437,0,146710,'Montmarault','France','FR','Montmarault (France)',1,1,0),(46438,18286,146711,'Montmelo','Spain','ES','Montmelo (Spain)',1,1,0),(46439,18296,146712,'Montour Falls','United States of America','US','Montour Falls (United States of America)',1,1,0),(46440,0,146713,'Montpon-Menesterol','France','FR','Montpon-Menesterol (France)',1,1,0),(46441,0,146714,'Montreal-du-Gers','France','FR','Montreal-du-Gers (France)',1,1,0),(46442,18306,146715,'Montreuil-Bellay','France','FR','Montreuil-Bellay (France)',1,1,0),(46443,0,146716,'Montricher','Switzerland','CH','Montricher (Switzerland)',1,1,0),(46444,0,146717,'Montserrat','Spain','ES','Montserrat (Spain)',1,1,0),(46445,18332,146718,'Monument','United States of America','US','Monument (United States of America)',1,1,0),(46446,18334,146719,'Monza','Italy','IT','Monza (Italy)',1,1,0),(46447,18356,146720,'Moosburg','Austria','AT','Moosburg (Austria)',1,1,0),(46448,0,146721,'Moosomin','Canada','CA','Moosomin (Canada)',1,1,0),(46449,18367,146722,'Mora de Rubielos','Spain','ES','Mora de Rubielos (Spain)',1,1,0),(46450,18372,146723,'Moraine','United States of America','US','Moraine (United States of America)',1,1,0),(46451,18376,146724,'Moran','United States of America','US','Moran (United States of America)',1,1,0),(46452,18393,146725,'Morciano di Leuca','Italy','IT','Morciano di Leuca (Italy)',1,1,0),(46453,18407,146726,'Morella','Spain','ES','Morella (Spain)',1,1,0),(46454,18410,146727,'Moreton Island','Australia','AU','Moreton Island (Australia)',1,1,0),(46455,0,146728,'Morgan Hill','United States of America','US','Morgan Hill (United States of America)',1,1,0),(46456,18419,146729,'Morgat','France','FR','Morgat (France)',1,1,0),(46457,0,146730,'Morlenbach','Germany','DE','Morlenbach (Germany)',1,1,0),(46458,0,146731,'Morning Sun Nature Reserve','South Africa','ZA','Morning Sun Nature Reserve (South Africa)',1,1,0),(46459,18444,146732,'Mornington','Australia','AU','Mornington (Australia)',1,1,0),(46460,0,146733,'Mornsheim','Germany','DE','Mornsheim (Germany)',1,1,0),(46461,18462,146734,'Morro Bay','United States of America','US','Morro Bay (United States of America)',1,1,0),(46462,0,146735,'Morsbach','Germany','DE','Morsbach (Germany)',1,1,0),(46463,18468,146736,'Morschach','Switzerland','CH','Morschach (Switzerland)',1,1,0),(46464,0,146737,'Morschen','Germany','DE','Morschen (Germany)',1,1,0),(46465,0,146738,'Mortara','Italy','IT','Mortara (Italy)',1,1,0),(46466,0,146739,'Morteau','France','FR','Morteau (France)',1,1,0),(46467,0,146740,'Morter','Italy','IT','Morter (Italy)',1,1,0),(46468,18475,146741,'Morton','United States of America','US','Morton (United States of America)',1,1,0),(46469,18481,146742,'Morzine','France','FR','Morzine (France)',1,1,0),(46470,18488,146743,'Moscow','Russia','RU','Moscow (Russia)',1,1,0),(46471,0,146744,'Moselkern','Germany','DE','Moselkern (Germany)',1,1,0),(46472,18495,146745,'Mosfellsbaer','Iceland','IS','Mosfellsbaer (Iceland)',1,1,0),(46473,0,146746,'Moss Point','United States of America','US','Moss Point (United States of America)',1,1,0),(46474,18519,146747,'Mota del Cuervo','Spain','ES','Mota del Cuervo (Spain)',1,1,0),(46475,18525,146748,'Motobu','Japan','JP','Motobu (Japan)',1,1,0),(46476,18527,146749,'Motril','Spain','ES','Motril (Spain)',1,1,0),(46477,0,146750,'Moudon','Switzerland','CH','Moudon (Switzerland)',1,1,0),(46478,18545,146751,'Moulton','United States of America','US','Moulton (United States of America)',1,1,0),(46479,0,146753,'Mount Irvine Bay','Trinidad and Tobago','TT','Mount Irvine Bay (Trinidad and Tobago)',1,1,0),(46480,32026,146754,'Mount Morris','United States of America','US','Mount Morris (United States of America)',1,1,0),(46481,0,146755,'Mount Pleasant','United States of America','US','Mount Pleasant (United States of America)',1,1,0),(46482,18569,146756,'Mouries','France','FR','Mouries (France)',1,1,0),(46483,0,146757,'Mourne','Greece','GR','Mourne (Greece)',1,1,0),(46484,18575,146758,'Moustiers-Sainte-Marie','France','FR','Moustiers-Sainte-Marie (France)',1,1,0),(46485,0,146759,'Mouzeil','France','FR','Mouzeil (France)',1,1,0),(46486,0,146760,'Mpumalanga','South Africa','ZA','Mpumalanga (South Africa)',1,1,0),(46487,0,146761,'Mrzezyno','Poland','PL','Mrzezyno (Poland)',1,1,0),(46488,0,146762,'Mszczonow','Poland','PL','Mszczonow (Poland)',1,1,0),(46489,0,146763,'Mtwapa','Kenya','KE','Mtwapa (Kenya)',1,1,0),(46490,18608,146764,'Mudgee','Australia','AU','Mudgee (Australia)',1,1,0),(46491,18622,146765,'Muggia','Italy','IT','Muggia (Italy)',1,1,0),(46492,0,146766,'Muhldorf bei Feldbach','Austria','AT','Muhldorf bei Feldbach (Austria)',1,1,0),(46493,0,146767,'Muirhead','United Kingdom','UK','Muirhead (United Kingdom)',1,1,0),(46494,0,146769,'Mulheim an der Ruhr','Germany','DE','Mulheim an der Ruhr (Germany)',1,1,0),(46495,0,146770,'Mullins','United States of America','US','Mullins (United States of America)',1,1,0),(46496,0,146771,'Munchweiler/Alsenz','Germany','DE','Munchweiler/Alsenz (Germany)',1,1,0),(46497,0,146772,'Munci','Croatia','HR','Munci (Croatia)',1,1,0),(46498,18692,146773,'Mungia','Spain','ES','Mungia (Spain)',1,1,0),(46499,18694,146774,'Munich','Germany','DE','Munich (Germany)',1,1,0),(46500,0,146775,'Munsing','Germany','DE','Munsing (Germany)',1,1,0),(46501,18701,146777,'Munster','France','FR','Munster (France)',1,1,0),(46502,0,146778,'Muntinlupa City','Philippines','PH','Muntinlupa City (Philippines)',1,1,0),(46503,0,146779,'Muralto-Lacarno','Switzerland','CH','Muralto-Lacarno (Switzerland)',1,1,0),(46504,0,146780,'Murbach-Buhl','France','FR','Murbach-Buhl (France)',1,1,0),(46505,0,146781,'Murdeira','Cape Verde','CV','Murdeira (Cape Verde)',1,1,0),(46506,0,146782,'Murillo de Gallego','Spain','ES','Murillo de Gallego (Spain)',1,1,0),(46507,18734,146783,'Muro','France','FR','Muro (France)',1,1,0),(46508,18736,146784,'Murol','France','FR','Murol (France)',1,1,0),(46509,0,146785,'Murowana Goslina','Poland','PL','Murowana Goslina (Poland)',1,1,0),(46510,18741,146786,'Murphysboro','United States of America','US','Murphysboro (United States of America)',1,1,0),(46511,0,146787,'Murzzuschlag','Austria','AT','Murzzuschlag (Austria)',1,1,0),(46512,18762,146788,'Muscat','Oman','OM','Muscat (Oman)',1,1,0),(46513,18767,146789,'Muskegon','United States of America','US','Muskegon (United States of America)',1,1,0),(46514,18792,146790,'Mutzig','France','FR','Mutzig (France)',1,1,0),(46515,0,146791,'Mwazaro','Kenya','KE','Mwazaro (Kenya)',1,1,0),(46516,0,146792,'Myklebust - Tananger','Norway','NO','Myklebust - Tananger (Norway)',1,1,0),(46517,18804,146793,'Mykonos','Greece','GR','Mykonos (Greece)',1,1,0),(46518,18823,146794,'Mystras','Greece','GR','Mystras (Greece)',1,1,0),(46519,18853,146795,'Nacogdoches','United States of America','US','Nacogdoches (United States of America)',1,1,0),(46520,18864,146796,'Nagahama','Japan','JP','Nagahama (Japan)',1,1,0),(46521,18917,146797,'Nambour','Australia','AU','Nambour (Australia)',1,1,0),(46522,0,146798,'Namhae','South Korea','KR','Namhae (South Korea)',1,1,0),(46523,0,146799,'Namib Dessert','Namibia','NA','Namib Dessert (Namibia)',1,1,0),(46524,18936,146800,'Nan\'an','China','CN','Nan\'an (China)',1,1,0),(46525,18938,146801,'Nanao','Japan','JP','Nanao (Japan)',1,1,0),(46526,32072,146802,'Nancy','France','FR','Nancy (France)',1,1,0),(46527,0,146803,'Nangis','France','FR','Nangis (France)',1,1,0),(46528,0,146804,'Nant','France','FR','Nant (France)',1,1,0),(46529,18962,146805,'Nantes','France','FR','Nantes (France)',1,1,0),(46530,18971,146806,'Nanuet','United States of America','US','Nanuet (United States of America)',1,1,0),(46531,0,146807,'Napili','United States of America','US','Napili (United States of America)',1,1,0),(46532,18998,146808,'Naramata','Canada','CA','Naramata (Canada)',1,1,0),(46533,0,146809,'Narberth','United Kingdom','UK','Narberth (United Kingdom)',1,1,0),(46534,0,146810,'Naregno','Italy','IT','Naregno (Italy)',1,1,0),(46535,0,146811,'Narni Scalo','Italy','IT','Narni Scalo (Italy)',1,1,0),(46536,0,146812,'Naro Moru','Kenya','KE','Naro Moru (Kenya)',1,1,0),(46537,0,146813,'Narsdorf','Germany','DE','Narsdorf (Germany)',1,1,0),(46538,0,146815,'Nashville','United States of America','US','Nashville (United States of America)',1,1,0),(46539,19042,146816,'Nassjo','Sweden','SE','Nassjo (Sweden)',1,1,0),(46540,19043,146817,'Nasu','Japan','JP','Nasu (Japan)',1,1,0),(46541,0,146818,'National Park','United States of America','US','National Park (United States of America)',1,1,0),(46542,0,146819,'National Park Village','New Zealand','NZ','National Park Village (New Zealand)',1,1,0),(46543,0,146821,'Navafria','Spain','ES','Navafria (Spain)',1,1,0),(46544,0,146822,'Naveces','Spain','ES','Naveces (Spain)',1,1,0),(46545,0,146823,'Naviti Island','Fiji Islands','FJ','Naviti Island (Fiji Islands)',1,1,0),(46546,0,146824,'Nawala','Sri Lanka','LK','Nawala (Sri Lanka)',1,1,0),(46547,0,146826,'Naypyidaw','Myanmar','MM','Naypyidaw (Myanmar)',1,1,0),(46548,19113,146827,'N\'Djamena','Chad','TD','N\'Djamena (Chad)',1,1,0),(46549,32084,146828,'Nea Moudania','Greece','GR','Nea Moudania (Greece)',1,1,0),(46550,0,146829,'Nea Peramos','Greece','GR','Nea Peramos (Greece)',1,1,0),(46551,19142,146830,'Nefta','Tunisia','TN','Nefta (Tunisia)',1,1,0),(46552,0,146831,'Negotin','Serbia','RS','Negotin (Serbia)',1,1,0),(46553,0,146832,'Neijiang','China','CN','Neijiang (China)',1,1,0),(46554,19169,146833,'Nelson Bay','Australia','AU','Nelson Bay (Australia)',1,1,0),(46555,19179,146834,'Nemi','Italy','IT','Nemi (Italy)',1,1,0),(46556,19181,146835,'Nemours','France','FR','Nemours (France)',1,1,0),(46557,19187,146836,'Neo Itilo','Greece','GR','Neo Itilo (Greece)',1,1,0),(46558,0,146837,'Neo Pori','Greece','GR','Neo Pori (Greece)',1,1,0),(46559,0,146838,'Neot Hakikar','Israel','IL','Neot Hakikar (Israel)',1,1,0),(46560,0,146839,'Nesebar','Bulgaria','BG','Nesebar (Bulgaria)',1,1,0),(46561,0,146840,'Neszmely','Hungary','HU','Neszmely (Hungary)',1,1,0),(46562,0,146841,'Nettersheim/Marmagen','Germany','DE','Nettersheim/Marmagen (Germany)',1,1,0),(46563,19217,146842,'Nettetal','Germany','DE','Nettetal (Germany)',1,1,0),(46564,0,146843,'Neuburg am Inn','Germany','DE','Neuburg am Inn (Germany)',1,1,0),(46565,0,146844,'Neuendettelsau','Germany','DE','Neuendettelsau (Germany)',1,1,0),(46566,0,146845,'Neuenhaus','Germany','DE','Neuenhaus (Germany)',1,1,0),(46567,0,146846,'Neuenkirchen (Kreis Steinfurt)','Germany','DE','Neuenkirchen (Kreis Steinfurt) (Germany)',1,1,0),(46568,0,146847,'Neuenweg','Germany','DE','Neuenweg (Germany)',1,1,0),(46569,19232,146848,'Neuhardenberg','Germany','DE','Neuhardenberg (Germany)',1,1,0),(46570,0,146849,'Neuhausen am Rheinfall','Switzerland','CH','Neuhausen am Rheinfall (Switzerland)',1,1,0),(46571,0,146850,'Neuhausen auf den Fildern','Germany','DE','Neuhausen auf den Fildern (Germany)',1,1,0),(46572,19235,146851,'Neuhermsdorf','Germany','DE','Neuhermsdorf (Germany)',1,1,0),(46573,0,146852,'Neuhof','Germany','DE','Neuhof (Germany)',1,1,0),(46574,0,146853,'Neuhof a. d. Zenn','Germany','DE','Neuhof a. d. Zenn (Germany)',1,1,0),(46575,19237,146854,'Neuhofen an der Ybbs','Austria','AT','Neuhofen an der Ybbs (Austria)',1,1,0),(46576,19241,146855,'Neuilly-sur-Seine','France','FR','Neuilly-sur-Seine (France)',1,1,0),(46577,0,146856,'Neukirchen (Knull)','Germany','DE','Neukirchen (Knull) (Germany)',1,1,0),(46578,0,146857,'Neukirchen (Niederbayern)','Germany','DE','Neukirchen (Niederbayern) (Germany)',1,1,0),(46579,0,146858,'Neustadt an der Waldnaab','Germany','DE','Neustadt an der Waldnaab (Germany)',1,1,0),(46580,0,146859,'Neustadt/Saoxon Switzerland','Germany','DE','Neustadt/Saoxon Switzerland (Germany)',1,1,0),(46581,19269,146860,'Neuville-en-Ferrain','France','FR','Neuville-en-Ferrain (France)',1,1,0),(46582,0,146861,'Neve Zohar','Israel','IL','Neve Zohar (Israel)',1,1,0),(46583,0,146862,'New Brunswick','Canada','CA','New Brunswick (Canada)',1,1,0),(46584,32102,146863,'New Caney','United States of America','US','New Caney (United States of America)',1,1,0),(46585,0,146864,'New Cordell','United States of America','US','New Cordell (United States of America)',1,1,0),(46586,32132,146865,'New Martinsville','United States of America','US','New Martinsville (United States of America)',1,1,0),(46587,0,146866,'New Milton','United Kingdom','UK','New Milton (United Kingdom)',1,1,0),(46588,32144,146867,'New Port Richey','United States of America','US','New Port Richey (United States of America)',1,1,0),(46589,0,146868,'Newberry','United States of America','US','Newberry (United States of America)',1,1,0),(46590,19309,146869,'Newburyport','United States of America','US','Newburyport (United States of America)',1,1,0),(46591,0,146870,'Newhaven',NULL,NULL,'Newhaven ()',1,1,0),(46592,19333,146871,'Newington','United States of America','US','Newington (United States of America)',1,1,0),(46593,0,146872,'Newport','United States of America','US','Newport (United States of America)',1,1,0),(46594,0,146873,'Newport Beach','United States of America','US','Newport Beach (United States of America)',1,1,0),(46595,0,146874,'Newport News','United States of America','US','Newport News (United States of America)',1,1,0),(46596,0,146875,'Newton','United States of America','US','Newton (United States of America)',1,1,0),(46597,0,146876,'Newtonmountkennedy','Ireland','IE','Newtonmountkennedy (Ireland)',1,1,0),(46598,0,146877,'Newtownabbey','United Kingdom','UK','Newtownabbey (United Kingdom)',1,1,0),(46599,0,146878,'Newtownards','Ireland','IE','Newtownards (Ireland)',1,1,0),(46600,19364,146879,'Neydens','France','FR','Neydens (France)',1,1,0),(46601,0,146880,'Neznasovy','Czech Republic','CZ','Neznasovy (Czech Republic)',1,1,0),(46602,19370,146881,'Ngapali','Myanmar','MM','Ngapali (Myanmar)',1,1,0),(46603,19392,146882,'Niceville','United States of America','US','Niceville (United States of America)',1,1,0),(46604,19394,146883,'Nicholasville','United States of America','US','Nicholasville (United States of America)',1,1,0),(46605,0,146884,'Niederbreitenbach','Austria','AT','Niederbreitenbach (Austria)',1,1,0),(46606,0,146885,'Niedernfritz','Austria','AT','Niedernfritz (Austria)',1,1,0),(46607,0,146886,'Niedersteinbach','France','FR','Niedersteinbach (France)',1,1,0),(46608,19415,146887,'Niederstetten','Germany','DE','Niederstetten (Germany)',1,1,0),(46609,0,146888,'Niederwinkling','Germany','DE','Niederwinkling (Germany)',1,1,0),(46610,0,146889,'Niesky','Germany','DE','Niesky (Germany)',1,1,0),(46611,19431,146890,'Nieuwerkerk aan den IJssel','Netherlands','NL','Nieuwerkerk aan den IJssel (Netherlands)',1,1,0),(46612,0,146891,'Nieuwerkerken','Belgium','BE','Nieuwerkerken (Belgium)',1,1,0),(46613,0,146892,'Niforeika-Beach','Greece','GR','Niforeika-Beach (Greece)',1,1,0),(46614,0,146893,'Niguelas','Spain','ES','Niguelas (Spain)',1,1,0),(46615,0,146894,'Niles','United States of America','US','Niles (United States of America)',1,1,0),(46616,19482,146895,'Niort','France','FR','Niort (France)',1,1,0),(46617,19493,146896,'Nisswa','United States of America','US','Nisswa (United States of America)',1,1,0),(46618,19496,146897,'Nitro','United States of America','US','Nitro (United States of America)',1,1,0),(46619,0,146898,'Nizna nad Oravou','Slovakia','SK','Nizna nad Oravou (Slovakia)',1,1,0),(46620,0,146899,'Nizza Monferrato','Italy','IT','Nizza Monferrato (Italy)',1,1,0),(46621,0,146900,'Noale','Italy','IT','Noale (Italy)',1,1,0),(46622,19552,146901,'Nokomis','United States of America','US','Nokomis (United States of America)',1,1,0),(46623,19561,146902,'Nonthaburi','Thailand','TH','Nonthaburi (Thailand)',1,1,0),(46624,19565,146903,'Noord','Aruba','AW','Noord (Aruba)',1,1,0),(46625,0,146904,'Nordholz','Germany','DE','Nordholz (Germany)',1,1,0),(46626,19594,146905,'Nordlingen','Germany','DE','Nordlingen (Germany)',1,1,0),(46627,0,146906,'Norma','Italy','IT','Norma (Italy)',1,1,0),(46628,0,146907,'Norre Nebel','Denmark','DK','Norre Nebel (Denmark)',1,1,0),(46629,19616,146908,'Norrkoping','Sweden','SE','Norrkoping (Sweden)',1,1,0),(46630,32173,146909,'North Adams','United States of America','US','North Adams (United States of America)',1,1,0),(46631,0,146910,'North Hutchinson','United States of America','US','North Hutchinson (United States of America)',1,1,0),(46632,32247,146911,'North Lima','United States of America','US','North Lima (United States of America)',1,1,0),(46633,32296,146912,'North Syracuse','United States of America','US','North Syracuse (United States of America)',1,1,0),(46634,0,146913,'Northfield','United States of America','US','Northfield (United States of America)',1,1,0),(46635,0,146914,'Nortorf','Germany','DE','Nortorf (Germany)',1,1,0),(46636,0,146915,'Notre Dames de Monts','France','FR','Notre Dames de Monts (France)',1,1,0),(46637,0,146916,'Notsch','Austria','AT','Notsch (Austria)',1,1,0),(46638,0,146917,'Nova Friburgo','Brazil','BR','Nova Friburgo (Brazil)',1,1,0),(46639,0,146918,'Nova Siri Marina','Italy','IT','Nova Siri Marina (Italy)',1,1,0),(46640,19710,146919,'Novalja','Croatia','HR','Novalja (Croatia)',1,1,0),(46641,19711,146920,'Novara','Italy','IT','Novara (Italy)',1,1,0),(46642,0,146921,'Nove Mesto nad Metuji','Czech Republic','CZ','Nove Mesto nad Metuji (Czech Republic)',1,1,0),(46643,19720,146922,'Noves','France','FR','Noves (France)',1,1,0),(46644,19723,146923,'Novi Vinodolski','Croatia','HR','Novi Vinodolski (Croatia)',1,1,0),(46645,19724,146924,'Novigrad','Croatia','HR','Novigrad (Croatia)',1,1,0),(46646,0,146925,'Novy Dvur','Czech Republic','CZ','Novy Dvur (Czech Republic)',1,1,0),(46647,19739,146926,'Nowra','Australia','AU','Nowra (Australia)',1,1,0),(46648,0,146927,'Nowy Urengoi','Russia','RU','Nowy Urengoi (Russia)',1,1,0),(46649,0,146928,'Noyal Muzillac','France','FR','Noyal Muzillac (France)',1,1,0),(46650,19765,146929,'Nuku\'Alofa','Tonga','TO','Nuku\'Alofa (Tonga)',1,1,0),(46651,19781,146930,'Nunspeet','Netherlands','NL','Nunspeet (Netherlands)',1,1,0),(46652,19788,146931,'Nuriootpa','Australia','AU','Nuriootpa (Australia)',1,1,0),(46653,19798,146932,'Nuweiba','Egypt','EG','Nuweiba (Egypt)',1,1,0),(46654,0,146933,'Nyanga-Nationalpark','Zimbabwe','ZW','Nyanga-Nationalpark (Zimbabwe)',1,1,0),(46655,19802,146934,'Nyaung Shwe','Myanmar','MM','Nyaung Shwe (Myanmar)',1,1,0),(46656,0,146935,'Nyaviyani Atoll','Maldives','MV','Nyaviyani Atoll (Maldives)',1,1,0),(46657,19812,146936,'Nynashamn','Sweden','SE','Nynashamn (Sweden)',1,1,0),(46658,0,146937,'Nyungwe-Wald','Rwanda','RW','Nyungwe-Wald (Rwanda)',1,1,0),(46659,32324,146938,'Oak Creek','United States of America','US','Oak Creek (United States of America)',1,1,0),(46660,32330,146939,'Oak Lawn','United States of America','US','Oak Lawn (United States of America)',1,1,0),(46661,19830,146940,'Oakhurst','United States of America','US','Oakhurst (United States of America)',1,1,0),(46662,0,146941,'Oakland','United States of America','US','Oakland (United States of America)',1,1,0),(46663,0,146942,'Oakland','United States of America','US','Oakland (United States of America)',1,1,0),(46664,0,146943,'Oban','United Kingdom','UK','Oban (United Kingdom)',1,1,0),(46665,0,146944,'Oberaichwald','Austria','AT','Oberaichwald (Austria)',1,1,0),(46666,19850,146945,'Oberaudorf','Germany','DE','Oberaudorf (Germany)',1,1,0),(46667,19851,146946,'Oberaula','Germany','DE','Oberaula (Germany)',1,1,0),(46668,0,146947,'Oberbarenburg','Germany','DE','Oberbarenburg (Germany)',1,1,0),(46669,19860,146948,'Oberhaslach','France','FR','Oberhaslach (France)',1,1,0),(46670,19861,146949,'Oberhausen','Germany','DE','Oberhausen (Germany)',1,1,0),(46671,19867,146950,'Obermaiselstein','Germany','DE','Obermaiselstein (Germany)',1,1,0),(46672,0,146951,'Obernberg am Inn','Austria','AT','Obernberg am Inn (Austria)',1,1,0),(46673,0,146952,'Obernkirchen','Germany','DE','Obernkirchen (Germany)',1,1,0),(46674,19870,146953,'Obernzell','Germany','DE','Obernzell (Germany)',1,1,0),(46675,19873,146954,'Oberpullendorf','Austria','AT','Oberpullendorf (Austria)',1,1,0),(46676,0,146955,'Oberschonau','Germany','DE','Oberschonau (Germany)',1,1,0),(46677,0,146956,'Oberstaufen-Steibis','Germany','DE','Oberstaufen-Steibis (Germany)',1,1,0),(46678,19886,146957,'Obertraun','Austria','AT','Obertraun (Austria)',1,1,0),(46679,0,146958,'Obertrum','Austria','AT','Obertrum (Austria)',1,1,0),(46680,0,146959,'Obervellach','Austria','AT','Obervellach (Austria)',1,1,0),(46681,0,146960,'Oberweis','Germany','DE','Oberweis (Germany)',1,1,0),(46682,0,146961,'Oberwei?bach','Germany','DE','Oberwei?bach (Germany)',1,1,0),(46683,0,146962,'Oberweser','Germany','DE','Oberweser (Germany)',1,1,0),(46684,19893,146963,'Oberwolfach','Germany','DE','Oberwolfach (Germany)',1,1,0),(46685,19895,146964,'Obidos','Portugal','PT','Obidos (Portugal)',1,1,0),(46686,19898,146965,'Obsteig','Austria','AT','Obsteig (Austria)',1,1,0),(46687,19900,146966,'Obudu','Nigeria','NG','Obudu (Nigeria)',1,1,0),(46688,0,146967,'Ocean City','United States of America','US','Ocean City (United States of America)',1,1,0),(46689,19911,146968,'Ocho Rios','Jamaica','JM','Ocho Rios (Jamaica)',1,1,0),(46690,19913,146969,'Ochsenfurt','Germany','DE','Ochsenfurt (Germany)',1,1,0),(46691,0,146970,'Ochtrup','Germany','DE','Ochtrup (Germany)',1,1,0),(46692,19920,146971,'Oconto','United States of America','US','Oconto (United States of America)',1,1,0),(46693,19922,146972,'Odawara','Japan','JP','Odawara (Japan)',1,1,0),(46694,0,146973,'Odemira','Portugal','PT','Odemira (Portugal)',1,1,0),(46695,0,146974,'Odenthal','Germany','DE','Odenthal (Germany)',1,1,0),(46696,0,146975,'Oderbruck','Germany','DE','Oderbruck (Germany)',1,1,0),(46697,0,146976,'Oeren','Belgium','BE','Oeren (Belgium)',1,1,0),(46698,0,146977,'Ofterdingen','Germany','DE','Ofterdingen (Germany)',1,1,0),(46699,19963,146978,'Ogre','Latvia','LV','Ogre (Latvia)',1,1,0),(46700,0,146979,'Oia','Spain','ES','Oia (Spain)',1,1,0),(46701,0,146980,'Oignies En Thierache','Belgium','BE','Oignies En Thierache (Belgium)',1,1,0),(46702,0,146981,'Oirschot','Netherlands','NL','Oirschot (Netherlands)',1,1,0),(46703,19978,146982,'Oita','Japan','JP','Oita (Japan)',1,1,0),(46704,19982,146983,'Ojen','Spain','ES','Ojen (Spain)',1,1,0),(46705,0,146984,'Okahandja','Namibia','NA','Okahandja (Namibia)',1,1,0),(46706,19987,146985,'Okanogan','United States of America','US','Okanogan (United States of America)',1,1,0),(46707,0,146986,'Okavango','Botswana','BW','Okavango (Botswana)',1,1,0),(46708,19997,146987,'Okemos','United States of America','US','Okemos (United States of America)',1,1,0),(46709,0,146988,'Oktyabrsky','Russia','RU','Oktyabrsky (Russia)',1,1,0),(46710,20027,146989,'Olbia','Italy','IT','Olbia (Italy)',1,1,0),(46711,0,146990,'Old Road','Antigua & Barbuda','AG','Old Road (Antigua & Barbuda)',1,1,0),(46712,0,146991,'Oldbury','United Kingdom','UK','Oldbury (United Kingdom)',1,1,0),(46713,0,146992,'Oldenburg in Holstein','Germany','DE','Oldenburg in Holstein (Germany)',1,1,0),(46714,20038,146993,'Oldsmar','United States of America','US','Oldsmar (United States of America)',1,1,0),(46715,0,146994,'Olimpia Sao Paulo','Brazil','BR','Olimpia Sao Paulo (Brazil)',1,1,0),(46716,20058,146995,'Olivares','Spain','ES','Olivares (Spain)',1,1,0),(46717,0,146996,'Olive Hill','United States of America','US','Olive Hill (United States of America)',1,1,0),(46718,0,146997,'Oliveira do Hospital','Portugal','PT','Oliveira do Hospital (Portugal)',1,1,0),(46719,20065,146998,'Olivet','France','FR','Olivet (France)',1,1,0),(46720,0,146999,'Ollern','Austria','AT','Ollern (Austria)',1,1,0),(46721,0,147000,'Ollersdorf','Austria','AT','Ollersdorf (Austria)',1,1,0),(46722,0,147001,'Olmedo','Italy','IT','Olmedo (Italy)',1,1,0),(46723,32358,147002,'Omaha','United States of America','US','Omaha (United States of America)',1,1,0),(46724,20110,147003,'Ommen','Netherlands','NL','Ommen (Netherlands)',1,1,0),(46725,20136,147004,'Onnens','Switzerland','CH','Onnens (Switzerland)',1,1,0),(46726,20149,147005,'Ooltewah','United States of America','US','Ooltewah (United States of America)',1,1,0),(46727,20154,147006,'Oosterwolde','Netherlands','NL','Oosterwolde (Netherlands)',1,1,0),(46728,0,147007,'Oostkapelle','Netherlands','NL','Oostkapelle (Netherlands)',1,1,0),(46729,0,147008,'Opatow','Poland','PL','Opatow (Poland)',1,1,0),(46730,20165,147009,'Opelousas','United States of America','US','Opelousas (United States of America)',1,1,0),(46731,0,147010,'Opera bei Mailand','Italy','IT','Opera bei Mailand (Italy)',1,1,0),(46732,0,147011,'Opicina','Italy','IT','Opicina (Italy)',1,1,0),(46733,0,147012,'Opion','France','FR','Opion (France)',1,1,0),(46734,20172,147013,'Oppdal','Norway','NO','Oppdal (Norway)',1,1,0),(46735,0,147014,'Oppurg','Germany','DE','Oppurg (Germany)',1,1,0),(46736,20180,147015,'Oradea','Romania','RO','Oradea (Romania)',1,1,0),(46737,0,147016,'Orange City','United States of America','US','Orange City (United States of America)',1,1,0),(46738,0,147017,'Orciano Pisano','Italy','IT','Orciano Pisano (Italy)',1,1,0),(46739,20208,147018,'Orcieres','France','FR','Orcieres (France)',1,1,0),(46740,0,147019,'Orcival','France','FR','Orcival (France)',1,1,0),(46741,20219,147020,'Orebro','Sweden','SE','Orebro (Sweden)',1,1,0),(46742,0,147021,'Oregon','United States of America','US','Oregon (United States of America)',1,1,0),(46743,0,147022,'Orentano','Italy','IT','Orentano (Italy)',1,1,0),(46744,0,147023,'Orient Bay','Saint Martin (French part)','MF','Orient Bay (Saint Martin (French part))',1,1,0),(46745,0,147024,'Ormos Panaghias','Greece','GR','Ormos Panaghias (Greece)',1,1,0),(46746,0,147025,'Ornago','Italy','IT','Ornago (Italy)',1,1,0),(46747,0,147026,'Oroklini','Cyprus','CY','Oroklini (Cyprus)',1,1,0),(46748,0,147027,'Ort im Innkreis','Austria','AT','Ort im Innkreis (Austria)',1,1,0),(46749,0,147028,'Orzinuovi','Italy','IT','Orzinuovi (Italy)',1,1,0),(46750,0,147029,'Osorno la Mayor','Spain','ES','Osorno la Mayor (Spain)',1,1,0),(46751,0,147030,'Oss','Netherlands','NL','Oss (Netherlands)',1,1,0),(46752,0,147031,'Ostend','New Zealand','NZ','Ostend (New Zealand)',1,1,0),(46753,0,147032,'Osterhofen','Germany','DE','Osterhofen (Germany)',1,1,0),(46754,0,147033,'Ostheim','France','FR','Ostheim (France)',1,1,0),(46755,0,147034,'Ostrach','Germany','DE','Ostrach (Germany)',1,1,0),(46756,0,147035,'Otley','United Kingdom','UK','Otley (United Kingdom)',1,1,0),(46757,0,147036,'Otocac','Croatia','HR','Otocac (Croatia)',1,1,0),(46758,0,147037,'Ottawa','United States of America','US','Ottawa (United States of America)',1,1,0),(46759,0,147038,'Ottensheim','Austria','AT','Ottensheim (Austria)',1,1,0),(46760,20401,147039,'Otterndorf','Germany','DE','Otterndorf (Germany)',1,1,0),(46761,20410,147040,'Ottrott','France','FR','Ottrott (France)',1,1,0),(46762,20415,147041,'Ouagadougou','Burkina Faso','BF','Ouagadougou (Burkina Faso)',1,1,0),(46763,20420,147042,'Oudega','Netherlands','NL','Oudega (Netherlands)',1,1,0),(46764,20440,147043,'Oulx','Italy','IT','Oulx (Italy)',1,1,0),(46765,0,147044,'Ourinhos','Brazil','BR','Ourinhos (Brazil)',1,1,0),(46766,0,147045,'Outeiro de Rei','Spain','ES','Outeiro de Rei (Spain)',1,1,0),(46767,20450,147046,'Outer Banks','United States of America','US','Outer Banks (United States of America)',1,1,0),(46768,0,147047,'Overtornea','Sweden','SE','Overtornea (Sweden)',1,1,0),(46769,20486,147048,'Owen Sound','Canada','CA','Owen Sound (Canada)',1,1,0),(46770,0,147049,'Owhango','New Zealand','NZ','Owhango (New Zealand)',1,1,0),(46771,0,147050,'Oxford','United Kingdom','UK','Oxford (United Kingdom)',1,1,0),(46772,0,147051,'Oxford','United States of America','US','Oxford (United States of America)',1,1,0),(46773,0,147052,'Oxford Falls','Australia','AU','Oxford Falls (Australia)',1,1,0),(46774,0,147053,'Oytier-Saint-Oblas','France','FR','Oytier-Saint-Oblas (France)',1,1,0),(46775,0,147054,'Oz en Oisans','France','FR','Oz en Oisans (France)',1,1,0),(46776,20514,147055,'Ozarow Mazowiecki','Poland','PL','Ozarow Mazowiecki (Poland)',1,1,0),(46777,0,147056,'Ozzano Monferrato','Italy','IT','Ozzano Monferrato (Italy)',1,1,0),(46778,0,147057,'Pacet','Indonesia','ID','Pacet (Indonesia)',1,1,0),(46779,0,147058,'Pacy-sur-Eure','France','FR','Pacy-sur-Eure (France)',1,1,0),(46780,0,147059,'Paderne','Portugal','PT','Paderne (Portugal)',1,1,0),(46781,0,147060,'Padingbuttel','Germany','DE','Padingbuttel (Germany)',1,1,0),(46782,20548,147061,'Padthaway','Australia','AU','Padthaway (Australia)',1,1,0),(46783,20550,147062,'Padula','Italy','IT','Padula (Italy)',1,1,0),(46784,0,147063,'Page','United States of America','US','Page (United States of America)',1,1,0),(46785,0,147064,'Pagegiai','Lithuania','LT','Pagegiai (Lithuania)',1,1,0),(46786,20561,147065,'Pago Pago','American Samoa','AS','Pago Pago (American Samoa)',1,1,0),(46787,20573,147066,'Paihia','New Zealand','NZ','Paihia (New Zealand)',1,1,0),(46788,20581,147067,'Paipa','Colombia','CO','Paipa (Colombia)',1,1,0),(46789,20588,147068,'Paju','South Korea','KR','Paju (South Korea)',1,1,0),(46790,32393,147069,'Pala','United States of America','US','Pala (United States of America)',1,1,0),(46791,20615,147071,'Palau','Palau','PW','Palau (Palau)',1,1,0),(46792,0,147072,'Palau-saverdera','Spain','ES','Palau-saverdera (Spain)',1,1,0),(46793,0,147073,'Palazzo di Arcevia','Italy','IT','Palazzo di Arcevia (Italy)',1,1,0),(46794,0,147074,'Paleochori Beach','Greece','GR','Paleochori Beach (Greece)',1,1,0),(46795,0,147076,'Palm Beach','United States of America','US','Palm Beach (United States of America)',1,1,0),(46796,0,147077,'Palm Springs','United States of America','US','Palm Springs (United States of America)',1,1,0),(46797,32395,147078,'Palma de Mallorca','Spain','ES','Palma de Mallorca (Spain)',1,1,0),(46798,20653,147079,'Palmar','Mauritius','MU','Palmar (Mauritius)',1,1,0),(46799,20659,147080,'Palmer','United States of America','US','Palmer (United States of America)',1,1,0),(46800,20686,147081,'Pamporovo','Bulgaria','BG','Pamporovo (Bulgaria)',1,1,0),(46801,20693,147082,'Panama City','United States of America','US','Panama City (United States of America)',1,1,0),(46802,20710,147084,'Pangandaran','Indonesia','ID','Pangandaran (Indonesia)',1,1,0),(46803,0,147085,'Pangbourne','United Kingdom','UK','Pangbourne (United Kingdom)',1,1,0),(46804,0,147086,'Pangkalan Bun','Indonesia','ID','Pangkalan Bun (Indonesia)',1,1,0),(46805,0,147087,'Pangkur','Malaysia','MY','Pangkur (Malaysia)',1,1,0),(46806,0,147089,'Pantai Tengah','Malaysia','MY','Pantai Tengah (Malaysia)',1,1,0),(46807,20738,147090,'Pantin','France','FR','Pantin (France)',1,1,0),(46808,20743,147091,'Panzano','Italy','IT','Panzano (Italy)',1,1,0),(46809,0,147092,'Paolisi','Italy','IT','Paolisi (Italy)',1,1,0),(46810,20754,147093,'Papar','Malaysia','MY','Papar (Malaysia)',1,1,0),(46811,20761,147094,'Paphos','Cyprus','CY','Paphos (Cyprus)',1,1,0),(46812,0,147095,'Paramonas','Greece','GR','Paramonas (Greece)',1,1,0),(46813,20788,147096,'Parana','Argentina','AR','Parana (Argentina)',1,1,0),(46814,20789,147097,'Paranagua','Brazil','BR','Paranagua (Brazil)',1,1,0),(46815,20802,147098,'Paray-le-Monial','France','FR','Paray-le-Monial (France)',1,1,0),(46816,0,147099,'Pareja','Spain','ES','Pareja (Spain)',1,1,0),(46817,0,147100,'Paris','United States of America','US','Paris (United States of America)',1,1,0),(46818,0,147101,'Park City','United States of America','US','Park City (United States of America)',1,1,0),(46819,32409,147102,'Park Rapids','United States of America','US','Park Rapids (United States of America)',1,1,0),(46820,0,147103,'Parker','United States of America','US','Parker (United States of America)',1,1,0),(46821,20839,147104,'Parkville','Australia','AU','Parkville (Australia)',1,1,0),(46822,0,147105,'Parson','Canada','CA','Parson (Canada)',1,1,0),(46823,20881,147107,'Pasiano di Pordenone','Italy','IT','Pasiano di Pordenone (Italy)',1,1,0),(46824,20886,147108,'Paso Robles','United States of America','US','Paso Robles (United States of America)',1,1,0),(46825,20887,147109,'Paspebiac','Canada','CA','Paspebiac (Canada)',1,1,0),(46826,0,147110,'Passo Rolle','Italy','IT','Passo Rolle (Italy)',1,1,0),(46827,0,147111,'Passow','Germany','DE','Passow (Germany)',1,1,0),(46828,20892,147112,'Pastena','Italy','IT','Pastena (Italy)',1,1,0),(46829,20894,147113,'Pasuruan','Indonesia','ID','Pasuruan (Indonesia)',1,1,0),(46830,20923,147114,'Patrimonio','France','FR','Patrimonio (France)',1,1,0),(46831,0,147115,'Patten','United States of America','US','Patten (United States of America)',1,1,0),(46832,20926,147116,'Pattensen','Germany','DE','Pattensen (Germany)',1,1,0),(46833,20935,147117,'Pauillac','France','FR','Pauillac (France)',1,1,0),(46834,0,147118,'Pavia','Italy','IT','Pavia (Italy)',1,1,0),(46835,0,147119,'Pavlov','Czech Republic','CZ','Pavlov (Czech Republic)',1,1,0),(46836,20949,147120,'Pawleys Island','United States of America','US','Pawleys Island (United States of America)',1,1,0),(46837,20950,147121,'Pawtucket','United States of America','US','Pawtucket (United States of America)',1,1,0),(46838,0,147122,'Paxos','Greece','GR','Paxos (Greece)',1,1,0),(46839,0,147123,'Paxson','United States of America','US','Paxson (United States of America)',1,1,0),(46840,20953,147124,'Paxton','United States of America','US','Paxton (United States of America)',1,1,0),(46841,0,147125,'Paxton','United States of America','US','Paxton (United States of America)',1,1,0),(46842,20956,147126,'Paynes Bay','Barbados','BB','Paynes Bay (Barbados)',1,1,0),(46843,20959,147127,'Payrac','France','FR','Payrac (France)',1,1,0),(46844,0,147128,'Pcia de Santa Cruz','Argentina','AR','Pcia de Santa Cruz (Argentina)',1,1,0),(46845,20968,147129,'Peachtree City','United States of America','US','Peachtree City (United States of America)',1,1,0),(46846,20980,147130,'Pebble Beach','United States of America','US','Pebble Beach (United States of America)',1,1,0),(46847,0,147131,'Pec','Serbia','RS','Pec (Serbia)',1,1,0),(46848,0,147132,'Pec Pod Snezkou','Czech Republic','CZ','Pec Pod Snezkou (Czech Republic)',1,1,0),(46849,0,147133,'Pechina','Spain','ES','Pechina (Spain)',1,1,0),(46850,20992,147134,'Pedasi','Panama','PA','Pedasi (Panama)',1,1,0),(46851,0,147135,'Pedro Munoz','Spain','ES','Pedro Munoz (Spain)',1,1,0),(46852,21009,147136,'Pegnitz','Germany','DE','Pegnitz (Germany)',1,1,0),(46853,0,147137,'Pegomas','France','FR','Pegomas (France)',1,1,0),(46854,21031,147138,'Pelabuhan Ratu','Indonesia','ID','Pelabuhan Ratu (Indonesia)',1,1,0),(46855,0,147139,'Pelhrimov','Czech Republic','CZ','Pelhrimov (Czech Republic)',1,1,0),(46856,21054,147141,'Pemberton','Canada','CA','Pemberton (Canada)',1,1,0),(46857,21060,147142,'Pembroke','Canada','CA','Pembroke (Canada)',1,1,0),(46858,0,147143,'Penango','Italy','IT','Penango (Italy)',1,1,0),(46859,0,147144,'Penela','Portugal','PT','Penela (Portugal)',1,1,0),(46860,21086,147145,'Penha','Brazil','BR','Penha (Brazil)',1,1,0),(46861,21091,147146,'Peniscola','Spain','ES','Peniscola (Spain)',1,1,0),(46862,21097,147147,'Pennington','South Africa','ZA','Pennington (South Africa)',1,1,0),(46863,0,147148,'Pentrez - Plage','France','FR','Pentrez - Plage (France)',1,1,0),(46864,0,147149,'Pentrez-Saint-Nic','France','FR','Pentrez-Saint-Nic (France)',1,1,0),(46865,0,147150,'Peoria','United States of America','US','Peoria (United States of America)',1,1,0),(46866,0,147151,'Pera di Fassa','Italy','IT','Pera di Fassa (Italy)',1,1,0),(46867,21127,147152,'Peralada','Spain','ES','Peralada (Spain)',1,1,0),(46868,0,147153,'Peratallada','Spain','ES','Peratallada (Spain)',1,1,0),(46869,0,147154,'Peregian Beach','Australia','AU','Peregian Beach (Australia)',1,1,0),(46870,21134,147155,'Pereira','Colombia','CO','Pereira (Colombia)',1,1,0),(46871,21144,147156,'Perigiali','Greece','GR','Perigiali (Greece)',1,1,0),(46872,0,147157,'Perlesreut','Germany','DE','Perlesreut (Germany)',1,1,0),(46873,0,147158,'Perpezac-Le-Noir','France','FR','Perpezac-Le-Noir (France)',1,1,0),(46874,21172,147159,'Perpignan','France','FR','Perpignan (France)',1,1,0),(46875,0,147160,'Perros Guirec','France','FR','Perros Guirec (France)',1,1,0),(46876,0,147161,'Perryville','United States of America','US','Perryville (United States of America)',1,1,0),(46877,0,147162,'Pershore','United Kingdom','UK','Pershore (United Kingdom)',1,1,0),(46878,21192,147163,'Pertisau','Austria','AT','Pertisau (Austria)',1,1,0),(46879,21203,147164,'Peschici','Italy','IT','Peschici (Italy)',1,1,0),(46880,0,147165,'Petange','Luxembourg','LU','Petange (Luxembourg)',1,1,0),(46881,0,147166,'Petersham','Australia','AU','Petersham (Australia)',1,1,0),(46882,21235,147167,'Petite-Ile','Reunion','RE','Petite-Ile (Reunion)',1,1,0),(46883,0,147168,'Petjatu','Indonesia','ID','Petjatu (Indonesia)',1,1,0),(46884,0,147169,'Petralia Sottana','Italy','IT','Petralia Sottana (Italy)',1,1,0),(46885,21246,147170,'Petrignano','Italy','IT','Petrignano (Italy)',1,1,0),(46886,0,147171,'Petrignano (Assisi)','Italy','IT','Petrignano (Assisi) (Italy)',1,1,0),(46887,0,147172,'Petrochori','Greece','GR','Petrochori (Greece)',1,1,0),(46888,21273,147173,'Peyragudes','France','FR','Peyragudes (France)',1,1,0),(46889,21276,147174,'Pezenas','France','FR','Pezenas (France)',1,1,0),(46890,0,147175,'Pfreimd','Germany','DE','Pfreimd (Germany)',1,1,0),(46891,21297,147176,'Phenix City','United States of America','US','Phenix City (United States of America)',1,1,0),(46892,21315,147177,'Phoenixville','United States of America','US','Phoenixville (United States of America)',1,1,0),(46893,0,147178,'Phu Quoc','Vietnam','VN','Phu Quoc (Vietnam)',1,1,0),(46894,0,147179,'Phuket-Stadt','Thailand','TH','Phuket-Stadt (Thailand)',1,1,0),(46895,0,147180,'Piano di Conca','Italy','IT','Piano di Conca (Italy)',1,1,0),(46896,0,147181,'Picherande','France','FR','Picherande (France)',1,1,0),(46897,21344,147182,'Pichidangui','Chile','CL','Pichidangui (Chile)',1,1,0),(46898,21358,147183,'Picton','Canada','CA','Picton (Canada)',1,1,0),(46899,0,147184,'Picton','Australia','AU','Picton (Australia)',1,1,0),(46900,0,147185,'Piedimonte Etneo','Italy','IT','Piedimonte Etneo (Italy)',1,1,0),(46901,0,147186,'Piedmont','United States of America','US','Piedmont (United States of America)',1,1,0),(46902,21381,147187,'Piesendorf','Austria','AT','Piesendorf (Austria)',1,1,0),(46903,21385,147188,'Pietralunga','Italy','IT','Pietralunga (Italy)',1,1,0),(46904,21387,147189,'Pietrasanta','Italy','IT','Pietrasanta (Italy)',1,1,0),(46905,0,147190,'Pieve d’Alpago','Italy','IT','Pieve d’Alpago (Italy)',1,1,0),(46906,0,147191,'Pieve di Tremosine','Italy','IT','Pieve di Tremosine (Italy)',1,1,0),(46907,0,147192,'Pigadia','Greece','GR','Pigadia (Greece)',1,1,0),(46908,21393,147193,'Pigeon Point','Trinidad and Tobago','TT','Pigeon Point (Trinidad and Tobago)',1,1,0),(46909,0,147194,'Pigg\'s Peak','Swaziland','SZ','Pigg\'s Peak (Swaziland)',1,1,0),(46910,21395,147195,'Pignola','Italy','IT','Pignola (Italy)',1,1,0),(46911,21405,147196,'Pilanesberg','South Africa','ZA','Pilanesberg (South Africa)',1,1,0),(46912,0,147197,'Pilgramsberg','Germany','DE','Pilgramsberg (Germany)',1,1,0),(46913,0,147198,'Pilsach','Germany','DE','Pilsach (Germany)',1,1,0),(46914,0,147199,'Pilzno','Poland','PL','Pilzno (Poland)',1,1,0),(46915,21416,147200,'Pinamar','Argentina','AR','Pinamar (Argentina)',1,1,0),(46916,32430,147201,'Pine Brook','United States of America','US','Pine Brook (United States of America)',1,1,0),(46917,0,147202,'Pinnawella','Sri Lanka','LK','Pinnawella (Sri Lanka)',1,1,0),(46918,21456,147203,'Pinto','Spain','ES','Pinto (Spain)',1,1,0),(46919,21459,147204,'Piombino','Italy','IT','Piombino (Italy)',1,1,0),(46920,0,147205,'Piornal','Spain','ES','Piornal (Spain)',1,1,0),(46921,21472,147206,'Pirgadikia','Greece','GR','Pirgadikia (Greece)',1,1,0),(46922,21492,147207,'Piso Livadi','Greece','GR','Piso Livadi (Greece)',1,1,0),(46923,21502,147208,'Pitkin','United States of America','US','Pitkin (United States of America)',1,1,0),(46924,0,147209,'Pitlochry','United Kingdom','UK','Pitlochry (United Kingdom)',1,1,0),(46925,21506,147210,'Pitt Meadows','Canada','CA','Pitt Meadows (Canada)',1,1,0),(46926,0,147211,'Piwniczna Zdroj','Poland','PL','Piwniczna Zdroj (Poland)',1,1,0),(46927,0,147212,'Pizarra','Spain','ES','Pizarra (Spain)',1,1,0),(46928,0,147213,'Pjescana Uvala','Croatia','HR','Pjescana Uvala (Croatia)',1,1,0),(46929,0,147214,'Plagne Village','France','FR','Plagne Village (France)',1,1,0),(46930,0,147215,'Plainview','United States of America','US','Plainview (United States of America)',1,1,0),(46931,21533,147216,'Plainville','United States of America','US','Plainville (United States of America)',1,1,0),(46932,0,147217,'Plaitford','United Kingdom','UK','Plaitford (United Kingdom)',1,1,0),(46933,0,147218,'Plan de la Tour','France','FR','Plan de la Tour (France)',1,1,0),(46934,21545,147219,'Plant City','United States of America','US','Plant City (United States of America)',1,1,0),(46935,0,147220,'Platania','Greece','GR','Platania (Greece)',1,1,0),(46936,0,147221,'Plateliai','Lithuania','LT','Plateliai (Lithuania)',1,1,0),(46937,21558,147222,'Platres','Cyprus','CY','Platres (Cyprus)',1,1,0),(46938,0,147223,'Platy','Greece','GR','Platy (Greece)',1,1,0),(46939,0,147224,'Plauerhagen','Germany','DE','Plauerhagen (Germany)',1,1,0),(46940,0,147225,'Playa Conchal','Costa Rica','CR','Playa Conchal (Costa Rica)',1,1,0),(46941,0,147226,'Playa de Aro','Spain','ES','Playa de Aro (Spain)',1,1,0),(46942,0,147227,'Playa de la Franca','Spain','ES','Playa de la Franca (Spain)',1,1,0),(46943,0,147228,'Playa del Secreto','Mexico','MX','Playa del Secreto (Mexico)',1,1,0),(46944,0,147229,'Playa el Agua','Venezuela','VE','Playa el Agua (Venezuela)',1,1,0),(46945,0,147230,'Playa el Saler','Spain','ES','Playa el Saler (Spain)',1,1,0),(46946,0,147231,'Playa el Tirano','Venezuela','VE','Playa el Tirano (Venezuela)',1,1,0),(46947,0,147232,'Playa Figueral','Spain','ES','Playa Figueral (Spain)',1,1,0),(46948,0,147233,'Playa Medina','Venezuela','VE','Playa Medina (Venezuela)',1,1,0),(46949,0,147234,'Playa Pesquero','Cuba','CU','Playa Pesquero (Cuba)',1,1,0),(46950,0,147235,'Playa Tambor','Costa Rica','CR','Playa Tambor (Costa Rica)',1,1,0),(46951,21578,147236,'Pleasantville','United States of America','US','Pleasantville (United States of America)',1,1,0),(46952,0,147237,'Plein','Germany','DE','Plein (Germany)',1,1,0),(46953,21587,147238,'Plerin','France','FR','Plerin (France)',1,1,0),(46954,0,147239,'Pleumeur - Bodou','France','FR','Pleumeur - Bodou (France)',1,1,0),(46955,0,147240,'Pleystein','Germany','DE','Pleystein (Germany)',1,1,0),(46956,0,147241,'Ploce','Croatia','HR','Ploce (Croatia)',1,1,0),(46957,21600,147242,'Plochingen','Germany','DE','Plochingen (Germany)',1,1,0),(46958,21601,147243,'Plock','Poland','PL','Plock (Poland)',1,1,0),(46959,0,147244,'Ploeren','France','FR','Ploeren (France)',1,1,0),(46960,21606,147245,'Ploiesti','Romania','RO','Ploiesti (Romania)',1,1,0),(46961,0,147246,'Plomari','Greece','GR','Plomari (Greece)',1,1,0),(46962,0,147247,'Plouhinec','France','FR','Plouhinec (France)',1,1,0),(46963,21621,147248,'Plover','United States of America','US','Plover (United States of America)',1,1,0),(46964,0,147249,'Plutscheid','Germany','DE','Plutscheid (Germany)',1,1,0),(46965,0,147250,'Plymouth','United States of America','US','Plymouth (United States of America)',1,1,0),(46966,0,147251,'Plympton','United Kingdom','UK','Plympton (United Kingdom)',1,1,0),(46967,0,147252,'Pobierowo','Poland','PL','Pobierowo (Poland)',1,1,0),(46968,0,147253,'Pocatky','Czech Republic','CZ','Pocatky (Czech Republic)',1,1,0),(46969,0,147254,'Pochlarn','Austria','AT','Pochlarn (Austria)',1,1,0),(46970,0,147255,'Podaca','Croatia','HR','Podaca (Croatia)',1,1,0),(46971,0,147256,'Podporozhye','Russia','RU','Podporozhye (Russia)',1,1,0),(46972,0,147257,'Poggstall','Austria','AT','Poggstall (Austria)',1,1,0),(46973,0,147258,'Pohenegamook','Canada','CA','Pohenegamook (Canada)',1,1,0),(46974,21665,147259,'Poiana Brasov','Romania','RO','Poiana Brasov (Romania)',1,1,0),(46975,0,147260,'Pointe aux Canonniers','Mauritius','MU','Pointe aux Canonniers (Mauritius)',1,1,0),(46976,21671,147261,'Pointe Noire','Congo','CG','Pointe Noire (Congo)',1,1,0),(46977,21677,147262,'Pointe-Noire','Guadeloupe','GP','Pointe-Noire (Guadeloupe)',1,1,0),(46978,0,147263,'Poirino','Italy','IT','Poirino (Italy)',1,1,0),(46979,21701,147264,'Poligny','France','FR','Poligny (France)',1,1,0),(46980,21703,147265,'Polizzi Generosa','Italy','IT','Polizzi Generosa (Italy)',1,1,0),(46981,0,147266,'Polle','Germany','DE','Polle (Germany)',1,1,0),(46982,0,147267,'Polop de la Marina','Spain','ES','Polop de la Marina (Spain)',1,1,0),(46983,0,147268,'Polygyros','Greece','GR','Polygyros (Greece)',1,1,0),(46984,0,147269,'Pommard','France','FR','Pommard (France)',1,1,0),(46985,0,147270,'Pompeiana','Italy','IT','Pompeiana (Italy)',1,1,0),(46986,21747,147271,'Pongola','South Africa','ZA','Pongola (South Africa)',1,1,0),(46987,0,147272,'Ponorogo','Indonesia','ID','Ponorogo (Indonesia)',1,1,0),(46988,0,147273,'Pont Royal','France','FR','Pont Royal (France)',1,1,0),(46989,0,147274,'Pont St. Esprit','France','FR','Pont St. Esprit (France)',1,1,0),(46990,21752,147275,'Ponta Delgada','Portugal','PT','Ponta Delgada (Portugal)',1,1,0),(46991,0,147276,'Ponta Negra','Brazil','BR','Ponta Negra (Brazil)',1,1,0),(46992,21774,147277,'Pontelatone','Italy','IT','Pontelatone (Italy)',1,1,0),(46993,21775,147278,'Pontenure','Italy','IT','Pontenure (Italy)',1,1,0),(46994,0,147279,'Ponto Valentino','Switzerland','CH','Ponto Valentino (Switzerland)',1,1,0),(46995,0,147280,'Pontyclun','United Kingdom','UK','Pontyclun (United Kingdom)',1,1,0),(46996,0,147281,'Pontypool','United Kingdom','UK','Pontypool (United Kingdom)',1,1,0),(46997,0,147282,'Poo de Llanes','Spain','ES','Poo de Llanes (Spain)',1,1,0),(46998,0,147283,'Poolewe','United Kingdom','UK','Poolewe (United Kingdom)',1,1,0),(46999,21813,147284,'Poplar Bluff','United States of America','US','Poplar Bluff (United States of America)',1,1,0),(47000,0,147285,'Porec-Spadici','Croatia','HR','Porec-Spadici (Croatia)',1,1,0),(47001,21828,147286,'Pornic','France','FR','Pornic (France)',1,1,0),(47002,0,147287,'Port Alfred','South Africa','ZA','Port Alfred (South Africa)',1,1,0),(47003,32504,147288,'Port Aransas','United States of America','US','Port Aransas (United States of America)',1,1,0),(47004,32523,147289,'Port Colborne','Canada','CA','Port Colborne (Canada)',1,1,0),(47005,0,147290,'Port D\'Albert','France','FR','Port D\'Albert (France)',1,1,0),(47006,0,147291,'Port Glaud','Seychelles','SC','Port Glaud (Seychelles)',1,1,0),(47007,32555,147292,'Port Isabel','United States of America','US','Port Isabel (United States of America)',1,1,0),(47008,32560,147293,'Port Lincoln','Australia','AU','Port Lincoln (Australia)',1,1,0),(47009,0,147294,'Port O\'Connor','United States of America','US','Port O\'Connor (United States of America)',1,1,0),(47010,32571,147295,'Port Orchard','United States of America','US','Port Orchard (United States of America)',1,1,0),(47011,0,147296,'Port St. Lucie','United States of America','US','Port St. Lucie (United States of America)',1,1,0),(47012,21847,147297,'Port Sudan','Sudan','SD','Port Sudan (Sudan)',1,1,0),(47013,0,147298,'Port Washington','United States of America','US','Port Washington (United States of America)',1,1,0),(47014,32593,147299,'Port Williams','Canada','CA','Port Williams (Canada)',1,1,0),(47015,21849,147300,'Porta Westfalica','Germany','DE','Porta Westfalica (Germany)',1,1,0),(47016,21850,147301,'Portacomaro','Italy','IT','Portacomaro (Italy)',1,1,0),(47017,0,147302,'Portadown','United Kingdom','UK','Portadown (United Kingdom)',1,1,0),(47018,21857,147303,'Portalegre','Portugal','PT','Portalegre (Portugal)',1,1,0),(47019,0,147304,'Porte de Bagnolet','France','FR','Porte de Bagnolet (France)',1,1,0),(47020,0,147305,'Porthmadog','United Kingdom','UK','Porthmadog (United Kingdom)',1,1,0),(47021,0,147306,'Portinatx','Spain','ES','Portinatx (Spain)',1,1,0),(47022,0,147307,'Portiragnes Plage','France','FR','Portiragnes Plage (France)',1,1,0),(47023,0,147308,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(47024,0,147309,'Portland','United States of America','US','Portland (United States of America)',1,1,0),(47025,32600,147310,'Porto Cervo','Italy','IT','Porto Cervo (Italy)',1,1,0),(47026,32607,147311,'Porto Covo','Portugal','PT','Porto Covo (Portugal)',1,1,0),(47027,0,147312,'Porto d Ischia','Italy','IT','Porto d Ischia (Italy)',1,1,0),(47028,0,147313,'Porto de Sauipe','Brazil','BR','Porto de Sauipe (Brazil)',1,1,0),(47029,32619,147314,'Porto Recanati','Italy','IT','Porto Recanati (Italy)',1,1,0),(47030,32622,147315,'Porto Salvo','Portugal','PT','Porto Salvo (Portugal)',1,1,0),(47031,0,147316,'Porto Velho','Brazil','BR','Porto Velho (Brazil)',1,1,0),(47032,21908,147317,'Portopalo di Capo Passero','Italy','IT','Portopalo di Capo Passero (Italy)',1,1,0),(47033,0,147318,'Portorosa','Italy','IT','Portorosa (Italy)',1,1,0),(47034,0,147319,'Port-Sainte-Foy-et-Ponchapt','France','FR','Port-Sainte-Foy-et-Ponchapt (France)',1,1,0),(47035,0,147320,'Portsmouth','United Kingdom','UK','Portsmouth (United Kingdom)',1,1,0),(47036,21923,147321,'Portsmouth','Dominica','DM','Portsmouth (Dominica)',1,1,0),(47037,0,147322,'Portstewart','United Kingdom','UK','Portstewart (United Kingdom)',1,1,0),(47038,21934,147323,'Porvoo','Finland','FI','Porvoo (Finland)',1,1,0),(47039,21938,147324,'Posedarje','Croatia','HR','Posedarje (Croatia)',1,1,0),(47040,0,147325,'Poseidonia','Greece','GR','Poseidonia (Greece)',1,1,0),(47041,0,147326,'Post Falls','United States of America','US','Post Falls (United States of America)',1,1,0),(47042,21947,147327,'Poste de Flacq','Mauritius','MU','Poste de Flacq (Mauritius)',1,1,0),(47043,0,147328,'Poste Lafayette','Mauritius','MU','Poste Lafayette (Mauritius)',1,1,0),(47044,21949,147329,'Postmunster','Germany','DE','Postmunster (Germany)',1,1,0),(47045,0,147330,'Posto Rosso','Italy','IT','Posto Rosso (Italy)',1,1,0),(47046,0,147331,'Potchefstroom','South Africa','ZA','Potchefstroom (South Africa)',1,1,0),(47047,0,147332,'Potenza Picena','Italy','IT','Potenza Picena (Italy)',1,1,0),(47048,21960,147333,'Potos','Greece','GR','Potos (Greece)',1,1,0),(47049,21961,147334,'Potosi','United States of America','US','Potosi (United States of America)',1,1,0),(47050,0,147335,'Potschajiw','Ukraine','UA','Potschajiw (Ukraine)',1,1,0),(47051,0,147336,'Pottmes','Germany','DE','Pottmes (Germany)',1,1,0),(47052,0,147337,'Pouembout','New Caledonia','NC','Pouembout (New Caledonia)',1,1,0),(47053,21982,147338,'Poum','New Caledonia','NC','Poum (New Caledonia)',1,1,0),(47054,0,147339,'Pourcharesses','France','FR','Pourcharesses (France)',1,1,0),(47055,21992,147340,'Povoa de Lanhoso','Portugal','PT','Povoa de Lanhoso (Portugal)',1,1,0),(47056,0,147341,'Powell','United States of America','US','Powell (United States of America)',1,1,0),(47057,22006,147342,'Pozza di Fassa','Italy','IT','Pozza di Fassa (Italy)',1,1,0),(47058,22007,147343,'Pozzallo','Italy','IT','Pozzallo (Italy)',1,1,0),(47059,0,147344,'Prackenbach','Germany','DE','Prackenbach (Germany)',1,1,0),(47060,0,147345,'Pradines','France','FR','Pradines (France)',1,1,0),(47061,0,147346,'Praesto','Denmark','DK','Praesto (Denmark)',1,1,0),(47062,0,147347,'Praia das Minas','Brazil','BR','Praia das Minas (Brazil)',1,1,0),(47063,0,147348,'Praia El Agua','Venezuela','VE','Praia El Agua (Venezuela)',1,1,0),(47064,0,147349,'Precigne','France','FR','Precigne (France)',1,1,0),(47065,22058,147350,'Predazzo','Italy','IT','Predazzo (Italy)',1,1,0),(47066,0,147351,'Premanon','France','FR','Premanon (France)',1,1,0),(47067,0,147352,'Premeno','Italy','IT','Premeno (Italy)',1,1,0),(47068,22070,147353,'Premia de Dalt','Spain','ES','Premia de Dalt (Spain)',1,1,0),(47069,0,147354,'Premia de Mar','Spain','ES','Premia de Mar (Spain)',1,1,0),(47070,0,147355,'Prerow','Germany','DE','Prerow (Germany)',1,1,0),(47071,0,147356,'Prescott','United States of America','US','Prescott (United States of America)',1,1,0),(47072,22081,147357,'Presov','Slovakia','SK','Presov (Slovakia)',1,1,0),(47073,22082,147358,'Presque Isle','United States of America','US','Presque Isle (United States of America)',1,1,0),(47074,0,147359,'Pressbaum','Austria','AT','Pressbaum (Austria)',1,1,0),(47075,0,147360,'Prestatyn','United Kingdom','UK','Prestatyn (United Kingdom)',1,1,0),(47076,0,147361,'Presteigne','United Kingdom','UK','Presteigne (United Kingdom)',1,1,0),(47077,22091,147362,'Prestonsburg','United States of America','US','Prestonsburg (United States of America)',1,1,0),(47078,22105,147363,'Priddis','Canada','CA','Priddis (Canada)',1,1,0),(47079,0,147364,'Priekule','Latvia','LV','Priekule (Latvia)',1,1,0),(47080,0,147365,'Prigen','Indonesia','ID','Prigen (Indonesia)',1,1,0),(47081,0,147366,'Primavera do Leste','Brazil','BR','Primavera do Leste (Brazil)',1,1,0),(47082,22112,147367,'Primorsko','Bulgaria','BG','Primorsko (Bulgaria)',1,1,0),(47083,0,147368,'Prince Edward Island National Park','Canada','CA','Prince Edward Island National Park (Canada)',1,1,0),(47084,22118,147369,'Princeton','Canada','CA','Princeton (Canada)',1,1,0),(47085,0,147370,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(47086,0,147371,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(47087,0,147372,'Princeton','United States of America','US','Princeton (United States of America)',1,1,0),(47088,0,147373,'Prinos','Greece','GR','Prinos (Greece)',1,1,0),(47089,0,147374,'Priozersk','Russia','RU','Priozersk (Russia)',1,1,0),(47090,22128,147375,'Prizba','Croatia','HR','Prizba (Croatia)',1,1,0),(47091,0,147376,'Prkacini','Croatia','HR','Prkacini (Croatia)',1,1,0),(47092,22132,147377,'Procchio','Italy','IT','Procchio (Italy)',1,1,0),(47093,0,147378,'Prokuplje','Serbia','RS','Prokuplje (Serbia)',1,1,0),(47094,0,147379,'Promajna','Croatia','HR','Promajna (Croatia)',1,1,0),(47095,0,147380,'Protaras','Cyprus','CY','Protaras (Cyprus)',1,1,0),(47096,22157,147381,'Provo','United States of America','US','Provo (United States of America)',1,1,0),(47097,0,147382,'Prusice','Poland','PL','Prusice (Poland)',1,1,0),(47098,0,147383,'Przyszowice','Poland','PL','Przyszowice (Poland)',1,1,0),(47099,22168,147384,'Psakoudia','Greece','GR','Psakoudia (Greece)',1,1,0),(47100,0,147385,'Psalidi','Greece','GR','Psalidi (Greece)',1,1,0),(47101,0,147386,'Psathi','Greece','GR','Psathi (Greece)',1,1,0),(47102,22174,147387,'Ptolemaida','Greece','GR','Ptolemaida (Greece)',1,1,0),(47103,0,147388,'Puchersreuth','Germany','DE','Puchersreuth (Germany)',1,1,0),(47104,22182,147389,'Pucisca','Croatia','HR','Pucisca (Croatia)',1,1,0),(47105,0,147390,'Puebla de Lillo','Spain','ES','Puebla de Lillo (Spain)',1,1,0),(47106,22190,147391,'Pueblo','United States of America','US','Pueblo (United States of America)',1,1,0),(47107,32635,147392,'Puerto Banus','Spain','ES','Puerto Banus (Spain)',1,1,0),(47108,0,147393,'Puerto Maldonado','Peru','PE','Puerto Maldonado (Peru)',1,1,0),(47109,0,147394,'Puerto Montt','Chile','CL','Puerto Montt (Chile)',1,1,0),(47110,0,147395,'Puerto Morelos','Mexico','MX','Puerto Morelos (Mexico)',1,1,0),(47111,0,147396,'Puerto Piramides','Argentina','AR','Puerto Piramides (Argentina)',1,1,0),(47112,32650,147397,'Puerto Real','Spain','ES','Puerto Real (Spain)',1,1,0),(47113,32651,147398,'Puerto Rico','Spain','ES','Puerto Rico (Spain)',1,1,0),(47114,22209,147399,'Puertollano','Spain','ES','Puertollano (Spain)',1,1,0),(47115,0,147400,'Pugey','France','FR','Pugey (France)',1,1,0),(47116,0,147401,'Puhoi','New Zealand','NZ','Puhoi (New Zealand)',1,1,0),(47117,0,147402,'Puig D\' en Ross','Spain','ES','Puig D\' en Ross (Spain)',1,1,0),(47118,0,147403,'Pula Medulin','Croatia','HR','Pula Medulin (Croatia)',1,1,0),(47119,22231,147404,'Pulsano','Italy','IT','Pulsano (Italy)',1,1,0),(47120,22234,147405,'Punakaiki','New Zealand','NZ','Punakaiki (New Zealand)',1,1,0),(47121,22244,147406,'Punta Cana','Dominican Republic','DO','Punta Cana (Dominican Republic)',1,1,0),(47122,0,147407,'Punta Delgada','Argentina','AR','Punta Delgada (Argentina)',1,1,0),(47123,0,147408,'Puntagorda','Spain','ES','Puntagorda (Spain)',1,1,0),(47124,0,147409,'Pupuan','Indonesia','ID','Pupuan (Indonesia)',1,1,0),(47125,0,147411,'Pustijanci','Croatia','HR','Pustijanci (Croatia)',1,1,0),(47126,22286,147412,'Putrajaya','Malaysia','MY','Putrajaya (Malaysia)',1,1,0),(47127,22289,147413,'Putten','Netherlands','NL','Putten (Netherlands)',1,1,0),(47128,22302,147414,'Puymirol','France','FR','Puymirol (France)',1,1,0),(47129,0,147415,'Puy-Saint-Pierre','France','FR','Puy-Saint-Pierre (France)',1,1,0),(47130,22310,147416,'Pyhatunturi','Finland','FI','Pyhatunturi (Finland)',1,1,0),(47131,22321,147417,'Qawra','Malta','MT','Qawra (Malta)',1,1,0),(47132,0,147418,'Qax','Azerbaijan','AZ','Qax (Azerbaijan)',1,1,0),(47133,0,147419,'Qiandaohu','China','CN','Qiandaohu (China)',1,1,0),(47134,22336,147420,'Qionghai','China','CN','Qionghai (China)',1,1,0),(47135,0,147421,'Quakenbruck','Germany','DE','Quakenbruck (Germany)',1,1,0),(47136,0,147422,'Quartu Sant\'Elena','Italy','IT','Quartu Sant\'Elena (Italy)',1,1,0),(47137,0,147423,'Quebec City','Canada','CA','Quebec City (Canada)',1,1,0),(47138,22368,147424,'Quedlinburg','Germany','DE','Quedlinburg (Germany)',1,1,0),(47139,0,147425,'Queenstown','United States of America','US','Queenstown (United States of America)',1,1,0),(47140,0,147426,'Queidersbach','Germany','DE','Queidersbach (Germany)',1,1,0),(47141,22383,147427,'Queralbs','Spain','ES','Queralbs (Spain)',1,1,0),(47142,0,147428,'Quercianella','Italy','IT','Quercianella (Italy)',1,1,0),(47143,22387,147429,'Questembert','France','FR','Questembert (France)',1,1,0),(47144,22394,147430,'Qufu','China','CN','Qufu (China)',1,1,0),(47145,0,147431,'Quiberville','France','FR','Quiberville (France)',1,1,0),(47146,0,147432,'Quierschied','Germany','DE','Quierschied (Germany)',1,1,0),(47147,0,147433,'Quincy','United States of America','US','Quincy (United States of America)',1,1,0),(47148,0,147434,'Quintes','Spain','ES','Quintes (Spain)',1,1,0),(47149,22444,147435,'Rabade','Spain','ES','Rabade (Spain)',1,1,0),(47150,0,147436,'Rabenkirchen-Fauluck','Germany','DE','Rabenkirchen-Fauluck (Germany)',1,1,0),(47151,0,147437,'Racha Yai Island','Thailand','TH','Racha Yai Island (Thailand)',1,1,0),(47152,0,147438,'Raclawice','Poland','PL','Raclawice (Poland)',1,1,0),(47153,0,147439,'Radnage','United Kingdom','UK','Radnage (United Kingdom)',1,1,0),(47154,22486,147440,'Rafina','Greece','GR','Rafina (Greece)',1,1,0),(47155,0,147441,'Rahnsdorf','Germany','DE','Rahnsdorf (Germany)',1,1,0),(47156,0,147443,'Rainau','Germany','DE','Rainau (Germany)',1,1,0),(47157,22507,147444,'Rainsville','United States of America','US','Rainsville (United States of America)',1,1,0),(47158,0,147445,'Raisting','Germany','DE','Raisting (Germany)',1,1,0),(47159,0,147446,'Rakovci','Croatia','HR','Rakovci (Croatia)',1,1,0),(47160,22522,147447,'Rakvere','Estonia','EE','Rakvere (Estonia)',1,1,0),(47161,22528,147448,'Ramallo','Argentina','AR','Ramallo (Argentina)',1,1,0),(47162,22531,147449,'Rambouillet','France','FR','Rambouillet (France)',1,1,0),(47163,0,147450,'Ramenskoye','Russia','RU','Ramenskoye (Russia)',1,1,0),(47164,0,147451,'Rammersweier','Germany','DE','Rammersweier (Germany)',1,1,0),(47165,0,147452,'Rancho Santa Fe','United States of America','US','Rancho Santa Fe (United States of America)',1,1,0),(47166,22575,147453,'Ranes','France','FR','Ranes (France)',1,1,0),(47167,0,147454,'Ranger','United States of America','US','Ranger (United States of America)',1,1,0),(47168,0,147455,'Rangiora','New Zealand','NZ','Rangiora (New Zealand)',1,1,0),(47169,22589,147456,'Ransbach-Baumbach','Germany','DE','Ransbach-Baumbach (Germany)',1,1,0),(47170,0,147457,'Rantasalmi','Finland','FI','Rantasalmi (Finland)',1,1,0),(47171,0,147458,'Raon-l\'Etape','France','FR','Raon-l\'Etape (France)',1,1,0),(47172,22597,147459,'Rapallo','Italy','IT','Rapallo (Italy)',1,1,0),(47173,0,147460,'Rapoula do Coa','Portugal','PT','Rapoula do Coa (Portugal)',1,1,0),(47174,0,147461,'Raray','France','FR','Raray (France)',1,1,0),(47175,0,147462,'Raron','Switzerland','CH','Raron (Switzerland)',1,1,0),(47176,0,147463,'Ras Nasrani','Egypt','EG','Ras Nasrani (Egypt)',1,1,0),(47177,0,147464,'Ras Sudr','Egypt','EG','Ras Sudr (Egypt)',1,1,0),(47178,0,147465,'Rasdorf','Germany','DE','Rasdorf (Germany)',1,1,0),(47179,0,147466,'Rasteau','France','FR','Rasteau (France)',1,1,0),(47180,22611,147467,'Ratbor','Czech Republic','CZ','Ratbor (Czech Republic)',1,1,0),(47181,0,147468,'Ratchaburi','Thailand','TH','Ratchaburi (Thailand)',1,1,0),(47182,0,147469,'Ratekau','Germany','DE','Ratekau (Germany)',1,1,0),(47183,22614,147470,'Rathkeale','Ireland','IE','Rathkeale (Ireland)',1,1,0),(47184,0,147471,'Rathvilly','Ireland','IE','Rathvilly (Ireland)',1,1,0),(47185,22623,147472,'Rauland','Norway','NO','Rauland (Norway)',1,1,0),(47186,0,147473,'Rava-ruska','Ukraine','UA','Rava-ruska (Ukraine)',1,1,0),(47187,0,147474,'Ravni','Croatia','HR','Ravni (Croatia)',1,1,0),(47188,22662,147475,'Realmont','France','FR','Realmont (France)',1,1,0),(47189,22668,147476,'Recanati','Italy','IT','Recanati (Italy)',1,1,0),(47190,22670,147477,'Recess','Ireland','IE','Recess (Ireland)',1,1,0),(47191,0,147478,'Recoubeau-Jansac','France','FR','Recoubeau-Jansac (France)',1,1,0),(47192,22676,147479,'Recques-sur-Hem','France','FR','Recques-sur-Hem (France)',1,1,0),(47193,32677,147480,'Red River','United States of America','US','Red River (United States of America)',1,1,0),(47194,22687,147481,'Redcliffe','Australia','AU','Redcliffe (Australia)',1,1,0),(47195,22706,147482,'Redondo Beach','United States of America','US','Redondo Beach (United States of America)',1,1,0),(47196,0,147483,'Redruth','United Kingdom','UK','Redruth (United Kingdom)',1,1,0),(47197,0,147484,'Regen','Germany','DE','Regen (Germany)',1,1,0),(47198,0,147485,'Registro','Brazil','BR','Registro (Brazil)',1,1,0),(47199,0,147486,'Regusse','France','FR','Regusse (France)',1,1,0),(47200,0,147487,'Reichenbach im Vogtland','Germany','DE','Reichenbach im Vogtland (Germany)',1,1,0),(47201,0,147488,'Reillanne','France','FR','Reillanne (France)',1,1,0),(47202,0,147489,'Reimerath','Germany','DE','Reimerath (Germany)',1,1,0),(47203,22748,147490,'Reims','France','FR','Reims (France)',1,1,0),(47204,0,147491,'Reith','Austria','AT','Reith (Austria)',1,1,0),(47205,0,147492,'Rekowo','Poland','PL','Rekowo (Poland)',1,1,0),(47206,22766,147493,'Remshalden','Germany','DE','Remshalden (Germany)',1,1,0),(47207,0,147494,'Rennebu','Norway','NO','Rennebu (Norway)',1,1,0),(47208,22800,147495,'Reseda','United States of America','US','Reseda (United States of America)',1,1,0),(47209,22804,147496,'Resita','Romania','RO','Resita (Romania)',1,1,0),(47210,0,147497,'Retamar','Spain','ES','Retamar (Spain)',1,1,0),(47211,0,147498,'Rettert','Germany','DE','Rettert (Germany)',1,1,0),(47212,22825,147499,'Revelstoke','Canada','CA','Revelstoke (Canada)',1,1,0),(47213,0,147500,'Reville','France','FR','Reville (France)',1,1,0),(47214,22844,147502,'Rezekne','Latvia','LV','Rezekne (Latvia)',1,1,0),(47215,22848,147503,'Rheden','Netherlands','NL','Rheden (Netherlands)',1,1,0),(47216,0,147504,'Rheinstetten','Germany','DE','Rheinstetten (Germany)',1,1,0),(47217,0,147505,'Rhodes','Greece','GR','Rhodes (Greece)',1,1,0),(47218,22887,147506,'Ribadeo','Spain','ES','Ribadeo (Spain)',1,1,0),(47219,0,147507,'Ribeira Brava / Sao Nicolau','Cape Verde','CV','Ribeira Brava / Sao Nicolau (Cape Verde)',1,1,0),(47220,22898,147508,'Ribes de Freser','Spain','ES','Ribes de Freser (Spain)',1,1,0),(47221,0,147509,'Ribnitz-Damgarten','Germany','DE','Ribnitz-Damgarten (Germany)',1,1,0),(47222,22900,147510,'Ricadi','Italy','IT','Ricadi (Italy)',1,1,0),(47223,22907,147511,'Richburg','United States of America','US','Richburg (United States of America)',1,1,0),(47224,22908,147512,'Richelieu','France','FR','Richelieu (France)',1,1,0),(47225,0,147513,'Richland','United States of America','US','Richland (United States of America)',1,1,0),(47226,0,147514,'Richmond Hill','Canada','CA','Richmond Hill (Canada)',1,1,0),(47227,22923,147515,'Ridgedale','United States of America','US','Ridgedale (United States of America)',1,1,0),(47228,0,147516,'Ridgetown','Canada','CA','Ridgetown (Canada)',1,1,0),(47229,32698,147517,'Rieden','Germany','DE','Rieden (Germany)',1,1,0),(47230,22931,147518,'Riederalp','Switzerland','CH','Riederalp (Switzerland)',1,1,0),(47231,0,147519,'Rielasingen-Worblingen','Germany','DE','Rielasingen-Worblingen (Germany)',1,1,0),(47232,0,147520,'Rieseby','Germany','DE','Rieseby (Germany)',1,1,0),(47233,0,147521,'Rietschen','Germany','DE','Rietschen (Germany)',1,1,0),(47234,22939,147522,'Rietz','Austria','AT','Rietz (Austria)',1,1,0),(47235,0,147523,'Riffian','Italy','IT','Riffian (Italy)',1,1,0),(47236,22947,147524,'Rigby','United States of America','US','Rigby (United States of America)',1,1,0),(47237,0,147525,'Ringstead','United Kingdom','UK','Ringstead (United Kingdom)',1,1,0),(47238,32717,147526,'Rio Maior','Portugal','PT','Rio Maior (Portugal)',1,1,0),(47239,0,147527,'Rio Mayo','Argentina','AR','Rio Mayo (Argentina)',1,1,0),(47240,23012,147528,'Ripollet','Spain','ES','Ripollet (Spain)',1,1,0),(47241,0,147529,'Ripon','United Kingdom','UK','Ripon (United Kingdom)',1,1,0),(47242,0,147530,'Ristiina','Finland','FI','Ristiina (Finland)',1,1,0),(47243,0,147531,'Riva del Garda','Italy','IT','Riva del Garda (Italy)',1,1,0),(47244,0,147532,'Riva Valdobbia','Italy','IT','Riva Valdobbia (Italy)',1,1,0),(47245,0,147533,'Riversaltes','France','FR','Riversaltes (France)',1,1,0),(47246,0,147534,'Riverside','United States of America','US','Riverside (United States of America)',1,1,0),(47247,0,147535,'Riwne','Ukraine','UA','Riwne (Ukraine)',1,1,0),(47248,23057,147536,'Riyadh','Saudi Arabia','SA','Riyadh (Saudi Arabia)',1,1,0),(47249,23070,147537,'Robertson','Australia','AU','Robertson (Australia)',1,1,0),(47250,32735,147538,'Rocca Priora','Italy','IT','Rocca Priora (Italy)',1,1,0),(47251,23099,147539,'Rochecorbon','France','FR','Rochecorbon (France)',1,1,0),(47252,23101,147540,'Rochefort','France','FR','Rochefort (France)',1,1,0),(47253,0,147541,'Rochefort du Gard','France','FR','Rochefort du Gard (France)',1,1,0),(47254,23104,147542,'Rochegude','France','FR','Rochegude (France)',1,1,0),(47255,23119,147543,'Rockhampton','Australia','AU','Rockhampton (Australia)',1,1,0),(47256,23125,147544,'Rocklin','United States of America','US','Rocklin (United States of America)',1,1,0),(47257,23128,147545,'Rockwall','United States of America','US','Rockwall (United States of America)',1,1,0),(47258,0,147546,'Rodalquilar','Spain','ES','Rodalquilar (Spain)',1,1,0),(47259,23134,147547,'Rodby','Denmark','DK','Rodby (Denmark)',1,1,0),(47260,0,147548,'Rodhus','Denmark','DK','Rodhus (Denmark)',1,1,0),(47261,0,147549,'Roebourne','Australia','AU','Roebourne (Australia)',1,1,0),(47262,23154,147550,'Roeser','Luxembourg','LU','Roeser (Luxembourg)',1,1,0),(47263,0,147551,'Roganstown','Ireland','IE','Roganstown (Ireland)',1,1,0),(47264,23162,147552,'Roggenburg','Germany','DE','Roggenburg (Germany)',1,1,0),(47265,23166,147553,'Rogny-les-Sept-Ecluses','France','FR','Rogny-les-Sept-Ecluses (France)',1,1,0),(47266,0,147555,'Rohrnbach','Germany','DE','Rohrnbach (Germany)',1,1,0),(47267,0,147556,'Rokytnice nad Jizerou','Czech Republic','CZ','Rokytnice nad Jizerou (Czech Republic)',1,1,0),(47268,0,147557,'Rolim de Moura','Brazil','BR','Rolim de Moura (Brazil)',1,1,0),(47269,23185,147558,'Rolle','Switzerland','CH','Rolle (Switzerland)',1,1,0),(47270,23187,147559,'Rolleboise','France','FR','Rolleboise (France)',1,1,0),(47271,23199,147560,'Romanshorn','Switzerland','CH','Romanshorn (Switzerland)',1,1,0),(47272,0,147561,'Romeno','Italy','IT','Romeno (Italy)',1,1,0),(47273,0,147562,'Rompin','Malaysia','MY','Rompin (Malaysia)',1,1,0),(47274,23213,147563,'Ronan','United States of America','US','Ronan (United States of America)',1,1,0),(47275,23217,147564,'Ronchin','France','FR','Ronchin (France)',1,1,0),(47276,23218,147565,'Ronciglione','Italy','IT','Ronciglione (Italy)',1,1,0),(47277,0,147566,'Roosky','Ireland','IE','Roosky (Ireland)',1,1,0),(47278,23280,147567,'Rosenheim','Germany','DE','Rosenheim (Germany)',1,1,0),(47279,23281,147568,'Rosenthal','Germany','DE','Rosenthal (Germany)',1,1,0),(47280,0,147569,'Roseville','United States of America','US','Roseville (United States of America)',1,1,0),(47281,0,147570,'Rothbury','United Kingdom','UK','Rothbury (United Kingdom)',1,1,0),(47282,0,147571,'Roudnice nad Labem','Czech Republic','CZ','Roudnice nad Labem (Czech Republic)',1,1,0),(47283,0,147572,'Rouffignac-Saint-Cernin-de-Reilhac','France','FR','Rouffignac-Saint-Cernin-de-Reilhac (France)',1,1,0),(47284,0,147573,'Rougemont VD','Switzerland','CH','Rougemont VD (Switzerland)',1,1,0),(47285,0,147574,'Round Rock','United States of America','US','Round Rock (United States of America)',1,1,0),(47286,0,147575,'Roundwood','Ireland','IE','Roundwood (Ireland)',1,1,0),(47287,0,147576,'Roussillon','France','FR','Roussillon (France)',1,1,0),(47288,0,147577,'Rouvray','France','FR','Rouvray (France)',1,1,0),(47289,0,147578,'Royston',NULL,NULL,'Royston ()',1,1,0),(47290,0,147579,'Ruberts','Spain','ES','Ruberts (Spain)',1,1,0),(47291,0,147580,'Rubondo Island National Park','Tanzania','TZ','Rubondo Island National Park (Tanzania)',1,1,0),(47292,23421,147581,'Ruckersville','United States of America','US','Ruckersville (United States of America)',1,1,0),(47293,0,147582,'Rudong','China','CN','Rudong (China)',1,1,0),(47294,0,147583,'Ruhstorf an der Rott','Germany','DE','Ruhstorf an der Rott (Germany)',1,1,0),(47295,0,147584,'Ruinen','Netherlands','NL','Ruinen (Netherlands)',1,1,0),(47296,0,147585,'Rum','Austria','AT','Rum (Austria)',1,1,0),(47297,0,147586,'Rumbeke','Belgium','BE','Rumbeke (Belgium)',1,1,0),(47298,23467,147587,'Runaway Bay','Jamaica','JM','Runaway Bay (Jamaica)',1,1,0),(47299,0,147588,'Ruovesi','Finland','FI','Ruovesi (Finland)',1,1,0),(47300,23480,147589,'Ruschlikon','Switzerland','CH','Ruschlikon (Switzerland)',1,1,0),(47301,0,147590,'Russalka','Bulgaria','BG','Russalka (Bulgaria)',1,1,0),(47302,23489,147591,'Russell','United States of America','US','Russell (United States of America)',1,1,0),(47303,0,147592,'Ruther Glen','United States of America','US','Ruther Glen (United States of America)',1,1,0),(47304,0,147593,'Rybniste','Czech Republic','CZ','Rybniste (Czech Republic)',1,1,0),(47305,0,147594,'Rysstad','Norway','NO','Rysstad (Norway)',1,1,0),(47306,0,147595,'Sa Cabaneta','Spain','ES','Sa Cabaneta (Spain)',1,1,0),(47307,0,147596,'Sa Riera','Spain','ES','Sa Riera (Spain)',1,1,0),(47308,0,147597,'Saadani-Nationalpark','Tanzania','TZ','Saadani-Nationalpark (Tanzania)',1,1,0),(47309,23544,147598,'Saalfeld','Germany','DE','Saalfeld (Germany)',1,1,0),(47310,0,147599,'Saas-Balen','Switzerland','CH','Saas-Balen (Switzerland)',1,1,0),(47311,23570,147600,'Sabiote','Spain','ES','Sabiote (Spain)',1,1,0),(47312,23579,147601,'Sacele','Romania','RO','Sacele (Romania)',1,1,0),(47313,0,147602,'Sachrang','Germany','DE','Sachrang (Germany)',1,1,0),(47314,0,147603,'Sacre-Coeur','Canada','CA','Sacre-Coeur (Canada)',1,1,0),(47315,0,147604,'Saerbeck','Germany','DE','Saerbeck (Germany)',1,1,0),(47316,23601,147605,'Safi','Morocco','MA','Safi (Morocco)',1,1,0),(47317,23605,147606,'Sagamihara','Japan','JP','Sagamihara (Japan)',1,1,0),(47318,0,147608,'Sai Yok National Park','Thailand','TH','Sai Yok National Park (Thailand)',1,1,0),(47319,23625,147609,'Saidu Sharif','Pakistan','PK','Saidu Sharif (Pakistan)',1,1,0),(47320,0,147610,'Saint Andre de Valborgne','France','FR','Saint Andre de Valborgne (France)',1,1,0),(47321,0,147611,'Saint Anthony','United States of America','US','Saint Anthony (United States of America)',1,1,0),(47322,0,147612,'Saint Eloi','France','FR','Saint Eloi (France)',1,1,0),(47323,0,147613,'Saint George','United States of America','US','Saint George (United States of America)',1,1,0),(47324,32820,147614,'Saint Hyacinthe','Canada','CA','Saint Hyacinthe (Canada)',1,1,0),(47325,0,147615,'Saint Martin','United Kingdom','UK','Saint Martin (United Kingdom)',1,1,0),(47326,0,147616,'Saint Marys','United States of America','US','Saint Marys (United States of America)',1,1,0),(47327,0,147617,'Saint Philibert','France','FR','Saint Philibert (France)',1,1,0),(47328,0,147618,'Saint Philippe','Reunion','RE','Saint Philippe (Reunion)',1,1,0),(47329,32860,147619,'Saint Pol de Leon','France','FR','Saint Pol de Leon (France)',1,1,0),(47330,32875,147620,'Saint Tropez','France','FR','Saint Tropez (France)',1,1,0),(47331,0,147621,'Saint-Amand-De-Coly','France','FR','Saint-Amand-De-Coly (France)',1,1,0),(47332,23650,147622,'Saint-Amand-les-Eaux','France','FR','Saint-Amand-les-Eaux (France)',1,1,0),(47333,0,147623,'Saint-Amarin','France','FR','Saint-Amarin (France)',1,1,0),(47334,0,147624,'Saint-Arcons-de-Barges','France','FR','Saint-Arcons-de-Barges (France)',1,1,0),(47335,0,147625,'Saint-Augustin','France','FR','Saint-Augustin (France)',1,1,0),(47336,23666,147626,'Saint-Aunes','France','FR','Saint-Aunes (France)',1,1,0),(47337,0,147627,'Saint-Christol-les-Ales','France','FR','Saint-Christol-les-Ales (France)',1,1,0),(47338,0,147628,'Saint-Denis-d\'Anjou','France','FR','Saint-Denis-d\'Anjou (France)',1,1,0),(47339,0,147629,'Saint-Donat','France','FR','Saint-Donat (France)',1,1,0),(47340,0,147630,'Sainte Adele','Canada','CA','Sainte Adele (Canada)',1,1,0),(47341,0,147631,'Sainte Anne Island','Seychelles','SC','Sainte Anne Island (Seychelles)',1,1,0),(47342,23715,147632,'Sainte-Anastasie','France','FR','Sainte-Anastasie (France)',1,1,0),(47343,23728,147633,'Sainte-Foy-Tarentaise','France','FR','Sainte-Foy-Tarentaise (France)',1,1,0),(47344,23732,147634,'Sainte-Hermine','France','FR','Sainte-Hermine (France)',1,1,0),(47345,0,147635,'Sainte-Marie','Reunion','RE','Sainte-Marie (Reunion)',1,1,0),(47346,0,147636,'Saint-Etienne-de-Baigorry','France','FR','Saint-Etienne-de-Baigorry (France)',1,1,0),(47347,0,147637,'Saint-Etienne-Vallee-Francaise','France','FR','Saint-Etienne-Vallee-Francaise (France)',1,1,0),(47348,0,147638,'Saint-Fulgent','France','FR','Saint-Fulgent (France)',1,1,0),(47349,23766,147639,'Saint-Genis-Laval','France','FR','Saint-Genis-Laval (France)',1,1,0),(47350,0,147640,'Saint-Georges-de-Mons','France','FR','Saint-Georges-de-Mons (France)',1,1,0),(47351,0,147641,'Saint-Hippolyte (Doubs)','France','FR','Saint-Hippolyte (Doubs) (France)',1,1,0),(47352,0,147642,'Saint-Honore-les-Bains','France','FR','Saint-Honore-les-Bains (France)',1,1,0),(47353,23806,147643,'Saint-Jean-Port-Joli','Canada','CA','Saint-Jean-Port-Joli (Canada)',1,1,0),(47354,0,147644,'Saint-Julien-de-Jonzy','France','FR','Saint-Julien-de-Jonzy (France)',1,1,0),(47355,0,147645,'Saint-Julien-des-Landes','France','FR','Saint-Julien-des-Landes (France)',1,1,0),(47356,0,147646,'Saint-Julien-du-Verdon','France','FR','Saint-Julien-du-Verdon (France)',1,1,0),(47357,0,147647,'Saint-Leonard','Switzerland','CH','Saint-Leonard (Switzerland)',1,1,0),(47358,0,147648,'Saint-Marcel-d\'Ardeche','France','FR','Saint-Marcel-d\'Ardeche (France)',1,1,0),(47359,23851,147649,'Saint-Martin-de-Belleville','France','FR','Saint-Martin-de-Belleville (France)',1,1,0),(47360,23869,147650,'Saint-Nicolas','Canada','CA','Saint-Nicolas (Canada)',1,1,0),(47361,0,147651,'Saint-Palais-de-Phiolin','France','FR','Saint-Palais-de-Phiolin (France)',1,1,0),(47362,23883,147652,'Saint-Paterne','France','FR','Saint-Paterne (France)',1,1,0),(47363,23885,147653,'Saint-Paul-de-Fenouillet','France','FR','Saint-Paul-de-Fenouillet (France)',1,1,0),(47364,23887,147654,'Saint-Paul-en-Foret','France','FR','Saint-Paul-en-Foret (France)',1,1,0),(47365,0,147655,'Saint-Pierre-d\'Albigny','France','FR','Saint-Pierre-d\'Albigny (France)',1,1,0),(47366,0,147656,'Saint-Pol-sur-Ternoise','France','FR','Saint-Pol-sur-Ternoise (France)',1,1,0),(47367,0,147657,'Saint-Pourcain-sur-Sioule','France','FR','Saint-Pourcain-sur-Sioule (France)',1,1,0),(47368,23910,147658,'Saint-Prix','France','FR','Saint-Prix (France)',1,1,0),(47369,0,147659,'Saint-Rambert-d\'Albon','France','FR','Saint-Rambert-d\'Albon (France)',1,1,0),(47370,0,147660,'Saint-Robert','France','FR','Saint-Robert (France)',1,1,0),(47371,23924,147661,'Saint-Saturnin','France','FR','Saint-Saturnin (France)',1,1,0),(47372,0,147662,'Saint-Saturnin-les-Avignon','France','FR','Saint-Saturnin-les-Avignon (France)',1,1,0),(47373,0,147663,'Saints-Geosmes','France','FR','Saints-Geosmes (France)',1,1,0),(47374,0,147664,'Sairee Beach','Thailand','TH','Sairee Beach (Thailand)',1,1,0),(47375,23969,147665,'Salardu','Spain','ES','Salardu (Spain)',1,1,0),(47376,0,147666,'Saldenburg','Germany','DE','Saldenburg (Germany)',1,1,0),(47377,0,147667,'Salema','Portugal','PT','Salema (Portugal)',1,1,0),(47378,0,147668,'Salisbury','United States of America','US','Salisbury (United States of America)',1,1,0),(47379,0,147669,'Saliste','Romania','RO','Saliste (Romania)',1,1,0),(47380,0,147670,'Salles','France','FR','Salles (France)',1,1,0),(47381,0,147671,'Sallgast','Germany','DE','Sallgast (Germany)',1,1,0),(47382,0,147672,'Sallneck','Germany','DE','Sallneck (Germany)',1,1,0),(47383,24018,147673,'Salmon','United States of America','US','Salmon (United States of America)',1,1,0),(47384,0,147674,'Salo','Italy','IT','Salo (Italy)',1,1,0),(47385,0,147675,'Salobre','Spain','ES','Salobre (Spain)',1,1,0),(47386,24043,147676,'Salto Del Laja','Chile','CL','Salto Del Laja (Chile)',1,1,0),(47387,24053,147677,'Saly','Senegal','SN','Saly (Senegal)',1,1,0),(47388,0,147678,'Sambuca di Sicilia','Italy','IT','Sambuca di Sicilia (Italy)',1,1,0),(47389,24073,147679,'Samnaun','Switzerland','CH','Samnaun (Switzerland)',1,1,0),(47390,0,147680,'Samokow','Bulgaria','BG','Samokow (Bulgaria)',1,1,0),(47391,0,147681,'Samut Songkhram','Thailand','TH','Samut Songkhram (Thailand)',1,1,0),(47392,0,147682,'San Asensio','Spain','ES','San Asensio (Spain)',1,1,0),(47393,0,147683,'San Bartolome de Tirajana','Spain','ES','San Bartolome de Tirajana (Spain)',1,1,0),(47394,32926,147684,'San Benedetto del Tronto','Italy','IT','San Benedetto del Tronto (Italy)',1,1,0),(47395,0,147685,'San Cassiano in Badia','Italy','IT','San Cassiano in Badia (Italy)',1,1,0),(47396,0,147686,'San Ciprian de Vinas','Spain','ES','San Ciprian de Vinas (Spain)',1,1,0),(47397,0,147687,'San Cosme de Barreiros','Spain','ES','San Cosme de Barreiros (Spain)',1,1,0),(47398,32964,147688,'San Diego','United States of America','US','San Diego (United States of America)',1,1,0),(47399,32975,147689,'San Esteban del Valle','Spain','ES','San Esteban del Valle (Spain)',1,1,0),(47400,0,147690,'San George','Greece','GR','San George (Greece)',1,1,0),(47401,0,147691,'San Giorgio di Gioiosa Marea','Italy','IT','San Giorgio di Gioiosa Marea (Italy)',1,1,0),(47402,33007,147692,'San Giovanni a Piro','Italy','IT','San Giovanni a Piro (Italy)',1,1,0),(47403,0,147693,'San Ignacio','Mexico','MX','San Ignacio (Mexico)',1,1,0),(47404,0,147694,'San Jordi','Spain','ES','San Jordi (Spain)',1,1,0),(47405,33033,147695,'San Jose','United States of America','US','San Jose (United States of America)',1,1,0),(47406,33038,147696,'San Jose del Cabo','Mexico','MX','San Jose del Cabo (Mexico)',1,1,0),(47407,33041,147697,'San Juan','Argentina','AR','San Juan (Argentina)',1,1,0),(47408,33053,147698,'San Juan del Rio','Mexico','MX','San Juan del Rio (Mexico)',1,1,0),(47409,24104,147699,'San Juan del Sur','Nicaragua','NI','San Juan del Sur (Nicaragua)',1,1,0),(47410,0,147700,'San Kamphaeng','Thailand','TH','San Kamphaeng (Thailand)',1,1,0),(47411,33063,147701,'San Leonardo de Yague','Spain','ES','San Leonardo de Yague (Spain)',1,1,0),(47412,0,147702,'San Leone','Italy','IT','San Leone (Italy)',1,1,0),(47413,33073,147703,'San Luis','Argentina','AR','San Luis (Argentina)',1,1,0),(47414,0,147704,'San Marcos','United States of America','US','San Marcos (United States of America)',1,1,0),(47415,0,147705,'San Martin (Mendoza)','Argentina','AR','San Martin (Mendoza) (Argentina)',1,1,0),(47416,0,147706,'San Martin de Trevejo','Spain','ES','San Martin de Trevejo (Spain)',1,1,0),(47417,0,147707,'San Martin de Veri','Spain','ES','San Martin de Veri (Spain)',1,1,0),(47418,33091,147708,'San Martino in Campo','Italy','IT','San Martino in Campo (Italy)',1,1,0),(47419,0,147709,'San Michele di Moriano','Italy','IT','San Michele di Moriano (Italy)',1,1,0),(47420,0,147710,'San Miguel','Paraguay','PY','San Miguel (Paraguay)',1,1,0),(47421,33110,147711,'San Nicola Arcella','Italy','IT','San Nicola Arcella (Italy)',1,1,0),(47422,33150,147712,'San Rafael','Mexico','MX','San Rafael (Mexico)',1,1,0),(47423,0,147713,'San Salvador','El Salvador','SV','San Salvador (El Salvador)',1,1,0),(47424,0,147714,'San Salvo Marina','Italy','IT','San Salvo Marina (Italy)',1,1,0),(47425,0,147715,'San Savino di Ripatransone','Italy','IT','San Savino di Ripatransone (Italy)',1,1,0),(47426,33160,147716,'San Sebastian','Spain','ES','San Sebastian (Spain)',1,1,0),(47427,33172,147717,'San Teodoro','Italy','IT','San Teodoro (Italy)',1,1,0),(47428,0,147718,'Sanctuary Lakes','Australia','AU','Sanctuary Lakes (Australia)',1,1,0),(47429,24135,147719,'Sandersville','United States of America','US','Sandersville (United States of America)',1,1,0),(47430,24157,147720,'Sandviken','Sweden','SE','Sandviken (Sweden)',1,1,0),(47431,0,147721,'Sangkhaburi','Thailand','TH','Sangkhaburi (Thailand)',1,1,0),(47432,0,147722,'Sankt Jakob in Haus','Austria','AT','Sankt Jakob in Haus (Austria)',1,1,0),(47433,0,147723,'Sankt Leonhard','Austria','AT','Sankt Leonhard (Austria)',1,1,0),(47434,0,147724,'Sankt Lorenzen im Lesachtal','Austria','AT','Sankt Lorenzen im Lesachtal (Austria)',1,1,0),(47435,0,147725,'Sankt Margarethen (Holstein)','Germany','DE','Sankt Margarethen (Holstein) (Germany)',1,1,0),(47436,0,147726,'Sanlucar de Barrameda','Spain','ES','Sanlucar de Barrameda (Spain)',1,1,0),(47437,0,147727,'Sanpetru','Romania','RO','Sanpetru (Romania)',1,1,0),(47438,0,147728,'Sansenhof','Germany','DE','Sansenhof (Germany)',1,1,0),(47439,33193,147729,'Sant Adria de Besos','Spain','ES','Sant Adria de Besos (Spain)',1,1,0),(47440,0,147730,'Sant\' Agnello-Sorrent','Italy','IT','Sant\' Agnello-Sorrent (Italy)',1,1,0),(47441,33196,147731,'Sant Andreu de Llavaneres','Spain','ES','Sant Andreu de Llavaneres (Spain)',1,1,0),(47442,33232,147732,'Sant Quirze de Besora','Spain','ES','Sant Quirze de Besora (Spain)',1,1,0),(47443,0,147733,'Santa Barbara','Spain','ES','Santa Barbara (Spain)',1,1,0),(47444,0,147734,'Santa Clara','United States of America','US','Santa Clara (United States of America)',1,1,0),(47445,0,147735,'Santa Cruz de Bezana','Spain','ES','Santa Cruz de Bezana (Spain)',1,1,0),(47446,33261,147736,'Santa Cruz de la Seros','Spain','ES','Santa Cruz de la Seros (Spain)',1,1,0),(47447,0,147737,'Santa Elena','Spain','ES','Santa Elena (Spain)',1,1,0),(47448,33268,147738,'Santa Fe','Spain','ES','Santa Fe (Spain)',1,1,0),(47449,0,147739,'Santa Giulia','France','FR','Santa Giulia (France)',1,1,0),(47450,0,147740,'Santa Ines','Spain','ES','Santa Ines (Spain)',1,1,0),(47451,0,147741,'Santa Maria','Italy','IT','Santa Maria (Italy)',1,1,0),(47452,0,147742,'Santa Maria de Guia','Spain','ES','Santa Maria de Guia (Spain)',1,1,0),(47453,0,147743,'Santa Maria di Galeria','Italy','IT','Santa Maria di Galeria (Italy)',1,1,0),(47454,0,147744,'Santa Maria Val Mustair','Switzerland','CH','Santa Maria Val Mustair (Switzerland)',1,1,0),(47455,33302,147745,'Santa Marta de Tormes','Spain','ES','Santa Marta de Tormes (Spain)',1,1,0),(47456,33303,147746,'Santa Pau','Spain','ES','Santa Pau (Spain)',1,1,0),(47457,0,147747,'Santa Reparata','Italy','IT','Santa Reparata (Italy)',1,1,0),(47458,0,147748,'Santa Rosa','Brazil','BR','Santa Rosa (Brazil)',1,1,0),(47459,33310,147749,'Santa Teresa di Gallura','Italy','IT','Santa Teresa di Gallura (Italy)',1,1,0),(47460,33311,147750,'Santa Teresa di Riva','Italy','IT','Santa Teresa di Riva (Italy)',1,1,0),(47461,0,147751,'Sant\'Antonio','Switzerland','CH','Sant\'Antonio (Switzerland)',1,1,0),(47462,24229,147752,'Sant\'Antonio Abate','Italy','IT','Sant\'Antonio Abate (Italy)',1,1,0),(47463,0,147753,'Santiago','Brazil','BR','Santiago (Brazil)',1,1,0),(47464,0,147754,'Santiago de Tequila','Mexico','MX','Santiago de Tequila (Mexico)',1,1,0),(47465,0,147755,'Santiago Millas','Spain','ES','Santiago Millas (Spain)',1,1,0),(47466,24256,147756,'Santo Domingo','Dominican Republic','DO','Santo Domingo (Dominican Republic)',1,1,0),(47467,33332,147757,'Santo Stino Di Livenza','Italy','IT','Santo Stino Di Livenza (Italy)',1,1,0),(47468,0,147758,'Santo Tomas','Philippines','PH','Santo Tomas (Philippines)',1,1,0),(47469,24263,147759,'Santorcaz','Spain','ES','Santorcaz (Spain)',1,1,0),(47470,0,147760,'Santos','Brazil','BR','Santos (Brazil)',1,1,0),(47471,0,147761,'Santubong','Malaysia','MY','Santubong (Malaysia)',1,1,0),(47472,0,147762,'Sao Bento do Sapucai','Brazil','BR','Sao Bento do Sapucai (Brazil)',1,1,0),(47473,33340,147763,'Sao Carlos','Brazil','BR','Sao Carlos (Brazil)',1,1,0),(47474,33357,147764,'Sao Jose dos Pinhais','Brazil','BR','Sao Jose dos Pinhais (Brazil)',1,1,0),(47475,0,147765,'Sao Luiz do Paraitinga','Brazil','BR','Sao Luiz do Paraitinga (Brazil)',1,1,0),(47476,33375,147766,'Sao Pedro de Muel','Portugal','PT','Sao Pedro de Muel (Portugal)',1,1,0),(47477,0,147767,'Sao Roque do Pico','Portugal','PT','Sao Roque do Pico (Portugal)',1,1,0),(47478,33379,147768,'Sao Teotonio','Portugal','PT','Sao Teotonio (Portugal)',1,1,0),(47479,0,147769,'Saporischja','Ukraine','UA','Saporischja (Ukraine)',1,1,0),(47480,24287,147770,'Sappada','Italy','IT','Sappada (Italy)',1,1,0),(47481,24290,147771,'Sapporo','Japan','JP','Sapporo (Japan)',1,1,0),(47482,24293,147772,'Sapri','Italy','IT','Sapri (Italy)',1,1,0),(47483,24302,147773,'Saranda','Albania','AL','Saranda (Albania)',1,1,0),(47484,0,147774,'Sarawak','Malaysia','MY','Sarawak (Malaysia)',1,1,0),(47485,24312,147775,'Sarcelles','France','FR','Sarcelles (France)',1,1,0),(47486,24355,147776,'Sasabe','United States of America','US','Sasabe (United States of America)',1,1,0),(47487,0,147777,'Sasino','Poland','PL','Sasino (Poland)',1,1,0),(47488,24364,147778,'Sassetot-le-Mauconduit','France','FR','Sassetot-le-Mauconduit (France)',1,1,0),(47489,24371,147779,'Satellite Beach','United States of America','US','Satellite Beach (United States of America)',1,1,0),(47490,24382,147781,'Satun','Thailand','TH','Satun (Thailand)',1,1,0),(47491,0,147782,'Sauk City','United States of America','US','Sauk City (United States of America)',1,1,0),(47492,0,147783,'Saulcy','Switzerland','CH','Saulcy (Switzerland)',1,1,0),(47493,0,147784,'Saux','France','FR','Saux (France)',1,1,0),(47494,0,147785,'Savanna','United States of America','US','Savanna (United States of America)',1,1,0),(47495,0,147786,'Savegre','Costa Rica','CR','Savegre (Costa Rica)',1,1,0),(47496,0,147787,'Savigny','France','FR','Savigny (France)',1,1,0),(47497,0,147788,'Savines-le-Lac','France','FR','Savines-le-Lac (France)',1,1,0),(47498,24457,147789,'Sawtell','Australia','AU','Sawtell (Australia)',1,1,0),(47499,0,147790,'Sawtry','United Kingdom','UK','Sawtry (United Kingdom)',1,1,0),(47500,24468,147791,'Scafati','Italy','IT','Scafati (Italy)',1,1,0),(47501,24470,147792,'Scalea','Italy','IT','Scalea (Italy)',1,1,0),(47502,0,147793,'Scariff','Ireland','IE','Scariff (Ireland)',1,1,0),(47503,24490,147794,'Scauri','Italy','IT','Scauri (Italy)',1,1,0),(47504,0,147795,'Schaftlarn','Germany','DE','Schaftlarn (Germany)',1,1,0),(47505,0,147796,'Schalchen','Germany','DE','Schalchen (Germany)',1,1,0),(47506,24505,147797,'Schaumburg','United States of America','US','Schaumburg (United States of America)',1,1,0),(47507,24508,147798,'Scheggino','Italy','IT','Scheggino (Italy)',1,1,0),(47508,24510,147799,'Scheidegg','Germany','DE','Scheidegg (Germany)',1,1,0),(47509,0,147800,'Scheinfeld','Germany','DE','Scheinfeld (Germany)',1,1,0),(47510,24511,147801,'Schellerhau','Germany','DE','Schellerhau (Germany)',1,1,0),(47511,0,147802,'Schiffweiler','Germany','DE','Schiffweiler (Germany)',1,1,0),(47512,24539,147803,'Schkopau','Germany','DE','Schkopau (Germany)',1,1,0),(47513,24542,147804,'Schleching','Germany','DE','Schleching (Germany)',1,1,0),(47514,0,147805,'Schlehdorf','Germany','DE','Schlehdorf (Germany)',1,1,0),(47515,0,147806,'Schleuis','Switzerland','CH','Schleuis (Switzerland)',1,1,0),(47516,0,147807,'Schliengen','Germany','DE','Schliengen (Germany)',1,1,0),(47517,0,147808,'Schloss Rosenau','Austria','AT','Schloss Rosenau (Austria)',1,1,0),(47518,24551,147809,'Schlusselfeld','Germany','DE','Schlusselfeld (Germany)',1,1,0),(47519,0,147810,'Schmiedefeld am Rennsteig','Germany','DE','Schmiedefeld am Rennsteig (Germany)',1,1,0),(47520,24557,147811,'Schnaittach','Germany','DE','Schnaittach (Germany)',1,1,0),(47521,0,147812,'Schonberg','Austria','AT','Schonberg (Austria)',1,1,0),(47522,0,147813,'Schoneiche bei Berlin','Germany','DE','Schoneiche bei Berlin (Germany)',1,1,0),(47523,0,147814,'Schonmunzach','Germany','DE','Schonmunzach (Germany)',1,1,0),(47524,0,147815,'Schonungen','Germany','DE','Schonungen (Germany)',1,1,0),(47525,24587,147816,'Schoorl','Netherlands','NL','Schoorl (Netherlands)',1,1,0),(47526,0,147817,'Schopfheim','Germany','DE','Schopfheim (Germany)',1,1,0),(47527,24590,147818,'Schopsdorf','Germany','DE','Schopsdorf (Germany)',1,1,0),(47528,0,147819,'Schorndorf','Germany','DE','Schorndorf (Germany)',1,1,0),(47529,0,147820,'Schtschokino','Russia','RU','Schtschokino (Russia)',1,1,0),(47530,0,147821,'Schwagalp','Switzerland','CH','Schwagalp (Switzerland)',1,1,0),(47531,0,147822,'Schwanden','Switzerland','CH','Schwanden (Switzerland)',1,1,0),(47532,24618,147823,'Schwarzenburg','Switzerland','CH','Schwarzenburg (Switzerland)',1,1,0),(47533,0,147824,'Schwarzenfeld','Germany','DE','Schwarzenfeld (Germany)',1,1,0),(47534,0,147825,'Schwarzhausen','Germany','DE','Schwarzhausen (Germany)',1,1,0),(47535,0,147826,'Schwenningen','Germany','DE','Schwenningen (Germany)',1,1,0),(47536,24639,147827,'Scionzier','France','FR','Scionzier (France)',1,1,0),(47537,24641,147828,'Scituate','United States of America','US','Scituate (United States of America)',1,1,0),(47538,33395,147829,'Sea Girt','United States of America','US','Sea Girt (United States of America)',1,1,0),(47539,0,147830,'Seabrook','United States of America','US','Seabrook (United States of America)',1,1,0),(47540,24679,147831,'Searcy','United States of America','US','Searcy (United States of America)',1,1,0),(47541,0,147832,'Seaside Heights','United States of America','US','Seaside Heights (United States of America)',1,1,0),(47542,0,147833,'Seaview','United Kingdom','UK','Seaview (United Kingdom)',1,1,0),(47543,0,147834,'Seaward','United States of America','US','Seaward (United States of America)',1,1,0),(47544,24688,147835,'Sebasco Estates','United States of America','US','Sebasco Estates (United States of America)',1,1,0),(47545,33399,147836,'See','Austria','AT','See (Austria)',1,1,0),(47546,24716,147837,'Seeboden','Austria','AT','Seeboden (Austria)',1,1,0),(47547,24718,147838,'Seeduwa','Sri Lanka','LK','Seeduwa (Sri Lanka)',1,1,0),(47548,0,147839,'Seefeld (Stadland)','Germany','DE','Seefeld (Stadland) (Germany)',1,1,0),(47549,0,147840,'Seekirchen','Austria','AT','Seekirchen (Austria)',1,1,0),(47550,0,147841,'Seferihisar / Izmir','Turkey','TR','Seferihisar / Izmir (Turkey)',1,1,0),(47551,0,147842,'Segou','Mali','ML','Segou (Mali)',1,1,0),(47552,24741,147843,'Sehnde','Germany','DE','Sehnde (Germany)',1,1,0),(47553,0,147844,'Seingbouse','France','FR','Seingbouse (France)',1,1,0),(47554,0,147845,'Selbitz','Germany','DE','Selbitz (Germany)',1,1,0),(47555,24765,147846,'Selci','Italy','IT','Selci (Italy)',1,1,0),(47556,0,147847,'Sellin','Germany','DE','Sellin (Germany)',1,1,0),(47557,24791,147848,'Semarang','Indonesia','ID','Semarang (Indonesia)',1,1,0),(47558,0,147849,'Semkovo','Bulgaria','BG','Semkovo (Bulgaria)',1,1,0),(47559,24802,147850,'Semporna','Malaysia','MY','Semporna (Malaysia)',1,1,0),(47560,24805,147851,'Senago','Italy','IT','Senago (Italy)',1,1,0),(47561,24810,147852,'Sendenhorst','Germany','DE','Sendenhorst (Germany)',1,1,0),(47562,0,147853,'Seneca Falls','United States of America','US','Seneca Falls (United States of America)',1,1,0),(47563,0,147854,'Senheim','Germany','DE','Senheim (Germany)',1,1,0),(47564,0,147855,'Senohraby','Czech Republic','CZ','Senohraby (Czech Republic)',1,1,0),(47565,0,147856,'Sensbachtal','Germany','DE','Sensbachtal (Germany)',1,1,0),(47566,0,147857,'Sentheim','France','FR','Sentheim (France)',1,1,0),(47567,24835,147858,'Seppeltsfield','Australia','AU','Seppeltsfield (Australia)',1,1,0),(47568,24838,147859,'Septemes-les-Vallons','France','FR','Septemes-les-Vallons (France)',1,1,0),(47569,24839,147860,'Sept-Iles','Canada','CA','Sept-Iles (Canada)',1,1,0),(47570,24860,147861,'Serpa','Portugal','PT','Serpa (Portugal)',1,1,0),(47571,0,147862,'Serpiano','Switzerland','CH','Serpiano (Switzerland)',1,1,0),(47572,24865,147863,'Serrahn','Germany','DE','Serrahn (Germany)',1,1,0),(47573,24877,147864,'Serris','France','FR','Serris (France)',1,1,0),(47574,0,147865,'Sesheke','Zambia','ZM','Sesheke (Zambia)',1,1,0),(47575,0,147866,'Sestajovice u Prahy','Czech Republic','CZ','Sestajovice u Prahy (Czech Republic)',1,1,0),(47576,0,147867,'Sesto Fiorentino','Italy','IT','Sesto Fiorentino (Italy)',1,1,0),(47577,0,147868,'Sestroretsk','Russia','RU','Sestroretsk (Russia)',1,1,0),(47578,0,147869,'Settefrati','Italy','IT','Settefrati (Italy)',1,1,0),(47579,0,147870,'Seven Mile Beach','Australia','AU','Seven Mile Beach (Australia)',1,1,0),(47580,0,147871,'Sevierville','United States of America','US','Sevierville (United States of America)',1,1,0),(47581,24925,147872,'Sevran','France','FR','Sevran (France)',1,1,0),(47582,0,147873,'Seymour','United States of America','US','Seymour (United States of America)',1,1,0),(47583,0,147874,'Sfaka','Greece','GR','Sfaka (Greece)',1,1,0),(47584,0,147875,'Sfakiotes','Greece','GR','Sfakiotes (Greece)',1,1,0),(47585,0,147876,'Shangrao','China','CN','Shangrao (China)',1,1,0),(47586,24983,147877,'Shantou','China','CN','Shantou (China)',1,1,0),(47587,24986,147878,'Shaoguan','China','CN','Shaoguan (China)',1,1,0),(47588,0,147879,'Sharks Bay','Egypt','EG','Sharks Bay (Egypt)',1,1,0),(47589,24999,147880,'Shartlesville','United States of America','US','Shartlesville (United States of America)',1,1,0),(47590,25009,147881,'Shawinigan','Canada','CA','Shawinigan (Canada)',1,1,0),(47591,25015,147882,'Shediac','Canada','CA','Shediac (Canada)',1,1,0),(47592,0,147883,'Sheffield','United Kingdom','UK','Sheffield (United Kingdom)',1,1,0),(47593,0,147884,'Sheffield','United States of America','US','Sheffield (United States of America)',1,1,0),(47594,25030,147885,'Shell Beach','United States of America','US','Shell Beach (United States of America)',1,1,0),(47595,0,147886,'Shelton','United States of America','US','Shelton (United States of America)',1,1,0),(47596,0,147887,'Sheridan','United States of America','US','Sheridan (United States of America)',1,1,0),(47597,25054,147888,'Sherwood Park','Canada','CA','Sherwood Park (Canada)',1,1,0),(47598,0,147889,'Shifnal','United Kingdom','UK','Shifnal (United Kingdom)',1,1,0),(47599,25072,147890,'Shillington','United States of America','US','Shillington (United States of America)',1,1,0),(47600,0,147892,'Shipkovo','Bulgaria','BG','Shipkovo (Bulgaria)',1,1,0),(47601,25113,147893,'Shizuoka','Japan','JP','Shizuoka (Japan)',1,1,0),(47602,25114,147894,'Shkodra','Albania','AL','Shkodra (Albania)',1,1,0),(47603,0,147895,'Shkorpilovtsi','Bulgaria','BG','Shkorpilovtsi (Bulgaria)',1,1,0),(47604,25122,147896,'Shoresh','Israel','IL','Shoresh (Israel)',1,1,0),(47605,0,147897,'Shustoke','United Kingdom','UK','Shustoke (United Kingdom)',1,1,0),(47606,25146,147898,'Shute Harbour','Australia','AU','Shute Harbour (Australia)',1,1,0),(47607,0,147899,'Sianozety','Poland','PL','Sianozety (Poland)',1,1,0),(47608,0,147900,'Sichon','Thailand','TH','Sichon (Thailand)',1,1,0),(47609,0,147901,'Siders','Switzerland','CH','Siders (Switzerland)',1,1,0),(47610,25177,147902,'Siegen','Germany','DE','Siegen (Germany)',1,1,0),(47611,25182,147903,'Siemianowice Slaskie','Poland','PL','Siemianowice Slaskie (Poland)',1,1,0),(47612,25187,147904,'Sierning','Austria','AT','Sierning (Austria)',1,1,0),(47613,25192,147905,'Siesta Key','United States of America','US','Siesta Key (United States of America)',1,1,0),(47614,0,147906,'Sievern','Germany','DE','Sievern (Germany)',1,1,0),(47615,0,147907,'Sigmaringen','Germany','DE','Sigmaringen (Germany)',1,1,0),(47616,0,147908,'Sigmarszell','Germany','DE','Sigmarszell (Germany)',1,1,0),(47617,25200,147909,'Signal Hill','United States of America','US','Signal Hill (United States of America)',1,1,0),(47618,25209,147910,'Siheung','South Korea','KR','Siheung (South Korea)',1,1,0),(47619,25215,147911,'Sikeston','United States of America','US','Sikeston (United States of America)',1,1,0),(47620,25230,147913,'Silkeborg','Denmark','DK','Silkeborg (Denmark)',1,1,0),(47621,0,147915,'Silveira','Portugal','PT','Silveira (Portugal)',1,1,0),(47622,0,147916,'Silverthorne','United States of America','US','Silverthorne (United States of America)',1,1,0),(47623,25253,147917,'Simi Valley','United States of America','US','Simi Valley (United States of America)',1,1,0),(47624,0,147918,'Simplon','Switzerland','CH','Simplon (Switzerland)',1,1,0),(47625,0,147919,'Sintiki','Greece','GR','Sintiki (Greece)',1,1,0),(47626,0,147920,'Sint-Maria-Horebeke','Belgium','BE','Sint-Maria-Horebeke (Belgium)',1,1,0),(47627,0,147921,'Sinzheim','Germany','DE','Sinzheim (Germany)',1,1,0),(47628,0,147922,'Sioano del Lago','Italy','IT','Sioano del Lago (Italy)',1,1,0),(47629,25306,147923,'Sion','Switzerland','CH','Sion (Switzerland)',1,1,0),(47630,25307,147924,'Sioux Center','United States of America','US','Sioux Center (United States of America)',1,1,0),(47631,0,147925,'Sipirok','Indonesia','ID','Sipirok (Indonesia)',1,1,0),(47632,0,147926,'Sirmione-Rivoltella','Italy','IT','Sirmione-Rivoltella (Italy)',1,1,0),(47633,0,147927,'Sirnak','Turkey','TR','Sirnak (Turkey)',1,1,0),(47634,25331,147928,'Sisseton','United States of America','US','Sisseton (United States of America)',1,1,0),(47635,33423,147929,'Sissi','Greece','GR','Sissi (Greece)',1,1,0),(47636,0,147930,'Siteler','Turkey','TR','Siteler (Turkey)',1,1,0),(47637,25337,147931,'Sitges','Spain','ES','Sitges (Spain)',1,1,0),(47638,0,147932,'Sitrah','Bahrain','BH','Sitrah (Bahrain)',1,1,0),(47639,0,147933,'Sittingbourne','United Kingdom','UK','Sittingbourne (United Kingdom)',1,1,0),(47640,25352,147934,'Sivota','Greece','GR','Sivota (Greece)',1,1,0),(47641,0,147935,'Skala Eressou','Greece','GR','Skala Eressou (Greece)',1,1,0),(47642,0,147936,'Skalica','Slovakia','SK','Skalica (Slovakia)',1,1,0),(47643,25378,147937,'Skelleftea','Sweden','SE','Skelleftea (Sweden)',1,1,0),(47644,25393,147938,'Skillingaryd','Sweden','SE','Skillingaryd (Sweden)',1,1,0),(47645,0,147939,'Skwierzyna','Poland','PL','Skwierzyna (Poland)',1,1,0),(47646,0,147940,'Skye of Curr','United Kingdom','UK','Skye of Curr (United Kingdom)',1,1,0),(47647,25433,147941,'Slano','Croatia','HR','Slano (Croatia)',1,1,0),(47648,0,147942,'Slesin','Poland','PL','Slesin (Poland)',1,1,0),(47649,0,147943,'Sliace','Slovakia','SK','Sliace (Slovakia)',1,1,0),(47650,25449,147944,'Sligo','Ireland','IE','Sligo (Ireland)',1,1,0),(47651,25450,147945,'Slinger','United States of America','US','Slinger (United States of America)',1,1,0),(47652,0,147946,'Slough','United Kingdom','UK','Slough (United Kingdom)',1,1,0),(47653,0,147947,'Smarden','United Kingdom','UK','Smarden (United Kingdom)',1,1,0),(47654,25466,147948,'Smarjeske Toplice','Slovenia','SI','Smarjeske Toplice (Slovenia)',1,1,0),(47655,0,147949,'Smithfield','United States of America','US','Smithfield (United States of America)',1,1,0),(47656,0,147950,'Smith\'s Cove','Canada','CA','Smith\'s Cove (Canada)',1,1,0),(47657,0,147951,'Smiths Falls','Canada','CA','Smiths Falls (Canada)',1,1,0),(47658,0,147952,'Smoljanci','Croatia','HR','Smoljanci (Croatia)',1,1,0),(47659,25483,147953,'Smugglers Notch','United States of America','US','Smugglers Notch (United States of America)',1,1,0),(47660,25505,147954,'Snowflake','United States of America','US','Snowflake (United States of America)',1,1,0),(47661,0,147955,'Sobral','Brazil','BR','Sobral (Brazil)',1,1,0),(47662,25525,147956,'Socorro','United States of America','US','Socorro (United States of America)',1,1,0),(47663,0,147957,'Sognefjord','Norway','NO','Sognefjord (Norway)',1,1,0),(47664,25556,147958,'Soissons','France','FR','Soissons (France)',1,1,0),(47665,0,147959,'Solaris by Sibenik','Croatia','HR','Solaris by Sibenik (Croatia)',1,1,0),(47666,0,147960,'Solcava','Slovenia','SI','Solcava (Slovenia)',1,1,0),(47667,25593,147961,'Soller','Spain','ES','Soller (Spain)',1,1,0),(47668,25603,147962,'Solomons','United States of America','US','Solomons (United States of America)',1,1,0),(47669,0,147963,'Solta Island','Croatia','HR','Solta Island (Croatia)',1,1,0),(47670,0,147964,'Somerset','United Kingdom','UK','Somerset (United Kingdom)',1,1,0),(47671,0,147965,'Somma Lombardo','Italy','IT','Somma Lombardo (Italy)',1,1,0),(47672,0,147966,'Sommacampagna','Italy','IT','Sommacampagna (Italy)',1,1,0),(47673,33434,147967,'Son Servera','Spain','ES','Son Servera (Spain)',1,1,0),(47674,25668,147968,'Soreze','France','FR','Soreze (France)',1,1,0),(47675,25672,147969,'Soriano nel Cimino','Italy','IT','Soriano nel Cimino (Italy)',1,1,0),(47676,0,147970,'Sortino','Italy','IT','Sortino (Italy)',1,1,0),(47677,25699,147971,'Sotogrande','Spain','ES','Sotogrande (Spain)',1,1,0),(47678,0,147972,'Soublecause','France','FR','Soublecause (France)',1,1,0),(47679,25720,147973,'Sousel','Portugal','PT','Sousel (Portugal)',1,1,0),(47680,33451,147974,'South Brunswick','United States of America','US','South Brunswick (United States of America)',1,1,0),(47681,33453,147975,'South Casco','United States of America','US','South Casco (United States of America)',1,1,0),(47682,0,147976,'South Pender','Canada','CA','South Pender (Canada)',1,1,0),(47683,33511,147977,'South Portland','United States of America','US','South Portland (United States of America)',1,1,0),(47684,0,147978,'South Uist','United Kingdom','UK','South Uist (United Kingdom)',1,1,0),(47685,25763,147979,'Southern Pines','United States of America','US','Southern Pines (United States of America)',1,1,0),(47686,0,147980,'Soyen','Germany','DE','Soyen (Germany)',1,1,0),(47687,25801,147981,'Spalene Porici','Czech Republic','CZ','Spalene Porici (Czech Republic)',1,1,0),(47688,25827,147982,'Speightstown','Barbados','BB','Speightstown (Barbados)',1,1,0),(47689,25829,147983,'Spello','Italy','IT','Spello (Italy)',1,1,0),(47690,25842,147984,'Spicer','United States of America','US','Spicer (United States of America)',1,1,0),(47691,0,147985,'Spiddal','Ireland','IE','Spiddal (Ireland)',1,1,0),(47692,0,147986,'Spiegelberg','Germany','DE','Spiegelberg (Germany)',1,1,0),(47693,25856,147987,'Spirit Lake','United States of America','US','Spirit Lake (United States of America)',1,1,0),(47694,0,147988,'Spitz','Austria','AT','Spitz (Austria)',1,1,0),(47695,33537,147989,'Spring','United States of America','US','Spring (United States of America)',1,1,0),(47696,25877,147990,'Springbok','South Africa','ZA','Springbok (South Africa)',1,1,0),(47697,0,147991,'Springdale','United States of America','US','Springdale (United States of America)',1,1,0),(47698,0,147992,'Spruce Pine','United States of America','US','Spruce Pine (United States of America)',1,1,0),(47699,25892,147993,'Squamish','Canada','CA','Squamish (Canada)',1,1,0),(47700,0,147994,'Squillace Lido','Italy','IT','Squillace Lido (Italy)',1,1,0),(47701,33605,147995,'St James','United States of America','US','St James (United States of America)',1,1,0),(47702,0,147996,'St Leonards-on-Sea','United Kingdom','UK','St Leonards-on-Sea (United Kingdom)',1,1,0),(47703,0,147997,'St Thomas','Canada','CA','St Thomas (Canada)',1,1,0),(47704,0,147998,'St. Andra','Italy','IT','St. Andra (Italy)',1,1,0),(47705,0,147999,'St. Apollinaire','Canada','CA','St. Apollinaire (Canada)',1,1,0),(47706,0,148000,'St. Brelade','United Kingdom','UK','St. Brelade (United Kingdom)',1,1,0),(47707,0,148001,'St. Brevin les Pins','France','FR','St. Brevin les Pins (France)',1,1,0),(47708,0,148002,'St. Charles','Canada','CA','St. Charles (Canada)',1,1,0),(47709,0,148003,'St. Christina','Italy','IT','St. Christina (Italy)',1,1,0),(47710,33686,148004,'St. Clairsville','United States of America','US','St. Clairsville (United States of America)',1,1,0),(47711,0,148005,'St. Corona am Wechsel','Austria','AT','St. Corona am Wechsel (Austria)',1,1,0),(47712,25911,148006,'St. Englmar','Germany','DE','St. Englmar (Germany)',1,1,0),(47713,0,148007,'St. Felix','Mauritius','MU','St. Felix (Mauritius)',1,1,0),(47714,0,148008,'St. Florian','Austria','AT','St. Florian (Austria)',1,1,0),(47715,0,148009,'St. Francois','Guadeloupe','GP','St. Francois (Guadeloupe)',1,1,0),(47716,0,148010,'St. Georg','United States of America','US','St. Georg (United States of America)',1,1,0),(47717,0,148011,'St. Kanzian','Austria','AT','St. Kanzian (Austria)',1,1,0),(47718,0,148012,'St. Kitts','St. Kitts and Nevis','KN','St. Kitts (St. Kitts and Nevis)',1,1,0),(47719,0,148013,'St. Lambrecht','Austria','AT','St. Lambrecht (Austria)',1,1,0),(47720,0,148014,'St. Leonard','Italy','IT','St. Leonard (Italy)',1,1,0),(47721,0,148015,'St. Lorenzen','Austria','AT','St. Lorenzen (Austria)',1,1,0),(47722,0,148016,'St. Lucy','Barbados','BB','St. Lucy (Barbados)',1,1,0),(47723,0,148017,'St. Martin bei (by) Lofer','Austria','AT','St. Martin bei (by) Lofer (Austria)',1,1,0),(47724,33722,148018,'St. Marys','Canada','CA','St. Marys (Canada)',1,1,0),(47725,0,148019,'St. Michael','Barbados','BB','St. Michael (Barbados)',1,1,0),(47726,0,148020,'St. Patrick\'s','Grenada','GD','St. Patrick\'s (Grenada)',1,1,0),(47727,0,148021,'St. Paul\'s Bay','Malta','MT','St. Paul\'s Bay (Malta)',1,1,0),(47728,33738,148022,'St. Petersburg','United States of America','US','St. Petersburg (United States of America)',1,1,0),(47729,0,148023,'St. Polten','Austria','AT','St. Polten (Austria)',1,1,0),(47730,0,148024,'St. Renan','France','FR','St. Renan (France)',1,1,0),(47731,0,148025,'St. Saturnin d\'Apt','France','FR','St. Saturnin d\'Apt (France)',1,1,0),(47732,0,148026,'St. Sauveur des Monts','Canada','CA','St. Sauveur des Monts (Canada)',1,1,0),(47733,0,148027,'St. Sebastian','Austria','AT','St. Sebastian (Austria)',1,1,0),(47734,0,148028,'St. Sigmund/ Kiens','Italy','IT','St. Sigmund/ Kiens (Italy)',1,1,0),(47735,0,148029,'St. Ulrich','Italy','IT','St. Ulrich (Italy)',1,1,0),(47736,0,148030,'St. Urbain','Canada','CA','St. Urbain (Canada)',1,1,0),(47737,0,148031,'St. Valentin auf der Haide','Italy','IT','St. Valentin auf der Haide (Italy)',1,1,0),(47738,25952,148032,'Stadskanaal','Netherlands','NL','Stadskanaal (Netherlands)',1,1,0),(47739,25953,148033,'Stadtallendorf','Germany','DE','Stadtallendorf (Germany)',1,1,0),(47740,25968,148034,'Staletti','Italy','IT','Staletti (Italy)',1,1,0),(47741,0,148035,'St-Alexis-de-Matapedia','Canada','CA','St-Alexis-de-Matapedia (Canada)',1,1,0),(47742,0,148036,'Stalos','Greece','GR','Stalos (Greece)',1,1,0),(47743,0,148037,'Stamford','United States of America','US','Stamford (United States of America)',1,1,0),(47744,25977,148038,'Stamsund','Norway','NO','Stamsund (Norway)',1,1,0),(47745,25986,148039,'Stanhope','United States of America','US','Stanhope (United States of America)',1,1,0),(47746,25995,148040,'Stans','Switzerland','CH','Stans (Switzerland)',1,1,0),(47747,0,148041,'Stara Lubovna','Slovakia','SK','Stara Lubovna (Slovakia)',1,1,0),(47748,0,148042,'Stara Tura','Slovakia','SK','Stara Tura (Slovakia)',1,1,0),(47749,0,148043,'Starachowice','Poland','PL','Starachowice (Poland)',1,1,0),(47750,26011,148044,'Stargard Szczecinski','Poland','PL','Stargard Szczecinski (Poland)',1,1,0),(47751,26017,148045,'Starlight','United States of America','US','Starlight (United States of America)',1,1,0),(47752,0,148046,'Staufenberg','Germany','DE','Staufenberg (Germany)',1,1,0),(47753,0,148047,'Stavromenos','Greece','GR','Stavromenos (Greece)',1,1,0),(47754,0,148048,'Ste-Catherine-de-la-Jacques','Canada','CA','Ste-Catherine-de-la-Jacques (Canada)',1,1,0),(47755,0,148049,'Stedar','Germany','DE','Stedar (Germany)',1,1,0),(47756,0,148050,'Steg','Switzerland','CH','Steg (Switzerland)',1,1,0),(47757,26050,148051,'Steinach','Austria','AT','Steinach (Austria)',1,1,0),(47758,0,148052,'Steinalben','Germany','DE','Steinalben (Germany)',1,1,0),(47759,0,148053,'Steinbach','Austria','AT','Steinbach (Austria)',1,1,0),(47760,0,148054,'Steinberghaff','Germany','DE','Steinberghaff (Germany)',1,1,0),(47761,0,148055,'Steinfeld (Oldenburg)','Germany','DE','Steinfeld (Oldenburg) (Germany)',1,1,0),(47762,26058,148056,'Steinfurt','Germany','DE','Steinfurt (Germany)',1,1,0),(47763,0,148057,'Steinheim an der Murr','Germany','DE','Steinheim an der Murr (Germany)',1,1,0),(47764,0,148058,'Stella Maris','Brazil','BR','Stella Maris (Brazil)',1,1,0),(47765,26068,148059,'Stellenbosch','South Africa','ZA','Stellenbosch (South Africa)',1,1,0),(47766,0,148060,'Stellshagen','Germany','DE','Stellshagen (Germany)',1,1,0),(47767,0,148061,'Stemshorn','Germany','DE','Stemshorn (Germany)',1,1,0),(47768,26070,148062,'Stendal','Germany','DE','Stendal (Germany)',1,1,0),(47769,26079,148063,'Stephenville','United States of America','US','Stephenville (United States of America)',1,1,0),(47770,0,148064,'Sterdebull','Germany','DE','Sterdebull (Germany)',1,1,0),(47771,0,148065,'Stetten','Austria','AT','Stetten (Austria)',1,1,0),(47772,0,148066,'Stetten am kalten Markt','Germany','DE','Stetten am kalten Markt (Germany)',1,1,0),(47773,0,148067,'Stewarton','United Kingdom','UK','Stewarton (United Kingdom)',1,1,0),(47774,26098,148068,'Stewartville','United States of America','US','Stewartville (United States of America)',1,1,0),(47775,0,148069,'Steyerberg','Germany','DE','Steyerberg (Germany)',1,1,0),(47776,0,148070,'Stiefenhofen','Germany','DE','Stiefenhofen (Germany)',1,1,0),(47777,0,148071,'Stillwater','United States of America','US','Stillwater (United States of America)',1,1,0),(47778,0,148072,'Stip','Macedonia','MK','Stip (Macedonia)',1,1,0),(47779,0,148073,'Stirling','United Kingdom','UK','Stirling (United Kingdom)',1,1,0),(47780,0,148074,'Stockbridge','United States of America','US','Stockbridge (United States of America)',1,1,0),(47781,0,148075,'Stolpe bei Anklam','Germany','DE','Stolpe bei Anklam (Germany)',1,1,0),(47782,0,148076,'Stone','United Kingdom','UK','Stone (United Kingdom)',1,1,0),(47783,26176,148077,'Storutjarnir','Iceland','IS','Storutjarnir (Iceland)',1,1,0),(47784,0,148078,'Strada in Chianti','Italy','IT','Strada in Chianti (Italy)',1,1,0),(47785,26199,148079,'Strakonice','Czech Republic','CZ','Strakonice (Czech Republic)',1,1,0),(47786,26205,148080,'Strasbourg','France','FR','Strasbourg (France)',1,1,0),(47787,0,148081,'Strazne','Czech Republic','CZ','Strazne (Czech Republic)',1,1,0),(47788,26233,148082,'Streator','United States of America','US','Streator (United States of America)',1,1,0),(47789,26239,148083,'Strengen','Austria','AT','Strengen (Austria)',1,1,0),(47790,26240,148084,'Strenglin','Germany','DE','Strenglin (Germany)',1,1,0),(47791,26249,148085,'Stromberg','Germany','DE','Stromberg (Germany)',1,1,0),(47792,0,148086,'Stromness','United Kingdom','UK','Stromness (United Kingdom)',1,1,0),(47793,0,148087,'Stroud','United Kingdom','UK','Stroud (United Kingdom)',1,1,0),(47794,0,148088,'Stuben','Austria','AT','Stuben (Austria)',1,1,0),(47795,0,148089,'Stubenberg','Austria','AT','Stubenberg (Austria)',1,1,0),(47796,0,148090,'Sturminster Newton','United Kingdom','UK','Sturminster Newton (United Kingdom)',1,1,0),(47797,26295,148091,'Subang','Indonesia','ID','Subang (Indonesia)',1,1,0),(47798,26307,148092,'Suceava','Romania','RO','Suceava (Romania)',1,1,0),(47799,26309,148093,'Suchitoto','El Salvador','SV','Suchitoto (El Salvador)',1,1,0),(47800,26311,148094,'Sucre','Bolivia','BO','Sucre (Bolivia)',1,1,0),(47801,0,148095,'Suderbrarup','Germany','DE','Suderbrarup (Germany)',1,1,0),(47802,26322,148096,'Suffern','United States of America','US','Suffern (United States of America)',1,1,0),(47803,26330,148097,'Suhr','Switzerland','CH','Suhr (Switzerland)',1,1,0),(47804,26337,148098,'Sukabumi','Indonesia','ID','Sukabumi (Indonesia)',1,1,0),(47805,0,148099,'Sukau','Malaysia','MY','Sukau (Malaysia)',1,1,0),(47806,26363,148100,'Sumbe','Angola','AO','Sumbe (Angola)',1,1,0),(47807,0,148101,'Sumpetar','Croatia','HR','Sumpetar (Croatia)',1,1,0),(47808,0,148102,'Sumvitg','Switzerland','CH','Sumvitg (Switzerland)',1,1,0),(47809,26393,148103,'Sundern','Germany','DE','Sundern (Germany)',1,1,0),(47810,0,148104,'Sunna','Germany','DE','Sunna (Germany)',1,1,0),(47811,0,148105,'Supetarska Draga','Croatia','HR','Supetarska Draga (Croatia)',1,1,0),(47812,0,148106,'Suratthani','Thailand','TH','Suratthani (Thailand)',1,1,0),(47813,0,148107,'Surcuolm','Switzerland','CH','Surcuolm (Switzerland)',1,1,0),(47814,26449,148108,'Surin','Thailand','TH','Surin (Thailand)',1,1,0),(47815,0,148109,'Sury Aux Bois','France','FR','Sury Aux Bois (France)',1,1,0),(47816,0,148110,'Susdal','Russia','RU','Susdal (Russia)',1,1,0),(47817,0,148111,'Susten','Switzerland','CH','Susten (Switzerland)',1,1,0),(47818,0,148112,'Sutton Scotney','United Kingdom','UK','Sutton Scotney (United Kingdom)',1,1,0),(47819,26486,148113,'Suzuka','Japan','JP','Suzuka (Japan)',1,1,0),(47820,0,148114,'Sveti Bartol','Croatia','HR','Sveti Bartol (Croatia)',1,1,0),(47821,0,148115,'Svetvincenat','Croatia','HR','Svetvincenat (Croatia)',1,1,0),(47822,0,148116,'Sviritsa','Russia','RU','Sviritsa (Russia)',1,1,0),(47823,0,148117,'Swarzedz','Poland','PL','Swarzedz (Poland)',1,1,0),(47824,26527,148118,'Swellendam','South Africa','ZA','Swellendam (South Africa)',1,1,0),(47825,0,148119,'Swierzawa','Poland','PL','Swierzawa (Poland)',1,1,0),(47826,0,148120,'Swisttal','Germany','DE','Swisttal (Germany)',1,1,0),(47827,26538,148121,'Sycamore','United States of America','US','Sycamore (United States of America)',1,1,0),(47828,0,148122,'Sympotama','Greece','GR','Sympotama (Greece)',1,1,0),(47829,0,148123,'Szantod','Hungary','HU','Szantod (Hungary)',1,1,0),(47830,0,148124,'Szczyrk','Poland','PL','Szczyrk (Poland)',1,1,0),(47831,26574,148125,'Szirak','Hungary','HU','Szirak (Hungary)',1,1,0),(47832,0,148126,'Taagepera','Estonia','EE','Taagepera (Estonia)',1,1,0),(47833,26579,148127,'Taba','Egypt','EG','Taba (Egypt)',1,1,0),(47834,0,148128,'Tabuaco','Portugal','PT','Tabuaco (Portugal)',1,1,0),(47835,0,148129,'Tacoma','United States of America','US','Tacoma (United States of America)',1,1,0),(47836,0,148130,'Tacoronte','Spain','ES','Tacoronte (Spain)',1,1,0),(47837,26611,148131,'Tafi del Valle','Argentina','AR','Tafi del Valle (Argentina)',1,1,0),(47838,26622,148132,'Taguatinga','Brazil','BR','Taguatinga (Brazil)',1,1,0),(47839,0,148133,'Tahla','Morocco','MA','Tahla (Morocco)',1,1,0),(47840,0,148134,'Tahoe Vista','United States of America','US','Tahoe Vista (United States of America)',1,1,0),(47841,0,148135,'Tahua','Bolivia','BO','Tahua (Bolivia)',1,1,0),(47842,33788,148136,'Tai Tapu','New Zealand','NZ','Tai Tapu (New Zealand)',1,1,0),(47843,26633,148137,'Taiba','Brazil','BR','Taiba (Brazil)',1,1,0),(47844,26661,148138,'Takamatsu','Japan','JP','Takamatsu (Japan)',1,1,0),(47845,0,148139,'Takapuna','New Zealand','NZ','Takapuna (New Zealand)',1,1,0),(47846,26667,148140,'Takasaki','Japan','JP','Takasaki (Japan)',1,1,0),(47847,0,148141,'Takatsuki','Japan','JP','Takatsuki (Japan)',1,1,0),(47848,0,148142,'Tal Thjorsardalur','Iceland','IS','Tal Thjorsardalur (Iceland)',1,1,0),(47849,0,148143,'Taling Ngam Beach','Thailand','TH','Taling Ngam Beach (Thailand)',1,1,0),(47850,26706,148144,'Tallulah','United States of America','US','Tallulah (United States of America)',1,1,0),(47851,26713,148145,'Tam Hai','Vietnam','VN','Tam Hai (Vietnam)',1,1,0),(47852,0,148146,'Tanamalwila','Sri Lanka','LK','Tanamalwila (Sri Lanka)',1,1,0),(47853,0,148147,'Tanawangko','Indonesia','ID','Tanawangko (Indonesia)',1,1,0),(47854,26766,148148,'Tandil','Argentina','AR','Tandil (Argentina)',1,1,0),(47855,0,148149,'Tangasdale','United Kingdom','UK','Tangasdale (United Kingdom)',1,1,0),(47856,26786,148150,'Tannas','Sweden','SE','Tannas (Sweden)',1,1,0),(47857,26788,148151,'Tanne','Germany','DE','Tanne (Germany)',1,1,0),(47858,0,148152,'Taos','United States of America','US','Taos (United States of America)',1,1,0),(47859,26801,148153,'Tapalpa','Mexico','MX','Tapalpa (Mexico)',1,1,0),(47860,26812,148154,'Tarano','Italy','IT','Tarano (Italy)',1,1,0),(47861,0,148155,'Taranto (Tarent)','Italy','IT','Taranto (Tarent) (Italy)',1,1,0),(47862,26816,148156,'Tarascon','France','FR','Tarascon (France)',1,1,0),(47863,26831,148157,'Targoviste','Romania','RO','Targoviste (Romania)',1,1,0),(47864,26833,148158,'Tarifa','Spain','ES','Tarifa (Spain)',1,1,0),(47865,26856,148159,'Tarrafal','Cape Verde','CV','Tarrafal (Cape Verde)',1,1,0),(47866,26864,148160,'Tartane','Martinique','MQ','Tartane (Martinique)',1,1,0),(47867,26874,148161,'Tasikmalaya','Indonesia','ID','Tasikmalaya (Indonesia)',1,1,0),(47868,26892,148162,'Taubate','Brazil','BR','Taubate (Brazil)',1,1,0),(47869,0,148163,'Tauberrettersheim','Germany','DE','Tauberrettersheim (Germany)',1,1,0),(47870,0,148164,'Taucha bei Leipzig','Germany','DE','Taucha bei Leipzig (Germany)',1,1,0),(47871,0,148165,'Taucho','Spain','ES','Taucho (Spain)',1,1,0),(47872,26895,148166,'Taull','Spain','ES','Taull (Spain)',1,1,0),(47873,0,148167,'Taung','South Africa','ZA','Taung (South Africa)',1,1,0),(47874,26900,148168,'Tauplitz','Austria','AT','Tauplitz (Austria)',1,1,0),(47875,0,148169,'Tautenhain','Germany','DE','Tautenhain (Germany)',1,1,0),(47876,0,148170,'Tavari','Greece','GR','Tavari (Greece)',1,1,0),(47877,0,148171,'Tavascan','Spain','ES','Tavascan (Spain)',1,1,0),(47878,0,148172,'Tavazzano','Italy','IT','Tavazzano (Italy)',1,1,0),(47879,0,148173,'Taxenbach','Austria','AT','Taxenbach (Austria)',1,1,0),(47880,26920,148174,'Taylor','United States of America','US','Taylor (United States of America)',1,1,0),(47881,0,148175,'Te Kauwhata','New Zealand','NZ','Te Kauwhata (New Zealand)',1,1,0),(47882,0,148176,'Teays Valley','United States of America','US','Teays Valley (United States of America)',1,1,0),(47883,0,148177,'Techelsberg','Austria','AT','Techelsberg (Austria)',1,1,0),(47884,26942,148178,'Tecumseh','United States of America','US','Tecumseh (United States of America)',1,1,0),(47885,0,148179,'Tegernsee','Germany','DE','Tegernsee (Germany)',1,1,0),(47886,0,148180,'Telgte','Germany','DE','Telgte (Germany)',1,1,0),(47887,33803,148181,'Tell City','United States of America','US','Tell City (United States of America)',1,1,0),(47888,26977,148182,'Telluride','United States of America','US','Telluride (United States of America)',1,1,0),(47889,0,148183,'Tembleque','Spain','ES','Tembleque (Spain)',1,1,0),(47890,26984,148184,'Temerloh','Malaysia','MY','Temerloh (Malaysia)',1,1,0),(47891,0,148185,'Temukus','Indonesia','ID','Temukus (Indonesia)',1,1,0),(47892,0,148186,'Tenby','United Kingdom','UK','Tenby (United Kingdom)',1,1,0),(47893,0,148187,'Tengen','Germany','DE','Tengen (Germany)',1,1,0),(47894,0,148188,'Tentana','Indonesia','ID','Tentana (Indonesia)',1,1,0),(47895,27030,148189,'Teotihuacan','Mexico','MX','Teotihuacan (Mexico)',1,1,0),(47896,0,148190,'Teramo','Italy','IT','Teramo (Italy)',1,1,0),(47897,27041,148191,'Terce','France','FR','Terce (France)',1,1,0),(47898,0,148192,'Termas de Reyes','Argentina','AR','Termas de Reyes (Argentina)',1,1,0),(47899,0,148193,'Terra do Pao','Portugal','PT','Terra do Pao (Portugal)',1,1,0),(47900,27084,148194,'Teschow','Germany','DE','Teschow (Germany)',1,1,0),(47901,0,148195,'Tha Taphao','Thailand','TH','Tha Taphao (Thailand)',1,1,0),(47902,0,148196,'Thaa Atoll','Maldives','MV','Thaa Atoll (Maldives)',1,1,0),(47903,2,148197,'Thai Muang','Thailand','TH','Thai Muang (Thailand)',1,1,0),(47904,27127,148198,'Thale','Germany','DE','Thale (Germany)',1,1,0),(47905,0,148199,'Thalfang','Germany','DE','Thalfang (Germany)',1,1,0),(47906,27148,148200,'Thaur','Austria','AT','Thaur (Austria)',1,1,0),(47907,0,148201,'The Palm Islands','United Arab Emirates','AE','The Palm Islands (United Arab Emirates)',1,1,0),(47908,0,148202,'The Valley West Ind','Anguilla','AI','The Valley West Ind (Anguilla)',1,1,0),(47909,27155,148203,'Thedford','United States of America','US','Thedford (United States of America)',1,1,0),(47910,27158,148204,'Thennelieres','France','FR','Thennelieres (France)',1,1,0),(47911,0,148205,'Theoule','France','FR','Theoule (France)',1,1,0),(47912,0,148206,'Therma','Greece','GR','Therma (Greece)',1,1,0),(47913,0,148207,'Thermo','Greece','GR','Thermo (Greece)',1,1,0),(47914,27164,148208,'Thesee','France','FR','Thesee (France)',1,1,0),(47915,0,148209,'Thingvellir','Iceland','IS','Thingvellir (Iceland)',1,1,0),(47916,0,148210,'Thira (Fira)','Greece','GR','Thira (Fira) (Greece)',1,1,0),(47917,27181,148211,'Thisted','Denmark','DK','Thisted (Denmark)',1,1,0),(47918,27185,148212,'Tholey','Germany','DE','Tholey (Germany)',1,1,0),(47919,0,148213,'Thomasville','United States of America','US','Thomasville (United States of America)',1,1,0),(47920,0,148214,'Thong Ta Kian Beach','Thailand','TH','Thong Ta Kian Beach (Thailand)',1,1,0),(47921,27199,148215,'Thonon-les-Bains','France','FR','Thonon-les-Bains (France)',1,1,0),(47922,0,148216,'Thornham','United Kingdom','UK','Thornham (United Kingdom)',1,1,0),(47923,0,148217,'Thornton-Cleveleys','United Kingdom','UK','Thornton-Cleveleys (United Kingdom)',1,1,0),(47924,0,148218,'Thorpe-le-Soken','United Kingdom','UK','Thorpe-le-Soken (United Kingdom)',1,1,0),(47925,0,148219,'Three Rivers','United States of America','US','Three Rivers (United States of America)',1,1,0),(47926,27234,148220,'Thunder Bay','Canada','CA','Thunder Bay (Canada)',1,1,0),(47927,0,148221,'Thuringerberg','Austria','AT','Thuringerberg (Austria)',1,1,0),(47928,0,148222,'Thurrock','United Kingdom','UK','Thurrock (United Kingdom)',1,1,0),(47929,0,148223,'Thurso','United Kingdom','UK','Thurso (United Kingdom)',1,1,0),(47930,0,148224,'Tiagua','Spain','ES','Tiagua (Spain)',1,1,0),(47931,27247,148225,'Tianjin','China','CN','Tianjin (China)',1,1,0),(47932,27248,148226,'Tianshui','China','CN','Tianshui (China)',1,1,0),(47933,27253,148227,'Tias','Spain','ES','Tias (Spain)',1,1,0),(47934,27255,148228,'Tiburon','United States of America','US','Tiburon (United States of America)',1,1,0),(47935,0,148229,'Tiefgraben','Austria','AT','Tiefgraben (Austria)',1,1,0),(47936,0,148230,'Tiffen','Austria','AT','Tiffen (Austria)',1,1,0),(47937,27269,148231,'Tifton','United States of America','US','Tifton (United States of America)',1,1,0),(47938,27276,148232,'Tignale','Italy','IT','Tignale (Italy)',1,1,0),(47939,0,148233,'Timberline','United States of America','US','Timberline (United States of America)',1,1,0),(47940,27321,148234,'Tinerhir','Morocco','MA','Tinerhir (Morocco)',1,1,0),(47941,0,148235,'Tintagel','United Kingdom','UK','Tintagel (United Kingdom)',1,1,0),(47942,0,148236,'Tinton Falls','United States of America','US','Tinton Falls (United States of America)',1,1,0),(47943,0,148237,'Tirasberge','Namibia','NA','Tirasberge (Namibia)',1,1,0),(47944,0,148238,'Tiraspol','Moldova','MD','Tiraspol (Moldova)',1,1,0),(47945,27350,148239,'Tirrenia','Italy','IT','Tirrenia (Italy)',1,1,0),(47946,0,148241,'Tittmoning','Germany','DE','Tittmoning (Germany)',1,1,0),(47947,27374,148242,'Tivoli','Italy','IT','Tivoli (Italy)',1,1,0),(47948,27378,148243,'Tiznit','Morocco','MA','Tiznit (Morocco)',1,1,0),(47949,0,148244,'Tluszcz','Poland','PL','Tluszcz (Poland)',1,1,0),(47950,0,148245,'Tobolsk','Russia','RU','Tobolsk (Russia)',1,1,0),(47951,27401,148246,'Tochni','Cyprus','CY','Tochni (Cyprus)',1,1,0),(47952,0,148247,'Todtnauberg','Germany','DE','Todtnauberg (Germany)',1,1,0),(47953,27412,148248,'Tofino','Canada','CA','Tofino (Canada)',1,1,0),(47954,27413,148249,'Tofte','United States of America','US','Tofte (United States of America)',1,1,0),(47955,0,148250,'Toging am Inn','Germany','DE','Toging am Inn (Germany)',1,1,0),(47956,27427,148251,'Tokyo','Japan','JP','Tokyo (Japan)',1,1,0),(47957,0,148252,'Toledo','United States of America','US','Toledo (United States of America)',1,1,0),(47958,0,148253,'Tolo','Greece','GR','Tolo (Greece)',1,1,0),(47959,27444,148254,'Tolox','Spain','ES','Tolox (Spain)',1,1,0),(47960,0,148255,'Tomaszowice','Poland','PL','Tomaszowice (Poland)',1,1,0),(47961,27455,148256,'Tombstone','United States of America','US','Tombstone (United States of America)',1,1,0),(47962,27464,148257,'Tonawanda','United States of America','US','Tonawanda (United States of America)',1,1,0),(47963,27467,148258,'Tonder','Denmark','DK','Tonder (Denmark)',1,1,0),(47964,0,148259,'Tonisvorst','Germany','DE','Tonisvorst (Germany)',1,1,0),(47965,27485,148260,'Tonnay-Charente','France','FR','Tonnay-Charente (France)',1,1,0),(47966,27486,148261,'Tonnerre','France','FR','Tonnerre (France)',1,1,0),(47967,27493,148262,'Toowoomba','Australia','AU','Toowoomba (Australia)',1,1,0),(47968,0,148263,'Topanga','United States of America','US','Topanga (United States of America)',1,1,0),(47969,0,148264,'Toplitz','Germany','DE','Toplitz (Germany)',1,1,0),(47970,0,148265,'Topolcany','Slovakia','SK','Topolcany (Slovakia)',1,1,0),(47971,0,148266,'Topolsica','Slovenia','SI','Topolsica (Slovenia)',1,1,0),(47972,27503,148267,'Torazo','Spain','ES','Torazo (Spain)',1,1,0),(47973,27517,148268,'Tordesillas','Spain','ES','Tordesillas (Spain)',1,1,0),(47974,0,148269,'Torfhaus','Germany','DE','Torfhaus (Germany)',1,1,0),(47975,0,148270,'Torgiani','Italy','IT','Torgiani (Italy)',1,1,0),(47976,0,148271,'Tormarton','United Kingdom','UK','Tormarton (United Kingdom)',1,1,0),(47977,27528,148272,'Torokbalint','Hungary','HU','Torokbalint (Hungary)',1,1,0),(47978,0,148273,'Torquay','United Kingdom','UK','Torquay (United Kingdom)',1,1,0),(47979,0,148274,'Torre del Pozzo','Italy','IT','Torre del Pozzo (Italy)',1,1,0),(47980,0,148275,'Torre Melissa','Italy','IT','Torre Melissa (Italy)',1,1,0),(47981,0,148276,'Torreblanca','Spain','ES','Torreblanca (Spain)',1,1,0),(47982,0,148277,'Torrelamata','Spain','ES','Torrelamata (Spain)',1,1,0),(47983,0,148278,'Torrelles de Llobregat','Spain','ES','Torrelles de Llobregat (Spain)',1,1,0),(47984,27545,148279,'Torrelodones','Spain','ES','Torrelodones (Spain)',1,1,0),(47985,0,148280,'Torrenieri','Italy','IT','Torrenieri (Italy)',1,1,0),(47986,27555,148281,'Torrevieja','Spain','ES','Torrevieja (Spain)',1,1,0),(47987,27556,148282,'Torrey','United States of America','US','Torrey (United States of America)',1,1,0),(47988,27557,148283,'Torri del Benaco','Italy','IT','Torri del Benaco (Italy)',1,1,0),(47989,0,148284,'Torri di Quartesolo','Italy','IT','Torri di Quartesolo (Italy)',1,1,0),(47990,27572,148285,'Tortola','British Virgin Islands','VG','Tortola (British Virgin Islands)',1,1,0),(47991,0,148286,'Tortoreto Lido','Italy','IT','Tortoreto Lido (Italy)',1,1,0),(47992,0,148287,'Totnes','United Kingdom','UK','Totnes (United Kingdom)',1,1,0),(47993,27607,148288,'Tourgeville','France','FR','Tourgeville (France)',1,1,0),(47994,27610,148289,'Tournai','Belgium','BE','Tournai (Belgium)',1,1,0),(47995,0,148290,'Touro','Spain','ES','Touro (Spain)',1,1,0),(47996,0,148291,'Touros','Brazil','BR','Touros (Brazil)',1,1,0),(47997,27635,148292,'Toyokawa','Japan','JP','Toyokawa (Japan)',1,1,0),(47998,27636,148293,'Toyonaka','Japan','JP','Toyonaka (Japan)',1,1,0),(47999,0,148294,'Trairi','Brazil','BR','Trairi (Brazil)',1,1,0),(48000,0,148295,'Tramelan','Switzerland','CH','Tramelan (Switzerland)',1,1,0),(48001,0,148296,'Trang Bom','Vietnam','VN','Trang Bom (Vietnam)',1,1,0),(48002,0,148297,'Trappenkamp','Germany','DE','Trappenkamp (Germany)',1,1,0),(48003,0,148298,'Traun','Austria','AT','Traun (Austria)',1,1,0),(48004,0,148299,'Travnik','Bosnia and Herzegowina','BA','Travnik (Bosnia and Herzegowina)',1,1,0),(48005,27691,148300,'Trebes','France','FR','Trebes (France)',1,1,0),(48006,0,148301,'Trebnje','Slovenia','SI','Trebnje (Slovenia)',1,1,0),(48007,27701,148302,'Treceno','Spain','ES','Treceno (Spain)',1,1,0),(48008,0,148303,'Tregde','Norway','NO','Tregde (Norway)',1,1,0),(48009,27711,148304,'Treia','Italy','IT','Treia (Italy)',1,1,0),(48010,0,148305,'Treignac','France','FR','Treignac (France)',1,1,0),(48011,27717,148306,'Trelew','Argentina','AR','Trelew (Argentina)',1,1,0),(48012,0,148307,'Tremp','Spain','ES','Tremp (Spain)',1,1,0),(48013,0,148308,'Tremsbuttel','Germany','DE','Tremsbuttel (Germany)',1,1,0),(48014,0,148309,'Trens','Italy','IT','Trens (Italy)',1,1,0),(48015,27733,148310,'Trento','Italy','IT','Trento (Italy)',1,1,0),(48016,0,148311,'Trenton','United States of America','US','Trenton (United States of America)',1,1,0),(48017,0,148312,'Tres Calas','Spain','ES','Tres Calas (Spain)',1,1,0),(48018,27741,148313,'Tresnuraghes','Italy','IT','Tresnuraghes (Italy)',1,1,0),(48019,0,148314,'Trezzano sul Naviglio','Italy','IT','Trezzano sul Naviglio (Italy)',1,1,0),(48020,27755,148315,'Triadelphia','United States of America','US','Triadelphia (United States of America)',1,1,0),(48021,27758,148316,'Tribunj','Croatia','HR','Tribunj (Croatia)',1,1,0),(48022,0,148317,'Triefenstein','Germany','DE','Triefenstein (Germany)',1,1,0),(48023,27767,148318,'Trignac','France','FR','Trignac (France)',1,1,0),(48024,27768,148319,'Trikala','Greece','GR','Trikala (Greece)',1,1,0),(48025,27773,148320,'Trinidad','Trinidad and Tobago','TT','Trinidad (Trinidad and Tobago)',1,1,0),(48026,27774,148321,'Trinidad','United States of America','US','Trinidad (United States of America)',1,1,0),(48027,27781,148322,'Trinity','Canada','CA','Trinity (Canada)',1,1,0),(48028,27786,148323,'Triora','Italy','IT','Triora (Italy)',1,1,0),(48029,0,148324,'Tristach','Austria','AT','Tristach (Austria)',1,1,0),(48030,0,148325,'Trjawna','Bulgaria','BG','Trjawna (Bulgaria)',1,1,0),(48031,0,148326,'Trojan','Bulgaria','BG','Trojan (Bulgaria)',1,1,0),(48032,0,148327,'Trollenhagen','Germany','DE','Trollenhagen (Germany)',1,1,0),(48033,0,148328,'Trooz','Belgium','BE','Trooz (Belgium)',1,1,0),(48034,27816,148329,'Tropolach','Austria','AT','Tropolach (Austria)',1,1,0),(48035,27824,148330,'Troutdale','United States of America','US','Troutdale (United States of America)',1,1,0),(48036,0,148331,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(48037,0,148332,'Troy','United States of America','US','Troy (United States of America)',1,1,0),(48038,0,148333,'Trstena','Slovakia','SK','Trstena (Slovakia)',1,1,0),(48039,0,148334,'Trumer Seenland','Austria','AT','Trumer Seenland (Austria)',1,1,0),(48040,27845,148335,'Truth or Consequences','United States of America','US','Truth or Consequences (United States of America)',1,1,0),(48041,27849,148336,'Trysil','Norway','NO','Trysil (Norway)',1,1,0),(48042,0,148337,'Tschappina','Switzerland','CH','Tschappina (Switzerland)',1,1,0),(48043,0,148338,'Tsivaras','Greece','GR','Tsivaras (Greece)',1,1,0),(48044,27880,148339,'Tubac','United States of America','US','Tubac (United States of America)',1,1,0),(48045,0,148340,'Tubarao','Brazil','BR','Tubarao (Brazil)',1,1,0),(48046,27893,148341,'Tudela','Spain','ES','Tudela (Spain)',1,1,0),(48047,0,148342,'Tudela de Duero','Spain','ES','Tudela de Duero (Spain)',1,1,0),(48048,0,148343,'Tuejar','Spain','ES','Tuejar (Spain)',1,1,0),(48049,27903,148344,'Tukums','Latvia','LV','Tukums (Latvia)',1,1,0),(48050,0,148345,'Tulamben','Indonesia','ID','Tulamben (Indonesia)',1,1,0),(48051,27922,148346,'Tulle','France','FR','Tulle (France)',1,1,0),(48052,27960,148347,'Turbeville','United States of America','US','Turbeville (United States of America)',1,1,0),(48053,0,148348,'Turgutreis','Turkey','TR','Turgutreis (Turkey)',1,1,0),(48054,0,148349,'Turkbuku','Turkey','TR','Turkbuku (Turkey)',1,1,0),(48055,0,148350,'Turquant','France','FR','Turquant (France)',1,1,0),(48056,0,148351,'Tu?ling','Germany','DE','Tu?ling (Germany)',1,1,0),(48057,0,148352,'Tutuila Island','American Samoa','AS','Tutuila Island (American Samoa)',1,1,0),(48058,28010,148353,'Tuy Hoa','Vietnam','VN','Tuy Hoa (Vietnam)',1,1,0),(48059,0,148354,'Tversted','Denmark','DK','Tversted (Denmark)',1,1,0),(48060,0,148355,'Tweng','Austria','AT','Tweng (Austria)',1,1,0),(48061,28021,148356,'Twillingate','Canada','CA','Twillingate (Canada)',1,1,0),(48062,0,148357,'Twimberg','Austria','AT','Twimberg (Austria)',1,1,0),(48063,28029,148358,'Tybee Island','United States of America','US','Tybee Island (United States of America)',1,1,0),(48064,28043,148359,'Tzaneen','South Africa','ZA','Tzaneen (South Africa)',1,1,0),(48065,33879,148360,'Ua Huka','French Polynesia','PF','Ua Huka (French Polynesia)',1,1,0),(48066,0,148361,'Uckeritz','Germany','DE','Uckeritz (Germany)',1,1,0),(48067,28063,148362,'Uden','Netherlands','NL','Uden (Netherlands)',1,1,0),(48068,0,148364,'Ufa','Russia','RU','Ufa (Russia)',1,1,0),(48069,0,148365,'Uhart-Cize','France','FR','Uhart-Cize (France)',1,1,0),(48070,28076,148366,'Uherske Hradiste','Czech Republic','CZ','Uherske Hradiste (Czech Republic)',1,1,0),(48071,0,148367,'Uis','Namibia','NA','Uis (Namibia)',1,1,0),(48072,0,148368,'Uithuizen','Netherlands','NL','Uithuizen (Netherlands)',1,1,0),(48073,28087,148369,'Ukunda','Kenya','KE','Ukunda (Kenya)',1,1,0),(48074,0,148370,'Ullersdorf','Germany','DE','Ullersdorf (Germany)',1,1,0),(48075,28118,148371,'Umag','Croatia','HR','Umag (Croatia)',1,1,0),(48076,28120,148372,'Umatilla','United States of America','US','Umatilla (United States of America)',1,1,0),(48077,0,148373,'Unayzah','Saudi Arabia','SA','Unayzah (Saudi Arabia)',1,1,0),(48078,28157,148375,'Unterageri','Switzerland','CH','Unterageri (Switzerland)',1,1,0),(48079,28162,148376,'Unteriberg','Switzerland','CH','Unteriberg (Switzerland)',1,1,0),(48080,0,148377,'Unterkohlstatten','Austria','AT','Unterkohlstatten (Austria)',1,1,0),(48081,0,148378,'Unterschneidheim','Germany','DE','Unterschneidheim (Germany)',1,1,0),(48082,0,148379,'Unteruhldingen','Germany','DE','Unteruhldingen (Germany)',1,1,0),(48083,0,148380,'Upgant-Schott','Germany','DE','Upgant-Schott (Germany)',1,1,0),(48084,0,148381,'Uphill','United Kingdom','UK','Uphill (United Kingdom)',1,1,0),(48085,0,148382,'Upper Adriatic Sea - Eraclea Mare','Italy','IT','Upper Adriatic Sea - Eraclea Mare (Italy)',1,1,0),(48086,33890,148383,'Upper Lake','United States of America','US','Upper Lake (United States of America)',1,1,0),(48087,33893,148384,'Upper Sandusky','United States of America','US','Upper Sandusky (United States of America)',1,1,0),(48088,0,148385,'Ureshino Onsen','Japan','JP','Ureshino Onsen (Japan)',1,1,0),(48089,28205,148386,'Urgench','Uzbekistan','UZ','Urgench (Uzbekistan)',1,1,0),(48090,0,148387,'Urjupinsk','Russia','RU','Urjupinsk (Russia)',1,1,0),(48091,0,148388,'Urlingford','Ireland','IE','Urlingford (Ireland)',1,1,0),(48092,28213,148389,'Urrugne','France','FR','Urrugne (France)',1,1,0),(48093,0,148390,'Ursberg','Germany','DE','Ursberg (Germany)',1,1,0),(48094,0,148391,'Urspringen','Germany','DE','Urspringen (Germany)',1,1,0),(48095,0,148392,'Urt','France','FR','Urt (France)',1,1,0),(48096,28227,148393,'Usedom','Germany','DE','Usedom (Germany)',1,1,0),(48097,28238,148394,'Ussac','France','FR','Ussac (France)',1,1,0),(48098,0,148395,'Ussuriysk','Russia','RU','Ussuriysk (Russia)',1,1,0),(48099,28246,148396,'Ustka','Poland','PL','Ustka (Poland)',1,1,0),(48100,28249,148397,'Usurbil','Spain','ES','Usurbil (Spain)',1,1,0),(48101,28256,148398,'Utiel','Spain','ES','Utiel (Spain)',1,1,0),(48102,0,148399,'Utila','Honduras','HN','Utila (Honduras)',1,1,0),(48103,28260,148400,'Utrecht','Netherlands','NL','Utrecht (Netherlands)',1,1,0),(48104,0,148401,'Uvala Borova','Croatia','HR','Uvala Borova (Croatia)',1,1,0),(48105,0,148402,'Vacqueyras','France','FR','Vacqueyras (France)',1,1,0),(48106,28300,148403,'Vadito','United States of America','US','Vadito (United States of America)',1,1,0),(48107,28306,148404,'Vadstena','Sweden','SE','Vadstena (Sweden)',1,1,0),(48108,28307,148405,'Vaduz','Liechtenstein','LI','Vaduz (Liechtenstein)',1,1,0),(48109,0,148408,'Vagia Beach','Greece','GR','Vagia Beach (Greece)',1,1,0),(48110,0,148409,'Vaglia','Italy','IT','Vaglia (Italy)',1,1,0),(48111,28327,148410,'Valbonne','France','FR','Valbonne (France)',1,1,0),(48112,0,148411,'Val-Cenis','France','FR','Val-Cenis (France)',1,1,0),(48113,28331,148412,'Valdeganga','Spain','ES','Valdeganga (Spain)',1,1,0),(48114,28342,148413,'Valdidentro','Italy','IT','Valdidentro (Italy)',1,1,0),(48115,33921,148414,'Vale do Lobo','Portugal','PT','Vale do Lobo (Portugal)',1,1,0),(48116,0,148415,'Valenca do Douro','Portugal','PT','Valenca do Douro (Portugal)',1,1,0),(48117,28362,148416,'Valenza','Italy','IT','Valenza (Italy)',1,1,0),(48118,28381,148417,'Valldal','Norway','NO','Valldal (Norway)',1,1,0),(48119,28387,148418,'Vallejo','United States of America','US','Vallejo (United States of America)',1,1,0),(48120,33933,148419,'Valley','United States of America','US','Valley (United States of America)',1,1,0),(48121,28391,148420,'Valley Church','Antigua & Barbuda','AG','Valley Church (Antigua & Barbuda)',1,1,0),(48122,33942,148421,'Valley Park','United States of America','US','Valley Park (United States of America)',1,1,0),(48123,0,148422,'Vallo della Lucania','Italy','IT','Vallo della Lucania (Italy)',1,1,0),(48124,0,148423,'Vallromanes','Spain','ES','Vallromanes (Spain)',1,1,0),(48125,0,148424,'Valmontone','Italy','IT','Valmontone (Italy)',1,1,0),(48126,28406,148425,'Valmorel','France','FR','Valmorel (France)',1,1,0),(48127,0,148426,'Valras Plage','France','FR','Valras Plage (France)',1,1,0),(48128,0,148427,'Valtura','Croatia','HR','Valtura (Croatia)',1,1,0),(48129,33946,148428,'Van Horn','United States of America','US','Van Horn (United States of America)',1,1,0),(48130,33948,148429,'Van Wert','United States of America','US','Van Wert (United States of America)',1,1,0),(48131,0,148430,'Van Zylsrus','South Africa','ZA','Van Zylsrus (South Africa)',1,1,0),(48132,33949,148431,'Vantaa','Finland','FI','Vantaa (Finland)',1,1,0),(48133,28445,148432,'Vaprio d\'Adda','Italy','IT','Vaprio d\'Adda (Italy)',1,1,0),(48134,0,148433,'Vara de Rey','Spain','ES','Vara de Rey (Spain)',1,1,0),(48135,0,148434,'Varna','Bulgaria','BG','Varna (Bulgaria)',1,1,0),(48136,0,148435,'Varnsdorf','Czech Republic','CZ','Varnsdorf (Czech Republic)',1,1,0),(48137,28475,148436,'Vars','France','FR','Vars (France)',1,1,0),(48138,0,148437,'Varsenare','Belgium','BE','Varsenare (Belgium)',1,1,0),(48139,0,148438,'Vassilikos','Greece','GR','Vassilikos (Greece)',1,1,0),(48140,28485,148439,'Vasterhaninge','Sweden','SE','Vasterhaninge (Sweden)',1,1,0),(48141,28486,148440,'Vastervik','Sweden','SE','Vastervik (Sweden)',1,1,0),(48142,28488,148441,'Vatera','Greece','GR','Vatera (Greece)',1,1,0),(48143,0,148442,'Vatra Dornei','Romania','RO','Vatra Dornei (Romania)',1,1,0),(48144,28497,148443,'Vatulele Island','Fiji Islands','FJ','Vatulele Island (Fiji Islands)',1,1,0),(48145,0,148444,'Vau','Portugal','PT','Vau (Portugal)',1,1,0),(48146,0,148445,'Vauldalen','Norway','NO','Vauldalen (Norway)',1,1,0),(48147,0,148447,'Vechta','Germany','DE','Vechta (Germany)',1,1,0),(48148,0,148448,'Veiprty','Czech Republic','CZ','Veiprty (Czech Republic)',1,1,0),(48149,0,148449,'Vela Traba','Croatia','HR','Vela Traba (Croatia)',1,1,0),(48150,0,148451,'Velassaru (Laguna)','Maldives','MV','Velassaru (Laguna) (Maldives)',1,1,0),(48151,0,148452,'Velburg','Germany','DE','Velburg (Germany)',1,1,0),(48152,28539,148453,'Velenje','Slovenia','SI','Velenje (Slovenia)',1,1,0),(48153,0,148454,'Velha Boipeba','Brazil','BR','Velha Boipeba (Brazil)',1,1,0),(48154,28550,148455,'Velizy-Villacoublay','France','FR','Velizy-Villacoublay (France)',1,1,0),(48155,0,148456,'Velka Hledsebe','Czech Republic','CZ','Velka Hledsebe (Czech Republic)',1,1,0),(48156,0,148457,'Velke Karlovice','Czech Republic','CZ','Velke Karlovice (Czech Republic)',1,1,0),(48157,0,148458,'Vellinge','Sweden','SE','Vellinge (Sweden)',1,1,0),(48158,0,148460,'Venda Nova','Portugal','PT','Venda Nova (Portugal)',1,1,0),(48159,0,148461,'Vendas Novas','Portugal','PT','Vendas Novas (Portugal)',1,1,0),(48160,0,148462,'Vendlincourt','Switzerland','CH','Vendlincourt (Switzerland)',1,1,0),(48161,28574,148463,'Venice','Italy','IT','Venice (Italy)',1,1,0),(48162,28581,148464,'Venray','Netherlands','NL','Venray (Netherlands)',1,1,0),(48163,0,148465,'Vente','Lithuania','LT','Vente (Lithuania)',1,1,0),(48164,0,148466,'Ventosa','Portugal','PT','Ventosa (Portugal)',1,1,0),(48165,28589,148467,'Ventspils','Latvia','LV','Ventspils (Latvia)',1,1,0),(48166,33955,148468,'Vera','Spain','ES','Vera (Spain)',1,1,0),(48167,28593,148469,'Veracruz','Mexico','MX','Veracruz (Mexico)',1,1,0),(48168,28608,148470,'Vereeniging','South Africa','ZA','Vereeniging (South Africa)',1,1,0),(48169,0,148471,'Vergt','France','FR','Vergt (France)',1,1,0),(48170,28612,148472,'Veria','Greece','GR','Veria (Greece)',1,1,0),(48171,0,148473,'Vermicino','Italy','IT','Vermicino (Italy)',1,1,0),(48172,0,148474,'Vernon','United States of America','US','Vernon (United States of America)',1,1,0),(48173,28630,148475,'Vero Beach','United States of America','US','Vero Beach (United States of America)',1,1,0),(48174,0,148476,'Vers-chez-Perrin','Switzerland','CH','Vers-chez-Perrin (Switzerland)',1,1,0),(48175,28644,148477,'Vert-Saint-Denis','France','FR','Vert-Saint-Denis (France)',1,1,0),(48176,28655,148478,'Vessa','Greece','GR','Vessa (Greece)',1,1,0),(48177,28660,148479,'Vesuvius','United States of America','US','Vesuvius (United States of America)',1,1,0),(48178,28673,148480,'Vezac','France','FR','Vezac (France)',1,1,0),(48179,0,148481,'Vezinnes','France','FR','Vezinnes (France)',1,1,0),(48180,0,148482,'Vibo Marina','Italy','IT','Vibo Marina (Italy)',1,1,0),(48181,28682,148483,'Vibo Valentia','Italy','IT','Vibo Valentia (Italy)',1,1,0),(48182,0,148484,'Vicosa','Brazil','BR','Vicosa (Brazil)',1,1,0),(48183,0,148485,'Vicosoprano','Switzerland','CH','Vicosoprano (Switzerland)',1,1,0),(48184,28702,148486,'Victoria','Seychelles','SC','Victoria (Seychelles)',1,1,0),(48185,28710,148487,'Vidago','Portugal','PT','Vidago (Portugal)',1,1,0),(48186,0,148488,'Vidra','Romania','RO','Vidra (Romania)',1,1,0),(48187,28724,148489,'Viella','Spain','ES','Viella (Spain)',1,1,0),(48188,0,148490,'Vienna','United States of America','US','Vienna (United States of America)',1,1,0),(48189,28733,148491,'Vierhouten','Netherlands','NL','Vierhouten (Netherlands)',1,1,0),(48190,28738,148492,'Vieste','Italy','IT','Vieste (Italy)',1,1,0),(48191,28749,148493,'Vigevano','Italy','IT','Vigevano (Italy)',1,1,0),(48192,0,148494,'Vigla','Greece','GR','Vigla (Greece)',1,1,0),(48193,0,148495,'Vigneux-de-Bretagne','France','FR','Vigneux-de-Bretagne (France)',1,1,0),(48194,0,148496,'Vignola Mare','Italy','IT','Vignola Mare (Italy)',1,1,0),(48195,0,148497,'Vigo di Fassa','Italy','IT','Vigo di Fassa (Italy)',1,1,0),(48196,0,148498,'Vigolo Vattaro','Italy','IT','Vigolo Vattaro (Italy)',1,1,0),(48197,0,148499,'Viitaniemi','Finland','FI','Viitaniemi (Finland)',1,1,0),(48198,0,148501,'Viktorsberg','Austria','AT','Viktorsberg (Austria)',1,1,0),(48199,0,148502,'Vila Baleira','Portugal','PT','Vila Baleira (Portugal)',1,1,0),(48200,0,148503,'Vila Nova de Cacela','Portugal','PT','Vila Nova de Cacela (Portugal)',1,1,0),(48201,33977,148504,'Vila Nova de Cerveira','Portugal','PT','Vila Nova de Cerveira (Portugal)',1,1,0),(48202,28771,148505,'Vilamarxant','Spain','ES','Vilamarxant (Spain)',1,1,0),(48203,0,148506,'Vilanova','Spain','ES','Vilanova (Spain)',1,1,0),(48204,28780,148507,'Vilches','Spain','ES','Vilches (Spain)',1,1,0),(48205,0,148508,'Villa La Angostura','Argentina','AR','Villa La Angostura (Argentina)',1,1,0),(48206,0,148509,'Villa Mercedes','Argentina','AR','Villa Mercedes (Argentina)',1,1,0),(48207,0,148510,'Villa San Agustin','Argentina','AR','Villa San Agustin (Argentina)',1,1,0),(48208,0,148511,'Villacarrillo','Spain','ES','Villacarrillo (Spain)',1,1,0),(48209,0,148512,'Villafranca de los Barros','Spain','ES','Villafranca de los Barros (Spain)',1,1,0),(48210,0,148513,'Villafranca Montes de Oca','Spain','ES','Villafranca Montes de Oca (Spain)',1,1,0),(48211,0,148514,'Villammare','Italy','IT','Villammare (Italy)',1,1,0),(48212,0,148515,'Villanova Mondovi','Italy','IT','Villanova Mondovi (Italy)',1,1,0),(48213,0,148516,'Villanueva de la Condesa','Spain','ES','Villanueva de la Condesa (Spain)',1,1,0),(48214,0,148517,'Villar','Switzerland','CH','Villar (Switzerland)',1,1,0),(48215,28826,148518,'Villaralbo','Spain','ES','Villaralbo (Spain)',1,1,0),(48216,28831,148519,'Villarluengo','Spain','ES','Villarluengo (Spain)',1,1,0),(48217,0,148520,'Villars-Colmars','France','FR','Villars-Colmars (France)',1,1,0),(48218,28844,148521,'Villavicencio','Colombia','CO','Villavicencio (Colombia)',1,1,0),(48219,0,148522,'Villefranche-de-Rouergue','France','FR','Villefranche-de-Rouergue (France)',1,1,0),(48220,28858,148523,'Villejuif','France','FR','Villejuif (France)',1,1,0),(48221,0,148524,'Villenave-d\'Ornon','France','FR','Villenave-d\'Ornon (France)',1,1,0),(48222,28874,148525,'Villequier','France','FR','Villequier (France)',1,1,0),(48223,0,148526,'Villeroy','France','FR','Villeroy (France)',1,1,0),(48224,0,148527,'Villers-sur-Lesse','Belgium','BE','Villers-sur-Lesse (Belgium)',1,1,0),(48225,0,148528,'Villetta Barrea','Italy','IT','Villetta Barrea (Italy)',1,1,0),(48226,0,148529,'Villeurbanne','France','FR','Villeurbanne (France)',1,1,0),(48227,0,148530,'Villeuve-Loubet','France','FR','Villeuve-Loubet (France)',1,1,0),(48228,0,148531,'Vilters-Wangs','Switzerland','CH','Vilters-Wangs (Switzerland)',1,1,0),(48229,28896,148532,'Vimercate','Italy','IT','Vimercate (Italy)',1,1,0),(48230,28899,148533,'Vimperk','Czech Republic','CZ','Vimperk (Czech Republic)',1,1,0),(48231,28904,148534,'Vinassan','France','FR','Vinassan (France)',1,1,0),(48232,28923,148535,'Vinita','United States of America','US','Vinita (United States of America)',1,1,0),(48233,28929,148536,'Vinstra','Norway','NO','Vinstra (Norway)',1,1,0),(48234,28930,148537,'Vintl','Italy','IT','Vintl (Italy)',1,1,0),(48235,0,148538,'Violes','France','FR','Violes (France)',1,1,0),(48236,28937,148539,'Vire','France','FR','Vire (France)',1,1,0),(48237,0,148540,'Virrat','Finland','FI','Virrat (Finland)',1,1,0),(48238,0,148541,'Viry (Haute-Savoie)','France','FR','Viry (Haute-Savoie) (France)',1,1,0),(48239,0,148542,'Visaginas','Lithuania','LT','Visaginas (Lithuania)',1,1,0),(48240,0,148543,'Visitsa','Greece','GR','Visitsa (Greece)',1,1,0),(48241,28965,148544,'Vissenbjerg','Denmark','DK','Vissenbjerg (Denmark)',1,1,0),(48242,0,148545,'Vitalades','Greece','GR','Vitalades (Greece)',1,1,0),(48243,0,148546,'Vitoria da Conquista','Brazil','BR','Vitoria da Conquista (Brazil)',1,1,0),(48244,28976,148547,'Vitrac','France','FR','Vitrac (France)',1,1,0),(48245,28982,148548,'Vittel','France','FR','Vittel (France)',1,1,0),(48246,0,148549,'Vityazevo','Russia','RU','Vityazevo (Russia)',1,1,0),(48247,0,148550,'Vivaro','Italy','IT','Vivaro (Italy)',1,1,0),(48248,0,148551,'Vizela','Portugal','PT','Vizela (Portugal)',1,1,0),(48249,0,148552,'Vlagtwedde','Netherlands','NL','Vlagtwedde (Netherlands)',1,1,0),(48250,0,148553,'Vockenrot','Germany','DE','Vockenrot (Germany)',1,1,0),(48251,0,148554,'Vodable','France','FR','Vodable (France)',1,1,0),(48252,0,148555,'Vodochody','Czech Republic','CZ','Vodochody (Czech Republic)',1,1,0),(48253,0,148556,'Voerde','Germany','DE','Voerde (Germany)',1,1,0),(48254,0,148557,'Voeren','Belgium','BE','Voeren (Belgium)',1,1,0),(48255,0,148558,'Vogtsburg im Kaiserstuhl','Germany','DE','Vogtsburg im Kaiserstuhl (Germany)',1,1,0),(48256,0,148559,'Volpago del Montello','Italy','IT','Volpago del Montello (Italy)',1,1,0),(48257,0,148560,'Vols on Schlern','Italy','IT','Vols on Schlern (Italy)',1,1,0),(48258,29043,148561,'Volta Mantovana','Italy','IT','Volta Mantovana (Italy)',1,1,0),(48259,0,148562,'Voluntari','Romania','RO','Voluntari (Romania)',1,1,0),(48260,0,148563,'Vorau','Austria','AT','Vorau (Austria)',1,1,0),(48261,0,148564,'Vorden','Netherlands','NL','Vorden (Netherlands)',1,1,0),(48262,0,148565,'Vosu','Estonia','EE','Vosu (Estonia)',1,1,0),(48263,0,148566,'Votuporanga','Brazil','BR','Votuporanga (Brazil)',1,1,0),(48264,29070,148567,'Vouille','France','FR','Vouille (France)',1,1,0),(48265,0,148568,'Vounaria','Greece','GR','Vounaria (Greece)',1,1,0),(48266,0,148569,'Voutenay sur Cure','France','FR','Voutenay sur Cure (France)',1,1,0),(48267,29077,148570,'Voves','France','FR','Voves (France)',1,1,0),(48268,0,148571,'Vraz','Czech Republic','CZ','Vraz (Czech Republic)',1,1,0),(48269,0,148572,'Vrbno pod Pradedem','Czech Republic','CZ','Vrbno pod Pradedem (Czech Republic)',1,1,0),(48270,0,148573,'Vrboska','Croatia','HR','Vrboska (Croatia)',1,1,0),(48271,0,148574,'Vremde','Belgium','BE','Vremde (Belgium)',1,1,0),(48272,0,148575,'Vromolithos','Greece','GR','Vromolithos (Greece)',1,1,0),(48273,0,148576,'Vufflens-le-Chateau','Switzerland','CH','Vufflens-le-Chateau (Switzerland)',1,1,0),(48274,0,148577,'Vuillecin','France','FR','Vuillecin (France)',1,1,0),(48275,0,148578,'Vukovar','Croatia','HR','Vukovar (Croatia)',1,1,0),(48276,0,148579,'Vyhne','Slovakia','SK','Vyhne (Slovakia)',1,1,0),(48277,0,148580,'Vyskovec','Czech Republic','CZ','Vyskovec (Czech Republic)',1,1,0),(48278,29104,148581,'Vysoke Tatry','Slovakia','SK','Vysoke Tatry (Slovakia)',1,1,0),(48279,34007,148582,'Wa Keeney','United States of America','US','Wa Keeney (United States of America)',1,1,0),(48280,29109,148583,'Waalwijk','Netherlands','NL','Waalwijk (Netherlands)',1,1,0),(48281,0,148584,'Wachtersbach','Germany','DE','Wachtersbach (Germany)',1,1,0),(48282,29123,148585,'Wadern','Germany','DE','Wadern (Germany)',1,1,0),(48283,0,148586,'Wadowice','Poland','PL','Wadowice (Poland)',1,1,0),(48284,0,148587,'Wagenfeld','Germany','DE','Wagenfeld (Germany)',1,1,0),(48285,0,148588,'Walcourt','Belgium','BE','Walcourt (Belgium)',1,1,0),(48286,0,148589,'Waldbrunn','Germany','DE','Waldbrunn (Germany)',1,1,0),(48287,0,148590,'Waldenbuch','Germany','DE','Waldenbuch (Germany)',1,1,0),(48288,0,148591,'Waldfenster','Germany','DE','Waldfenster (Germany)',1,1,0),(48289,0,148592,'Waldhausen','Austria','AT','Waldhausen (Austria)',1,1,0),(48290,0,148593,'Waldkappel','Germany','DE','Waldkappel (Germany)',1,1,0),(48291,29195,148594,'Waldkraiburg','Germany','DE','Waldkraiburg (Germany)',1,1,0),(48292,29196,148595,'Waldmunchen','Germany','DE','Waldmunchen (Germany)',1,1,0),(48293,0,148596,'Waldstetten','Germany','DE','Waldstetten (Germany)',1,1,0),(48294,0,148597,'Waleabahi','Indonesia','ID','Waleabahi (Indonesia)',1,1,0),(48295,29218,148598,'Walldurn','Germany','DE','Walldurn (Germany)',1,1,0),(48296,0,148599,'Wallersheim','Germany','DE','Wallersheim (Germany)',1,1,0),(48297,29228,148600,'Walloon Lake','United States of America','US','Walloon Lake (United States of America)',1,1,0),(48298,0,148601,'Walnut Shade','United States of America','US','Walnut Shade (United States of America)',1,1,0),(48299,29234,148602,'Wals','Austria','AT','Wals (Austria)',1,1,0),(48300,0,148603,'Waltersdorf','Germany','DE','Waltersdorf (Germany)',1,1,0),(48301,0,148604,'Waltham Forest','United Kingdom','UK','Waltham Forest (United Kingdom)',1,1,0),(48302,29250,148605,'Wamego','United States of America','US','Wamego (United States of America)',1,1,0),(48303,29252,148606,'Wan Li','Taiwan','TW','Wan Li (Taiwan)',1,1,0),(48304,0,148607,'Wang Phong','Thailand','TH','Wang Phong (Thailand)',1,1,0),(48305,29258,148608,'Wanganui','New Zealand','NZ','Wanganui (New Zealand)',1,1,0),(48306,0,148609,'Warka','Poland','PL','Warka (Poland)',1,1,0),(48307,0,148610,'Warlincourt-les-Pas','France','FR','Warlincourt-les-Pas (France)',1,1,0),(48308,0,148611,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(48309,0,148612,'Warren','United States of America','US','Warren (United States of America)',1,1,0),(48310,29311,148613,'Warrensville Heights','United States of America','US','Warrensville Heights (United States of America)',1,1,0),(48311,29319,148614,'Warsaw','Poland','PL','Warsaw (Poland)',1,1,0),(48312,0,148615,'Wartmannsroth','Germany','DE','Wartmannsroth (Germany)',1,1,0),(48313,0,148616,'Warwick','United States of America','US','Warwick (United States of America)',1,1,0),(48314,29330,148617,'Wasaga Beach','Canada','CA','Wasaga Beach (Canada)',1,1,0),(48315,0,148618,'Waschenbeuren','Germany','DE','Waschenbeuren (Germany)',1,1,0),(48316,0,148619,'Washington','United States of America','US','Washington (United States of America)',1,1,0),(48317,0,148620,'Washington Court House','United States of America','US','Washington Court House (United States of America)',1,1,0),(48318,29344,148621,'Wassenberg','Germany','DE','Wassenberg (Germany)',1,1,0),(48319,0,148622,'Waterford','United States of America','US','Waterford (United States of America)',1,1,0),(48320,0,148623,'Watermouth','United Kingdom','UK','Watermouth (United Kingdom)',1,1,0),(48321,0,148624,'Waterton Lakes','Canada','CA','Waterton Lakes (Canada)',1,1,0),(48322,0,148625,'Waterval Onder','South Africa','ZA','Waterval Onder (South Africa)',1,1,0),(48323,0,148626,'Watford','United Kingdom','UK','Watford (United Kingdom)',1,1,0),(48324,29383,148627,'Watson Lake','Canada','CA','Watson Lake (Canada)',1,1,0),(48325,29403,148628,'Wausau','United States of America','US','Wausau (United States of America)',1,1,0),(48326,29405,148629,'Wautoma','United States of America','US','Wautoma (United States of America)',1,1,0),(48327,0,148631,'Weaverville','United States of America','US','Weaverville (United States of America)',1,1,0),(48328,29434,148632,'Weedsport','United States of America','US','Weedsport (United States of America)',1,1,0),(48329,29440,148633,'Weert','Netherlands','NL','Weert (Netherlands)',1,1,0),(48330,29446,148634,'Weifang','China','CN','Weifang (China)',1,1,0),(48331,0,148635,'Weiherhammer','Germany','DE','Weiherhammer (Germany)',1,1,0),(48332,29448,148636,'Weikersheim','Germany','DE','Weikersheim (Germany)',1,1,0),(48333,0,148637,'Weil der Stadt','Germany','DE','Weil der Stadt (Germany)',1,1,0),(48334,0,148638,'Weilbach Unterfr','Germany','DE','Weilbach Unterfr (Germany)',1,1,0),(48335,0,148639,'Weiler- Simmerberg','Germany','DE','Weiler- Simmerberg (Germany)',1,1,0),(48336,0,148640,'Weilheim in Oberbayern','Germany','DE','Weilheim in Oberbayern (Germany)',1,1,0),(48337,29459,148641,'Weinheim','Germany','DE','Weinheim (Germany)',1,1,0),(48338,0,148642,'Weinsberg','Germany','DE','Weinsberg (Germany)',1,1,0),(48339,0,148643,'Weisenbach','Germany','DE','Weisenbach (Germany)',1,1,0),(48340,0,148644,'Weissach (Wurttemberg)','Germany','DE','Weissach (Wurttemberg) (Germany)',1,1,0),(48341,0,148645,'Wei?enberg','Germany','DE','Wei?enberg (Germany)',1,1,0),(48342,0,148646,'Weissenhaus','Germany','DE','Weissenhaus (Germany)',1,1,0),(48343,29473,148647,'Weissensee','Austria','AT','Weissensee (Austria)',1,1,0),(48344,0,148648,'Wejherowo','Poland','PL','Wejherowo (Poland)',1,1,0),(48345,0,148649,'Wellington (Shropshire)','United Kingdom','UK','Wellington (Shropshire) (United Kingdom)',1,1,0),(48346,0,148650,'Welwyn Garden City','United Kingdom','UK','Welwyn Garden City (United Kingdom)',1,1,0),(48347,0,148651,'Wenns','Austria','AT','Wenns (Austria)',1,1,0),(48348,0,148652,'Wentworth Falls','Australia','AU','Wentworth Falls (Australia)',1,1,0),(48349,0,148653,'Werdau','Germany','DE','Werdau (Germany)',1,1,0),(48350,0,148654,'Werdum','Germany','DE','Werdum (Germany)',1,1,0),(48351,0,148655,'Werfen','Austria','AT','Werfen (Austria)',1,1,0),(48352,29532,148656,'Wesendorf','Germany','DE','Wesendorf (Germany)',1,1,0),(48353,0,148657,'We?ling','Germany','DE','We?ling (Germany)',1,1,0),(48354,0,148658,'West Auckland','United Kingdom','UK','West Auckland (United Kingdom)',1,1,0),(48355,0,148659,'West Columbia','United States of America','US','West Columbia (United States of America)',1,1,0),(48356,34123,148660,'West Ryde','Australia','AU','West Ryde (Australia)',1,1,0),(48357,0,148661,'West Wycombe','United Kingdom','UK','West Wycombe (United Kingdom)',1,1,0),(48358,0,148662,'Westendorf','Germany','DE','Westendorf (Germany)',1,1,0),(48359,0,148663,'Westerhoven','Netherlands','NL','Westerhoven (Netherlands)',1,1,0),(48360,29590,148664,'Westley','United States of America','US','Westley (United States of America)',1,1,0),(48361,29610,148665,'Westport','New Zealand','NZ','Westport (New Zealand)',1,1,0),(48362,0,148666,'Wetlina','Poland','PL','Wetlina (Poland)',1,1,0),(48363,29623,148667,'Wetmore','United States of America','US','Wetmore (United States of America)',1,1,0),(48364,29625,148668,'Wetter','Germany','DE','Wetter (Germany)',1,1,0),(48365,29630,148669,'Wexford','Ireland','IE','Wexford (Ireland)',1,1,0),(48366,29655,148670,'Wheeler','United States of America','US','Wheeler (United States of America)',1,1,0),(48367,0,148671,'Wheeler Ridge','United States of America','US','Wheeler Ridge (United States of America)',1,1,0),(48368,34158,148672,'White Hall','United States of America','US','White Hall (United States of America)',1,1,0),(48369,34159,148673,'White Haven','United States of America','US','White Haven (United States of America)',1,1,0),(48370,34161,148674,'White House','United States of America','US','White House (United States of America)',1,1,0),(48371,0,148675,'White Point','Canada','CA','White Point (Canada)',1,1,0),(48372,34170,148676,'White Post','United States of America','US','White Post (United States of America)',1,1,0),(48373,0,148677,'White Rock','Canada','CA','White Rock (Canada)',1,1,0),(48374,0,148678,'Whitfield','United Kingdom','UK','Whitfield (United Kingdom)',1,1,0),(48375,0,148679,'Whitland','United Kingdom','UK','Whitland (United Kingdom)',1,1,0),(48376,29702,148680,'Whitmore Lake','United States of America','US','Whitmore Lake (United States of America)',1,1,0),(48377,0,148681,'Whitstable','United Kingdom','UK','Whitstable (United Kingdom)',1,1,0),(48378,0,148682,'Wiazowna','Poland','PL','Wiazowna (Poland)',1,1,0),(48379,0,148683,'Wichita Falls','United States of America','US','Wichita Falls (United States of America)',1,1,0),(48380,0,148684,'Wick','United Kingdom','UK','Wick (United Kingdom)',1,1,0),(48381,29718,148685,'Wickliffe','United States of America','US','Wickliffe (United States of America)',1,1,0),(48382,0,148686,'Wicklow','Ireland','IE','Wicklow (Ireland)',1,1,0),(48383,0,148687,'Wiedemar','Germany','DE','Wiedemar (Germany)',1,1,0),(48384,0,148688,'Wiesa','Germany','DE','Wiesa (Germany)',1,1,0),(48385,0,148689,'Wiesen','Italy','IT','Wiesen (Italy)',1,1,0),(48386,29734,148690,'Wiesloch','Germany','DE','Wiesloch (Germany)',1,1,0),(48387,0,148691,'Wigan','United Kingdom','UK','Wigan (United Kingdom)',1,1,0),(48388,29737,148692,'Wiggins','United States of America','US','Wiggins (United States of America)',1,1,0),(48389,0,148693,'Wijlre','Netherlands','NL','Wijlre (Netherlands)',1,1,0),(48390,0,148694,'Wil SG','Switzerland','CH','Wil SG (Switzerland)',1,1,0),(48391,29753,148695,'Wilderswil','Switzerland','CH','Wilderswil (Switzerland)',1,1,0),(48392,29767,148696,'Willebadessen','Germany','DE','Willebadessen (Germany)',1,1,0),(48393,0,148697,'Willemstad','Curaçao','CW','Willemstad (Curaçao)',1,1,0),(48394,0,148698,'Williamsport','United States of America','US','Williamsport (United States of America)',1,1,0),(48395,0,148699,'Willington','United Kingdom','UK','Willington (United Kingdom)',1,1,0),(48396,0,148700,'Willow Springs','United States of America','US','Willow Springs (United States of America)',1,1,0),(48397,29799,148701,'Willows','United States of America','US','Willows (United States of America)',1,1,0),(48398,29801,148702,'Wills Point','United States of America','US','Wills Point (United States of America)',1,1,0),(48399,0,148703,'Willstatt','Germany','DE','Willstatt (Germany)',1,1,0),(48400,0,148704,'Willunga','Australia','AU','Willunga (Australia)',1,1,0),(48401,0,148705,'Wilmington','United States of America','US','Wilmington (United States of America)',1,1,0),(48402,29815,148706,'Wilsonville','United States of America','US','Wilsonville (United States of America)',1,1,0),(48403,0,148707,'Wilsum','Germany','DE','Wilsum (Germany)',1,1,0),(48404,0,148708,'Windsor','United Kingdom','UK','Windsor (United Kingdom)',1,1,0),(48405,29864,148709,'Winnie','United States of America','US','Winnie (United States of America)',1,1,0),(48406,0,148710,'Winnsboro','United States of America','US','Winnsboro (United States of America)',1,1,0),(48407,0,148711,'Winter Haven','United States of America','US','Winter Haven (United States of America)',1,1,0),(48408,0,148712,'Winterham','United States of America','US','Winterham (United States of America)',1,1,0),(48409,0,148713,'Winterhausen','Germany','DE','Winterhausen (Germany)',1,1,0),(48410,29880,148714,'Winterscheid','Germany','DE','Winterscheid (Germany)',1,1,0),(48411,29884,148715,'Winterton','South Africa','ZA','Winterton (South Africa)',1,1,0),(48412,0,148716,'Wirges','Germany','DE','Wirges (Germany)',1,1,0),(48413,0,148717,'Wirtzfeld','Belgium','BE','Wirtzfeld (Belgium)',1,1,0),(48414,0,148718,'Wisch','Germany','DE','Wisch (Germany)',1,1,0),(48415,0,148719,'Wisdom','United States of America','US','Wisdom (United States of America)',1,1,0),(48416,29905,148720,'Wisques','France','FR','Wisques (France)',1,1,0),(48417,0,148721,'Wissant','France','FR','Wissant (France)',1,1,0),(48418,0,148722,'Witless Bay','Canada','CA','Witless Bay (Canada)',1,1,0),(48419,0,148723,'Witney','United Kingdom','UK','Witney (United Kingdom)',1,1,0),(48420,0,148724,'Wittdun','Germany','DE','Wittdun (Germany)',1,1,0),(48421,29921,148725,'Wittenberg','United States of America','US','Wittenberg (United States of America)',1,1,0),(48422,0,148726,'Wittenberge','Germany','DE','Wittenberge (Germany)',1,1,0),(48423,29922,148727,'Wittenburg','Germany','DE','Wittenburg (Germany)',1,1,0),(48424,0,148728,'Wolchow','Russia','RU','Wolchow (Russia)',1,1,0),(48425,29939,148729,'Wolcott','United States of America','US','Wolcott (United States of America)',1,1,0),(48426,0,148730,'Wolf Point','United States of America','US','Wolf Point (United States of America)',1,1,0),(48427,0,148731,'Wongaling Beach','Australia','AU','Wongaling Beach (Australia)',1,1,0),(48428,0,148732,'Wonju','South Korea','KR','Wonju (South Korea)',1,1,0),(48429,34187,148733,'Wood Dale','United States of America','US','Wood Dale (United States of America)',1,1,0),(48430,0,148734,'Woodbury','United States of America','US','Woodbury (United States of America)',1,1,0),(48431,0,148735,'Woodford Green','United Kingdom','UK','Woodford Green (United Kingdom)',1,1,0),(48432,0,148736,'Woodland','United States of America','US','Woodland (United States of America)',1,1,0),(48433,0,148737,'Woodstock','United Kingdom','UK','Woodstock (United Kingdom)',1,1,0),(48434,30015,148738,'Woonsocket','United States of America','US','Woonsocket (United States of America)',1,1,0),(48435,0,148739,'Wootton Bridge','United Kingdom','UK','Wootton Bridge (United Kingdom)',1,1,0),(48436,0,148740,'Worcester','South Africa','ZA','Worcester (South Africa)',1,1,0),(48437,30031,148741,'Worms','Germany','DE','Worms (Germany)',1,1,0),(48438,0,148742,'Wrea Green','United Kingdom','UK','Wrea Green (United Kingdom)',1,1,0),(48439,30061,148743,'Wujiang','China','CN','Wujiang (China)',1,1,0),(48440,0,148744,'Wurselen','Germany','DE','Wurselen (Germany)',1,1,0),(48441,30077,148745,'Wuyishan','China','CN','Wuyishan (China)',1,1,0),(48442,0,148746,'Wyksa','Russia','RU','Wyksa (Russia)',1,1,0),(48443,30088,148747,'Wynne','United States of America','US','Wynne (United States of America)',1,1,0),(48444,30108,148748,'Xenia','United States of America','US','Xenia (United States of America)',1,1,0),(48445,30116,148749,'Xiangtan','China','CN','Xiangtan (China)',1,1,0),(48446,30123,148750,'Xichang','China','CN','Xichang (China)',1,1,0),(48447,0,148751,'Xuancheng','China','CN','Xuancheng (China)',1,1,0),(48448,0,148752,'Yakhroma','Russia','RU','Yakhroma (Russia)',1,1,0),(48449,30167,148753,'Yamaguchi','Japan','JP','Yamaguchi (Japan)',1,1,0),(48450,30185,148754,'Yancheng','China','CN','Yancheng (China)',1,1,0),(48451,30188,148755,'Yangjiang','China','CN','Yangjiang (China)',1,1,0),(48452,30194,148756,'Yangzhou','China','CN','Yangzhou (China)',1,1,0),(48453,30197,148757,'Yankton','United States of America','US','Yankton (United States of America)',1,1,0),(48454,30203,148758,'Yap','Micronesia','FM','Yap (Micronesia)',1,1,0),(48455,0,148759,'Yapahuwa','Sri Lanka','LK','Yapahuwa (Sri Lanka)',1,1,0),(48456,30204,148760,'Yaqeta Island','Fiji Islands','FJ','Yaqeta Island (Fiji Islands)',1,1,0),(48457,30207,148761,'Yarmouth','Canada','CA','Yarmouth (Canada)',1,1,0),(48458,0,148762,'Yarmouth','United Kingdom','UK','Yarmouth (United Kingdom)',1,1,0),(48459,0,148763,'Yarra Valley','Australia','AU','Yarra Valley (Australia)',1,1,0),(48460,30218,148764,'Yass','Australia','AU','Yass (Australia)',1,1,0),(48461,0,148765,'Yateley','United Kingdom','UK','Yateley (United Kingdom)',1,1,0),(48462,0,148766,'Yawatahama','Japan','JP','Yawatahama (Japan)',1,1,0),(48463,30241,148768,'Yellowknife','Canada','CA','Yellowknife (Canada)',1,1,0),(48464,30252,148769,'Yering','Australia','AU','Yering (Australia)',1,1,0),(48465,30253,148770,'Yerington','United States of America','US','Yerington (United States of America)',1,1,0),(48466,0,148771,'Yizheng','China','CN','Yizheng (China)',1,1,0),(48467,0,148772,'Yonezawa','Japan','JP','Yonezawa (Japan)',1,1,0),(48468,0,148773,'Yong\'an','China','CN','Yong\'an (China)',1,1,0),(48469,30289,148774,'Yongkang','China','CN','Yongkang (China)',1,1,0),(48470,0,148775,'Yopal','Colombia','CO','Yopal (Colombia)',1,1,0),(48471,0,148776,'York','United Kingdom','UK','York (United Kingdom)',1,1,0),(48472,0,148777,'York','United States of America','US','York (United States of America)',1,1,0),(48473,30305,148778,'Youngtown','United States of America','US','Youngtown (United States of America)',1,1,0),(48474,30318,148779,'Yucca Valley','United States of America','US','Yucca Valley (United States of America)',1,1,0),(48475,0,148780,'Yueqing','China','CN','Yueqing (China)',1,1,0),(48476,30333,148781,'Yuma','United States of America','US','Yuma (United States of America)',1,1,0),(48477,0,148782,'Yunfu','China','CN','Yunfu (China)',1,1,0),(48478,0,148783,'Yunnan','China','CN','Yunnan (China)',1,1,0),(48479,0,148784,'Yzerfontein','South Africa','ZA','Yzerfontein (South Africa)',1,1,0),(48480,0,148785,'Yzeures-sur-Creuse','France','FR','Yzeures-sur-Creuse (France)',1,1,0),(48481,0,148786,'Zaafaranah','Egypt','EG','Zaafaranah (Egypt)',1,1,0),(48482,30358,148787,'Zaboric','Croatia','HR','Zaboric (Croatia)',1,1,0),(48483,30361,148788,'Zacatecas','Mexico','MX','Zacatecas (Mexico)',1,1,0),(48484,30366,148789,'Zafra','Spain','ES','Zafra (Spain)',1,1,0),(48485,0,148790,'Zakret','Poland','PL','Zakret (Poland)',1,1,0),(48486,30399,148791,'Zamora','Spain','ES','Zamora (Spain)',1,1,0),(48487,30407,148792,'Zaostrog','Croatia','HR','Zaostrog (Croatia)',1,1,0),(48488,0,148793,'Zartwitz','Germany','DE','Zartwitz (Germany)',1,1,0),(48489,30426,148794,'Zblewo','Poland','PL','Zblewo (Poland)',1,1,0),(48490,0,148795,'Zederhaus','Austria','AT','Zederhaus (Austria)',1,1,0),(48491,0,148796,'Zeeland','United States of America','US','Zeeland (United States of America)',1,1,0),(48492,0,148797,'Zeiskam','Germany','DE','Zeiskam (Germany)',1,1,0),(48493,0,148798,'Zella/Rhon','Germany','DE','Zella/Rhon (Germany)',1,1,0),(48494,0,148799,'Zellenberg','France','FR','Zellenberg (France)',1,1,0),(48495,0,148800,'Zellerndorf','Austria','AT','Zellerndorf (Austria)',1,1,0),(48496,0,148801,'Zenting','Germany','DE','Zenting (Germany)',1,1,0),(48497,30449,148802,'Zernez','Switzerland','CH','Zernez (Switzerland)',1,1,0),(48498,30450,148803,'Zero Branco','Italy','IT','Zero Branco (Italy)',1,1,0),(48499,0,148804,'Zetel','Germany','DE','Zetel (Germany)',1,1,0),(48500,30457,148805,'Zevio','Italy','IT','Zevio (Italy)',1,1,0),(48501,30486,148806,'Zibo','China','CN','Zibo (China)',1,1,0),(48502,0,148807,'Ziegenruck','Germany','DE','Ziegenruck (Germany)',1,1,0),(48503,30489,148808,'Zierikzee','Netherlands','NL','Zierikzee (Netherlands)',1,1,0),(48504,0,148809,'Zihobce','Czech Republic','CZ','Zihobce (Czech Republic)',1,1,0),(48505,30495,148810,'Zilina','Slovakia','SK','Zilina (Slovakia)',1,1,0),(48506,0,148811,'Zillertal','Austria','AT','Zillertal (Austria)',1,1,0),(48507,0,148812,'Zillis-Reischen','Switzerland','CH','Zillis-Reischen (Switzerland)',1,1,0),(48508,0,148813,'Zinkwazi','South Africa','ZA','Zinkwazi (South Africa)',1,1,0),(48509,30500,148814,'Zinnowitz','Germany','DE','Zinnowitz (Germany)',1,1,0),(48510,0,148815,'Zislow','Germany','DE','Zislow (Germany)',1,1,0),(48511,30508,148816,'Zittau','Germany','DE','Zittau (Germany)',1,1,0),(48512,0,148817,'Zlatograd','Bulgaria','BG','Zlatograd (Bulgaria)',1,1,0),(48513,30510,148818,'Zlin','Czech Republic','CZ','Zlin (Czech Republic)',1,1,0),(48514,0,148819,'Znin','Poland','PL','Znin (Poland)',1,1,0),(48515,0,148820,'Zoblen','Austria','AT','Zoblen (Austria)',1,1,0),(48516,0,148821,'Zoblitz','Germany','DE','Zoblitz (Germany)',1,1,0),(48517,0,148822,'Zonnemaire','Netherlands','NL','Zonnemaire (Netherlands)',1,1,0),(48518,0,148823,'Zorkos','Greece','GR','Zorkos (Greece)',1,1,0),(48519,0,148824,'Zorritos','Peru','PE','Zorritos (Peru)',1,1,0),(48520,0,148825,'Zuienkerke','Belgium','BE','Zuienkerke (Belgium)',1,1,0),(48521,0,148826,'Zumarraga','Spain','ES','Zumarraga (Spain)',1,1,0),(48522,30549,148827,'Zurs','Austria','AT','Zurs (Austria)',1,1,0),(48523,30555,148828,'Zweibrucken','Germany','DE','Zweibrucken (Germany)',1,1,0),(48524,30559,148829,'Zwettl','Austria','AT','Zwettl (Austria)',1,1,0),(48525,0,148830,'Zwevegem','Belgium','BE','Zwevegem (Belgium)',1,1,0),(48526,0,148831,'Zwiefalten','Germany','DE','Zwiefalten (Germany)',1,1,0),(48527,0,148832,'Zwonitz','Germany','DE','Zwonitz (Germany)',1,1,0),(48528,18020,148833,'Monastier di Treviso','Italy','IT','Monastier di Treviso (Italy)',1,1,0),(48529,15728,148836,'Lleida','Spain','ES','Lleida (Spain)',1,1,0),(48530,0,148837,'Bamiyan','Afghanistan','AF','Bamiyan (Afghanistan)',1,1,0),(48531,0,148838,'Bost','Afghanistan','AF','Bost (Afghanistan)',1,1,0),(48532,0,148839,'Chakcharan','Afghanistan','AF','Chakcharan (Afghanistan)',1,1,0),(48533,0,148840,'Darwaz','Afghanistan','AF','Darwaz (Afghanistan)',1,1,0),(48534,0,148841,'def','Afghanistan','AF','def (Afghanistan)',1,1,0),(48535,0,148842,'Faizabad','Afghanistan','AF','Faizabad (Afghanistan)',1,1,0),(48536,0,148843,'Farah','Afghanistan','AF','Farah (Afghanistan)',1,1,0),(48537,244,148845,'Aggeneys','South Africa','ZA','Aggeneys (South Africa)',1,1,0),(48538,0,148846,'Aldan','Russia','RU','Aldan (Russia)',1,1,0),(48539,900,148847,'Ambler','United States of America','US','Ambler (United States of America)',1,1,0),(48540,0,148848,'Ambler','United States of America','US','Ambler (United States of America)',1,1,0),(48541,920,148849,'American River','Australia','AU','American River (Australia)',1,1,0),(48542,926,148850,'Amery','United States of America','US','Amery (United States of America)',1,1,0),(48543,980,148851,'Anaa','French Polynesia','PF','Anaa (French Polynesia)',1,1,0),(48544,982,148852,'Anaco','Venezuela','VE','Anaco (Venezuela)',1,1,0),(48545,0,148853,'Bac Lieu','Vietnam','VN','Bac Lieu (Vietnam)',1,1,0),(48546,0,148854,'Bad Homburg vor der Hohe','Germany','DE','Bad Homburg vor der Hohe (Germany)',1,1,0),(48547,0,148855,'Baile Govora','Romania','RO','Baile Govora (Romania)',1,1,0),(48548,0,148856,'Bains-les-Bains','France','FR','Bains-les-Bains (France)',1,1,0),(48549,0,148858,'El Volcan','Argentina','AR','El Volcan (Argentina)',1,1,0),(48550,0,148859,'Elburg','Netherlands','NL','Elburg (Netherlands)',1,1,0),(48551,0,148860,'Elektrostal','Russia','RU','Elektrostal (Russia)',1,1,0),(48552,0,148861,'Elinkine','Senegal','SN','Elinkine (Senegal)',1,1,0),(48553,8689,148862,'Ellos','Sweden','SE','Ellos (Sweden)',1,1,0),(48554,0,148863,'Elva','Estonia','EE','Elva (Estonia)',1,1,0),(48555,8718,148864,'Elwood','Australia','AU','Elwood (Australia)',1,1,0),(48556,0,148865,'Nigambo','Sri Lanka','LK','Nigambo (Sri Lanka)',1,1,0),(48557,23521,148866,'Ruwi','Oman','OM','Ruwi (Oman)',1,1,0),(48558,30102,148867,'Xalapa','MEXICO','MX','Xalapa (MEXICO)',1,1,0),(48559,0,148868,'Tunbridge Wells','United Kingdom','UK','Tunbridge Wells (United Kingdom)',1,1,0),(48560,11354,148871,'Hakata','Japan','JP','Hakata (Japan)',1,1,0),(48561,0,148872,'Embu-Guacu','Brazil','BR','Embu-Guacu (Brazil)',1,1,0),(48562,8852,148873,'Erateini','Greece','GR','Erateini (Greece)',1,1,0),(48563,0,148874,'Ergani','Turkey','TR','Ergani (Turkey)',1,1,0),(48564,0,148875,'Esk','Australia','AU','Esk (Australia)',1,1,0),(48565,0,148876,'Eumundi','Australia','AU','Eumundi (Australia)',1,1,0),(48566,0,148877,'Ewelme','United Kingdom','UK','Ewelme (United Kingdom)',1,1,0),(48567,0,148878,'Extrema','Brazil','BR','Extrema (Brazil)',1,1,0),(48568,0,148879,'Ban Khone','LAOS','LA','Ban Khone (LAOS)',1,1,0),(48569,0,148880,'Bankja','Bulgaria','BG','Bankja (Bulgaria)',1,1,0),(48570,0,148881,'Banya','Bulgaria','BG','Banya (Bulgaria)',1,1,0),(48571,0,148882,'Barequecaba','Brazil','BR','Barequecaba (Brazil)',1,1,0),(48572,0,148883,'Barlinek','Poland','PL','Barlinek (Poland)',1,1,0),(48573,0,148884,'Barrio La Cuesta','Spain','ES','Barrio La Cuesta (Spain)',1,1,0),(48574,0,148885,'Barry\'s Bay','Canada','CA','Barry\'s Bay (Canada)',1,1,0),(48575,0,148886,'Bazosu Nou','Romania','RO','Bazosu Nou (Romania)',1,1,0),(48576,0,148887,'Balanga','Philippines','PH','Balanga (Philippines)',1,1,0),(48577,0,148888,'Balcarce','Argentina','AR','Balcarce (Argentina)',1,1,0),(48578,0,148889,'Balneario Barra do Sul','Brazil','BR','Balneario Barra do Sul (Brazil)',1,1,0),(48579,0,148890,'Balteni','Romania','RO','Balteni (Romania)',1,1,0),(48580,0,148891,'Ban Khlong Phruan','Thailand','TH','Ban Khlong Phruan (Thailand)',1,1,0),(48581,0,148893,'Snowmass Village','United States of America','US','Snowmass Village (United States of America)',1,1,0),(48582,30381,148894,'Zakynthos','Greece','GR','Zakynthos (Greece)',1,1,0),(48583,25128,148895,'Shoufeng','Taiwan','TW','Shoufeng (Taiwan)',1,1,0),(48584,0,148899,'Waskaduwa','Shri Lanka',NULL,'Waskaduwa (Shri Lanka)',1,1,0),(48585,3315,148904,'Bitam','Gabon','GA','Bitam (Gabon)',1,1,0),(48586,17879,148905,'Mitzic','Gabon','GA','Mitzic (Gabon)',1,1,0),(48587,9718,148906,'Fougamou','Gabon','GA','Fougamou (Gabon)',1,1,0),(48588,17354,148907,'Mekambo','Gabon','GA','Mekambo (Gabon)',1,1,0),(48589,17803,148908,'Minvoul','Gabon','GA','Minvoul (Gabon)',1,1,0),(48590,17198,148909,'Mayoumba','Gabon','GA','Mayoumba (Gabon)',1,1,0),(48591,17907,148910,'Moanda','Gabon','GA','Moanda (Gabon)',1,1,0),(48592,17901,148911,'Moabi','Gabon','GA','Moabi (Gabon)',1,1,0),(48593,16465,148912,'Makokou','Gabon','GA','Makokou (Gabon)',1,1,0),(48594,20500,148913,'Oyem','Gabon','GA','Oyem (Gabon)',1,1,0),(48595,10079,148914,'Gamba','Gabon','GA','Gamba (Gabon)',1,1,0),(48596,14446,148915,'Koulamoutou','Gabon','GA','Koulamoutou (Gabon)',1,1,0),(48597,26929,148916,'Tchibanga','Gabon','GA','Tchibanga (Gabon)',1,1,0),(48598,14852,148917,'Lambarene','Gabon','GA','Lambarene (Gabon)',1,1,0),(48599,20011,148918,'Okondja','Gabon','GA','Okondja (Gabon)',1,1,0),(48600,20102,148919,'Omboue','Gabon','GA','Omboue (Gabon)',1,1,0),(48601,387,148920,'Akieni','Gabon','GA','Akieni (Gabon)',1,1,0),(48602,18538,148921,'Mouila','Gabon','GA','Mouila (Gabon)',1,1,0),(48603,18833,148922,'N Dende','Gabon','GA','N Dende (Gabon)',1,1,0),(48604,9753,148923,'Franceville','Gabon','GA','Franceville (Gabon)',1,1,0),(48605,0,148924,'Kazbegi','Georgia','GE','Kazbegi (Georgia)',1,1,0),(48606,0,148925,'Akhvadzha','Georgia','GE','Akhvadzha (Georgia)',1,1,0),(48607,0,148926,'Akhaltsikhe','Georgia','GE','Akhaltsikhe (Georgia)',1,1,0),(48608,0,148927,'Mtskheta','Georgia','GE','Mtskheta (Georgia)',1,1,0),(48609,0,148928,'Vardzia','Georgia','GE','Vardzia (Georgia)',1,1,0),(48610,0,148929,'Mazeri','Georgia','GE','Mazeri (Georgia)',1,1,0),(48611,0,148930,'Arsha','Georgia','GE','Arsha (Georgia)',1,1,0),(48612,10702,148931,'Gori','Georgia','GE','Gori (Georgia)',1,1,0),(48613,0,148932,'Pitsunda','Georgia','GE','Pitsunda (Georgia)',1,1,0),(48614,0,148933,'Gantiadi','Georgia','GE','Gantiadi (Georgia)',1,1,0),(48615,26341,148934,'Sukhumi','Georgia','GE','Sukhumi (Georgia)',1,1,0),(48616,26928,148935,'Tbilisi','Georgia','GE','Tbilisi (Georgia)',1,1,0),(48617,0,148936,'Udabno','Georgia','GE','Udabno (Georgia)',1,1,0),(48618,0,148937,'Lomisi','Georgia','GE','Lomisi (Georgia)',1,1,0),(48619,0,148938,'Warder','Germany','DE','Warder (Germany)',1,1,0),(48620,0,148939,'Wedau','Germany','DE','Wedau (Germany)',1,1,0),(48621,0,148940,'Winneba','Ghana','GH','Winneba (Ghana)',1,1,0),(48622,0,148941,'Akwidaa','Ghana','GH','Akwidaa (Ghana)',1,1,0),(48623,26422,148942,'Sunyani','Ghana','GH','Sunyani (Ghana)',1,1,0),(48624,0,148943,'Keta','Ghana','GH','Keta (Ghana)',1,1,0),(48625,0,148944,'Banda Nkwanta','Ghana','GH','Banda Nkwanta (Ghana)',1,1,0),(48626,0,148945,'Atebubu','Ghana','GH','Atebubu (Ghana)',1,1,0),(48627,26714,148946,'Tamale','Ghana','GH','Tamale (Ghana)',1,1,0),(48628,0,148947,'Ejisu','Ghana','GH','Ejisu (Ghana)',1,1,0),(48629,0,148948,'Anomabo','Ghana','GH','Anomabo (Ghana)',1,1,0),(48630,18402,148949,'Moree','Ghana','GH','Moree (Ghana)',1,1,0),(48631,0,148950,'Shama','Ghana','GH','Shama (Ghana)',1,1,0),(48632,0,148951,'Obosomase','Ghana','GH','Obosomase (Ghana)',1,1,0),(48633,398,148952,'Akosombo','Ghana','GH','Akosombo (Ghana)',1,1,0),(48634,0,148953,'Jema','Ghana','GH','Jema (Ghana)',1,1,0),(48635,19024,148954,'Narsaq','Greenland','GL','Narsaq (Greenland)',1,1,0),(48636,1505,148955,'Arsuk','Greenland','GL','Arsuk (Greenland)',1,1,0),(48637,18955,148956,'Nanortalik','Greenland','GL','Nanortalik (Greenland)',1,1,0),(48638,0,148957,'Qaanaaq','Greenland','GL','Qaanaaq (Greenland)',1,1,0),(48639,26342,148958,'Sukkertoppen','Greenland','GL','Sukkertoppen (Greenland)',1,1,0),(48640,28273,148959,'Uummannaq','Greenland','GL','Uummannaq (Greenland)',1,1,0),(48641,19796,148960,'Nuuk','Greenland','GL','Nuuk (Greenland)',1,1,0),(48642,22123,148961,'Prins Christian Sund','Greenland','GL','Prins Christian Sund (Greenland)',1,1,0),(48643,0,148962,'Tasiilaq','Greenland','GL','Tasiilaq (Greenland)',1,1,0),(48644,0,148963,'Sisimiut','Greenland','GL','Sisimiut (Greenland)',1,1,0),(48645,0,148964,'Qaqortoq','Greenland','GL','Qaqortoq (Greenland)',1,1,0),(48646,28176,148965,'Upernavik','Greenland','GL','Upernavik (Greenland)',1,1,0),(48647,11026,148966,'Gronnedal','Greenland','GL','Gronnedal (Greenland)',1,1,0),(48648,0,148967,'Jameson Land','Greenland','GL','Jameson Land (Greenland)',1,1,0),(48649,6250,148968,'Christianshaab','Greenland','GL','Christianshaab (Greenland)',1,1,0),(48650,9799,148969,'Frederikshaab','Greenland','GL','Frederikshaab (Greenland)',1,1,0),(48651,8546,148970,'Egedesminde','Greenland','GL','Egedesminde (Greenland)',1,1,0),(48652,0,148971,'Cape York','Greenland','GL','Cape York (Greenland)',1,1,0),(48653,10592,148972,'Godhavn','Greenland','GL','Godhavn (Greenland)',1,1,0),(48654,25641,148973,'Sondre Stromfjord','Greenland','GL','Sondre Stromfjord (Greenland)',1,1,0),(48655,0,148974,'Varela','Guinea-Bissau','GW','Varela (Guinea-Bissau)',1,1,0),(48656,0,148975,'Rubane','Guinea-Bissau','GW','Rubane (Guinea-Bissau)',1,1,0),(48657,0,148976,'Bolama','Guinea-Bissau','GW','Bolama (Guinea-Bissau)',1,1,0),(48658,4319,148977,'Bubaque','Guinea-Bissau','GW','Bubaque (Guinea-Bissau)',1,1,0),(48659,0,148978,'Cacheu','Guinea-Bissau','GW','Cacheu (Guinea-Bissau)',1,1,0),(48660,0,148979,'Labadee','Haiti','HT','Labadee (Haiti)',1,1,0),(48661,0,148980,'Saint-Marc','Haiti','HT','Saint-Marc (Haiti)',1,1,0),(48662,0,148981,'Tortuga Island','Haiti','HT','Tortuga Island (Haiti)',1,1,0),(48663,0,148982,'San Buenaventura','Honduras','HN','San Buenaventura (Honduras)',1,1,0),(48664,0,148984,'Adamstown','Ireland','IE','Adamstown (Ireland)',1,1,0),(48665,0,148985,'Castleton','Jamaica','JM','Castleton (Jamaica)',1,1,0),(48666,0,148986,'Belmont','Jamaica','JM','Belmont (Jamaica)',1,1,0),(48667,0,148987,'Santa Cruz','Jamaica','JM','Santa Cruz (Jamaica)',1,1,0),(48668,0,148988,'Kasama','Japan','JP','Kasama (Japan)',1,1,0),(48669,26717,148989,'Tamana','Japan','JP','Tamana (Japan)',1,1,0),(48670,0,148990,'Shoubak','Jordan','JO','Shoubak (Jordan)',1,1,0),(48671,0,148991,'Ajloun','Jordan','JO','Ajloun (Jordan)',1,1,0),(48672,0,148992,'Sayaboury','LAOS','LA','Sayaboury (LAOS)',1,1,0),(48673,0,148993,'Xiangkhouang','LAOS','LA','Xiangkhouang (LAOS)',1,1,0),(48674,0,148994,'Khong Island','LAOS','LA','Khong Island (LAOS)',1,1,0),(48675,0,148995,'Kenue Kang','LAOS','LA','Kenue Kang (LAOS)',1,1,0),(48676,0,148996,'Pak Ou','LAOS','LA','Pak Ou (LAOS)',1,1,0),(48677,0,148997,'Thakhek','LAOS','LA','Thakhek (LAOS)',1,1,0),(48678,0,148998,'Savannakhet','LAOS','LA','Savannakhet (LAOS)',1,1,0),(48679,0,148999,'Engure','Latvia','LV','Engure (Latvia)',1,1,0),(48680,7973,149000,'Dobele','Latvia','LV','Dobele (Latvia)',1,1,0),(48681,0,149001,'Rundale','Latvia','LV','Rundale (Latvia)',1,1,0),(48682,0,149002,'Dundaga','Latvia','LV','Dundaga (Latvia)',1,1,0),(48683,0,149003,'Ikskile','Latvia','LV','Ikskile (Latvia)',1,1,0),(48684,0,149004,'Karsava','Latvia','LV','Karsava (Latvia)',1,1,0),(48685,0,149005,'Sour','Lebanon','LB','Sour (Lebanon)',1,1,0),(48686,9220,149006,'Faraya','Lebanon','LB','Faraya (Lebanon)',1,1,0),(48687,0,149007,'Anjar','Lebanon','LB','Anjar (Lebanon)',1,1,0),(48688,18596,149008,'Mtolle','Lebanon','LB','Mtolle (Lebanon)',1,1,0),(48689,0,149009,'Sidon','Lebanon','LB','Sidon (Lebanon)',1,1,0),(48690,8566,149010,'Ehden','Lebanon','LB','Ehden (Lebanon)',1,1,0),(48691,0,149011,'Qoubaiyat','Lebanon','LB','Qoubaiyat (Lebanon)',1,1,0),(48692,0,149012,'Sert','Libya',NULL,'Sert (Libya)',1,1,0),(48693,0,149013,'Houn','Libya',NULL,'Houn (Libya)',1,1,0),(48694,0,149014,'Al Khums','Libya',NULL,'Al Khums (Libya)',1,1,0),(48695,0,149015,'Derna','Libya',NULL,'Derna (Libya)',1,1,0),(48696,0,149016,'Tobruk','Libya',NULL,'Tobruk (Libya)',1,1,0),(48697,0,149017,'Kufrah','Libya',NULL,'Kufrah (Libya)',1,1,0),(48698,0,149018,'Awbari','Libya',NULL,'Awbari (Libya)',1,1,0),(48699,0,149019,'Ghadames','Libya',NULL,'Ghadames (Libya)',1,1,0),(48700,0,149020,'Beida','Libya',NULL,'Beida (Libya)',1,1,0),(48701,0,149021,'Susah','Libya',NULL,'Susah (Libya)',1,1,0),(48702,0,149022,'Misurata','Libya',NULL,'Misurata (Libya)',1,1,0),(48703,0,149023,'Shahhat','Libya',NULL,'Shahhat (Libya)',1,1,0),(48704,0,149024,'Ghat','Libya',NULL,'Ghat (Libya)',1,1,0),(48705,0,149025,'Benghazi','Libya',NULL,'Benghazi (Libya)',1,1,0),(48706,0,149026,'Sebha','Libya',NULL,'Sebha (Libya)',1,1,0),(48707,0,149027,'Turmantas','Lithuania','LT','Turmantas (Lithuania)',1,1,0),(48708,0,149028,'Vazgaikiemis','Lithuania','LT','Vazgaikiemis (Lithuania)',1,1,0),(48709,0,149029,'Priekule','Lithuania','LT','Priekule (Lithuania)',1,1,0),(48710,0,149030,'Tirksliai','Lithuania','LT','Tirksliai (Lithuania)',1,1,0),(48711,0,149031,'Neringa','Lithuania','LT','Neringa (Lithuania)',1,1,0),(48712,0,149032,'Bansko','Macedonia','MK','Bansko (Macedonia)',1,1,0),(48713,0,149033,'Leshok','Macedonia','MK','Leshok (Macedonia)',1,1,0),(48714,0,149034,'Koleshino','Macedonia','MK','Koleshino (Macedonia)',1,1,0),(48715,0,149035,'Nov Dojran','Macedonia','MK','Nov Dojran (Macedonia)',1,1,0),(48716,0,149036,'Gabrovo','Macedonia','MK','Gabrovo (Macedonia)',1,1,0),(48717,0,149037,'Strumica','Macedonia','MK','Strumica (Macedonia)',1,1,0),(48718,0,149038,'Titov Veles','Macedonia','MK','Titov Veles (Macedonia)',1,1,0),(48719,27436,149039,'Toliara','Madagascar','MG','Toliara (Madagascar)',1,1,0),(48720,0,149040,'Nosy Saba','Madagascar','MG','Nosy Saba (Madagascar)',1,1,0),(48721,16595,149041,'Mananara','Madagascar','MG','Mananara (Madagascar)',1,1,0),(48722,25511,149042,'Soalala','Madagascar','MG','Soalala (Madagascar)',1,1,0),(48723,9217,149043,'Farafangana','Madagascar','MG','Farafangana (Madagascar)',1,1,0),(48724,16612,149044,'Mandabe','Madagascar','MG','Mandabe (Madagascar)',1,1,0),(48725,27855,149045,'Tsaratanana','Madagascar','MG','Tsaratanana (Madagascar)',1,1,0),(48726,0,149046,'Sakaraha','Madagascar','MG','Sakaraha (Madagascar)',1,1,0),(48727,16674,149047,'Manja','Madagascar','MG','Manja (Madagascar)',1,1,0),(48728,16379,149048,'Mahanoro','Madagascar','MG','Mahanoro (Madagascar)',1,1,0),(48729,0,149049,'Andranira','Madagascar','MG','Andranira (Madagascar)',1,1,0),(48730,16597,149050,'Mananjary','Madagascar','MG','Mananjary (Madagascar)',1,1,0),(48731,16415,149051,'Maintirano','Madagascar','MG','Maintirano (Madagascar)',1,1,0),(48732,1019,149052,'Andapa','Madagascar','MG','Andapa (Madagascar)',1,1,0),(48733,26731,149053,'Tambohorano','Madagascar','MG','Tambohorano (Madagascar)',1,1,0),(48734,888,149054,'Ambanja','Madagascar','MG','Ambanja (Madagascar)',1,1,0),(48735,28494,149055,'Vatomandry','Madagascar','MG','Vatomandry (Madagascar)',1,1,0),(48736,0,149056,'Marovoay','Madagascar','MG','Marovoay (Madagascar)',1,1,0),(48737,2615,149057,'Bealanana','Madagascar','MG','Bealanana (Madagascar)',1,1,0),(48738,27866,149058,'Tsiroanomandidy','Madagascar','MG','Tsiroanomandidy (Madagascar)',1,1,0),(48739,18446,149059,'Morombe','Madagascar','MG','Morombe (Madagascar)',1,1,0),(48740,1188,149060,'Antsohihy','Madagascar','MG','Antsohihy (Madagascar)',1,1,0),(48741,890,149061,'Ambatomainty','Madagascar','MG','Ambatomainty (Madagascar)',1,1,0),(48742,1150,149062,'Antalaha','Madagascar','MG','Antalaha (Madagascar)',1,1,0),(48743,2860,149063,'Belo Tsiribihina','Madagascar','MG','Belo Tsiribihina (Madagascar)',1,1,0),(48744,1185,149064,'Antsalova','Madagascar','MG','Antsalova (Madagascar)',1,1,0),(48745,1099,149065,'Ankavandra','Madagascar','MG','Ankavandra (Madagascar)',1,1,0),(48746,0,149066,'Efoetse','Madagascar','MG','Efoetse (Madagascar)',1,1,0),(48747,18369,149067,'Morafenobe','Madagascar','MG','Morafenobe (Madagascar)',1,1,0),(48748,29018,149068,'Vohemar','Madagascar','MG','Vohemar (Madagascar)',1,1,0),(48749,964,149069,'Ampanihy','Madagascar','MG','Ampanihy (Madagascar)',1,1,0),(48750,994,149070,'Analalava','Madagascar','MG','Analalava (Madagascar)',1,1,0),(48751,1100,149071,'Ankazoabo','Madagascar','MG','Ankazoabo (Madagascar)',1,1,0),(48752,1042,149072,'Andriamena','Madagascar','MG','Andriamena (Madagascar)',1,1,0),(48753,891,149073,'Ambatondrazaka','Madagascar','MG','Ambatondrazaka (Madagascar)',1,1,0),(48754,0,149074,'Ambalavao','Madagascar','MG','Ambalavao (Madagascar)',1,1,0),(48755,3056,149075,'Besalampy','Madagascar','MG','Besalampy (Madagascar)',1,1,0),(48756,17609,149076,'Miandrivazo','Madagascar','MG','Miandrivazo (Madagascar)',1,1,0),(48757,24064,149077,'Sambava','Madagascar','MG','Sambava (Madagascar)',1,1,0),(48758,0,149078,'Doany','Madagascar','MG','Doany (Madagascar)',1,1,0),(48759,3028,149079,'Beroroha','Madagascar','MG','Beroroha (Madagascar)',1,1,0),(48760,0,149080,'Fort Dauphin','Madagascar','MG','Fort Dauphin (Madagascar)',1,1,0),(48761,3083,149081,'Betioky','Madagascar','MG','Betioky (Madagascar)',1,1,0),(48762,2749,149082,'Bekily','Madagascar','MG','Bekily (Madagascar)',1,1,0),(48763,21839,149083,'Port Berge','Madagascar','MG','Port Berge (Madagascar)',1,1,0),(48764,0,149084,'Bangula','Malawi','MW','Bangula (Malawi)',1,1,0),(48765,0,149085,'Chigumula','Malawi','MW','Chigumula (Malawi)',1,1,0),(48766,0,149086,'Nkhata Bay','Malawi','MW','Nkhata Bay (Malawi)',1,1,0),(48767,13597,149087,'Karonga','Malawi','MW','Karonga (Malawi)',1,1,0),(48768,0,149088,'Chikwawa','Malawi','MW','Chikwawa (Malawi)',1,1,0),(48769,0,149089,'Nchalo','Malawi','MW','Nchalo (Malawi)',1,1,0),(48770,18079,149090,'Monkey Bay','Malawi','MW','Monkey Bay (Malawi)',1,1,0),(48771,13664,149091,'Kasungu','Malawi','MW','Kasungu (Malawi)',1,1,0),(48772,0,149092,'Cape Maclear','Malawi','MW','Cape Maclear (Malawi)',1,1,0),(48773,0,149093,'Dedza','Malawi','MW','Dedza (Malawi)',1,1,0),(48774,0,149094,'Rasdhoo','Maldives','MV','Rasdhoo (Maldives)',1,1,0),(48775,0,149095,'Safi','Malta','MT','Safi (Malta)',1,1,0),(48776,30036,149096,'Wotje','Marshall Islands','MH','Wotje (Marshall Islands)',1,1,0),(48777,8471,149097,'Ebon','Marshall Islands','MH','Ebon (Marshall Islands)',1,1,0),(48778,28257,149098,'Utirik','Marshall Islands','MH','Utirik (Marshall Islands)',1,1,0),(48779,325,149099,'Ailuk','Marshall Islands','MH','Ailuk (Marshall Islands)',1,1,0),(48780,14657,149100,'Kwajalein','Marshall Islands','MH','Kwajalein (Marshall Islands)',1,1,0),(48781,15493,149101,'Likiep','Marshall Islands','MH','Likiep (Marshall Islands)',1,1,0),(48782,16443,149102,'Majuro','Marshall Islands','MH','Majuro (Marshall Islands)',1,1,0),(48783,13011,149103,'Jaluit','Marshall Islands','MH','Jaluit (Marshall Islands)',1,1,0),(48784,1788,149104,'Aur','Marshall Islands','MH','Aur (Marshall Islands)',1,1,0),(48785,0,149105,'Ujae','Marshall Islands','MH','Ujae (Marshall Islands)',1,1,0),(48786,12972,149106,'Jabat','Marshall Islands','MH','Jabat (Marshall Islands)',1,1,0),(48787,17701,149107,'Mili','Marshall Islands','MH','Mili (Marshall Islands)',1,1,0),(48788,14747,149108,'Lae','Marshall Islands','MH','Lae (Marshall Islands)',1,1,0),(48789,30035,149109,'Wotho','Marshall Islands','MH','Wotho (Marshall Islands)',1,1,0),(48790,1466,149110,'Arno','Marshall Islands','MH','Arno (Marshall Islands)',1,1,0),(48791,18923,149111,'Namorik','Marshall Islands','MH','Namorik (Marshall Islands)',1,1,0),(48792,0,149112,'Leuen','Marshall Islands','MH','Leuen (Marshall Islands)',1,1,0),(48793,29935,149113,'Woja','Marshall Islands','MH','Woja (Marshall Islands)',1,1,0),(48794,23225,149114,'Rongelap','Marshall Islands','MH','Rongelap (Marshall Islands)',1,1,0),(48795,18929,149115,'Namu','Marshall Islands','MH','Namu (Marshall Islands)',1,1,0),(48796,14003,149116,'Kili','Marshall Islands','MH','Kili (Marshall Islands)',1,1,0),(48797,8791,149117,'Eniwetok','Marshall Islands','MH','Eniwetok (Marshall Islands)',1,1,0),(48798,16551,149118,'Maloelap','Marshall Islands','MH','Maloelap (Marshall Islands)',1,1,0),(48799,13070,149119,'Jeh','Marshall Islands','MH','Jeh (Marshall Islands)',1,1,0),(48800,0,149120,'Santa Ana','Mexico','MX','Santa Ana (Mexico)',1,1,0),(48801,0,149121,'Santa Cruz','Mexico','MX','Santa Cruz (Mexico)',1,1,0),(48802,8390,149122,'Dzaoudzi','Mayotte','YT','Dzaoudzi (Mayotte)',1,1,0),(48803,16584,149123,'Mamoudzou','Mayotte','YT','Mamoudzou (Mayotte)',1,1,0),(48804,0,149124,'Moron','Mongolia','MN','Moron (Mongolia)',1,1,0),(48805,0,149125,'Olgii','Mongolia','MN','Olgii (Mongolia)',1,1,0),(48806,0,149126,'Uliastai','Mongolia','MN','Uliastai (Mongolia)',1,1,0),(48807,0,149127,'Ulaangom','Mongolia','MN','Ulaangom (Mongolia)',1,1,0),(48808,0,149128,'Khovd','Mongolia','MN','Khovd (Mongolia)',1,1,0),(48809,0,149129,'Dalanzadgad','Mongolia','MN','Dalanzadgad (Mongolia)',1,1,0),(48810,0,149130,'Kharkhorin','Mongolia','MN','Kharkhorin (Mongolia)',1,1,0),(48811,0,149131,'Choibalsan','Mongolia','MN','Choibalsan (Mongolia)',1,1,0),(48812,0,149132,'Orhei','Moldova','MD','Orhei (Moldova)',1,1,0),(48813,2870,149133,'Beltsy','Moldova','MD','Beltsy (Moldova)',1,1,0),(48814,0,149134,'Berane','Montenegro','ME','Berane (Montenegro)',1,1,0),(48815,0,149135,'Andrijevica','Montenegro','ME','Andrijevica (Montenegro)',1,1,0),(48816,0,149136,'Virpazar','Montenegro','ME','Virpazar (Montenegro)',1,1,0),(48817,0,149137,'Mahala','Montenegro','ME','Mahala (Montenegro)',1,1,0),(48818,0,149138,'Taourirt','Morocco','MA','Taourirt (Morocco)',1,1,0),(48819,25465,149139,'Smara','Morocco','MA','Smara (Morocco)',1,1,0),(48820,0,149140,'Oued Amlil','Morocco','MA','Oued Amlil (Morocco)',1,1,0),(48821,0,149141,'Taza','Morocco','MA','Taza (Morocco)',1,1,0),(48822,0,149142,'Taounate','Morocco','MA','Taounate (Morocco)',1,1,0),(48823,0,149143,'Sidi Bouzid','Morocco','MA','Sidi Bouzid (Morocco)',1,1,0),(48824,0,149144,'Settat','Morocco','MA','Settat (Morocco)',1,1,0),(48825,25168,149145,'Sidi Brahim','Morocco','MA','Sidi Brahim (Morocco)',1,1,0),(48826,0,149146,'Aguelmous','Morocco','MA','Aguelmous (Morocco)',1,1,0),(48827,0,149147,'Sidi Abdallah','Morocco','MA','Sidi Abdallah (Morocco)',1,1,0),(48828,0,149148,'Midelt','Morocco','MA','Midelt (Morocco)',1,1,0),(48829,0,149149,'Imilchil','Morocco','MA','Imilchil (Morocco)',1,1,0),(48830,0,149150,'El Aioun','Morocco','MA','El Aioun (Morocco)',1,1,0),(48831,0,149151,'Azrou','Morocco','MA','Azrou (Morocco)',1,1,0),(48832,0,149152,'Youssoufia','Morocco','MA','Youssoufia (Morocco)',1,1,0),(48833,0,149153,'Memba','Mozambique','MZ','Memba (Mozambique)',1,1,0),(48834,0,149154,'Praia do Bilene','Mozambique','MZ','Praia do Bilene (Mozambique)',1,1,0),(48835,17089,149155,'Matemo Island','Mozambique','MZ','Matemo Island (Mozambique)',1,1,0),(48836,0,149156,'Medjumbe Island','Mozambique','MZ','Medjumbe Island (Mozambique)',1,1,0),(48837,0,149157,'Chitengo','Mozambique','MZ','Chitengo (Mozambique)',1,1,0),(48838,0,149158,'Massinga','Mozambique','MZ','Massinga (Mozambique)',1,1,0),(48839,0,149159,'Nacala','Mozambique','MZ','Nacala (Mozambique)',1,1,0),(48840,0,149160,'Chidenguele','Mozambique','MZ','Chidenguele (Mozambique)',1,1,0),(48841,6136,149161,'Chimoio','Mozambique','MZ','Chimoio (Mozambique)',1,1,0),(48842,0,149162,'Morrungulo','Mozambique','MZ','Morrungulo (Mozambique)',1,1,0),(48843,22379,149163,'Quelimane','Mozambique','MZ','Quelimane (Mozambique)',1,1,0),(48844,0,149164,'Massingir','Mozambique','MZ','Massingir (Mozambique)',1,1,0),(48845,0,149165,'Lugenda','Mozambique','MZ','Lugenda (Mozambique)',1,1,0),(48846,0,149166,'Mossuril','Mozambique','MZ','Mossuril (Mozambique)',1,1,0),(48847,0,149167,'Carrusca','Mozambique','MZ','Carrusca (Mozambique)',1,1,0),(48848,0,149168,'Murrebue','Mozambique','MZ','Murrebue (Mozambique)',1,1,0),(48849,0,149169,'Mecufi','Mozambique','MZ','Mecufi (Mozambique)',1,1,0),(48850,0,149170,'Mucojo','Mozambique','MZ','Mucojo (Mozambique)',1,1,0),(48851,0,149171,'Kawthaung','Myanmar','MM','Kawthaung (Myanmar)',1,1,0),(48852,0,149172,'Thanlyin','Myanmar','MM','Thanlyin (Myanmar)',1,1,0),(48853,0,149173,'Taungoo','Myanmar','MM','Taungoo (Myanmar)',1,1,0),(48854,0,149174,'Gangaw','Myanmar','MM','Gangaw (Myanmar)',1,1,0),(48855,0,149175,'Kawhmu','Myanmar','MM','Kawhmu (Myanmar)',1,1,0),(48856,0,149176,'Loikaw','Myanmar','MM','Loikaw (Myanmar)',1,1,0),(48857,0,149177,'Kyaukpadaung','Myanmar','MM','Kyaukpadaung (Myanmar)',1,1,0),(48858,0,149178,'Kalemyo','Myanmar','MM','Kalemyo (Myanmar)',1,1,0),(48859,0,149179,'Kyaukpyu','Myanmar','MM','Kyaukpyu (Myanmar)',1,1,0),(48860,0,149180,'Thahtay Kyun','Myanmar','MM','Thahtay Kyun (Myanmar)',1,1,0),(48861,0,149181,'Thandwe','Myanmar','MM','Thandwe (Myanmar)',1,1,0),(48862,0,149182,'Papun','Myanmar','MM','Papun (Myanmar)',1,1,0),(48863,0,149183,'Dawei','Myanmar','MM','Dawei (Myanmar)',1,1,0),(48864,0,149184,'Zi Phyu Kone','Myanmar','MM','Zi Phyu Kone (Myanmar)',1,1,0),(48865,0,149185,'Kengtung','Myanmar','MM','Kengtung (Myanmar)',1,1,0),(48866,0,149186,'Pyin Oo Lwin','Myanmar','MM','Pyin Oo Lwin (Myanmar)',1,1,0),(48867,0,149187,'Kyauktaw','Myanmar','MM','Kyauktaw (Myanmar)',1,1,0),(48868,0,149188,'Gyeiktaw','Myanmar','MM','Gyeiktaw (Myanmar)',1,1,0),(48869,0,149189,'Magwe','Myanmar','MM','Magwe (Myanmar)',1,1,0),(48870,0,149190,'Myitkyina','Myanmar','MM','Myitkyina (Myanmar)',1,1,0),(48871,0,149191,'Maulmyine','Myanmar','MM','Maulmyine (Myanmar)',1,1,0),(48872,0,149192,'Bahan Township','Myanmar','MM','Bahan Township (Myanmar)',1,1,0),(48873,0,149193,'Tachilek','Myanmar','MM','Tachilek (Myanmar)',1,1,0),(48874,0,149194,'Namsang','Myanmar','MM','Namsang (Myanmar)',1,1,0),(48875,0,149195,'Mong Hsat','Myanmar','MM','Mong Hsat (Myanmar)',1,1,0),(48876,0,149196,'Hsipaw','Myanmar','MM','Hsipaw (Myanmar)',1,1,0),(48877,20910,149197,'Pathein','Myanmar','MM','Pathein (Myanmar)',1,1,0),(48878,3128,149198,'Bhamo','Myanmar','MM','Bhamo (Myanmar)',1,1,0),(48879,0,149199,'Prome','Myanmar','MM','Prome (Myanmar)',1,1,0),(48880,0,149200,'Khamti','Myanmar','MM','Khamti (Myanmar)',1,1,0),(48881,0,149201,'Myeik','Myanmar','MM','Myeik (Myanmar)',1,1,0),(48882,0,149202,'Momeik','Myanmar','MM','Momeik (Myanmar)',1,1,0),(48883,18333,149203,'Monywa','Myanmar','MM','Monywa (Myanmar)',1,1,0),(48884,0,149204,'Pauk','Myanmar','MM','Pauk (Myanmar)',1,1,0),(48885,0,149205,'Anesakhan','Myanmar','MM','Anesakhan (Myanmar)',1,1,0),(48886,0,149206,'Oattara Thiri Township','Myanmar','MM','Oattara Thiri Township (Myanmar)',1,1,0),(48887,0,149207,'Pakokku','Myanmar','MM','Pakokku (Myanmar)',1,1,0),(48888,25347,149208,'Sittwe','Myanmar','MM','Sittwe (Myanmar)',1,1,0),(48889,0,149209,'Letkokkon','Myanmar','MM','Letkokkon (Myanmar)',1,1,0),(48890,0,149210,'Mrauk-U','Myanmar','MM','Mrauk-U (Myanmar)',1,1,0),(48891,0,149211,'Heho','Myanmar','MM','Heho (Myanmar)',1,1,0),(48892,0,149212,'Gobabeb','Namibia','NA','Gobabeb (Namibia)',1,1,0),(48893,0,149213,'Sangwali','Namibia','NA','Sangwali (Namibia)',1,1,0),(48894,0,149214,'Arandis','Namibia','NA','Arandis (Namibia)',1,1,0),(48895,0,149215,'Mahango','Namibia','NA','Mahango (Namibia)',1,1,0),(48896,0,149216,'Grunau','Namibia','NA','Grunau (Namibia)',1,1,0),(48897,12758,149217,'Intu Afrika Kalahari Private Reserve','Namibia','NA','Intu Afrika Kalahari Private Reserve (Namibia)',1,1,0),(48898,14350,149218,'Kongola','Namibia','NA','Kongola (Namibia)',1,1,0),(48899,20190,149219,'Oranjemund','Namibia','NA','Oranjemund (Namibia)',1,1,0),(48900,0,149220,'Chobe','Namibia','NA','Chobe (Namibia)',1,1,0),(48901,0,149221,'Rietoog','Namibia','NA','Rietoog (Namibia)',1,1,0),(48902,0,149222,'Katjinakatji','Namibia','NA','Katjinakatji (Namibia)',1,1,0),(48903,0,149223,'Bukalo','Namibia','NA','Bukalo (Namibia)',1,1,0),(48904,0,149224,'Namutoni','Namibia','NA','Namutoni (Namibia)',1,1,0),(48905,0,149225,'Strampriet','Namibia','NA','Strampriet (Namibia)',1,1,0),(48906,0,149226,'Terrace Bay','Namibia','NA','Terrace Bay (Namibia)',1,1,0),(48907,0,149227,'Kowares','Namibia','NA','Kowares (Namibia)',1,1,0),(48908,0,149228,'Okaukuejo','Namibia','NA','Okaukuejo (Namibia)',1,1,0),(48909,0,149229,'Omuthiya','Namibia','NA','Omuthiya (Namibia)',1,1,0),(48910,30206,149230,'Yaren','Nauru','NR','Yaren (Nauru)',1,1,0),(48911,3124,149231,'Bhadrapur','Nepal','NP','Bhadrapur (Nepal)',1,1,0),(48912,0,149232,'Tikapur','Nepal','NP','Tikapur (Nepal)',1,1,0),(48913,0,149233,'Janakpur','Nepal','NP','Janakpur (Nepal)',1,1,0),(48914,0,149234,'Kohalpur','Nepal','NP','Kohalpur (Nepal)',1,1,0),(48915,22031,149235,'Prakashpur','Nepal','NP','Prakashpur (Nepal)',1,1,0),(48916,0,149236,'Ramechhap','Nepal','NP','Ramechhap (Nepal)',1,1,0),(48917,16596,149237,'Manang','Nepal','NP','Manang (Nepal)',1,1,0),(48918,21291,149238,'Phaplu','Nepal','NP','Phaplu (Nepal)',1,1,0),(48919,16386,149239,'Mahendranagar','Nepal','NP','Mahendranagar (Nepal)',1,1,0),(48920,26452,149240,'Surkhet','Nepal','NP','Surkhet (Nepal)',1,1,0),(48921,0,149241,'Listikot','Nepal','NP','Listikot (Nepal)',1,1,0),(48922,5948,149242,'Chaurjhari','Nepal','NP','Chaurjhari (Nepal)',1,1,0),(48923,0,149243,'Lekhnath','Nepal','NP','Lekhnath (Nepal)',1,1,0),(48924,3261,149244,'Biratnagar','Nepal','NP','Biratnagar (Nepal)',1,1,0),(48925,14869,149245,'Lamidanda','Nepal','NP','Lamidanda (Nepal)',1,1,0),(48926,27936,149246,'Tumlingtar','Nepal','NP','Tumlingtar (Nepal)',1,1,0),(48927,26803,149247,'Taplejung','Nepal','NP','Taplejung (Nepal)',1,1,0),(48928,0,149248,'Thulo Syabru','Nepal','NP','Thulo Syabru (Nepal)',1,1,0),(48929,13285,149249,'Jumla','Nepal','NP','Jumla (Nepal)',1,1,0),(48930,16070,149250,'Lukla','Nepal','NP','Lukla (Nepal)',1,1,0),(48931,0,149251,'Dipayal Silgadhi','Nepal','NP','Dipayal Silgadhi (Nepal)',1,1,0),(48932,8013,149252,'Dolpa','Nepal','NP','Dolpa (Nepal)',1,1,0),(48933,0,149253,'Chheskam','Nepal','NP','Chheskam (Nepal)',1,1,0),(48934,25255,149254,'Simikot','Nepal','NP','Simikot (Nepal)',1,1,0),(48935,0,149255,'Risku','Nepal','NP','Risku (Nepal)',1,1,0),(48936,13211,149256,'Jomsom','Nepal','NP','Jomsom (Nepal)',1,1,0),(48937,16735,149257,'Mapua','New Zealand','NZ','Mapua (New Zealand)',1,1,0),(48938,0,149258,'Asaba','Nigeria','NG','Asaba (Nigeria)',1,1,0),(48939,0,149259,'Abakaliki','Nigeria','NG','Abakaliki (Nigeria)',1,1,0),(48940,728,149260,'Alofi','Niue','NU','Alofi (Niue)',1,1,0),(48941,0,149261,'Hakupu','Niue','NU','Hakupu (Niue)',1,1,0),(48942,0,149262,'Tamakautoga','Niue','NU','Tamakautoga (Niue)',1,1,0),(48943,0,149263,'Hikutavake','Niue','NU','Hikutavake (Niue)',1,1,0),(48944,0,149264,'Bidiya','Oman','OM','Bidiya (Oman)',1,1,0),(48945,0,149265,'Al Hadd','Oman','OM','Al Hadd (Oman)',1,1,0),(48946,0,149266,'Al Hamra','Oman','OM','Al Hamra (Oman)',1,1,0),(48947,0,149267,'Al Wasil','Oman','OM','Al Wasil (Oman)',1,1,0),(48948,0,149268,'Al Mirayr','Oman','OM','Al Mirayr (Oman)',1,1,0),(48949,20764,149269,'Para Chinar','Pakistan','PK','Para Chinar (Pakistan)',1,1,0),(48950,22641,149270,'Rawala Kot','Pakistan','PK','Rawala Kot (Pakistan)',1,1,0),(48951,6186,149271,'Chitral','Pakistan','PK','Chitral (Pakistan)',1,1,0),(48952,19097,149272,'Nawab Shah','Pakistan','PK','Nawab Shah (Pakistan)',1,1,0),(48953,7468,149273,'Dalbandin','Pakistan','PK','Dalbandin (Pakistan)',1,1,0),(48954,0,149274,'Landi Kotal','Pakistan','PK','Landi Kotal (Pakistan)',1,1,0),(48955,12539,149275,'Hyderabad','Pakistan','PK','Hyderabad (Pakistan)',1,1,0),(48956,0,149276,'Sahiwal','Pakistan','PK','Sahiwal (Pakistan)',1,1,0),(48957,0,149277,'Mardan','Pakistan','PK','Mardan (Pakistan)',1,1,0),(48958,0,149278,'Thatta','Pakistan','PK','Thatta (Pakistan)',1,1,0),(48959,22496,149279,'Rahim Yar Khan','Pakistan','PK','Rahim Yar Khan (Pakistan)',1,1,0),(48960,12984,149280,'Jacobabad','Pakistan','PK','Jacobabad (Pakistan)',1,1,0),(48961,24324,149281,'Sargodha','Pakistan','PK','Sargodha (Pakistan)',1,1,0),(48962,20257,149282,'Ormara','Pakistan','PK','Ormara (Pakistan)',1,1,0),(48963,18729,149283,'Muridke','Pakistan','PK','Muridke (Pakistan)',1,1,0),(48964,6114,149284,'Chilas','Pakistan','PK','Chilas (Pakistan)',1,1,0),(48965,13967,149285,'Khuzdar','Pakistan','PK','Khuzdar (Pakistan)',1,1,0),(48966,25369,149286,'Skardu','Pakistan','PK','Skardu (Pakistan)',1,1,0),(48967,56,149287,'Abbottabad','Pakistan','PK','Abbottabad (Pakistan)',1,1,0),(48968,17836,149288,'Mirpur Khas','Pakistan','PK','Mirpur Khas (Pakistan)',1,1,0),(48969,1998,149289,'Badin','Pakistan','PK','Badin (Pakistan)',1,1,0),(48970,17611,149290,'Mianwali','Pakistan','PK','Mianwali (Pakistan)',1,1,0),(48971,27959,149291,'Turbat','Pakistan','PK','Turbat (Pakistan)',1,1,0),(48972,17945,149292,'Mohenjo Daro','Pakistan','PK','Mohenjo Daro (Pakistan)',1,1,0),(48973,30475,149293,'Zhob','Pakistan','PK','Zhob (Pakistan)',1,1,0),(48974,2281,149294,'Bannu','Pakistan','PK','Bannu (Pakistan)',1,1,0),(48975,25157,149295,'Sibi','Pakistan','PK','Sibi (Pakistan)',1,1,0),(48976,0,149296,'Shekhupura','Pakistan','PK','Shekhupura (Pakistan)',1,1,0),(48977,0,149297,'Dera Ismail Khan','Pakistan','PK','Dera Ismail Khan (Pakistan)',1,1,0),(48978,13176,149298,'Jiwani','Pakistan','PK','Jiwani (Pakistan)',1,1,0),(48979,26343,149299,'Sukkur','Pakistan','PK','Sukkur (Pakistan)',1,1,0),(48980,14298,149300,'Kohat','Pakistan','PK','Kohat (Pakistan)',1,1,0),(48981,0,149301,'Rohtas','Pakistan','PK','Rohtas (Pakistan)',1,1,0),(48982,0,149302,'Taxila','Pakistan','PK','Taxila (Pakistan)',1,1,0),(48983,20723,149303,'Panjgur','Pakistan','PK','Panjgur (Pakistan)',1,1,0),(48984,26331,149304,'Sui','Pakistan','PK','Sui (Pakistan)',1,1,0),(48985,20884,149305,'Pasni','Pakistan','PK','Pasni (Pakistan)',1,1,0),(48986,0,149306,'Kokoda','Papua New Guinea','PG','Kokoda (Papua New Guinea)',1,1,0),(48987,0,149307,'Simbai','Papua New Guinea','PG','Simbai (Papua New Guinea)',1,1,0),(48988,0,149308,'Torokina','Papua New Guinea','PG','Torokina (Papua New Guinea)',1,1,0),(48989,0,149309,'Rabaraba','Papua New Guinea','PG','Rabaraba (Papua New Guinea)',1,1,0),(48990,0,149310,'Langimar','Papua New Guinea','PG','Langimar (Papua New Guinea)',1,1,0),(48991,0,149311,'Moro','Papua New Guinea','PG','Moro (Papua New Guinea)',1,1,0),(48992,0,149312,'Boang','Papua New Guinea','PG','Boang (Papua New Guinea)',1,1,0),(48993,0,149313,'Sabah','Papua New Guinea','PG','Sabah (Papua New Guinea)',1,1,0),(48994,0,149314,'Indagen','Papua New Guinea','PG','Indagen (Papua New Guinea)',1,1,0),(48995,0,149315,'Wapenamanda','Papua New Guinea','PG','Wapenamanda (Papua New Guinea)',1,1,0),(48996,0,149316,'Komako','Papua New Guinea','PG','Komako (Papua New Guinea)',1,1,0),(48997,0,149317,'Amanab','Papua New Guinea','PG','Amanab (Papua New Guinea)',1,1,0),(48998,0,149318,'Emirau','Papua New Guinea','PG','Emirau (Papua New Guinea)',1,1,0),(48999,0,149319,'Sila','Papua New Guinea','PG','Sila (Papua New Guinea)',1,1,0),(49000,0,149320,'Morobe','Papua New Guinea','PG','Morobe (Papua New Guinea)',1,1,0),(49001,0,149321,'Morehead','Papua New Guinea','PG','Morehead (Papua New Guinea)',1,1,0),(49002,0,149322,'Engati','Papua New Guinea','PG','Engati (Papua New Guinea)',1,1,0),(49003,0,149323,'Itokama','Papua New Guinea','PG','Itokama (Papua New Guinea)',1,1,0),(49004,0,149324,'Angoram','Papua New Guinea','PG','Angoram (Papua New Guinea)',1,1,0),(49005,0,149325,'Balimo','Papua New Guinea','PG','Balimo (Papua New Guinea)',1,1,0),(49006,0,149326,'Baibara','Papua New Guinea','PG','Baibara (Papua New Guinea)',1,1,0),(49007,0,149327,'Open Bay','Papua New Guinea','PG','Open Bay (Papua New Guinea)',1,1,0),(49008,0,149328,'Baimuru','Papua New Guinea','PG','Baimuru (Papua New Guinea)',1,1,0),(49009,0,149329,'Embessa','Papua New Guinea','PG','Embessa (Papua New Guinea)',1,1,0),(49010,0,149330,'Witu','Papua New Guinea','PG','Witu (Papua New Guinea)',1,1,0),(49011,0,149331,'Koinambe','Papua New Guinea','PG','Koinambe (Papua New Guinea)',1,1,0),(49012,0,149332,'Hawabango','Papua New Guinea','PG','Hawabango (Papua New Guinea)',1,1,0),(49013,0,149333,'Anguganak','Papua New Guinea','PG','Anguganak (Papua New Guinea)',1,1,0),(49014,0,149334,'Amazon Bay','Papua New Guinea','PG','Amazon Bay (Papua New Guinea)',1,1,0),(49015,0,149335,'Ogeranang','Papua New Guinea','PG','Ogeranang (Papua New Guinea)',1,1,0),(49016,0,149336,'Namatanai','Papua New Guinea','PG','Namatanai (Papua New Guinea)',1,1,0),(49017,0,149337,'Nomad River','Papua New Guinea','PG','Nomad River (Papua New Guinea)',1,1,0),(49018,0,149338,'Bensbach','Papua New Guinea','PG','Bensbach (Papua New Guinea)',1,1,0),(49019,0,149339,'Timbunke','Papua New Guinea','PG','Timbunke (Papua New Guinea)',1,1,0),(49020,0,149340,'Paiela','Papua New Guinea','PG','Paiela (Papua New Guinea)',1,1,0),(49021,0,149341,'Salamo','Papua New Guinea','PG','Salamo (Papua New Guinea)',1,1,0),(49022,0,149342,'Manus Island','Papua New Guinea','PG','Manus Island (Papua New Guinea)',1,1,0),(49023,0,149343,'Wau','Papua New Guinea','PG','Wau (Papua New Guinea)',1,1,0),(49024,0,149344,'Ama','Papua New Guinea','PG','Ama (Papua New Guinea)',1,1,0),(49025,0,149345,'Panaeati Island','Papua New Guinea','PG','Panaeati Island (Papua New Guinea)',1,1,0),(49026,0,149346,'Kol','Papua New Guinea','PG','Kol (Papua New Guinea)',1,1,0),(49027,0,149347,'Popondetta','Papua New Guinea','PG','Popondetta (Papua New Guinea)',1,1,0),(49028,0,149348,'Lablab','Papua New Guinea','PG','Lablab (Papua New Guinea)',1,1,0),(49029,0,149349,'Kar','Papua New Guinea','PG','Kar (Papua New Guinea)',1,1,0),(49030,0,149350,'Ambunti','Papua New Guinea','PG','Ambunti (Papua New Guinea)',1,1,0),(49031,0,149351,'Safia','Papua New Guinea','PG','Safia (Papua New Guinea)',1,1,0),(49032,0,149352,'Bialla','Papua New Guinea','PG','Bialla (Papua New Guinea)',1,1,0),(49033,0,149353,'Misima Island','Papua New Guinea','PG','Misima Island (Papua New Guinea)',1,1,0),(49034,0,149354,'Porgera','Papua New Guinea','PG','Porgera (Papua New Guinea)',1,1,0),(49035,0,149355,'Moki','Papua New Guinea','PG','Moki (Papua New Guinea)',1,1,0),(49036,0,149356,'Sim','Papua New Guinea','PG','Sim (Papua New Guinea)',1,1,0),(49037,0,149357,'Daru','Papua New Guinea','PG','Daru (Papua New Guinea)',1,1,0),(49038,0,149358,'Tingwon Island','Papua New Guinea','PG','Tingwon Island (Papua New Guinea)',1,1,0),(49039,0,149359,'Wabo','Papua New Guinea','PG','Wabo (Papua New Guinea)',1,1,0),(49040,0,149360,'Sule','Papua New Guinea','PG','Sule (Papua New Guinea)',1,1,0),(49041,0,149361,'Kira','Papua New Guinea','PG','Kira (Papua New Guinea)',1,1,0),(49042,0,149362,'Lamassa','Papua New Guinea','PG','Lamassa (Papua New Guinea)',1,1,0),(49043,0,149363,'Fane','Papua New Guinea','PG','Fane (Papua New Guinea)',1,1,0),(49044,0,149364,'Ioma','Papua New Guinea','PG','Ioma (Papua New Guinea)',1,1,0),(49045,0,149365,'Bamu','Papua New Guinea','PG','Bamu (Papua New Guinea)',1,1,0),(49046,0,149366,'Mamai','Papua New Guinea','PG','Mamai (Papua New Guinea)',1,1,0),(49047,0,149367,'Balif','Papua New Guinea','PG','Balif (Papua New Guinea)',1,1,0),(49048,0,149368,'Finschhafen','Papua New Guinea','PG','Finschhafen (Papua New Guinea)',1,1,0),(49049,0,149369,'Wanigela','Papua New Guinea','PG','Wanigela (Papua New Guinea)',1,1,0),(49050,0,149370,'Iboki','Papua New Guinea','PG','Iboki (Papua New Guinea)',1,1,0),(49051,0,149371,'Kagua','Papua New Guinea','PG','Kagua (Papua New Guinea)',1,1,0),(49052,0,149372,'Malalaua','Papua New Guinea','PG','Malalaua (Papua New Guinea)',1,1,0),(49053,0,149373,'Bomai','Papua New Guinea','PG','Bomai (Papua New Guinea)',1,1,0),(49054,0,149374,'Arawa','Papua New Guinea','PG','Arawa (Papua New Guinea)',1,1,0),(49055,0,149375,'Konge','Papua New Guinea','PG','Konge (Papua New Guinea)',1,1,0),(49056,0,149376,'Suki','Papua New Guinea','PG','Suki (Papua New Guinea)',1,1,0),(49057,0,149377,'Erave','Papua New Guinea','PG','Erave (Papua New Guinea)',1,1,0),(49058,0,149378,'Mapua','Papua New Guinea','PG','Mapua (Papua New Guinea)',1,1,0),(49059,0,149379,'Wedau','Papua New Guinea','PG','Wedau (Papua New Guinea)',1,1,0),(49060,0,149380,'Iokea','Papua New Guinea','PG','Iokea (Papua New Guinea)',1,1,0),(49061,0,149381,'Tadji','Papua New Guinea','PG','Tadji (Papua New Guinea)',1,1,0),(49062,0,149382,'Wipim','Papua New Guinea','PG','Wipim (Papua New Guinea)',1,1,0),(49063,0,149383,'Makini','Papua New Guinea','PG','Makini (Papua New Guinea)',1,1,0),(49064,0,149384,'Sauren','Papua New Guinea','PG','Sauren (Papua New Guinea)',1,1,0),(49065,0,149385,'Tekadu','Papua New Guinea','PG','Tekadu (Papua New Guinea)',1,1,0),(49066,0,149386,'Kieta','Papua New Guinea','PG','Kieta (Papua New Guinea)',1,1,0),(49067,0,149387,'Ononge','Papua New Guinea','PG','Ononge (Papua New Guinea)',1,1,0),(49068,0,149388,'Tumolbil','Papua New Guinea','PG','Tumolbil (Papua New Guinea)',1,1,0),(49069,0,149389,'Mendi','Papua New Guinea','PG','Mendi (Papua New Guinea)',1,1,0),(49070,0,149390,'Vanimo','Papua New Guinea','PG','Vanimo (Papua New Guinea)',1,1,0),(49071,0,149391,'Kabwum','Papua New Guinea','PG','Kabwum (Papua New Guinea)',1,1,0),(49072,0,149392,'Silur','Papua New Guinea','PG','Silur (Papua New Guinea)',1,1,0),(49073,0,149393,'Aragip','Papua New Guinea','PG','Aragip (Papua New Guinea)',1,1,0),(49074,0,149394,'Buka Island','Papua New Guinea','PG','Buka Island (Papua New Guinea)',1,1,0),(49075,0,149395,'Kawito','Papua New Guinea','PG','Kawito (Papua New Guinea)',1,1,0),(49076,0,149396,'Imonda','Papua New Guinea','PG','Imonda (Papua New Guinea)',1,1,0),(49077,0,149397,'Kerema','Papua New Guinea','PG','Kerema (Papua New Guinea)',1,1,0),(49078,739,149398,'Alotau','Papua New Guinea','PG','Alotau (Papua New Guinea)',1,1,0),(49079,0,149399,'Kamina','Papua New Guinea','PG','Kamina (Papua New Guinea)',1,1,0),(49080,0,149400,'Garasa','Papua New Guinea','PG','Garasa (Papua New Guinea)',1,1,0),(49081,0,149401,'Emo','Papua New Guinea','PG','Emo (Papua New Guinea)',1,1,0),(49082,0,149402,'Derim','Papua New Guinea','PG','Derim (Papua New Guinea)',1,1,0),(49083,0,149403,'Terapo','Papua New Guinea','PG','Terapo (Papua New Guinea)',1,1,0),(49084,0,149404,'Aiyura','Papua New Guinea','PG','Aiyura (Papua New Guinea)',1,1,0),(49085,0,149405,'Misima','Papua New Guinea','PG','Misima (Papua New Guinea)',1,1,0),(49086,0,149406,'Kiunga','Papua New Guinea','PG','Kiunga (Papua New Guinea)',1,1,0),(49087,0,149407,'Bulolo','Papua New Guinea','PG','Bulolo (Papua New Guinea)',1,1,0),(49088,0,149408,'Kikori','Papua New Guinea','PG','Kikori (Papua New Guinea)',1,1,0),(49089,0,149409,'Saidor','Papua New Guinea','PG','Saidor (Papua New Guinea)',1,1,0),(49090,0,149410,'Amboin','Papua New Guinea','PG','Amboin (Papua New Guinea)',1,1,0),(49091,0,149411,'Karimui','Papua New Guinea','PG','Karimui (Papua New Guinea)',1,1,0),(49092,0,149412,'Mindik','Papua New Guinea','PG','Mindik (Papua New Guinea)',1,1,0),(49093,0,149413,'Gasmata','Papua New Guinea','PG','Gasmata (Papua New Guinea)',1,1,0),(49094,0,149414,'Munbil','Papua New Guinea','PG','Munbil (Papua New Guinea)',1,1,0),(49095,0,149415,'Samarai','Papua New Guinea','PG','Samarai (Papua New Guinea)',1,1,0),(49096,0,149416,'Guasopa','Papua New Guinea','PG','Guasopa (Papua New Guinea)',1,1,0),(49097,0,149417,'Sagarai','Papua New Guinea','PG','Sagarai (Papua New Guinea)',1,1,0),(49098,0,149418,'Tabubil','Papua New Guinea','PG','Tabubil (Papua New Guinea)',1,1,0),(49099,0,149419,'Kar Kar Island','Papua New Guinea','PG','Kar Kar Island (Papua New Guinea)',1,1,0),(49100,0,149420,'Doini Island','Papua New Guinea','PG','Doini Island (Papua New Guinea)',1,1,0),(49101,0,149421,'Sehulea','Papua New Guinea','PG','Sehulea (Papua New Guinea)',1,1,0),(49102,0,149422,'Kompiam','Papua New Guinea','PG','Kompiam (Papua New Guinea)',1,1,0),(49103,0,149423,'Kupiano','Papua New Guinea','PG','Kupiano (Papua New Guinea)',1,1,0),(49104,0,149424,'Garaina','Papua New Guinea','PG','Garaina (Papua New Guinea)',1,1,0),(49105,0,149425,'Kanabea','Papua New Guinea','PG','Kanabea (Papua New Guinea)',1,1,0),(49106,0,149426,'Tabibuga','Papua New Guinea','PG','Tabibuga (Papua New Guinea)',1,1,0),(49107,0,149427,'Mussau Island','Papua New Guinea','PG','Mussau Island (Papua New Guinea)',1,1,0),(49108,0,149428,'Lese','Papua New Guinea','PG','Lese (Papua New Guinea)',1,1,0),(49109,0,149429,'Kaintiba','Papua New Guinea','PG','Kaintiba (Papua New Guinea)',1,1,0),(49110,0,149430,'Nissan Island','Papua New Guinea','PG','Nissan Island (Papua New Guinea)',1,1,0),(49111,0,149431,'Bereina','Papua New Guinea','PG','Bereina (Papua New Guinea)',1,1,0),(49112,0,149432,'Yapsiei','Papua New Guinea','PG','Yapsiei (Papua New Guinea)',1,1,0),(49113,0,149433,'Maramuni','Papua New Guinea','PG','Maramuni (Papua New Guinea)',1,1,0),(49114,0,149434,'Vivigani','Papua New Guinea','PG','Vivigani (Papua New Guinea)',1,1,0),(49115,0,149435,'Bundi','Papua New Guinea','PG','Bundi (Papua New Guinea)',1,1,0),(49116,0,149436,'Ningerum','Papua New Guinea','PG','Ningerum (Papua New Guinea)',1,1,0),(49117,0,149437,'Kandrian','Papua New Guinea','PG','Kandrian (Papua New Guinea)',1,1,0),(49118,0,149438,'Hoskins','Papua New Guinea','PG','Hoskins (Papua New Guinea)',1,1,0),(49119,0,149439,'Iamalele','Papua New Guinea','PG','Iamalele (Papua New Guinea)',1,1,0),(49120,0,149440,'Wuvulu Island','Papua New Guinea','PG','Wuvulu Island (Papua New Guinea)',1,1,0),(49121,0,149441,'Satwag','Papua New Guinea','PG','Satwag (Papua New Guinea)',1,1,0),(49122,0,149442,'Fulleborn','Papua New Guinea','PG','Fulleborn (Papua New Guinea)',1,1,0),(49123,0,149443,'Gewoya','Papua New Guinea','PG','Gewoya (Papua New Guinea)',1,1,0),(49124,0,149444,'Malekolon','Papua New Guinea','PG','Malekolon (Papua New Guinea)',1,1,0),(49125,0,149445,'Menyamya','Papua New Guinea','PG','Menyamya (Papua New Guinea)',1,1,0),(49126,0,149446,'Cape Rodney','Papua New Guinea','PG','Cape Rodney (Papua New Guinea)',1,1,0),(49127,0,149447,'Linga Linga','Papua New Guinea','PG','Linga Linga (Papua New Guinea)',1,1,0),(49128,0,149448,'Telefomin','Papua New Guinea','PG','Telefomin (Papua New Guinea)',1,1,0),(49129,0,149449,'Green River','Papua New Guinea','PG','Green River (Papua New Guinea)',1,1,0),(49130,0,149450,'Wakunai','Papua New Guinea','PG','Wakunai (Papua New Guinea)',1,1,0),(49131,0,149451,'April River','Papua New Guinea','PG','April River (Papua New Guinea)',1,1,0),(49132,0,149452,'Biniguni','Papua New Guinea','PG','Biniguni (Papua New Guinea)',1,1,0),(49133,0,149453,'Londolovit','Papua New Guinea','PG','Londolovit (Papua New Guinea)',1,1,0),(49134,0,149454,'Kundiawa','Papua New Guinea','PG','Kundiawa (Papua New Guinea)',1,1,0),(49135,0,149455,'Cape Vogel','Papua New Guinea','PG','Cape Vogel (Papua New Guinea)',1,1,0),(49136,0,149456,'Robinson River','Papua New Guinea','PG','Robinson River (Papua New Guinea)',1,1,0),(49137,0,149457,'Aitape','Papua New Guinea','PG','Aitape (Papua New Guinea)',1,1,0),(49138,0,149458,'Wasu','Papua New Guinea','PG','Wasu (Papua New Guinea)',1,1,0),(49139,0,149459,'Aiome','Papua New Guinea','PG','Aiome (Papua New Guinea)',1,1,0),(49140,0,149460,'Siassi','Papua New Guinea','PG','Siassi (Papua New Guinea)',1,1,0),(49141,0,149461,'Losuia','Papua New Guinea','PG','Losuia (Papua New Guinea)',1,1,0),(49142,0,149462,'Biaru','Papua New Guinea','PG','Biaru (Papua New Guinea)',1,1,0),(49143,0,149463,'Garuahi','Papua New Guinea','PG','Garuahi (Papua New Guinea)',1,1,0),(49144,0,149464,'Tonu','Papua New Guinea','PG','Tonu (Papua New Guinea)',1,1,0),(49145,0,149465,'Yalumet','Papua New Guinea','PG','Yalumet (Papua New Guinea)',1,1,0),(49146,0,149466,'Ihu','Papua New Guinea','PG','Ihu (Papua New Guinea)',1,1,0),(49147,29629,149467,'Wewak','Papua New Guinea','PG','Wewak (Papua New Guinea)',1,1,0),(49148,0,149468,'Asapa','Papua New Guinea','PG','Asapa (Papua New Guinea)',1,1,0),(49149,0,149469,'Teptep','Papua New Guinea','PG','Teptep (Papua New Guinea)',1,1,0),(49150,0,149470,'Namudi','Papua New Guinea','PG','Namudi (Papua New Guinea)',1,1,0),(49151,0,149471,'Pindiu','Papua New Guinea','PG','Pindiu (Papua New Guinea)',1,1,0),(49152,0,149472,'Woitape','Papua New Guinea','PG','Woitape (Papua New Guinea)',1,1,0),(49153,0,149473,'Uvol','Papua New Guinea','PG','Uvol (Papua New Guinea)',1,1,0),(49154,0,149474,'Buin','Papua New Guinea','PG','Buin (Papua New Guinea)',1,1,0),(49155,0,149475,'Josephstaal','Papua New Guinea','PG','Josephstaal (Papua New Guinea)',1,1,0),(49156,0,149476,'Tapini','Papua New Guinea','PG','Tapini (Papua New Guinea)',1,1,0),(49157,0,149477,'Tol','Papua New Guinea','PG','Tol (Papua New Guinea)',1,1,0),(49158,0,149478,'Tari','Papua New Guinea','PG','Tari (Papua New Guinea)',1,1,0),(49159,0,149479,'Olsobip','Papua New Guinea','PG','Olsobip (Papua New Guinea)',1,1,0),(49160,0,149480,'Nuku','Papua New Guinea','PG','Nuku (Papua New Guinea)',1,1,0),(49161,0,149481,'Yeva','Papua New Guinea','PG','Yeva (Papua New Guinea)',1,1,0),(49162,0,149482,'Concepcion','Paraguay','PY','Concepcion (Paraguay)',1,1,0),(49163,0,149483,'Salto del Guaira','Paraguay','PY','Salto del Guaira (Paraguay)',1,1,0),(49164,0,149484,'Villarrica','Paraguay','PY','Villarrica (Paraguay)',1,1,0),(49165,0,149485,'Ypacarai','Paraguay','PY','Ypacarai (Paraguay)',1,1,0),(49166,0,149486,'Mariano Roque Alonso','Paraguay','PY','Mariano Roque Alonso (Paraguay)',1,1,0),(49167,0,149487,'Itaugua','Paraguay','PY','Itaugua (Paraguay)',1,1,0),(49168,0,149488,'Neuland Colony','Paraguay','PY','Neuland Colony (Paraguay)',1,1,0),(49169,0,149489,'Arroyos y Esteros','Paraguay','PY','Arroyos y Esteros (Paraguay)',1,1,0),(49170,0,149490,'Independencia','Paraguay','PY','Independencia (Paraguay)',1,1,0),(49171,0,149491,'Paraguari','Paraguay','PY','Paraguari (Paraguay)',1,1,0),(49172,0,149492,'Presidente Franco','Paraguay','PY','Presidente Franco (Paraguay)',1,1,0),(49173,0,149493,'Caraguatay','Paraguay','PY','Caraguatay (Paraguay)',1,1,0),(49174,0,149494,'Ybycui','Paraguay','PY','Ybycui (Paraguay)',1,1,0),(49175,0,149495,'Doctor Juan Leon Mallorquin','Paraguay','PY','Doctor Juan Leon Mallorquin (Paraguay)',1,1,0),(49176,0,149496,'Pedro Juan Caballero','Paraguay','PY','Pedro Juan Caballero (Paraguay)',1,1,0),(49177,0,149497,'Nueva Colombia','Paraguay','PY','Nueva Colombia (Paraguay)',1,1,0),(49178,0,149498,'Santa Cruz','Philippines','PH','Santa Cruz (Philippines)',1,1,0),(49179,166,149499,'Adamstown','Pitcairn','PN','Adamstown (Pitcairn)',1,1,0),(49180,0,149500,'Al Ghuwayriyah','Qatar','QA','Al Ghuwayriyah (Qatar)',1,1,0),(49181,0,149501,'Madinat ash Shamal','Qatar','QA','Madinat ash Shamal (Qatar)',1,1,0),(49182,0,149502,'Dimitrovgrad','Russia','RU','Dimitrovgrad (Russia)',1,1,0),(49183,0,149503,'Bor','Russia','RU','Bor (Russia)',1,1,0),(49184,0,149504,'Aksay','Russia','RU','Aksay (Russia)',1,1,0),(49185,0,149505,'Kayonza','Rwanda','RW','Kayonza (Rwanda)',1,1,0),(49186,10459,149506,'Gisenyi','Rwanda','RW','Gisenyi (Rwanda)',1,1,0),(49187,13988,149507,'Kigali','Rwanda','RW','Kigali (Rwanda)',1,1,0),(49188,0,149508,'Nyungwe Forest Reserve','Rwanda','RW','Nyungwe Forest Reserve (Rwanda)',1,1,0),(49189,0,149509,'Ruhengeri','Rwanda','RW','Ruhengeri (Rwanda)',1,1,0),(49190,0,149510,'Kinazi','Rwanda','RW','Kinazi (Rwanda)',1,1,0),(49191,5476,149511,'Caue Ilheu Das Rolas','Sao Tome & Principe','ST','Caue Ilheu Das Rolas (Sao Tome & Principe)',1,1,0),(49192,17074,149512,'Matam','Senegal','SN','Matam (Senegal)',1,1,0),(49193,0,149513,'Niaga','Senegal','SN','Niaga (Senegal)',1,1,0),(49194,21654,149514,'Podor','Senegal','SN','Podor (Senegal)',1,1,0),(49195,22906,149515,'Richard-Toll','Senegal','SN','Richard-Toll (Senegal)',1,1,0),(49196,2093,149516,'Bakel','Senegal','SN','Bakel (Senegal)',1,1,0),(49197,14314,149517,'Kolda','Senegal','SN','Kolda (Senegal)',1,1,0),(49198,13761,149518,'Kedougou','Senegal','SN','Kedougou (Senegal)',1,1,0),(49199,0,149519,'Tare','Senegal','SN','Tare (Senegal)',1,1,0),(49200,26729,149520,'Tambacounda','Senegal','SN','Tambacounda (Senegal)',1,1,0),(49201,0,149521,'Touba','Senegal','SN','Touba (Senegal)',1,1,0),(49202,0,149522,'Bor','Serbia','RS','Bor (Serbia)',1,1,0),(49203,0,149523,'Vrnjacka Banja','Serbia','RS','Vrnjacka Banja (Serbia)',1,1,0),(49204,0,149524,'Sremski Karlovci','Serbia','RS','Sremski Karlovci (Serbia)',1,1,0),(49205,0,149525,'Niska Banja','Serbia','RS','Niska Banja (Serbia)',1,1,0),(49206,0,149526,'Sabac','Serbia','RS','Sabac (Serbia)',1,1,0),(49207,0,149527,'Stara Pazova','Serbia','RS','Stara Pazova (Serbia)',1,1,0),(49208,0,149528,'Vranjska Banja','Serbia','RS','Vranjska Banja (Serbia)',1,1,0),(49209,0,149529,'Cajetina','Serbia','RS','Cajetina (Serbia)',1,1,0),(49210,0,149530,'Veliko Gradiste','Serbia','RS','Veliko Gradiste (Serbia)',1,1,0),(49211,0,149531,'Novi Banovci','Serbia','RS','Novi Banovci (Serbia)',1,1,0),(49212,0,149532,'Gnjilane','Serbia','RS','Gnjilane (Serbia)',1,1,0),(49213,0,149533,'Gamzigrad','Serbia','RS','Gamzigrad (Serbia)',1,1,0),(49214,0,149534,'Donji Milanovac','Serbia','RS','Donji Milanovac (Serbia)',1,1,0),(49215,0,149535,'Gornji Milanovac','Serbia','RS','Gornji Milanovac (Serbia)',1,1,0),(49216,0,149536,'Kosovo Polje','Serbia','RS','Kosovo Polje (Serbia)',1,1,0),(49217,0,149537,'Dimitrovgrad','Serbia','RS','Dimitrovgrad (Serbia)',1,1,0),(49218,0,149538,'Knjazevac','Serbia','RS','Knjazevac (Serbia)',1,1,0),(49219,0,149539,'Priboj','Serbia','RS','Priboj (Serbia)',1,1,0),(49220,0,149540,'Apatin','Serbia','RS','Apatin (Serbia)',1,1,0),(49221,0,149541,'Arilje','Serbia','RS','Arilje (Serbia)',1,1,0),(49222,0,149542,'Kladovo','Serbia','RS','Kladovo (Serbia)',1,1,0),(49223,0,149543,'Prijepolje','Serbia','RS','Prijepolje (Serbia)',1,1,0),(49224,0,149544,'Sjenica','Serbia','RS','Sjenica (Serbia)',1,1,0),(49225,0,149545,'Pancevo','Serbia','RS','Pancevo (Serbia)',1,1,0),(49226,0,149546,'Backa Palanka','Serbia','RS','Backa Palanka (Serbia)',1,1,0),(49227,0,149547,'Jagodina','Serbia','RS','Jagodina (Serbia)',1,1,0),(49228,0,149548,'Prahovo','Serbia','RS','Prahovo (Serbia)',1,1,0),(49229,0,149549,'Jezevica','Serbia','RS','Jezevica (Serbia)',1,1,0),(49230,0,149550,'Divcibare','Serbia','RS','Divcibare (Serbia)',1,1,0),(49231,0,149551,'Vladicin Han','Serbia','RS','Vladicin Han (Serbia)',1,1,0),(49232,0,149552,'Zdrelo','Serbia','RS','Zdrelo (Serbia)',1,1,0),(49233,0,149553,'Jabucko Ravniste','Serbia','RS','Jabucko Ravniste (Serbia)',1,1,0),(49234,0,149554,'Vrbas','Serbia','RS','Vrbas (Serbia)',1,1,0),(49235,0,149555,'Kikinda','Serbia','RS','Kikinda (Serbia)',1,1,0),(49236,0,149556,'Pozega','Serbia','RS','Pozega (Serbia)',1,1,0),(49237,0,149557,'Kursumlija','Serbia','RS','Kursumlija (Serbia)',1,1,0),(49238,0,149558,'Sid','Serbia','RS','Sid (Serbia)',1,1,0),(49239,0,149559,'Waidala','Sierra Leone','SL','Waidala (Sierra Leone)',1,1,0),(49240,0,149560,'Koidu','Sierra Leone','SL','Koidu (Sierra Leone)',1,1,0),(49241,0,149561,'Kamakwie','Sierra Leone','SL','Kamakwie (Sierra Leone)',1,1,0),(49242,16763,149562,'Marau','Solomon Islands','SB','Marau (Solomon Islands)',1,1,0),(49243,20796,149563,'Parasi','Solomon Islands','SB','Parasi (Solomon Islands)',1,1,0),(49244,2318,149564,'Barakoma','Solomon Islands','SB','Barakoma (Solomon Islands)',1,1,0),(49245,2426,149565,'Barora Island','Solomon Islands','SB','Barora Island (Solomon Islands)',1,1,0),(49246,14118,149566,'Kirakira','Solomon Islands','SB','Kirakira (Solomon Islands)',1,1,0),(49247,9333,149567,'Fera Island','Solomon Islands','SB','Fera Island (Solomon Islands)',1,1,0),(49248,18088,149568,'Mono Island','Solomon Islands','SB','Mono Island (Solomon Islands)',1,1,0),(49249,6209,149569,'Choiseul Bay','Solomon Islands','SB','Choiseul Bay (Solomon Islands)',1,1,0),(49250,2843,149570,'Bellona Island','Solomon Islands','SB','Bellona Island (Solomon Islands)',1,1,0),(49251,17224,149571,'Mbambanakira','Solomon Islands','SB','Mbambanakira (Solomon Islands)',1,1,0),(49252,0,149572,'Stirling Island','Solomon Islands','SB','Stirling Island (Solomon Islands)',1,1,0),(49253,26293,149573,'Suavanao','Solomon Islands','SB','Suavanao (Solomon Islands)',1,1,0),(49254,2149,149574,'Ballalae','Solomon Islands','SB','Ballalae (Solomon Islands)',1,1,0),(49255,0,149575,'Abomey','Benin','BJ','Abomey (Benin)',1,1,0),(49256,164,149576,'Adamstown','Australia','AU','Adamstown (Australia)',1,1,0),(49257,201,149577,'Adrar','Algeria','DZ','Adrar (Algeria)',1,1,0),(49258,0,149578,'Aegviidu','Estonia','EE','Aegviidu (Estonia)',1,1,0),(49259,292,149579,'Agveran','Armenia','AM','Agveran (Armenia)',1,1,0),(49260,0,149580,'Akhmim','Egypt','EG','Akhmim (Egypt)',1,1,0),(49261,0,149581,'Al Bawiti','Egypt','EG','Al Bawiti (Egypt)',1,1,0),(49262,0,149582,'Al Husayniyah','Egypt','EG','Al Husayniyah (Egypt)',1,1,0),(49263,0,149583,'Altja','Estonia','EE','Altja (Estonia)',1,1,0),(49264,1094,149584,'Anjouan','Comoros','KM','Anjouan (Comoros)',1,1,0),(49265,0,149585,'Arly','Burkina Faso','BF','Arly (Burkina Faso)',1,1,0),(49266,0,149586,'Artik','Armenia','AM','Artik (Armenia)',1,1,0),(49267,0,149587,'Arzakan','Armenia','AM','Arzakan (Armenia)',1,1,0),(49268,1571,149588,'Asela','Ethiopia','ET','Asela (Ethiopia)',1,1,0),(49269,1622,149589,'Asosa','Ethiopia','ET','Asosa (Ethiopia)',1,1,0),(49270,1645,149590,'Assiut','Egypt','EG','Assiut (Egypt)',1,1,0),(49271,1889,149591,'Awareh','Ethiopia','ET','Awareh (Ethiopia)',1,1,0),(49272,0,149592,'Awash','Ethiopia','ET','Awash (Ethiopia)',1,1,0),(49273,0,149593,'Awassa','Ethiopia','ET','Awassa (Ethiopia)',1,1,0),(49274,1896,149594,'Axum','Ethiopia','ET','Axum (Ethiopia)',1,1,0),(49275,0,149595,'Az Zagazig','Egypt','EG','Az Zagazig (Egypt)',1,1,0),(49276,2007,149596,'Bafoussam','Cameroon','CM','Bafoussam (Cameroon)',1,1,0),(49277,0,149597,'Bafut','Cameroon','CM','Bafut (Cameroon)',1,1,0),(49278,0,149598,'Bali','Cameroon','CM','Bali (Cameroon)',1,1,0),(49279,0,149599,'Bambadjani','Comoros','KM','Bambadjani (Comoros)',1,1,0),(49280,2227,149600,'Bamenda','Cameroon','CM','Bamenda (Cameroon)',1,1,0),(49281,0,149601,'Barisal','Bangladesh','BD','Barisal (Bangladesh)',1,1,0),(49282,0,149602,'Batna','Algeria','DZ','Batna (Algeria)',1,1,0),(49283,2539,149603,'Batouri','Cameroon','CM','Batouri (Cameroon)',1,1,0),(49284,2672,149604,'Bechar','Algeria','DZ','Bechar (Algeria)',1,1,0),(49285,2720,149605,'Beica','Ethiopia','ET','Beica (Ethiopia)',1,1,0),(49286,0,149606,'Belmont','Australia','AU','Belmont (Australia)',1,1,0),(49287,3045,149607,'Bertoua','Cameroon','CM','Bertoua (Cameroon)',1,1,0),(49288,3307,149608,'Biskra','Algeria','DZ','Biskra (Algeria)',1,1,0),(49289,0,149609,'Blida','Algeria','DZ','Blida (Algeria)',1,1,0),(49290,0,149610,'Bobruysk','Belarus','BY','Bobruysk (Belarus)',1,1,0),(49291,0,149611,'Boca De Coruja','Cape Verde','CV','Boca De Coruja (Cape Verde)',1,1,0),(49292,0,149612,'Bonaberi','Cameroon','CM','Bonaberi (Cameroon)',1,1,0),(49293,3694,149613,'Bordj Badji Mokhtar','Algeria','DZ','Bordj Badji Mokhtar (Algeria)',1,1,0),(49294,3791,149614,'Boukiero','Congo','CG','Boukiero (Congo)',1,1,0),(49295,0,149615,'Boumerdes','Algeria','DZ','Boumerdes (Algeria)',1,1,0),(49296,3805,149616,'Boundji','Congo','CG','Boundji (Congo)',1,1,0),(49297,3840,149617,'Boussaada','Algeria','DZ','Boussaada (Algeria)',1,1,0),(49298,0,149618,'Brest','Czech Republic','CZ','Brest (Czech Republic)',1,1,0),(49299,0,149619,'Buea','Cameroon','CM','Buea (Cameroon)',1,1,0),(49300,0,149620,'Bururi','Burundi','BI','Bururi (Burundi)',1,1,0),(49301,0,149621,'Butrint','Albania','AL','Butrint (Albania)',1,1,0),(49302,0,149622,'Byurakan','Armenia','AM','Byurakan (Armenia)',1,1,0),(49303,4611,149623,'Cabinda','Angola','AO','Cabinda (Angola)',1,1,0),(49304,5688,149624,'Chagni','Ethiopia','ET','Chagni (Ethiopia)',1,1,0),(49305,0,149625,'Chindini','Comoros','KM','Chindini (Comoros)',1,1,0),(49306,6203,149626,'Chlef','Algeria','DZ','Chlef (Algeria)',1,1,0),(49307,0,149627,'Chomoni','Comoros','KM','Chomoni (Comoros)',1,1,0),(49308,0,149628,'Citluk','Croatia','HR','Citluk (Croatia)',1,1,0),(49309,0,149629,'Coco Island','Costa Rica','CR','Coco Island (Costa Rica)',1,1,0),(49310,0,149630,'Concepcion','Argentina','AR','Concepcion (Argentina)',1,1,0),(49311,7350,149631,'Culebra','Costa Rica','CR','Culebra (Costa Rica)',1,1,0),(49312,0,149632,'Damietta','Egypt','EG','Damietta (Egypt)',1,1,0),(49313,7671,149633,'Degahbur','Ethiopia','ET','Degahbur (Ethiopia)',1,1,0),(49314,0,149634,'Dembi Dolo','Ethiopia','ET','Dembi Dolo (Ethiopia)',1,1,0),(49315,7787,149635,'Dessie','Ethiopia','ET','Dessie (Ethiopia)',1,1,0),(49316,0,149636,'Dimitrovgrad','Bulgaria','BG','Dimitrovgrad (Bulgaria)',1,1,0),(49317,0,149637,'Dinajpur','Bangladesh','BD','Dinajpur (Bangladesh)',1,1,0),(49318,7936,149638,'Dire Dawa','Ethiopia','ET','Dire Dawa (Ethiopia)',1,1,0),(49319,7963,149639,'Djanet','Algeria','DZ','Djanet (Algeria)',1,1,0),(49320,0,149640,'Djemila','Algeria','DZ','Djemila (Algeria)',1,1,0),(49321,8217,149641,'Dschang','Cameroon','CM','Dschang (Cameroon)',1,1,0),(49322,8301,149642,'Dundo','Angola','AO','Dundo (Angola)',1,1,0),(49323,0,149643,'Ecmiadzin','Armenia','AM','Ecmiadzin (Armenia)',1,1,0),(49324,0,149644,'Edfu','Egypt','EG','Edfu (Egypt)',1,1,0),(49325,0,149645,'El Bayadh','Algeria','DZ','El Bayadh (Algeria)',1,1,0),(49326,0,149646,'El Faiyum','Egypt','EG','El Faiyum (Egypt)',1,1,0),(49327,8611,149647,'El Golea','Algeria','DZ','El Golea (Algeria)',1,1,0),(49328,0,149648,'El Kala','Algeria','DZ','El Kala (Algeria)',1,1,0),(49329,0,149649,'El Kharga','Egypt','EG','El Kharga (Egypt)',1,1,0),(49330,30903,149650,'El Minya','Egypt','EG','El Minya (Egypt)',1,1,0),(49331,0,149651,'Elbiku','Estonia','EE','Elbiku (Estonia)',1,1,0),(49332,9078,149652,'Ewo','Congo','CG','Ewo (Congo)',1,1,0),(49333,0,149653,'Fakous','Egypt','EG','Fakous (Egypt)',1,1,0),(49334,9425,149654,'Fincha','Ethiopia','ET','Fincha (Ethiopia)',1,1,0),(49335,0,149655,'Florida','Argentina','AR','Florida (Argentina)',1,1,0),(49336,9817,149656,'Freetown','Antigua & Barbuda','AG','Freetown (Antigua & Barbuda)',1,1,0),(49337,0,149657,'Freetown','Bahamas','BS','Freetown (Bahamas)',1,1,0),(49338,0,149658,'Gabala','Azerbaijan','AZ','Gabala (Azerbaijan)',1,1,0),(49339,10084,149659,'Gambela','Ethiopia','ET','Gambela (Ethiopia)',1,1,0),(49340,10114,149660,'Gaoua','Burkina Faso','BF','Gaoua (Burkina Faso)',1,1,0),(49341,0,149661,'Garni','Armenia','AM','Garni (Armenia)',1,1,0),(49342,10165,149662,'Garoua','Cameroon','CM','Garoua (Cameroon)',1,1,0),(49343,10253,149663,'Geladi','Ethiopia','ET','Geladi (Ethiopia)',1,1,0),(49344,0,149664,'Gendawa','Ethiopia','ET','Gendawa (Ethiopia)',1,1,0),(49345,0,149665,'Gewane','Ethiopia','ET','Gewane (Ethiopia)',1,1,0),(49346,10376,149666,'Ghimbi','Ethiopia','ET','Ghimbi (Ethiopia)',1,1,0),(49347,10479,149667,'Gjirokaster','Albania','AL','Gjirokaster (Albania)',1,1,0),(49348,10578,149668,'Goba','Ethiopia','ET','Goba (Ethiopia)',1,1,0),(49349,10588,149669,'Gode','Ethiopia','ET','Gode (Ethiopia)',1,1,0),(49350,10693,149670,'Gore','Ethiopia','ET','Gore (Ethiopia)',1,1,0),(49351,10715,149671,'Gorom-Gorom','Burkina Faso','BF','Gorom-Gorom (Burkina Faso)',1,1,0),(49352,0,149672,'Grand Popo','Benin','BJ','Grand Popo (Benin)',1,1,0),(49353,0,149673,'Grodna','Belarus','BY','Grodna (Belarus)',1,1,0),(49354,0,149674,'Hadzici','Bosnia and Herzegowina','BA','Hadzici (Bosnia and Herzegowina)',1,1,0),(49355,0,149675,'Haghpat','Armenia','AM','Haghpat (Armenia)',1,1,0),(49356,0,149676,'Hainaveld Game Farm','Botswana','BW','Hainaveld Game Farm (Botswana)',1,1,0),(49357,0,149677,'Hellamaa','Estonia','EE','Hellamaa (Estonia)',1,1,0),(49358,0,149678,'Home Island','Cocos (Keeling) Islands',NULL,'Home Island (Cocos (Keeling) Islands)',1,1,0),(49359,12461,149679,'Humera','Ethiopia','ET','Humera (Ethiopia)',1,1,0),(49360,12648,149680,'Illizi','Algeria','DZ','Illizi (Algeria)',1,1,0),(49361,12680,149681,'Impfondo','Congo','CG','Impfondo (Congo)',1,1,0),(49362,31144,149682,'In Amenas','Algeria','DZ','In Amenas (Algeria)',1,1,0),(49363,31145,149683,'In Guezzam','Algeria','DZ','In Guezzam (Algeria)',1,1,0),(49364,31146,149684,'In Salah','Algeria','DZ','In Salah (Algeria)',1,1,0),(49365,12853,149685,'Ishurdi','Bangladesh','BD','Ishurdi (Bangladesh)',1,1,0),(49366,0,149686,'Jaipurhat','Bangladesh','BD','Jaipurhat (Bangladesh)',1,1,0),(49367,13112,149687,'Jessore','Bangladesh','BD','Jessore (Bangladesh)',1,1,0),(49368,13142,149688,'Jijel','Algeria','DZ','Jijel (Algeria)',1,1,0),(49369,13143,149689,'Jijiga','Ethiopia','ET','Jijiga (Ethiopia)',1,1,0),(49370,13149,149690,'Jimma','Ethiopia','ET','Jimma (Ethiopia)',1,1,0),(49371,13164,149691,'Jinka','Ethiopia','ET','Jinka (Ethiopia)',1,1,0),(49372,0,149692,'Kalapara','Bangladesh','BD','Kalapara (Bangladesh)',1,1,0),(49373,13521,149693,'Kanye','Botswana','BW','Kanye (Botswana)',1,1,0),(49374,0,149694,'Karula','Estonia','EE','Karula (Estonia)',1,1,0),(49375,0,149695,'Kayongozi','Burundi','BI','Kayongozi (Burundi)',1,1,0),(49376,0,149696,'Kebri Dar','Ethiopia','ET','Kebri Dar (Ethiopia)',1,1,0),(49377,13789,149697,'Kelafo','Ethiopia','ET','Kelafo (Ethiopia)',1,1,0),(49378,13796,149698,'Kelle','Congo','CG','Kelle (Congo)',1,1,0),(49379,13966,149699,'Khulna','Bangladesh','BD','Khulna (Bangladesh)',1,1,0),(49380,13975,149700,'Kibouende','Congo','CG','Kibouende (Congo)',1,1,0),(49381,14055,149701,'Kindamba','Congo','CG','Kindamba (Congo)',1,1,0),(49382,14110,149702,'Kintsana','Congo','CG','Kintsana (Congo)',1,1,0),(49383,14164,149703,'Kirundo','Burundi','BI','Kirundo (Burundi)',1,1,0),(49384,0,149704,'Kohila','Estonia','EE','Kohila (Estonia)',1,1,0),(49385,14383,149705,'Korce','Albania','AL','Korce (Albania)',1,1,0),(49386,14451,149706,'Koutaba','Cameroon','CM','Koutaba (Cameroon)',1,1,0),(49387,0,149707,'Kuijoe','Estonia','EE','Kuijoe (Estonia)',1,1,0),(49388,0,149708,'Kuivastu','Estonia','EE','Kuivastu (Estonia)',1,1,0),(49389,14629,149709,'Kushtia','Bangladesh','BD','Kushtia (Bangladesh)',1,1,0),(49390,0,149710,'Lankaran','Azerbaijan','AZ','Lankaran (Azerbaijan)',1,1,0),(49391,15261,149711,'Lekana','Congo','CG','Lekana (Congo)',1,1,0),(49392,0,149712,'Lihula','Estonia','EE','Lihula (Estonia)',1,1,0),(49393,0,149713,'Liiva','Estonia','EE','Liiva (Estonia)',1,1,0),(49394,0,149714,'Ljubuski','Bosnia and Herzegowina','BA','Ljubuski (Bosnia and Herzegowina)',1,1,0),(49395,0,149715,'Lomie','Cameroon','CM','Lomie (Cameroon)',1,1,0),(49396,15929,149716,'Loubomo','Congo','CG','Loubomo (Congo)',1,1,0),(49397,16000,149717,'Lubango','Angola','AO','Lubango (Angola)',1,1,0),(49398,16045,149718,'Luena','Angola','AO','Luena (Angola)',1,1,0),(49399,0,149719,'Luiana','Angola','AO','Luiana (Angola)',1,1,0),(49400,0,149720,'Lukavac','Bosnia and Herzegowina','BA','Lukavac (Bosnia and Herzegowina)',1,1,0),(49401,0,149721,'Lusarat','Armenia','AM','Lusarat (Armenia)',1,1,0),(49402,16205,149722,'M Banza Congo','Angola','AO','M Banza Congo (Angola)',1,1,0),(49403,0,149723,'Mahilyow','Belarus','BY','Mahilyow (Belarus)',1,1,0),(49404,16444,149724,'Makabana','Congo','CG','Makabana (Congo)',1,1,0),(49405,16466,149725,'Makoua','Congo','CG','Makoua (Congo)',1,1,0),(49406,16491,149726,'Malange','Angola','AO','Malange (Angola)',1,1,0),(49407,0,149727,'Malorita','Belarus','BY','Malorita (Belarus)',1,1,0),(49408,16581,149728,'Mamfe','Cameroon','CM','Mamfe (Cameroon)',1,1,0),(49409,0,149729,'Mandalay','Australia','AU','Mandalay (Australia)',1,1,0),(49410,0,149730,'Mansoura','Egypt','EG','Mansoura (Egypt)',1,1,0),(49411,16922,149731,'Maroua','Cameroon','CM','Maroua (Cameroon)',1,1,0),(49412,0,149732,'Maryland','Australia','AU','Maryland (Australia)',1,1,0),(49413,17016,149733,'Mascara','Algeria','DZ','Mascara (Algeria)',1,1,0),(49414,17146,149734,'Mauke','Cook Islands','CK','Mauke (Cook Islands)',1,1,0),(49415,17355,149735,'Mekane Selam','Ethiopia','ET','Mekane Selam (Ethiopia)',1,1,0),(49416,17412,149736,'Mena','Ethiopia','ET','Mena (Ethiopia)',1,1,0),(49417,17421,149737,'Mendi','Ethiopia','ET','Mendi (Ethiopia)',1,1,0),(49418,17444,149738,'Menongue','Angola','AO','Menongue (Angola)',1,1,0),(49419,0,149739,'Misso','Estonia','EE','Misso (Estonia)',1,1,0),(49420,0,149740,'Mitiaro','Cook Islands','CK','Mitiaro (Cook Islands)',1,1,0),(49421,0,149741,'Mitsamiouli','Comoros','KM','Mitsamiouli (Comoros)',1,1,0),(49422,17892,149742,'Mizan Teferi','Ethiopia','ET','Mizan Teferi (Ethiopia)',1,1,0),(49423,0,149743,'Mogilev','Belarus','BY','Mogilev (Belarus)',1,1,0),(49424,17944,149744,'Moheli','Comoros','KM','Moheli (Comoros)',1,1,0),(49425,18447,149745,'Moron','Argentina','AR','Moron (Argentina)',1,1,0),(49426,18510,149746,'Mossendjo','Congo','CG','Mossendjo (Congo)',1,1,0),(49427,0,149747,'Motopi','Botswana','BW','Motopi (Botswana)',1,1,0),(49428,0,149748,'Moulvibazar','Bangladesh','BD','Moulvibazar (Bangladesh)',1,1,0),(49429,0,149749,'Mut','Egypt','EG','Mut (Egypt)',1,1,0),(49430,18811,149750,'Mymensingh','Bangladesh','BD','Mymensingh (Bangladesh)',1,1,0),(49431,18834,149751,'N Gaoundere','Cameroon','CM','N Gaoundere (Cameroon)',1,1,0),(49432,0,149752,'Nakhchivan','Azerbaijan','AZ','Nakhchivan (Azerbaijan)',1,1,0),(49433,18921,149753,'Namibe','Angola','AO','Namibe (Angola)',1,1,0),(49434,19029,149754,'Narva-Joesuu','Estonia','EE','Narva-Joesuu (Estonia)',1,1,0),(49435,19046,149755,'Nata','Botswana','BW','Nata (Botswana)',1,1,0),(49436,19368,149756,'Ngamoueri','Congo','CG','Ngamoueri (Congo)',1,1,0),(49437,0,149757,'Ngoma','Botswana','BW','Ngoma (Botswana)',1,1,0),(49438,19510,149758,'Nkayi','Congo','CG','Nkayi (Congo)',1,1,0),(49439,0,149759,'North Keeeling Island','Cocos (Keeling) Islands',NULL,'North Keeeling Island (Cocos (Keeling) Islands)',1,1,0),(49440,19897,149760,'Obock','Djibouti','DJ','Obock (Djibouti)',1,1,0),(49441,20013,149761,'Okoyo','Congo','CG','Okoyo (Congo)',1,1,0),(49442,0,149762,'Oru','Estonia','EE','Oru (Estonia)',1,1,0),(49443,20417,149763,'Ouargla','Algeria','DZ','Ouargla (Algeria)',1,1,0),(49444,20429,149764,'Ouesso','Congo','CG','Ouesso (Congo)',1,1,0),(49445,20482,149765,'Owando','Congo','CG','Owando (Congo)',1,1,0),(49446,20540,149766,'Padaste','Estonia','EE','Padaste (Estonia)',1,1,0),(49447,0,149767,'Padise','Estonia','EE','Padise (Estonia)',1,1,0),(49448,0,149768,'Pale','Bosnia and Herzegowina','BA','Pale (Bosnia and Herzegowina)',1,1,0),(49449,0,149769,'Palmse','Estonia','EE','Palmse (Estonia)',1,1,0),(49450,0,149770,'Pambwa','Congo','CG','Pambwa (Congo)',1,1,0),(49451,0,149771,'Pandamatenga','Botswana','BW','Pandamatenga (Botswana)',1,1,0),(49452,21103,149772,'Penrhyn Island','Cook Islands','CK','Penrhyn Island (Cook Islands)',1,1,0),(49453,0,149773,'Pointe-Noire','Congo','CG','Pointe-Noire (Congo)',1,1,0),(49454,0,149774,'Pojan','Albania','AL','Pojan (Albania)',1,1,0),(49455,21753,149775,'Ponta do Sol','Cape Verde','CV','Ponta do Sol (Cape Verde)',1,1,0),(49456,21895,149776,'Porto Amboim','Angola','AO','Porto Amboim (Angola)',1,1,0),(49457,0,149777,'Porto-Novo','Benin','BJ','Porto-Novo (Benin)',1,1,0),(49458,0,149778,'Pozega','Croatia','HR','Pozega (Croatia)',1,1,0),(49459,0,149779,'Preze','Albania','AL','Preze (Albania)',1,1,0),(49460,0,149780,'Qasr al Farafirah','Egypt','EG','Qasr al Farafirah (Egypt)',1,1,0),(49461,0,149781,'Qobustan','Azerbaijan','AZ','Qobustan (Azerbaijan)',1,1,0),(49462,0,149782,'Qusar','Azerbaijan','AZ','Qusar (Azerbaijan)',1,1,0),(49463,22515,149783,'Rajshahi','Bangladesh','BD','Rajshahi (Bangladesh)',1,1,0),(49464,22581,149784,'Rangpur','Bangladesh','BD','Rangpur (Bangladesh)',1,1,0),(49465,0,149785,'Rannakula','Estonia','EE','Rannakula (Estonia)',1,1,0),(49466,0,149786,'Rapina','Estonia','EE','Rapina (Estonia)',1,1,0),(49467,0,149787,'Ratamka','Belarus','BY','Ratamka (Belarus)',1,1,0),(49468,0,149788,'Ravno','Bosnia and Herzegowina','BA','Ravno (Bosnia and Herzegowina)',1,1,0),(49469,0,149789,'Relizane','Algeria','DZ','Relizane (Algeria)',1,1,0),(49470,0,149790,'Ridala','Estonia','EE','Ridala (Estonia)',1,1,0),(49471,0,149791,'Sabana de la Mar','Dominican Republic','DO','Sabana de la Mar (Dominican Republic)',1,1,0),(49472,0,149792,'Saghmosavan','Armenia','AM','Saghmosavan (Armenia)',1,1,0),(49473,0,149793,'Saida','Algeria','DZ','Saida (Algeria)',1,1,0),(49474,23624,149794,'Saidpur','Bangladesh','BD','Saidpur (Bangladesh)',1,1,0),(49475,0,149795,'Shamakhi','Azerbaijan','AZ','Shamakhi (Azerbaijan)',1,1,0),(49476,0,149796,'Sanhur','Egypt','EG','Sanhur (Egypt)',1,1,0),(49477,0,149797,'Santa Ana','Costa Rica','CR','Santa Ana (Costa Rica)',1,1,0),(49478,0,149798,'Santa Ana','Argentina','AR','Santa Ana (Argentina)',1,1,0),(49479,24204,149799,'Santa Cruz','Aruba','AW','Santa Cruz (Aruba)',1,1,0),(49480,0,149800,'Santa Cruz','Cape Verde','CV','Santa Cruz (Cape Verde)',1,1,0),(49481,24303,149801,'Sarande','Albania','AL','Sarande (Albania)',1,1,0),(49482,0,149802,'Saunakula','Estonia','EE','Saunakula (Estonia)',1,1,0),(49483,24409,149803,'Saurimo','Angola','AO','Saurimo (Angola)',1,1,0),(49484,0,149804,'Savar','Bangladesh','BD','Savar (Bangladesh)',1,1,0),(49485,0,149805,'Selinda Reserve','Botswana','BW','Selinda Reserve (Botswana)',1,1,0),(49486,0,149806,'Setif','Algeria','DZ','Setif (Algeria)',1,1,0),(49487,24958,149807,'Shakiso','Ethiopia','ET','Shakiso (Ethiopia)',1,1,0),(49488,25070,149808,'Shillavo','Ethiopia','ET','Shillavo (Ethiopia)',1,1,0),(49489,25101,149809,'Shire','Ethiopia','ET','Shire (Ethiopia)',1,1,0),(49490,0,149810,'Shkoder','Albania','AL','Shkoder (Albania)',1,1,0),(49491,0,149811,'Sidi Bel Abbes','Algeria','DZ','Sidi Bel Abbes (Algeria)',1,1,0),(49492,0,149812,'Siroki Brijeg','Bosnia and Herzegowina','BA','Siroki Brijeg (Bosnia and Herzegowina)',1,1,0),(49493,0,149813,'Skikda','Algeria','DZ','Skikda (Algeria)',1,1,0),(49494,25532,149814,'Soddu','Ethiopia','ET','Soddu (Ethiopia)',1,1,0),(49495,25703,149815,'Souanke','Congo','CG','Souanke (Congo)',1,1,0),(49496,26074,149816,'Stepanakert','Azerbaijan','AZ','Stepanakert (Azerbaijan)',1,1,0),(49497,26291,149817,'Suapan','Botswana','BW','Suapan (Botswana)',1,1,0),(49498,0,149818,'Suwarrow','Cook Islands','CK','Suwarrow (Cook Islands)',1,1,0),(49499,26546,149819,'Sylhet','Bangladesh','BD','Sylhet (Bangladesh)',1,1,0),(49500,26604,149820,'Tadjoura','Djibouti','DJ','Tadjoura (Djibouti)',1,1,0),(49501,0,149821,'Talin','Armenia','AM','Talin (Armenia)',1,1,0),(49502,26721,149822,'Tamanrasset','Algeria','DZ','Tamanrasset (Algeria)',1,1,0),(49503,0,149823,'Tamiyah','Egypt','EG','Tamiyah (Egypt)',1,1,0),(49504,26881,149824,'Tatai','Cambodia','KH','Tatai (Cambodia)',1,1,0),(49505,0,149825,'Tatev','Armenia','AM','Tatev (Armenia)',1,1,0),(49506,26927,149826,'Tbessa','Algeria','DZ','Tbessa (Algeria)',1,1,0),(49507,0,149827,'Tchollire','Cameroon','CM','Tchollire (Cameroon)',1,1,0),(49508,0,149828,'Tekopua','Cook Islands','CK','Tekopua (Cook Islands)',1,1,0),(49509,0,149829,'Tenth of Ramadan City','Egypt','EG','Tenth of Ramadan City (Egypt)',1,1,0),(49510,0,149830,'The Settlement','Christmas Island',NULL,'The Settlement (Christmas Island)',1,1,0),(49511,27252,149831,'Tiaret','Algeria','DZ','Tiaret (Algeria)',1,1,0),(49512,27288,149832,'Tiko','Cameroon','CM','Tiko (Cameroon)',1,1,0),(49513,27305,149833,'Timimoun','Algeria','DZ','Timimoun (Algeria)',1,1,0),(49514,27318,149834,'Tindouf','Algeria','DZ','Tindouf (Algeria)',1,1,0),(49515,0,149835,'Tipasa','Algeria','DZ','Tipasa (Algeria)',1,1,0),(49516,27339,149836,'Tippi','Ethiopia','ET','Tippi (Ethiopia)',1,1,0),(49517,27600,149837,'Touggourt','Algeria','DZ','Touggourt (Algeria)',1,1,0),(49518,27915,149838,'Tuli Lodge','Botswana','BW','Tuli Lodge (Botswana)',1,1,0),(49519,27930,149839,'Tum','Ethiopia','ET','Tum (Ethiopia)',1,1,0),(49520,0,149840,'Turmi','Ethiopia','ET','Turmi (Ethiopia)',1,1,0),(49521,0,149841,'Vahtraste','Estonia','EE','Vahtraste (Estonia)',1,1,0),(49522,0,149842,'Vaisi','Estonia','EE','Vaisi (Estonia)',1,1,0),(49523,28620,149843,'Vermont','Australia','AU','Vermont (Australia)',1,1,0),(49524,0,149844,'Viana','Angola','AO','Viana (Angola)',1,1,0),(49525,0,149845,'Victoria','Argentina','AR','Victoria (Argentina)',1,1,0),(49526,0,149846,'Vihterpalu','Estonia','EE','Vihterpalu (Estonia)',1,1,0),(49527,0,149847,'Villeta','Colombia','CO','Villeta (Colombia)',1,1,0),(49528,28940,149848,'Virginia','Australia','AU','Virginia (Australia)',1,1,0),(49529,0,149849,'Visegrad','Bosnia and Herzegowina','BA','Visegrad (Bosnia and Herzegowina)',1,1,0),(49530,0,149850,'Vitebsk','Belarus','BY','Vitebsk (Belarus)',1,1,0),(49531,0,149851,'Vore','Albania','AL','Vore (Albania)',1,1,0),(49532,29061,149852,'Voru','Estonia','EE','Voru (Estonia)',1,1,0),(49533,29114,149853,'Waca','Ethiopia','ET','Waca (Ethiopia)',1,1,0),(49534,29116,149854,'Waco Kungo','Angola','AO','Waco Kungo (Angola)',1,1,0),(49535,29283,149855,'Warder','Ethiopia','ET','Warder (Ethiopia)',1,1,0),(49536,0,149856,'West Island','Cocos (Keeling) Islands',NULL,'West Island (Cocos (Keeling) Islands)',1,1,0),(49537,30093,149857,'Wyoming','Australia','AU','Wyoming (Australia)',1,1,0),(49538,0,149858,'Yokadouma','Cameroon','CM','Yokadouma (Cameroon)',1,1,0),(49539,0,149859,'Zabre','Burkina Faso','BF','Zabre (Burkina Faso)',1,1,0),(49540,30402,149860,'Zanaga','Congo','CG','Zanaga (Congo)',1,1,0),(49541,0,149861,'Zaqatala','Azerbaijan','AZ','Zaqatala (Azerbaijan)',1,1,0),(49542,0,149862,'Ziama Mansouria','Algeria','DZ','Ziama Mansouria (Algeria)',1,1,0),(49543,0,149863,'Zlobin','Belarus','BY','Zlobin (Belarus)',1,1,0),(49544,34970,149864,'Aqaba','Jordan','JO','Aqaba (Jordan)',1,1,0),(49545,0,149865,'Kostanay','Kazakhstan','KZ','Kostanay (Kazakhstan)',1,1,0),(49546,404,149866,'Aktau','Kazakhstan','KZ','Aktau (Kazakhstan)',1,1,0),(49547,28193,149867,'Uralsk','Kazakhstan','KZ','Uralsk (Kazakhstan)',1,1,0),(49548,0,149868,'Turkestan','Kazakhstan','KZ','Turkestan (Kazakhstan)',1,1,0),(49549,0,149869,'Karakol','Kazakhstan','KZ','Karakol (Kazakhstan)',1,1,0),(49550,0,149870,'Shymkent','Kazakhstan','KZ','Shymkent (Kazakhstan)',1,1,0),(49551,0,149871,'Koktal','Kazakhstan','KZ','Koktal (Kazakhstan)',1,1,0),(49552,0,149872,'Kapchagay','Kazakhstan','KZ','Kapchagay (Kazakhstan)',1,1,0),(49553,0,149873,'Jezkazgan','Kazakhstan','KZ','Jezkazgan (Kazakhstan)',1,1,0),(49554,0,149874,'Bayanaul','Kazakhstan','KZ','Bayanaul (Kazakhstan)',1,1,0),(49555,0,149875,'Taraz','Kazakhstan','KZ','Taraz (Kazakhstan)',1,1,0),(49556,0,149876,'Schuchinsk','Kazakhstan','KZ','Schuchinsk (Kazakhstan)',1,1,0),(49557,20944,149877,'Pavlodar','Kazakhstan','KZ','Pavlodar (Kazakhstan)',1,1,0),(49558,0,149878,'Semipalatinsk','Kazakhstan','KZ','Semipalatinsk (Kazakhstan)',1,1,0),(49559,0,149879,'Aksay','Kazakhstan','KZ','Aksay (Kazakhstan)',1,1,0),(49560,0,149880,'Borovoe','Kazakhstan','KZ','Borovoe (Kazakhstan)',1,1,0),(49561,0,149881,'Balkhash','Kazakhstan','KZ','Balkhash (Kazakhstan)',1,1,0),(49562,0,149882,'Kyzylorda','Kazakhstan','KZ','Kyzylorda (Kazakhstan)',1,1,0),(49563,0,149883,'Fort Shevchenko','Kazakhstan','KZ','Fort Shevchenko (Kazakhstan)',1,1,0),(49564,0,149884,'Kopa','Kazakhstan','KZ','Kopa (Kazakhstan)',1,1,0),(49565,0,149885,'Chundzha','Kazakhstan','KZ','Chundzha (Kazakhstan)',1,1,0),(49566,21251,149886,'Petropavlovsk','Kazakhstan','KZ','Petropavlovsk (Kazakhstan)',1,1,0),(49567,0,149887,'Wajir','Kenya','KE','Wajir (Kenya)',1,1,0),(49568,0,149888,'Lodwar','Kenya','KE','Lodwar (Kenya)',1,1,0),(49569,0,149889,'Lokichogio','Kenya','KE','Lokichogio (Kenya)',1,1,0),(49570,0,149890,'Kaloleni','Kenya','KE','Kaloleni (Kenya)',1,1,0),(49571,0,149891,'Garissa','Kenya','KE','Garissa (Kenya)',1,1,0),(49572,26912,149892,'Taveta','Kenya','KE','Taveta (Kenya)',1,1,0),(49573,0,149893,'Mbirikani','Kenya','KE','Mbirikani (Kenya)',1,1,0),(49574,0,149894,'Kalokol','Kenya','KE','Kalokol (Kenya)',1,1,0),(49575,4567,149895,'Butaritari','Kiribati','KI','Butaritari (Kiribati)',1,1,0),(49576,16461,149896,'Makin','Kiribati','KI','Makin (Kiribati)',1,1,0),(49577,26819,149897,'Tarawa','Kiribati','KI','Tarawa (Kiribati)',1,1,0),(49578,20138,149898,'Onotoa','Kiribati','KI','Onotoa (Kiribati)',1,1,0),(49579,26718,149899,'Tamana','Kiribati','KI','Tamana (Kiribati)',1,1,0),(49580,14612,149900,'Kuria','Kiribati','KI','Kuria (Kiribati)',1,1,0),(49581,16400,149901,'Maiana','Kiribati','KI','Maiana (Kiribati)',1,1,0),(49582,26589,149902,'Tabiteuea North','Kiribati','KI','Tabiteuea North (Kiribati)',1,1,0),(49583,1275,149903,'Aranuka','Kiribati','KI','Aranuka (Kiribati)',1,1,0),(49584,9210,149904,'Fanning Island','Kiribati','KI','Fanning Island (Kiribati)',1,1,0),(49585,19463,149905,'Nikunau','Kiribati','KI','Nikunau (Kiribati)',1,1,0),(49586,3048,149906,'Beru','Kiribati','KI','Beru (Kiribati)',1,1,0),(49587,0,149907,'Tabiteuea South','Kiribati','KI','Tabiteuea South (Kiribati)',1,1,0),(49588,62,149908,'Abemama','Kiribati','KI','Abemama (Kiribati)',1,1,0),(49589,0,149909,'Kiritimati','Kiribati','KI','Kiritimati (Kiribati)',1,1,0),(49590,36,149910,'Abaiang','Kiribati','KI','Abaiang (Kiribati)',1,1,0),(49591,19560,149911,'Nonouti','Kiribati','KI','Nonouti (Kiribati)',1,1,0),(49592,16747,149912,'Marakei','Kiribati','KI','Marakei (Kiribati)',1,1,0),(49593,1477,149913,'Arorae Island','Kiribati','KI','Arorae Island (Kiribati)',1,1,0),(49594,0,149914,'Al Khiran','Kuwait','KW','Al Khiran (Kuwait)',1,1,0),(49595,20303,149915,'Osh','Kyrgyzstan','KG','Osh (Kyrgyzstan)',1,1,0),(49596,0,149916,'Arkit','Kyrgyzstan','KG','Arkit (Kyrgyzstan)',1,1,0),(49597,0,149917,'Naryn','Kyrgyzstan','KG','Naryn (Kyrgyzstan)',1,1,0),(49598,0,149918,'Talas','Kyrgyzstan','KG','Talas (Kyrgyzstan)',1,1,0),(49599,0,149919,'Toktogul','Kyrgyzstan','KG','Toktogul (Kyrgyzstan)',1,1,0),(49600,0,149920,'Oudomxay','LAOS','LA','Oudomxay (LAOS)',1,1,0),(49601,0,149921,'Houayxay','LAOS','LA','Houayxay (LAOS)',1,1,0),(49602,0,149922,'Luang Namtha','LAOS','LA','Luang Namtha (LAOS)',1,1,0),(49603,0,149923,'Santa Cruz','Solomon Islands','SB','Santa Cruz (Solomon Islands)',1,1,0),(49604,27906,149924,'Tulagi Island','Solomon Islands','SB','Tulagi Island (Solomon Islands)',1,1,0),(49605,10475,149925,'Gizo','Solomon Islands','SB','Gizo (Solomon Islands)',1,1,0),(49606,0,149926,'Viru','Solomon Islands','SB','Viru (Solomon Islands)',1,1,0),(49607,1713,149927,'Atoifi','Solomon Islands','SB','Atoifi (Solomon Islands)',1,1,0),(49608,22782,149928,'Rennell Island','Solomon Islands','SB','Rennell Island (Solomon Islands)',1,1,0),(49609,1886,149929,'Avu Avu','Solomon Islands','SB','Avu Avu (Solomon Islands)',1,1,0),(49610,22980,149930,'Ringi Cove','Solomon Islands','SB','Ringi Cove (Solomon Islands)',1,1,0),(49611,0,149931,'Gatokae','Solomon Islands','SB','Gatokae (Solomon Islands)',1,1,0),(49612,30187,149932,'Yandina','Solomon Islands','SB','Yandina (Solomon Islands)',1,1,0),(49613,1772,149933,'Auki','Solomon Islands','SB','Auki (Solomon Islands)',1,1,0),(49614,18683,149934,'Munda','Solomon Islands','SB','Munda (Solomon Islands)',1,1,0),(49615,24441,149935,'Savo','Solomon Islands','SB','Savo (Solomon Islands)',1,1,0),(49616,14566,149936,'Kukundu','Solomon Islands','SB','Kukundu (Solomon Islands)',1,1,0),(49617,24198,149937,'Santa Ana','Solomon Islands','SB','Santa Ana (Solomon Islands)',1,1,0),(49618,24729,149938,'Sege','Solomon Islands','SB','Sege (Solomon Islands)',1,1,0),(49619,0,149939,'Machame','South Africa','ZA','Machame (South Africa)',1,1,0),(49620,13018,149940,'Jamestown','South Africa','ZA','Jamestown (South Africa)',1,1,0),(49621,0,149941,'Jamestown','St. Helena','SH','Jamestown (St. Helena)',1,1,0),(49622,27790,149942,'Tristan da Cunha','St. Helena','SH','Tristan da Cunha (St. Helena)',1,1,0),(49623,0,149943,'Longwood','St. Helena','SH','Longwood (St. Helena)',1,1,0),(49624,0,149944,'St.-Pierre','St. Pierre And Miquelon',NULL,'St.-Pierre (St. Pierre And Miquelon)',1,1,0),(49625,17605,149945,'Mhlambanyatsi','Swaziland','SZ','Mhlambanyatsi (Swaziland)',1,1,0),(49626,0,149946,'Big Bend','Swaziland','SZ','Big Bend (Swaziland)',1,1,0),(49627,18528,149947,'Motshane','Swaziland','SZ','Motshane (Swaziland)',1,1,0),(49628,0,149948,'Kwaluseni','Swaziland','SZ','Kwaluseni (Swaziland)',1,1,0),(49629,0,149949,'Kaphunga','Swaziland','SZ','Kaphunga (Swaziland)',1,1,0),(49630,21394,149950,'Piggs Peak','Swaziland','SZ','Piggs Peak (Swaziland)',1,1,0),(49631,0,149951,'Rushon','Tajikistan','TJ','Rushon (Tajikistan)',1,1,0),(49632,0,149952,'Kulob','Tajikistan','TJ','Kulob (Tajikistan)',1,1,0),(49633,0,149953,'Murghob','Tajikistan','TJ','Murghob (Tajikistan)',1,1,0),(49634,8370,149954,'Dushanbe','Tajikistan','TJ','Dushanbe (Tajikistan)',1,1,0),(49635,0,149955,'Khujand','Tajikistan','TJ','Khujand (Tajikistan)',1,1,0),(49636,21053,149956,'Pemba Island','Tanzania','TZ','Pemba Island (Tanzania)',1,1,0),(49637,26769,149957,'Tanga','Tanzania','TZ','Tanga (Tanzania)',1,1,0),(49638,18850,149958,'Nachingwea','Tanzania','TZ','Nachingwea (Tanzania)',1,1,0),(49639,25646,149959,'Songea','Tanzania','TZ','Songea (Tanzania)',1,1,0),(49640,0,149960,'Saadani','Tanzania','TZ','Saadani (Tanzania)',1,1,0),(49641,26362,149961,'Sumbawanga','Tanzania','TZ','Sumbawanga (Tanzania)',1,1,0),(49642,25091,149962,'Shinyanga','Tanzania','TZ','Shinyanga (Tanzania)',1,1,0),(49643,18771,149963,'Musoma','Tanzania','TZ','Musoma (Tanzania)',1,1,0),(49644,18599,149964,'Mtwara','Tanzania','TZ','Mtwara (Tanzania)',1,1,0),(49645,12817,149965,'Iringa','Tanzania','TZ','Iringa (Tanzania)',1,1,0),(49646,14038,149966,'Kilwa','Tanzania','TZ','Kilwa (Tanzania)',1,1,0),(49647,17011,149967,'Masasi','Tanzania','TZ','Masasi (Tanzania)',1,1,0),(49648,0,149968,'Misima','Tanzania','TZ','Misima (Tanzania)',1,1,0),(49649,17228,149969,'Mbeya','Tanzania','TZ','Mbeya (Tanzania)',1,1,0),(49650,4414,149970,'Bukoba','Tanzania','TZ','Bukoba (Tanzania)',1,1,0),(49651,0,149971,'Bariadi','Tanzania','TZ','Bariadi (Tanzania)',1,1,0),(49652,0,149972,'Kiberege','Tanzania','TZ','Kiberege (Tanzania)',1,1,0),(49653,15567,149973,'Lindi','Tanzania','TZ','Lindi (Tanzania)',1,1,0),(49654,0,149974,'Sitalike','Tanzania','TZ','Sitalike (Tanzania)',1,1,0),(49655,0,149975,'Babati','Tanzania','TZ','Babati (Tanzania)',1,1,0),(49656,26593,149976,'Tabora','Tanzania','TZ','Tabora (Tanzania)',1,1,0),(49657,0,149977,'Mango','Togo','TG','Mango (Togo)',1,1,0),(49658,0,149978,'Teboursouk','Tunisia','TN','Teboursouk (Tunisia)',1,1,0),(49659,0,149979,'Dkhila','Tunisia','TN','Dkhila (Tunisia)',1,1,0),(49660,0,149980,'Sidi Fredj','Tunisia','TN','Sidi Fredj (Tunisia)',1,1,0),(49661,0,149981,'El Djem','Tunisia','TN','El Djem (Tunisia)',1,1,0),(49662,0,149982,'Qalat-As-Sanan','Tunisia','TN','Qalat-As-Sanan (Tunisia)',1,1,0),(49663,0,149983,'Dar Allouche','Tunisia','TN','Dar Allouche (Tunisia)',1,1,0),(49664,0,149984,'Subaytilah','Tunisia','TN','Subaytilah (Tunisia)',1,1,0),(49665,8769,149985,'Enfidha','Tunisia','TN','Enfidha (Tunisia)',1,1,0),(49666,0,149986,'Mut','Turkey','TR','Mut (Turkey)',1,1,0),(49667,0,149987,'Bor','Turkey','TR','Bor (Turkey)',1,1,0),(49668,0,149988,'Turkmenbashi','Turkey','TR','Turkmenbashi (Turkey)',1,1,0),(49669,28011,149989,'Tuzla','Turkey','TR','Tuzla (Turkey)',1,1,0),(49670,16990,149990,'Mary','Turkmenistan','TM','Mary (Turkmenistan)',1,1,0),(49671,27971,149991,'Turkmenabat','Turkmenistan','TM','Turkmenabat (Turkmenistan)',1,1,0),(49672,0,149992,'Derweze','Turkmenistan','TM','Derweze (Turkmenistan)',1,1,0),(49673,9961,149993,'Funafuti','Tuvalu','TV','Funafuti (Tuvalu)',1,1,0),(49674,0,149994,'Kibale','Uganda','UG','Kibale (Uganda)',1,1,0),(49675,17226,149995,'Mbarara','Uganda','UG','Mbarara (Uganda)',1,1,0),(49676,0,149996,'Kaabong','Uganda','UG','Kaabong (Uganda)',1,1,0),(49677,0,149997,'Rubirizi','Uganda','UG','Rubirizi (Uganda)',1,1,0),(49678,0,149998,'Seeta','Uganda','UG','Seeta (Uganda)',1,1,0),(49679,0,149999,'Masindi','Uganda','UG','Masindi (Uganda)',1,1,0),(49680,13630,150000,'Kasese','Uganda','UG','Kasese (Uganda)',1,1,0),(49681,0,150001,'Nkuringo','Uganda','UG','Nkuringo (Uganda)',1,1,0),(49682,0,150002,'Paraa','Uganda','UG','Paraa (Uganda)',1,1,0),(49683,0,150003,'Kyenjojo','Uganda','UG','Kyenjojo (Uganda)',1,1,0),(49684,0,150004,'Lugazi','Uganda','UG','Lugazi (Uganda)',1,1,0),(49685,0,150005,'Kisoro','Uganda','UG','Kisoro (Uganda)',1,1,0),(49686,0,150006,'Rukungiri','Uganda','UG','Rukungiri (Uganda)',1,1,0),(49687,18646,150007,'Mukono','Uganda','UG','Mukono (Uganda)',1,1,0),(49688,11200,150008,'Gulu','Uganda','UG','Gulu (Uganda)',1,1,0),(49689,0,150009,'Ishasha','Uganda','UG','Ishasha (Uganda)',1,1,0),(49690,1526,150010,'Arua','Uganda','UG','Arua (Uganda)',1,1,0),(49691,0,150011,'Midway Atoll','US Minor Outlying Islands',NULL,'Midway Atoll (US Minor Outlying Islands)',1,1,0),(49692,18914,150012,'Namangan','Uzbekistan','UZ','Namangan (Uzbekistan)',1,1,0),(49693,0,150013,'Kasansay','Uzbekistan','UZ','Kasansay (Uzbekistan)',1,1,0),(49694,0,150014,'Chirchiq','Uzbekistan','UZ','Chirchiq (Uzbekistan)',1,1,0),(49695,13606,150015,'Karshi','Uzbekistan','UZ','Karshi (Uzbekistan)',1,1,0),(49696,1028,150016,'Andizhan','Uzbekistan','UZ','Andizhan (Uzbekistan)',1,1,0),(49697,0,150017,'Shakhrisabz','Uzbekistan','UZ','Shakhrisabz (Uzbekistan)',1,1,0),(49698,19767,150018,'Nukus','Uzbekistan','UZ','Nukus (Uzbekistan)',1,1,0),(49699,0,150019,'Muynak','Uzbekistan','UZ','Muynak (Uzbekistan)',1,1,0),(49700,27055,150020,'Termez','Uzbekistan','UZ','Termez (Uzbekistan)',1,1,0),(49701,0,150021,'Jizzakh','Uzbekistan','UZ','Jizzakh (Uzbekistan)',1,1,0),(49702,0,150022,'Zaamin','Uzbekistan','UZ','Zaamin (Uzbekistan)',1,1,0),(49703,9988,150023,'Futuna Island','Vanuatu','VU','Futuna Island (Vanuatu)',1,1,0),(49704,25562,150024,'Sola','Vanuatu','VU','Sola (Vanuatu)',1,1,0),(49705,27551,150025,'Torres','Vanuatu','VU','Torres (Vanuatu)',1,1,0),(49706,1004,150026,'Anatom','Vanuatu','VU','Anatom (Vanuatu)',1,1,0),(49707,18520,150027,'Mota Lava','Vanuatu','VU','Mota Lava (Vanuatu)',1,1,0),(49708,15847,150028,'Longana','Vanuatu','VU','Longana (Vanuatu)',1,1,0),(49709,7907,150029,'Dillons Bay','Vanuatu','VU','Dillons Bay (Vanuatu)',1,1,0),(49710,14849,150030,'Lamap','Vanuatu','VU','Lamap (Vanuatu)',1,1,0),(49711,20084,150031,'Olpoi','Vanuatu','VU','Olpoi (Vanuatu)',1,1,0),(49712,12798,150032,'Ipota','Vanuatu','VU','Ipota (Vanuatu)',1,1,0),(49713,19619,150033,'Norsup','Vanuatu','VU','Norsup (Vanuatu)',1,1,0),(49714,28368,150034,'Valesdir','Vanuatu','VU','Valesdir (Vanuatu)',1,1,0),(49715,1088,150035,'Aniwa','Vanuatu','VU','Aniwa (Vanuatu)',1,1,0),(49716,10205,150036,'Gaua','Vanuatu','VU','Gaua (Vanuatu)',1,1,0),(49717,14861,150037,'Lamen Bay','Vanuatu','VU','Lamen Bay (Vanuatu)',1,1,0),(49718,22686,150038,'Redcliffe','Vanuatu','VU','Redcliffe (Vanuatu)',1,1,0),(49719,25739,150039,'South West Bay','Vanuatu','VU','South West Bay (Vanuatu)',1,1,0),(49720,27477,150040,'Tongoa','Vanuatu','VU','Tongoa (Vanuatu)',1,1,0),(49721,8723,150041,'Emae','Vanuatu','VU','Emae (Vanuatu)',1,1,0),(49722,16323,150042,'Maewo','Vanuatu','VU','Maewo (Vanuatu)',1,1,0),(49723,7141,150043,'Craig Cove','Vanuatu','VU','Craig Cove (Vanuatu)',1,1,0),(49724,20520,150044,'Paama','Vanuatu','VU','Paama (Vanuatu)',1,1,0),(49725,18642,150045,'Mukeiras','Yemen','YE','Mukeiras (Yemen)',1,1,0),(49726,1667,150046,'Ataq','Yemen','YE','Ataq (Yemen)',1,1,0),(49727,23538,150047,'Sa Dah','Yemen','YE','Sa Dah (Yemen)',1,1,0),(49728,13441,150048,'Kamaran Island','Yemen','YE','Kamaran Island (Yemen)',1,1,0),(49729,23058,150049,'Riyan','Yemen','YE','Riyan (Yemen)',1,1,0),(49730,0,150050,'Wadi Doan','Yemen','YE','Wadi Doan (Yemen)',1,1,0),(49731,2725,150051,'Beihan','Yemen','YE','Beihan (Yemen)',1,1,0),(49732,0,150052,'As Salif','Yemen','YE','As Salif (Yemen)',1,1,0),(49733,12119,150053,'Hodeidah','Yemen','YE','Hodeidah (Yemen)',1,1,0),(49734,501,150054,'Albuq','Yemen','YE','Albuq (Yemen)',1,1,0),(49735,7588,150055,'Dathina','Yemen','YE','Dathina (Yemen)',1,1,0),(49736,416,150056,'Al Ghaydah','Yemen','YE','Al Ghaydah (Yemen)',1,1,0),(49737,0,150057,'Zuqar Island','Yemen','YE','Zuqar Island (Yemen)',1,1,0),(49738,16796,150058,'Mareb','Yemen','YE','Mareb (Yemen)',1,1,0),(49739,25526,150059,'Socotra','Yemen','YE','Socotra (Yemen)',1,1,0),(49740,2722,150060,'Beidah','Yemen','YE','Beidah (Yemen)',1,1,0),(49741,25058,150061,'Shibam','Yemen','YE','Shibam (Yemen)',1,1,0),(49742,24757,150062,'Seiyun','Yemen','YE','Seiyun (Yemen)',1,1,0),(49743,22339,150063,'Qishn','Yemen','YE','Qishn (Yemen)',1,1,0),(49744,0,150064,'Ngoma','Zambia','ZM','Ngoma (Zambia)',1,1,0),(49745,13625,150065,'Kasama','Zambia','ZM','Kasama (Zambia)',1,1,0),(49746,25154,150066,'Siavonga','Zambia','ZM','Siavonga (Zambia)',1,1,0),(49747,0,150067,'Chiawa','Zambia','ZM','Chiawa (Zambia)',1,1,0),(49748,0,150068,'Kazembe','Zambia','ZM','Kazembe (Zambia)',1,1,0),(49749,0,150069,'Komanyana','Zambia','ZM','Komanyana (Zambia)',1,1,0),(49750,13742,150070,'Kazungula','Zambia','ZM','Kazungula (Zambia)',1,1,0),(49751,13622,150071,'Kasaba Bay','Zambia','ZM','Kasaba Bay (Zambia)',1,1,0),(49752,25612,150072,'Solwezi','Zambia','ZM','Solwezi (Zambia)',1,1,0),(49753,6174,150073,'Chisamba','Zambia','ZM','Chisamba (Zambia)',1,1,0),(49754,16691,150074,'Mansa','Zambia','ZM','Mansa (Zambia)',1,1,0),(49755,0,150075,'Mbala','Zambia','ZM','Mbala (Zambia)',1,1,0),(49756,0,150076,'Malabi','Zambia','ZM','Malabi (Zambia)',1,1,0),(49757,0,150077,'Kalabo','Zambia','ZM','Kalabo (Zambia)',1,1,0),(49758,0,150078,'Jeki','Zambia','ZM','Jeki (Zambia)',1,1,0),(49759,0,150079,'Kaputa','Zambia','ZM','Kaputa (Zambia)',1,1,0),(49760,0,150080,'Muchabe','Zambia','ZM','Muchabe (Zambia)',1,1,0),(49761,0,150081,'Siatwinda','Zambia','ZM','Siatwinda (Zambia)',1,1,0),(49762,0,150082,'Serenje','Zambia','ZM','Serenje (Zambia)',1,1,0),(49763,14198,150083,'Kitwe','Zambia','ZM','Kitwe (Zambia)',1,1,0),(49764,13594,150084,'Karoi','Zimbabwe','ZW','Karoi (Zimbabwe)',1,1,0),(49765,19801,150085,'Nyanga','Zimbabwe','ZW','Nyanga (Zimbabwe)',1,1,0),(49766,0,150086,'Mutoko','Zimbabwe','ZW','Mutoko (Zimbabwe)',1,1,0),(49767,0,150087,'Marula','Zimbabwe','ZW','Marula (Zimbabwe)',1,1,0),(49768,4392,150088,'Buffalo Range','Zimbabwe','ZW','Buffalo Range (Zimbabwe)',1,1,0),(49769,0,150089,'Matopos','Zimbabwe','ZW','Matopos (Zimbabwe)',1,1,0),(49770,0,150090,'Matibis','Zimbabwe','ZW','Matibis (Zimbabwe)',1,1,0),(49771,0,150091,'Gwayi River Farms','Zimbabwe','ZW','Gwayi River Farms (Zimbabwe)',1,1,0),(49772,11251,150092,'Gweru','Zimbabwe','ZW','Gweru (Zimbabwe)',1,1,0),(49773,13280,150093,'Juliasdale','Zimbabwe','ZW','Juliasdale (Zimbabwe)',1,1,0),(49774,0,150094,'Kotwa','Zimbabwe','ZW','Kotwa (Zimbabwe)',1,1,0),(49775,14660,150095,'Kwekwe','Zimbabwe','ZW','Kwekwe (Zimbabwe)',1,1,0),(49776,0,150096,'Nenyunka','Zimbabwe','ZW','Nenyunka (Zimbabwe)',1,1,0),(49777,6168,150097,'Chiredzi','Zimbabwe','ZW','Chiredzi (Zimbabwe)',1,1,0),(49778,0,150098,'Chimanimani','Zimbabwe','ZW','Chimanimani (Zimbabwe)',1,1,0),(49779,7790,150099,'Dete','Zimbabwe','ZW','Dete (Zimbabwe)',1,1,0),(49780,0,150100,'Ama','United States of America','US','Ama (United States of America)',1,1,0),(49781,15871,150101,'Longwood','United States of America','US','Longwood (United States of America)',1,1,0),(49782,25988,150102,'Stanley','United States of America','US','Stanley (United States of America)',1,1,0),(49783,0,150103,'Moro','United States of America','US','Moro (United States of America)',1,1,0),(49784,607,150104,'Algiers','United States of America','US','Algiers (United States of America)',1,1,0),(49785,0,150105,'St. Louis','United States of America','US','St. Louis (United States of America)',1,1,0),(49786,0,150106,'Ani\'am','Israel','IL','Ani\'am (Israel)',1,1,0),(49787,0,150107,'Kfar Rut','Israel','IL','Kfar Rut (Israel)',1,1,0),(49788,0,150108,'Ma\'ale Gamla','Israel','IL','Ma\'ale Gamla (Israel)',1,1,0),(49789,0,150109,'al-Khader','State of Palestine',NULL,'al-Khader (State of Palestine)',1,1,0),(49790,0,150110,'Kfar Hess','Israel','IL','Kfar Hess (Israel)',1,1,0),(49791,0,150111,'Amatzia','Israel','IL','Amatzia (Israel)',1,1,0),(49792,0,150112,'Battir','State of Palestine',NULL,'Battir (State of Palestine)',1,1,0),(49793,0,150113,'Avnei Eitan','Israel','IL','Avnei Eitan (Israel)',1,1,0),(49794,0,150114,'Sha\'al','Israel','IL','Sha\'al (Israel)',1,1,0),(49795,0,150115,'Samu\'a','State of Palestine',NULL,'Samu\'a (State of Palestine)',1,1,0),(49796,0,150116,'Ein Zivan','Israel','IL','Ein Zivan (Israel)',1,1,0),(49797,0,150117,'Yavne','Israel','IL','Yavne (Israel)',1,1,0),(49798,0,150118,'Ma\'ale Adumim','State of Palestine',NULL,'Ma\'ale Adumim (State of Palestine)',1,1,0),(49799,0,150119,'Kfar Bin-Nun','Israel','IL','Kfar Bin-Nun (Israel)',1,1,0),(49800,0,150120,'Vered Yeriho','State of Palestine',NULL,'Vered Yeriho (State of Palestine)',1,1,0),(49801,0,150121,'Beit Yehoshua','Israel','IL','Beit Yehoshua (Israel)',1,1,0),(49802,0,150122,'Givat Yeshayahu','Israel','IL','Givat Yeshayahu (Israel)',1,1,0),(49803,0,150123,'Oretal','Israel','IL','Oretal (Israel)',1,1,0),(49804,0,150124,'Nimrod','Israel','IL','Nimrod (Israel)',1,1,0),(49805,0,150125,'Ein Tzurim','Israel','IL','Ein Tzurim (Israel)',1,1,0),(49806,0,150126,'Nablus','State of Palestine',NULL,'Nablus (State of Palestine)',1,1,0),(49807,0,150127,'Al-Ubeidiya','State of Palestine',NULL,'Al-Ubeidiya (State of Palestine)',1,1,0),(49808,0,150128,'Ein Qiniyye','Israel','IL','Ein Qiniyye (Israel)',1,1,0),(49809,0,150129,'Husan','State of Palestine',NULL,'Husan (State of Palestine)',1,1,0),(49810,0,150130,'Mitzpe Shalem','State of Palestine',NULL,'Mitzpe Shalem (State of Palestine)',1,1,0),(49811,0,150131,'Beit Guvrin','Israel','IL','Beit Guvrin (Israel)',1,1,0),(49812,0,150132,'Metsoke Dragot','State of Palestine',NULL,'Metsoke Dragot (State of Palestine)',1,1,0),(49813,0,150133,'Even Yehuda','Israel','IL','Even Yehuda (Israel)',1,1,0),(49814,0,150134,'Taybeh','State of Palestine',NULL,'Taybeh (State of Palestine)',1,1,0),(49815,0,150135,'Jaba','State of Palestine',NULL,'Jaba (State of Palestine)',1,1,0),(49816,0,150136,'Kokhav Ya\'ir','Israel','IL','Kokhav Ya\'ir (Israel)',1,1,0),(49817,0,150137,'Giv\'at Yo\'av','Israel','IL','Giv\'at Yo\'av (Israel)',1,1,0),(49818,0,150138,'Al Jib','State of Palestine',NULL,'Al Jib (State of Palestine)',1,1,0),(49819,0,150139,'Mikhmoret','Israel','IL','Mikhmoret (Israel)',1,1,0),(49820,0,150140,'Eliad','Israel','IL','Eliad (Israel)',1,1,0),(49821,0,150141,'Modi\'in Maccabim Re\'ut','Israel','IL','Modi\'in Maccabim Re\'ut (Israel)',1,1,0),(49822,0,150142,'Uja e-Tahta','State of Palestine',NULL,'Uja e-Tahta (State of Palestine)',1,1,0),(49823,0,150143,'Nov','Israel','IL','Nov (Israel)',1,1,0),(49824,0,150144,'Sde Yitzhak','Israel','IL','Sde Yitzhak (Israel)',1,1,0),(49825,0,150145,'El-Rum','Israel','IL','El-Rum (Israel)',1,1,0),(49826,0,150146,'Katzrin','Israel','IL','Katzrin (Israel)',1,1,0),(49827,0,150147,'Tekoa','State of Palestine',NULL,'Tekoa (State of Palestine)',1,1,0),(49828,0,150148,'Sde Yoav','Israel','IL','Sde Yoav (Israel)',1,1,0),(49829,0,150149,'Bir Zayt','State of Palestine',NULL,'Bir Zayt (State of Palestine)',1,1,0),(49830,0,150150,'al-Bireh','State of Palestine',NULL,'al-Bireh (State of Palestine)',1,1,0),(49831,0,150151,'Bayt Sahur','State of Palestine',NULL,'Bayt Sahur (State of Palestine)',1,1,0),(49832,0,150152,'Biddu','State of Palestine',NULL,'Biddu (State of Palestine)',1,1,0),(49833,5432,150153,'Castleton','United States of America','US','Castleton (United States of America)',1,1,0),(49834,2856,150154,'Belmont','United States of America','US','Belmont (United States of America)',1,1,0),(49835,0,150155,'Castleton','United States of America','US','Castleton (United States of America)',1,1,0),(49836,165,150156,'Adamstown','United States of America','US','Adamstown (United States of America)',1,1,0),(49837,0,150157,'Adamstown','United States of America','US','Adamstown (United States of America)',1,1,0),(49838,0,150158,'Terrace Bay','Canada','CA','Terrace Bay (Canada)',1,1,0),(49839,0,150159,'Saint Louis','United States of America','US','Saint Louis (United States of America)',1,1,0),(49840,0,150160,'Great Ocean Road - Apollo Bay','Australia','AU','Great Ocean Road - Apollo Bay (Australia)',1,1,0),(49841,0,150161,'Beckermet','United Kingdom','UK','Beckermet (United Kingdom)',1,1,0),(49842,2696,150163,'Beechmont','Australia','AU','Beechmont (Australia)',1,1,0),(49843,0,150164,'Bekaa','Lebanon','LB','Bekaa (Lebanon)',1,1,0),(49844,0,150165,'Belen','Colombia','CO','Belen (Colombia)',1,1,0),(49845,0,150166,'Bellbrae','Australia','AU','Bellbrae (Australia)',1,1,0),(49846,0,150167,'Boljevac','Serbia','RS','Boljevac (Serbia)',1,1,0),(49847,0,150168,'Boncath','United Kingdom','UK','Boncath (United Kingdom)',1,1,0),(49848,0,150169,'Bonnie Doon','Australia','AU','Bonnie Doon (Australia)',1,1,0),(49849,0,150170,'Bonson','France','FR','Bonson (France)',1,1,0),(49850,0,150172,'Great Ocean Road - Wye River','Australia','AU','Great Ocean Road - Wye River (Australia)',1,1,0),(49851,0,150173,'Bunya Mountains','Australia','AU','Bunya Mountains (Australia)',1,1,0),(49852,0,150175,'Jervis Bay','Australia','AU','Jervis Bay (Australia)',1,1,0),(49853,25324,150176,'Sisaket','Thailand','TH','Sisaket (Thailand)',1,1,0),(49854,0,150177,'Taizhou (Jiangsu)','China','CN','Taizhou (Jiangsu) (China)',1,1,0),(49855,0,150178,'Parepare','Indonesia','ID','Parepare (Indonesia)',1,1,0),(49856,0,150179,'Chiangkhan','Thailand','TH','Chiangkhan (Thailand)',1,1,0),(49857,0,150181,'Raub','Malaysia','MY','Raub (Malaysia)',1,1,0),(49858,0,150182,'Paksan','LAOS','LA','Paksan (LAOS)',1,1,0),(49859,0,150183,'La Union','Philippines','PH','La Union (Philippines)',1,1,0),(49860,0,150184,'Amphawa','Thailand','TH','Amphawa (Thailand)',1,1,0),(49861,30740,150185,'Da Lat','Vietnam','VN','Da Lat (Vietnam)',1,1,0),(49862,13987,150186,'Kifisia','Greece','GR','Kifisia (Greece)',1,1,0),(49863,0,150187,'Changbaishan','China','CN','Changbaishan (China)',1,1,0),(49864,0,150188,'Teluk Intan','Malaysia','MY','Teluk Intan (Malaysia)',1,1,0),(49865,0,150189,'Kemaman','Malaysia','MY','Kemaman (Malaysia)',1,1,0),(49866,0,150190,'Xam Neua','LAOS','LA','Xam Neua (LAOS)',1,1,0),(49867,16107,150191,'Luodong','Taiwan','TW','Luodong (Taiwan)',1,1,0),(49868,33535,150192,'South Yarra','Australia','AU','South Yarra (Australia)',1,1,0),(49869,0,150193,'Cheonan','South Korea','KR','Cheonan (South Korea)',1,1,0),(49870,32297,150194,'North Tamborine','Australia','AU','North Tamborine (Australia)',1,1,0),(49871,0,150195,'Bongpyeong','South Korea','KR','Bongpyeong (South Korea)',1,1,0),(49872,21150,150196,'Perisher Valley','Australia','AU','Perisher Valley (Australia)',1,1,0),(49873,15354,150197,'Lesvos','Greece','GR','Lesvos (Greece)',1,1,0),(49874,0,150198,'Kangaroo Point','Australia','AU','Kangaroo Point (Australia)',1,1,0),(49875,33263,150199,'Santa Cruz de Tenerife','Spain','ES','Santa Cruz de Tenerife (Spain)',1,1,0),(49876,0,150200,'Mildura','Australia','AU','Mildura (Australia)',1,1,0),(49877,31098,150201,'Hang Dong','Thailand','TH','Hang Dong (Thailand)',1,1,0),(49878,17231,150202,'Mbour','Senegal','SN','Mbour (Senegal)',1,1,0),(49879,0,150204,'Haruru','New Zealand','NZ','Haruru (New Zealand)',1,1,0),(49880,0,150205,'Ganghwa','South Korea','KR','Ganghwa (South Korea)',1,1,0),(49881,0,150206,'Long Island City','United States of America','US','Long Island City (United States of America)',1,1,0),(49882,0,150207,'Daytona Beach Shores','United States of America','US','Daytona Beach Shores (United States of America)',1,1,0),(49883,0,150208,'Surry Hills','Australia','AU','Surry Hills (Australia)',1,1,0),(49884,5622,150209,'Cergy','France','FR','Cergy (France)',1,1,0),(49885,33449,150210,'South Brisbane','Australia','AU','South Brisbane (Australia)',1,1,0),(49886,17688,150211,'Milas','Turkey','TR','Milas (Turkey)',1,1,0),(49887,7994,150212,'Doi Saket','Thailand','TH','Doi Saket (Thailand)',1,1,0),(49888,0,150213,'Ji\'an','Taiwan','TW','Ji\'an (Taiwan)',1,1,0),(49889,0,150214,'Tongyeong','South Korea','KR','Tongyeong (South Korea)',1,1,0),(49890,0,150215,'Manly','Australia','AU','Manly (Australia)',1,1,0),(49891,21231,150216,'Petionville','Haiti','HT','Petionville (Haiti)',1,1,0),(49892,24306,150217,'Sarapiqui','Costa Rica','CR','Sarapiqui (Costa Rica)',1,1,0),(49893,28128,150218,'Umhlanga','South Africa','ZA','Umhlanga (South Africa)',1,1,0),(49894,31292,150219,'La Coruna','Spain','ES','La Coruna (Spain)',1,1,0),(49895,25747,150220,'Southbank','Australia','AU','Southbank (Australia)',1,1,0),(49896,20286,150221,'Ortaca','Turkey','TR','Ortaca (Turkey)',1,1,0),(49897,26675,150222,'Takua Pa','Thailand','TH','Takua Pa (Thailand)',1,1,0),(49898,0,150223,'San Sai','Thailand','TH','San Sai (Thailand)',1,1,0),(49899,0,150224,'Bang Phli','Thailand','TH','Bang Phli (Thailand)',1,1,0),(49900,0,150225,'Texarkana','United States of America','US','Texarkana (United States of America)',1,1,0),(49901,0,150226,'Hwaseong','South Korea','KR','Hwaseong (South Korea)',1,1,0),(49902,0,150227,'Zagori','Greece','GR','Zagori (Greece)',1,1,0),(49903,0,150228,'Goyang','South Korea','KR','Goyang (South Korea)',1,1,0),(49904,0,150229,'Broadwater','Australia','AU','Broadwater (Australia)',1,1,0),(49905,27385,150230,'Tlaquepaque','Mexico','MX','Tlaquepaque (Mexico)',1,1,0),(49906,0,150231,'Dongshan','Taiwan','TW','Dongshan (Taiwan)',1,1,0),(49907,4206,150232,'Bronx','United States of America','US','Bronx (United States of America)',1,1,0),(49908,0,150233,'Jeju','South Korea','KR','Jeju (South Korea)',1,1,0),(49909,16616,150234,'Mandaluyong','Philippines','PH','Mandaluyong (Philippines)',1,1,0),(49910,13682,150237,'Katowice','Poland','PL','Katowice (Poland)',1,1,0),(49911,26618,150238,'Tagbilaran','Philippines','PH','Tagbilaran (Philippines)',1,1,0),(49912,0,150239,'Wembley','United Kingdom','UK','Wembley (United Kingdom)',1,1,0),(49913,0,150240,'Greve in Chianti','Italy','IT','Greve in Chianti (Italy)',1,1,0),(49914,28219,150241,'Urubamba','Peru','PE','Urubamba (Peru)',1,1,0),(49915,14207,150243,'Klaeng','Thailand','TH','Klaeng (Thailand)',1,1,0),(49916,0,150244,'Blue Mountains','Canada','CA','Blue Mountains (Canada)',1,1,0),(49917,0,150245,'Torquay','Australia','AU','Torquay (Australia)',1,1,0),(49918,0,150246,'Mount Maunganui','New Zealand','NZ','Mount Maunganui (New Zealand)',1,1,0),(49919,0,150247,'Dauis','Philippines','PH','Dauis (Philippines)',1,1,0),(49920,24017,150249,'Salmiyah','Kuwait','KW','Salmiyah (Kuwait)',1,1,0),(49921,0,150250,'Koh Lan','Thailand','TH','Koh Lan (Thailand)',1,1,0),(49922,0,150251,'Ratsada','Thailand','TH','Ratsada (Thailand)',1,1,0),(49923,17993,150252,'Mollymook','Australia','AU','Mollymook (Australia)',1,1,0),(49924,0,150253,'Spring Hill','Australia','AU','Spring Hill (Australia)',1,1,0),(49925,0,150254,'Adler','Russia','RU','Adler (Russia)',1,1,0),(49926,0,150255,'Yeosu','South Korea','KR','Yeosu (South Korea)',1,1,0),(49927,0,150256,'RA©gion Test','Canada','CA','RA©gion Test (Canada)',1,1,0),(49928,5063,150257,'Capdepera','Spain','ES','Capdepera (Spain)',1,1,0),(49929,13124,150258,'Jiading','China','CN','Jiading (China)',1,1,0),(49930,22228,150259,'Puli','Taiwan','TW','Puli (Taiwan)',1,1,0),(49931,0,150260,'Pylos-Nestoras','Greece','GR','Pylos-Nestoras (Greece)',1,1,0),(49932,2545,150261,'Battery Point','Australia','AU','Battery Point (Australia)',1,1,0),(49933,0,150262,'Paranaque','Philippines','PH','Paranaque (Philippines)',1,1,0),(49934,0,150263,'The Rocks','Australia','AU','The Rocks (Australia)',1,1,0),(49935,0,150264,'Geoje','South Korea','KR','Geoje (South Korea)',1,1,0),(49936,0,150265,'Sattahip','Thailand','TH','Sattahip (Thailand)',1,1,0),(49937,10473,150266,'Giza','Egypt','EG','Giza (Egypt)',1,1,0),(49938,0,150267,'Cairns North','Australia','AU','Cairns North (Australia)',1,1,0),(49939,0,150268,'Sfakia','Greece','GR','Sfakia (Greece)',1,1,0),(49940,0,150269,'Pak Kret','Thailand','TH','Pak Kret (Thailand)',1,1,0),(49941,33220,150270,'Sant Josep de sa Talaia','Spain','ES','Sant Josep de sa Talaia (Spain)',1,1,0),(49942,10104,150271,'Gangneung','South Korea','KR','Gangneung (South Korea)',1,1,0),(49943,22914,150272,'Richmond','Australia','AU','Richmond (Australia)',1,1,0),(49944,33571,150273,'St Cloud','United States of America','US','St Cloud (United States of America)',1,1,0),(49945,16372,150274,'Magong','Taiwan','TW','Magong (Taiwan)',1,1,0),(49946,33201,150275,'Sant Antoni de Portmany','Spain','ES','Sant Antoni de Portmany (Spain)',1,1,0),(49947,9700,150276,'Fortitude Valley','Australia','AU','Fortitude Valley (Australia)',1,1,0),(49948,0,150277,'Bang Lamung','Thailand','TH','Bang Lamung (Thailand)',1,1,0),(49949,25208,150278,'Sihanoukville','Cambodia','KH','Sihanoukville (Cambodia)',1,1,0),(49950,10181,150279,'Garza Garcia','Mexico','MX','Garza Garcia (Mexico)',1,1,0),(49951,0,150280,'Mahe Island','Seychelles','SC','Mahe Island (Seychelles)',1,1,0),(49952,17162,150281,'Mauritius','Mauritius','MU','Mauritius (Mauritius)',1,1,0),(49953,24933,150282,'Seychelles','Seychelles','SC','Seychelles (Seychelles)',1,1,0),(49954,5094,150283,'Cappadocia','Turkey','TR','Cappadocia (Turkey)',1,1,0),(49955,0,150285,'Chalakudy','Maldives','MV','Chalakudy (Maldives)',1,1,0),(49956,22586,150286,'Rannalhi','Maldives','MV','Rannalhi (Maldives)',1,1,0),(49957,10916,150288,'Green Island','Taiwan','TW','Green Island (Taiwan)',1,1,0),(49958,0,150289,'Liuqiu','Taiwan','TW','Liuqiu (Taiwan)',1,1,0),(49959,0,150290,'Sabak Bernam','Malaysia','MY','Sabak Bernam (Malaysia)',1,1,0),(49960,0,150291,'Jeongseon-gun','South Korea','KR','Jeongseon-gun (South Korea)',1,1,0),(49961,14097,150292,'Kinmen','Taiwan','TW','Kinmen (Taiwan)',1,1,0),(49962,0,150293,'Bokeo','LAOS','LA','Bokeo (LAOS)',1,1,0),(49963,0,150294,'Baler','Philippines','PH','Baler (Philippines)',1,1,0),(49964,0,150295,'Sorsogon','Philippines','PH','Sorsogon (Philippines)',1,1,0),(49965,0,150296,'My Tho','Vietnam','VN','My Tho (Vietnam)',1,1,0),(49966,0,150297,'Los Banos','Philippines','PH','Los Banos (Philippines)',1,1,0),(49967,0,150298,'Banjarnegara','Indonesia','ID','Banjarnegara (Indonesia)',1,1,0),(49968,3480,150299,'Boao','China','CN','Boao (China)',1,1,0),(49969,0,150300,'Attapeu','LAOS','LA','Attapeu (LAOS)',1,1,0),(49970,2957,150301,'Berau','Indonesia','ID','Berau (Indonesia)',1,1,0),(49971,0,150302,'Lamphun','Thailand','TH','Lamphun (Thailand)',1,1,0),(49972,0,150303,'Everest Region','Nepal','NP','Everest Region (Nepal)',1,1,0),(49973,0,150304,'Nakhon Nayok','Thailand','TH','Nakhon Nayok (Thailand)',1,1,0),(49974,12543,150305,'Hyogo','Japan','JP','Hyogo (Japan)',1,1,0),(49975,0,150306,'Binh Duong','Vietnam','VN','Binh Duong (Vietnam)',1,1,0),(49976,0,150307,'Chum Phae','Thailand','TH','Chum Phae (Thailand)',1,1,0),(49977,0,150308,'Khong Chiam','Thailand','TH','Khong Chiam (Thailand)',1,1,0),(49978,0,150309,'Gangwon-do','South Korea','KR','Gangwon-do (South Korea)',1,1,0),(49979,14246,150310,'Kluang','Malaysia','MY','Kluang (Malaysia)',1,1,0),(49980,0,150311,'San Vicente','Philippines','PH','San Vicente (Philippines)',1,1,0),(49981,0,150312,'Caramoan','Philippines','PH','Caramoan (Philippines)',1,1,0),(49982,0,150313,'Bulacan','Philippines','PH','Bulacan (Philippines)',1,1,0),(49983,0,150314,'Nakhonpanom','Thailand','TH','Nakhonpanom (Thailand)',1,1,0),(49984,0,150315,'Mahasarakham','Thailand','TH','Mahasarakham (Thailand)',1,1,0),(49985,0,150316,'Camotes Islands','Philippines','PH','Camotes Islands (Philippines)',1,1,0),(49986,12563,150317,'Ibusuki','Japan','JP','Ibusuki (Japan)',1,1,0),(49987,0,150318,'Shibukawa','Japan','JP','Shibukawa (Japan)',1,1,0),(49988,13400,150319,'Kalibo','Philippines','PH','Kalibo (Philippines)',1,1,0),(49989,0,150320,'Mae Sai','Thailand','TH','Mae Sai (Thailand)',1,1,0),(49990,0,150321,'Thanh Hoa / Sam Son Beach','Vietnam','VN','Thanh Hoa / Sam Son Beach (Vietnam)',1,1,0),(49991,0,150322,'Bardia','Nepal','NP','Bardia (Nepal)',1,1,0),(49992,0,150323,'Phatthalung','Thailand','TH','Phatthalung (Thailand)',1,1,0),(49993,0,150324,'Koh Rong','Cambodia','KH','Koh Rong (Cambodia)',1,1,0),(49994,0,150325,'Taean-gun','South Korea','KR','Taean-gun (South Korea)',1,1,0),(49995,0,150326,'Gapyeong-gun','South Korea','KR','Gapyeong-gun (South Korea)',1,1,0),(49996,0,150327,'Antipolo','Philippines','PH','Antipolo (Philippines)',1,1,0),(49997,18869,150328,'Nagarkot','Nepal','NP','Nagarkot (Nepal)',1,1,0),(49998,0,150329,'Kalasin','Thailand','TH','Kalasin (Thailand)',1,1,0),(49999,23957,150330,'Sakon Nakhon','Thailand','TH','Sakon Nakhon (Thailand)',1,1,0),(50000,0,150331,'Vinh Phuc','Vietnam','VN','Vinh Phuc (Vietnam)',1,1,0),(50001,0,150332,'Anda','Philippines','PH','Anda (Philippines)',1,1,0),(50002,0,150333,'Uijeongbu-si','South Korea','KR','Uijeongbu-si (South Korea)',1,1,0),(50003,0,150334,'Jinju-si','South Korea','KR','Jinju-si (South Korea)',1,1,0),(50004,0,150335,'Chaiyaphum','Thailand','TH','Chaiyaphum (Thailand)',1,1,0),(50005,0,150336,'Ben Tre','Vietnam','VN','Ben Tre (Vietnam)',1,1,0),(50006,2287,150337,'Bantayan Island','Philippines','PH','Bantayan Island (Philippines)',1,1,0),(50007,13498,150338,'Kangar','Malaysia','MY','Kangar (Malaysia)',1,1,0),(50008,0,150339,'Suncheon-si','South Korea','KR','Suncheon-si (South Korea)',1,1,0),(50009,0,150340,'Vigan','Philippines','PH','Vigan (Philippines)',1,1,0),(50010,0,150341,'Loboc','Philippines','PH','Loboc (Philippines)',1,1,0),(50011,0,150342,'Mai Chau','Vietnam','VN','Mai Chau (Vietnam)',1,1,0),(50012,0,150343,'Guimaras Island','Philippines','PH','Guimaras Island (Philippines)',1,1,0),(50013,0,150344,'Alicante - Costa Blanca','Spain','ES','Alicante - Costa Blanca (Spain)',1,1,0),(50014,0,150345,'Bac Ninh','Vietnam','VN','Bac Ninh (Vietnam)',1,1,0),(50015,0,150346,'Pathum Thani','Thailand','TH','Pathum Thani (Thailand)',1,1,0),(50016,0,150347,'Tuguegarao City','Philippines','PH','Tuguegarao City (Philippines)',1,1,0),(50017,17290,150348,'Mechelen','Belgium','BE','Mechelen (Belgium)',1,1,0),(50018,17319,150349,'Meedhupparu','Maldives','MV','Meedhupparu (Maldives)',1,1,0),(50019,3492,150350,'Boboras','Spain','ES','Boboras (Spain)',1,1,0),(50020,0,150351,'Boddam','United Kingdom','UK','Boddam (United Kingdom)',1,1,0),(50021,0,150352,'Boge','Serbia','RS','Boge (Serbia)',1,1,0),(50022,0,150353,'Bolshaya Chemzha','Russia','RU','Bolshaya Chemzha (Russia)',1,1,0),(50023,0,150354,'Bongawan','Malaysia','MY','Bongawan (Malaysia)',1,1,0),(50024,0,150355,'Bonny Hills','Australia','AU','Bonny Hills (Australia)',1,1,0),(50025,0,150364,'Vadoo','Maldives','MV','Vadoo (Maldives)',1,1,0),(50026,30417,150365,'Zaragoza','Spain','ES','Zaragoza (Spain)',1,1,0),(50027,0,150366,'Gardez','Afghanistan','AF','Gardez (Afghanistan)',1,1,0),(50028,0,150367,'Ghazni','Afghanistan','AF','Ghazni (Afghanistan)',1,1,0),(50029,16708,150368,'Mantova','Italy','IT','Mantova (Italy)',1,1,0),(50030,0,150369,'Herat','Afghanistan','AF','Herat (Afghanistan)',1,1,0),(50031,0,150370,'Jalalabad','Afghanistan','AF','Jalalabad (Afghanistan)',1,1,0),(50032,0,150371,'Kandahar','Afghanistan','AF','Kandahar (Afghanistan)',1,1,0),(50033,0,150372,'Khost','Afghanistan','AF','Khost (Afghanistan)',1,1,0),(50034,0,150373,'Khwahan','Afghanistan','AF','Khwahan (Afghanistan)',1,1,0),(50035,0,150374,'Kunduz','Afghanistan','AF','Kunduz (Afghanistan)',1,1,0),(50036,0,150375,'Kuran O Munjan','Afghanistan','AF','Kuran O Munjan (Afghanistan)',1,1,0),(50037,0,150376,'Maimana','Afghanistan','AF','Maimana (Afghanistan)',1,1,0),(50038,0,150377,'Mazar I Sharif','Afghanistan','AF','Mazar I Sharif (Afghanistan)',1,1,0),(50039,0,150378,'Nimroz','Afghanistan','AF','Nimroz (Afghanistan)',1,1,0),(50040,0,150379,'Qala Nau','Afghanistan','AF','Qala Nau (Afghanistan)',1,1,0),(50041,0,150380,'Sardeh Band','Afghanistan','AF','Sardeh Band (Afghanistan)',1,1,0),(50042,0,150381,'Sheghnan','Afghanistan','AF','Sheghnan (Afghanistan)',1,1,0),(50043,0,150382,'Taluqan','Afghanistan','AF','Taluqan (Afghanistan)',1,1,0),(50044,0,150383,'Tirinkot','Afghanistan','AF','Tirinkot (Afghanistan)',1,1,0),(50045,0,150384,'Urgoon','Afghanistan','AF','Urgoon (Afghanistan)',1,1,0),(50046,0,150385,'Uruzgan','Afghanistan','AF','Uruzgan (Afghanistan)',1,1,0),(50047,0,150386,'Zaranj','Afghanistan','AF','Zaranj (Afghanistan)',1,1,0),(50048,0,150388,'Epena','Congo','CG','Epena (Congo)',1,1,0),(50049,0,150389,'Kankan','Guinea','GN','Kankan (Guinea)',1,1,0),(50050,0,150390,'Kissidougou','Guinea','GN','Kissidougou (Guinea)',1,1,0),(50051,0,150391,'Siguiri','Guinea','GN','Siguiri (Guinea)',1,1,0),(50052,0,150393,'Nzerekore','Guinea','GN','Nzerekore (Guinea)',1,1,0),(50053,0,150394,'La Esperanza','Honduras','HN','La Esperanza (Honduras)',1,1,0),(50054,0,150395,'Nablus','Israel','IL','Nablus (Israel)',1,1,0),(50055,0,150398,'Mirage City','Egypt','EG','Mirage City (Egypt)',1,1,0),(50056,0,150399,'Elmarj City','Libya',NULL,'Elmarj City (Libya)',1,1,0),(50057,20512,150400,'Ozamis City','Philippines','PH','Ozamis City (Philippines)',1,1,0),(50058,0,150401,'Gaza City','Palestinian Territory',NULL,'Gaza City (Palestinian Territory)',1,1,0),(50059,0,150402,'Malad City','United States of America','US','Malad City (United States of America)',1,1,0),(50060,0,150403,'Reed City','United States of America','US','Reed City (United States of America)',1,1,0),(50061,0,150404,'Salisbury-Ocean City','United States of America','US','Salisbury-Ocean City (United States of America)',1,1,0),(50062,0,150405,'Salton City','United States of America','US','Salton City (United States of America)',1,1,0),(50063,1191,150406,'Anvik','United States of America','US','Anvik (United States of America)',1,1,0),(50064,1210,150407,'Apalapsili','Indonesia','ID','Apalapsili (Indonesia)',1,1,0),(50065,1211,150408,'Apartado','Colombia','CO','Apartado (Colombia)',1,1,0),(50066,0,150409,'Apiay','Colombia','CO','Apiay (Colombia)',1,1,0),(50067,1357,150410,'Arecibo','Puerto Rico','PR','Arecibo (Puerto Rico)',1,1,0),(50068,1460,150411,'Arnes','Canada','CA','Arnes (Canada)',1,1,0),(50069,1988,150413,'Bade','Indonesia','ID','Bade (Indonesia)',1,1,0),(50070,2003,150414,'Badu Island','Australia','AU','Badu Island (Australia)',1,1,0),(50071,2228,150415,'Bamfield','Canada','CA','Bamfield (Canada)',1,1,0),(50072,2753,150416,'Belaga','Malaysia','MY','Belaga (Malaysia)',1,1,0),(50073,0,150417,'Biggin Hill','United Kingdom','UK','Biggin Hill (United Kingdom)',1,1,0),(50074,0,150418,'Black Tickle','Canada','CA','Black Tickle (Canada)',1,1,0),(50075,3615,150419,'Bolzano','Italy','IT','Bolzano (Italy)',1,1,0),(50076,3804,150420,'Boundary','United States of America','US','Boundary (United States of America)',1,1,0),(50077,4351,150421,'Buckland','United States of America','US','Buckland (United States of America)',1,1,0),(50078,0,150422,'Buenos Aires','Costa Rica','CR','Buenos Aires (Costa Rica)',1,1,0),(50079,4496,150423,'Burketown','Australia','AU','Burketown (Australia)',1,1,0),(50080,4536,150424,'Burwell','United States of America','US','Burwell (United States of America)',1,1,0),(50081,0,150425,'Butterworth','South Africa','ZA','Butterworth (South Africa)',1,1,0),(50082,0,150426,'Cacoal','Brazil','BR','Cacoal (Brazil)',1,1,0),(50083,4875,150427,'Camiri','Bolivia','BO','Camiri (Bolivia)',1,1,0),(50084,0,150428,'Campos','Brazil','BR','Campos (Brazil)',1,1,0),(50085,5067,150429,'Cape Gloucester','Papua New Guinea','PG','Cape Gloucester (Papua New Guinea)',1,1,0),(50086,0,150430,'Caye Chapel','Belize','BZ','Caye Chapel (Belize)',1,1,0),(50087,5590,150431,'Central','United States of America','US','Central (United States of America)',1,1,0),(50088,0,150432,'Central','United States of America','US','Central (United States of America)',1,1,0),(50089,0,150433,'Chanaral','Chile','CL','Chanaral (Chile)',1,1,0),(50090,5858,150434,'Charlo','Canada','CA','Charlo (Canada)',1,1,0),(50091,0,150435,'Chevery','Canada','CA','Chevery (Canada)',1,1,0),(50092,6255,150436,'Chuathbaluk','United States of America','US','Chuathbaluk (United States of America)',1,1,0),(50093,0,150437,'Club Makokola','Malawi','MW','Club Makokola (Malawi)',1,1,0),(50094,6787,150438,'Condobolin','Australia','AU','Condobolin (Australia)',1,1,0),(50095,6898,150439,'Coppermine','Canada','CA','Coppermine (Canada)',1,1,0),(50096,0,150440,'Crooked Island','Bahamas','BS','Crooked Island (Bahamas)',1,1,0),(50097,0,150441,'Cross City','United States of America','US','Cross City (United States of America)',1,1,0),(50098,7590,150442,'Dauan Island','Australia','AU','Dauan Island (Australia)',1,1,0),(50099,7667,150443,'Deering','United States of America','US','Deering (United States of America)',1,1,0),(50100,8010,150444,'Dolomi','United States of America','US','Dolomi (United States of America)',1,1,0),(50101,8106,150445,'Dorunda Station','Australia','AU','Dorunda Station (Australia)',1,1,0),(50102,8608,150446,'Ekuk','United States of America','US','Ekuk (United States of America)',1,1,0),(50103,8784,150447,'English Bay','United States of America','US','English Bay (United States of America)',1,1,0),(50104,0,150448,'Evans Head','Australia','AU','Evans Head (Australia)',1,1,0),(50105,0,150449,'Fairford','United Kingdom','UK','Fairford (United Kingdom)',1,1,0),(50106,0,150450,'Faroe Islands','Faroe Islands','FO','Faroe Islands (Faroe Islands)',1,1,0),(50107,0,150451,'Fetlar','United Kingdom','UK','Fetlar (United Kingdom)',1,1,0),(50108,9609,150452,'Fond Du Lac','Canada','CA','Fond Du Lac (Canada)',1,1,0),(50109,30980,150453,'Fort Bridger','United States of America','US','Fort Bridger (United States of America)',1,1,0),(50110,0,150454,'Fort Norman','Canada','CA','Fort Norman (Canada)',1,1,0),(50111,9764,150455,'Frankfurt','Germany','DE','Frankfurt (Germany)',1,1,0),(50112,10010,150456,'Gage','United States of America','US','Gage (United States of America)',1,1,0),(50113,0,150457,'Gakona','United States of America','US','Gakona (United States of America)',1,1,0),(50114,10419,150458,'Gillam','Canada','CA','Gillam (Canada)',1,1,0),(50115,10688,150459,'Gordon','United States of America','US','Gordon (United States of America)',1,1,0),(50116,10957,150460,'Grenada','Grenada','GD','Grenada (Grenada)',1,1,0),(50117,11106,150461,'GUANGDONG','China','CN','GUANGDONG (China)',1,1,0),(50118,12429,150462,'Huerth','Germany','DE','Huerth (Germany)',1,1,0),(50119,0,150463,'Igarka','Russia','RU','Igarka (Russia)',1,1,0),(50120,12760,150464,'Inukjuak','Canada','CA','Inukjuak (Canada)',1,1,0),(50121,12843,150465,'Iserlohn','Germany','DE','Iserlohn (Germany)',1,1,0),(50122,12855,150466,'Isisford','Australia','AU','Isisford (Australia)',1,1,0),(50123,0,150467,'Isle Of Man','United Kingdom','UK','Isle Of Man (United Kingdom)',1,1,0),(50124,0,150468,'Jacmel','Haiti','HT','Jacmel (Haiti)',1,1,0),(50125,0,150470,'Ahe','French Polynesia','PF','Ahe (French Polynesia)',1,1,0),(50126,651,150471,'Allakaket','United States of America','US','Allakaket (United States of America)',1,1,0),(50127,0,150472,'Anadyr','Russia','RU','Anadyr (Russia)',1,1,0),(50128,991,150473,'Anahim Lake','Canada','CA','Anahim Lake (Canada)',1,1,0),(50129,1063,150474,'Anggi','Indonesia','ID','Anggi (Indonesia)',1,1,0),(50130,0,150475,'Arapiraca','Brazil','BR','Arapiraca (Brazil)',1,1,0),(50131,0,150476,'Arkhangelsk','Russia','RU','Arkhangelsk (Russia)',1,1,0),(50132,2011,150477,'Bagdad','United States of America','US','Bagdad (United States of America)',1,1,0),(50133,0,150478,'Baie Johan Beetz','Canada','CA','Baie Johan Beetz (Canada)',1,1,0),(50134,2098,150479,'Bakkafjordur','Iceland','IS','Bakkafjordur (Iceland)',1,1,0),(50135,0,150480,'Barra Mansa','Brazil','BR','Barra Mansa (Brazil)',1,1,0),(50136,3009,150481,'Bermuda','Bermuda','BM','Bermuda (Bermuda)',1,1,0),(50137,3129,150482,'Bharatpur','Nepal','NP','Bharatpur (Nepal)',1,1,0),(50138,3168,150483,'Bickerton Island','Australia','AU','Bickerton Island (Australia)',1,1,0),(50139,3272,150484,'Birigui','Brazil','BR','Birigui (Brazil)',1,1,0),(50140,3295,150485,'Bisho','South Africa','ZA','Bisho (South Africa)',1,1,0),(50141,3342,150486,'Blackall','Australia','AU','Blackall (Australia)',1,1,0),(50142,3362,150487,'Blackwater','Australia','AU','Blackwater (Australia)',1,1,0),(50143,0,150488,'Bolwarra','Australia','AU','Bolwarra (Australia)',1,1,0),(50144,0,150489,'Bolwarra','Australia','AU','Bolwarra (Australia)',1,1,0),(50145,3797,150490,'Boulia','Australia','AU','Boulia (Australia)',1,1,0),(50146,4785,150491,'Calipatria','United States of America','US','Calipatria (United States of America)',1,1,0),(50147,5122,150492,'Caransebes','Romania','RO','Caransebes (Romania)',1,1,0),(50148,0,150493,'Castanhal','Brazil','BR','Castanhal (Brazil)',1,1,0),(50149,5454,150494,'Catarman','Philippines','PH','Catarman (Philippines)',1,1,0),(50150,0,150495,'Cheboksary','Russia','RU','Cheboksary (Russia)',1,1,0),(50151,6057,150496,'Chevak','United States of America','US','Chevak (United States of America)',1,1,0),(50152,6564,150497,'Cochrane','Chile','CL','Cochrane (Chile)',1,1,0),(50153,6587,150498,'Coen','Australia','AU','Coen (Australia)',1,1,0),(50154,6626,150499,'Cold Bay','United States of America','US','Cold Bay (United States of America)',1,1,0),(50155,7018,150500,'Cortes Bay','Canada','CA','Cortes Bay (Canada)',1,1,0),(50156,7273,150501,'Crooked Creek','United States of America','US','Crooked Creek (United States of America)',1,1,0),(50157,7637,150502,'Deadmans Cay','Bahamas','BS','Deadmans Cay (Bahamas)',1,1,0),(50158,0,150503,'Dugway','United States of America','US','Dugway (United States of America)',1,1,0),(50159,0,150504,'Durazno','Uruguay','UY','Durazno (Uruguay)',1,1,0),(50160,0,150505,'Eagle Lake','United States of America','US','Eagle Lake (United States of America)',1,1,0),(50161,30850,150506,'East Stroudsburg','United States of America','US','East Stroudsburg (United States of America)',1,1,0),(50162,8623,150507,'Elcho Island','Australia','AU','Elcho Island (Australia)',1,1,0),(50163,8757,150508,'Enarotali','Indonesia','ID','Enarotali (Indonesia)',1,1,0),(50164,0,150509,'Fair Isle','United Kingdom','UK','Fair Isle (United Kingdom)',1,1,0),(50165,9162,150510,'Fakahina','French Polynesia','PF','Fakahina (French Polynesia)',1,1,0),(50166,9206,150511,'Fangatau','French Polynesia','PF','Fangatau (French Polynesia)',1,1,0),(50167,9683,150512,'Forrest','Australia','AU','Forrest (Australia)',1,1,0),(50168,9691,150513,'Fort Albany','Canada','CA','Fort Albany (Canada)',1,1,0),(50169,30976,150514,'Fort Belvoir','United States of America','US','Fort Belvoir (United States of America)',1,1,0),(50170,0,150515,'Fort Good Hope','Canada','CA','Fort Good Hope (Canada)',1,1,0),(50171,0,150516,'Fort Hope','Canada','CA','Fort Hope (Canada)',1,1,0),(50172,30991,150517,'Fort Huachuca','United States of America','US','Fort Huachuca (United States of America)',1,1,0),(50173,0,150518,'Garanhuns','Brazil','BR','Garanhuns (Brazil)',1,1,0),(50174,10711,150519,'Gorna Orechovitsa','Bulgaria','BG','Gorna Orechovitsa (Bulgaria)',1,1,0),(50175,11114,150520,'Guapi','Colombia','CO','Guapi (Colombia)',1,1,0),(50176,11432,150521,'Hami','China','CN','Hami (China)',1,1,0),(50177,11689,150522,'Hawker','Australia','AU','Hawker (Australia)',1,1,0),(50178,0,150523,'Hawker','Australia','AU','Hawker (Australia)',1,1,0),(50179,12256,150524,'Hoolehua','United States of America','US','Hoolehua (United States of America)',1,1,0),(50180,12257,150525,'Hoonah','United States of America','US','Hoonah (United States of America)',1,1,0),(50181,12532,150526,'Hydaburg','United States of America','US','Hydaburg (United States of America)',1,1,0),(50182,0,150527,'Ibo','Mozambique','MZ','Ibo (Mozambique)',1,1,0),(50183,12595,150528,'Igiugig','United States of America','US','Igiugig (United States of America)',1,1,0),(50184,12597,150529,'Igloolik','Canada','CA','Igloolik (Canada)',1,1,0),(50185,12661,150530,'Ilu','Indonesia','ID','Ilu (Indonesia)',1,1,0),(50186,12685,150531,'Inanwatan','Indonesia','ID','Inanwatan (Indonesia)',1,1,0),(50187,12779,150532,'Inyokern','United States of America','US','Inyokern (United States of America)',1,1,0),(50188,0,150533,'Isleworth','United Kingdom','UK','Isleworth (United Kingdom)',1,1,0),(50189,12946,150534,'Iwami','Japan','JP','Iwami (Japan)',1,1,0),(50190,13230,150535,'Jordan','United States of America','US','Jordan (United States of America)',1,1,0),(50191,13268,150536,'Juina','Brazil','BR','Juina (Brazil)',1,1,0),(50192,13440,150537,'Kamaran Downs','Australia','AU','Kamaran Downs (Australia)',1,1,0),(50193,13502,150538,'Kangiqsualujjuaq','Canada','CA','Kangiqsualujjuaq (Canada)',1,1,0),(50194,13592,150539,'Karluk','United States of America','US','Karluk (United States of America)',1,1,0),(50195,161,150540,'Adak Island','United States of America','US','Adak Island (United States of America)',1,1,0),(50196,0,150541,'Airok','Marshall Islands','MH','Airok (Marshall Islands)',1,1,0),(50197,0,150542,'Alderney','United Kingdom','UK','Alderney (United Kingdom)',1,1,0),(50198,633,150543,'Aliceville','United States of America','US','Aliceville (United States of America)',1,1,0),(50199,0,150544,'Amderma','Russia','RU','Amderma (Russia)',1,1,0),(50200,0,150545,'Amityville','United States of America','US','Amityville (United States of America)',1,1,0),(50201,1072,150546,'Angling Lake','Canada','CA','Angling Lake (Canada)',1,1,0),(50202,1212,150547,'Apataki','French Polynesia','PF','Apataki (French Polynesia)',1,1,0),(50203,0,150548,'Apolo','Bolivia','BO','Apolo (Bolivia)',1,1,0),(50204,1325,150549,'Arctic Bay','Canada','CA','Arctic Bay (Canada)',1,1,0),(50205,1346,150550,'Ardmore','New Zealand','NZ','Ardmore (New Zealand)',1,1,0),(50206,0,150551,'Armstrong','Canada','CA','Armstrong (Canada)',1,1,0),(50207,1554,150552,'Asau','Samoa','WS','Asau (Samoa)',1,1,0),(50208,1723,150553,'Attawapiskat','Canada','CA','Attawapiskat (Canada)',1,1,0),(50209,0,150554,'Bangda','China','CN','Bangda (China)',1,1,0),(50210,0,150555,'Barbacena','Brazil','BR','Barbacena (Brazil)',1,1,0),(50211,0,150556,'Batticaloa','Sri Lanka','LK','Batticaloa (Sri Lanka)',1,1,0),(50212,3263,150557,'Birch Creek','United States of America','US','Birch Creek (United States of America)',1,1,0),(50213,3293,150558,'Bisha','Saudi Arabia','SA','Bisha (Saudi Arabia)',1,1,0),(50214,3308,150559,'Bislig','Philippines','PH','Bislig (Philippines)',1,1,0),(50215,3530,150560,'Boeblingen','Germany','DE','Boeblingen (Germany)',1,1,0),(50216,0,150561,'Britton','United States of America','US','Britton (United States of America)',1,1,0),(50217,4164,150562,'Broadus','United States of America','US','Broadus (United States of America)',1,1,0),(50218,4243,150563,'Broughton Island','Canada','CA','Broughton Island (Canada)',1,1,0),(50219,4449,150564,'Buol','Indonesia','ID','Buol (Indonesia)',1,1,0),(50220,4743,150565,'Calbayog','Philippines','PH','Calbayog (Philippines)',1,1,0),(50221,0,150566,'Caratinga','Brazil','BR','Caratinga (Brazil)',1,1,0),(50222,0,150567,'Carmen De Patagones','Argentina','AR','Carmen De Patagones (Argentina)',1,1,0),(50223,5821,150568,'Chapleau','Canada','CA','Chapleau (Canada)',1,1,0),(50224,0,150569,'Cheung Sha Wan','Hongkong','HK','Cheung Sha Wan (Hongkong)',1,1,0),(50225,6176,150570,'Chisasibi','Canada','CA','Chisasibi (Canada)',1,1,0),(50226,0,150571,'Ciudad Mante','Mexico','MX','Ciudad Mante (Mexico)',1,1,0),(50227,6545,150572,'Cobija','Bolivia','BO','Cobija (Bolivia)',1,1,0),(50228,6553,150573,'Coca','Ecuador','EC','Coca (Ecuador)',1,1,0),(50229,0,150574,'Colonia Catriel','Argentina','AR','Colonia Catriel (Argentina)',1,1,0),(50230,6854,150575,'Cooinda','Australia','AU','Cooinda (Australia)',1,1,0),(50231,6869,150576,'Coonamble','Australia','AU','Coonamble (Australia)',1,1,0),(50232,7081,150577,'Council','United States of America','US','Council (United States of America)',1,1,0),(50233,0,150578,'Covenas','Colombia','CO','Covenas (Colombia)',1,1,0),(50234,7564,150579,'Darnley Island','Australia','AU','Darnley Island (Australia)',1,1,0),(50235,8042,150580,'Donauwoerth','Germany','DE','Donauwoerth (Germany)',1,1,0),(50236,8080,150581,'Dora Bay','United States of America','US','Dora Bay (United States of America)',1,1,0),(50237,0,150582,'Duxford','United Kingdom','UK','Duxford (United Kingdom)',1,1,0),(50238,0,150583,'Efogi','Papua New Guinea','PG','Efogi (Papua New Guinea)',1,1,0),(50239,8646,150584,'Elim','United States of America','US','Elim (United States of America)',1,1,0),(50240,8764,150585,'Ende','Indonesia','ID','Ende (Indonesia)',1,1,0),(50241,9935,150586,'Fuerth','Germany','DE','Fuerth (Germany)',1,1,0),(50242,9992,150587,'Fuyun','China','CN','Fuyun (China)',1,1,0),(50243,10303,150588,'Georgetown','St. Helena','SH','Georgetown (St. Helena)',1,1,0),(50244,0,150589,'Gladwin','United States of America','US','Gladwin (United States of America)',1,1,0),(50245,10602,150590,'Goettingen','Germany','DE','Goettingen (Germany)',1,1,0),(50246,0,150591,'Goulburn Island','Australia','AU','Goulburn Island (Australia)',1,1,0),(50247,10746,150592,'Goulimime','Morocco','MA','Goulimime (Morocco)',1,1,0),(50248,0,150593,'Greenway Sound','Canada','CA','Greenway Sound (Canada)',1,1,0),(50249,12509,150595,'Huslia','United States of America','US','Huslia (United States of America)',1,1,0),(50250,12529,150596,'Hwange','Zimbabwe','ZW','Hwange (Zimbabwe)',1,1,0),(50251,12638,150597,'Iligan','Philippines','PH','Iligan (Philippines)',1,1,0),(50252,0,150598,'Isles Of Scilly','United Kingdom','UK','Isles Of Scilly (United Kingdom)',1,1,0),(50253,12943,150599,'Ivujivik','Canada','CA','Ivujivik (Canada)',1,1,0),(50254,13258,150600,'Juanjui','Peru','PE','Juanjui (Peru)',1,1,0),(50255,13448,150601,'Kambuaya','Indonesia','ID','Kambuaya (Indonesia)',1,1,0),(50256,13504,150602,'Kangirsuk','Canada','CA','Kangirsuk (Canada)',1,1,0),(50257,13581,150603,'Karlovy Vary','Czech Republic','CZ','Karlovy Vary (Czech Republic)',1,1,0),(50258,0,150604,'Kauai Island','United States of America','US','Kauai Island (United States of America)',1,1,0),(50259,31213,150605,'King Cove','United States of America','US','King Cove (United States of America)',1,1,0),(50260,0,150606,'Kitale','Kenya','KE','Kitale (Kenya)',1,1,0),(50261,14369,150607,'Koolatah','Australia','AU','Koolatah (Australia)',1,1,0),(50262,0,150608,'Kotlas','Russia','RU','Kotlas (Russia)',1,1,0),(50263,14562,150609,'Kuito','Angola','AO','Kuito (Angola)',1,1,0),(50264,14601,150610,'Kuorevesi','Finland','FI','Kuorevesi (Finland)',1,1,0),(50265,0,150611,'La Bastide','France','FR','La Bastide (France)',1,1,0),(50266,14709,150612,'Labuha','Indonesia','ID','Labuha (Indonesia)',1,1,0),(50267,15250,150613,'Leinster','Australia','AU','Leinster (Australia)',1,1,0),(50268,13782,150614,'Keisah','Indonesia','ID','Keisah (Indonesia)',1,1,0),(50269,14428,150616,'Kotabangun','Indonesia','ID','Kotabangun (Indonesia)',1,1,0),(50270,14447,150617,'Koumac','New Caledonia','NC','Koumac (New Caledonia)',1,1,0),(50271,14663,150618,'Kwigillingok','United States of America','US','Kwigillingok (United States of America)',1,1,0),(50272,31529,150619,'Lac Brochet','Canada','CA','Lac Brochet (Canada)',1,1,0),(50273,31579,150620,'Lake Minchumina','United States of America','US','Lake Minchumina (United States of America)',1,1,0),(50274,15065,150621,'Lastourville','Gabon','GA','Lastourville (Gabon)',1,1,0),(50275,15140,150622,'Laverton','Australia','AU','Laverton (Australia)',1,1,0),(50276,0,150623,'Laverton','Australia','AU','Laverton (Australia)',1,1,0),(50277,0,150624,'Lavras','Brazil','BR','Lavras (Brazil)',1,1,0),(50278,15148,150625,'Lawas','Malaysia','MY','Lawas (Malaysia)',1,1,0),(50279,31712,150626,'Le Puy','France','FR','Le Puy (France)',1,1,0),(50280,0,150627,'Liangping','China','CN','Liangping (China)',1,1,0),(50281,0,150628,'Los Chiles','Costa Rica','CR','Los Chiles (Costa Rica)',1,1,0),(50282,16105,150629,'Lunyuk','Indonesia','ID','Lunyuk (Indonesia)',1,1,0),(50283,16259,150630,'Macksville','Australia','AU','Macksville (Australia)',1,1,0),(50284,0,150631,'Magdalena','Bolivia','BO','Magdalena (Bolivia)',1,1,0),(50285,0,150633,'Manila','United States of America','US','Manila (United States of America)',1,1,0),(50286,17059,150634,'Mastic Point','Bahamas','BS','Mastic Point (Bahamas)',1,1,0),(50287,17253,150635,'Mcgrath','United States of America','US','Mcgrath (United States of America)',1,1,0),(50288,17602,150636,'Mfuwe','Zambia','ZM','Mfuwe (Zambia)',1,1,0),(50289,17898,150637,'Mmabatho','South Africa','ZA','Mmabatho (South Africa)',1,1,0),(50290,17902,150638,'Moala','Fiji Islands','FJ','Moala (Fiji Islands)',1,1,0),(50291,0,150639,'Monte Alegre','Brazil','BR','Monte Alegre (Brazil)',1,1,0),(50292,0,150640,'Monto','Australia','AU','Monto (Australia)',1,1,0),(50293,0,150641,'Mount Keith','Australia','AU','Mount Keith (Australia)',1,1,0),(50294,0,150642,'Mount Pleasant','Falkland Islands','FK','Mount Pleasant (Falkland Islands)',1,1,0),(50295,0,150643,'Muriae','Brazil','BR','Muriae (Brazil)',1,1,0),(50296,18770,150644,'Muskrat Dam','Canada','CA','Muskrat Dam (Canada)',1,1,0),(50297,18844,150645,'Nabire','Indonesia','ID','Nabire (Indonesia)',1,1,0),(50298,19022,150646,'Narrandera','Australia','AU','Narrandera (Australia)',1,1,0),(50299,19128,150647,'Necocli','Colombia','CO','Necocli (Colombia)',1,1,0),(50300,0,150648,'Neryungri','Russia','RU','Neryungri (Russia)',1,1,0),(50301,0,150650,'Niuafo\'ou','Tonga','TO','Niuafo\'ou (Tonga)',1,1,0),(50302,19556,150651,'Nondalton','United States of America','US','Nondalton (United States of America)',1,1,0),(50303,0,150652,'Nullarbor','Australia','AU','Nullarbor (Australia)',1,1,0),(50304,19775,150653,'Numfoor','Indonesia','ID','Numfoor (Indonesia)',1,1,0),(50305,19799,150654,'Nyac','United States of America','US','Nyac (United States of America)',1,1,0),(50306,19904,150655,'Ocana','Colombia','CO','Ocana (Colombia)',1,1,0),(50307,19983,150656,'Okaba','Indonesia','ID','Okaba (Indonesia)',1,1,0),(50308,20015,150657,'Oksibil','Indonesia','ID','Oksibil (Indonesia)',1,1,0),(50309,20017,150658,'Okushiri','Japan','JP','Okushiri (Japan)',1,1,0),(50310,20094,150659,'Olympic Dam','Australia','AU','Olympic Dam (Australia)',1,1,0),(50311,20114,150660,'Omura','Japan','JP','Omura (Japan)',1,1,0),(50312,0,150661,'Oxford House','Canada','CA','Oxford House (Canada)',1,1,0),(50313,32390,150662,'Padova','Italy','IT','Padova (Italy)',1,1,0),(50314,20775,150663,'Paradise River','Canada','CA','Paradise River (Canada)',1,1,0),(50315,0,150664,'Pechora','Russia','RU','Pechora (Russia)',1,1,0),(50316,21153,150665,'Perito Moreno','Argentina','AR','Perito Moreno (Argentina)',1,1,0),(50317,32541,150666,'Port Graham','United States of America','US','Port Graham (United States of America)',1,1,0),(50318,0,150667,'Prescott','Canada','CA','Prescott (Canada)',1,1,0),(50319,22160,150668,'Prudhoe Bay','United States of America','US','Prudhoe Bay (United States of America)',1,1,0),(50320,0,150669,'Queenstown','South Africa','ZA','Queenstown (South Africa)',1,1,0),(50321,22413,150670,'Quine Hill','Vanuatu','VU','Quine Hill (Vanuatu)',1,1,0),(50322,22584,150671,'Rankin Inlet','Canada','CA','Rankin Inlet (Canada)',1,1,0),(50323,22805,150672,'Resolute','Canada','CA','Resolute (Canada)',1,1,0),(50324,23322,150673,'Rost','Norway','NO','Rost (Norway)',1,1,0),(50325,0,150674,'Sachs Harbour','Canada','CA','Sachs Harbour (Canada)',1,1,0),(50326,0,150675,'Santa Cruz','Brazil','BR','Santa Cruz (Brazil)',1,1,0),(50327,0,150676,'Santa Fe','Panama','PA','Santa Fe (Panama)',1,1,0),(50328,0,150677,'Santa Maria','Peru','PE','Santa Maria (Peru)',1,1,0),(50329,25083,150678,'Shimojishima','Japan','JP','Shimojishima (Japan)',1,1,0),(50330,0,150679,'Simara','Nepal','NP','Simara (Nepal)',1,1,0),(50331,25675,150680,'Sorkjosen','Norway','NO','Sorkjosen (Norway)',1,1,0),(50332,25776,150681,'Southport','Australia','AU','Southport (Australia)',1,1,0),(50333,0,150682,'Southport','Australia','AU','Southport (Australia)',1,1,0),(50334,25808,150683,'Spanish Wells','Bahamas','BS','Spanish Wells (Bahamas)',1,1,0),(50335,0,150684,'Stalowa Wola','Poland','PL','Stalowa Wola (Poland)',1,1,0),(50336,0,150685,'Strathmore','Australia','AU','Strathmore (Australia)',1,1,0),(50337,26590,150686,'Tablas','Philippines','PH','Tablas (Philippines)',1,1,0),(50338,26681,150687,'Talara','Peru','PE','Talara (Peru)',1,1,0),(50339,26709,150688,'Taloyoak','Canada','CA','Taloyoak (Canada)',1,1,0),(50340,0,150689,'Alenquer','Brazil','BR','Alenquer (Brazil)',1,1,0),(50341,557,150690,'Alentejo','Portugal','PT','Alentejo (Portugal)',1,1,0),(50342,821,150691,'Alton Downs','Australia','AU','Alton Downs (Australia)',1,1,0),(50343,1085,150692,'Aniak','United States of America','US','Aniak (United States of America)',1,1,0),(50344,1278,150693,'Arar','Saudi Arabia','SA','Arar (Saudi Arabia)',1,1,0),(50345,1535,150694,'Arutua','French Polynesia','PF','Arutua (French Polynesia)',1,1,0),(50346,1665,150695,'Atambua','Indonesia','ID','Atambua (Indonesia)',1,1,0),(50347,1696,150696,'Atikokan','Canada','CA','Atikokan (Canada)',1,1,0),(50348,0,150698,'Bahawalnagar','Pakistan','PK','Bahawalnagar (Pakistan)',1,1,0),(50349,2090,150699,'Bajawa','Indonesia','ID','Bajawa (Indonesia)',1,1,0),(50350,2243,150700,'Bandanaira','Indonesia','ID','Bandanaira (Indonesia)',1,1,0),(50351,0,150701,'Barra','United Kingdom','UK','Barra (United Kingdom)',1,1,0),(50352,2454,150702,'Barrow Island','Australia','AU','Barrow Island (Australia)',1,1,0),(50353,0,150703,'Bear Creek','United States of America','US','Bear Creek (United States of America)',1,1,0),(50354,2691,150704,'Bedourie','Australia','AU','Bedourie (Australia)',1,1,0),(50355,2804,150705,'Bellavista','Peru','PE','Bellavista (Peru)',1,1,0),(50356,0,150706,'Berdyansk','Ukraine','UA','Berdyansk (Ukraine)',1,1,0),(50357,3217,150707,'Bildudalur','Iceland','IS','Bildudalur (Iceland)',1,1,0),(50358,3270,150708,'Birdsville','Australia','AU','Birdsville (Australia)',1,1,0),(50359,0,150709,'Blakely Island','United States of America','US','Blakely Island (United States of America)',1,1,0),(50360,3392,150710,'Blanc Sablon','Canada','CA','Blanc Sablon (Canada)',1,1,0),(50361,0,150711,'Bogalusa','United States of America','US','Bogalusa (United States of America)',1,1,0),(50362,3689,150712,'Borba','Brazil','BR','Borba (Brazil)',1,1,0),(50363,4059,150713,'Brewarrina','Australia','AU','Brewarrina (Australia)',1,1,0),(50364,4466,150714,'Bureta','Fiji Islands','FJ','Bureta (Fiji Islands)',1,1,0),(50365,0,150715,'Cape Newenham','United States of America','US','Cape Newenham (United States of America)',1,1,0),(50366,0,150716,'Cariacica','Brazil','BR','Cariacica (Brazil)',1,1,0),(50367,0,150717,'Catalina Island','United States of America','US','Catalina Island (United States of America)',1,1,0),(50368,5461,150718,'Caticlan','Philippines','PH','Caticlan (Philippines)',1,1,0),(50369,0,150719,'Chaiten','Chile','CL','Chaiten (Chile)',1,1,0),(50370,5768,150720,'Chandler','Canada','CA','Chandler (Canada)',1,1,0),(50371,0,150721,'Changuinola','Panama','PA','Changuinola (Panama)',1,1,0),(50372,6521,150722,'Clyde River','Canada','CA','Clyde River (Canada)',1,1,0),(50373,0,150723,'Cordillo Downs','Australia','AU','Cordillo Downs (Australia)',1,1,0),(50374,7378,150724,'Cunnamulla','Australia','AU','Cunnamulla (Australia)',1,1,0),(50375,7412,150725,'Cutral','Argentina','AR','Cutral (Argentina)',1,1,0),(50376,7440,150726,'Daet','Philippines','PH','Daet (Philippines)',1,1,0),(50377,7583,150727,'Datadawai','Indonesia','ID','Datadawai (Indonesia)',1,1,0),(50378,0,150728,'Dean River','Canada','CA','Dean River (Canada)',1,1,0),(50379,0,150729,'Decatur Island','United States of America','US','Decatur Island (United States of America)',1,1,0),(50380,7733,150730,'Denham','Australia','AU','Denham (Australia)',1,1,0),(50381,7954,150732,'Divinopolis','Brazil','BR','Divinopolis (Brazil)',1,1,0),(50382,8202,150733,'Drummond Island','United States of America','US','Drummond Island (United States of America)',1,1,0),(50383,8346,150734,'Duque De Caxias','Brazil','BR','Duque De Caxias (Brazil)',1,1,0),(50384,8364,150735,'Durham Downs','Australia','AU','Durham Downs (Australia)',1,1,0),(50385,8409,150736,'Earlton','Canada','CA','Earlton (Canada)',1,1,0),(50386,0,150737,'Edna Bay','United States of America','US','Edna Bay (United States of America)',1,1,0),(50387,30863,150738,'Eek','United States of America','US','Eek (United States of America)',1,1,0),(50388,0,150739,'Eldorado','Argentina','AR','Eldorado (Argentina)',1,1,0),(50389,8747,150740,'Emmonak','United States of America','US','Emmonak (United States of America)',1,1,0),(50390,0,150741,'Esa\'ala','Papua New Guinea','PG','Esa\'ala (Papua New Guinea)',1,1,0),(50391,0,150742,'Eua','Tonga','TO','Eua (Tonga)',1,1,0),(50392,9127,150743,'Fagurholsmyri','Iceland','IS','Fagurholsmyri (Iceland)',1,1,0),(50393,0,150744,'False Pass','United States of America','US','False Pass (United States of America)',1,1,0),(50394,0,150745,'Filton','United Kingdom','UK','Filton (United Kingdom)',1,1,0),(50395,0,150746,'Finkenwerder','Germany','DE','Finkenwerder (Germany)',1,1,0),(50396,30992,150747,'Fort Knox','United States of America','US','Fort Knox (United States of America)',1,1,0),(50397,0,150748,'Fort Severn','Canada','CA','Fort Severn (Canada)',1,1,0),(50398,31035,150749,'Fort Yukon','United States of America','US','Fort Yukon (United States of America)',1,1,0),(50399,0,150750,'Frenchville','United States of America','US','Frenchville (United States of America)',1,1,0),(50400,10055,150751,'Galion','United States of America','US','Galion (United States of America)',1,1,0),(50401,0,150752,'Gamarra','Colombia','CO','Gamarra (Colombia)',1,1,0),(50402,10297,150753,'George Town','Bahamas','BS','George Town (Bahamas)',1,1,0),(50403,10598,150754,'Goerlitz','Germany','DE','Goerlitz (Germany)',1,1,0),(50404,10640,150755,'Golovin','United States of America','US','Golovin (United States of America)',1,1,0),(50405,11009,150756,'Grise Fiord','Canada','CA','Grise Fiord (Canada)',1,1,0),(50406,0,150757,'Hatteras','United States of America','US','Hatteras (United States of America)',1,1,0),(50407,0,150758,'Hemnes','Norway','NO','Hemnes (Norway)',1,1,0),(50408,0,150759,'Hendon','United Kingdom','UK','Hendon (United Kingdom)',1,1,0),(50409,12335,150760,'Houailou','New Caledonia','NC','Houailou (New Caledonia)',1,1,0),(50410,26813,150761,'Taranto','Italy','IT','Taranto (Italy)',1,1,0),(50411,26918,150762,'Tawitawi','Philippines','PH','Tawitawi (Philippines)',1,1,0),(50412,27271,150763,'Tiga','New Caledonia','NC','Tiga (New Caledonia)',1,1,0),(50413,0,150764,'Tsushima','Japan','JP','Tsushima (Japan)',1,1,0),(50414,27962,150767,'Turbo','Colombia','CO','Turbo (Colombia)',1,1,0),(50415,28133,150768,'Unalakleet','United States of America','US','Unalakleet (United States of America)',1,1,0),(50416,0,150769,'Uniao Da Vitoria','Brazil','BR','Uniao Da Vitoria (Brazil)',1,1,0),(50417,28442,150770,'Vanuabalavu','Fiji Islands','FJ','Vanuabalavu (Fiji Islands)',1,1,0),(50418,29203,150771,'Waldron Island','United States of America','US','Waldron Island (United States of America)',1,1,0),(50419,29205,150772,'Walgett','Australia','AU','Walgett (Australia)',1,1,0),(50420,29458,150773,'Weingarten','Germany','DE','Weingarten (Germany)',1,1,0),(50421,34164,150775,'White Mountain','United States of America','US','White Mountain (United States of America)',1,1,0),(50422,29955,150776,'Wollaston Lake','Canada','CA','Wollaston Lake (Canada)',1,1,0),(50423,29958,150777,'Wollogorang','Australia','AU','Wollogorang (Australia)',1,1,0),(50424,0,150778,'Yaroslavl','Russia','RU','Yaroslavl (Russia)',1,1,0),(50425,0,150779,'Zoersel','Belgium','BE','Zoersel (Belgium)',1,1,0),(50426,16800,150780,'Mareeba','Australia','AU','Mareeba (Australia)',1,1,0),(50427,17006,150781,'Masada','Israel','IL','Masada (Israel)',1,1,0),(50428,17010,150782,'Masamba','Indonesia','ID','Masamba (Indonesia)',1,1,0),(50429,0,150783,'Mati','Philippines','PH','Mati (Philippines)',1,1,0),(50430,0,150784,'Medina','Colombia','CO','Medina (Colombia)',1,1,0),(50431,17350,150785,'Meixian','China','CN','Meixian (China)',1,1,0),(50432,0,150786,'Miramar','Argentina','AR','Miramar (Argentina)',1,1,0),(50433,0,150787,'Moolawatana','Australia','AU','Moolawatana (Australia)',1,1,0),(50434,32038,150788,'Mount Shasta','United States of America','US','Mount Shasta (United States of America)',1,1,0),(50435,18665,150789,'Mulka','Australia','AU','Mulka (Australia)',1,1,0),(50436,0,150790,'Naryan Mar','Russia','RU','Naryan Mar (Russia)',1,1,0),(50437,19092,150791,'Navegantes','Brazil','BR','Navegantes (Brazil)',1,1,0),(50438,0,150793,'Nicholson','Australia','AU','Nicholson (Australia)',1,1,0),(50439,19517,150794,'Noatak','United States of America','US','Noatak (United States of America)',1,1,0),(50440,19786,150795,'Nuremberg','Germany','DE','Nuremberg (Germany)',1,1,0),(50441,19948,150796,'Offenbach','Germany','DE','Offenbach (Germany)',1,1,0),(50442,0,150797,'Olivos','Argentina','AR','Olivos (Argentina)',1,1,0),(50443,0,150798,'Palm Island','Australia','AU','Palm Island (Australia)',1,1,0),(50444,20717,150799,'Pangnirtung','Canada','CA','Pangnirtung (Canada)',1,1,0),(50445,20924,150801,'Pattani','Thailand','TH','Pattani (Thailand)',1,1,0),(50446,20966,150807,'Peach Springs','United States of America','US','Peach Springs (United States of America)',1,1,0),(50447,21382,150808,'Piestany','Slovakia','SK','Piestany (Slovakia)',1,1,0),(50448,21398,150809,'Pikangikum','Canada','CA','Pikangikum (Canada)',1,1,0),(50449,21557,150810,'Platinum','United States of America','US','Platinum (United States of America)',1,1,0),(50450,21704,150811,'Polk Inlet','United States of America','US','Polk Inlet (United States of America)',1,1,0),(50451,0,150812,'Pond Inlet','Canada','CA','Pond Inlet (Canada)',1,1,0),(50452,0,150813,'Port Fitzroy','New Zealand','NZ','Port Fitzroy (New Zealand)',1,1,0),(50453,21933,150814,'Porvenir','Chile','CL','Porvenir (Chile)',1,1,0),(50454,0,150815,'Puerto Asis','Colombia','CO','Puerto Asis (Colombia)',1,1,0),(50455,22220,150816,'Pula','Croatia','HR','Pula (Croatia)',1,1,0),(50456,0,150817,'Punta Chivato','Mexico','MX','Punta Chivato (Mexico)',1,1,0),(50457,22351,150818,'Quaqtaq','Canada','CA','Quaqtaq (Canada)',1,1,0),(50458,22546,150819,'Rampart','United States of America','US','Rampart (United States of America)',1,1,0),(50459,22717,150820,'Reedsville','United States of America','US','Reedsville (United States of America)',1,1,0),(50460,0,150821,'Reedsville','United States of America','US','Reedsville (United States of America)',1,1,0),(50461,0,150822,'Reykholar','Iceland','IS','Reykholar (Iceland)',1,1,0),(50462,22897,150823,'Riberalta','Bolivia','BO','Riberalta (Bolivia)',1,1,0),(50463,23267,150824,'Roseberth','Australia','AU','Roseberth (Australia)',1,1,0),(50464,23272,150825,'Rosella Plains','Australia','AU','Rosella Plains (Australia)',1,1,0),(50465,0,150826,'Rowan Bay','United States of America','US','Rowan Bay (United States of America)',1,1,0),(50466,23517,150827,'Rutland Plains','Australia','AU','Rutland Plains (Australia)',1,1,0),(50467,23580,150828,'Sachigo Lake','Canada','CA','Sachigo Lake (Canada)',1,1,0),(50468,32919,150829,'San Antonio Oeste','Argentina','AR','San Antonio Oeste (Argentina)',1,1,0),(50469,33077,150830,'San Luis Rio Colorado','Mexico','MX','San Luis Rio Colorado (Mexico)',1,1,0),(50470,33147,150831,'San Quintin','Mexico','MX','San Quintin (Mexico)',1,1,0),(50471,24111,150833,'Sanana','Indonesia','ID','Sanana (Indonesia)',1,1,0),(50472,33346,150834,'Sao Francisco','Brazil','BR','Sao Francisco (Brazil)',1,1,0),(50473,24761,150835,'Selawik','United States of America','US','Selawik (United States of America)',1,1,0),(50474,24880,150836,'Serui','Indonesia','ID','Serui (Indonesia)',1,1,0),(50475,25107,150837,'Shishmaref','United States of America','US','Shishmaref (United States of America)',1,1,0),(50476,25442,150838,'Sleetmute','United States of America','US','Sleetmute (United States of America)',1,1,0),(50477,25469,150839,'Smiggin Holes','Australia','AU','Smiggin Holes (Australia)',1,1,0),(50478,33482,150840,'South Indian Lake','Canada','CA','South Indian Lake (Canada)',1,1,0),(50479,33540,150841,'Spring Creek','Australia','AU','Spring Creek (Australia)',1,1,0),(50480,26230,150842,'Streaky Bay','Australia','AU','Streaky Bay (Australia)',1,1,0),(50481,0,150843,'Stronsay','United Kingdom','UK','Stronsay (United Kingdom)',1,1,0),(50482,26277,150844,'Stung Treng','Cambodia','KH','Stung Treng (Cambodia)',1,1,0),(50483,0,150845,'Surfdale','New Zealand','NZ','Surfdale (New Zealand)',1,1,0),(50484,26752,150846,'Tan Tan','Morocco','MA','Tan Tan (Morocco)',1,1,0),(50485,26987,150847,'Temora','Australia','AU','Temora (Australia)',1,1,0),(50486,27219,150848,'Thorshofn','Iceland','IS','Thorshofn (Iceland)',1,1,0),(50487,27335,150849,'Tiom','Indonesia','ID','Tiom (Indonesia)',1,1,0),(50488,0,150850,'Tokoroa','New Zealand','NZ','Tokoroa (New Zealand)',1,1,0),(50489,0,150851,'Twin Hills','United States of America','US','Twin Hills (United States of America)',1,1,0),(50490,28090,150852,'Ulanhot','China','CN','Ulanhot (China)',1,1,0),(50491,33885,150853,'Una','Brazil','BR','Una (Brazil)',1,1,0),(50492,28220,150854,'Uruguaiana','Brazil','BR','Uruguaiana (Brazil)',1,1,0),(50493,29050,150855,'Voorburg','Netherlands','NL','Voorburg (Netherlands)',1,1,0),(50494,0,150856,'Wairoa','New Zealand','NZ','Wairoa (New Zealand)',1,1,0),(50495,0,150857,'Wave Hill','Australia','AU','Wave Hill (Australia)',1,1,0),(50496,29426,150858,'Webequie','Canada','CA','Webequie (Canada)',1,1,0),(50497,0,150859,'Whalsay','United Kingdom','UK','Whalsay (United Kingdom)',1,1,0),(50498,29659,150860,'Whidbey Island','United States of America','US','Whidbey Island (United States of America)',1,1,0),(50499,29744,150861,'Wilcannia','Australia','AU','Wilcannia (Australia)',1,1,0),(50500,29844,150862,'Windorah','Australia','AU','Windorah (Australia)',1,1,0),(50501,29897,150863,'Wiscasset','United States of America','US','Wiscasset (United States of America)',1,1,0),(50502,30014,150864,'Woomera','Australia','AU','Woomera (Australia)',1,1,0),(50503,0,150865,'Yam Island','Australia','AU','Yam Island (Australia)',1,1,0),(50504,12433,150866,'Hughenden','Australia','AU','Hughenden (Australia)',1,1,0),(50505,12643,150867,'Illaga','Indonesia','ID','Illaga (Indonesia)',1,1,0),(50506,0,150868,'Ilo','Peru','PE','Ilo (Peru)',1,1,0),(50507,12733,150869,'Inishmore','Ireland','IE','Inishmore (Ireland)',1,1,0),(50508,0,150870,'Itumbiara','Brazil','BR','Itumbiara (Brazil)',1,1,0),(50509,0,150871,'Ixtepec','Mexico','MX','Ixtepec (Mexico)',1,1,0),(50510,12985,150872,'Jacquinot Bay','Papua New Guinea','PG','Jacquinot Bay (Papua New Guinea)',1,1,0),(50511,0,150873,'Jauja','Peru','PE','Jauja (Peru)',1,1,0),(50512,13123,150874,'Ji Parana','Brazil','BR','Ji Parana (Brazil)',1,1,0),(50513,13425,150875,'Kaltag','United States of America','US','Kaltag (United States of America)',1,1,0),(50514,13445,150876,'Kambalda','Australia','AU','Kambalda (Australia)',1,1,0),(50515,13531,150877,'Kapit','Malaysia','MY','Kapit (Malaysia)',1,1,0),(50516,13752,150878,'Kebar','Indonesia','ID','Kebar (Indonesia)',1,1,0),(50517,13845,150879,'Kennedy Town','Hongkong','HK','Kennedy Town (Hongkong)',1,1,0),(50518,13970,150880,'Kiana','United States of America','US','Kiana (United States of America)',1,1,0),(50519,14041,150881,'Kimam','Indonesia','ID','Kimam (Indonesia)',1,1,0),(50520,0,150882,'Kiwayu','Kenya','KE','Kiwayu (Kenya)',1,1,0),(50521,14461,150883,'Koyukuk','United States of America','US','Koyukuk (United States of America)',1,1,0),(50522,31535,150884,'Lac La Martre','Canada','CA','Lac La Martre (Canada)',1,1,0),(50523,0,150885,'Langford','Canada','CA','Langford (Canada)',1,1,0),(50524,14949,150886,'Langgur','Indonesia','ID','Langgur (Indonesia)',1,1,0),(50525,15173,150887,'Learmonth','Australia','AU','Learmonth (Australia)',1,1,0),(50526,15484,150888,'Lightning Ridge','Australia','AU','Lightning Ridge (Australia)',1,1,0),(50527,15648,150889,'Little Grand Rapids','Canada','CA','Little Grand Rapids (Canada)',1,1,0),(50528,0,150890,'Livengood','United States of America','US','Livengood (United States of America)',1,1,0),(50529,0,150891,'Liverpool Street','United Kingdom','UK','Liverpool Street (United Kingdom)',1,1,0),(50530,0,150892,'Long Pasia','Malaysia','MY','Long Pasia (Malaysia)',1,1,0),(50531,16124,150893,'Lusikisiki','South Africa','ZA','Lusikisiki (South Africa)',1,1,0),(50532,16188,150894,'Lynn Lake','Canada','CA','Lynn Lake (Canada)',1,1,0),(50533,16325,150895,'Mafeteng','Lesotho','LS','Mafeteng (Lesotho)',1,1,0),(50534,0,150896,'Marguerite Bay','United States of America','US','Marguerite Bay (United States of America)',1,1,0),(50535,17050,150897,'Masset','Canada','CA','Masset (Canada)',1,1,0),(50536,17067,150898,'Matagami','Canada','CA','Matagami (Canada)',1,1,0),(50537,17126,150899,'Matupa','Brazil','BR','Matupa (Brazil)',1,1,0),(50538,0,150900,'Melo','Uruguay','UY','Melo (Uruguay)',1,1,0),(50539,17407,150901,'Memanbetsu','Japan','JP','Memanbetsu (Japan)',1,1,0),(50540,0,150902,'Mitchell Plateau','Australia','AU','Mitchell Plateau (Australia)',1,1,0),(50541,18024,150903,'Monbetsu','Japan','JP','Monbetsu (Japan)',1,1,0),(50542,18947,150904,'Nanisivik','Canada','CA','Nanisivik (Canada)',1,1,0),(50543,0,150905,'Neftekamsk','Russia','RU','Neftekamsk (Russia)',1,1,0),(50544,19158,150906,'Nejran','Saudi Arabia','SA','Nejran (Saudi Arabia)',1,1,0),(50545,19170,150907,'Nelson Lagoon','United States of America','US','Nelson Lagoon (United States of America)',1,1,0),(50546,19249,150908,'Neumuenster','Germany','DE','Neumuenster (Germany)',1,1,0),(50547,0,150909,'New Carlisle','Canada','CA','New Carlisle (Canada)',1,1,0),(50548,19378,150910,'Ngukurr','Australia','AU','Ngukurr (Australia)',1,1,0),(50549,19401,150911,'Nicoya','Costa Rica','CR','Nicoya (Costa Rica)',1,1,0),(50550,0,150912,'Niihama','Japan','JP','Niihama (Japan)',1,1,0),(50551,0,150913,'North Spirit Lake','Canada','CA','North Spirit Lake (Canada)',1,1,0),(50552,19783,150914,'Nunukan','Indonesia','ID','Nunukan (Indonesia)',1,1,0),(50553,19813,150915,'Nyngan','Australia','AU','Nyngan (Australia)',1,1,0),(50554,19940,150916,'Oenpelli','Australia','AU','Oenpelli (Australia)',1,1,0),(50555,20087,150917,'Olsztyn','Poland','PL','Olsztyn (Poland)',1,1,0),(50556,20140,150918,'Onslow','Australia','AU','Onslow (Australia)',1,1,0),(50557,20259,150919,'Ormoc','Philippines','PH','Ormoc (Philippines)',1,1,0),(50558,0,150920,'Osan','South Korea','KR','Osan (South Korea)',1,1,0),(50559,0,150921,'Pambwa','Papua New Guinea','PG','Pambwa (Papua New Guinea)',1,1,0),(50560,0,150922,'Papa Westray','United Kingdom','UK','Papa Westray (United Kingdom)',1,1,0),(50561,20767,150923,'Paraburdoo','Australia','AU','Paraburdoo (Australia)',1,1,0),(50562,20845,150924,'Parndana','Australia','AU','Parndana (Australia)',1,1,0),(50563,0,150925,'Peenemuende','Germany','DE','Peenemuende (Germany)',1,1,0),(50564,21693,150926,'Polacca','United States of America','US','Polacca (United States of America)',1,1,0),(50565,32505,150927,'Port Armstrong','United States of America','US','Port Armstrong (United States of America)',1,1,0),(50566,32581,150928,'Port Simpson','Canada','CA','Port Simpson (Canada)',1,1,0),(50567,22397,150929,'Quibdo','Colombia','CO','Quibdo (Colombia)',1,1,0),(50568,23180,150931,'Rokot','Indonesia','ID','Rokot (Indonesia)',1,1,0),(50569,32761,150932,'Ross River','Canada','CA','Ross River (Canada)',1,1,0),(50570,0,150933,'Rostov','Russia','RU','Rostov (Russia)',1,1,0),(50571,23348,150934,'Roti','Indonesia','ID','Roti (Indonesia)',1,1,0),(50572,23420,150935,'Ruby','United States of America','US','Ruby (United States of America)',1,1,0),(50573,0,150937,'Sampit','Indonesia','ID','Sampit (Indonesia)',1,1,0),(50574,0,150938,'Scotland','United Kingdom','UK','Scotland (United Kingdom)',1,1,0),(50575,25000,150939,'Sharurah','Saudi Arabia','SA','Sharurah (Saudi Arabia)',1,1,0),(50576,25142,150940,'Shungnak','United States of America','US','Shungnak (United States of America)',1,1,0),(50577,0,150941,'Achinsk','Russia','RU','Achinsk (Russia)',1,1,0),(50578,386,150942,'Akiak','United States of America','US','Akiak (United States of America)',1,1,0),(50579,396,150943,'Aklavik','Canada','CA','Aklavik (Canada)',1,1,0),(50580,406,150944,'Akulivik','Canada','CA','Akulivik (Canada)',1,1,0),(50581,801,150945,'Altenrhein','Switzerland','CH','Altenrhein (Switzerland)',1,1,0),(50582,0,150946,'Andros Town','Bahamas','BS','Andros Town (Bahamas)',1,1,0),(50583,1266,150947,'Aramac','Australia','AU','Aramac (Australia)',1,1,0),(50584,0,150948,'Arenshausen','Germany','DE','Arenshausen (Germany)',1,1,0),(50585,1485,150949,'Arrabury','Australia','AU','Arrabury (Australia)',1,1,0),(50586,1960,150950,'Babo','Indonesia','ID','Babo (Indonesia)',1,1,0),(50587,2462,150952,'Barter Island','United States of America','US','Barter Island (United States of America)',1,1,0),(50588,0,150953,'Belmonte','Brazil','BR','Belmonte (Brazil)',1,1,0),(50589,0,150954,'Beloreck','Russia','RU','Beloreck (Russia)',1,1,0),(50590,3003,150955,'Berlevag','Norway','NO','Berlevag (Norway)',1,1,0),(50591,3731,150956,'Borroloola','Australia','AU','Borroloola (Australia)',1,1,0),(50592,0,150957,'Bragado','Argentina','AR','Bragado (Argentina)',1,1,0),(50593,4172,150958,'Brochet','Canada','CA','Brochet (Canada)',1,1,0),(50594,4391,150959,'Buffalo Narrows','Canada','CA','Buffalo Narrows (Canada)',1,1,0),(50595,0,150960,'Cabo Rojo','Dominican Republic','DO','Cabo Rojo (Dominican Republic)',1,1,0),(50596,4817,150961,'Calverton','United States of America','US','Calverton (United States of America)',1,1,0),(50597,0,150962,'Calverton','United States of America','US','Calverton (United States of America)',1,1,0),(50598,0,150963,'Cambridge Bay','Canada','CA','Cambridge Bay (Canada)',1,1,0),(50599,4977,150964,'Candle','United States of America','US','Candle (United States of America)',1,1,0),(50600,5127,150966,'Carauari','Brazil','BR','Carauari (Brazil)',1,1,0),(50601,0,150967,'Casiguran','Philippines','PH','Casiguran (Philippines)',1,1,0),(50602,0,150968,'Casselman','Canada','CA','Casselman (Canada)',1,1,0),(50603,30695,150969,'Cat Lake','Canada','CA','Cat Lake (Canada)',1,1,0),(50604,5472,150970,'Caucasia','Colombia','CO','Caucasia (Colombia)',1,1,0),(50605,30700,150971,'Center Island','United States of America','US','Center Island (United States of America)',1,1,0),(50606,5709,150972,'Challis','United States of America','US','Challis (United States of America)',1,1,0),(50607,0,150973,'Chernivtsi','Ukraine','UA','Chernivtsi (Ukraine)',1,1,0),(50608,6086,150974,'Chibougamau','Canada','CA','Chibougamau (Canada)',1,1,0),(50609,0,150975,'Chiquimula','Guatemala','GT','Chiquimula (Guatemala)',1,1,0),(50610,6175,150976,'Chisana','United States of America','US','Chisana (United States of America)',1,1,0),(50611,6256,150977,'Chub Cay','Bahamas','BS','Chub Cay (Bahamas)',1,1,0),(50612,0,150978,'Coban','Guatemala','GT','Coban (Guatemala)',1,1,0),(50613,6713,150979,'Colville Lake','Canada','CA','Colville Lake (Canada)',1,1,0),(50614,6790,150980,'Condoto','Colombia','CO','Condoto (Colombia)',1,1,0),(50615,7006,150981,'Corryong','Australia','AU','Corryong (Australia)',1,1,0),(50616,7033,150982,'Corvo Island','Portugal','PT','Corvo Island (Portugal)',1,1,0),(50617,0,150983,'Cotia','Brazil','BR','Cotia (Brazil)',1,1,0),(50618,0,150984,'Cowarie','Australia','AU','Cowarie (Australia)',1,1,0),(50619,7302,150985,'Croydon','Australia','AU','Croydon (Australia)',1,1,0),(50620,0,150986,'Croydon','Australia','AU','Croydon (Australia)',1,1,0),(50621,7442,150987,'Daggett','United States of America','US','Daggett (United States of America)',1,1,0),(50622,8368,150988,'Durrie','Australia','AU','Durrie (Australia)',1,1,0),(50623,8389,150989,'Dysart','Australia','AU','Dysart (Australia)',1,1,0),(50624,0,150990,'Eday','United Kingdom','UK','Eday (United Kingdom)',1,1,0),(50625,8620,150991,'Elblag','Poland','PL','Elblag (Poland)',1,1,0),(50626,9155,150992,'Fairview','Canada','CA','Fairview (Canada)',1,1,0),(50627,0,150993,'Fairview','Canada','CA','Fairview (Canada)',1,1,0),(50628,9197,150994,'False Island','United States of America','US','False Island (United States of America)',1,1,0),(50629,0,150995,'Fishers Island','United States of America','US','Fishers Island (United States of America)',1,1,0),(50630,30977,150996,'Fort Benning','United States of America','US','Fort Benning (United States of America)',1,1,0),(50631,0,150997,'Fort Resolution','Canada','CA','Fort Resolution (Canada)',1,1,0),(50632,10236,150998,'Gebe','Indonesia','ID','Gebe (Indonesia)',1,1,0),(50633,10357,150999,'Gethsemani','Canada','CA','Gethsemani (Canada)',1,1,0),(50634,10666,151000,'Gooding','United States of America','US','Gooding (United States of America)',1,1,0),(50635,11223,151001,'Gurayat','Saudi Arabia','SA','Gurayat (Saudi Arabia)',1,1,0),(50636,11384,151002,'Hall Beach','Canada','CA','Hall Beach (Canada)',1,1,0),(50637,0,151003,'Hanksville','United States of America','US','Hanksville (United States of America)',1,1,0),(50638,11581,151004,'Hartley Bay','Canada','CA','Hartley Bay (Canada)',1,1,0),(50639,11622,151005,'Hateruma','Japan','JP','Hateruma (Japan)',1,1,0),(50640,12253,151006,'Hooker Creek','Australia','AU','Hooker Creek (Australia)',1,1,0),(50641,0,151007,'Hope Vale','Australia','AU','Hope Vale (Australia)',1,1,0),(50642,12267,151008,'Hopetoun','Australia','AU','Hopetoun (Australia)',1,1,0),(50643,0,151009,'Horn Island','Australia','AU','Horn Island (Australia)',1,1,0),(50644,0,151010,'Immokalee','United States of America','US','Immokalee (United States of America)',1,1,0),(50645,12731,151011,'Inisheer','Ireland','IE','Inisheer (Ireland)',1,1,0),(50646,12732,151012,'Inishmaan','Ireland','IE','Inishmaan (Ireland)',1,1,0),(50647,25281,151013,'Singkep','Indonesia','ID','Singkep (Indonesia)',1,1,0),(50648,25462,151014,'Slupsk','Poland','PL','Slupsk (Poland)',1,1,0),(50649,0,151015,'Son La','Vietnam','VN','Son La (Vietnam)',1,1,0),(50650,25678,151016,'Soroako','Indonesia','ID','Soroako (Indonesia)',1,1,0),(50651,25876,151017,'Spring Point','Bahamas','BS','Spring Point (Bahamas)',1,1,0),(50652,25887,151018,'Springvale','Australia','AU','Springvale (Australia)',1,1,0),(50653,26075,151019,'Stephen Island','Australia','AU','Stephen Island (Australia)',1,1,0),(50654,0,151020,'Stony River','United States of America','US','Stony River (United States of America)',1,1,0),(50655,26269,151021,'Stuart Island','Canada','CA','Stuart Island (Canada)',1,1,0),(50656,26349,151022,'Sullivan Bay','Canada','CA','Sullivan Bay (Canada)',1,1,0),(50657,26666,151023,'Takaroa','French Polynesia','PF','Takaroa (French Polynesia)',1,1,0),(50658,0,151024,'Takhli','Thailand','TH','Takhli (Thailand)',1,1,0),(50659,26674,151025,'Takotna','United States of America','US','Takotna (United States of America)',1,1,0),(50660,0,151026,'Tamuin','Mexico','MX','Tamuin (Mexico)',1,1,0),(50661,0,151027,'Teesside','United Kingdom','UK','Teesside (United Kingdom)',1,1,0),(50662,26966,151028,'Telegraph Creek','Canada','CA','Telegraph Creek (Canada)',1,1,0),(50663,0,151029,'Teofilo Otoni','Brazil','BR','Teofilo Otoni (Brazil)',1,1,0),(50664,27120,151030,'Thaba Tseka','Lesotho','LS','Thaba Tseka (Lesotho)',1,1,0),(50665,27141,151031,'Thargomindah','Australia','AU','Thargomindah (Australia)',1,1,0),(50666,27601,151032,'Touho','New Caledonia','NC','Touho (New Caledonia)',1,1,0),(50667,27775,151033,'Trinidad','Bolivia','BO','Trinidad (Bolivia)',1,1,0),(50668,27957,151034,'Turaif','Saudi Arabia','SA','Turaif (Saudi Arabia)',1,1,0),(50669,27987,151035,'Turtle Island','Fiji Islands','FJ','Turtle Island (Fiji Islands)',1,1,0),(50670,0,151036,'Umiujaq','Canada','CA','Umiujaq (Canada)',1,1,0),(50671,29132,151037,'Wagethe','Indonesia','ID','Wagethe (Indonesia)',1,1,0),(50672,29159,151038,'Waingapu','Indonesia','ID','Waingapu (Indonesia)',1,1,0),(50673,0,151039,'Westray','United Kingdom','UK','Westray (United Kingdom)',1,1,0),(50674,29643,151040,'Whale Cove','Canada','CA','Whale Cove (Canada)',1,1,0),(50675,29644,151041,'Whale Pass','United States of America','US','Whale Pass (United States of America)',1,1,0),(50676,34189,151042,'Wood River','United States of America','US','Wood River (United States of America)',1,1,0),(50677,0,151043,'Wrotham Park','Australia','AU','Wrotham Park (Australia)',1,1,0),(50678,30069,151044,'Wunnummin Lake','Canada','CA','Wunnummin Lake (Canada)',1,1,0),(50679,114,151045,'Acarigua','Venezuela','VE','Acarigua (Venezuela)',1,1,0),(50680,290,151046,'Aguni','Japan','JP','Aguni (Japan)',1,1,0),(50681,409,151047,'Akutan','United States of America','US','Akutan (United States of America)',1,1,0),(50682,426,151048,'Alakanuk','United States of America','US','Alakanuk (United States of America)',1,1,0),(50683,551,151049,'Aleknagik','United States of America','US','Aleknagik (United States of America)',1,1,0),(50684,567,151050,'Alexander Bay','South Africa','ZA','Alexander Bay (South Africa)',1,1,0),(50685,782,151051,'Altamira','Brazil','BR','Altamira (Brazil)',1,1,0),(50686,0,151052,'Andahuaylas','Peru','PE','Andahuaylas (Peru)',1,1,0),(50687,1074,151053,'Angoon','United States of America','US','Angoon (United States of America)',1,1,0),(50688,0,151054,'Anyang','South Korea','KR','Anyang (South Korea)',1,1,0),(50689,1700,151055,'Atka','United States of America','US','Atka (United States of America)',1,1,0),(50690,2035,151056,'Bagotville','Canada','CA','Bagotville (Canada)',1,1,0),(50691,2217,151057,'Bamaga','Australia','AU','Bamaga (Australia)',1,1,0),(50692,2367,151058,'Bardufoss','Norway','NO','Bardufoss (Norway)',1,1,0),(50693,2384,151059,'Bario','Malaysia','MY','Bario (Malaysia)',1,1,0),(50694,2432,151060,'Barra Colorado','Costa Rica','CR','Barra Colorado (Costa Rica)',1,1,0),(50695,0,151061,'Bathurst Island','Australia','AU','Bathurst Island (Australia)',1,1,0),(50696,2623,151062,'Bearskin Lake','Canada','CA','Bearskin Lake (Canada)',1,1,0),(50697,0,151063,'Bembridge','United Kingdom','UK','Bembridge (United Kingdom)',1,1,0),(50698,0,151064,'Big Mountain','United States of America','US','Big Mountain (United States of America)',1,1,0),(50699,3491,151065,'Bobo Dioulasso','Burkina Faso','BF','Bobo Dioulasso (Burkina Faso)',1,1,0),(50700,3575,151066,'Bokondini','Indonesia','ID','Bokondini (Indonesia)',1,1,0),(50701,0,151067,'Borden','Canada','CA','Borden (Canada)',1,1,0),(50702,0,151068,'Borden','Canada','CA','Borden (Canada)',1,1,0),(50703,4267,151069,'Brueggen','Germany','DE','Brueggen (Germany)',1,1,0),(50704,4268,151070,'Bruehl','Germany','DE','Bruehl (Germany)',1,1,0),(50705,0,151071,'Brumado','Brazil','BR','Brumado (Brazil)',1,1,0),(50706,0,151072,'Canaima','Venezuela','VE','Canaima (Venezuela)',1,1,0),(50707,5065,151073,'Cape Dorset','Canada','CA','Cape Dorset (Canada)',1,1,0),(50708,5117,151074,'Carajas','Brazil','BR','Carajas (Brazil)',1,1,0),(50709,0,151075,'Catalao','Brazil','BR','Catalao (Brazil)',1,1,0),(50710,5470,151076,'Cauayan','Philippines','PH','Cauayan (Philippines)',1,1,0),(50711,6111,151077,'Chigorodo','Colombia','CO','Chigorodo (Colombia)',1,1,0),(50712,6468,151078,'Cleve','Australia','AU','Cleve (Australia)',1,1,0),(50713,6909,151079,'Coral Harbour','Canada','CA','Coral Harbour (Canada)',1,1,0),(50714,7161,151080,'Crane','United States of America','US','Crane (United States of America)',1,1,0),(50715,7339,151081,'Cue','Australia','AU','Cue (Australia)',1,1,0),(50716,0,151082,'Davis Inlet','Canada','CA','Davis Inlet (Canada)',1,1,0),(50717,7621,151083,'Daxian','China','CN','Daxian (China)',1,1,0),(50718,0,151084,'Diadema','Brazil','BR','Diadema (Brazil)',1,1,0),(50719,0,151085,'Dueren','Germany','DE','Dueren (Germany)',1,1,0),(50720,8284,151086,'Dunbar','Australia','AU','Dunbar (Australia)',1,1,0),(50721,8547,151087,'Egegik','United States of America','US','Egegik (United States of America)',1,1,0),(50722,0,151088,'Emmerich','Germany','DE','Emmerich (Germany)',1,1,0),(50723,0,151089,'Finley','Australia','AU','Finley (Australia)',1,1,0),(50724,9529,151090,'Flin Flon','Canada','CA','Flin Flon (Canada)',1,1,0),(50725,0,151091,'Fort Chipewyan','Canada','CA','Fort Chipewyan (Canada)',1,1,0),(50726,10313,151092,'Geraldton','Canada','CA','Geraldton (Canada)',1,1,0),(50727,10706,151093,'Gorizia','Italy','IT','Gorizia (Italy)',1,1,0),(50728,10734,151094,'Gothenburg','Sweden','SE','Gothenburg (Sweden)',1,1,0),(50729,11164,151095,'Guettin','Germany','DE','Guettin (Germany)',1,1,0),(50730,11228,151096,'Gurupi','Brazil','BR','Gurupi (Brazil)',1,1,0),(50731,0,151097,'Healy Lake','United States of America','US','Healy Lake (United States of America)',1,1,0),(50732,0,151098,'Hobart Bay','United States of America','US','Hobart Bay (United States of America)',1,1,0),(50733,12180,151099,'Hollis','United States of America','US','Hollis (United States of America)',1,1,0),(50734,0,151100,'Hollis','United States of America','US','Hollis (United States of America)',1,1,0),(50735,0,151101,'Holmavik','Iceland','IS','Holmavik (Iceland)',1,1,0),(50736,12259,151102,'Hooper Bay','United States of America','US','Hooper Bay (United States of America)',1,1,0),(50737,12291,151103,'Hornepayne','Canada','CA','Hornepayne (Canada)',1,1,0),(50738,12400,151104,'Huangyan','China','CN','Huangyan (China)',1,1,0),(50739,0,151105,'Hudson Bay','Canada','CA','Hudson Bay (Canada)',1,1,0),(50740,12599,151106,'Ignace','Canada','CA','Ignace (Canada)',1,1,0),(50741,12735,151107,'Inkerman','Australia','AU','Inkerman (Australia)',1,1,0),(50742,12738,151108,'Innamincka','Australia','AU','Innamincka (Australia)',1,1,0),(50743,0,151109,'Iraan','United States of America','US','Iraan (United States of America)',1,1,0),(50744,12916,151110,'Itaituba','Brazil','BR','Itaituba (Brazil)',1,1,0),(50745,13209,151111,'Jolo','Philippines','PH','Jolo (Philippines)',1,1,0),(50746,13391,151113,'Kalaupapa','United States of America','US','Kalaupapa (United States of America)',1,1,0),(50747,13895,151114,'Kerteh','Malaysia','MY','Kerteh (Malaysia)',1,1,0),(50748,0,151115,'Killaloe','Canada','CA','Killaloe (Canada)',1,1,0),(50749,14156,151116,'Kirovograd','Ukraine','UA','Kirovograd (Ukraine)',1,1,0),(50750,14201,151117,'Kivalina','United States of America','US','Kivalina (United States of America)',1,1,0),(50751,14456,151118,'Kowanyama','Australia','AU','Kowanyama (Australia)',1,1,0),(50752,13208,151119,'Joliette','Canada','CA','Joliette (Canada)',1,1,0),(50753,0,151120,'Jolon','United States of America','US','Jolon (United States of America)',1,1,0),(50754,13275,151121,'Julia Creek','Australia','AU','Julia Creek (Australia)',1,1,0),(50755,13318,151122,'Kaben','Marshall Islands','MH','Kaben (Marshall Islands)',1,1,0),(50756,13623,151123,'Kasabonika','Canada','CA','Kasabonika (Canada)',1,1,0),(50757,13694,151124,'Kau','Indonesia','ID','Kau (Indonesia)',1,1,0),(50758,13787,151125,'Kekaha','United States of America','US','Kekaha (United States of America)',1,1,0),(50759,13832,151126,'Keningau','Malaysia','MY','Keningau (Malaysia)',1,1,0),(50760,13876,151127,'Kerang','Australia','AU','Kerang (Australia)',1,1,0),(50761,13956,151128,'Khmelnitskiy','Ukraine','UA','Khmelnitskiy (Ukraine)',1,1,0),(50762,14069,151129,'Kingfisher Lake','Canada','CA','Kingfisher Lake (Canada)',1,1,0),(50763,14225,151130,'Kleinzee','South Africa','ZA','Kleinzee (South Africa)',1,1,0),(50764,0,151131,'Koro Island','Fiji Islands','FJ','Koro Island (Fiji Islands)',1,1,0),(50765,14433,151132,'Kotlik','United States of America','US','Kotlik (United States of America)',1,1,0),(50766,14537,151133,'Kuala Belait','Brunei Darussalam','BN','Kuala Belait (Brunei Darussalam)',1,1,0),(50767,15084,151134,'Latrobe','Australia','AU','Latrobe (Australia)',1,1,0),(50768,15322,151135,'Lereh','Indonesia','ID','Lereh (Indonesia)',1,1,0),(50769,15344,151136,'Lesobeng','Lesotho','LS','Lesobeng (Lesotho)',1,1,0),(50770,15406,151137,'Lewoleba','Indonesia','ID','Lewoleba (Indonesia)',1,1,0),(50771,0,151138,'Lipetsk','Russia','RU','Lipetsk (Russia)',1,1,0),(50772,31831,151139,'Long Island','Australia','AU','Long Island (Australia)',1,1,0),(50773,0,151140,'Long Semado','Malaysia','MY','Long Semado (Malaysia)',1,1,0),(50774,16046,151141,'Lueneburg','Germany','DE','Lueneburg (Germany)',1,1,0),(50775,16233,151142,'Macau','Macau','MO','Macau (Macau)',1,1,0),(50776,16475,151143,'Malabang','Philippines','PH','Malabang (Philippines)',1,1,0),(50777,16586,151144,'Mamuju','Indonesia','ID','Mamuju (Indonesia)',1,1,0),(50778,16669,151145,'Manitouwadge','Canada','CA','Manitouwadge (Canada)',1,1,0),(50779,16707,151146,'Manti','United States of America','US','Manti (United States of America)',1,1,0),(50780,0,151147,'Marble Canyon','United States of America','US','Marble Canyon (United States of America)',1,1,0),(50781,17014,151148,'Masbate','Philippines','PH','Masbate (Philippines)',1,1,0),(50782,17240,151149,'Mccarthy','United States of America','US','Mccarthy (United States of America)',1,1,0),(50783,17752,151150,'Minaki','Canada','CA','Minaki (Canada)',1,1,0),(50784,18098,151151,'Mons','Belgium','BE','Mons (Belgium)',1,1,0),(50785,18478,151152,'Moruya','Australia','AU','Moruya (Australia)',1,1,0),(50786,0,151153,'Mosquera','Colombia','CO','Mosquera (Colombia)',1,1,0),(50787,0,151154,'Muenster','Germany','DE','Muenster (Germany)',1,1,0),(50788,18907,151155,'Naknek','United States of America','US','Naknek (United States of America)',1,1,0),(50789,19100,151156,'Naxos','Greece','GR','Naxos (Greece)',1,1,0),(50790,19499,151157,'Niuatoputapu','Tonga','TO','Niuatoputapu (Tonga)',1,1,0),(50791,0,151158,'North Ronaldsay','United Kingdom','UK','North Ronaldsay (United Kingdom)',1,1,0),(50792,0,151159,'Novokuznetsk','Russia','RU','Novokuznetsk (Russia)',1,1,0),(50793,19776,151160,'Nunapitchuk','United States of America','US','Nunapitchuk (United States of America)',1,1,0),(50794,20006,151161,'Okino Erabu','Japan','JP','Okino Erabu (Japan)',1,1,0),(50795,20328,151162,'Osnabrueck','Germany','DE','Osnabrueck (Germany)',1,1,0),(50796,20458,151163,'Ouyen','Australia','AU','Ouyen (Australia)',1,1,0),(50797,20908,151164,'Paterswolde','Netherlands','NL','Paterswolde (Netherlands)',1,1,0),(50798,0,151165,'Patos De Minas','Brazil','BR','Patos De Minas (Brazil)',1,1,0),(50799,22218,151166,'Pukatawagan','Canada','CA','Pukatawagan (Canada)',1,1,0),(50800,22364,151168,'Quebec','Canada','CA','Quebec (Canada)',1,1,0),(50801,22621,151169,'Raufarhofn','Iceland','IS','Raufarhofn (Iceland)',1,1,0),(50802,0,151170,'Red Sucker Lake','Canada','CA','Red Sucker Lake (Canada)',1,1,0),(50803,22795,151171,'Repulse Bay','Canada','CA','Repulse Bay (Canada)',1,1,0),(50804,32714,151172,'Rio Grande','Brazil','BR','Rio Grande (Brazil)',1,1,0),(50805,0,151173,'Rio Turbio','Argentina','AR','Rio Turbio (Argentina)',1,1,0),(50806,23034,151174,'Rivera','Uruguay','UY','Rivera (Uruguay)',1,1,0),(50807,23372,151175,'Rouses Point','United States of America','US','Rouses Point (United States of America)',1,1,0),(50808,0,151176,'Rum Cay','Bahamas','BS','Rum Cay (Bahamas)',1,1,0),(50809,0,151177,'Sabang','Indonesia','ID','Sabang (Indonesia)',1,1,0),(50810,23620,151178,'Saibai Island','Australia','AU','Saibai Island (Australia)',1,1,0),(50811,0,151179,'San Javier','Bolivia','BO','San Javier (Bolivia)',1,1,0),(50812,0,151180,'San Jose','Philippines','PH','San Jose (Philippines)',1,1,0),(50813,0,151181,'Santa Catalina','Colombia','CO','Santa Catalina (Colombia)',1,1,0),(50814,24332,151182,'Sarmi','Indonesia','ID','Sarmi (Indonesia)',1,1,0),(50815,24459,151183,'Sawu','Indonesia','ID','Sawu (Indonesia)',1,1,0),(50816,0,151184,'Shetland Islands','United Kingdom','UK','Shetland Islands (United Kingdom)',1,1,0),(50817,0,151185,'Sierra Leone','Sierra Leone','SL','Sierra Leone (Sierra Leone)',1,1,0),(50818,25191,151186,'Sierre','Switzerland','CH','Sierre (Switzerland)',1,1,0),(50819,0,151187,'Sogamoso','Colombia','CO','Sogamoso (Colombia)',1,1,0),(50820,0,151188,'Sora','Italy','IT','Sora (Italy)',1,1,0),(50821,33492,151189,'South Molle Island','Australia','AU','South Molle Island (Australia)',1,1,0),(50822,26024,151190,'Stauning','Denmark','DK','Stauning (Denmark)',1,1,0),(50823,0,151191,'Stevens Village','United States of America','US','Stevens Village (United States of America)',1,1,0),(50824,0,151192,'Taltal','Chile','CL','Taltal (Chile)',1,1,0),(50825,0,151193,'Itauna','Brazil','BR','Itauna (Brazil)',1,1,0),(50826,0,151194,'Ivanova','Russia','RU','Ivanova (Russia)',1,1,0),(50827,13087,151195,'Jenpeg','Canada','CA','Jenpeg (Canada)',1,1,0),(50828,13272,151196,'Jujuy','Argentina','AR','Jujuy (Argentina)',1,1,0),(50829,13368,151197,'Kakhonak','United States of America','US','Kakhonak (United States of America)',1,1,0),(50830,13615,151199,'Karumba','Australia','AU','Karumba (Australia)',1,1,0),(50831,14397,151200,'Korolevu','Fiji Islands','FJ','Korolevu (Fiji Islands)',1,1,0),(50832,0,151201,'Kotabaru','Indonesia','ID','Kotabaru (Indonesia)',1,1,0),(50833,14460,151202,'Koyuk','United States of America','US','Koyuk (United States of America)',1,1,0),(50834,14646,151203,'Kuujjuarapik','Canada','CA','Kuujjuarapik (Canada)',1,1,0),(50835,31492,151204,'La Tabatiere','Canada','CA','La Tabatiere (Canada)',1,1,0),(50836,14994,151205,'Lanzarote','Spain','ES','Lanzarote (Spain)',1,1,0),(50837,15022,151206,'Larantuka','Indonesia','ID','Larantuka (Indonesia)',1,1,0),(50838,0,151207,'Lemmon','United States of America','US','Lemmon (United States of America)',1,1,0),(50839,0,151208,'Londolozi','South Africa','ZA','Londolozi (South Africa)',1,1,0),(50840,0,151209,'Long Island','United States of America','US','Long Island (United States of America)',1,1,0),(50841,0,151210,'Long Island','United States of America','US','Long Island (United States of America)',1,1,0),(50842,0,151211,'Long Island','United States of America','US','Long Island (United States of America)',1,1,0),(50843,15845,151212,'Long Lellang','Malaysia','MY','Long Lellang (Malaysia)',1,1,0),(50844,0,151213,'Long Seridan','Malaysia','MY','Long Seridan (Malaysia)',1,1,0),(50845,16047,151214,'Luenen','Germany','DE','Luenen (Germany)',1,1,0),(50846,16152,151215,'Luxi','China','CN','Luxi (China)',1,1,0),(50847,16231,151216,'Macas','Ecuador','EC','Macas (Ecuador)',1,1,0),(50848,16661,151217,'Maningrida','Australia','AU','Maningrida (Australia)',1,1,0),(50849,16670,151218,'Manitowaning','Canada','CA','Manitowaning (Canada)',1,1,0),(50850,16805,151219,'Marfa','United States of America','US','Marfa (United States of America)',1,1,0),(50851,16983,151220,'Marudi','Malaysia','MY','Marudi (Malaysia)',1,1,0),(50852,17478,151221,'Merdey','Indonesia','ID','Merdey (Indonesia)',1,1,0),(50853,17522,151222,'Merty','Australia','AU','Merty (Australia)',1,1,0),(50854,17734,151223,'Milos','Greece','GR','Milos (Greece)',1,1,0),(50855,17864,151225,'Mitchell','Australia','AU','Mitchell (Australia)',1,1,0),(50856,18341,151226,'Moomba','Australia','AU','Moomba (Australia)',1,1,0),(50857,18451,151227,'Morotai Island','Indonesia','ID','Morotai Island (Indonesia)',1,1,0),(50858,0,151228,'Mount Union','United States of America','US','Mount Union (United States of America)',1,1,0),(50859,18637,151229,'Mukah','Malaysia','MY','Mukah (Malaysia)',1,1,0),(50860,0,151230,'Murray Island','Australia','AU','Murray Island (Australia)',1,1,0),(50861,0,151231,'Nakhon Ratchasima','Thailand','TH','Nakhon Ratchasima (Thailand)',1,1,0),(50862,0,151232,'Nalchik','Russia','RU','Nalchik (Russia)',1,1,0),(50863,19054,151233,'Natashquan','Canada','CA','Natashquan (Canada)',1,1,0),(50864,32153,151234,'New Stuyahok','United States of America','US','New Stuyahok (United States of America)',1,1,0),(50865,19443,151235,'Nightmute','United States of America','US','Nightmute (United States of America)',1,1,0),(50866,19489,151236,'Nishinoomote','Japan','JP','Nishinoomote (Japan)',1,1,0),(50867,0,151237,'Norman Wells','Canada','CA','Norman Wells (Canada)',1,1,0),(50868,19769,151238,'Nulato','United States of America','US','Nulato (United States of America)',1,1,0),(50869,19774,151239,'Numbulwar','Australia','AU','Numbulwar (Australia)',1,1,0),(50870,19909,151240,'Ocean Falls','Canada','CA','Ocean Falls (Canada)',1,1,0),(50871,19961,151241,'Ogoki','Canada','CA','Ogoki (Canada)',1,1,0),(50872,20207,151242,'Orchid Island','Taiwan','TW','Orchid Island (Taiwan)',1,1,0),(50873,0,151243,'Pamol','Malaysia','MY','Pamol (Malaysia)',1,1,0),(50874,0,151244,'Paso De Los Libres','Argentina','AR','Paso De Los Libres (Argentina)',1,1,0),(50875,0,151245,'Pitts Town','Bahamas','BS','Pitts Town (Bahamas)',1,1,0),(50876,32520,151246,'Port Clarence','United States of America','US','Port Clarence (United States of America)',1,1,0),(50877,21952,151247,'Postville','Canada','CA','Postville (Canada)',1,1,0),(50878,0,151248,'Provideniya','Russia','RU','Provideniya (Russia)',1,1,0),(50879,22327,151249,'Qingdao','China','CN','Qingdao (China)',1,1,0),(50880,22345,151250,'Qualicum','Canada','CA','Qualicum (Canada)',1,1,0),(50881,22415,151251,'Quinhagak','United States of America','US','Quinhagak (United States of America)',1,1,0),(50882,22427,151252,'Quirindi','Australia','AU','Quirindi (Australia)',1,1,0),(50883,22590,151253,'Ransiki','Indonesia','ID','Ransiki (Indonesia)',1,1,0),(50884,22691,151254,'Redencao','Brazil','BR','Redencao (Brazil)',1,1,0),(50885,22950,151255,'Rigolet','Canada','CA','Rigolet (Canada)',1,1,0),(50886,23039,151256,'Rivers Inlet','Canada','CA','Rivers Inlet (Canada)',1,1,0),(50887,23368,151257,'Round Lake','Canada','CA','Round Lake (Canada)',1,1,0),(50888,24015,151258,'Salluit','Canada','CA','Salluit (Canada)',1,1,0),(50889,24093,151259,'San Andros','Bahamas','BS','San Andros (Bahamas)',1,1,0),(50890,32987,151260,'San Fernando','United States of America','US','San Fernando (United States of America)',1,1,0),(50891,0,151261,'San Miguel','Panama','PA','San Miguel (Panama)',1,1,0),(50892,24213,151262,'Santa Rosa Copan','Honduras','HN','Santa Rosa Copan (Honduras)',1,1,0),(50893,24241,151263,'Santiago','Chile','CL','Santiago (Chile)',1,1,0),(50894,24951,151264,'Shageluk','United States of America','US','Shageluk (United States of America)',1,1,0),(50895,14645,151265,'Kuujjuaq','Canada','CA','Kuujjuaq (Canada)',1,1,0),(50896,14661,151266,'Kwethluk','United States of America','US','Kwethluk (United States of America)',1,1,0),(50897,0,151267,'La Desirade','Guadeloupe','GP','La Desirade (Guadeloupe)',1,1,0),(50898,0,151268,'Lahonce','France','FR','Lahonce (France)',1,1,0),(50899,14822,151269,'Lakehurst','United States of America','US','Lakehurst (United States of America)',1,1,0),(50900,0,151270,'Las Heras','Argentina','AR','Las Heras (Argentina)',1,1,0),(50901,15313,151271,'Leonora','Australia','AU','Leonora (Australia)',1,1,0),(50902,0,151272,'Liard River','Canada','CA','Liard River (Canada)',1,1,0),(50903,15560,151273,'Lindeman Island','Australia','AU','Lindeman Island (Australia)',1,1,0),(50904,15672,151274,'Livramento','Brazil','BR','Livramento (Brazil)',1,1,0),(50905,16138,151275,'Lutsk','Ukraine','UA','Lutsk (Ukraine)',1,1,0),(50906,16146,151276,'Luwuk','Indonesia','ID','Luwuk (Indonesia)',1,1,0),(50907,0,151277,'Mandera','Kenya','KE','Mandera (Kenya)',1,1,0),(50908,16627,151278,'Mandritsara','Madagascar','MG','Mandritsara (Madagascar)',1,1,0),(50909,16770,151279,'Marble Bar','Australia','AU','Marble Bar (Australia)',1,1,0),(50910,16998,151280,'Mary\'s Harbour','Canada','CA','Mary\'s Harbour (Canada)',1,1,0),(50911,17357,151281,'Mekoryuk','United States of America','US','Mekoryuk (United States of America)',1,1,0),(50912,0,151282,'Mercedes','Argentina','AR','Mercedes (Argentina)',1,1,0),(50913,17894,151283,'Mkambati','South Africa','ZA','Mkambati (South Africa)',1,1,0),(50914,17962,151284,'Mokhotlong','Lesotho','LS','Mokhotlong (Lesotho)',1,1,0),(50915,0,151285,'Mompos','Colombia','CO','Mompos (Colombia)',1,1,0),(50916,0,151286,'Mulu','Malaysia','MY','Mulu (Malaysia)',1,1,0),(50917,18786,151287,'Muttaburra','Australia','AU','Muttaburra (Australia)',1,1,0),(50918,18927,151288,'Namrole','Indonesia','ID','Namrole (Indonesia)',1,1,0),(50919,18930,151289,'Namu','Canada','CA','Namu (Canada)',1,1,0),(50920,19144,151290,'Negage','Angola','AO','Negage (Angola)',1,1,0),(50921,0,151291,'Northolt','United Kingdom','UK','Northolt (United Kingdom)',1,1,0),(50922,19686,151292,'Norway House','Canada','CA','Norway House (Canada)',1,1,0),(50923,19761,151293,'Nuiqsut','United States of America','US','Nuiqsut (United States of America)',1,1,0),(50924,0,151294,'Nullagine','Australia','AU','Nullagine (Australia)',1,1,0),(50925,0,151295,'Oakey','Australia','AU','Oakey (Australia)',1,1,0),(50926,32342,151296,'Old Crow','Canada','CA','Old Crow (Canada)',1,1,0),(50927,20251,151297,'Orland','Norway','NO','Orland (Norway)',1,1,0),(50928,0,151298,'Orsk','Russia','RU','Orsk (Russia)',1,1,0),(50929,20464,151299,'Ovda','Israel','IL','Ovda (Israel)',1,1,0),(50930,20557,151300,'Pagadian','Philippines','PH','Pagadian (Philippines)',1,1,0),(50931,0,151301,'Palmira','Colombia','CO','Palmira (Colombia)',1,1,0),(50932,20820,151302,'Parintins','Brazil','BR','Parintins (Brazil)',1,1,0),(50933,0,151303,'Parnamirim','Brazil','BR','Parnamirim (Brazil)',1,1,0),(50934,0,151304,'Pastaza','Ecuador','EC','Pastaza (Ecuador)',1,1,0),(50935,20979,151305,'Peawanuck','Canada','CA','Peawanuck (Canada)',1,1,0),(50936,0,151306,'Picos','Brazil','BR','Picos (Brazil)',1,1,0),(50937,0,151307,'Pilot Station','United States of America','US','Pilot Station (United States of America)',1,1,0),(50938,0,151308,'Pitalito','Colombia','CO','Pitalito (Colombia)',1,1,0),(50939,21585,151309,'Plentywood','United States of America','US','Plentywood (United States of America)',1,1,0),(50940,0,151310,'Poplar River','Canada','CA','Poplar River (Canada)',1,1,0),(50941,32498,151311,'Port Alice','United States of America','US','Port Alice (United States of America)',1,1,0),(50942,32548,151312,'Port Heiden','United States of America','US','Port Heiden (United States of America)',1,1,0),(50943,21913,151313,'Portoviejo','Ecuador','EC','Portoviejo (Ecuador)',1,1,0),(50944,22200,151314,'Puerto Berrio','Colombia','CO','Puerto Berrio (Colombia)',1,1,0),(50945,22201,151315,'Puerto Cabezas','Nicaragua','NI','Puerto Cabezas (Nicaragua)',1,1,0),(50946,22318,151316,'Qaisumah','Saudi Arabia','SA','Qaisumah (Saudi Arabia)',1,1,0),(50947,22485,151317,'Rafha','Saudi Arabia','SA','Rafha (Saudi Arabia)',1,1,0),(50948,22493,151318,'Raha','Indonesia','ID','Raha (Indonesia)',1,1,0),(50949,22504,151319,'Rainbow Lake','Canada','CA','Rainbow Lake (Canada)',1,1,0),(50950,22667,151320,'Rebun','Japan','JP','Rebun (Japan)',1,1,0),(50951,23075,151321,'Robinhood','Australia','AU','Robinhood (Australia)',1,1,0),(50952,0,151322,'Ruedesheim','Germany','DE','Ruedesheim (Germany)',1,1,0),(50953,0,151323,'Rurrenabaque','Bolivia','BO','Rurrenabaque (Bolivia)',1,1,0),(50954,0,151324,'San Miguel','United States of America','US','San Miguel (United States of America)',1,1,0),(50955,0,151325,'San Vito','Costa Rica','CR','San Vito (Costa Rica)',1,1,0),(50956,24243,151326,'Santiago','Dominican Republic','DO','Santiago (Dominican Republic)',1,1,0),(50957,33361,151327,'Sao Mateus','Brazil','BR','Sao Mateus (Brazil)',1,1,0),(50958,24448,151328,'Savoonga','United States of America','US','Savoonga (United States of America)',1,1,0),(50959,24965,151329,'Shamattawa','Canada','CA','Shamattawa (Canada)',1,1,0),(50960,25248,151330,'Simao','China','CN','Simao (China)',1,1,0),(50961,0,151331,'Sinop','Brazil','BR','Sinop (Brazil)',1,1,0),(50962,25420,151332,'Skwentna','United States of America','US','Skwentna (United States of America)',1,1,0),(50963,0,151333,'Soc Trang','Vietnam','VN','Soc Trang (Vietnam)',1,1,0),(50964,25602,151334,'Solomon','United States of America','US','Solomon (United States of America)',1,1,0),(50965,0,151335,'Southern Cross','Australia','AU','Southern Cross (Australia)',1,1,0),(50966,0,151336,'Stony Rapids','Canada','CA','Stony Rapids (Canada)',1,1,0),(50967,26175,151337,'Storuman','Sweden','SE','Storuman (Sweden)',1,1,0),(50968,0,151338,'Alerta','Peru','PE','Alerta (Peru)',1,1,0),(50969,752,151340,'Alpha','Australia','AU','Alpha (Australia)',1,1,0),(50970,868,151341,'Amahai','Indonesia','ID','Amahai (Indonesia)',1,1,0),(50971,1410,151342,'Aripuana','Brazil','BR','Aripuana (Brazil)',1,1,0),(50972,1711,151343,'Atmautluak','United States of America','US','Atmautluak (United States of America)',1,1,0),(50973,1964,151344,'Baca Grande','United States of America','US','Baca Grande (United States of America)',1,1,0),(50974,2212,151345,'Baltrum','Germany','DE','Baltrum (Germany)',1,1,0),(50975,2485,151346,'Basco','Philippines','PH','Basco (Philippines)',1,1,0),(50976,2806,151347,'Belle Chasse','United States of America','US','Belle Chasse (United States of America)',1,1,0),(50977,3698,151348,'Borgarfjordur Eystri','Iceland','IS','Borgarfjordur Eystri (Iceland)',1,1,0),(50978,4157,151349,'Brno','Czech Republic','CZ','Brno (Czech Republic)',1,1,0),(50979,0,151350,'Ca Mau','Vietnam','VN','Ca Mau (Vietnam)',1,1,0),(50980,30650,151351,'Camp Douglas','United States of America','US','Camp Douglas (United States of America)',1,1,0),(50981,0,151352,'Cape Dyer','Canada','CA','Cape Dyer (Canada)',1,1,0),(50982,5274,151353,'Cartwright','Canada','CA','Cartwright (Canada)',1,1,0),(50983,6095,151354,'Chicken','United States of America','US','Chicken (United States of America)',1,1,0),(50984,0,151355,'Chita','Russia','RU','Chita (Russia)',1,1,0),(50985,6333,151356,'Circle','United States of America','US','Circle (United States of America)',1,1,0),(50986,0,151357,'Circle','United States of America','US','Circle (United States of America)',1,1,0),(50987,0,151358,'Clarks Point','United States of America','US','Clarks Point (United States of America)',1,1,0),(50988,6577,151359,'Coconut Island','Australia','AU','Coconut Island (Australia)',1,1,0),(50989,0,151360,'Coldfoot','United States of America','US','Coldfoot (United States of America)',1,1,0),(50990,6669,151361,'Collinsville','Australia','AU','Collinsville (Australia)',1,1,0),(50991,0,151362,'Cross Lake','Canada','CA','Cross Lake (Canada)',1,1,0),(50992,7313,151363,'Cruzeiro Do Sul','Brazil','BR','Cruzeiro Do Sul (Brazil)',1,1,0),(50993,0,151364,'Dornbirn','Austria','AT','Dornbirn (Austria)',1,1,0),(50994,0,151365,'Ein Yahav','Israel','IL','Ein Yahav (Israel)',1,1,0),(50995,8610,151366,'El Bagre','Colombia','CO','El Bagre (Colombia)',1,1,0),(50996,0,151367,'El Maiten','Argentina','AR','El Maiten (Argentina)',1,1,0),(50997,0,151368,'Elba Island','Italy','IT','Elba Island (Italy)',1,1,0),(50998,0,151369,'Elista','Russia','RU','Elista (Russia)',1,1,0),(50999,9506,151370,'Flateyri','Iceland','IS','Flateyri (Iceland)',1,1,0),(51000,0,151371,'Flores Island','Portugal','PT','Flores Island (Portugal)',1,1,0),(51001,0,151372,'Fort Meade','United States of America','US','Fort Meade (United States of America)',1,1,0),(51002,31019,151373,'Fort Riley','United States of America','US','Fort Riley (United States of America)',1,1,0),(51003,0,151374,'Gabbs','United States of America','US','Gabbs (United States of America)',1,1,0),(51004,10085,151375,'Gambell','United States of America','US','Gambell (United States of America)',1,1,0),(51005,0,151376,'Gascoyne Junction','Australia','AU','Gascoyne Junction (Australia)',1,1,0),(51006,10188,151377,'Gassim','Saudi Arabia','SA','Gassim (Saudi Arabia)',1,1,0),(51007,10271,151378,'General Roca','Argentina','AR','General Roca (Argentina)',1,1,0),(51008,10298,151379,'George Town','Australia','AU','George Town (Australia)',1,1,0),(51009,10480,151380,'Gjoa Haven','Canada','CA','Gjoa Haven (Canada)',1,1,0),(51010,11465,151381,'Hanapepe','United States of America','US','Hanapepe (United States of America)',1,1,0),(51011,0,151382,'Herzogenbuchsee','Switzerland','CH','Herzogenbuchsee (Switzerland)',1,1,0),(51012,0,151383,'Hook Island','Australia','AU','Hook Island (Australia)',1,1,0),(51013,12266,151384,'Hopedale','Canada','CA','Hopedale (Canada)',1,1,0),(51014,0,151385,'Hoy Island','United Kingdom','UK','Hoy Island (United Kingdom)',1,1,0),(51015,12606,151386,'Iguazu','Argentina','AR','Iguazu (Argentina)',1,1,0),(51016,0,151387,'Ipiranga','Brazil','BR','Ipiranga (Brazil)',1,1,0),(51017,0,151388,'Islip','United States of America','US','Islip (United States of America)',1,1,0),(51018,0,151389,'Itacoatiara','Brazil','BR','Itacoatiara (Brazil)',1,1,0),(51019,13344,151390,'Kaikohe','New Zealand','NZ','Kaikohe (New Zealand)',1,1,0),(51020,13350,151391,'Kaimana','Indonesia','ID','Kaimana (Indonesia)',1,1,0),(51021,13503,151392,'Kangiqsujuaq','Canada','CA','Kangiqsujuaq (Canada)',1,1,0),(51022,13616,151393,'Karup','Denmark','DK','Karup (Denmark)',1,1,0),(51023,13635,151394,'Kasigluk','United States of America','US','Kasigluk (United States of America)',1,1,0),(51024,13776,151395,'Kegaska','Canada','CA','Kegaska (Canada)',1,1,0),(51025,14180,151396,'Kitadaito','Japan','JP','Kitadaito (Japan)',1,1,0),(51026,14267,151397,'Kobuk','United States of America','US','Kobuk (United States of America)',1,1,0),(51027,0,151398,'Kyzyl','Russia','RU','Kyzyl (Russia)',1,1,0),(51028,31468,151399,'La Ronge','Canada','CA','La Ronge (Canada)',1,1,0),(51029,0,151400,'La Sarre','Canada','CA','La Sarre (Canada)',1,1,0),(51030,0,151401,'Laeso','Denmark','DK','Laeso (Denmark)',1,1,0),(51031,15051,151402,'Las Piedras','Venezuela','VE','Las Piedras (Venezuela)',1,1,0),(51032,0,151403,'Lime Village','United States of America','US','Lime Village (United States of America)',1,1,0),(51033,0,151404,'Long Xuyen','Vietnam','VN','Long Xuyen (Vietnam)',1,1,0),(51034,15889,151405,'Lopez Island','United States of America','US','Lopez Island (United States of America)',1,1,0),(51035,16183,151406,'Lyndonville','United States of America','US','Lyndonville (United States of America)',1,1,0),(51036,16226,151407,'Mabuiag Island','Australia','AU','Mabuiag Island (Australia)',1,1,0),(51037,16464,151408,'Makkovik','Canada','CA','Makkovik (Canada)',1,1,0),(51038,0,151409,'Manston','United Kingdom','UK','Manston (United Kingdom)',1,1,0),(51039,112,151410,'Acandi','Colombia','CO','Acandi (Colombia)',1,1,0),(51040,561,151411,'Alert Bay','Canada','CA','Alert Bay (Canada)',1,1,0),(51041,0,151412,'Alexandria','Canada','CA','Alexandria (Canada)',1,1,0),(51042,656,151413,'Alldays','South Africa','ZA','Alldays (South Africa)',1,1,0),(51043,958,151414,'Amos','Canada','CA','Amos (Canada)',1,1,0),(51044,1032,151415,'Andorra','Andorra','AD','Andorra (Andorra)',1,1,0),(51045,0,151416,'Ararangua','Brazil','BR','Ararangua (Brazil)',1,1,0),(51046,1326,151417,'Arctic Village','United States of America','US','Arctic Village (United States of America)',1,1,0),(51047,1716,151418,'Atqasuk','United States of America','US','Atqasuk (United States of America)',1,1,0),(51048,2095,151419,'Baker Lake','Canada','CA','Baker Lake (Canada)',1,1,0),(51049,0,151420,'Balakovo','Russia','RU','Balakovo (Russia)',1,1,0),(51050,2232,151421,'Banaina','Indonesia','ID','Banaina (Indonesia)',1,1,0),(51051,0,151422,'Baniyala','Australia','AU','Baniyala (Australia)',1,1,0),(51052,2303,151423,'Baoshan','China','CN','Baoshan (China)',1,1,0),(51053,2968,151424,'Berens River','Canada','CA','Berens River (Canada)',1,1,0),(51054,3143,151425,'Bhurban','Pakistan','PK','Bhurban (Pakistan)',1,1,0),(51055,3438,151426,'Bloodvein','Canada','CA','Bloodvein (Canada)',1,1,0),(51056,3559,151427,'Boigu Island','Australia','AU','Boigu Island (Australia)',1,1,0),(51057,0,151428,'Braganca Paulista','Brazil','BR','Braganca Paulista (Brazil)',1,1,0),(51058,0,151429,'Bugulma','Russia','RU','Bugulma (Russia)',1,1,0),(51059,0,151430,'Bury St Edmunds','United Kingdom','UK','Bury St Edmunds (United Kingdom)',1,1,0),(51060,4913,151431,'Campo Bom','Brazil','BR','Campo Bom (Brazil)',1,1,0),(51061,0,151432,'Campo Mourao','Brazil','BR','Campo Mourao (Brazil)',1,1,0),(51062,0,151433,'Cape Lisburne','United States of America','US','Cape Lisburne (United States of America)',1,1,0),(51063,5705,151434,'Chalkyitsik','United States of America','US','Chalkyitsik (United States of America)',1,1,0),(51064,0,151435,'Chilko Lake','Canada','CA','Chilko Lake (Canada)',1,1,0),(51065,6725,151436,'Comayagua','Honduras','HN','Comayagua (Honduras)',1,1,0),(51066,7718,151437,'Delta Downs','Australia','AU','Delta Downs (Australia)',1,1,0),(51067,7905,151438,'Dillingham','United States of America','US','Dillingham (United States of America)',1,1,0),(51068,0,151440,'Doomadgee','Australia','AU','Doomadgee (Australia)',1,1,0),(51069,8320,151441,'Dunkerque','France','FR','Dunkerque (France)',1,1,0),(51070,8449,151442,'Eastsound','United States of America','US','Eastsound (United States of America)',1,1,0),(51071,8609,151443,'Ekwok','United States of America','US','Ekwok (United States of America)',1,1,0),(51072,0,151444,'El Salvador','Chile','CL','El Salvador (Chile)',1,1,0),(51073,8972,151445,'Esslingen','Germany','DE','Esslingen (Germany)',1,1,0),(51074,9504,151446,'Flat','United States of America','US','Flat (United States of America)',1,1,0),(51075,0,151447,'Fort Irwin','United States of America','US','Fort Irwin (United States of America)',1,1,0),(51076,0,151448,'Fox Harbour','Canada','CA','Fox Harbour (Canada)',1,1,0),(51077,10525,151449,'Glengyle','Australia','AU','Glengyle (Australia)',1,1,0),(51078,0,151450,'Gods River','Canada','CA','Gods River (Canada)',1,1,0),(51079,0,151451,'Goeppingen','Germany','DE','Goeppingen (Germany)',1,1,0),(51080,31054,151452,'Grand Canyon','United States of America','US','Grand Canyon (United States of America)',1,1,0),(51081,0,151453,'Greenwood','Canada','CA','Greenwood (Canada)',1,1,0),(51082,0,151454,'Greenwood','Canada','CA','Greenwood (Canada)',1,1,0),(51083,10999,151455,'Grimsey','Iceland','IS','Grimsey (Iceland)',1,1,0),(51084,0,151456,'Guamal','Colombia','CO','Guamal (Colombia)',1,1,0),(51085,11103,151457,'Guanaja','Honduras','HN','Guanaja (Honduras)',1,1,0),(51086,11136,151458,'Guayaramerin','Bolivia','BO','Guayaramerin (Bolivia)',1,1,0),(51087,0,151459,'Halali','Namibia','NA','Halali (Namibia)',1,1,0),(51088,11615,151460,'Hasvik','Norway','NO','Hasvik (Norway)',1,1,0),(51089,0,151461,'Holman','Canada','CA','Holman (Canada)',1,1,0),(51090,12206,151462,'Holy Cross','United States of America','US','Holy Cross (United States of America)',1,1,0),(51091,12434,151463,'Hughes','United States of America','US','Hughes (United States of America)',1,1,0),(51092,12744,151464,'Innisfail','Australia','AU','Innisfail (Australia)',1,1,0),(51093,0,151465,'Jatai','Brazil','BR','Jatai (Brazil)',1,1,0),(51094,13246,151466,'Jouf','Saudi Arabia','SA','Jouf (Saudi Arabia)',1,1,0),(51095,13270,151467,'Juist','Germany','DE','Juist (Germany)',1,1,0),(51096,13424,151468,'Kalskag','United States of America','US','Kalskag (United States of America)',1,1,0),(51097,13613,151470,'Karubaga','Indonesia','ID','Karubaga (Indonesia)',1,1,0),(51098,13706,151471,'Kauhajoki','Finland','FI','Kauhajoki (Finland)',1,1,0),(51099,13792,151472,'Kelila','Indonesia','ID','Kelila (Indonesia)',1,1,0),(51100,14376,151473,'Kopasker','Iceland','IS','Kopasker (Iceland)',1,1,0),(51101,31516,151474,'La Verne','United States of America','US','La Verne (United States of America)',1,1,0),(51102,14701,151475,'Labouchere Bay','United States of America','US','Labouchere Bay (United States of America)',1,1,0),(51103,15167,151476,'Leaf Rapids','Canada','CA','Leaf Rapids (Canada)',1,1,0),(51104,0,151477,'Les Cayes','Haiti','HT','Les Cayes (Haiti)',1,1,0),(51105,15385,151478,'Levelock','United States of America','US','Levelock (United States of America)',1,1,0),(51106,0,151479,'Lockhart River','Australia','AU','Lockhart River (Australia)',1,1,0),(51107,0,151480,'Loerrach','Germany','DE','Loerrach (Germany)',1,1,0),(51108,0,151481,'Long Banga','Malaysia','MY','Long Banga (Malaysia)',1,1,0),(51109,0,151482,'Long Sukang','Malaysia','MY','Long Sukang (Malaysia)',1,1,0),(51110,26754,151483,'Tana Toraja','Indonesia','ID','Tana Toraja (Indonesia)',1,1,0),(51111,26969,151484,'Telfer','Australia','AU','Telfer (Australia)',1,1,0),(51112,26975,151485,'Teller','United States of America','US','Teller (United States of America)',1,1,0),(51113,26985,151486,'Teminabuan','Indonesia','ID','Teminabuan (Indonesia)',1,1,0),(51114,27087,151487,'Teslin','Canada','CA','Teslin (Canada)',1,1,0),(51115,27094,151488,'Teterboro','United States of America','US','Teterboro (United States of America)',1,1,0),(51116,27107,151489,'Tewantin','Australia','AU','Tewantin (Australia)',1,1,0),(51117,27135,151490,'Thangool','Australia','AU','Thangool (Australia)',1,1,0),(51118,0,151491,'Timbo','Brazil','BR','Timbo (Brazil)',1,1,0),(51119,27869,151492,'Tsuen Wan','Hongkong','HK','Tsuen Wan (Hongkong)',1,1,0),(51120,27890,151493,'Tucuman','Argentina','AR','Tucuman (Argentina)',1,1,0),(51121,27892,151494,'Tucurui','Brazil','BR','Tucurui (Brazil)',1,1,0),(51122,27927,151495,'Tuluksak','United States of America','US','Tuluksak (United States of America)',1,1,0),(51123,27932,151496,'Tumaco','Colombia','CO','Tumaco (Colombia)',1,1,0),(51124,28079,151497,'Uige','Angola','AO','Uige (Angola)',1,1,0),(51125,28195,151498,'Uranium City','Canada','CA','Uranium City (Canada)',1,1,0),(51126,33925,151499,'Valle','United States of America','US','Valle (United States of America)',1,1,0),(51127,28935,151500,'Virac','Philippines','PH','Virac (Philippines)',1,1,0),(51128,29113,151501,'Wabush','Canada','CA','Wabush (Canada)',1,1,0),(51129,0,151502,'Warren','Australia','AU','Warren (Australia)',1,1,0),(51130,29431,151503,'Wedjh','Saudi Arabia','SA','Wedjh (Saudi Arabia)',1,1,0),(51131,0,151504,'West Malling','United Kingdom','UK','West Malling (United Kingdom)',1,1,0),(51132,0,151505,'White River','Canada','CA','White River (Canada)',1,1,0),(51133,0,151506,'Wink','United States of America','US','Wink (United States of America)',1,1,0),(51134,30084,151507,'Wyk Auf Foehr','Germany','DE','Wyk Auf Foehr (Germany)',1,1,0),(51135,0,151508,'Yakutsk','Russia','RU','Yakutsk (Russia)',1,1,0),(51136,0,151509,'Yeelirrie','Australia','AU','Yeelirrie (Australia)',1,1,0),(51137,0,151510,'Yorke Island','Australia','AU','Yorke Island (Australia)',1,1,0),(51138,0,151511,'Stuart Island','United States of America','US','Stuart Island (United States of America)',1,1,0),(51139,26435,151512,'Surabaya','Indonesia','ID','Surabaya (Indonesia)',1,1,0),(51140,26491,151513,'Sveg','Sweden','SE','Sveg (Sweden)',1,1,0),(51141,26628,151514,'Tahsis','Canada','CA','Tahsis (Canada)',1,1,0),(51142,26733,151515,'Tambolaka','Indonesia','ID','Tambolaka (Indonesia)',1,1,0),(51143,26767,151516,'Tanegashima','Japan','JP','Tanegashima (Japan)',1,1,0),(51144,0,151517,'Tanjung Selor','Indonesia','ID','Tanjung Selor (Indonesia)',1,1,0),(51145,0,151518,'Tarnobrzeg','Poland','PL','Tarnobrzeg (Poland)',1,1,0),(51146,26886,151519,'Tatitlek','United States of America','US','Tatitlek (United States of America)',1,1,0),(51147,27093,151520,'Tete A La Baleine','Canada','CA','Tete A La Baleine (Canada)',1,1,0),(51148,27243,151521,'Thursday Island','Australia','AU','Thursday Island (Australia)',1,1,0),(51149,0,151522,'Tokunoshima','Japan','JP','Tokunoshima (Japan)',1,1,0),(51150,0,151523,'Usinsk','Russia','RU','Usinsk (Russia)',1,1,0),(51151,28364,151524,'Valera','Venezuela','VE','Valera (Venezuela)',1,1,0),(51152,29363,151525,'Waterloo','Australia','AU','Waterloo (Australia)',1,1,0),(51153,29481,151526,'Welkom','South Africa','ZA','Welkom (South Africa)',1,1,0),(51154,29497,151527,'Welshpool','Australia','AU','Welshpool (Australia)',1,1,0),(51155,0,151528,'Welshpool','Australia','AU','Welshpool (Australia)',1,1,0),(51156,29820,151529,'Wiluna','Australia','AU','Wiluna (Australia)',1,1,0),(51157,0,151530,'Wondai','Australia','AU','Wondai (Australia)',1,1,0),(51158,17107,151531,'Matsaile','Lesotho','LS','Matsaile (Lesotho)',1,1,0),(51159,17798,151532,'Minto','United States of America','US','Minto (United States of America)',1,1,0),(51160,18164,151533,'Monte Dourado','Brazil','BR','Monte Dourado (Brazil)',1,1,0),(51161,18363,151534,'Moosonee','Canada','CA','Moosonee (Canada)',1,1,0),(51162,18493,151535,'Moser Bay','United States of America','US','Moser Bay (United States of America)',1,1,0),(51163,0,151537,'Nadym','Russia','RU','Nadym (Russia)',1,1,0),(51164,18863,151538,'Naga','Philippines','PH','Naga (Philippines)',1,1,0),(51165,18881,151539,'Naha','Indonesia','ID','Naha (Indonesia)',1,1,0),(51166,18903,151540,'Nakashibetsu','Japan','JP','Nakashibetsu (Japan)',1,1,0),(51167,18922,151541,'Namlea','Indonesia','ID','Namlea (Indonesia)',1,1,0),(51168,19180,151542,'Nemiscau','Canada','CA','Nemiscau (Canada)',1,1,0),(51169,19183,151543,'Nenana','United States of America','US','Nenana (United States of America)',1,1,0),(51170,19352,151544,'Newtok','United States of America','US','Newtok (United States of America)',1,1,0),(51171,19457,151545,'Nikolai','United States of America','US','Nikolai (United States of America)',1,1,0),(51172,19845,151546,'Obano','Indonesia','ID','Obano (Indonesia)',1,1,0),(51173,19972,151547,'Oiapoque','Brazil','BR','Oiapoque (Brazil)',1,1,0),(51174,20170,151548,'Opole','Poland','PL','Opole (Poland)',1,1,0),(51175,20652,151549,'Palmar','Costa Rica','CR','Palmar (Costa Rica)',1,1,0),(51176,20706,151550,'Pandie Pandie','Australia','AU','Pandie Pandie (Australia)',1,1,0),(51177,20937,151551,'Paulatuk','Canada','CA','Paulatuk (Canada)',1,1,0),(51178,20998,151552,'Pedro Bay','United States of America','US','Pedro Bay (United States of America)',1,1,0),(51179,0,151553,'Pevek','Russia','RU','Pevek (Russia)',1,1,0),(51180,21350,151554,'Pickens','United States of America','US','Pickens (United States of America)',1,1,0),(51181,21354,151555,'Pickle Lake','Canada','CA','Pickle Lake (Canada)',1,1,0),(51182,0,151556,'Pine Point','Canada','CA','Pine Point (Canada)',1,1,0),(51183,32439,151557,'Pine Ridge','United States of America','US','Pine Ridge (United States of America)',1,1,0),(51184,0,151558,'Pine Ridge','United States of America','US','Pine Ridge (United States of America)',1,1,0),(51185,32472,151559,'Point Hope','United States of America','US','Point Hope (United States of America)',1,1,0),(51186,0,151560,'Polyarnyj','Russia','RU','Polyarnyj (Russia)',1,1,0),(51187,21737,151561,'Pompano Beach','United States of America','US','Pompano Beach (United States of America)',1,1,0),(51188,21814,151562,'Poplar Hill','Canada','CA','Poplar Hill (Canada)',1,1,0),(51189,32497,151563,'Port Alexander','United States of America','US','Port Alexander (United States of America)',1,1,0),(51190,0,151564,'Port Elizabeth','St. Vincent & the Grenadines','VC','Port Elizabeth (St. Vincent & the Grenadines)',1,1,0),(51191,0,151565,'Porto Nacional','Brazil','BR','Porto Nacional (Brazil)',1,1,0),(51192,21942,151566,'Poso','Indonesia','ID','Poso (Indonesia)',1,1,0),(51193,22071,151567,'Prentice','United States of America','US','Prentice (United States of America)',1,1,0),(51194,0,151568,'Puerto Cabello','Venezuela','VE','Puerto Cabello (Venezuela)',1,1,0),(51195,0,151569,'Puerto Carreno','Colombia','CO','Puerto Carreno (Colombia)',1,1,0),(51196,22292,151570,'Putussibau','Indonesia','ID','Putussibau (Indonesia)',1,1,0),(51197,22324,151571,'Qiemo','China','CN','Qiemo (China)',1,1,0),(51198,0,151572,'Quiche','Guatemala','GT','Quiche (Guatemala)',1,1,0),(51199,0,151573,'Ramingining','Australia','AU','Ramingining (Australia)',1,1,0),(51200,23153,151574,'Roervik','Norway','NO','Roervik (Norway)',1,1,0),(51201,24049,151575,'Salvador','Brazil','BR','Salvador (Brazil)',1,1,0),(51202,24096,151576,'San Antonio','Venezuela','VE','San Antonio (Venezuela)',1,1,0),(51203,24150,151577,'Sandringham','Australia','AU','Sandringham (Australia)',1,1,0),(51204,0,151578,'Sandringham','Australia','AU','Sandringham (Australia)',1,1,0),(51205,24152,151579,'Sandspit','Canada','CA','Sandspit (Canada)',1,1,0),(51206,0,151580,'Saravane','LAOS','LA','Saravane (LAOS)',1,1,0),(51207,24824,151581,'Senneterre','Canada','CA','Senneterre (Canada)',1,1,0),(51208,24927,151582,'Sewanee','United States of America','US','Sewanee (United States of America)',1,1,0),(51209,25001,151583,'Shashi','China','CN','Shashi (China)',1,1,0),(51210,25212,151584,'Siirt','Turkey','TR','Siirt (Turkey)',1,1,0),(51211,0,151585,'Snowdrift','Canada','CA','Snowdrift (Canada)',1,1,0),(51212,33493,151586,'South Naknek','United States of America','US','South Naknek (United States of America)',1,1,0),(51213,33529,151587,'South Weymouth','United States of America','US','South Weymouth (United States of America)',1,1,0),(51214,25794,151588,'Soyo','Angola','AO','Soyo (Angola)',1,1,0),(51215,0,151589,'St George','Australia','AU','St George (Australia)',1,1,0),(51216,26037,151590,'Stebbins','United States of America','US','Stebbins (United States of America)',1,1,0),(51217,0,151591,'Strathroy','Canada','CA','Strathroy (Canada)',1,1,0),(51218,26759,151592,'Tanana','United States of America','US','Tanana (United States of America)',1,1,0),(51219,26771,151593,'Tangalooma','Australia','AU','Tangalooma (Australia)',1,1,0),(51220,0,151594,'Telemaco Borba','Brazil','BR','Telemaco Borba (Brazil)',1,1,0),(51221,26981,151595,'Tembagapura','Indonesia','ID','Tembagapura (Indonesia)',1,1,0),(51222,27060,151596,'Ternate','Indonesia','ID','Ternate (Indonesia)',1,1,0),(51223,27177,151597,'Thingeyri','Iceland','IS','Thingeyri (Iceland)',1,1,0),(51224,33833,151598,'Thorne Bay','United States of America','US','Thorne Bay (United States of America)',1,1,0),(51225,0,151599,'Tierp','Sweden','SE','Tierp (Sweden)',1,1,0),(51226,27437,151600,'Tolitoli','Indonesia','ID','Tolitoli (Indonesia)',1,1,0),(51227,0,151601,'Trujillo','Honduras','HN','Trujillo (Honduras)',1,1,0),(51228,27895,151602,'Tuebingen','Germany','DE','Tuebingen (Germany)',1,1,0),(51229,27911,151603,'Tulcan','Ecuador','EC','Tulcan (Ecuador)',1,1,0),(51230,27948,151604,'Tununak','United States of America','US','Tununak (United States of America)',1,1,0),(51231,0,151605,'Tynda','Russia','RU','Tynda (Russia)',1,1,0),(51232,0,151606,'Ukhta','Russia','RU','Ukhta (Russia)',1,1,0),(51233,28212,151607,'Urrao','Colombia','CO','Urrao (Colombia)',1,1,0),(51234,28602,151608,'Verden','Germany','DE','Verden (Germany)',1,1,0),(51235,0,151609,'Volgodonsk','Russia','RU','Volgodonsk (Russia)',1,1,0),(51236,29044,151610,'Volta Redonda','Brazil','BR','Volta Redonda (Brazil)',1,1,0),(51237,0,151611,'Voronezh','Russia','RU','Voronezh (Russia)',1,1,0),(51238,29204,151613,'Wales','United States of America','US','Wales (United States of America)',1,1,0),(51239,0,151615,'Ware','United States of America','US','Ware (United States of America)',1,1,0),(51240,29339,151616,'Wasior','Indonesia','ID','Wasior (Indonesia)',1,1,0),(51241,0,151617,'Wellington','Australia','AU','Wellington (Australia)',1,1,0),(51242,0,151618,'Wettingen','Switzerland','CH','Wettingen (Switzerland)',1,1,0),(51243,30340,151619,'Yurimaguas','Peru','PE','Yurimaguas (Peru)',1,1,0),(51244,0,151620,'Zapatoca','Colombia','CO','Zapatoca (Colombia)',1,1,0),(51245,0,151621,'Los Andes','Chile','CL','Los Andes (Chile)',1,1,0),(51246,15975,151622,'Loviisa','Finland','FI','Loviisa (Finland)',1,1,0),(51247,16162,151623,'Luzon','Philippines','PH','Luzon (Philippines)',1,1,0),(51248,0,151624,'Lydd','United Kingdom','UK','Lydd (United Kingdom)',1,1,0),(51249,0,151625,'Magdagachi','Russia','RU','Magdagachi (Russia)',1,1,0),(51250,16580,151626,'Mamburao','Philippines','PH','Mamburao (Philippines)',1,1,0),(51251,0,151627,'Manga','Papua New Guinea','PG','Manga (Papua New Guinea)',1,1,0),(51252,16646,151628,'Mangole','Indonesia','ID','Mangole (Indonesia)',1,1,0),(51253,16648,151629,'Mangrove Cay','Bahamas','BS','Mangrove Cay (Bahamas)',1,1,0),(51254,16795,151630,'Mare','New Caledonia','NC','Mare (New Caledonia)',1,1,0),(51255,0,151631,'Mcarthur River','Australia','AU','Mcarthur River (Australia)',1,1,0),(51256,0,151632,'Miranda Downs','Australia','AU','Miranda Downs (Australia)',1,1,0),(51257,17906,151633,'Moanamani','Indonesia','ID','Moanamani (Indonesia)',1,1,0),(51258,18388,151634,'Morawa','Australia','AU','Morawa (Australia)',1,1,0),(51259,18582,151635,'Moyobamba','Peru','PE','Moyobamba (Peru)',1,1,0),(51260,18691,151636,'Mungeranie','Australia','AU','Mungeranie (Australia)',1,1,0),(51261,0,151637,'Muroran','Japan','JP','Muroran (Japan)',1,1,0),(51262,18784,151638,'Muting','Indonesia','ID','Muting (Indonesia)',1,1,0),(51263,18891,151639,'Nain','Canada','CA','Nain (Canada)',1,1,0),(51264,0,151640,'Narromine','Australia','AU','Narromine (Australia)',1,1,0),(51265,19569,151641,'Noorvik','United States of America','US','Noorvik (United States of America)',1,1,0),(51266,20206,151642,'Orchid Beach','Australia','AU','Orchid Beach (Australia)',1,1,0),(51267,20413,151643,'Otu','Colombia','CO','Otu (Colombia)',1,1,0),(51268,20457,151644,'Ouvea','New Caledonia','NC','Ouvea (New Caledonia)',1,1,0),(51269,0,151645,'Paz De Ariporo','Colombia','CO','Paz De Ariporo (Colombia)',1,1,0),(51270,21147,151646,'Perigueux','France','FR','Perigueux (France)',1,1,0),(51271,0,151647,'Phanom Sarakham','Thailand','TH','Phanom Sarakham (Thailand)',1,1,0),(51272,32473,151648,'Point Lay','United States of America','US','Point Lay (United States of America)',1,1,0),(51273,32475,151649,'Point Lookout','United States of America','US','Point Lookout (United States of America)',1,1,0),(51274,32501,151650,'Port Alsworth','United States of America','US','Port Alsworth (United States of America)',1,1,0),(51275,32567,151651,'Port Menier','Canada','CA','Port Menier (Canada)',1,1,0),(51276,21994,151652,'Povungnituk','Canada','CA','Povungnituk (Canada)',1,1,0),(51277,22404,151653,'Quilpie','Australia','AU','Quilpie (Australia)',1,1,0),(51278,32671,151655,'Red Devil','United States of America','US','Red Devil (United States of America)',1,1,0),(51279,22972,151656,'Rincon De Los Sauces','Argentina','AR','Rincon De Los Sauces (Argentina)',1,1,0),(51280,22999,151657,'Rioja','Peru','PE','Rioja (Peru)',1,1,0),(51281,0,151658,'Saginaw Bay','United States of America','US','Saginaw Bay (United States of America)',1,1,0),(51282,24056,151659,'Salzgitter','Germany','DE','Salzgitter (Germany)',1,1,0),(51283,24165,151660,'Sandy Lake','Canada','CA','Sandy Lake (Canada)',1,1,0),(51284,0,151661,'Sangir','Indonesia','ID','Sangir (Indonesia)',1,1,0),(51285,24177,151662,'Sanikiluaq','Canada','CA','Sanikiluaq (Canada)',1,1,0),(51286,33321,151663,'Santo Angelo','Brazil','BR','Santo Angelo (Brazil)',1,1,0),(51287,33349,151664,'Sao Goncalo','Brazil','BR','Sao Goncalo (Brazil)',1,1,0),(51288,24742,151665,'Sehonghong','Lesotho','LS','Sehonghong (Lesotho)',1,1,0),(51289,24960,151666,'Shaktoolik','United States of America','US','Shaktoolik (United States of America)',1,1,0),(51290,25272,151667,'Sindal','Denmark','DK','Sindal (Denmark)',1,1,0),(51291,25326,151668,'Sishen','South Africa','ZA','Sishen (South Africa)',1,1,0),(51292,0,151669,'Sjaelland','Denmark','DK','Sjaelland (Denmark)',1,1,0),(51293,25397,151670,'Skiros','Greece','GR','Skiros (Greece)',1,1,0),(51294,26066,151671,'Stella Maris','Bahamas','BS','Stella Maris (Bahamas)',1,1,0),(51295,26664,151672,'Takapoto','French Polynesia','PF','Takapoto (French Polynesia)',1,1,0),(51296,0,151673,'Tara','Australia','AU','Tara (Australia)',1,1,0),(51297,26809,151674,'Taramajima','Japan','JP','Taramajima (Japan)',1,1,0),(51298,0,151675,'Tibooburra','Australia','AU','Tibooburra (Australia)',1,1,0),(51299,27323,151676,'Tingo Maria','Peru','PE','Tingo Maria (Peru)',1,1,0),(51300,0,151677,'Tocopilla','Chile','CL','Tocopilla (Chile)',1,1,0),(51301,27424,151678,'Toksook Bay','United States of America','US','Toksook Bay (United States of America)',1,1,0),(51302,27451,151679,'Tomanggong','Malaysia','MY','Tomanggong (Malaysia)',1,1,0),(51303,27902,151680,'Tuktoyaktuk','Canada','CA','Tuktoyaktuk (Canada)',1,1,0),(51304,0,151681,'Upala','Costa Rica','CR','Upala (Costa Rica)',1,1,0),(51305,28311,151682,'Vaeroy','Norway','NO','Vaeroy (Norway)',1,1,0),(51306,28572,151683,'Venetie','United States of America','US','Venetie (United States of America)',1,1,0),(51307,0,151684,'Vorkuta','Russia','RU','Vorkuta (Russia)',1,1,0),(51308,0,151685,'Waimanalo','United States of America','US','Waimanalo (United States of America)',1,1,0),(51309,29162,151686,'Wainwright','United States of America','US','Wainwright (United States of America)',1,1,0),(51310,0,151687,'Walnut Ridge','United States of America','US','Walnut Ridge (United States of America)',1,1,0),(51311,29292,151688,'Waris','Indonesia','ID','Waris (Indonesia)',1,1,0),(51312,29541,151689,'West End','Bahamas','BS','West End (Bahamas)',1,1,0),(51313,29774,151690,'Williams Harbour','Canada','CA','Williams Harbour (Canada)',1,1,0),(51314,30045,151691,'Wrigley','Canada','CA','Wrigley (Canada)',1,1,0),(51315,30055,151692,'Wudinna','Australia','AU','Wudinna (Australia)',1,1,0),(51316,30468,151693,'Zhaotong','China','CN','Zhaotong (China)',1,1,0),(51317,25103,151694,'Shirley','United States of America','US','Shirley (United States of America)',1,1,0),(51318,0,151695,'Shirley','United States of America','US','Shirley (United States of America)',1,1,0),(51319,25116,151696,'Shonai','Japan','JP','Shonai (Japan)',1,1,0),(51320,26316,151697,'Sudureyri','Iceland','IS','Sudureyri (Iceland)',1,1,0),(51321,26361,151698,'Sumbawa','Indonesia','ID','Sumbawa (Indonesia)',1,1,0),(51322,26585,151699,'Tabatinga','Brazil','BR','Tabatinga (Brazil)',1,1,0),(51323,26606,151700,'Tadoule Lake','Canada','CA','Tadoule Lake (Canada)',1,1,0),(51324,26660,151701,'Takaka','New Zealand','NZ','Takaka (New Zealand)',1,1,0),(51325,26765,151702,'Tandag','Philippines','PH','Tandag (Philippines)',1,1,0),(51326,27162,151703,'Thermal','United States of America','US','Thermal (United States of America)',1,1,0),(51327,27947,151704,'Tuntutuliak','United States of America','US','Tuntutuliak (United States of America)',1,1,0),(51328,28228,151705,'Useless Loop','Australia','AU','Useless Loop (Australia)',1,1,0),(51329,0,151706,'Vallegrande','Bolivia','BO','Vallegrande (Bolivia)',1,1,0),(51330,28440,151707,'Vanrook','Australia','AU','Vanrook (Australia)',1,1,0),(51331,28638,151708,'Versailles','United States of America','US','Versailles (United States of America)',1,1,0),(51332,0,151709,'Versailles','United States of America','US','Versailles (United States of America)',1,1,0),(51333,0,151710,'Versailles','United States of America','US','Versailles (United States of America)',1,1,0),(51334,28783,151711,'Vilhena','Brazil','BR','Vilhena (Brazil)',1,1,0),(51335,0,151712,'Vinh Long','Vietnam','VN','Vinh Long (Vietnam)',1,1,0),(51336,29170,151713,'Waitangi','New Zealand','NZ','Waitangi (New Zealand)',1,1,0),(51337,29303,151714,'Warracknabeal','Australia','AU','Warracknabeal (Australia)',1,1,0),(51338,29340,151715,'Waskaganish','Canada','CA','Waskaganish (Canada)',1,1,0),(51339,0,151716,'Wee Waa','Australia','AU','Wee Waa (Australia)',1,1,0),(51340,29502,151717,'Wemindji','Canada','CA','Wemindji (Canada)',1,1,0),(51341,0,151718,'Willow','United States of America','US','Willow (United States of America)',1,1,0),(51342,0,151719,'Willow','United States of America','US','Willow (United States of America)',1,1,0),(51343,30158,151720,'Yakutat','United States of America','US','Yakutat (United States of America)',1,1,0),(51344,0,151721,'Yechon','South Korea','KR','Yechon (South Korea)',1,1,0),(51345,0,151722,'York Landing','Canada','CA','York Landing (Canada)',1,1,0),(51346,30415,151723,'Zaporozhye','Ukraine','UA','Zaporozhye (Ukraine)',1,1,0),(51347,0,151724,'Borth','United Kingdom','UK','Borth (United Kingdom)',1,1,0),(51348,0,151725,'Bottanuco','Italy','IT','Bottanuco (Italy)',1,1,0),(51349,0,151726,'Boyne Island','Australia','AU','Boyne Island (Australia)',1,1,0),(51350,0,151727,'Bratto','Italy','IT','Bratto (Italy)',1,1,0),(51351,0,151728,'Breil-sur-Roya','France','FR','Breil-sur-Roya (France)',1,1,0),(51352,3625,151729,'Bonaire','Netherlands Antilles','AN','Bonaire (Netherlands Antilles)',1,1,0),(51353,7386,151730,'Curacao','Netherlands Antilles','AN','Curacao (Netherlands Antilles)',1,1,0),(51354,0,151731,'Saba Island','Netherlands Antilles','AN','Saba Island (Netherlands Antilles)',1,1,0),(51355,0,151732,'St Eustatius','Netherlands Antilles','AN','St Eustatius (Netherlands Antilles)',1,1,0),(51356,0,151733,'St Maarten','Netherlands Antilles','AN','St Maarten (Netherlands Antilles)',1,1,0),(51357,0,151734,'Teniente R Marsh','Antarctica','AQ','Teniente R Marsh (Antarctica)',1,1,0),(51358,0,151735,'Europe','European Monetary Union','EU','Europe (European Monetary Union)',1,1,0),(51359,0,151736,'Pyongyang','North Korea',NULL,'Pyongyang (North Korea)',1,1,0),(51360,19603,151737,'Norfolk Island','Norfolk Islands','NF','Norfolk Island (Norfolk Islands)',1,1,0),(51361,0,151738,'Alula','Somalia','SO','Alula (Somalia)',1,1,0),(51362,0,151739,'Baidoa','Somalia','SO','Baidoa (Somalia)',1,1,0),(51363,0,151740,'Bardera','Somalia','SO','Bardera (Somalia)',1,1,0),(51364,0,151741,'Berbera','Somalia','SO','Berbera (Somalia)',1,1,0),(51365,0,151742,'Borama','Somalia','SO','Borama (Somalia)',1,1,0),(51366,0,151743,'Bossaso','Somalia','SO','Bossaso (Somalia)',1,1,0),(51367,0,151744,'Burao','Somalia','SO','Burao (Somalia)',1,1,0),(51368,0,151745,'Candala','Somalia','SO','Candala (Somalia)',1,1,0),(51369,0,151746,'Eil','Somalia','SO','Eil (Somalia)',1,1,0),(51370,0,151747,'Erigavo','Somalia','SO','Erigavo (Somalia)',1,1,0),(51371,0,151748,'Galcaio','Somalia','SO','Galcaio (Somalia)',1,1,0),(51372,0,151749,'Garbaharey','Somalia','SO','Garbaharey (Somalia)',1,1,0),(51373,0,151750,'Gardo','Somalia','SO','Gardo (Somalia)',1,1,0),(51374,0,151751,'Garoe','Somalia','SO','Garoe (Somalia)',1,1,0),(51375,0,151752,'Hargeisa','Somalia','SO','Hargeisa (Somalia)',1,1,0),(51376,0,151753,'Kismayu','Somalia','SO','Kismayu (Somalia)',1,1,0),(51377,0,151754,'Las Khoreh','Somalia','SO','Las Khoreh (Somalia)',1,1,0),(51378,0,151755,'Lugh Ganane','Somalia','SO','Lugh Ganane (Somalia)',1,1,0),(51379,0,151756,'Mogadishu','Somalia','SO','Mogadishu (Somalia)',1,1,0),(51380,0,151757,'Obbia','Somalia','SO','Obbia (Somalia)',1,1,0),(51381,0,151758,'Scusciuban','Somalia','SO','Scusciuban (Somalia)',1,1,0),(51382,0,151759,'Futuna Island','Wallis & Futuna Islands','WF','Futuna Island (Wallis & Futuna Islands)',1,1,0),(51383,0,151760,'Wallis Island','Wallis & Futuna Islands','WF','Wallis Island (Wallis & Futuna Islands)',1,1,0),(51384,2782,151761,'Belgrade','Yugoslavia','YU','Belgrade (Yugoslavia)',1,1,0),(51385,0,151762,'Budva','Yugoslavia','YU','Budva (Yugoslavia)',1,1,0),(51386,0,151763,'Hercegnovi','Montenegro','ME','Hercegnovi (Montenegro)',1,1,0),(51387,0,151764,'Ivangrad','Montenegro','ME','Ivangrad (Montenegro)',1,1,0),(51388,0,151765,'Kotor','Yugoslavia','YU','Kotor (Yugoslavia)',1,1,0),(51389,19485,151766,'Nis','Yugoslavia','YU','Nis (Yugoslavia)',1,1,0),(51390,0,151767,'Novi Sad','Yugoslavia','YU','Novi Sad (Yugoslavia)',1,1,0),(51391,20695,151768,'Pancevo','Yugoslavia','YU','Pancevo (Yugoslavia)',1,1,0),(51392,21652,151769,'Podgorica','Yugoslavia','YU','Podgorica (Yugoslavia)',1,1,0),(51393,0,151770,'Pozarevac','Yugoslavia','YU','Pozarevac (Yugoslavia)',1,1,0),(51394,22126,151771,'Pristina','Yugoslavia','YU','Pristina (Yugoslavia)',1,1,0),(51395,27372,151772,'Tivat','Yugoslavia','YU','Tivat (Yugoslavia)',1,1,0),(51396,28288,151773,'Uzice','Yugoslavia','YU','Uzice (Yugoslavia)',1,1,0),(51397,0,151774,'Valjevo','Yugoslavia','YU','Valjevo (Yugoslavia)',1,1,0),(51398,30356,151775,'Zabljak','Yugoslavia','YU','Zabljak (Yugoslavia)',1,1,0),(51399,0,151776,'Leninakan','Armenia','AM','Leninakan (Armenia)',1,1,0),(51400,14166,151777,'Kisangani','Congo (Rep. Dem.)','CD','Kisangani (Congo (Rep. Dem.))',1,1,0),(51401,9544,151778,'Florence','Italy','IT','Florence (Italy)',1,1,0),(51402,10023,151779,'Gaiole In Chianti','Italy','IT','Gaiole In Chianti (Italy)',1,1,0),(51403,33422,151780,'Signa','Italy','IT','Signa (Italy)',1,1,0),(51404,4920,151781,'Campogalliano','Italy','IT','Campogalliano (Italy)',1,1,0),(51405,788,151782,'Altavilla Milicia','Italy','IT','Altavilla Milicia (Italy)',1,1,0),(51406,18428,151783,'Morimondo','Italy','IT','Morimondo (Italy)',1,1,0),(51407,7012,151784,'Corsico','Italy','IT','Corsico (Italy)',1,1,0),(51408,30573,151785,'Badia','Italy','IT','Badia (Italy)',1,1,0),(51409,1252,151786,'Arabba','Italy','IT','Arabba (Italy)',1,1,0),(51410,0,151787,'Selva Di Val Gardena','Italy','IT','Selva Di Val Gardena (Italy)',1,1,0),(51411,20288,151788,'Ortisei','Italy','IT','Ortisei (Italy)',1,1,0),(51412,7971,151789,'Dobbiaco','Italy','IT','Dobbiaco (Italy)',1,1,0),(51413,508,151790,'Alcamo','Italy','IT','Alcamo (Italy)',1,1,0),(51414,25315,151791,'Siracusa','Italy','IT','Siracusa (Italy)',1,1,0),(51415,23029,151792,'Rivalta di Torino','Italy','IT','Rivalta di Torino (Italy)',1,1,0),(51416,19709,151793,'Novafeltria','Italy','IT','Novafeltria (Italy)',1,1,0),(51417,33003,151794,'San Giorgio Di Mantova','Italy','IT','San Giorgio Di Mantova (Italy)',1,1,0),(51418,0,151795,'Civitella Paganico','Italy','IT','Civitella Paganico (Italy)',1,1,0),(51419,8865,151796,'Erdos','China','CN','Erdos (China)',1,1,0),(51420,6225,151797,'Chongqing','China','CN','Chongqing (China)',1,1,0),(51421,19391,151798,'Nice','France','FR','Nice (France)',1,1,0),(51422,10344,151799,'Gerona','Spain','ES','Gerona (Spain)',1,1,0),(51423,12292,151800,'Hornindal','Norway','NO','Hornindal (Norway)',1,1,0),(51424,28022,151801,'Twin Waters','Australia','AU','Twin Waters (Australia)',1,1,0),(51425,7636,151802,'Dead Sea','Israel','IL','Dead Sea (Israel)',1,1,0),(51426,13680,151803,'Katoomba','Australia','AU','Katoomba (Australia)',1,1,0),(51427,6463,151804,'Clermont-Ferrand','France','FR','Clermont-Ferrand (France)',1,1,0),(51428,0,151805,'Disneyland Paris','France','FR','Disneyland Paris (France)',1,1,0),(51429,0,151806,'Osmaniye','Turkey','TR','Osmaniye (Turkey)',1,1,0),(51430,0,151807,'Bur Dubai','United Arab Emirates','AE','Bur Dubai (United Arab Emirates)',1,1,0),(51431,12849,151808,'Ishikawa','Japan','JP','Ishikawa (Japan)',1,1,0),(51432,21208,151809,'Peshawar','Pakistan','PK','Peshawar (Pakistan)',1,1,0),(51433,0,151810,'Crete Island','Greece','GR','Crete Island (Greece)',1,1,0),(51434,0,151813,'Voi','Kenya','KE','Voi (Kenya)',1,1,0),(51435,9389,151814,'Fez','Morocco','MA','Fez (Morocco)',1,1,0),(51436,11177,151815,'Guilin','China','CN','Guilin (China)',1,1,0),(51437,2781,151816,'Belgrade','Serbia','RS','Belgrade (Serbia)',1,1,0),(51438,0,151817,'Kazan','Russia','RU','Kazan (Russia)',1,1,0),(51439,8855,151818,'Erbil','Iraq','IQ','Erbil (Iraq)',1,1,0),(51440,0,151819,'Lake Mburo','Uganda','UG','Lake Mburo (Uganda)',1,1,0),(51441,0,151820,'Chernivtsi','Ukraine','UA','Chernivtsi (Ukraine)',1,1,0),(51442,0,151821,'Kashan','Iran','IR','Kashan (Iran)',1,1,0),(51443,0,151822,'Zanjan','Iran','IR','Zanjan (Iran)',1,1,0),(51444,0,151823,'Qazvin','Iran','IR','Qazvin (Iran)',1,1,0),(51445,0,151824,'Meiktila','Myanmar','MM','Meiktila (Myanmar)',1,1,0),(51446,0,151825,'Nakhal','Oman','OM','Nakhal (Oman)',1,1,0),(51447,0,151826,'Menorca','Spain','ES','Menorca (Spain)',1,1,0),(51448,0,151827,'Gyeonggi-do','South Korea','KR','Gyeonggi-do (South Korea)',1,1,0),(51449,14665,151828,'Kyaikhtiyo','Myanmar','MM','Kyaikhtiyo (Myanmar)',1,1,0),(51450,0,151829,'Bella Union','Uruguay','UY','Bella Union (Uruguay)',1,1,0),(51451,0,151830,'Conchillas','Uruguay','UY','Conchillas (Uruguay)',1,1,0),(51452,0,151831,'La Barra','Uruguay','UY','La Barra (Uruguay)',1,1,0),(51453,0,151832,'San Jose De Mayo','Uruguay','UY','San Jose De Mayo (Uruguay)',1,1,0),(51454,0,151838,'Vakfikebir','Turkey','TR','Vakfikebir (Turkey)',1,1,0),(51455,18945,151839,'Nanhai','China','CN','Nanhai (China)',1,1,0),(51456,0,151852,'Quba','Azerbaijan','AZ','Quba (Azerbaijan)',1,1,0),(51457,0,151853,'Ucross','United states',NULL,'Ucross (United states)',1,1,0),(51458,8475,151854,'Ecatepec de Morelos','Mexico','MX','Ecatepec de Morelos (Mexico)',1,1,0),(51459,0,151855,'Huixquilucan','Mexico','MX','Huixquilucan (Mexico)',1,1,0),(51460,26936,151856,'Tecate','Mexico','MX','Tecate (Mexico)',1,1,0),(51461,0,151857,'Tonalá','Mexico','MX','Tonalá (Mexico)',1,1,0),(51462,0,151858,'Tonala','Mexico','MX','Tonala (Mexico)',1,1,0);
/*!40000 ALTER TABLE `tb_master_geo_city_new` 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,
  `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) NOT 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 (10949,10949,2,0,0,1,0,0,1,1,0,0.00,0.00,0,0,0,0,0.00,0,0,'0','0','2022-04-01 00:00:00.000',0,'2022-04-01 00:00:00.000','2022-03-10 13:35:32',NULL,1,0,1),(10949,10949,2,0,0,2,0,0,1,0,0,0.00,0.00,0,0,0,0,0.00,0,0,'0','0','2022-04-01 00:00:00.000',0,'2022-04-01 00:00:00.000','2022-03-10 13:35:32',NULL,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,
  `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 (10949,10949,1,'0',1,NULL,0,0,1,1,0,25.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-04-01 00:00:00.000',18,'2022-04-01 00:00:00.000',NULL,NULL,1,0,1),(10949,10949,1,'0',2,NULL,0,0,1,1,0,100.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-04-01 00:00:00.000',18,'2022-04-01 00:00:00.000',NULL,NULL,1,0,1),(11785,10949,2,'1',1,NULL,0,0,1,1,0,100.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-03-24 14:12:53.000',0,'2022-03-24 14:12:53.000','2022-03-24 14:12:53.000','2022-03-24 14:12:53.000',1,0,1),(11785,10949,2,'1',2,NULL,0,0,1,1,0,500.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-03-24 14:12:53.000',0,'2022-03-24 14:12:53.000','2022-03-24 14:12:53.000','2022-03-24 14:12:53.000',1,0,1),(92553,59951,2,'1',1,NULL,0,0,1,1,0,0.00,0.00,0,0,0,2,0.00,0,0,'0','0','2023-09-28 13:24:39.000',0,'2023-09-28 13:24:39.000','2023-09-28 13:24:39.000','2023-09-28 13:24:39.000',1,0,1),(92553,59951,2,'1',2,NULL,0,0,1,1,0,500.00,0.00,0,0,0,2,0.00,0,0,'0','0','2023-09-28 13:24:39.000',0,'2023-09-28 13:24:39.000','2023-09-28 13:24:39.000','2023-09-28 13:24:39.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,36973,0,18,'2022-11-18 11:22:26.000','2023-02-21 16:22:47.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 DEFAULT NULL,
  `UpdateDate` datetime 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_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,36973,0,18,'2022-11-22 10:52:37','2023-02-21 16:22:47',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 AUTO_INCREMENT=13 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 */;
INSERT INTO `tb_shared_proposal` VALUES (1,11455,10949,'6E-7184','IndiGo','2022-07-28 17:40:00','cf8a2-dc233-a41a4-0a965',6647.81,0,6647.81,6647.81,0,0,12736,'','aruna','8500962997','{\"FlightNumber\":\"6E-7184\",\"SegFlightNumberArr\":\"6E-7184\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"cf8a2-dc233-a41a4-0a965\",\"apiTraceId\":\"5-4019160574_4LKOIDR6E7184_23534110750757\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:40\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-07-28T17:40\",\"LocalFromTime\":\"2022-07-28 17:40\",\"FromUTCTime\":\"2022-07-28T17:40\",\"LocalToTime\":\"2022-07-28 19:40\",\"ToUTCTime\":\"2022-07-28T19:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 28 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":\"16028\",\"DestPlaceSysId\":\"12706\",\"SourceAirportCode\":\"LKO\",\"DestAirportCode\":\"IDR\",\"SourcePlaceName\":\"Lucknow\",\"DestPlaceName\":\"Indore\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6647.81,\"PublishedFareTxt\":\"6,648\",\"ApiResultIndex\":\"5-4019160574_4LKOIDR6E7184_23534110750757\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":5831,\"Tax\":842.7,\"YQTax\":0,\"OtherCharges\":825,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6673.7,\"PublishedFare\":6647.81,\"PublishedFareAgent\":6647.81,\"OfferedFareAgent\":6647.81,\"OfferedFare\":6618.31,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4019160574_4LKOIDR6E7184_23534110751327\",\"ApiResultIndex\":\"5-4019160574_4LKOIDR6E7184_23534110751327\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":3,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":55.39,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6647.81,\"CostToAgent\":6647.81,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":842.7,\"TotalBaseFare\":6673.7,\"BaseFareCal\":6622.81,\"BaseFare\":5831,\"CommissionEarned\":55.39,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":825,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":55.39,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6647.81,\"CostToAgent\":6647.81,\"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\":55.39,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":6647.81,\"CostToCustomer\":6647.81,\"BaseFareCal\":6622.81,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":6622.81,\"intOfferedFare\":6618.31,\"intPublishFare\":6673.7,\"TripjackMarkup\":0,\"TripjackCommission\":55.39,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":55.39,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6647.81,\"CostToAgent\":6647.81,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2022-07-28T19:40\",\"SegFlightNumber\":\"6E-7184\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2022-07-28T17:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"17:40\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-07-26 14:15:54','2022-07-26 14:15:54',0,0),(2,11455,10949,'AI-635','Air India','2022-08-05 09:25:00','e7adc-5be07-b1ede-244bf',5607.56,0,5607.56,5607.56,0,0,12736,'','aruna','8500962997','{\"FlightNumber\":\"AI-635\",\"SegFlightNumberArr\":\"AI-635\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e7adc-5be07-b1ede-244bf\",\"apiTraceId\":\"21-10-15-2-3376015976_1IDRDELAI635_83064807300117\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2022-08-05T09:25\",\"LocalFromTime\":\"2022-08-05 09:25\",\"FromUTCTime\":\"2022-08-05T09:25\",\"LocalToTime\":\"2022-08-05 11:10\",\"ToUTCTime\":\"2022-08-05T11:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Fri, 05 Aug\",\"ArrivalDateTxt\":\"Fri, 05 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"SourcePlaceName\":\"Indore\",\"DestPlaceName\":\"Delhi\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5607.56,\"PublishedFareTxt\":\"5,608\",\"ApiResultIndex\":\"21-10-15-2-3376015976_1IDRDELAI635_83064807300117\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4830,\"Tax\":1030.7,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5860.7,\"PublishedFare\":5607.56,\"PublishedFareAgent\":5607.56,\"OfferedFareAgent\":5607.56,\"OfferedFare\":5578.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3376015976_1IDRDELAI635_83064807300117\",\"ApiResultIndex\":\"21-10-15-2-3376015976_1IDRDELAI635_83064807300117\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":9,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":282.64,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5607.56,\"CostToAgent\":5607.56,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1030.7,\"TotalBaseFare\":5860.7,\"BaseFareCal\":5582.56,\"BaseFare\":4830,\"CommissionEarned\":282.64,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":593,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":282.64,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5607.56,\"CostToAgent\":5607.56,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":282.64,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":5607.56,\"CostToCustomer\":5607.56,\"BaseFareCal\":5582.56,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":5582.56,\"intOfferedFare\":5578.06,\"intPublishFare\":5860.7,\"TripjackMarkup\":0,\"TripjackCommission\":282.64,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":282.64,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5607.56,\"CostToAgent\":5607.56,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-05T11:10\",\"SegFlightNumber\":\"AI-635\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2022-08-05T09:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-08-04 09:44:02','2022-08-04 09:44:02',0,0),(3,11455,10949,'UK-914','Vistara','2022-08-05 08:05:00','e7adc-5be07-b1ede-244bf',6542.11,0,6542.11,6542.11,0,0,12736,'','aruna','8500962997','{\"FlightNumber\":\"UK-914\",\"SegFlightNumberArr\":\"UK-914\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e7adc-5be07-b1ede-244bf\",\"apiTraceId\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807304477\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-05T08:05\",\"LocalFromTime\":\"2022-08-05 08:05\",\"FromUTCTime\":\"2022-08-05T08:05\",\"LocalToTime\":\"2022-08-05 09:35\",\"ToUTCTime\":\"2022-08-05T09:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Fri, 05 Aug\",\"ArrivalDateTxt\":\"Fri, 05 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"SourcePlaceName\":\"Indore\",\"DestPlaceName\":\"Delhi\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6542.11,\"PublishedFareTxt\":\"6,542\",\"ApiResultIndex\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807304477\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":5768,\"Tax\":1035.7,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":295,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":6803.7,\"PublishedFare\":6542.11,\"PublishedFareAgent\":6542.11,\"OfferedFareAgent\":6542.11,\"OfferedFare\":6512.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807305147\",\"ApiResultIndex\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807305147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"fareIdentifierSP\":\"CORPORATE\",\"SeatAvailable\":9,\"classOfBooking\":\"Q\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1035.7,\"TotalBaseFare\":6803.7,\"BaseFareCal\":6517.11,\"BaseFare\":5768,\"CommissionEarned\":291.09,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":295,\"MFT\":2.7,\"OT\":593,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":291.09,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":6542.11,\"CostToCustomer\":6542.11,\"BaseFareCal\":6517.11,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":6517.11,\"intOfferedFare\":6512.61,\"intPublishFare\":6803.7,\"TripjackMarkup\":0,\"TripjackCommission\":291.09,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-05T09:35\",\"SegFlightNumber\":\"UK-914\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2022-08-05T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-08-04 09:45:25','2022-08-04 09:45:25',0,0),(4,11455,10949,'UK-914','Vistara','2022-08-05 08:05:00','e7adc-5be07-b1ede-244bf',6542.11,0,6542.11,6542.11,0,0,12736,'','aruna','8500962997','{\"FlightNumber\":\"UK-914\",\"SegFlightNumberArr\":\"UK-914\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e7adc-5be07-b1ede-244bf\",\"apiTraceId\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807304477\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-05T08:05\",\"LocalFromTime\":\"2022-08-05 08:05\",\"FromUTCTime\":\"2022-08-05T08:05\",\"LocalToTime\":\"2022-08-05 09:35\",\"ToUTCTime\":\"2022-08-05T09:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Fri, 05 Aug\",\"ArrivalDateTxt\":\"Fri, 05 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"SourcePlaceName\":\"Indore\",\"DestPlaceName\":\"Delhi\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6542.11,\"PublishedFareTxt\":\"6,542\",\"ApiResultIndex\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807304477\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":5768,\"Tax\":1035.7,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":295,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":6803.7,\"PublishedFare\":6542.11,\"PublishedFareAgent\":6542.11,\"OfferedFareAgent\":6542.11,\"OfferedFare\":6512.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807305147\",\"ApiResultIndex\":\"21-10-15-2-3376015976_2IDRDELUK914_83064807305147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"fareIdentifierSP\":\"CORPORATE\",\"SeatAvailable\":9,\"classOfBooking\":\"Q\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1035.7,\"TotalBaseFare\":6803.7,\"BaseFareCal\":6517.11,\"BaseFare\":5768,\"CommissionEarned\":291.09,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":295,\"MFT\":2.7,\"OT\":593,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":291.09,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":6542.11,\"CostToCustomer\":6542.11,\"BaseFareCal\":6517.11,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":6517.11,\"intOfferedFare\":6512.61,\"intPublishFare\":6803.7,\"TripjackMarkup\":0,\"TripjackCommission\":291.09,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":291.09,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6542.11,\"CostToAgent\":6542.11,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-05T09:35\",\"SegFlightNumber\":\"UK-914\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2022-08-05T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-08-04 09:45:58','2022-08-04 09:45:58',0,0),(5,11455,10949,'6E-5008','IndiGo','2022-08-05 12:15:00','e7adc-5be07-b1ede-244bf',7299.35,0,7299.35,7299.35,0,0,12736,'','aruna','8500962997','{\"FlightNumber\":\"6E-5008\",\"SegFlightNumberArr\":\"6E-5008\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e7adc-5be07-b1ede-244bf\",\"apiTraceId\":\"5-3376015976_0IDRDEL6E5008_83064397689114\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"13:45\",\"TravelDate\":\"2022-08-05T12:15\",\"LocalFromTime\":\"2022-08-05 12:15\",\"FromUTCTime\":\"2022-08-05T12:15\",\"LocalToTime\":\"2022-08-05 13:45\",\"ToUTCTime\":\"2022-08-05T13:45\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Fri, 05 Aug\",\"ArrivalDateTxt\":\"Fri, 05 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"SourcePlaceName\":\"Indore\",\"DestPlaceName\":\"Delhi\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7299.35,\"PublishedFareTxt\":\"7,299\",\"ApiResultIndex\":\"5-3376015976_0IDRDEL6E5008_83064397689114\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":6300,\"Tax\":1029.7,\"YQTax\":0,\"OtherCharges\":1012,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7329.7,\"PublishedFare\":7299.35,\"PublishedFareAgent\":7299.35,\"OfferedFareAgent\":7299.35,\"OfferedFare\":7269.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3376015976_0IDRDEL6E5008_83064397690064\",\"ApiResultIndex\":\"5-3376015976_0IDRDEL6E5008_83064397690064\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":9,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":59.85,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7299.35,\"CostToAgent\":7299.35,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1029.7,\"TotalBaseFare\":7329.7,\"BaseFareCal\":7274.35,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1012,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":59.85,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7299.35,\"CostToAgent\":7299.35,\"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\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":7299.35,\"CostToCustomer\":7299.35,\"BaseFareCal\":7274.35,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":7274.35,\"intOfferedFare\":7269.85,\"intPublishFare\":7329.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":59.85,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7299.35,\"CostToAgent\":7299.35,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-05T13:45\",\"SegFlightNumber\":\"6E-5008\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2022-08-05T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"13:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-08-04 09:47:00','2022-08-04 09:47:00',0,0),(6,11455,10949,'UK-898','Vistara','2022-09-10 07:30:00','3d83a-81502-99f9d-8db76',4510.91,0,4510.91,4510.91,0,0,12736,'','ARUNA','8500962997','{\"FlightNumber\":\"UK-898\",\"SegFlightNumberArr\":\"UK-898\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"3d83a-81502-99f9d-8db76\",\"apiTraceId\":\"21-10-15-2-1986110747_1HYDBLRUK898_51680072583759\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:30\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-09-10T07:30\",\"LocalFromTime\":\"2022-09-10 07:30\",\"FromUTCTime\":\"2022-09-10T07:30\",\"LocalToTime\":\"2022-09-10 08:45\",\"ToUTCTime\":\"2022-09-10T08:45\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sat, 10 Sep\",\"ArrivalDateTxt\":\"Sat, 10 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"12538\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"HYD\",\"DestAirportCode\":\"BLR\",\"SourcePlaceName\":\"Hyderabad\",\"DestPlaceName\":\"Bengaluru\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4510.91,\"PublishedFareTxt\":\"4,511\",\"ApiResultIndex\":\"21-10-15-2-1986110747_1HYDBLRUK898_51680072583759\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3570,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":803,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4705.7,\"PublishedFare\":4510.91,\"PublishedFareAgent\":4510.91,\"OfferedFareAgent\":4510.91,\"OfferedFare\":4481.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1986110747_1HYDBLRUK898_51680072584069\",\"ApiResultIndex\":\"21-10-15-2-1986110747_1HYDBLRUK898_51680072584069\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"fareIdentifierSP\":\"CORPORATE\",\"SeatAvailable\":9,\"classOfBooking\":\"O\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":224.29,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4510.91,\"CostToAgent\":4510.91,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"TotalBaseFare\":4705.7,\"BaseFareCal\":4485.91,\"BaseFare\":3570,\"CommissionEarned\":224.29,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":185,\"MFT\":2.7,\"OT\":803,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":4.5,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":25,\"GSTOnMarkUp\":4.5,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":224.29,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4510.91,\"CostToAgent\":4510.91,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":224.29,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":25,\"IntTaxOnAgencyFixMarkUp\":4.5,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":4.5,\"PublishFare\":4510.91,\"CostToCustomer\":4510.91,\"BaseFareCal\":4485.91,\"intCommisionEarnedForAgency\":25,\"CostToCompany\":4485.91,\"intOfferedFare\":4481.41,\"intPublishFare\":4705.7,\"TripjackMarkup\":0,\"TripjackCommission\":224.29,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":224.29,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4510.91,\"CostToAgent\":4510.91,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0}}],\"Segments\":[{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-10T08:45\",\"SegFlightNumber\":\"UK-898\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-09-10T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/partner.wowidays.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-09-08 12:41:41','2022-09-08 12:41:41',0,0),(7,38535,4539,'KL-878','Klm Royal Dutch Airlines','2022-12-21 04:05:00','1ca13-87d28-152d6-0bb8d',74360.7,0,74361,74361,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"KL-878\",\"SegFlightNumberArr\":\"KL-878, AF-3569\",\"AirlineName\":\"Klm Royal Dutch Airlines\",\"AirlineCode\":\"KL\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"AirlineSysId\":\"308\",\"DepartureTime\":\"04:05\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2022-12-21T04:05\",\"LocalFromTime\":\"2022-12-21 04:05\",\"FromUTCTime\":\"2022-12-21T04:05\",\"LocalToTime\":\"2022-12-21 17:15\",\"ToUTCTime\":\"2022-12-21T17:15\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Amsterdam\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Wed, 21 Dec\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":74360.7,\"PublishedFareTxt\":\"74,361\",\"ApiResultIndex\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/KL.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":42065,\"Tax\":32177.7,\"YQTax\":2538,\"OtherCharges\":6652,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":3180,\"CarrierMiscFee\":18990,\"MUFee\":800,\"intPublishedFare\":74242.7,\"PublishedFare\":74360.7,\"PublishedFareAgent\":74361,\"OfferedFareAgent\":74360.7,\"OfferedFare\":73442.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"ApiResultIndex\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"N\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":32177.7,\"TotalBaseFare\":74242.7,\"BaseFareCal\":73460.7,\"BaseFare\":42065,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":2538,\"AGST\":3180,\"MFT\":2.7,\"OT\":6652,\"MU\":800,\"YR\":18990,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":74360.7,\"CostToCustomer\":74360.7,\"BaseFareCal\":73460.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":73460.7,\"intOfferedFare\":73442.7,\"intPublishFare\":74242.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Schiphol Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amsterdam\",\"destinationCountryName\":\"Netherlands\",\"destinationAirportCode\":\"AMS\",\"destinationArrTime\":\"2022-12-21T09:10\",\"SegFlightNumber\":\"KL-878\",\"AirlineCode\":\"KL\",\"AirlineName\":\"KLM Royal Dutch Airlines\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T04:05\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":575,\"GroundTime\":230,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"04:05\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"9h 35m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Amsterdam\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/KL.gif\"},{\"originAirportName\":\"Schiphol Arpt\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"Amsterdam\",\"originCountryName\":\"Netherlands\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-21T17:15\",\"SegFlightNumber\":\"AF-3569\",\"AirlineCode\":\"AF\",\"AirlineName\":\"Air France\",\"FareClass\":\"N\",\"originAirportCode\":\"AMS\",\"originDepTime\":\"2022-12-21T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":615,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"10h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal B\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AF.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:04','2022-12-14 12:42:04',0,0),(8,38535,4539,'BA-138','British Airways','2022-12-21 02:10:00','1ca13-87d28-152d6-0bb8d',98972.7,0,98973,98973,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"BA-138\",\"SegFlightNumberArr\":\"BA-138, BA-2039\",\"AirlineName\":\"British Airways\",\"AirlineCode\":\"BA\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"AirlineSysId\":\"141\",\"DepartureTime\":\"02:10\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2022-12-21T02:10\",\"LocalFromTime\":\"2022-12-21 02:10\",\"FromUTCTime\":\"2022-12-21T02:10\",\"LocalToTime\":\"2022-12-21 17:50\",\"ToUTCTime\":\"2022-12-21T17:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"London\",\"GroundTime\":365,\"LAYOVERDuration\":\"6h 5m\",\"FlyingMinutes\":1570,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Wed, 21 Dec\",\"FlightDuration\":\"26h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":98972.7,\"PublishedFareTxt\":\"98,973\",\"ApiResultIndex\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":68845,\"Tax\":30009.7,\"YQTax\":17833,\"OtherCharges\":7025,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":4334,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":98854.7,\"PublishedFare\":98972.7,\"PublishedFareAgent\":98973,\"OfferedFareAgent\":98972.7,\"OfferedFare\":98054.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"ApiResultIndex\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":5,\"classOfBooking\":\"V\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":30009.7,\"TotalBaseFare\":98854.7,\"BaseFareCal\":98072.7,\"BaseFare\":68845,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":17833,\"AGST\":4334,\"MFT\":2.7,\"OT\":7025,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":98972.7,\"CostToCustomer\":98972.7,\"BaseFareCal\":98072.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":98072.7,\"intOfferedFare\":98054.7,\"intPublishFare\":98854.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Heathrow\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"London\",\"destinationCountryName\":\"United Kingdom\",\"destinationAirportCode\":\"LHR\",\"destinationArrTime\":\"2022-12-21T06:55\",\"SegFlightNumber\":\"BA-138\",\"AirlineCode\":\"BA\",\"AirlineName\":\"British Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T02:10\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":615,\"GroundTime\":365,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"02:10\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"10h 15m\",\"LAYOVERDuration\":\"6h 5m\",\"LAYOVERCity\":\"London\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 5\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\"},{\"originAirportName\":\"Gatwick Arpt\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"London\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-21T17:50\",\"SegFlightNumber\":\"BA-2039\",\"AirlineCode\":\"BA\",\"AirlineName\":\"British Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"LGW\",\"originDepTime\":\"2022-12-21T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":590,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"9h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal S\",\"ArrTerminal\":\"Terminal C\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:04','2022-12-14 12:42:04',0,0),(9,38535,4539,'DL-5944','Delta Air Lines','2022-12-21 12:00:00','1ca13-87d28-152d6-0bb8d',96286.7,0,96287,96287,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"DL-5944\",\"SegFlightNumberArr\":\"DL-5944, DL-5971\",\"AirlineName\":\"Delta Air Lines\",\"AirlineCode\":\"DL\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"AirlineSysId\":\"186\",\"DepartureTime\":\"12:00\",\"ArrivalTime\":\"16:40\",\"TravelDate\":\"2022-12-21T12:00\",\"LocalFromTime\":\"2022-12-21 12:00\",\"FromUTCTime\":\"2022-12-21T12:00\",\"LocalToTime\":\"2022-12-22 16:40\",\"ToUTCTime\":\"2022-12-22T16:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"London\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":2350,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"39h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":96286.7,\"PublishedFareTxt\":\"96,287\",\"ApiResultIndex\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":62370,\"Tax\":33798.7,\"YQTax\":0,\"OtherCharges\":9576,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":4085,\"CarrierMiscFee\":19320,\"MUFee\":800,\"intPublishedFare\":96168.7,\"PublishedFare\":96286.7,\"PublishedFareAgent\":96287,\"OfferedFareAgent\":96286.7,\"OfferedFare\":95368.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"ApiResultIndex\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"Q\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":33798.7,\"TotalBaseFare\":96168.7,\"BaseFareCal\":95386.7,\"BaseFare\":62370,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":4085,\"MFT\":2.7,\"OT\":9576,\"MU\":800,\"YR\":19320,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":96286.7,\"CostToCustomer\":96286.7,\"BaseFareCal\":95386.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":95386.7,\"intOfferedFare\":95368.7,\"intPublishFare\":96168.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Heathrow\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"London\",\"destinationCountryName\":\"United Kingdom\",\"destinationAirportCode\":\"LHR\",\"destinationArrTime\":\"2022-12-21T16:35\",\"SegFlightNumber\":\"DL-5944\",\"AirlineCode\":\"DL\",\"AirlineName\":\"Delta Air Lines\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T12:00\",\"TripIndicator\":\"\",\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":605,\"GroundTime\":1135,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:00\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"10h 5m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"London\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\"},{\"originAirportName\":\"Heathrow\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"London\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-22T16:40\",\"SegFlightNumber\":\"DL-5971\",\"AirlineCode\":\"DL\",\"AirlineName\":\"Delta Air Lines\",\"FareClass\":\"Q\",\"originAirportCode\":\"LHR\",\"originDepTime\":\"2022-12-22T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":610,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"10h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal A\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:04','2022-12-14 12:42:04',0,0),(10,38535,4539,'KL-878','Klm Royal Dutch Airlines','2022-12-21 04:05:00','1ca13-87d28-152d6-0bb8d',74360.7,0,74361,74361,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"KL-878\",\"SegFlightNumberArr\":\"KL-878, AF-3569\",\"AirlineName\":\"Klm Royal Dutch Airlines\",\"AirlineCode\":\"KL\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"AirlineSysId\":\"308\",\"DepartureTime\":\"04:05\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2022-12-21T04:05\",\"LocalFromTime\":\"2022-12-21 04:05\",\"FromUTCTime\":\"2022-12-21T04:05\",\"LocalToTime\":\"2022-12-21 17:15\",\"ToUTCTime\":\"2022-12-21T17:15\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Amsterdam\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Wed, 21 Dec\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":74360.7,\"PublishedFareTxt\":\"74,361\",\"ApiResultIndex\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/KL.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":42065,\"Tax\":32177.7,\"YQTax\":2538,\"OtherCharges\":6652,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":3180,\"CarrierMiscFee\":18990,\"MUFee\":800,\"intPublishedFare\":74242.7,\"PublishedFare\":74360.7,\"PublishedFareAgent\":74361,\"OfferedFareAgent\":74360.7,\"OfferedFare\":73442.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"ApiResultIndex\":\"12-15-2-10-3761029798_0BOMAMSKL878AMSMCOAF3569_106657499223764\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"N\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":32177.7,\"TotalBaseFare\":74242.7,\"BaseFareCal\":73460.7,\"BaseFare\":42065,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":2538,\"AGST\":3180,\"MFT\":2.7,\"OT\":6652,\"MU\":800,\"YR\":18990,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":74360.7,\"CostToCustomer\":74360.7,\"BaseFareCal\":73460.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":73460.7,\"intOfferedFare\":73442.7,\"intPublishFare\":74242.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":74360.7,\"CostToAgent\":74360.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Schiphol Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amsterdam\",\"destinationCountryName\":\"Netherlands\",\"destinationAirportCode\":\"AMS\",\"destinationArrTime\":\"2022-12-21T09:10\",\"SegFlightNumber\":\"KL-878\",\"AirlineCode\":\"KL\",\"AirlineName\":\"KLM Royal Dutch Airlines\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T04:05\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":575,\"GroundTime\":230,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"04:05\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"9h 35m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Amsterdam\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/KL.gif\"},{\"originAirportName\":\"Schiphol Arpt\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"Amsterdam\",\"originCountryName\":\"Netherlands\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-21T17:15\",\"SegFlightNumber\":\"AF-3569\",\"AirlineCode\":\"AF\",\"AirlineName\":\"Air France\",\"FareClass\":\"N\",\"originAirportCode\":\"AMS\",\"originDepTime\":\"2022-12-21T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":615,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"10h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal B\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AF.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:09','2022-12-14 12:42:09',0,0),(11,38535,4539,'BA-138','British Airways','2022-12-21 02:10:00','1ca13-87d28-152d6-0bb8d',98972.7,0,98973,98973,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"BA-138\",\"SegFlightNumberArr\":\"BA-138, BA-2039\",\"AirlineName\":\"British Airways\",\"AirlineCode\":\"BA\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"AirlineSysId\":\"141\",\"DepartureTime\":\"02:10\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2022-12-21T02:10\",\"LocalFromTime\":\"2022-12-21 02:10\",\"FromUTCTime\":\"2022-12-21T02:10\",\"LocalToTime\":\"2022-12-21 17:50\",\"ToUTCTime\":\"2022-12-21T17:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"London\",\"GroundTime\":365,\"LAYOVERDuration\":\"6h 5m\",\"FlyingMinutes\":1570,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Wed, 21 Dec\",\"FlightDuration\":\"26h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":98972.7,\"PublishedFareTxt\":\"98,973\",\"ApiResultIndex\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":68845,\"Tax\":30009.7,\"YQTax\":17833,\"OtherCharges\":7025,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":4334,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":98854.7,\"PublishedFare\":98972.7,\"PublishedFareAgent\":98973,\"OfferedFareAgent\":98972.7,\"OfferedFare\":98054.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"ApiResultIndex\":\"12-15-2-10-3761029798_19BOMLHRBA138LGWMCOBA2039_106657499311394\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":5,\"classOfBooking\":\"V\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":30009.7,\"TotalBaseFare\":98854.7,\"BaseFareCal\":98072.7,\"BaseFare\":68845,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":17833,\"AGST\":4334,\"MFT\":2.7,\"OT\":7025,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":98972.7,\"CostToCustomer\":98972.7,\"BaseFareCal\":98072.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":98072.7,\"intOfferedFare\":98054.7,\"intPublishFare\":98854.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":98972.7,\"CostToAgent\":98972.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Heathrow\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"London\",\"destinationCountryName\":\"United Kingdom\",\"destinationAirportCode\":\"LHR\",\"destinationArrTime\":\"2022-12-21T06:55\",\"SegFlightNumber\":\"BA-138\",\"AirlineCode\":\"BA\",\"AirlineName\":\"British Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T02:10\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":615,\"GroundTime\":365,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"02:10\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"10h 15m\",\"LAYOVERDuration\":\"6h 5m\",\"LAYOVERCity\":\"London\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 5\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\"},{\"originAirportName\":\"Gatwick Arpt\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"London\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-21T17:50\",\"SegFlightNumber\":\"BA-2039\",\"AirlineCode\":\"BA\",\"AirlineName\":\"British Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"LGW\",\"originDepTime\":\"2022-12-21T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"2 Unit(s)\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":590,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"9h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal S\",\"ArrTerminal\":\"Terminal C\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/BA.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:09','2022-12-14 12:42:09',0,0),(12,38535,4539,'DL-5944','Delta Air Lines','2022-12-21 12:00:00','1ca13-87d28-152d6-0bb8d',96286.7,0,96287,96287,0,0,40523,'test2@yopmail.com','mateen','9988776655','{\"FlightNumber\":\"DL-5944\",\"SegFlightNumberArr\":\"DL-5944, DL-5971\",\"AirlineName\":\"Delta Air Lines\",\"AirlineCode\":\"DL\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"1ca13-87d28-152d6-0bb8d\",\"apiTraceId\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"AirlineSysId\":\"186\",\"DepartureTime\":\"12:00\",\"ArrivalTime\":\"16:40\",\"TravelDate\":\"2022-12-21T12:00\",\"LocalFromTime\":\"2022-12-21 12:00\",\"FromUTCTime\":\"2022-12-21T12:00\",\"LocalToTime\":\"2022-12-22 16:40\",\"ToUTCTime\":\"2022-12-22T16:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"London\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":2350,\"DepartureDateTxt\":\"Wed, 21 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"39h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20252\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MCO\",\"SourcePlaceName\":\"Mumbai\",\"DestPlaceName\":\"Orlando\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":96286.7,\"PublishedFareTxt\":\"96,287\",\"ApiResultIndex\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":62370,\"Tax\":33798.7,\"YQTax\":0,\"OtherCharges\":9576,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":4085,\"CarrierMiscFee\":19320,\"MUFee\":800,\"intPublishedFare\":96168.7,\"PublishedFare\":96286.7,\"PublishedFareAgent\":96287,\"OfferedFareAgent\":96286.7,\"OfferedFare\":95368.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"ApiResultIndex\":\"12-15-2-10-3761029798_54BOMLHRDL5944LHRMCODL5971_106657499437810\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"Q\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":33798.7,\"TotalBaseFare\":96168.7,\"BaseFareCal\":95386.7,\"BaseFare\":62370,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":4085,\"MFT\":2.7,\"OT\":9576,\"MU\":800,\"YR\":19320,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":140.0338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.0338983050848,\"PublishFare\":96286.7,\"CostToCustomer\":96286.7,\"BaseFareCal\":95386.7,\"intCommisionEarnedForAgency\":900,\"CostToCompany\":95386.7,\"intOfferedFare\":95368.7,\"intPublishFare\":96168.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":96286.7,\"CostToAgent\":96286.7,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"TaxSettingDetail\":{\"TaxName\":\"GST On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Heathrow\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"London\",\"destinationCountryName\":\"United Kingdom\",\"destinationAirportCode\":\"LHR\",\"destinationArrTime\":\"2022-12-21T16:35\",\"SegFlightNumber\":\"DL-5944\",\"AirlineCode\":\"DL\",\"AirlineName\":\"Delta Air Lines\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-21T12:00\",\"TripIndicator\":\"\",\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":605,\"GroundTime\":1135,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:00\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"10h 5m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"London\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\"},{\"originAirportName\":\"Heathrow\",\"destinationAirportName\":\"Orlando Intl Arpt\",\"originCityName\":\"London\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Orlando\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"MCO\",\"destinationArrTime\":\"2022-12-22T16:40\",\"SegFlightNumber\":\"DL-5971\",\"AirlineCode\":\"DL\",\"AirlineName\":\"Delta Air Lines\",\"FareClass\":\"Q\",\"originAirportCode\":\"LHR\",\"originDepTime\":\"2022-12-22T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":610,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"10h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal A\",\"filePath\":\"https:\\/\\/corporate.atlas.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/DL.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-12-14 12:42:09','2022-12-14 12:42:09',0,0);
/*!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 AUTO_INCREMENT=12 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 */;
INSERT INTO `tb_tbb2c_contactus_address` VALUES (9,'Delhi','1','0'),(10,'Mumbai','1','0'),(11,'Hyderabad','1','0');
/*!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=441 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,106356,NULL,NULL,NULL,'ST. PETERSBURG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Russia','507',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,102345,NULL,NULL,NULL,'MELBOURNE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,100492,NULL,NULL,NULL,'NICE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,100183,NULL,NULL,NULL,'EDINBURGH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,98584,NULL,NULL,NULL,'AGRA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,89816,NULL,NULL,NULL,'KYLEMORE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,85207,NULL,NULL,NULL,'OXFORD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Zealand','157',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,84288,NULL,NULL,NULL,'ZURICH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Netherlands','154',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,82588,NULL,NULL,NULL,'PEMBROKE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malta','135',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,79321,NULL,NULL,NULL,'CAPPADOCIA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,75835,NULL,NULL,NULL,'COLOGNE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,74406,1,NULL,NULL,'AGRA',0,NULL,NULL,1,NULL,NULL,'12_1682676501.jpg','12_1682676501.jpg','Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(13,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,71771,0,NULL,NULL,'ANDAMAN AND NICOBAR ISLANDS',0,NULL,NULL,1,NULL,NULL,'13_1682676597.jpg','13_1682676597.jpg','India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,69426,NULL,NULL,NULL,'BALI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,60911,NULL,NULL,NULL,'COLOGNE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,54547,NULL,NULL,NULL,'BRUGES',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,43937,NULL,NULL,NULL,'LILLE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Belgium','21',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,43518,NULL,NULL,NULL,'ZUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,42504,NULL,NULL,NULL,'MALTA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,42200,NULL,NULL,NULL,'STIRLING',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,42111,NULL,NULL,NULL,'AMIENS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,42042,NULL,NULL,NULL,'NORWAY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,41134,NULL,NULL,NULL,'SALISBURY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,41083,NULL,NULL,NULL,'NATIONAL PARK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,40979,NULL,NULL,NULL,'DENMARK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,40958,NULL,NULL,NULL,'YORK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,40678,NULL,NULL,NULL,'CARDIFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,38421,NULL,NULL,NULL,'Dholavira',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37783,NULL,NULL,NULL,'AlJouf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37408,NULL,NULL,NULL,'ALULA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37782,NULL,NULL,NULL,'Qassim',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37443,NULL,NULL,NULL,'Kyiv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ukraine','227',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37424,NULL,NULL,NULL,'Zlatibor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Serbia','468',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37423,NULL,NULL,NULL,'Mokra gora',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Serbia','468',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37421,NULL,NULL,NULL,'KARLOVCI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Serbia','468',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37409,NULL,NULL,NULL,'Al Ula',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37407,NULL,NULL,NULL,'Hufof',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37069,NULL,NULL,NULL,'Mawlynnong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37030,NULL,0,NULL,'Andaman Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37010,NULL,NULL,NULL,'South Goa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,37009,NULL,NULL,NULL,'North Goa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36832,NULL,NULL,NULL,'Serengeti',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36819,NULL,NULL,NULL,'Doodhpathri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36773,NULL,NULL,NULL,'Kevadia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36764,NULL,NULL,NULL,'Budva',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MONTENEGRO','466',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36592,NULL,NULL,NULL,'Mehsana',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36513,NULL,NULL,NULL,'Dawki',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36491,NULL,NULL,NULL,'Mawsynram',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36425,NULL,NULL,NULL,'York',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,36151,NULL,NULL,NULL,'Naivasha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kenya','113',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,35588,NULL,NULL,NULL,'St petersburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Russia','507',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,2423,NULL,NULL,NULL,'Vadodara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,30548,NULL,NULL,NULL,'Zurich',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,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-12-14 19:50:11','2022-12-14 19:50:11',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),(55,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30417,NULL,NULL,NULL,'Zaragoza',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,34200,NULL,NULL,NULL,'Zanzibar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,30373,NULL,NULL,NULL,'Zagreb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,30364,NULL,NULL,NULL,'Zadar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,30293,NULL,NULL,NULL,'York',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29412,NULL,NULL,NULL,'Wayanad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29388,NULL,NULL,NULL,'Wattens',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29356,NULL,NULL,NULL,'Waterford',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29355,NULL,NULL,NULL,'Waterford',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29352,NULL,NULL,NULL,'Waterberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,34021,NULL,NULL,NULL,'Warwick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29328,NULL,NULL,NULL,'Warwick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,NULL,NULL,29327,NULL,NULL,NULL,'Warwick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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),(68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,29066,NULL,NULL,NULL,'Voss',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Norway','164',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29006,NULL,NULL,NULL,'Vlore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,29005,NULL,NULL,NULL,'Vlora Valona',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28927,NULL,NULL,NULL,'Vinnica',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ukraine','227',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28729,NULL,NULL,NULL,'Vienna',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28668,NULL,NULL,NULL,'Vevey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28575,NULL,NULL,NULL,'Venice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28574,NULL,NULL,NULL,'Venice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28359,NULL,NULL,NULL,'Valencia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28356,NULL,NULL,NULL,'Valencia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28303,NULL,NULL,NULL,'Vadodara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,28058,NULL,NULL,NULL,'Udaipur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,27969,NULL,NULL,NULL,'Turkey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,27967,NULL,NULL,NULL,'Turin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,34288,NULL,NULL,NULL,'Trivandrum',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,27345,NULL,NULL,NULL,'Tirana',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,27156,NULL,NULL,NULL,'Thekkady',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,27116,NULL,NULL,NULL,'Tezpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,34557,NULL,NULL,NULL,'Tawang',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26873,NULL,NULL,NULL,'Tashkent',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uzbekistan','232',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26811,NULL,NULL,NULL,'Tarangire',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26636,NULL,NULL,NULL,'Taif',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,NULL,NULL,26596,NULL,NULL,NULL,'Tabuk',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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),(91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26541,NULL,NULL,NULL,'Sydney',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26381,NULL,NULL,NULL,'Sun City',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26286,NULL,NULL,NULL,'Stuttgart',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26285,NULL,NULL,NULL,'Stuttgart',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26211,NULL,NULL,NULL,'Stratford Upon Avon',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26205,NULL,NULL,NULL,'Strasbourg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,35531,NULL,NULL,NULL,'Stockholm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sweden','209',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,26114,NULL,NULL,NULL,'Stirling',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25924,NULL,NULL,NULL,'St. Petersburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Russian Federation','181',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,33738,NULL,NULL,NULL,'St. Petersburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,33649,NULL,NULL,NULL,'St Petersburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Russian Federation','181',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25897,NULL,NULL,NULL,'Srinagar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25862,NULL,NULL,NULL,'Split',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25681,NULL,NULL,NULL,'Sorrento',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25651,NULL,NULL,NULL,'Sonmarg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25546,NULL,NULL,NULL,'Sofia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bulgaria','34',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25504,NULL,NULL,NULL,'Snowdonia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25410,NULL,NULL,NULL,'Skopje',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Macedonia','129',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25305,NULL,NULL,NULL,'Siofok',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hungary','99',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25278,NULL,NULL,NULL,'Singapore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Singapore','190',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,1,NULL,NULL,NULL,'Shimla',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,25073,NULL,NULL,NULL,'Shillong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,35295,NULL,NULL,NULL,'Sham Valley',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24918,NULL,NULL,NULL,'Seville',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24496,NULL,NULL,NULL,'Schaffhausen',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,34461,NULL,NULL,NULL,'Sarchu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24302,NULL,NULL,NULL,'Saranda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24299,NULL,NULL,NULL,'Sarajevo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bosnia and Herzegowina','27',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24264,NULL,NULL,NULL,'Santorini',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,33155,NULL,NULL,NULL,'San Remo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24061,NULL,NULL,NULL,'Samarkand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uzbekistan','232',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,35528,NULL,NULL,NULL,'Salzburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24055,NULL,NULL,NULL,'Salzburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,24007,NULL,NULL,NULL,'Salisbury',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23965,NULL,NULL,NULL,'Salamanca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23964,NULL,NULL,NULL,'Salamanca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,32890,NULL,NULL,NULL,'Saint-jean D\'illac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23361,NULL,NULL,NULL,'Rouen',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,32754,NULL,NULL,NULL,'Rome',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23193,NULL,NULL,NULL,'Roma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23057,NULL,NULL,NULL,'Riyadh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,23016,NULL,NULL,NULL,'Riquewihr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22839,NULL,NULL,NULL,'Reykjavik',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Iceland','100',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22593,NULL,NULL,NULL,'Ranthambore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22582,NULL,NULL,NULL,'Ranikhet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22260,NULL,NULL,NULL,'Puri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22094,NULL,NULL,NULL,'Pretoria',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,22026,NULL,NULL,NULL,'Prague',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Czech Republic','58',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11',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,21930,NULL,NULL,NULL,'Portugalete',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(140,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32511,NULL,NULL,NULL,'Port Blair',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(141,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34379,NULL,NULL,NULL,'Pokhran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(142,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-12-14 19:50:12','2022-12-14 19:50: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),(143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21629,NULL,NULL,NULL,'Plzen',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Czech Republic','58',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(144,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-12-14 19:50:12','2022-12-14 19:50: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),(145,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21624,NULL,NULL,NULL,'Plymouth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21598,NULL,NULL,NULL,'Plitvice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(147,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-12-14 19:50:12','2022-12-14 19:50: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),(148,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-12-14 19:50:12','2022-12-14 19:50: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),(149,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-12-14 19:50:12','2022-12-14 19:50: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),(150,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-12-14 19:50:12','2022-12-14 19:50: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),(151,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21059,NULL,NULL,NULL,'Pembroke',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(152,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-12-14 19:50:12','2022-12-14 19:50: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),(153,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34480,NULL,NULL,NULL,'Pavagadh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(154,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-12-14 19:50:12','2022-12-14 19:50: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),(155,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-12-14 19:50:12','2022-12-14 19:50: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),(156,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-12-14 19:50:12','2022-12-14 19:50: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),(157,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-12-14 19:50:12','2022-12-14 19:50: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),(158,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-12-14 19:50:12','2022-12-14 19:50: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),(159,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-12-14 19:50:12','2022-12-14 19:50: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),(160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20685,NULL,NULL,NULL,'Pamplona',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(161,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-12-14 19:50:12','2022-12-14 19:50: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),(162,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-12-14 19:50:12','2022-12-14 19:50: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),(163,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-12-14 19:50:12','2022-12-14 19:50: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),(164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20495,NULL,NULL,NULL,'Oxford',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(165,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20314,NULL,NULL,NULL,'Oslo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Norway','164',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20236,NULL,NULL,NULL,'Orient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20161,NULL,NULL,NULL,'Ooty',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(168,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19969,NULL,NULL,NULL,'Ohrid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Macedonia','129',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19932,NULL,NULL,NULL,'Odessa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ukraine','227',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19931,NULL,NULL,NULL,'Odessa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19868,NULL,NULL,NULL,'Obernai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(172,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-12-14 19:50:12','2022-12-14 19:50: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),(173,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19773,NULL,NULL,NULL,'Numbrecht',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(174,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-12-14 19:50:12','2022-12-14 19:50: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),(175,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19722,NULL,NULL,NULL,'Novi Sad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Serbia','468',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19685,NULL,NULL,NULL,'Norway',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19391,NULL,NULL,NULL,'Nice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19377,NULL,NULL,NULL,'Ngorongoro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(179,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-12-14 19:50:12','2022-12-14 19:50: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),(180,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-12-14 19:50:12','2022-12-14 19:50: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),(181,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32077,NULL,NULL,NULL,'National Park',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Zealand','157',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(182,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18987,NULL,NULL,NULL,'Naples',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18986,NULL,NULL,NULL,'Naples',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(184,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18894,NULL,NULL,NULL,'Nairobi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kenya','113',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(185,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18892,NULL,NULL,NULL,'Nainital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18876,NULL,NULL,NULL,'Nagpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18821,NULL,NULL,NULL,'Mysore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(188,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18804,NULL,NULL,NULL,'Mykonos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(189,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-12-14 19:50:12','2022-12-14 19:50: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),(190,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-12-14 19:50:12','2022-12-14 19:50: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),(191,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18676,NULL,NULL,NULL,'Mumbai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(192,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18488,NULL,NULL,NULL,'Moscow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Russian Federation','181',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(193,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18487,NULL,NULL,NULL,'Moscow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(194,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-12-14 19:50:12','2022-12-14 19:50: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),(195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18262,NULL,NULL,NULL,'Monticiano',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18208,NULL,NULL,NULL,'Montenegro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'MONTENEGRO','466',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18177,NULL,NULL,NULL,'Montecatini',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18174,NULL,NULL,NULL,'Montecarlo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18026,NULL,NULL,NULL,'Moncalieri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18014,NULL,NULL,NULL,'Monaco',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Monaco','145',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18013,NULL,NULL,NULL,'Monaco',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(202,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-12-14 19:50:12','2022-12-14 19:50: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),(203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35383,NULL,NULL,NULL,'Melbourne',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17007,NULL,NULL,NULL,'Masai Mara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kenya','113',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16946,NULL,NULL,NULL,'Marseille',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(206,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-12-14 19:50:12','2022-12-14 19:50: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),(207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16563,NULL,NULL,NULL,'Malta',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malta','135',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16562,NULL,NULL,NULL,'Malta',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(209,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-12-14 19:50:12','2022-12-14 19:50: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),(210,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-12-14 19:50:12','2022-12-14 19:50: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),(211,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-12-14 19:50:12','2022-12-14 19:50: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),(212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16480,NULL,NULL,NULL,'Malaga',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16463,NULL,NULL,NULL,'Makkah',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(214,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16375,NULL,NULL,NULL,'Mahabaleshwar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(215,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16319,NULL,NULL,NULL,'Madurai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16314,NULL,NULL,NULL,'Madrid',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(217,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16301,NULL,NULL,NULL,'Madina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16241,NULL,NULL,NULL,'Macedonia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(219,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16195,NULL,NULL,NULL,'Lyons-la-foret',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(220,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16164,NULL,NULL,NULL,'Lviv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ukraine','227',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(221,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-12-14 19:50:12','2022-12-14 19:50: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),(222,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16050,NULL,NULL,NULL,'Lugagnano',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(223,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-12-14 19:50:12','2022-12-14 19:50: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),(224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15952,NULL,NULL,NULL,'Lourdes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34481,NULL,NULL,NULL,'Lothal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(226,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-12-14 19:50:12','2022-12-14 19:50: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),(227,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-12-14 19:50:12','2022-12-14 19:50: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),(228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15833,NULL,NULL,NULL,'Lonavala',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(229,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15682,NULL,NULL,NULL,'Ljubljana',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Slovenia','192',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(230,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15610,NULL,NULL,NULL,'Lisbon',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(231,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-12-14 19:50:12','2022-12-14 19:50: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),(232,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-12-14 19:50:12','2022-12-14 19:50: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),(233,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15525,NULL,NULL,NULL,'Limerick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(234,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-12-14 19:50:12','2022-12-14 19:50: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),(235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15502,NULL,NULL,NULL,'Lille',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(236,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15230,NULL,NULL,NULL,'Lehi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(237,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-12-14 19:50:12','2022-12-14 19:50: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),(238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15202,NULL,NULL,NULL,'Leeds',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15201,NULL,NULL,NULL,'Leeds',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14817,NULL,NULL,NULL,'Lake Manyara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(241,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-12-14 19:50:12','2022-12-14 19:50: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),(242,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14812,NULL,NULL,NULL,'Lake Bled - Julian Alps',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Slovenia','192',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(243,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-12-14 19:50:12','2022-12-14 19:50: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),(244,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-12-14 19:50:12','2022-12-14 19:50: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),(245,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-12-14 19:50:12','2022-12-14 19:50: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),(246,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-12-14 19:50:12','2022-12-14 19:50: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),(247,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31462,NULL,NULL,NULL,'La Rochelle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31283,NULL,NULL,NULL,'La Ciotat',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(249,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-12-14 19:50:12','2022-12-14 19:50: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),(250,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14622,NULL,NULL,NULL,'Kusadasi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(251,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-12-14 19:50:12','2022-12-14 19:50: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),(252,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14570,NULL,NULL,NULL,'Kullu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(253,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34441,NULL,NULL,NULL,'Kufri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(254,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30568,NULL,NULL,NULL,'Kuala Lumpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malaysia','132',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14527,NULL,NULL,NULL,'Kruja',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14466,NULL,NULL,NULL,'Krabi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thailand','215',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(257,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-12-14 19:50:12','2022-12-14 19:50: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),(258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14384,NULL,NULL,NULL,'Korcula',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(259,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-12-14 19:50:12','2022-12-14 19:50: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),(260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34291,NULL,NULL,NULL,'Konark',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14277,NULL,NULL,NULL,'Kodaikanal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(262,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-12-14 19:50:12','2022-12-14 19:50: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),(263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14261,NULL,NULL,NULL,'Knysna',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(264,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-12-14 19:50:12','2022-12-14 19:50: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),(265,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-12-14 19:50:12','2022-12-14 19:50: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),(266,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14005,NULL,NULL,NULL,'Kilimanjaro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13954,NULL,NULL,NULL,'Khiva',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uzbekistan','232',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(268,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-12-14 19:50:12','2022-12-14 19:50: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),(269,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-12-14 19:50:12','2022-12-14 19:50: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),(270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13589,NULL,NULL,NULL,'Karlsruhe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13569,NULL,NULL,NULL,'Kargil',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13557,NULL,NULL,NULL,'Karatu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13520,NULL,NULL,NULL,'Kanyakumari',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13514,NULL,NULL,NULL,'Kannur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(275,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-12-14 19:50:12','2022-12-14 19:50: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),(276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13384,NULL,NULL,NULL,'Kalambaka',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(277,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13292,NULL,NULL,NULL,'Jungfraujoch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(278,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-12-14 19:50:12','2022-12-14 19:50: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),(279,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-12-14 19:50:12','2022-12-14 19:50: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),(280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12996,NULL,NULL,NULL,'Jaisalmer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(281,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-12-14 19:50:12','2022-12-14 19:50: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),(282,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12971,NULL,NULL,NULL,'Jabalpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(283,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-12-14 19:50:12','2022-12-14 19:50: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),(284,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12783,NULL,NULL,NULL,'Ioannina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(285,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-12-14 19:50:12','2022-12-14 19:50: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),(286,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12774,NULL,NULL,NULL,'Inverness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(287,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-12-14 19:50:12','2022-12-14 19:50: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),(288,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-12-14 19:50:12','2022-12-14 19:50: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),(289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31137,NULL,NULL,NULL,'Iceland',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Iceland','100',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12523,NULL,NULL,NULL,'Hvar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11878,NULL,NULL,NULL,'Heppenheim',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11834,NULL,NULL,NULL,'Helsinki',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Finland','75',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11778,NULL,NULL,NULL,'Heidelberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(294,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11777,NULL,NULL,NULL,'Heidelberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11776,NULL,NULL,NULL,'Heidelberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11751,NULL,NULL,NULL,'Heathrow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11750,NULL,NULL,NULL,'Heathrow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(298,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-12-14 19:50:12','2022-12-14 19:50: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),(299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11334,NULL,NULL,NULL,'Hail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(300,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-12-14 19:50:12','2022-12-14 19:50: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),(301,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-12-14 19:50:12','2022-12-14 19:50: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),(302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10913,NULL,NULL,NULL,'Greece',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10810,NULL,NULL,NULL,'Granada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10681,NULL,NULL,NULL,'Gopalpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10616,NULL,NULL,NULL,'Gold Coast',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(306,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10576,1,1,NULL,'Goa',0,NULL,NULL,1,NULL,NULL,'306_1686229737.jpg','306_1686229737.jpg','India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(307,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-12-14 19:50:12','2022-12-14 19:50: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),(308,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-12-14 19:50:12','2022-12-14 19:50: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),(309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10388,NULL,NULL,NULL,'Gibraltar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10291,NULL,NULL,NULL,'Genval',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Belgium','21',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10289,NULL,NULL,NULL,'Genting Highlands',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malaysia','132',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(312,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-12-14 19:50:12','2022-12-14 19:50: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),(313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10245,NULL,NULL,NULL,'Geiranger',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Norway','164',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(314,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10243,NULL,NULL,NULL,'Geilo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Norway','164',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(315,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-12-14 19:50:12','2022-12-14 19:50: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),(316,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9833,NULL,NULL,NULL,'Frejus',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(317,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9822,NULL,NULL,NULL,'Freiburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(318,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-12-14 19:50:12','2022-12-14 19:50: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),(319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31036,NULL,NULL,NULL,'Forte Dei Marmi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(320,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-12-14 19:50:12','2022-12-14 19:50: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),(321,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9543,NULL,NULL,NULL,'Florence',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(322,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9363,NULL,NULL,NULL,'Ferrara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(323,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9073,NULL,NULL,NULL,'Evron',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(324,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-12-14 19:50:12','2022-12-14 19:50: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),(325,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-12-14 19:50:12','2022-12-14 19:50: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),(326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8366,NULL,NULL,NULL,'Durres',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8231,NULL,NULL,NULL,'Dubrovnik',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Croatia','55',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8223,NULL,NULL,NULL,'Dublin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(329,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-12-14 19:50:12','2022-12-14 19:50: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),(330,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8219,NULL,1,NULL,'Dubai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'United Arab Emirates','228',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(331,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8178,NULL,NULL,NULL,'Dresden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(332,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8177,NULL,NULL,NULL,'Dresden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7966,NULL,NULL,NULL,'Djibouti',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Djibouti','60',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(334,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-12-14 19:50:12','2022-12-14 19:50: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),(335,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-12-14 19:50:12','2022-12-14 19:50: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),(336,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-12-14 19:50:12','2022-12-14 19:50: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),(337,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7556,0,0,NULL,'Darjeeling',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(338,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-12-14 19:50:12','2022-12-14 19:50: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),(339,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30733,NULL,NULL,NULL,'Costa Del Sol',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6917,0,NULL,NULL,'Corbett',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(341,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6889,NULL,NULL,NULL,'Copenhagen',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Denmark','59',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(342,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6879,NULL,NULL,NULL,'Coorg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(343,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6871,NULL,NULL,NULL,'Coonoor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(344,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6681,NULL,NULL,NULL,'Cologny',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(345,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6679,NULL,NULL,NULL,'Cologne',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(346,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6675,NULL,NULL,NULL,'Colmar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(347,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6609,NULL,1,NULL,'Coimbatore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(348,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-12-14 19:50:12','2022-12-14 19:50: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),(349,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-12-14 19:50:12','2022-12-14 19:50: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),(350,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-12-14 19:50:12','2022-12-14 19:50: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),(351,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-12-14 19:50:12','2022-12-14 19:50: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),(352,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-12-14 19:50:12','2022-12-14 19:50: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),(353,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5899,NULL,NULL,NULL,'Chateau-d\'oex',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(354,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5898,NULL,NULL,NULL,'Chateau-d\'oex',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(355,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-12-14 19:50:12','2022-12-14 19:50: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),(356,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34479,NULL,NULL,NULL,'Champaner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(357,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5735,NULL,NULL,NULL,'Chamonix',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(358,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-12-14 19:50:12','2022-12-14 19:50: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),(359,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-12-14 19:50:12','2022-12-14 19:50: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),(360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5069,NULL,NULL,NULL,'Cape Town',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(361,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5005,NULL,NULL,NULL,'Cannes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(362,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4693,NULL,NULL,NULL,'Cairns',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(363,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-12-14 19:50:12','2022-12-14 19:50: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),(364,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-12-14 19:50:12','2022-12-14 19:50: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),(365,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4410,NULL,NULL,NULL,'Bukhara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uzbekistan','232',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(366,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4361,NULL,NULL,NULL,'Budapest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hungary','99',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(367,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-12-14 19:50:12','2022-12-14 19:50: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),(368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4272,NULL,NULL,NULL,'Bruges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Belgium','21',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(369,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4264,NULL,NULL,NULL,'Bruchsal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(370,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3968,NULL,NULL,NULL,'Bratislava',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Slovakia','191',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(371,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30598,NULL,NULL,NULL,'Bordeaux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(372,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-12-14 19:50:12','2022-12-14 19:50: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),(373,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3417,NULL,NULL,NULL,'Bled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Slovenia','192',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(374,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3336,NULL,NULL,NULL,'Black Forest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:12','2022-12-14 19:50: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),(375,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3280,NULL,NULL,NULL,'Birmingham',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(376,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3279,NULL,NULL,NULL,'Birmingham',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(377,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3213,NULL,NULL,NULL,'Bilbao',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3209,NULL,NULL,NULL,'Bikaner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3153,NULL,NULL,NULL,'Biarritz',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(380,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3142,NULL,NULL,NULL,'Bhuj',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(381,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3141,NULL,NULL,NULL,'Bhubaneswar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(382,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-12-14 19:50:13','2022-12-14 19:50:13',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),(383,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3012,NULL,NULL,NULL,'Bern',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(384,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3006,NULL,NULL,NULL,'Berlin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(385,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3005,NULL,NULL,NULL,'Berlin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(386,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2980,NULL,NULL,NULL,'Bergen',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Norway','164',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(387,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2956,NULL,NULL,NULL,'Berat',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(388,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2783,NULL,NULL,NULL,'Belgrade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(389,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2781,NULL,NULL,NULL,'Belgrade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Serbia','468',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(390,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2778,NULL,NULL,NULL,'Belgium',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(391,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2767,NULL,NULL,NULL,'Belfast',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(392,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-12-14 19:50:13','2022-12-14 19:50:13',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),(393,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2744,NULL,NULL,NULL,'Bekal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(394,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-12-14 19:50:13','2022-12-14 19:50:13',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),(395,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2531,NULL,NULL,NULL,'Bath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(396,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2352,NULL,NULL,NULL,'Barcelona',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(397,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2266,1,0,NULL,'Bangkok',0,NULL,NULL,1,NULL,NULL,'397_1682676660.webp','397_1682676660.webp','Thailand','215',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(398,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2249,NULL,NULL,NULL,'Bandhavgarh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(399,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2136,0,NULL,NULL,'Bali',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Indonesia','102',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(400,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-12-14 19:50:13','2022-12-14 19:50:13',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),(401,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2051,NULL,NULL,NULL,'Bahrain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bahrain','17',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(402,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1992,NULL,NULL,NULL,'Baden-baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(403,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-12-14 19:50:13','2022-12-14 19:50:13',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),(404,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1990,NULL,NULL,NULL,'Baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1989,NULL,NULL,NULL,'Baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(406,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1869,NULL,NULL,NULL,'Avoca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(407,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1868,NULL,NULL,NULL,'Avoca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(408,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1861,NULL,NULL,NULL,'Avila',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(409,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1860,0,NULL,NULL,'Avignon',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(410,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1681,NULL,NULL,NULL,'Athens',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(411,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1680,NULL,NULL,NULL,'Athens',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greece','86',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(412,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1533,NULL,NULL,NULL,'Arusha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tanzania','214',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(413,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1270,NULL,NULL,NULL,'Aranjuez',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spain','199',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(414,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1151,0,NULL,NULL,'Antalya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1121,NULL,NULL,NULL,'Annemasse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(416,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1098,NULL,NULL,NULL,'Ankara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(417,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1073,NULL,NULL,NULL,'Angola',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(418,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1014,NULL,NULL,NULL,'Ancona',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(419,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,979,NULL,NULL,NULL,'Amsterdam',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Netherlands','154',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(420,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,974,1,0,NULL,'Amritsar',0,NULL,NULL,1,NULL,NULL,'420_1682677898.jpg','420_1682677898.jpg','India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(421,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,937,NULL,NULL,NULL,'Amiens',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(422,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,905,NULL,NULL,NULL,'Amboseli National Park',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kenya','113',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(423,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,670,0,NULL,NULL,'Alleppey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,475,NULL,NULL,NULL,'Albertinia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,451,NULL,NULL,NULL,'Albania',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(426,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,296,NULL,NULL,NULL,'Ahmedabad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(427,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-12-14 19:50:13','2022-12-14 19:50:13',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),(428,NULL,NULL,'',NULL,'<p>test</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,105,0,0,NULL,'Abu Dhabi',0,NULL,NULL,1,NULL,NULL,'428_1677907639.webp','428_1677907639.jpg','United Arab Emirates','228',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,86,0,0,NULL,'Abha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,67,NULL,0,NULL,'Aberdare National Park',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kenya','113',NULL,'2022-12-14 19:50:13','2022-12-14 19:50:13',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),(431,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36727,NULL,NULL,NULL,'Pachmarhi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(432,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,'2023-01-06 15:36:21','2023-01-06 15:36: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),(433,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34549,NULL,NULL,NULL,'Sonamarg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(434,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34487,NULL,NULL,NULL,'Rangat',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(435,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20526,NULL,NULL,NULL,'Pachmarhi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(436,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34367,NULL,NULL,NULL,'Mayabunder',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(437,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34491,NULL,NULL,NULL,'Diglipur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(438,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3139,NULL,NULL,NULL,'Bhopal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(439,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34486,NULL,NULL,NULL,'Baratang',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2023-01-06 15:36:21','2023-01-06 15:36: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),(440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17162,NULL,NULL,NULL,'Mauritius',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mauritius','139',NULL,'2023-06-02 14:00:25','2023-06-02 14:00: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);
/*!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 AUTO_INCREMENT=2 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 */;
INSERT INTO `tb_tbb2c_newsletter` VALUES (1,'anuj@gmail.com','2023-07-04 17:59:18','1');
/*!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=43 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,45173,1,4539,1,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":45173,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/ramadan---shabaan-umrah_1670400323\",\"BookingValidUntill\":\"2023-03-07\",\"AdvBookingDays\":20,\"DETAILS\":\"&lt;p&gt;This is Overview&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":60,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":4539,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Jeddah\",\"DestinationPlacesSysId\":13067,\"SourcePlaces\":\"Jeddah\",\"SourcePlaceSysId\":13067,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Ramadan - Shabaan Umrah\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"12795\",\"SupplierName\":\"Atlas Umrah\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Visa,Travel Insurance\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2022-12-14\",\"To\":\"2023-03-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16463,\"Title\":\"Makkah\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":527676,\"Name\":\"Lulu Al Sharq\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.421283\",\"Long\":\"39.832310\",\"Address\":\"King Abdul Aziz Rd, Ajyad, Mecca, Saudi Arabia\"},\"Images\":{\"Image\":[{\"ImagId\":4822418,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_527676\\/4539_01670403934.png\"},{\"ImagId\":4822419,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_527676\\/4539_11670403935.png\"},{\"ImagId\":4822420,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_527676\\/4539_21670403935.png\"},{\"ImagId\":4822421,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_527676\\/4539_31670403936.png\"}]},\"CityId\":16463,\"Brief\":\"&lt;p&gt;Set a 10-minute drive from Madhbah Isma&amp;#39;Il,&nbsp;Luluat Al Sharq Hotel&nbsp;Mecca is located near Safa and Marwa Holy Mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Together with a bidet, a roll-in shower and a tub, bathroom comforts also include hair dryers and bath sheets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Terminal Syeb Amir bus station is located 10 minutes away from the accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests will also appreciate proximity to the massive Masjid al-Haram Mosque, which is about 5 minutes&amp;#39; walk away. A 25-minute walk from this hotel will get you to the heart of Mecca.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_527676\\/4539_540599dad4e1a947fedac37dcc672e041670403934.png\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12795,\"SupplierName\":\"Atlas Umrah\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":528955,\"Name\":\"Hotel Al Massa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.4200458\",\"Long\":\"39.8279684\",\"Address\":\"Alsouq Alsagheer Tunnel? CRCH+258, King Abdul Aziz Rd, Ajyad, Makkah 24231, Saudi Arabia\"},\"Images\":[],\"CityId\":16463,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12795,\"SupplierName\":\"Atlas Umrah\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":16301,\"Title\":\"Madina\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528956,\"Name\":\"Tabah Towers Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.4715435\",\"Long\":\"39.6062681\",\"Address\":\"2476 ??? ?? ????? 6938, ?????? ??????? ??????? 42311, Saudi Arabia\"},\"Images\":[],\"CityId\":16301,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12795,\"SupplierName\":\"Atlas Umrah\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":528957,\"Name\":\"Tabah Towers Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.4715435\",\"Long\":\"39.6062681\",\"Address\":\"2476 ??? ?? ????? 6938, ?????? ??????? ??????? 42311, Saudi Arabia\"},\"Images\":[],\"CityId\":16301,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12795,\"SupplierName\":\"Atlas Umrah\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"326424\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Program Overview Test&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326426\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326428\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326430\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326432\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326434\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326436\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326438\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16463,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326440\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326442\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326444\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326446\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326448\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326450\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":13,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326452\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":14,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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\":\"326454\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":15,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16301,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":528957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"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}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45173\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"115000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45174\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"1950000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45173\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"115000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":95000,\"priceDoubleOcc\":\"115000.00\",\"priceSingleOcc\":212000,\"priceExtraBed\":\"55000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":115000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":55000,\"COSTDO\":115000,\"COSTSO\":212000,\"ACEB\":55000,\"COSTTO\":55000,\"CostQuad\":85000}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45174\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"1950000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000},{\"From\":\"2023-03-22\",\"To\":\"2023-03-22\",\"Currency\":1,\"priceTripleOcc\":1325000,\"priceDoubleOcc\":\"1950000.00\",\"priceSingleOcc\":2127000,\"priceExtraBed\":\"75000.00\",\"priceWithoutBed\":\"40000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1950000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40000,\"CEB\":75000,\"COSTDO\":1950000,\"COSTSO\":2127000,\"ACEB\":75000,\"COSTTO\":75000,\"CostQuad\":135000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Please contact your travel expert for further information.&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pay minimum Rs 100,000\\/- amount to book your package&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Final amount 100% to be paid 20 days before departure or the booking will get cancelled without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Book through&amp;nbsp;NEFT\\/RTGS&amp;nbsp;or Cheque.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;if your booking is routed through any of our booking center the cost of the land package shall remain the same. Atlas Tours &amp;amp; Travels Pvt Ltd is not responsible for any cash transactions at any booking centres.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Package is 100% non-refundable.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All Prices quoted are per person and exclude airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight Tickets can be availed at an approximate additional cost of INR 65,000. The final price, however, is subject to time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than mentioned on ticket would be paid by the pilgrim&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any repeater\\/extra visa fee added by the authorities KSA shall be charged additionally&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms Allotment as per Hotel management, No room choice will be entertained&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms in Makkah &amp;amp; Madina Hotels are normally as follows:\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Double Room = 2 Normal Beds&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Triple Room = 2 Normal Beds + 1 Extra Bed.&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Quad Room = 2 Normal Beds + 2 Extra Beds&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Quint Room = 2 Normal Beds + 3 Extra Beds.&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Food provided will be on Full\\/Board basis by the hotel management.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund in case of unused services or lesser duration of stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The tour dates and tour programs are provisional and subject to change without notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case passenger test positive for Covid-19, the additional charges shall be borne by the pilgrim directly.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The tour costs are based on Saudi Riyal @ Rs.22.00\\/. Any increase in the given rates at the time of delivery of passport before departures of the tour shall be collected from the passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight schedule and Itinerary are subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If you travel individually other than group dates, you will bear the additional transportation charges as per your itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We are not responsible for any luggage losses, Injuries, damages, Accidents and additional expenses due to any reason, not limited to, delay of flight, act of god, deportation, umrah visa expiry, theft, personal injuries, damages related to laundry.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All services subject to rules &amp;amp; regulations of Indian &amp;amp; Saudi Government. Complimentary ZAM ZAM will be given if accepted by the Airlines at the airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arabic dates may be changed subject to sighting of moon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Increment of 5 to 10% in price may be expected.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Atlas Reserves the rights to provide similar Hotels. No refund shall be given in such cases.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Subject to BTQ passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Subject to Mumbai Jurisdiction only.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"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;Airfare.&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, telephone calls\\/fax, 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;Umrah Visa with Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Stay In Makkah &amp;amp; Madinah&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fullboard Meals &amp;ndash; Sehri &amp;amp; Iftari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Roundtrip Internal Transportation in Luxury coaches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited Daily Laundry services&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Zam Zam (Subject to regulations)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary items provided by the Tour operator&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;&lt;strong&gt;Required Documents:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof or Passport (For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covid-19 Vaccine Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test (If required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indian passport valid for at least 6 months having minimum 2 blank pages and 2 white background photographs of size 4x6cm.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pan card copy.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a travel house that specializes in personalized travel experiences. We have&amp;nbsp;traveled&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\":{\"326424\":[{\"Sequence\":[0],\"TPInvnSysId\":[326424],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326426\":[{\"Sequence\":[0],\"TPInvnSysId\":[326426],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326428\":[{\"Sequence\":[0],\"TPInvnSysId\":[326428],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326430\":[{\"Sequence\":[0],\"TPInvnSysId\":[326430],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326432\":[{\"Sequence\":[0],\"TPInvnSysId\":[326432],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326434\":[{\"Sequence\":[0],\"TPInvnSysId\":[326434],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326436\":[{\"Sequence\":[0],\"TPInvnSysId\":[326436],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326438\":[{\"Sequence\":[0],\"TPInvnSysId\":[326438],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326440\":[{\"Sequence\":[0],\"TPInvnSysId\":[326440],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326442\":[{\"Sequence\":[0],\"TPInvnSysId\":[326442],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326444\":[{\"Sequence\":[0],\"TPInvnSysId\":[326444],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326446\":[{\"Sequence\":[0],\"TPInvnSysId\":[326446],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326448\":[{\"Sequence\":[0],\"TPInvnSysId\":[326448],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326450\":[{\"Sequence\":[0],\"TPInvnSysId\":[326450],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326452\":[{\"Sequence\":[0],\"TPInvnSysId\":[326452],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"326454\":[{\"Sequence\":[0],\"TPInvnSysId\":[326454],\"Remark\":[\"&lt;p&gt;Group&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"18676\":{\"CityName\":\"Mumbai\",\"FlightInv\":{\"1\":{\"290\":{\"FlightType\":1,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"sv-773\",\"DepartureAirportCode\":\"BOM\",\"DepartureAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"DepartureTime\":\"10:20:00\",\"FromTerminal\":\"Terminal 2\",\"ArrivalAirportCode\":\"JED\",\"ArrivalAirportName\":\"Jeddah, SA - King Abdul Aziz Intl Airport (JED)\",\"ArrivalTime\":\"13:05:00\",\"ToTerminal\":\"Terminal 2\",\"EstimateHours\":\"05:00\"}},\"2\":{\"291\":{\"FlightType\":2,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"sv-772\",\"DepartureAirportCode\":\"JED\",\"DepartureAirportName\":\"Jeddah, SA - King Abdul Aziz Intl Airport (JED)\",\"DepartureTime\":\"18:00:00\",\"FromTerminal\":\"Terminal 1\",\"ArrivalAirportCode\":\"BOM\",\"ArrivalAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"ArrivalTime\":\"01:05:00\",\"ToTerminal\":\"Terminal 2\",\"EstimateHours\":\"05:00\"}}},\"FromDate\":{\"20230322\":{\"FromDate\":\"2023-03-22\",\"FromDateDMY\":\"22\\/03\\/2023\",\"AdultCost\":65000,\"InfantCost\":15000,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FlightInv\":{\"1\":{\"292\":{\"FlightType\":1,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"SV-773\",\"DepartureAirportCode\":\"BLR\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"11:00:00\",\"FromTerminal\":\"Bengaluru Intl Arpt\",\"ArrivalAirportCode\":\"JED\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"14:11:00\",\"ToTerminal\":\"Terminal 1\",\"EstimateHours\":\"05:00\"}},\"2\":{\"293\":{\"FlightType\":2,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"sv-772\",\"DepartureAirportCode\":\"JED\",\"DepartureAirportName\":\"Jeddah, SA - King Abdul Aziz Intl Airport (JED)\",\"DepartureTime\":\"14:12:00\",\"FromTerminal\":\"Terminal 1\",\"ArrivalAirportCode\":\"BLR\",\"ArrivalAirportName\":\"Bengaluru, IN - Bangalore Airport (BLR)\",\"ArrivalTime\":\"14:12:00\",\"ToTerminal\":\"Bengaluru Intl Arpt\",\"EstimateHours\":\"14:12\"}}},\"FromDate\":{\"20230322\":{\"FromDate\":\"2023-03-22\",\"FromDateDMY\":\"22\\/03\\/2023\",\"AdultCost\":70000,\"InfantCost\":15000,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"296\":{\"CityName\":\"Ahmedabad\",\"FlightInv\":{\"1\":{\"294\":{\"FlightType\":1,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"SV-773\",\"DepartureAirportCode\":\"AMD\",\"DepartureAirportName\":\"Ahmedabad, IN - Ahmedabad Airport (AMD)\",\"DepartureTime\":\"14:12:00\",\"FromTerminal\":\"Amd\",\"ArrivalAirportCode\":\"JED\",\"ArrivalAirportName\":\"Jeddah, SA - King Abdul Aziz Intl Airport (JED)\",\"ArrivalTime\":\"14:12:00\",\"ToTerminal\":\"Terminal 1\",\"EstimateHours\":\"14:12\"}},\"2\":{\"295\":{\"FlightType\":2,\"AirlineName\":\"Saudia\",\"AirlineCode\":\"sv-772\",\"DepartureAirportCode\":\"JED\",\"DepartureAirportName\":\"Jeddah, SA - King Abdul Aziz Intl Airport (JED)\",\"DepartureTime\":\"14:13:00\",\"FromTerminal\":\"Terminal 1\",\"ArrivalAirportCode\":\"AMD\",\"ArrivalAirportName\":\"Ahmedabad, IN - Ahmedabad Airport (AMD)\",\"ArrivalTime\":\"14:13:00\",\"ToTerminal\":\"Terminal 2\",\"EstimateHours\":\"14:13\"}}},\"FromDate\":{\"20230322\":{\"FromDate\":\"2023-03-22\",\"FromDateDMY\":\"22\\/03\\/2023\",\"AdultCost\":72000,\"InfantCost\":10000,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Makkah,Madina','Makkah,Middle East,Saudi Arabia,Madina',NULL,'16463,16301',115000,1950000,14,NULL,NULL,NULL,1,'',0,'2022-12-14 00:00:00','2023-03-07 00:00:00','2023-03-07 00:00:00',3,'Saudi Arabia','186','2022-12-14 19:46:36','2022-12-14 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ramadan-shabaan-umrah',NULL,NULL,NULL,0),(2,44648,1,4539,1,0,0,'Honeymoon,Family,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44648,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/malaysia-getaway_1669649282\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Explore the culinary and cultural melting pot of Asia with our Malaysia tour packages. Home to fresh mountains, verdant forests, and immaculate beaches, Malaysia is without a doubt one of Asia&amp;#39;s most stunning travel destinations. This country&amp;#39;s spectacular grandeur, which includes lush, green rainforests, lovely sandy beaches, modern towns, and unique architecture, will make you want to visit on our Malaysia packages more often. Another great reason to visit Malaysia with our Malaysia tour packages is its enticing and extraordinarily delicious cuisine you can experience on any of our Malaysia trip packages. Malaysia, a melting pot of culture, custom, legacy, and history, provides you with a wide range of things to do. Malaysia offers a wide variety of activities, including daring hikes, exhilarating water sports, ancient temples, modern theme parks, and diverse gastronomic experiences.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A location of contrast is this on our Malaysia packages. You may hear the call to prayer from the mosque here in the morning and enjoy drinks at a posh nightclub in the evening. You may spend one day hiking in a forest and the next relaxing on a beach. Even though the locals are conservative, they come across as fairly progressive when you meet them. With the vibrant city of Kuala Lumpur, the dense shrouded forests of the Central Highlands, and magnificent islands floating in crystal blue waters off of nearly every coastline in the nation, all with superb diving, Malaysia with our Malaysia packages is one of the most aesthetically spectacular nations in Southeast Asia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Malaysia may be divided approximately into two halves with our Malaysia tour packages. East Malaysia (Borneo), which has a marine border with Vietnam and the Philippines as well as a maritime border with Brunei and Indonesia, Peninsular Malaysia, which only has one land border with Thailand, and maritime boarders with Singapore, Vietnam, and Indonesia. For more information on Malaysia tour package price from India, for couple, from Kerala, Delhi, Mumbai and Ahmedabad visit our website.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Because of its geographic location, you can witness on your Malaysia trip the wide diversity of wildlife, including several populations of unique species. Malaysia is one of just 17 Megadiverse nations in the world because it is home to so many creatures that are unique to its territory. There aren&amp;#39;t many sites in the world that provide greater chances to see animals, whether you&amp;#39;re diving in Sipadan, Malaysian Borneo, or the Central Highlands of Peninsular Malaysia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;So, if you are planning to visit Malaysia, you are definitely in for a treat with our Malaysia tour packages from India for couple, from Chennai, and Bangalore, listed below!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":4539,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Kuala Lumpur\",\"DestinationPlacesSysId\":30568,\"SourcePlaces\":\"Kuala Lumpur\",\"SourcePlaceSysId\":30568,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Malaysia Getaway\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4432\",\"SupplierName\":\"Nam ho DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2022-12-21\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":30568,\"Title\":\"Kuala Lumpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":391465,\"Name\":\"HOLIDAY INN EXPRESS KUALA LUMPUR CITY CENTRE\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.150741\",\"Long\":\"101.708605\",\"Address\":\"84 Jalan Raja Chulan   Kuala Lumpur,    50450   Malaysia, Kuala Lumpur, Malaysia, 50450\"},\"Images\":[],\"CityId\":30568,\"Brief\":\"Holiday Inn Express Kuala Lumpur City Centre is the first Holiday Inn Express brand in Malaysia. Conveniently placed at Jalan Raja Chulan, this 383-room hotel is situated at the KL Downtown &acirc;&euro;&oelig;Golden Triangle&acirc;&euro;\\u009d area with easy access to major financial and commercial towers, including the world-renowned Petronas Twin Towers, Kuala Lumpur Tower, Tun Razak Exchange, Kuala Lumpur Convention Centre and many more. Located right at the shopping mecca of Bukit Bintang area, our hotel is within walking distance to shopping malls like Pavilion, Lot 10, Berjaya Times Square and Sungei Wang Plaza. For endless entertainment and dining options, check out Changkat Bukit Bintang, Jalan Alor and Chinatown, which are just minutes away from our hotel.\\nStart the day right with FREE Express Start Breakfast or Grab&amp;amp;GO breakfast option. After a busy day, freshen up with our rejuvenating power shower and rest well with our signature bedding, with choices of Soft &amp;amp; Firm pillows. Enjoy 24 hours fitness room, self service laundry room, pay &amp;amp; go counter and internet station. Free WIFI is available throughout the hotel.The HOLIDAY INN EXPRESS KUALA LUMPUR CITY CENTRE is a  hotel. Located in City Centre area.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/18\\/1867328\\/AV2FnlUx_4f37c9fb6509b3914503ef32a62b0915.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":391384,\"Name\":\"FURAMA BUKIT BINTANG\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.140252988\",\"Long\":\"101.7100772\",\"Address\":\"136 CHANGKAT THAMBI DOLLAH (136, Jalan Changkat Thambi Dollah), Kuala Lumpur, Malaysia, 55100\"},\"Images\":[],\"CityId\":30568,\"Brief\":\"This elegant hotel is centrally located in Kuala Lumpur&amp;#039;s vibrant Golden Triangle, adjacent to Bukit Bintang, Berjaya Times Square and Chinatown. It is conveniently situated near the main shopping belts of the city, just a 5-minute walk away from Imbi Station. The hotel&amp;#039;s proximity to the major expressways and public transport links also makes it highly accessible to major tourist spots. Petronas Twin Towers are only some 3.5 km away. Sultan Abdul Aziz Shah Airport is about 31 km away and Kuala Lumpur International Airport (klia) is some 57 km away.\\nFacilities\\nThe hotel features 433 accommodation units. Guests can use the lift for quick and comfortable access to the upper floors. Services and facilities at the hotel include currency exchange facilities, internet access, wireless internet access, a restaurant, room service, a laundry and a conference room. Guests arriving in their own vehicles can park in the car park.\\nRooms\\nAll rooms feature air conditioning and a bathroom. A safe is also available. Features include a mini-fridge and tea and coffee making equipment. An ironing set is also available to guests. Additional features, including internet access, a telephone and a TV, contribute to a great stay. In each of the bathrooms, guests will find a shower, a bathtub and a hairdryer.\\nSports\\/Entertainment\\nThe hotel offers a selection of sport and leisure opportunities. The hotel features an outdoor pool and a children&amp;#039;s pool. Sun loungers provide a great place to sunbathe. Leisure options available to guests include a gym. \\nMeals\\nThe hotel offers the following bookable meals and board options: breakfast, lunch and dinner.\\nPayment\\nThe following credit cards are accepted at the hotel: American Express, VISA, Diners Club, JCB and MasterCard.The FURAMA BUKIT BINTANG is a Tourist, Modern, Business, Leisure, City hotel, Design Trendy hotel. Located in Kuala Lumpur area. Shopping is within walking distance and the nightlife\\/restaurants are right next to the hotel.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/45\\/458525\\/akikcbkI_87d4b7e14ebfe50c4c7bae6398396765.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":391532,\"Name\":\"THE ROYALE CHULAN KUALA LUMPUR\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.149321925\",\"Long\":\"101.7167258\",\"Address\":\"Jalan Conlay , Federal Territory of Kuala Lumpur (5 Jalan Conlay 50450 Kuala Lumpur, Malaysia), Kuala Lumpur, Malaysia, \"},\"Images\":[],\"CityId\":30568,\"Brief\":\"Location\\nFor a city hotel, location is everything and this one is central to most inner city attractions, services, restaurants and bars. Bukit Bintang, KLCC (including the Petronas Twin Towers), the convention centre, Aquaria KLCC, Star Hill Gallery, the Pavilion and Lot 10 are between 5 and 15 minutes&amp;#039; walk or a short taxi drive from the hotel. Despite being centrally located, the hotel is situated in a leafy oasis, away from the hustle and bustle of city life. Kuala Lumpur International Airport is less than 1 hour away by limousine.\\nFacilities\\nThe establishment comprises a total of 300 accommodation units. A lobby and a reception are available to guests. The upper floors can be reached by lift. Services and facilities at the hotel include a safe and a restaurant.\\nRooms\\nAll accommodation units feature air conditioning and a bathroom. A safe is also available. A mini-fridge and tea and coffee making equipment contribute to a comfortable stay. Each accommodation unit offers a telephone and a TV. Each of the bathrooms features a shower and a hairdryer.\\nSports\\/Entertainment\\nSport and entertainment options are available at the establishment. Leisure options at the establishment also include a spa and hydrotherapy. \\nMeals\\nThe establishment offers the following bookable meals and board options: breakfast, lunch and dinner.\\nPayment\\nThe following credit cards are accepted at the establishment: American Express, VISA, Diners Club and MasterCard.THE ROYALE CHULAN KUALA LUMPUR is a Tourist hotel. Located in Business District area. Shopping is accessible by bus\\/taxi and the nightlife\\/restaurants are easily accessible by taxi or bus from the hotel.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/98\\/98228\\/UM4pTJLn_5120ba408f775df5636f2cb9e46fc65c.\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3771,\"Title\":\"National Mosque of Malaysia\",\"Description\":\"National Mosque of Malaysia is the nationwide symbol of Islam.The Mosque has a main prayer hall with 48 smaller domes around it.The Grand Hall is undoubtedly the most intricate part of the mosque with verses from the Koran decorating the walls. Its key features are 240 ft high minaret and a 16-pointed star concrete main roof.\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":3.1420938,\"Long\":101.6917739,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30568\\/sightseeing\\/National_Mosque_of_Malaysia_30568_1519276863.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3034,\"Title\":\"Petronas Twin Towers\",\"Description\":\"No trip to KL would be complete without a visit to the world&amp;#039;s tallest twin towers. The skyscrapers are utterly stunning, particularly when illuminated at night. The Twin Towers Visit Operations is open Tuesday through Sunday and tickets are released at 8:30 a.m. on a first-come, first-served basis. To avoid disappointment, you can purchase your ticket in advance via online ticketing or at the Ticketing Counter, Concourse Level.\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":3.157764,\"Long\":101.711861,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30568\\/sightseeing\\/Petronas_Twin_Towers_Kuala_Lum_30568_1517312246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2160,\"Title\":\"Batu Caves\",\"Description\":\"Batu Caves  is a limestone hill that has a series of caves and cave temples in Gombak, Selangor, Malaysia. It takes its name from the Sungai Batu (Stone River), which flows past the hill. It is the tenth (Pattu in Tamil) limestone hill from Ampang. Batu Caves is also the name of a nearby village.\\r\\nThe cave is one of the most popular Hindu shrines outside India, and is dedicated to Lord Murugan. It is the focal point of Hindu festival of Thaipusam in Malaysia.\\r\\nBatu Caves in short also referred as 10th Caves or Hill for Lord Muruga as there are six important holy shrines in India and four more in Malaysia. The three others in Malaysia are Kallumalai Temple in Ipoh, Tanneermalai Temple in Penang and Sannasimalai Temple in Malacca.\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":3.2378844,\"Long\":101.6840385,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30568\\/sightseeing\\/Batu_Caves_30568_1519275435.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3783,\"Title\":\"Titiwangsa Lake Gardens\",\"Description\":\"Titiwangsa Lake Gardens is a lake garden in Kuala Lumpur. It  feature a huge central lake that was a byproduct of tin mining activities under British Rule. Later on, the area was cleaned up and developed into a park. Titiwangsa Lake Garden spreads across an area of 95 hectares with a 57 hectares of lake.It has facilities such as jogging track, cycling track, kayaking, horse riding facility, radio control car racing track etc.\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":3.18035,\"Long\":101.707376,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30568\\/sightseeing\\/Titiwangsa_Lake_Gardens_30568_1519286329.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"322482\",\"Title\":\"Arrival in Kuala Lumpur\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Kuala Lumpur International Airport, you will be transferred to your hotel in Kuala Lumpur City Centre.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After check in, relax at the hotel or explore Kuala Lumpur on own!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391465,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":391384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":391532,\"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\":\"322485\",\"Title\":\"Half Day Kuala Lumpur city tour with KL Tower\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;The City tour will include&amp;nbsp;The City tour will include Petronas Twin Towers (photo stop), Cocoa Centre, King&amp;#39;s palace (photo stop), National Monument(Photo Stop), National Mosque (photo stop) &amp;amp; Independence Square&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Immerse yourself in the beautiful culture, history and architecture of Kuala Lumpur. On this guided tour, you will get a chance to experience the city&amp;rsquo;s must-see attractions while travelling in a comfortable AC coach. Start off by visiting the mesmerising views of the city&amp;rsquo;s skyline as you stand in front of the breathtaking Petronas Towers, the tallest twin buildings in the world. Don&amp;#39;t forget to click wonderful photos to cherish for a lifetime. Carry on forward to see the Cocoa Centre, King&amp;#39;s palace (photo stop), National Monument(Photo Stop), National Mosque (photo stop) &amp;amp; Independence Square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note: This is a guided tour. Shared transfers included.&amp;quot;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391465,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":391384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":391532,\"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\":3771,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3034,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"322488\",\"Title\":\"Genting Highlands Day Tour from Kuala Lumpur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, depart for Genting Highlands Day Tour from Kuala Lumpur. This Tour take you through the picturesque Titiwangsa Mountains, some 6,118 feet (1,835 meters) above sea level. Take a cable car ride to the top of the highlands and admire the surrounding view of the hills.Upon arrival explore the resort and casino at your leisure. Enjoy shopping, theme parks and amazing views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391465,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":391384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":391532,\"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\":2160,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3783,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"322491\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to the airport for your flight back home!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"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\":\"44648\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18480.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":24192,\"priceExtraBed\":\"16240.00\",\"priceWithoutBed\":\"13328.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13328,\"CEB\":16240,\"COSTDO\":18480,\"COSTSO\":24192,\"CostQuad\":null,\"ACEB\":16240,\"COSTTO\":16240}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44649\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20160.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20235,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":26320,\"priceExtraBed\":\"20384.00\",\"priceWithoutBed\":\"14280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14280,\"CEB\":20384,\"COSTDO\":20160,\"COSTSO\":26320,\"CostQuad\":null,\"ACEB\":20384,\"COSTTO\":20384}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"44650\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21840.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21840,\"priceDoubleOcc\":\"21840.00\",\"priceSingleOcc\":28840,\"priceExtraBed\":\"21840.00\",\"priceWithoutBed\":\"16520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16520,\"CEB\":21840,\"COSTDO\":21840,\"COSTSO\":28840,\"CostQuad\":null,\"ACEB\":21840,\"COSTTO\":21840}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"44648\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17655.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16942,\"priceDoubleOcc\":\"17655.00\",\"priceSingleOcc\":23112,\"priceExtraBed\":\"15515.00\",\"priceWithoutBed\":\"12733.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12733,\"CEB\":15515,\"COSTDO\":17655,\"COSTSO\":23112,\"CostQuad\":null,\"ACEB\":15515,\"COSTTO\":15515}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44649\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19260.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19331,\"priceDoubleOcc\":\"19260.00\",\"priceSingleOcc\":25145,\"priceExtraBed\":\"19474.00\",\"priceWithoutBed\":\"13642.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13642.5,\"CEB\":19474,\"COSTDO\":19260,\"COSTSO\":25145,\"CostQuad\":null,\"ACEB\":19474,\"COSTTO\":19474}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"44650\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20865.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2022-11-28\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-02\",\"To\":\"2023-01-21\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-01-28\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20865,\"priceDoubleOcc\":\"20865.00\",\"priceSingleOcc\":27552.5,\"priceExtraBed\":\"20865.00\",\"priceWithoutBed\":\"15782.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20865,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15782.5,\"CEB\":20865,\"COSTDO\":20865,\"COSTSO\":27552.5,\"CostQuad\":null,\"ACEB\":20865,\"COSTTO\":20865}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Please contact your travel expert for further information.&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-fare is calculated 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%&amp;nbsp;payment is to be made for domestic packages before 15 days of the departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment is to be made for international packages before 30 days of the 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;Cancellation policy charged by the local vendor depending on the season of travel will be applicable and the same needs to be accepted by the Guest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bookings Confirmed under Non-Refundable\\/Amendable\\/Cancellable&amp;nbsp;Policy will be charged 100% once the booking gets confirmed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any on tour issues\\/changes or cancellation needs to be settled by the local vendor\\/driver&amp;nbsp;during the course of the tour and no refunds or issues will be entertained post-tour completion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 30 days before the start date of the trip, 25% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 15-30 days before the start date of the trip, 50% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made within 0-15 days before the start date of the trip, 100% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of unforeseen weather conditions or government restrictions, certain trips or activities may get cancelled. In such cases, the operator will try their best to provide an alternate feasible. However, a cash refund will not be applicable for the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations are strictly subjected to cancellation policies mentioned on the website &amp;amp; are irrespective of the date of booking.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All rates mentioned above are&amp;nbsp;strictly for quotation purposes only.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We hold the right to revoke the above offer at any point in time without any prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The above offer is not valid on blackout dates. Please speak to our holiday expert for further information.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No bookings or blocking have been made as yet.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmation of your selection is purely based on availability at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates \\/ Hotels \\/ Room Types may vary at the time of actual booking and are subject to availability at the time of confirmation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the rate of exchange leads to an increase in surface transportation and land arrangements, which may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours operated on a SIC basis will start from a central point located in the city Centre. Also for drop off some tours may or may not provide drop-off (if they will provide then drop off location will be again some city Centre point).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vehicle Booked on a Private basis will not be at disposal (Full day), it will be provided as per itinerary and point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Missed Breakfast will be not be refunded due to early morning tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Menu in Meals will be as per hotels policy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-in &amp;amp; Check-out time: generally Check-in varies between 2 pm-3 pm and check-out before 12 pm (noon). Early check-in and late check-out are subject to hotel availability and may result in an extra charge equivalent to one full day room rate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unutilized services are not refundable.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any item NOT specified in the above itinerary will incur supplement charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any change in no of guests will undergo rate change&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary needs to be settled by guests directly on tour with the local vendor.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in taxes or fuel price, leading to an increase in cost on surface transportation &amp;amp; land arrangements, may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any special request such as adjacent rooms, interconnecting rooms, room on the same floor, 1 king-size \\/ 2 Twin bed, early check-in, late checkout, no\\/smoking room, etc. is subject to availability upon check-in of the guest and is at the hotel&amp;amp;39s discretion. We will request this for you as a priority.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Itineraries shared at the time of Quotation\\/Confirmations are tentative and may change on tour if required keeping in mind the safety of the passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tours are operated as per driver cum guide and no separate guides are arranged unless mentioned in inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No amendment\\/changes in the tour itinerary will be entertained by local vendors while the guest is on tour as the services are pre-booked and incur cancellation charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Expenses incurred due to mishaps, landslides, strikes, political unrest, etc. In such cases, extra will be charged as per actual.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For any International destinations, Passport Validity should be at least 6 to 9 months after returning date depending on country to country.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST applicable on the total payable amount&amp;nbsp;unless mentioned in Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We reserve the right to modify the itinerary at any point, due to reasons including but not limited to Force Majeure events, strikes, implementations of government rules\\/restrictions, lockdowns, fairs, festivals, weather conditions, traffic problems, overbooking of hotels\\/flights, cancellation \\/ re-routing of flights, closure of \\/ entry restrictions at a place of a visit, etc. While we will do our best to make suitable alternate arrangements, we would not be held liable for any refunds\\/compensation claims arising out of this.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We will not be liable for any cancellations due to any rules\\/restrictions imposed by the government of India or the government of the country you are visiting. The client has to bear all&amp;nbsp;charges imposed because of any such implementation.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Please note,&amp;nbsp;as per Income Tax Department&amp;nbsp;rules,&amp;nbsp;you will be charged 5%&amp;nbsp;TCS&amp;nbsp;on the total invoicing amount for every confirmed booking at the time of final confirmation which will be redeemable when filing your personal IT returns (Effective from 01st&amp;nbsp;Oct&amp;nbsp;2020). Lead passenger Pan Card Copy will also be required as per RBI guidelines at the time of final confirmation.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"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;03 nights accomodation as mentioned.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast at the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half Day Kuala Lumpur city tour with KL Tower.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Genting Full Day Tour Enroute Batu Caves + One Way Cable Car with Indoor Theme Park.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport transfers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All tours and transfers on seat in coach basis. Only Genting Day trip on Private basis.&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 travelling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof or Passport (For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covid-19 Vaccine Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test (If required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Vouchers&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;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;Mosquito Cream\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a travel house that specializes in personalized travel experiences. We have&amp;nbsp;traveled&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\":{\"322482\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[322482],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"322485\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[322485],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"322488\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[322488],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"322491\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[322491],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Kuala Lumpur','Kuala Lumpur,South East Asia,Malaysia,Orient,Genting Highlands','','30568',17655,21840,3,'2_1671624146_0.jpg',NULL,'[{\"day\":1,\"images\":\"4da30a77-ecb2-4ead-a771-e61fac2a73dd.jpg\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"}]',2,'',0,'2022-12-21 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Malaysia','132','2022-12-21 14:38:16','2022-12-21 00:00:00',1,1,'1','1','0','','','',NULL,'malaysia-getaway',NULL,NULL,NULL,0),(3,43873,1,4539,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":43873,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/glimse-of-andaman_1668092903\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Trip to Corbyn&amp;rsquo;s Cove and Light &amp;amp; Sound show in Port Blair&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Radha Nagar and Elephant beaches, Havelock&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":4539,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Glimse Of Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Ferry,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2022-12-21\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":526190,\"Name\":\"Hotel Bell Elite\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6669827\",\"Long\":\"92.74047379999999\",\"Address\":\"59\\/1\\/4, Gurudwara Ln, near Rsn Godown, Biggie Line, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":193680,\"Name\":\"Peerless Sarovar Portico\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.644368068604\",\"Long\":\"92.746095489498\",\"Address\":\"Corbyns Cove \"},\"Images\":{\"Image\":[{\"ImagId\":4329659,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_6_t.jpg\"},{\"ImagId\":4329660,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_3_t.jpg\"},{\"ImagId\":4329661,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_2_t.jpg\"},{\"ImagId\":4329662,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_1_t.jpg\"},{\"ImagId\":4329663,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_5_t.jpg\"},{\"ImagId\":4329664,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_4_t.jpg\"},{\"ImagId\":4329665,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_11_t.jpg\"},{\"ImagId\":4329666,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_13_t.jpg\"},{\"ImagId\":4329667,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_14_t.jpg\"},{\"ImagId\":4329668,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_15_t.jpg\"},{\"ImagId\":4329669,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_9_t.jpg\"},{\"ImagId\":4329670,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_12_t.jpg\"},{\"ImagId\":4329671,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_10_t.jpg\"},{\"ImagId\":4329672,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_8_t.jpg\"},{\"ImagId\":4329673,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_7_t.jpg\"}]},\"CityId\":32511,\"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 Port Blair, Peerless Sarovar Portico Port Blair is by the sea and convenient to Corbyn&amp;apos;s Cove and Aberdeen Clock Tower.  This beach hotel is within close proximity of Anthropological Museum and Rajiv Gandhi Water Sports Complex.&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 50 individually furnished guestrooms, featuring minibars and flat-screen televisions. High-speed (wired) Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature designer toiletries and bathrobes. 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;Don&amp;apos;t miss out on recreational opportunities including a health club and an indoor tennis court. This hotel also features complimentary wireless Internet access, concierge services, and wedding services. Getting to nearby attractions is a breeze with 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;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner. Dining is also available at a coffee shop\\/caf&eacute;, and 24-hour room service is provided. 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 high-speed (wired) Internet access (surcharge), a business center, and complimentary newspapers in the lobby. Event facilities at this hotel consist of conference space and meeting rooms. A roundtrip airport shuttle is provided for a surcharge during limited hours, and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2960000\\/2955400\\/2955330\\/2955330_6_t.jpg\",\"AccoAminitiesMask\":\"111010010000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413624,\"Name\":\"Sinclairs Bayview\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.663902\",\"Long\":\"92.755639\",\"Address\":\"South Point, Port Blair, Andaman Islands\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Sinclairs Bayview Port Blair in Port Blair, you&#039;ll be in the historical district and minutes from Aberdeen Clock Tower, and close to Rajiv Gandhi Water Sports Complex.  This hotel is within close proximity of Cellular Jail and Anthropological Museum.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 46 air-conditioned rooms featuring minibars and LED televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have complimentary toiletries and slippers. 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 advantage of recreation opportunities such as an outdoor pool or take in the view from a terrace and a garden. This hotel also features complimentary wireless Internet access, concierge services, and wedding services. The shuttle (surcharge) will take you to the nearby beach or shopping center.&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, 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.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include limo\\/town car service, complimentary newspapers in the lobby, and luggage storage. Planning an event in Port Blair? This hotel has 1453 square feet (135 square meters) of space consisting of a conference center and a meeting room. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a cruise ship terminal shuttle.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/0f\\/d2\\/0fd20a2bded1db8977355d4b3c4a7ce6c73947fe.jpg\",\"AccoAminitiesMask\":\"1010000100001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413657,\"Name\":\"Sinclairs Bayview\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.663962\",\"Long\":\"92.7557\",\"Address\":\"South Point, Near Carbyns Cove Beach, South Point, PORT BLAIR, ANDAMAN NICOBAR, India, Pin-744106, 744106\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"Sinclairs Bayview is one of the Port Blair hotels, which is easily accesible from Veer Savarkar International Airport (4.9 km). It has a freshwater swimming pool and the rooms offer a view of the sea.  This hotel in Port Blair offers comfy accommodation. The property has 46 large rooms which are equipped with contemporary amenities like a satellite television and a private bathroom with a shower. Some rooms also have a separate seating area.  null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/maw\\/uye\\/fbt\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":413849,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.984259\",\"Long\":\"92.990985\",\"Address\":\"Govind Nagar,Andaman and Nicobar Islands,India, 744211\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"Experience a wonderful stay in the lap of nature at Symphony Palms in Havelock Islands, Port Blair. Featuring the main Havelock Harbor and the Helipad within the proximity of 1 km, this resort offers convenience of arrival for its guests. Symphony Palms features Radhanagar Beach, Havelock Beach, Kaala Pathar Beach, and Elephant Beach in close proximity for visitors to have a great time while here. Neil Islands is also a great tourist attraction and a visit to this heavenly place completes the trip to Port Blair. \\n\\nAt the Symphony Palms, guests love to submerge into a wonderful combination of sun, sand and the sea. The subtle decorations and a cottage like ambience of the Symphony Palms exude a comforting look to satiate the guests. Beautifully furnished and modernly equipped rooms, coupled with an unmatched hospitality and personalized service make the Symphony Palms an earthly heaven. Spend an ideal vacation at this resort that ensures gratifying time in Port Blair. \\n\\nThere are no greaser in the room. Hot Water on request will be provided.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3144\\/314442\\/images\\/Result_View_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480357,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0117653\",\"Long\":\"93.0071687\",\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":97162,\"Name\":\"Silversand Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0249\",\"Long\":\"92.9907\",\"Address\":\"No. 5, Vijay Nagar Beach \"},\"Images\":{\"Image\":[{\"ImagId\":2123877,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_13_t.jpg\"},{\"ImagId\":2123878,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_20_t.jpg\"},{\"ImagId\":2123879,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_27_t.jpg\"},{\"ImagId\":2123880,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_28_t.jpg\"},{\"ImagId\":2123881,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_3_t.jpg\"},{\"ImagId\":2123882,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_4_t.jpg\"},{\"ImagId\":2123883,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_9_t.jpg\"},{\"ImagId\":2123884,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_15_t.jpg\"},{\"ImagId\":2123885,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_8_t.jpg\"},{\"ImagId\":2123886,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_10_t.jpg\"},{\"ImagId\":2123887,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_11_t.jpg\"},{\"ImagId\":2123888,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_21_t.jpg\"},{\"ImagId\":2123889,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_22_t.jpg\"},{\"ImagId\":2123890,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_2_t.jpg\"},{\"ImagId\":2123891,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_23_t.jpg\"},{\"ImagId\":2123892,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_5_t.jpg\"},{\"ImagId\":2123893,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_7_t.jpg\"},{\"ImagId\":2123894,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_14_t.jpg\"},{\"ImagId\":2123895,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_17_t.jpg\"},{\"ImagId\":2123896,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_19_t.jpg\"},{\"ImagId\":2123897,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_24_t.jpg\"},{\"ImagId\":2123898,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_25_t.jpg\"},{\"ImagId\":2123899,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_26_t.jpg\"},{\"ImagId\":2123900,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_29_t.jpg\"},{\"ImagId\":2123901,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_30_t.jpg\"},{\"ImagId\":2123902,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_6_t.jpg\"},{\"ImagId\":2123903,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_31_t.jpg\"},{\"ImagId\":2123904,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_12_t.jpg\"}]},\"CityId\":11658,\"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 SilverSand Beach Resort in Havelock Island, you&amp;apos;ll be near the beach and within the region of Henry Lawrence Island.&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 39 air-conditioned rooms featuring refrigerators and minibars. Flat-screen televisions are provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include desks and coffee\\/tea makers, 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 in the views from a garden and make use of amenities such as 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 meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours). 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;The front desk is staffed during limited hours. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_13_t.jpg\",\"AccoAminitiesMask\":\"101000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"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\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"316214\",\"Title\":\"Day 01 - Arrival At Port Blair\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Land at Port Blair airport in the morning or afternoon and transfer to hotel. After some rest, visit the famous Corbyn&amp;rsquo;s Cove Beach, Cellular Jail, (entry closes at 1545hrs), an old colonial prison situated in Port Blair also known as &amp;#39;Kalapani&amp;#39;. Later, attend the enthralling Sound &amp;amp; Light Show at Cellular Jail where the heroic saga of the Indian freedom struggle is brought alive and then drop back to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In case your flight lands in the afternoon, we may offer to take you direct from the airport to Cellular Jail so that you are able to watch the Sound &amp;amp; Light show.&amp;nbsp; If your hotel is located at Wandoor or Chidyatapu, we will first take you to Cellular Jail and then drop you to the hotel. Light and Sound show will be done on return from Havelock\\/ Neil.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull; Please note that since vehicles are not allowed to wait outside Cellular Jail, all guests will be dropped at the parking point (approximately 400mtrs from the entry gate of the Jail) and will have to walk from the parkingpoint until the entrance. Once the Jail visit or Sound &amp;amp; Light show is done, the guest will have to walk back to the parking point to board the vehicle.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":526190,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":193680,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413624,\"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\":2294,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2804,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316217\",\"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\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316220\",\"Title\":\"Day 02 - Port Blair-Havelock (54 kms \\/ approx. 2 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Departure by morning or afternoon Private ferry (PB-HL) (Journey time is 1.5 \\/ 2.5 hrs). On arrival at Havelock (Swaraj Dweep), our team will meet the guest at the exit gate and then the guest will be dropped to their havelock hotel. At around 1430hrs -1530hrs, proceed to Beach No. 7 (Radhanagar Beach) rated as the &amp;lsquo;Best Beach in Asia&amp;rsquo; by Time Magazine to unwind, relax and enjoy the pristine white sand beach. Later drop back to the hotel. Evening at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull; Kindly remind the Port Blair hotel to provide packed breakfast since the same is not included at Havelock (Swaraj Dweep)&lt;br \\/&gt;\\r\\n&amp;bull; Kindly carry a valid PHOTO ID (Pan Card not accepted) to enter the Port Blair jetty. Alcohol cannot be carried on-board the ferry.&lt;br \\/&gt;\\r\\n&amp;bull; Beach No 7 is closed for guests after sunset.&lt;br \\/&gt;\\r\\n&amp;bull; Cars are limited on Havelock island (Swaraj Dweep) and hence guests are requested to kindly adhere to the timelines as shared by the tour manager.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":413849,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":480357,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":97162,\"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\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316223\",\"Title\":\"Day 03 - Excursion to Elephant Beach \\/ Light House\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Embark on the most memorable excursion to Elephant Beach or Light House by sharing boat. The journey time is 30-45 mins and you can also opt for some water sports activities like Snorkelling, Sea Walk, Jet Ski, Glass bottom Boat, Banana Boat Ride, Sofa boat ride, Parasailing, etc. on direct payment. Return after 3 hrs in the same sharing boat to the Beach No 1. Our tour manager will meet and assist with car transfers to proceed to the hotel. Evening at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The boats to Elephant Beach are managed by aboat association who need individual guest consent forms after which boats are allotted based on rotation and sharing basis. Due to limited boats, guest may have to wait until their boat is allotted and please note that we have no control over the wait time.&lt;br \\/&gt;\\r\\n&amp;bull; Alcohol is strictly prohibited on Elephant Beach.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":413849,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":480357,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":97162,\"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\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316226\",\"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\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316229\",\"Title\":\"Day04 - Havelock - Port Blair (54 kms \\/ approx. 2 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Check-out from Havelock hotel and then head to Something Different &amp;ndash; A Beach Side Cafe (Rated #1 on tripadvisor.com) and the only multi-cuisine beachside caf&amp;eacute; that offers a fabulous view along with a fun play-zone for kids, a book-reading corner and lots more. Afterwards, proceed to the Havelock jetty to board the Private ferry (HL -PB) -Journey time is 1.5 \\/ 2.5 hrs. On arrival at Port Blair, our team will meet the guest at the exit of the Port Blair jetty and then proceed to the selected Port Blair hotel. Evening at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull; Do note that all Havelock hotels have an early morning check-out time and late check-out isprovided at the discretion of the hotel management and subject to availability.&lt;br \\/&gt;\\r\\n&amp;bull; Guest should be ready for check-in at the Havelock private ferry counter at least an hour prior to the vessel departure time.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":526190,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":193680,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413657,\"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\":\"316232\",\"Title\":\"Day 05 - Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy your breakfast and check-out from the Port Blair hotel as per the hotel allocated time. Head straight to the airport to board the departure flight. Have a safe trip home taking back fond memories of these stunning islands.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull; Do note that all Port Blair hotelshave an early morning check-out time and late check-out is provided at the discretion of the hotel management and subject to availability.&lt;br \\/&gt;\\r\\n&amp;bull; Port Blair airport has a small single runway and usually with a heavy rush of tourists. Request all guests to report at least 1.5hrs before departure flight timing.&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\":\"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\":1,\"Type\":\"Budget\",\"TPSysId\":\"43873\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"25410.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23850,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"20729.10\",\"priceWithoutBed\":\"16854.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16854.6,\"CEB\":20729.1,\"COSTDO\":25410,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":20729.1,\"COSTTO\":20729.1},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25077,\"priceDoubleOcc\":\"27250.65\",\"priceSingleOcc\":null,\"priceExtraBed\":\"20729.10\",\"priceWithoutBed\":\"16854.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27250.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16854.6,\"CEB\":20729.1,\"COSTDO\":27250.65,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":20729.1,\"COSTTO\":20729.1}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43874\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"32130.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28665,\"priceDoubleOcc\":\"32130.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"21735.00\",\"priceWithoutBed\":\"17377.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17377.5,\"CEB\":21735,\"COSTDO\":32130,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21735,\"COSTTO\":21735},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":29890,\"priceDoubleOcc\":\"33967.50\",\"priceSingleOcc\":null,\"priceExtraBed\":\"21735.00\",\"priceWithoutBed\":\"17377.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33967.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17377.5,\"CEB\":21735,\"COSTDO\":33967.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21735,\"COSTTO\":21735}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43875\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"45570.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":38150,\"priceDoubleOcc\":\"45570.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"23310.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":23310,\"COSTDO\":45570,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":23310,\"COSTTO\":23310},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":39375,\"priceDoubleOcc\":\"47407.50\",\"priceSingleOcc\":null,\"priceExtraBed\":\"23310.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47407.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":23310,\"COSTDO\":47407.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":23310,\"COSTTO\":23310}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"43873\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"26620.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24985,\"priceDoubleOcc\":\"26620.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"21716.20\",\"priceWithoutBed\":\"17657.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17657.2,\"CEB\":21716.2,\"COSTDO\":26620,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21716.2,\"COSTTO\":21716.2},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26271,\"priceDoubleOcc\":\"28548.30\",\"priceSingleOcc\":null,\"priceExtraBed\":\"21716.20\",\"priceWithoutBed\":\"17657.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28548.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17657.2,\"CEB\":21716.2,\"COSTDO\":28548.3,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21716.2,\"COSTTO\":21716.2}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43874\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"33660.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30030,\"priceDoubleOcc\":\"33660.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":22770,\"COSTDO\":33660,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22770,\"COSTTO\":22770},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":31313,\"priceDoubleOcc\":\"35585.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35585,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":22770,\"COSTDO\":35585,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22770,\"COSTTO\":22770}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43875\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":4,\"Price\":\"47740.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":39967,\"priceDoubleOcc\":\"47740.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"24420.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18150,\"CEB\":24420,\"COSTDO\":47740,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24420,\"COSTTO\":24420},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"49665.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"24420.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18150,\"CEB\":24420,\"COSTDO\":49665,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24420,\"COSTTO\":24420}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Please contact your travel expert for further information.&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-fare is calculated 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%&amp;nbsp;payment is to be made for domestic packages before 15 days of the departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment is to be made for international packages before 30 days of the 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;Cancellation policy charged by the local vendor depending on the season of travel will be applicable and the same needs to be accepted by the Guest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bookings Confirmed under Non-Refundable\\/Amendable\\/Cancellable&amp;nbsp;Policy will be charged 100% once the booking gets confirmed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any on tour issues\\/changes or cancellation needs to be settled by the local vendor\\/driver&amp;nbsp;during the course of the tour and no refunds or issues will be entertained post-tour completion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 30 days before the start date of the trip, 25% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 15-30 days before the start date of the trip, 50% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made within 0-15 days before the start date of the trip, 100% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of unforeseen weather conditions or government restrictions, certain trips or activities may get cancelled. In such cases, the operator will try their best to provide an alternate feasible. However, a cash refund will not be applicable for the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations are strictly subjected to cancellation policies mentioned on the website &amp;amp; are irrespective of the date of booking.&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;All rates mentioned above are&amp;nbsp;strictly for quotation purposes only.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No bookings or blocking have been made as yet.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;we hold the right to revoke the above offer at any point in time without any prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The above offer is not valid on blackout dates. Please speak to our holiday expert for further information.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmation of your selection is purely based on availability at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates \\/ Hotels \\/ Room types may vary at the time of actual booking and are subject to availability at the time of confirmation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the government taxes leads to an increase in surface transportation and land arrangements, which may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vehicle Booked on a Private basis will not be at disposal (Full day), it will be provided as per itinerary and point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Disposal vehicle will be only available to guests if it&amp;amp;39s mentioned in the Inclusions Tab. Vehicles with disposal facilities will operate only within the city limits and not intercity for day excursions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Disposal vehicles do not operate between 22:00 hrs to 07:00 hrs and supplement charges will be applicable to operate between these timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Missed Breakfast will be not be refunded due to early morning tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Menu in Meals will be as per hotels policy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-in &amp;amp; Check-out time: generally Check-in varies between 2 pm-3 pm and check-out before 12 pm (noon). Early check-in and late check-out are subject to hotel availability and may result in an extra charge equivalent to one full day room rate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unutilized services are not refundable.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any item NOT specified in the above itinerary will incur supplement charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any change in no of guests will undergo rate change&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary needs to be settled by guests directly on tour with the local vendor.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in taxes or fuel price, leading to an increase in cost on surface transportation &amp;amp; land arrangements, may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any special request such as adjacent rooms, interconnecting rooms, room on the same floor, 1 king-size \\/ 2 Twin bed, early check-in, late checkout, no\\/smoking room, etc. is subject to availability upon check-in of the guest and is at the hotel&amp;amp;39s discretion. We will request this for you as a priority.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Itineraries shared at the time of Quotation\\/Confirmations are tentative and may change on tour if required keeping in mind the safety of the passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours are operated as per driver cum guide and no separate guides are arranged unless mentioned in inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No amendment\\/changes in the tour itinerary will be entertained by local vendors while the guest is on tour as the services are pre-booked and incur cancellation charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Expenses incurred due to mishaps, landslides, strikes, political unrest, etc. In such cases, extra will be charged as per actual.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A credit card with the required limit is mandatory if the passengers wish&amp;nbsp;to book Self-driven vehicles.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We reserve the right to modify the itinerary at any point, due to reasons&lt;strong&gt;&lt;em&gt; including but not limited&lt;\\/em&gt;&lt;\\/strong&gt; to Force Majeure events, strikes, implementations of government rules\\/restrictions, lockdowns, fairs, festivals, weather conditions, traffic problems, overbooking of hotels\\/flights, cancellation \\/ re-routing of flights, closure of \\/ entry restrictions at a place of a visit, etc. While we will do our best to make suitable alternate arrangements, we would not be held liable for any refunds\\/compensation claims arising out of this.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We will not be liable for any cancellations due to any rules\\/restrictions imposed by the government of India.&amp;nbsp;The client has to bear all&amp;nbsp;charges imposed because of any such implementation.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"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;Any domestic or international airfare 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) 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;Supplement cost may apply when booking for long weekends \\/ holiday period.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ross Island entry tickets.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any extra excursions or sightseeing apart from the suggested tour itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porter Charges, Camera Ticket charges and Guide Charges including Cellular Jail &amp;amp; Ross Island.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like laundry, phone calls, tips to guides \\/drivers etc.&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 stay at selected category of hotel at Port Blair + 2 Nights stay at selected category of hotel at Havelock&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dailybreakfaston a set menu or buffet basis, as indicated in the meal plan (Except breakfast on day of arrival).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry tickets to all sightseeing places as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Ferry Tickets (Base Category): Port Blair -Havelock+Havelock -Port Blair (Aashi\\/ Sea Link\\/ Makruzz or Green Ocean, subject to availability)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers by 1 A\\/C Car in Port Blair \\/ Havelock (We provide AC Xylos \\/ Ertiga at Port Blair and Havelock) on point-to-point basis only.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Excursion to Elephant Beach or Lighthouse subject to weather conditions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary: Few mins of snorkelling at Elephant Beach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet and Greet Service at Airport.&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 travelling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof or Passport (For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covid-19 Vaccine Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test (If required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Vouchers&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;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;Mosquito Cream\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a travel house that specializes in personalized travel experiences. We have&amp;nbsp;traveled&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\":{\"316214\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[316214],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316217\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[316217],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316220\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[316220],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316223\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[316223],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316226\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[316226],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316229\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[316229],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"316232\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[316232],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island','','32511,11658',25410,49665,4,'3_1671624124_0.jpg',NULL,'[{\"day\":1,\"images\":\"2018062148-olw7wtmzk6ikwsvckj8ji1239cl4vxw42j4yxiyf0q.jpg\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2022-12-21 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-21 14:38:49','2022-12-21 00:00:00',1,1,'1','1','0','','','',NULL,'glimse-of-andaman',NULL,NULL,NULL,0),(4,43474,1,4539,1,0,0,'Honeymoon,Family,Religious,Heritage,Shopping and Nightlife,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":43474,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/simply-istanbul_1667302388\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":4539,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Simply Istanbul\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4934\",\"SupplierName\":\"55 DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Religious,Heritage,Shopping and Nightlife,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-12-21\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":524999,\"Name\":\"Ergenekon\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.0472153\",\"Long\":\"28.9849648\",\"Address\":\"Ergenekon, Dolapdere Cd. no:108, 34375 ?i?li\\/?stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":525000,\"Name\":\"Atro Hotel\",\"Star\":\"3.00\",\"Rating\":\"3.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"41.0472153\",\"Long\":\"28.9849648\",\"Address\":\"Ergenekon, Dolapdere Cd. no:108, 34375 Istanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;Situated in Istanbul, 400 m from Istanbul Congress Center, Atro Hotel features accommodation with a shared lounge, free private parking and a garden. A Turkish bath and a car rental service are available for guests. The accommodation offers a 24-hour front desk, room service and currency exchange for guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A free shuttle service to Taksime and Osmanbey metro is provided.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel offers 4-star accommodation with a sauna.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Popular points of interest near Atro Hotel include Taksim Square, Istiklal Street and Dolmabahce Clock Tower. The nearest airport is Istanbul Ataturk, 16 km from the accommodation, and the property offers a paid airport shuttle service.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_525000\\/4539_0f8ca5c421245bff30d469e4836b904a1667300915.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":403766,\"Name\":\"Taksim Express Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.0455067837571\",\"Long\":\"28.9863592386246\",\"Address\":\"Cumhuriyet Cad. No:135 Harbiye, Sisli, \"},\"Images\":[],\"CityId\":12905,\"Brief\":\"In the center of the city, TRYP Istanbul Taksim is just a few steps from Lutfi Kirdar Convention and Exhibition Centre. The hotel has a sauna, fitness center, and air-conditioned rooms with Wi-Fi.\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/17\\/cf13c025e2397b122b7234bf5b1f9e8e-60307.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":430883,\"Name\":\"Nova Plaza Taksim Square\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.039839733612\",\"Long\":\"28.984655449074\",\"Address\":\"Lamartin Caddesi 21, Beyoglu, 34200 Istanbul\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Nova Plaza Taksim Square is in the heart of Istanbul, walking distance from Taksim Square and Dot.  This hotel is close to Topkapi Palace and Suleymaniye Mosque.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 105 air-conditioned rooms featuring minibars and flat-screen televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as laptop-compatible safes and complimentary newspapers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Be sure to enjoy recreational amenities including a sauna and a fitness center. This hotel also features complimentary wireless Internet access, concierge services, and a television in a common area.&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, which serves breakfast, lunch, and dinner. Dining is also available at a coffee shop\\/cafe, and 24-hour room service is provided. 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 dry cleaning\\/laundry services, a 24-hour front desk, and luggage storage. This hotel has 3 meeting rooms available for events. A roundtrip airport shuttle 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\\/02\\/00\\/020085a296a6aa837e9617b5bc96c56078a435e0.jpg\",\"AccoAminitiesMask\":\"1010001010001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":4934,\"SupplierName\":\"55 DMC\",\"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\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"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\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, 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. Hand-painted blue tiles adorn the mosque&acirc;&euro;&trade;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&acirc;&euro;&trade;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"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\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em&Auml;&plusmn;nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&acirc;&euro;&trade; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&acirc;&euro;&trade;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"313585\",\"Title\":\"Arrival: Istanbul\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Marhaba! Arrive at Istanbul Airport!&amp;nbsp;On your way, you will also witness the twinkling lights of Europe from Tarabya to Bebek. Later, you are transferred to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in Istanbul, you are dropped to your hotel where you can relax and freshen up. In the evening, you can opt for a Boshphorus Dinner Cruise &lt;strong&gt;(Extra Cost)&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This night cruise is an enchanting experience and you will be served a &amp;lsquo;welcome drink&amp;rsquo; as soon as you board the cruise. Passing through the moonlight, your cruise will glide past Hotel Kempinski, Dolmabahce Palace on the European shores and the Beylerbeyi Palace, Kanlica and Anatolian Fortress from the Asian side. The Dinner Cruise will host you with live Turking entertainment including Turkish Folk &amp;amp; belly dance. The cruise will host an open buffet including Turkish specialities, unlimited local drinks, and barbeque.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524999,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":525000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":403766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":430883,\"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\":\"313588\",\"Title\":\"Istanbul City tour \",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, you proceed for a full-day Istanbul City Tour. You begin in the Old City of Istanbul and visit the &amp;lsquo;Sultanahmet Centre&amp;rsquo; in the heart of the old city. Next is the Hagia (St.) Sophia, a basilica known for its incredible architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Just opposite the Hagia is the Blue Mosque which is famous for its blue Iznik tiles and 6 unique minarets built in the name of Sultan Ahmet. There is also the Hippodrome, a center of all the sportive, political, and eventive activities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Obelisk of Theodosius, Serpentine Column, and German Fountain of Wilhelm II is the famous monuments decorating the Hippodrome.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Grand Bazaar in Istanbul is one of the most famous shopping destinations and hosts the biggest &amp;lsquo;souk&amp;rsquo; in the world with approx 4000 shops selling antiques, jewelry, gold, carpets, leatherware, and souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After lunch, you proceed to Topkapi Palace, the Imperial Residence of Ottoman sultans exhibiting Chinese porcelain, weapons, and calligraphy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will also visit the Suleymaniye Mosque - built in the name of Suleyman, the magnificent during the 16th century which is famous for its architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post the tour, you will be transferred to the hotel for a comfortable stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524999,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":525000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":403766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":430883,\"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\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":27505,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17287,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6070,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313591\",\"Title\":\"Bursa Day trip from Istanbul \",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today, we check out from the hotel and our journey begins. Drive to Bursa, former Ottoman Capital which was founded by the Bitnynian King Prusias I Cholus &amp;quot;the Lame&amp;quot; (reigned 228-185 BC), and he also gave his name -altered to the Hellenistic &amp;quot;Prusa&amp;quot;- the city. Legend has it that the great Carthaginian general Hannibal helped him to choose the site. The city is frequently cited as &amp;quot;Ye&amp;Aring;&amp;Yuml;il Bursa&amp;quot; (meaning &amp;quot;Green Bursa&amp;quot;) in a reference to the beautiful parks and gardens located across its urban tissue, as well as to the vast forests in rich variety that extend in its surrounding region.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The city is synonymous with the mountain Uludag which towers behind the city core and which is also a famous ski resort. The mausoleums of early Ottoman sultans are located in Bursa and the numerous edifices built throughout the Ottoman period constitute the city&amp;#39;s main landmarks. The surrounding fertile plain, its thermal baths, several interesting museums, notably a rich museum of archaeology, and a rather orderly urban growth are further principal elements that complete Bursa&amp;#39;s overall picture. We also visit Orhan Ghazi Mosque which is the first Ottoman Mosque with a lead dome built in 1392.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tophane District Clock Tower&lt;br \\/&gt;\\r\\nCity Panoramic Views&lt;br \\/&gt;\\r\\nOsman Ghazi &amp;amp; Orhan Ghazi Tomb&lt;br \\/&gt;\\r\\nCable Car To Uludag Mountain&lt;br \\/&gt;\\r\\nAfter a fun-filled day exploring Bursa, we check in at the hotel for a comfortable overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Distance from Istanbul to Bursa: 160 km approx.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Time: 2 hours 10 min approx. per way&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524999,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":525000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":403766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":430883,\"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\":17317,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313594\",\"Title\":\"Princess Island Tour (Istanbul)\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast At The Hotel, Departure From Hotel To Harbor.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nHighlights On Below:&lt;br \\/&gt;\\r\\nSailing To Buyukada Passing Through Kinaliada, Burgazada, Heybeliada. Spare Time On Island With Marvelous Beauty.&lt;br \\/&gt;\\r\\nBack To Harbor And Sailing Back To Istanbul Harbor.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch At The Local Restaurant.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nDrive Back To Hotel for a comfortable over night stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524999,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":525000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":403766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":430883,\"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\":5699,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313597\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Check Out From Hotel, Meet With Your Driver, The Private Transfer Will Start From Your Hotel To Istanbul Airport, It Will Take Around 1 Hr. 30 Min. According To Traffic, Have A Safe Flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"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\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"43474\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"25466.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":26072,\"priceDoubleOcc\":\"25466.00\",\"priceSingleOcc\":36380,\"priceExtraBed\":\"22202.50\",\"priceWithoutBed\":\"15515.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25466,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15515,\"CEB\":22202.5,\"COSTDO\":25466,\"COSTSO\":36380,\"CostQuad\":null,\"ACEB\":27285,\"COSTTO\":27285},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":26572,\"priceDoubleOcc\":\"26215.00\",\"priceSingleOcc\":37129,\"priceExtraBed\":\"22202.50\",\"priceWithoutBed\":\"15515.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26215,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15515,\"CEB\":22202.5,\"COSTDO\":26215,\"COSTSO\":37129,\"CostQuad\":null,\"ACEB\":27285,\"COSTTO\":27285},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":28712,\"priceDoubleOcc\":\"29425.00\",\"priceSingleOcc\":40339,\"priceExtraBed\":\"22202.50\",\"priceWithoutBed\":\"15515.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15515,\"CEB\":22202.5,\"COSTDO\":29425,\"COSTSO\":40339,\"CostQuad\":null,\"ACEB\":27285,\"COSTTO\":27285}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43475\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"26964.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":27606,\"priceDoubleOcc\":\"26964.00\",\"priceSingleOcc\":45475,\"priceExtraBed\":\"24075.00\",\"priceWithoutBed\":\"17120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26964,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17120,\"CEB\":24075,\"COSTDO\":26964,\"COSTSO\":45475,\"CostQuad\":null,\"ACEB\":28890,\"COSTTO\":28890},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":28177,\"priceDoubleOcc\":\"27820.00\",\"priceSingleOcc\":46331,\"priceExtraBed\":\"24075.00\",\"priceWithoutBed\":\"17120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17120,\"CEB\":24075,\"COSTDO\":27820,\"COSTSO\":46331,\"CostQuad\":null,\"ACEB\":28890,\"COSTTO\":28890},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":30103,\"priceDoubleOcc\":\"30709.00\",\"priceSingleOcc\":49220,\"priceExtraBed\":\"24075.00\",\"priceWithoutBed\":\"17120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30709,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17120,\"CEB\":24075,\"COSTDO\":30709,\"COSTSO\":49220,\"CostQuad\":null,\"ACEB\":28890,\"COSTTO\":28890}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43476\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"34240.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":34953,\"priceDoubleOcc\":\"34240.00\",\"priceSingleOcc\":59920,\"priceExtraBed\":\"28890.00\",\"priceWithoutBed\":\"19260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19260,\"CEB\":28890,\"COSTDO\":34240,\"COSTSO\":59920,\"CostQuad\":null,\"ACEB\":36380,\"COSTTO\":36380},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":35310,\"priceDoubleOcc\":\"34775.00\",\"priceSingleOcc\":60455,\"priceExtraBed\":\"28890.00\",\"priceWithoutBed\":\"19260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19260,\"CEB\":28890,\"COSTDO\":34775,\"COSTSO\":60455,\"CostQuad\":null,\"ACEB\":36380,\"COSTTO\":36380},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":37450,\"priceDoubleOcc\":\"37985.00\",\"priceSingleOcc\":63665,\"priceExtraBed\":\"28890.00\",\"priceWithoutBed\":\"19260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37985,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19260,\"CEB\":28890,\"COSTDO\":37985,\"COSTSO\":63665,\"CostQuad\":null,\"ACEB\":36380,\"COSTTO\":36380}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"43474\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"26656.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":27291,\"priceDoubleOcc\":\"26656.00\",\"priceSingleOcc\":38080,\"priceExtraBed\":\"23240.00\",\"priceWithoutBed\":\"16240.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26656,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16240,\"CEB\":23240,\"COSTDO\":26656,\"COSTSO\":38080,\"CostQuad\":null,\"ACEB\":28560,\"COSTTO\":28560},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":27813,\"priceDoubleOcc\":\"27440.00\",\"priceSingleOcc\":38864,\"priceExtraBed\":\"23240.00\",\"priceWithoutBed\":\"16240.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16240,\"CEB\":23240,\"COSTDO\":27440,\"COSTSO\":38864,\"CostQuad\":null,\"ACEB\":28560,\"COSTTO\":28560},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":30053,\"priceDoubleOcc\":\"30800.00\",\"priceSingleOcc\":42224,\"priceExtraBed\":\"23240.00\",\"priceWithoutBed\":\"16240.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16240,\"CEB\":23240,\"COSTDO\":30800,\"COSTSO\":42224,\"CostQuad\":null,\"ACEB\":28560,\"COSTTO\":28560}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43475\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"28224.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":28896,\"priceDoubleOcc\":\"28224.00\",\"priceSingleOcc\":47600,\"priceExtraBed\":\"25200.00\",\"priceWithoutBed\":\"17920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28224,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17920,\"CEB\":25200,\"COSTDO\":28224,\"COSTSO\":47600,\"CostQuad\":null,\"ACEB\":30240,\"COSTTO\":30240},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":29493,\"priceDoubleOcc\":\"29120.00\",\"priceSingleOcc\":48496,\"priceExtraBed\":\"25200.00\",\"priceWithoutBed\":\"17920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29120,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17920,\"CEB\":25200,\"COSTDO\":29120,\"COSTSO\":48496,\"CostQuad\":null,\"ACEB\":30240,\"COSTTO\":30240},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":31509,\"priceDoubleOcc\":\"32144.00\",\"priceSingleOcc\":51520,\"priceExtraBed\":\"25200.00\",\"priceWithoutBed\":\"17920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32144,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17920,\"CEB\":25200,\"COSTDO\":32144,\"COSTSO\":51520,\"CostQuad\":null,\"ACEB\":30240,\"COSTTO\":30240}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43476\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"35840.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":36587,\"priceDoubleOcc\":\"35840.00\",\"priceSingleOcc\":62720,\"priceExtraBed\":\"30240.00\",\"priceWithoutBed\":\"20160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20160,\"CEB\":30240,\"COSTDO\":35840,\"COSTSO\":62720,\"CostQuad\":null,\"ACEB\":38080,\"COSTTO\":38080},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":36960,\"priceDoubleOcc\":\"36400.00\",\"priceSingleOcc\":63280,\"priceExtraBed\":\"30240.00\",\"priceWithoutBed\":\"20160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20160,\"CEB\":30240,\"COSTDO\":36400,\"COSTSO\":63280,\"CostQuad\":null,\"ACEB\":38080,\"COSTTO\":38080},{\"From\":\"2022-11-01\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":39200,\"priceDoubleOcc\":\"39760.00\",\"priceSingleOcc\":66640,\"priceExtraBed\":\"30240.00\",\"priceWithoutBed\":\"20160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20160,\"CEB\":30240,\"COSTDO\":39760,\"COSTSO\":66640,\"CostQuad\":null,\"ACEB\":38080,\"COSTTO\":38080}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Please contact your travel expert for further information.&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-fare is calculated 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%&amp;nbsp;payment is to be made for domestic packages before 15 days of the departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment is to be made for international packages before 30 days of the 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;Cancellation policy charged by the local vendor depending on the season of travel will be applicable and the same needs to be accepted by the Guest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bookings Confirmed under Non-Refundable\\/Amendable\\/Cancellable&amp;nbsp;Policy will be charged 100% once the booking gets confirmed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any on tour issues\\/changes or cancellation needs to be settled by the local vendor\\/driver&amp;nbsp;during the course of the tour and no refunds or issues will be entertained post-tour completion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 30 days before the start date of the trip, 25% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 15-30 days before the start date of the trip, 50% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made within 0-15 days before the start date of the trip, 100% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of unforeseen weather conditions or government restrictions, certain trips or activities may get cancelled. In such cases, the operator will try their best to provide an alternate feasible. However, a cash refund will not be applicable for the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations are strictly subjected to cancellation policies mentioned on the website &amp;amp; are irrespective of the date of booking.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All rates mentioned above are&amp;nbsp;strictly for quotation purposes only.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We hold the right to revoke the above offer at any point in time without any prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The above offer is not valid on blackout dates. Please speak to our holiday expert for further information.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No bookings or blocking have been made as yet.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmation of your selection is purely based on availability at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates \\/ Hotels \\/ Room Types may vary at the time of actual booking and are subject to availability at the time of confirmation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The remittance Rate of Exchange will be applied as per the Supplier&amp;amp;39s Rate of the Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the rate of exchange leads to an increase in surface transportation and land arrangements, which may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours operated on a SIC basis will start from a central point located in the city Centre. Also for drop off some tours may or may not provide drop-off (if they will provide then drop off location will be again some city Centre point).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vehicle Booked on a Private basis will not be at disposal (Full day), it will be provided as per itinerary and point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Missed Breakfast will be not be refunded due to early morning tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Menu in Meals will be as per hotels policy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-in &amp;amp; Check-out time: generally Check-in varies between 2 pm-3 pm and check-out before 12 pm (noon). Early check-in and late check-out are subject to hotel availability and may result in an extra charge equivalent to one full day room rate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unutilized services are not refundable.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any item NOT specified in the above itinerary will incur supplement charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any change in no of guests will undergo rate change&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary needs to be settled by guests directly on tour with the local vendor.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in taxes or fuel price, leading to an increase in cost on surface transportation &amp;amp; land arrangements, may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any special request such as adjacent rooms, interconnecting rooms, room on the same floor, 1 king-size \\/ 2 Twin bed, early check-in, late checkout, no\\/smoking room, etc. is subject to availability upon check-in of the guest and is at the hotel&amp;amp;39s discretion. We will request this for you as a priority.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Itineraries shared at the time of Quotation\\/Confirmations are tentative and may change on tour if required keeping in mind the safety of the passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tours are operated as per driver cum guide and no separate guides are arranged unless mentioned in inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No amendment\\/changes in the tour itinerary will be entertained by local vendors while the guest is on tour as the services are pre-booked and incur cancellation charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Expenses incurred due to mishaps, landslides, strikes, political unrest, etc. In such cases, extra will be charged as per actual.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tourism dirham charges vary between hotels in Dubai (3* - 10 AED, 4* - 15 AED, 5* - 20 AED).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For Europe and USA sectors - Tips for a local guide, restaurant &amp;amp; driver vary between USD\\/EUR 2 - 4 per person per day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For Europe and USA sectors - Driving regulation\\/ Law for drivers maximum working hours are 12 hrs.\\/per day and driving hours 9 hours\\/day. ( Every 4 hours and a half must rest min 45 min). Everyday sleeping period: Minimum 11 hours before starting another day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A credit card with the required limit and an International Driving Permit (IDP) is mandatory if the passengers wish&amp;nbsp;to book Self-driven vehicles.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For any International destinations, Passport Validity should be at least 6 to 9 months after returning date depending on country to country.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST applicable on the total payable amount&amp;nbsp;unless mentioned in Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We reserve the right to modify the itinerary at any point, due to reasons including but not limited to Force Majeure events, strikes, implementations of government rules\\/restrictions, lockdowns, fairs, festivals, weather conditions, traffic problems, overbooking of hotels\\/flights, cancellation \\/ re-routing of flights, closure of \\/ entry restrictions at a place of a visit, etc. While we will do our best to make suitable alternate arrangements, we would not be held liable for any refunds\\/compensation claims arising out of this.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We will not be liable for any cancellations due to any rules\\/restrictions imposed by the government of India or the government of the country you are visiting. The client has to bear all&amp;nbsp;charges imposed because of any such implementation.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Please note,&amp;nbsp;as per Income Tax Department&amp;nbsp;rules,&amp;nbsp;you will be charged 5%&amp;nbsp;TCS&amp;nbsp;on the total invoicing amount for every confirmed booking at the time of final confirmation which will be redeemable when filing your personal IT returns (Effective from 01st&amp;nbsp;Oct&amp;nbsp;2020). Lead passenger Pan Card Copy will also be required as per RBI guidelines at the time of final confirmation.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&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;4 Nights accomodation as mentioned above.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast at the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport \\/ Hotel transfers on a private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Istanbul City Tour on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bursa Tour on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Princess Island Tour on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST &amp;amp; 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 travelling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof or Passport (For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covid-19 Vaccine Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test (If required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Vouchers&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;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;Mosquito Cream\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a travel house that specializes in personalized travel experiences. We have&amp;nbsp;traveled&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\":{\"313585\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[313585],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313588\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[313588],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313591\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[313591],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313594\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[313594],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313597\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[313597],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Istanbul','Istanbul,Central Asia,Turkey,Eurasia','','12905',25466,39760,4,'4_1682687663_0.jpg',NULL,'[{\"day\":1,\"images\":\"croatia.jpg\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2022-12-21 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'Turkey','222','2022-12-21 14:39:21','2022-12-21 00:00:00',1,1,'1','1','0','','','',NULL,'simply-istanbul',NULL,NULL,NULL,0),(5,36828,1,4539,1,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":36828,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/romantic_bali_1655720297.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The perfectly planned&amp;nbsp;Bali romantic packages&amp;nbsp;take you to some of the most popular attractions here, including Kuta, Ubud and Nusa Dua. Add to that a chance to indulge in fun water sports activities, and this 5 days in Bali itinerary&amp;nbsp;is ideal for newlyweds with a penchant for adventure.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":4539,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Bali\",\"SourcePlaceSysId\":2136,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Romantic Bali\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4739\",\"SupplierName\":\"Pacto bali\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-12-21\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510956,\"Name\":\"Siesta Legian Hotel\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.707295499999999\",\"Long\":\"115.1723983\",\"Address\":\"Jl. Bunut Sari No.8, Legian, Kec. Kuta, Kuta, Bali 80361, Indonesia\"},\"Images\":[],\"CityId\":2136,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4739,\"SupplierName\":\"Pacto bali\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":432094,\"Name\":\"EDEN HOTEL KUTA\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.73310378925604\",\"Long\":\"115.167404930619\",\"Address\":\"Jl Kartika Plaza Kuta 42 | Kuta Beach, Bali, Indonesia, 80361\"},\"Images\":[],\"CityId\":2136,\"Brief\":\"The hotel is featuring an outdoor pool, 3 dining options and a spa, EDEN Hotel Kuta Bali is a 5-minute walk from Discovery Mall. Guests can indulge in a soothing Balinese massage and access free Wi-Fi access. Rooms in EDEN Hotel Kuta Bali are decorated with green tones, giving a fresh feel to each unit. A minibar, electric teakettle and a flat-screen satellite TV are among the in-room comforts. Private bathrooms are well equipped with a hairdryer and slippers. The popular Kuta Beach is a 12-minute walk from the hotel, and Ngurah Rai International Airport is a 10-minute drive away. Airport transportation can be arranged for a fee. Providing free valet parking service, the hotel has a business center and a souvenir\\/gift shop. Luggage storage facilities and safes can be found at the 24-hour front desk. Guests enjoy the convenience of on-site laundry, car rental and babysitting services.The EDEN HOTEL KUTA is a Tourist, Family Style, Modern, Business, Leisure, Boutique, Honeymoon, Design Trendy, Child Friendly, Eco Friendly hotel. Located in KUTA area. Shopping is within walking distance and the nightlife\\/restaurants are within walking distance from the hotel.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/10\\/1045298\\/F97FfjAn_f3146542271b33b7f89b02f3a763df7e.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4739,\"SupplierName\":\"Pacto bali\",\"priceaditionals\":null,\"RoomTypeName\":\"Eden Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":385564,\"Name\":\"Pullman Bali Legian Nirwana\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.7095294969084271\",\"Long\":\"115.16746134962887\",\"Address\":\"Jl. Melasti No. 1 1  LEGIAN  ID, \"},\"Images\":[],\"CityId\":2136,\"Brief\":\"&quot;This luxurious beach hotel is strategically located in the Legian area just minutes from the beach. Just 1 km away, guests will find the centre of Kuta where there lies a selection of exciting bars, exquisite restaurants, shops and delightful attractions. The hotel is just a 15 minutes&#039; drive from Ngurah Rai International Airport.\\nThe hotel exudes elegance and luxury from the moment guests step through the doors. The rooms are beautifully-appointed featuring contrasting tones and wood elements, adding to the sense of calm and tranquility. The rooms and suites feature private balconies commanding spectacular views over the magnificent Indian Ocean and lush tropical garden. The hotel also provides a seemingly endless choice of leisure and recreational activities, offering fun and enjoyment for all the family. &quot;\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/12\\/122391\\/122391a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4739,\"SupplierName\":\"Pacto bali\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4739,\"SupplierName\":\"Pacto bali\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4739,\"SupplierName\":\"Pacto bali\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"264005\",\"Title\":\"Bali: Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Ngurah Rai International Airport, our representative will welcome you and you will be transferred to the chosen hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The rest of the day will be free at leisure by your own arrangement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to the hotel, stay overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":432094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Eden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":385564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe 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\":\"264008\",\"Title\":\"Bali: Free at Leisure\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;Breakfast at the hotel. Today is your day at leisure to relax in your accommodation and enjoy a spa and other hotel amenities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":432094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Eden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":385564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe 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\":\"264011\",\"Title\":\"Bali: Watersports &amp; Sunset Dinner Cruise\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast at the Hotel. Banana boat (a simple boat kind of banana, the boat min capacity 2 pax, max capacity 6 pax\\/boat, the boat will be dragged by a speed boat for a round and depends on guest request want to fall on the water or not). Flying fish ( a boat kind of kite, min and max capacity is 2 pax, the guest will be lean on the boat and flying, and the instructor will be in the middle of the boat for balancing ) Jet Ski is a kind of scooter min and the max capacity is 1 pax, will lead by an instructor, so 1 passenger and 1 instructor on the jet ski. Afterwards, you will be transferred to the harbour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bali is famous for its spectacular sunsets. On our sunset dinner cruise, you&amp;#39;ll dine on an international dinner buffet while watching the sky change from blue to shades of orange, red, and eventually purple. As the sun goes down, we&amp;#39;ll cruise around Benoa Harbour aboard Bali Hai II, our luxury motorized catamaran. After dark, you&amp;#39;ll be treated to a variety of entertaining performances, including live music, a 6-person cabaret, and a DJ. Dance the night away in front of a twinkling backdrop of stars and lights in the Harbour.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Inclusions of the dinner cruise: &amp;nbsp;Free transfers are provided on a SIC basis for the area (Kuta, Sanur, Jimbaran, Nusa Dua and Tanjung Benoa),&amp;nbsp;Welcome Drink - We greet you in the garden with a refreshing drink and canap?s, Buffet Dinner - Feast on a variety of dishes onboard at our international buffet, Live entertainment - Enjoy dinner whilst being serenaded with live musical entertainment.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to the hotel, stay overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":432094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Eden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":385564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":7918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264014\",\"Title\":\"Bali: Uluwatu Kecak Dance Performance\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast at the hotel. Morning&amp;#39;s activity will be free at leisure by your own arrangement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the early afternoon, you will be picked up and brought to visit Uluwatu Temple. Hanging on a cliff 100 meters above the ocean, the Uluwatu temple is a unique sight. The more so when you see the Kecak Dance, performed by about 50 singers. Matter of fact, this dance is the only one based on vocals rather than instruments, dating far back into Balinese history, prior to the use of instruments.&amp;nbsp;&lt;br \\/&gt;\\r\\nBack to the hotel, stay overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":432094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Eden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":385564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":3107,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264017\",\"Title\":\"Bali: Departure\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;After a delicious breakfast at the hotel, you are free at leisure until departure time to the airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Goodbye Bali!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"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\":\"36828\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20125,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":40250,\"priceExtraBed\":\"20125.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":20125,\"COSTDO\":20125,\"COSTSO\":40250,\"CostQuad\":null,\"ACEB\":20125,\"COSTTO\":20125}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36829\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18745.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"18745.00\",\"priceSingleOcc\":37490,\"priceExtraBed\":\"18745.00\",\"priceWithoutBed\":\"11500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18745,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11500,\"CEB\":18745,\"COSTDO\":18745,\"COSTSO\":37490,\"CostQuad\":null,\"ACEB\":18745,\"COSTTO\":18745},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"22425.00\",\"priceWithoutBed\":\"8050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8050,\"CEB\":22425,\"COSTDO\":22425,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":22425,\"COSTTO\":22425}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36830\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34316.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":34316,\"priceDoubleOcc\":\"34316.00\",\"priceSingleOcc\":68632,\"priceExtraBed\":\"34316.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34316,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":34316,\"COSTDO\":34316,\"COSTSO\":68632,\"CostQuad\":null,\"ACEB\":34316,\"COSTTO\":34316},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":32545,\"priceDoubleOcc\":\"32545.00\",\"priceSingleOcc\":65090,\"priceExtraBed\":\"32545.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32545,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32545,\"COSTDO\":32545,\"COSTSO\":65090,\"CostQuad\":null,\"ACEB\":32545,\"COSTTO\":32545},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35650,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":71300,\"priceExtraBed\":\"32200.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":32200,\"COSTDO\":35650,\"COSTSO\":71300,\"CostQuad\":null,\"ACEB\":35650,\"COSTTO\":35650}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36828\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":16500,\"COSTDO\":16500,\"COSTSO\":33000,\"CostQuad\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"19250.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":19250,\"COSTDO\":19250,\"COSTSO\":38500,\"CostQuad\":null,\"ACEB\":19250,\"COSTTO\":19250}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36829\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17930.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-08-31\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17930,\"priceDoubleOcc\":\"17930.00\",\"priceSingleOcc\":35860,\"priceExtraBed\":\"17930.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":17930,\"COSTDO\":17930,\"COSTSO\":35860,\"CostQuad\":null,\"ACEB\":17930,\"COSTTO\":17930},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"21450.00\",\"priceWithoutBed\":\"7700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7700,\"CEB\":21450,\"COSTDO\":21450,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":21450,\"COSTTO\":21450}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36830\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32824.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-06-20\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32824,\"priceDoubleOcc\":\"32824.00\",\"priceSingleOcc\":65648,\"priceExtraBed\":\"32824.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32824,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":32824,\"COSTDO\":32824,\"COSTSO\":65648,\"CostQuad\":null,\"ACEB\":32824,\"COSTTO\":32824},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":31130,\"priceDoubleOcc\":\"31130.00\",\"priceSingleOcc\":62260,\"priceExtraBed\":\"31130.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31130,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":31130,\"COSTDO\":31130,\"COSTSO\":62260,\"CostQuad\":null,\"ACEB\":31130,\"COSTTO\":31130},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100},{\"From\":\"2022-12-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34100,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"30800.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":30800,\"COSTDO\":34100,\"COSTSO\":68200,\"CostQuad\":null,\"ACEB\":34100,\"COSTTO\":34100}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Please contact your travel expert for further information.&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-fare is calculated 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%&amp;nbsp;payment is to be made for domestic packages before 15 days of the departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment is to be made for international packages before 30 days of the 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;Cancellation policy charged by the local vendor depending on the season of travel will be applicable and the same needs to be accepted by the Guest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bookings Confirmed under Non-Refundable\\/Amendable\\/Cancellable&amp;nbsp;Policy will be charged 100% once the booking gets confirmed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any on tour issues\\/changes or cancellation needs to be settled by the local vendor\\/driver&amp;nbsp;during the course of the tour and no refunds or issues will be entertained post-tour completion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 30 days before the start date of the trip, 25% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made 15-30 days before the start date of the trip, 50% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If cancellations are made within 0-15 days before the start date of the trip, 100% of the total tour cost will be charged as cancellation fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of unforeseen weather conditions or government restrictions, certain trips or activities may get cancelled. In such cases, the operator will try their best to provide an alternate feasible. However, a cash refund will not be applicable for the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations are strictly subjected to cancellation policies mentioned on the website &amp;amp; are irrespective of the date of booking.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All rates mentioned above are&amp;nbsp;strictly for quotation purposes only.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We hold the right to revoke the above offer at any point in time without any prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The above offer is not valid on blackout dates. Please speak to our holiday expert for further information.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No bookings or blocking have been made as yet.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmation of your selection is purely based on availability at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates \\/ Hotels \\/ Room Types may vary at the time of actual booking and are subject to availability at the time of confirmation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The remittance Rate of Exchange will be applied as per the Supplier&amp;amp;39s Rate of the Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the rate of exchange leads to an increase in surface transportation and land arrangements, which may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours operated on a SIC basis will start from a central point located in the city Centre. Also for drop off some tours may or may not provide drop-off (if they will provide then drop off location will be again some city Centre point).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Missed Breakfast will be not be refunded due to early morning tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-in &amp;amp; Check-out time: generally Check-in varies between 2 pm-3 pm and check-out before 12 pm (noon). Early check-in and late check-out are subject to hotel availability and may result in an extra charge equivalent to one full day room rate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unutilized services are not refundable.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any item NOT specified in the above itinerary will incur supplement charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any change in no of guests will undergo rate change&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary needs to be settled by guests directly on tour with the local vendor.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in taxes or fuel price, leading to an increase in cost on surface transportation &amp;amp; land arrangements, may come into effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any special request such as adjacent rooms, interconnecting rooms, room on the same floor, 1 king-size \\/ 2 Twin bed, early check-in, late checkout, no\\/smoking room, etc. is subject to availability upon check-in of the guest and is at the hotel&amp;#39;s discretion. We will request this for you as a priority.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Itineraries shared at the time of Quotation\\/Confirmations are tentative and may change on tour if required keeping in mind the safety of the passengers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tours are operated as per driver cum guide and no separate guides are arranged unless mentioned in inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No amendment\\/changes in the tour itinerary will be entertained by local vendors while the guest is on tour as the services are pre-booked and incur cancellation charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Expenses incurred due to mishaps, landslides, strikes, political unrest, etc. In such cases, extra will be charged as per actual.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For any International destinations, Passport Validity should be at least 6 to 9 months after returning date depending on country to country.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We reserve the right to modify the itinerary at any point, due to reasons including but not limited to Force Majeure events, strikes, implementations of government rules\\/restrictions, lockdowns, fairs, festivals, weather conditions, traffic problems, overbooking of hotels\\/flights, cancellation \\/ re-routing of flights, closure of \\/ entry restrictions at a place of a visit, etc. While we will do our best to make suitable alternate arrangements, we would not be held liable for any refunds\\/compensation claims arising out of this.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We will not be liable for any cancellations due to any rules\\/restrictions imposed by the government of India or the government of the country you are visiting. The client has to bear all&amp;nbsp;charges imposed because of any such implementation.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Please note,&amp;nbsp;as per Income Tax Department&amp;nbsp;rules,&amp;nbsp;you will be charged 5%&amp;nbsp;TCS&amp;nbsp;on the total invoicing amount for every confirmed booking at the time of final confirmation which will be redeemable when filing your personal IT returns (Effective from 01st&amp;nbsp;Oct&amp;nbsp;2020). Lead passenger Pan Card Copy will also be required as per RBI guidelines at the time of final confirmation.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"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;4 (Four) Nights stay at the lowest room category of the chosen hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast at the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full - Air Conditioned transportation with English Speaking Guide during tours and transfers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers (Airport-Hotel-Airport).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 X FD WaterSport (1xBanana Boat - 1xJetski - 1x Flying Fish) - Sunset Cruise Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 X HD Uluwatu Kecak Dance Tour.&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&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must-take list that you should carry while travelling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof or Passport (For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covid-19 Vaccine Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test (If required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Vouchers&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;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;Mosquito Cream\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a travel house that specializes in personalized travel experiences. We have&amp;nbsp;traveled&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\":{\"264005\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[264005],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264008\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[264008],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264011\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[264011],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264014\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[264014],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264017\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[264017],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient','','2136',16500,35650,4,'5_1682687603_0.webp',NULL,'[{\"day\":1,\"images\":\"cover_13-jan1.webp\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2022-12-21 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Indonesia','102','2022-12-21 14:39:51','2022-12-21 00:00:00',1,1,'1','1','0','','','',NULL,'romantic-bali',NULL,NULL,NULL,0),(6,44280,1,36973,1,0,0,'Adventure,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":44280,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/6135\\/package\\/images\\/wild-life_1669009107\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Bhopal\",\"DestinationPlacesSysId\":3139,\"SourcePlaces\":\"Pench\",\"SourcePlaceSysId\":21077,\"AgencyName\":\"Connect India\",\"Name\":\"Wild Life\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7439\",\"SupplierName\":\"Travel India Tourism Pvt Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Adventure,Wildlife,Family\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":21077,\"Title\":\"Pench\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":527170,\"Name\":\"MPT Kipling\'s Court\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.7326963\",\"Long\":\"79.34673099999999\",\"Address\":\"Awarghani, Kohka, Madhya Pradesh 480881, India\"},\"Images\":[],\"CityId\":21077,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527171,\"Name\":\"Hotel Rishi Regency\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.7770724\",\"Long\":\"80.34484669999999\",\"Address\":\"National Highway 44, Jabalpur Rd, Maharana Pratap Ward, Katni, Madhya Pradesh 483501, India\"},\"Images\":[],\"CityId\":21077,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527172,\"Name\":\"Village Machaan Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"21.7238675\",\"Long\":\"79.35279419999999\",\"Address\":\"Awarghani -Turia Road, Awarghani, Kohka, Madhya Pradesh 480881, India\"},\"Images\":[],\"CityId\":21077,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527173,\"Name\":\"Pench Jungle Camp\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":21077,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":23259,\"Title\":\"Pench National Park\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Pench National Park&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Pench National Park is located in the heart of India- Madhya Pradesh and covers a total area of 758 sq.km. It is located on the southern part of Madhya Pradesh, to be specific, in the districts of Seoni and Chhindwara, which also shares a boundary with Maharashtra. An additional area of 257 sq.km of this park lies in Maharashtra but is also accessible from Madhya Pradesh. A treasure of rich flora and fauna, this national park has its area segregated in two divisions- a) Priyadarshini National Park and Mowgli Pench Sanctuary which covers an area of 299 sq.km and b) 464 sq.km which is considered as the buffer area. The national park is named after the river- Pench, which while flowing from north to south, divides the national park in almost equal halves namely eastern and western halves. The park is just not home to wildlife but also to humans. There are 10 villages in and around the park out of which one is inside the park named Fulzari and other nine on the periphery.\\r\\n&lt;\\/p&gt;&lt;p&gt;Pench is primarily known for the Royal Bengal tiger. As per the latest Tiger Census, there are approximately 40 tigers in the park. It is also home to 39 species of mammals, 13 species of reptiles, and 3 species of amphibians. You will spot a number of chital, sambar, nilgai, wild pig, gaur and jackals here.&lt;\\/p&gt;&lt;p&gt;Not always a national park, Pench was declared as a sanctuary in 1965 but in 1975, it rose to the status of a National Park. And since it is home to a huge amount of tigers, it was established as a tiger reserve in 1992 and now is working under Project Tiger. Also the beauty of this place has been mentioned in the classic &acirc;&euro;&oelig; The Jungle Book&acirc;&euro;\\u009d by the great Rudyard Kipling.&lt;\\/p&gt;&lt;p&gt;Though Pench National Park looks very similar to the classic tale, it actually is more than that. The national park is home to flora species like Mahua, White Kulu, Salai, Saja, Bijiyasal, Dhaora, Amaltas and many other. Apart from trees, the park is filled with grasslands, plants and saplings.&lt;\\/p&gt;&lt;p&gt;&Acirc;&nbsp;&lt;span style=&quot;font-weight: bold&quot;&gt;The timings are from 6 AM to 11 AM in the mornings, and then from 3 PM to 6 PM.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21077\\/sightseeing\\/6135_1643106127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35399,\"Title\":\"Jungle safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35400,\"Title\":\"Night Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35401,\"Title\":\"Trekking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35402,\"Title\":\"Wild Life\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35403,\"Title\":\"Jungle Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35404,\"Title\":\"Travel Dance\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35405,\"Title\":\"Nature Walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23099,\"Title\":\"Pisanhari ki Madiya\",\"Description\":\"&lt;p&gt;Pisanhari ki Marhia is a Jain temple built in the 15th century and located in the city of Jabalpur in Madhya Pradesh, India. The temple is named after its creator, a local woman who, according to legend, paid for the construction of the temple with the money she saved from milling flour.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12971\\/sightseeing\\/6135_1642759925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":115,\"Title\":\"Balancing Rocks\",\"Description\":\"A balancing rock, also called balanced rock or precarious boulder, is a naturally occurring geological formation featuring a large rock or boulder, sometimes of substantial size, resting on other rocks, bedrock, or on glacial till. Some formations known by this name only appear to be balancing, but are in fact firmly connected to a base rock by a pedestal or stem.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.1485573,\"Long\":79.9094751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6230\\/thumb\\/Balancing Rocks_463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35406,\"Title\":\"Dhuandhar  Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35407,\"Title\":\"Bhedaghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":315,\"Title\":\"Chausath Yogini Temple\",\"Description\":\"Chausath Yogini Temple is one of the oldest heritage sites in India. It was built in the 10th Century AD by the Kalachuri kingdom and has a distinct resemblance to the temples of Khajuraho in structure. The temple is the abode of Goddess Durga along with 64 yoginis.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.0925329,\"Long\":80.0063285,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1379\\/thumb\\/Chausath Yogini Temple_631.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35408,\"Title\":\"Panchwati Nauka Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23072,\"Title\":\"Jatashankar\",\"Description\":\"&lt;p&gt;This natural cave is a Hindu shrine located in the northern part of Pachmarhi. Jatashankar lies in a deep ravine, with large boulders perched just above it. This cave is famed for featuring stalagmites, which are revered as naturally formed lingams. Jatashankar caves are incredibly popular among both tourists and pilgrims and are covered by many Pachmarhi sightseeing packages. There are two beautiful spring-fed ponds near these caves as well.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642678834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23078,\"Title\":\"Handi Kho\",\"Description\":\"&lt;p&gt;A mile long trek from Bee-Fall takes one to Handi Khoh, a horse shoe shaped ravine, the edge of which drops a sheer 100m into the earth. The valley is rich in medicinal plants.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749667.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23077,\"Title\":\"Priyadarshni Point\",\"Description\":\"&lt;p&gt;This vantage viewing point marks the place from where Pachmarhi was discovered by Captain Forsyth in 1857. The British developed Pachmarhi as a resort and their influence is embodied in its churches and colonial architecture.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749110.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16661,\"Title\":\"Mahadev dhupgarh satpura\",\"Description\":\"Mount Dhupgarh or Dhoopgarh is the highest point in the Mahadeo Hills, Madhya Pradesh, India. Located in Pachmarhi, it has an elevation of 1,352 metres.The top of the hill is a popular area to watch sunsets. Pachmarhi Hill station is located close to the peak.\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Mahadev_dhupgarh_satpura_36727_1592202350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23073,\"Title\":\"Gupt Mahadev Temple\",\"Description\":\"&lt;p&gt;This is a 40 feet long cave that features a Shiva lingam. The entrance to the Gupt Mahadev Temple is an extremely narrow path, which can be passed by eight people at a time. This path leads to the &acirc;&euro;&tilde;Bade Mahadev&acirc;&euro;&trade; that is featured here. At the entrance of the cave, you can also find an enshrined idol of Lord Hanuman. This auspicious temple is regarded as being an important element of any Pachmarhi tour itinerary.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35409,\"Title\":\"Amba Mai\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23070,\"Title\":\"Pandav Gufa\",\"Description\":\"&lt;p&gt;There are five distinct rock-cut temples in Pachmarhi that are popularly known as Pandav Gufas or caves. According to certain mythological tales, it is believed that the Pandavas took shelter in these caves during their exile, and hence are popular tourist sites. Archaeological evidence, on the other hand, claims that these caves were constructed by Buddhist monks sometime during the 1st century BC. Regardless of their origin, the caves are a must-visit destination for all visitors on Pachmarhi tours.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35410,\"Title\":\"Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35411,\"Title\":\"Apsara Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35412,\"Title\":\"Silvar Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35413,\"Title\":\"Panchali Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16660,\"Title\":\"Bee Fall\",\"Description\":\"Bee falls is a waterfall in Panchmarhi hills and is frequented by visitors who travels in Panchmarhi. The water fall is surrounded by dense forest and with beautiful and awe-striking scenario which beautify the sight even more\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Bee_Fall_36727_1592201799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35414,\"Title\":\"Reechgarh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35415,\"Title\":\"Rajendra Giri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23060,\"Title\":\"Bhimbetka\",\"Description\":\"&lt;p&gt;Cave paintings dating back to approximately 30,000 years. Rock shelters that were home to humans, millennia ago. And a rich flora and fauna surrounding these, indeed, make Bhimbetka a gift to us from our earliest ancestors. The Bhimbetka Rock Shelter has the oldest-known rock art in India, as well as is one of the largest prehistoric complexes to be seen. \\r\\n&lt;\\/p&gt;&lt;p&gt;An archaeological treasure, Bhimbetka has around 243 rock shelters and have earned the honour of UNESCO World Heritage Site. The paintings found in the rock shelters here have a striking resemblance to the ones discovered in Kakadu National Park in Australia to the cave paintings of Bushmen in Kalahari Desert and Upper Paleolithic Lascaux cave paintings in France.\\r\\n&lt;\\/p&gt;&lt;p&gt;A walkthrough these ancient naturally carved rocks surrounded by dense forests of Bhimbetka will bring alive child-like wonder in you.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642672017.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23056,\"Title\":\"Upper Lake\",\"Description\":\"&lt;p&gt;The Upper Lake is famously known as &acirc;&euro;&tilde;Bada Talab&acirc;&euro;&trade; and is also one of the best places to visit in Bhopal for couples. From enjoying the serenity of the place to clicking some gorgeous pictures, one can also take out some time for the boating activity that travellers love to do here. The upper lake was made in the 11th Century and since then it is the largest manmade lake in the entire country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642669465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35364,\"Title\":\"Lower Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23050,\"Title\":\"Indira Gandhi Rashtriya Manav Sangrahalaya\",\"Description\":\"&lt;p&gt;The Indira Gandhi Rashtriya Manav Sangrahalaya is spearheading an interactive Museum Movement in India, to celebrate the simultaneous validity of various valuable cultural patterns evolved over thousands of years. The Organization is working for national integration, and promotes research and training and inter-institutional networking for salvage and revitalization of vanishing but valuable cultural traditions and highlights the unity and diversity and organizes exhibitions to present an integrated story of biological evolutions and variations. The IGRMS, through its exhibitions and salvage activities, demonstrates the aesthetic qualities of India&#039;s traditional life styles local knowledge and mores, and caution the people against unprecedented destruction of ecology, environment, local values, customs, etc. In IGRMS they have categorized their collection in 17 functional categories of Agriculture, Animal Husbandry, Art and Craft, Basketry, Fishing, Games &amp; Amusement, Household, Hunting, Musical, Narcotics, Ornament, Ritual, Spinning &amp; Weaving, Textile, Travel &amp; Transport, Tools and Weapons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642662298.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23051,\"Title\":\"Madhya Pradesh Tribal Museum\",\"Description\":\"&lt;p&gt;Established in 2013, the museum was inaugurated by former President Pranab Mukherjee and designed by Revathi Kamath. The Tribal Museum in Bhopal was created with the hard work and labors of numerous tribal artists, reaching there in shifts from each corner of the state. Made out of conventional materials such as mud, jute, clay, wood, iron, leaves, hemp, straw along with glass, acrylic, and canvas, the museum is a must-visit in Bhopal. The Tribal Museum is not like any usual museum where dead objects are stored and exhibits are showcased with some contextual information. Rather, it is an ode to the state&acirc;&euro;&trade;s tribal art and culture, celebrating the life lived by the seven indigenous tribes of Madhya Pradesh, including the Gond, Sahariya, Bhariya, Kol, Baiga, Korku, and Bhil. So, the theme of the museum is about tribal life and facts of local aesthetics and traditions. The purpose of the Tribal Museum Bhopal is to raise awareness about tribal culture and life among the general public.&lt;\\/p&gt;&lt;p&gt;One of the most interesting places in your Bhopal sightseeing tour, the museum has a small boutique shop of artefacts, an auditorium, and a restaurant. The plays, poetry, musical performances, and cultural shows, organized at the museum&acirc;&euro;&trade;s amphitheater provide people with an actual inside look at tribal life and culture. Apart from this, you can shop for souvenirs, tribal jewellery, regional books, and other artefacts from the museum shop.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642664003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null}]}},{\"CityId\":12971,\"Title\":\"Jabalpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":527176,\"Name\":\"Rishi Regency Jabalpur\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12971,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527177,\"Name\":\"MPT Kalchuri Huts\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12971,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527178,\"Name\":\"Narmada Jacksons\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.4080078\",\"Long\":\"80.31914929999999\",\"Address\":\"112 A, Rajiv Vihar, Naubasta, Kanpur, Uttar Pradesh 208021, India\"},\"Images\":[],\"CityId\":12971,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Executive\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":23259,\"Title\":\"Pench National Park\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Pench National Park&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Pench National Park is located in the heart of India- Madhya Pradesh and covers a total area of 758 sq.km. It is located on the southern part of Madhya Pradesh, to be specific, in the districts of Seoni and Chhindwara, which also shares a boundary with Maharashtra. An additional area of 257 sq.km of this park lies in Maharashtra but is also accessible from Madhya Pradesh. A treasure of rich flora and fauna, this national park has its area segregated in two divisions- a) Priyadarshini National Park and Mowgli Pench Sanctuary which covers an area of 299 sq.km and b) 464 sq.km which is considered as the buffer area. The national park is named after the river- Pench, which while flowing from north to south, divides the national park in almost equal halves namely eastern and western halves. The park is just not home to wildlife but also to humans. There are 10 villages in and around the park out of which one is inside the park named Fulzari and other nine on the periphery.\\r\\n&lt;\\/p&gt;&lt;p&gt;Pench is primarily known for the Royal Bengal tiger. As per the latest Tiger Census, there are approximately 40 tigers in the park. It is also home to 39 species of mammals, 13 species of reptiles, and 3 species of amphibians. You will spot a number of chital, sambar, nilgai, wild pig, gaur and jackals here.&lt;\\/p&gt;&lt;p&gt;Not always a national park, Pench was declared as a sanctuary in 1965 but in 1975, it rose to the status of a National Park. And since it is home to a huge amount of tigers, it was established as a tiger reserve in 1992 and now is working under Project Tiger. Also the beauty of this place has been mentioned in the classic &acirc;&euro;&oelig; The Jungle Book&acirc;&euro;\\u009d by the great Rudyard Kipling.&lt;\\/p&gt;&lt;p&gt;Though Pench National Park looks very similar to the classic tale, it actually is more than that. The national park is home to flora species like Mahua, White Kulu, Salai, Saja, Bijiyasal, Dhaora, Amaltas and many other. Apart from trees, the park is filled with grasslands, plants and saplings.&lt;\\/p&gt;&lt;p&gt;&Acirc;&nbsp;&lt;span style=&quot;font-weight: bold&quot;&gt;The timings are from 6 AM to 11 AM in the mornings, and then from 3 PM to 6 PM.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21077\\/sightseeing\\/6135_1643106127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35399,\"Title\":\"Jungle safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35400,\"Title\":\"Night Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35401,\"Title\":\"Trekking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35402,\"Title\":\"Wild Life\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35403,\"Title\":\"Jungle Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35404,\"Title\":\"Travel Dance\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35405,\"Title\":\"Nature Walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23099,\"Title\":\"Pisanhari ki Madiya\",\"Description\":\"&lt;p&gt;Pisanhari ki Marhia is a Jain temple built in the 15th century and located in the city of Jabalpur in Madhya Pradesh, India. The temple is named after its creator, a local woman who, according to legend, paid for the construction of the temple with the money she saved from milling flour.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12971\\/sightseeing\\/6135_1642759925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":115,\"Title\":\"Balancing Rocks\",\"Description\":\"A balancing rock, also called balanced rock or precarious boulder, is a naturally occurring geological formation featuring a large rock or boulder, sometimes of substantial size, resting on other rocks, bedrock, or on glacial till. Some formations known by this name only appear to be balancing, but are in fact firmly connected to a base rock by a pedestal or stem.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.1485573,\"Long\":79.9094751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6230\\/thumb\\/Balancing Rocks_463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35406,\"Title\":\"Dhuandhar  Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35407,\"Title\":\"Bhedaghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":315,\"Title\":\"Chausath Yogini Temple\",\"Description\":\"Chausath Yogini Temple is one of the oldest heritage sites in India. It was built in the 10th Century AD by the Kalachuri kingdom and has a distinct resemblance to the temples of Khajuraho in structure. The temple is the abode of Goddess Durga along with 64 yoginis.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.0925329,\"Long\":80.0063285,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1379\\/thumb\\/Chausath Yogini Temple_631.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35408,\"Title\":\"Panchwati Nauka Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23072,\"Title\":\"Jatashankar\",\"Description\":\"&lt;p&gt;This natural cave is a Hindu shrine located in the northern part of Pachmarhi. Jatashankar lies in a deep ravine, with large boulders perched just above it. This cave is famed for featuring stalagmites, which are revered as naturally formed lingams. Jatashankar caves are incredibly popular among both tourists and pilgrims and are covered by many Pachmarhi sightseeing packages. There are two beautiful spring-fed ponds near these caves as well.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642678834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23078,\"Title\":\"Handi Kho\",\"Description\":\"&lt;p&gt;A mile long trek from Bee-Fall takes one to Handi Khoh, a horse shoe shaped ravine, the edge of which drops a sheer 100m into the earth. The valley is rich in medicinal plants.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749667.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23077,\"Title\":\"Priyadarshni Point\",\"Description\":\"&lt;p&gt;This vantage viewing point marks the place from where Pachmarhi was discovered by Captain Forsyth in 1857. The British developed Pachmarhi as a resort and their influence is embodied in its churches and colonial architecture.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749110.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16661,\"Title\":\"Mahadev dhupgarh satpura\",\"Description\":\"Mount Dhupgarh or Dhoopgarh is the highest point in the Mahadeo Hills, Madhya Pradesh, India. Located in Pachmarhi, it has an elevation of 1,352 metres.The top of the hill is a popular area to watch sunsets. Pachmarhi Hill station is located close to the peak.\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Mahadev_dhupgarh_satpura_36727_1592202350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23073,\"Title\":\"Gupt Mahadev Temple\",\"Description\":\"&lt;p&gt;This is a 40 feet long cave that features a Shiva lingam. The entrance to the Gupt Mahadev Temple is an extremely narrow path, which can be passed by eight people at a time. This path leads to the &acirc;&euro;&tilde;Bade Mahadev&acirc;&euro;&trade; that is featured here. At the entrance of the cave, you can also find an enshrined idol of Lord Hanuman. This auspicious temple is regarded as being an important element of any Pachmarhi tour itinerary.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35409,\"Title\":\"Amba Mai\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23070,\"Title\":\"Pandav Gufa\",\"Description\":\"&lt;p&gt;There are five distinct rock-cut temples in Pachmarhi that are popularly known as Pandav Gufas or caves. According to certain mythological tales, it is believed that the Pandavas took shelter in these caves during their exile, and hence are popular tourist sites. Archaeological evidence, on the other hand, claims that these caves were constructed by Buddhist monks sometime during the 1st century BC. Regardless of their origin, the caves are a must-visit destination for all visitors on Pachmarhi tours.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35410,\"Title\":\"Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35411,\"Title\":\"Apsara Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35412,\"Title\":\"Silvar Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35413,\"Title\":\"Panchali Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16660,\"Title\":\"Bee Fall\",\"Description\":\"Bee falls is a waterfall in Panchmarhi hills and is frequented by visitors who travels in Panchmarhi. The water fall is surrounded by dense forest and with beautiful and awe-striking scenario which beautify the sight even more\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Bee_Fall_36727_1592201799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35414,\"Title\":\"Reechgarh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35415,\"Title\":\"Rajendra Giri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23060,\"Title\":\"Bhimbetka\",\"Description\":\"&lt;p&gt;Cave paintings dating back to approximately 30,000 years. Rock shelters that were home to humans, millennia ago. And a rich flora and fauna surrounding these, indeed, make Bhimbetka a gift to us from our earliest ancestors. The Bhimbetka Rock Shelter has the oldest-known rock art in India, as well as is one of the largest prehistoric complexes to be seen. \\r\\n&lt;\\/p&gt;&lt;p&gt;An archaeological treasure, Bhimbetka has around 243 rock shelters and have earned the honour of UNESCO World Heritage Site. The paintings found in the rock shelters here have a striking resemblance to the ones discovered in Kakadu National Park in Australia to the cave paintings of Bushmen in Kalahari Desert and Upper Paleolithic Lascaux cave paintings in France.\\r\\n&lt;\\/p&gt;&lt;p&gt;A walkthrough these ancient naturally carved rocks surrounded by dense forests of Bhimbetka will bring alive child-like wonder in you.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642672017.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23056,\"Title\":\"Upper Lake\",\"Description\":\"&lt;p&gt;The Upper Lake is famously known as &acirc;&euro;&tilde;Bada Talab&acirc;&euro;&trade; and is also one of the best places to visit in Bhopal for couples. From enjoying the serenity of the place to clicking some gorgeous pictures, one can also take out some time for the boating activity that travellers love to do here. The upper lake was made in the 11th Century and since then it is the largest manmade lake in the entire country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642669465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35364,\"Title\":\"Lower Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23050,\"Title\":\"Indira Gandhi Rashtriya Manav Sangrahalaya\",\"Description\":\"&lt;p&gt;The Indira Gandhi Rashtriya Manav Sangrahalaya is spearheading an interactive Museum Movement in India, to celebrate the simultaneous validity of various valuable cultural patterns evolved over thousands of years. The Organization is working for national integration, and promotes research and training and inter-institutional networking for salvage and revitalization of vanishing but valuable cultural traditions and highlights the unity and diversity and organizes exhibitions to present an integrated story of biological evolutions and variations. The IGRMS, through its exhibitions and salvage activities, demonstrates the aesthetic qualities of India&#039;s traditional life styles local knowledge and mores, and caution the people against unprecedented destruction of ecology, environment, local values, customs, etc. In IGRMS they have categorized their collection in 17 functional categories of Agriculture, Animal Husbandry, Art and Craft, Basketry, Fishing, Games &amp; Amusement, Household, Hunting, Musical, Narcotics, Ornament, Ritual, Spinning &amp; Weaving, Textile, Travel &amp; Transport, Tools and Weapons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642662298.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23051,\"Title\":\"Madhya Pradesh Tribal Museum\",\"Description\":\"&lt;p&gt;Established in 2013, the museum was inaugurated by former President Pranab Mukherjee and designed by Revathi Kamath. The Tribal Museum in Bhopal was created with the hard work and labors of numerous tribal artists, reaching there in shifts from each corner of the state. Made out of conventional materials such as mud, jute, clay, wood, iron, leaves, hemp, straw along with glass, acrylic, and canvas, the museum is a must-visit in Bhopal. The Tribal Museum is not like any usual museum where dead objects are stored and exhibits are showcased with some contextual information. Rather, it is an ode to the state&acirc;&euro;&trade;s tribal art and culture, celebrating the life lived by the seven indigenous tribes of Madhya Pradesh, including the Gond, Sahariya, Bhariya, Kol, Baiga, Korku, and Bhil. So, the theme of the museum is about tribal life and facts of local aesthetics and traditions. The purpose of the Tribal Museum Bhopal is to raise awareness about tribal culture and life among the general public.&lt;\\/p&gt;&lt;p&gt;One of the most interesting places in your Bhopal sightseeing tour, the museum has a small boutique shop of artefacts, an auditorium, and a restaurant. The plays, poetry, musical performances, and cultural shows, organized at the museum&acirc;&euro;&trade;s amphitheater provide people with an actual inside look at tribal life and culture. Apart from this, you can shop for souvenirs, tribal jewellery, regional books, and other artefacts from the museum shop.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642664003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null}]}},{\"CityId\":36727,\"Title\":\"Pachmarhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":527187,\"Name\":\"MPT Highland pachmarhi\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":36727,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527188,\"Name\":\"MPT Champak Bungalow\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.4585202\",\"Long\":\"78.41696089999999\",\"Address\":\"Near Pachmarhi Jheel, Pachmarhi, Madhya Pradesh 461881, India\"},\"Images\":[],\"CityId\":36727,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527189,\"Name\":\"The Summer House\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.4748522\",\"Long\":\"78.4267775\",\"Address\":\"The Summer House, Civil Lines, Pachmarhi, Madhya Pradesh 461881, India\"},\"Images\":[],\"CityId\":36727,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"A\\/c Executive\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":23259,\"Title\":\"Pench National Park\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Pench National Park&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Pench National Park is located in the heart of India- Madhya Pradesh and covers a total area of 758 sq.km. It is located on the southern part of Madhya Pradesh, to be specific, in the districts of Seoni and Chhindwara, which also shares a boundary with Maharashtra. An additional area of 257 sq.km of this park lies in Maharashtra but is also accessible from Madhya Pradesh. A treasure of rich flora and fauna, this national park has its area segregated in two divisions- a) Priyadarshini National Park and Mowgli Pench Sanctuary which covers an area of 299 sq.km and b) 464 sq.km which is considered as the buffer area. The national park is named after the river- Pench, which while flowing from north to south, divides the national park in almost equal halves namely eastern and western halves. The park is just not home to wildlife but also to humans. There are 10 villages in and around the park out of which one is inside the park named Fulzari and other nine on the periphery.\\r\\n&lt;\\/p&gt;&lt;p&gt;Pench is primarily known for the Royal Bengal tiger. As per the latest Tiger Census, there are approximately 40 tigers in the park. It is also home to 39 species of mammals, 13 species of reptiles, and 3 species of amphibians. You will spot a number of chital, sambar, nilgai, wild pig, gaur and jackals here.&lt;\\/p&gt;&lt;p&gt;Not always a national park, Pench was declared as a sanctuary in 1965 but in 1975, it rose to the status of a National Park. And since it is home to a huge amount of tigers, it was established as a tiger reserve in 1992 and now is working under Project Tiger. Also the beauty of this place has been mentioned in the classic &acirc;&euro;&oelig; The Jungle Book&acirc;&euro;\\u009d by the great Rudyard Kipling.&lt;\\/p&gt;&lt;p&gt;Though Pench National Park looks very similar to the classic tale, it actually is more than that. The national park is home to flora species like Mahua, White Kulu, Salai, Saja, Bijiyasal, Dhaora, Amaltas and many other. Apart from trees, the park is filled with grasslands, plants and saplings.&lt;\\/p&gt;&lt;p&gt;&Acirc;&nbsp;&lt;span style=&quot;font-weight: bold&quot;&gt;The timings are from 6 AM to 11 AM in the mornings, and then from 3 PM to 6 PM.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21077\\/sightseeing\\/6135_1643106127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35399,\"Title\":\"Jungle safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35400,\"Title\":\"Night Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35401,\"Title\":\"Trekking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35402,\"Title\":\"Wild Life\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35403,\"Title\":\"Jungle Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35404,\"Title\":\"Travel Dance\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35405,\"Title\":\"Nature Walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23099,\"Title\":\"Pisanhari ki Madiya\",\"Description\":\"&lt;p&gt;Pisanhari ki Marhia is a Jain temple built in the 15th century and located in the city of Jabalpur in Madhya Pradesh, India. The temple is named after its creator, a local woman who, according to legend, paid for the construction of the temple with the money she saved from milling flour.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12971\\/sightseeing\\/6135_1642759925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":115,\"Title\":\"Balancing Rocks\",\"Description\":\"A balancing rock, also called balanced rock or precarious boulder, is a naturally occurring geological formation featuring a large rock or boulder, sometimes of substantial size, resting on other rocks, bedrock, or on glacial till. Some formations known by this name only appear to be balancing, but are in fact firmly connected to a base rock by a pedestal or stem.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.1485573,\"Long\":79.9094751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6230\\/thumb\\/Balancing Rocks_463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35406,\"Title\":\"Dhuandhar  Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35407,\"Title\":\"Bhedaghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":315,\"Title\":\"Chausath Yogini Temple\",\"Description\":\"Chausath Yogini Temple is one of the oldest heritage sites in India. It was built in the 10th Century AD by the Kalachuri kingdom and has a distinct resemblance to the temples of Khajuraho in structure. The temple is the abode of Goddess Durga along with 64 yoginis.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.0925329,\"Long\":80.0063285,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1379\\/thumb\\/Chausath Yogini Temple_631.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35408,\"Title\":\"Panchwati Nauka Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23072,\"Title\":\"Jatashankar\",\"Description\":\"&lt;p&gt;This natural cave is a Hindu shrine located in the northern part of Pachmarhi. Jatashankar lies in a deep ravine, with large boulders perched just above it. This cave is famed for featuring stalagmites, which are revered as naturally formed lingams. Jatashankar caves are incredibly popular among both tourists and pilgrims and are covered by many Pachmarhi sightseeing packages. There are two beautiful spring-fed ponds near these caves as well.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642678834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23078,\"Title\":\"Handi Kho\",\"Description\":\"&lt;p&gt;A mile long trek from Bee-Fall takes one to Handi Khoh, a horse shoe shaped ravine, the edge of which drops a sheer 100m into the earth. The valley is rich in medicinal plants.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749667.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23077,\"Title\":\"Priyadarshni Point\",\"Description\":\"&lt;p&gt;This vantage viewing point marks the place from where Pachmarhi was discovered by Captain Forsyth in 1857. The British developed Pachmarhi as a resort and their influence is embodied in its churches and colonial architecture.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749110.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16661,\"Title\":\"Mahadev dhupgarh satpura\",\"Description\":\"Mount Dhupgarh or Dhoopgarh is the highest point in the Mahadeo Hills, Madhya Pradesh, India. Located in Pachmarhi, it has an elevation of 1,352 metres.The top of the hill is a popular area to watch sunsets. Pachmarhi Hill station is located close to the peak.\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Mahadev_dhupgarh_satpura_36727_1592202350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23073,\"Title\":\"Gupt Mahadev Temple\",\"Description\":\"&lt;p&gt;This is a 40 feet long cave that features a Shiva lingam. The entrance to the Gupt Mahadev Temple is an extremely narrow path, which can be passed by eight people at a time. This path leads to the &acirc;&euro;&tilde;Bade Mahadev&acirc;&euro;&trade; that is featured here. At the entrance of the cave, you can also find an enshrined idol of Lord Hanuman. This auspicious temple is regarded as being an important element of any Pachmarhi tour itinerary.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35409,\"Title\":\"Amba Mai\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23070,\"Title\":\"Pandav Gufa\",\"Description\":\"&lt;p&gt;There are five distinct rock-cut temples in Pachmarhi that are popularly known as Pandav Gufas or caves. According to certain mythological tales, it is believed that the Pandavas took shelter in these caves during their exile, and hence are popular tourist sites. Archaeological evidence, on the other hand, claims that these caves were constructed by Buddhist monks sometime during the 1st century BC. Regardless of their origin, the caves are a must-visit destination for all visitors on Pachmarhi tours.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35410,\"Title\":\"Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35411,\"Title\":\"Apsara Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35412,\"Title\":\"Silvar Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35413,\"Title\":\"Panchali Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16660,\"Title\":\"Bee Fall\",\"Description\":\"Bee falls is a waterfall in Panchmarhi hills and is frequented by visitors who travels in Panchmarhi. The water fall is surrounded by dense forest and with beautiful and awe-striking scenario which beautify the sight even more\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Bee_Fall_36727_1592201799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35414,\"Title\":\"Reechgarh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35415,\"Title\":\"Rajendra Giri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23060,\"Title\":\"Bhimbetka\",\"Description\":\"&lt;p&gt;Cave paintings dating back to approximately 30,000 years. Rock shelters that were home to humans, millennia ago. And a rich flora and fauna surrounding these, indeed, make Bhimbetka a gift to us from our earliest ancestors. The Bhimbetka Rock Shelter has the oldest-known rock art in India, as well as is one of the largest prehistoric complexes to be seen. \\r\\n&lt;\\/p&gt;&lt;p&gt;An archaeological treasure, Bhimbetka has around 243 rock shelters and have earned the honour of UNESCO World Heritage Site. The paintings found in the rock shelters here have a striking resemblance to the ones discovered in Kakadu National Park in Australia to the cave paintings of Bushmen in Kalahari Desert and Upper Paleolithic Lascaux cave paintings in France.\\r\\n&lt;\\/p&gt;&lt;p&gt;A walkthrough these ancient naturally carved rocks surrounded by dense forests of Bhimbetka will bring alive child-like wonder in you.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642672017.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23056,\"Title\":\"Upper Lake\",\"Description\":\"&lt;p&gt;The Upper Lake is famously known as &acirc;&euro;&tilde;Bada Talab&acirc;&euro;&trade; and is also one of the best places to visit in Bhopal for couples. From enjoying the serenity of the place to clicking some gorgeous pictures, one can also take out some time for the boating activity that travellers love to do here. The upper lake was made in the 11th Century and since then it is the largest manmade lake in the entire country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642669465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35364,\"Title\":\"Lower Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23050,\"Title\":\"Indira Gandhi Rashtriya Manav Sangrahalaya\",\"Description\":\"&lt;p&gt;The Indira Gandhi Rashtriya Manav Sangrahalaya is spearheading an interactive Museum Movement in India, to celebrate the simultaneous validity of various valuable cultural patterns evolved over thousands of years. The Organization is working for national integration, and promotes research and training and inter-institutional networking for salvage and revitalization of vanishing but valuable cultural traditions and highlights the unity and diversity and organizes exhibitions to present an integrated story of biological evolutions and variations. The IGRMS, through its exhibitions and salvage activities, demonstrates the aesthetic qualities of India&#039;s traditional life styles local knowledge and mores, and caution the people against unprecedented destruction of ecology, environment, local values, customs, etc. In IGRMS they have categorized their collection in 17 functional categories of Agriculture, Animal Husbandry, Art and Craft, Basketry, Fishing, Games &amp; Amusement, Household, Hunting, Musical, Narcotics, Ornament, Ritual, Spinning &amp; Weaving, Textile, Travel &amp; Transport, Tools and Weapons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642662298.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23051,\"Title\":\"Madhya Pradesh Tribal Museum\",\"Description\":\"&lt;p&gt;Established in 2013, the museum was inaugurated by former President Pranab Mukherjee and designed by Revathi Kamath. The Tribal Museum in Bhopal was created with the hard work and labors of numerous tribal artists, reaching there in shifts from each corner of the state. Made out of conventional materials such as mud, jute, clay, wood, iron, leaves, hemp, straw along with glass, acrylic, and canvas, the museum is a must-visit in Bhopal. The Tribal Museum is not like any usual museum where dead objects are stored and exhibits are showcased with some contextual information. Rather, it is an ode to the state&acirc;&euro;&trade;s tribal art and culture, celebrating the life lived by the seven indigenous tribes of Madhya Pradesh, including the Gond, Sahariya, Bhariya, Kol, Baiga, Korku, and Bhil. So, the theme of the museum is about tribal life and facts of local aesthetics and traditions. The purpose of the Tribal Museum Bhopal is to raise awareness about tribal culture and life among the general public.&lt;\\/p&gt;&lt;p&gt;One of the most interesting places in your Bhopal sightseeing tour, the museum has a small boutique shop of artefacts, an auditorium, and a restaurant. The plays, poetry, musical performances, and cultural shows, organized at the museum&acirc;&euro;&trade;s amphitheater provide people with an actual inside look at tribal life and culture. Apart from this, you can shop for souvenirs, tribal jewellery, regional books, and other artefacts from the museum shop.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642664003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null}]}},{\"CityId\":3139,\"Title\":\"Bhopal\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493149,\"Name\":\"Hotel Tulsi Casa\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.2267108\",\"Long\":\"77.4371912\",\"Address\":\"236, Zone-II, Near Arya Bhavan, Zone-II, Maharana Pratap Nagar, Bhopal, Madhya Pradesh 462011, India\"},\"Images\":[],\"CityId\":3139,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527152,\"Name\":\"Hotel Atishay\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.234447\",\"Long\":\"77.43563499999999\",\"Address\":\"Nr Manohar Dairy, R-55, Chetak Bridge, Zone-I, Maharana Pratap Nagar, Bhopal, Madhya Pradesh 462011, India\"},\"Images\":[],\"CityId\":3139,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":527190,\"Name\":\"Sayaji Hotels Ltd.\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.7161122\",\"Long\":\"75.8639482\",\"Address\":\"54, Bhopal - Indore Rd, Siyaganj, Indore, Madhya Pradesh 452010, India\"},\"Images\":[],\"CityId\":3139,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Executive\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":23259,\"Title\":\"Pench National Park\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Pench National Park&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Pench National Park is located in the heart of India- Madhya Pradesh and covers a total area of 758 sq.km. It is located on the southern part of Madhya Pradesh, to be specific, in the districts of Seoni and Chhindwara, which also shares a boundary with Maharashtra. An additional area of 257 sq.km of this park lies in Maharashtra but is also accessible from Madhya Pradesh. A treasure of rich flora and fauna, this national park has its area segregated in two divisions- a) Priyadarshini National Park and Mowgli Pench Sanctuary which covers an area of 299 sq.km and b) 464 sq.km which is considered as the buffer area. The national park is named after the river- Pench, which while flowing from north to south, divides the national park in almost equal halves namely eastern and western halves. The park is just not home to wildlife but also to humans. There are 10 villages in and around the park out of which one is inside the park named Fulzari and other nine on the periphery.\\r\\n&lt;\\/p&gt;&lt;p&gt;Pench is primarily known for the Royal Bengal tiger. As per the latest Tiger Census, there are approximately 40 tigers in the park. It is also home to 39 species of mammals, 13 species of reptiles, and 3 species of amphibians. You will spot a number of chital, sambar, nilgai, wild pig, gaur and jackals here.&lt;\\/p&gt;&lt;p&gt;Not always a national park, Pench was declared as a sanctuary in 1965 but in 1975, it rose to the status of a National Park. And since it is home to a huge amount of tigers, it was established as a tiger reserve in 1992 and now is working under Project Tiger. Also the beauty of this place has been mentioned in the classic &acirc;&euro;&oelig; The Jungle Book&acirc;&euro;\\u009d by the great Rudyard Kipling.&lt;\\/p&gt;&lt;p&gt;Though Pench National Park looks very similar to the classic tale, it actually is more than that. The national park is home to flora species like Mahua, White Kulu, Salai, Saja, Bijiyasal, Dhaora, Amaltas and many other. Apart from trees, the park is filled with grasslands, plants and saplings.&lt;\\/p&gt;&lt;p&gt;&Acirc;&nbsp;&lt;span style=&quot;font-weight: bold&quot;&gt;The timings are from 6 AM to 11 AM in the mornings, and then from 3 PM to 6 PM.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21077\\/sightseeing\\/6135_1643106127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35399,\"Title\":\"Jungle safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35400,\"Title\":\"Night Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35401,\"Title\":\"Trekking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35402,\"Title\":\"Wild Life\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35403,\"Title\":\"Jungle Safari\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35404,\"Title\":\"Travel Dance\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35405,\"Title\":\"Nature Walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21077,\"CityName\":\"Pench\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23099,\"Title\":\"Pisanhari ki Madiya\",\"Description\":\"&lt;p&gt;Pisanhari ki Marhia is a Jain temple built in the 15th century and located in the city of Jabalpur in Madhya Pradesh, India. The temple is named after its creator, a local woman who, according to legend, paid for the construction of the temple with the money she saved from milling flour.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12971\\/sightseeing\\/6135_1642759925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":115,\"Title\":\"Balancing Rocks\",\"Description\":\"A balancing rock, also called balanced rock or precarious boulder, is a naturally occurring geological formation featuring a large rock or boulder, sometimes of substantial size, resting on other rocks, bedrock, or on glacial till. Some formations known by this name only appear to be balancing, but are in fact firmly connected to a base rock by a pedestal or stem.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.1485573,\"Long\":79.9094751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6230\\/thumb\\/Balancing Rocks_463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35406,\"Title\":\"Dhuandhar  Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35407,\"Title\":\"Bhedaghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":315,\"Title\":\"Chausath Yogini Temple\",\"Description\":\"Chausath Yogini Temple is one of the oldest heritage sites in India. It was built in the 10th Century AD by the Kalachuri kingdom and has a distinct resemblance to the temples of Khajuraho in structure. The temple is the abode of Goddess Durga along with 64 yoginis.\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":23.0925329,\"Long\":80.0063285,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1379\\/thumb\\/Chausath Yogini Temple_631.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35408,\"Title\":\"Panchwati Nauka Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12971,\"CityName\":\"Jabalpur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23072,\"Title\":\"Jatashankar\",\"Description\":\"&lt;p&gt;This natural cave is a Hindu shrine located in the northern part of Pachmarhi. Jatashankar lies in a deep ravine, with large boulders perched just above it. This cave is famed for featuring stalagmites, which are revered as naturally formed lingams. Jatashankar caves are incredibly popular among both tourists and pilgrims and are covered by many Pachmarhi sightseeing packages. There are two beautiful spring-fed ponds near these caves as well.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642678834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23078,\"Title\":\"Handi Kho\",\"Description\":\"&lt;p&gt;A mile long trek from Bee-Fall takes one to Handi Khoh, a horse shoe shaped ravine, the edge of which drops a sheer 100m into the earth. The valley is rich in medicinal plants.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749667.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23077,\"Title\":\"Priyadarshni Point\",\"Description\":\"&lt;p&gt;This vantage viewing point marks the place from where Pachmarhi was discovered by Captain Forsyth in 1857. The British developed Pachmarhi as a resort and their influence is embodied in its churches and colonial architecture.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/6135_1642749110.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16661,\"Title\":\"Mahadev dhupgarh satpura\",\"Description\":\"Mount Dhupgarh or Dhoopgarh is the highest point in the Mahadeo Hills, Madhya Pradesh, India. Located in Pachmarhi, it has an elevation of 1,352 metres.The top of the hill is a popular area to watch sunsets. Pachmarhi Hill station is located close to the peak.\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Mahadev_dhupgarh_satpura_36727_1592202350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23073,\"Title\":\"Gupt Mahadev Temple\",\"Description\":\"&lt;p&gt;This is a 40 feet long cave that features a Shiva lingam. The entrance to the Gupt Mahadev Temple is an extremely narrow path, which can be passed by eight people at a time. This path leads to the &acirc;&euro;&tilde;Bade Mahadev&acirc;&euro;&trade; that is featured here. At the entrance of the cave, you can also find an enshrined idol of Lord Hanuman. This auspicious temple is regarded as being an important element of any Pachmarhi tour itinerary.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35409,\"Title\":\"Amba Mai\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23070,\"Title\":\"Pandav Gufa\",\"Description\":\"&lt;p&gt;There are five distinct rock-cut temples in Pachmarhi that are popularly known as Pandav Gufas or caves. According to certain mythological tales, it is believed that the Pandavas took shelter in these caves during their exile, and hence are popular tourist sites. Archaeological evidence, on the other hand, claims that these caves were constructed by Buddhist monks sometime during the 1st century BC. Regardless of their origin, the caves are a must-visit destination for all visitors on Pachmarhi tours.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35410,\"Title\":\"Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35411,\"Title\":\"Apsara Vihar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35412,\"Title\":\"Silvar Fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35413,\"Title\":\"Panchali Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":16660,\"Title\":\"Bee Fall\",\"Description\":\"Bee falls is a waterfall in Panchmarhi hills and is frequented by visitors who travels in Panchmarhi. The water fall is surrounded by dense forest and with beautiful and awe-striking scenario which beautify the sight even more\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36727\\/sightseeing\\/Bee_Fall_36727_1592201799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35414,\"Title\":\"Reechgarh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35415,\"Title\":\"Rajendra Giri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36727,\"CityName\":\"Pachmarhi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23060,\"Title\":\"Bhimbetka\",\"Description\":\"&lt;p&gt;Cave paintings dating back to approximately 30,000 years. Rock shelters that were home to humans, millennia ago. And a rich flora and fauna surrounding these, indeed, make Bhimbetka a gift to us from our earliest ancestors. The Bhimbetka Rock Shelter has the oldest-known rock art in India, as well as is one of the largest prehistoric complexes to be seen. \\r\\n&lt;\\/p&gt;&lt;p&gt;An archaeological treasure, Bhimbetka has around 243 rock shelters and have earned the honour of UNESCO World Heritage Site. The paintings found in the rock shelters here have a striking resemblance to the ones discovered in Kakadu National Park in Australia to the cave paintings of Bushmen in Kalahari Desert and Upper Paleolithic Lascaux cave paintings in France.\\r\\n&lt;\\/p&gt;&lt;p&gt;A walkthrough these ancient naturally carved rocks surrounded by dense forests of Bhimbetka will bring alive child-like wonder in you.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642672017.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23056,\"Title\":\"Upper Lake\",\"Description\":\"&lt;p&gt;The Upper Lake is famously known as &acirc;&euro;&tilde;Bada Talab&acirc;&euro;&trade; and is also one of the best places to visit in Bhopal for couples. From enjoying the serenity of the place to clicking some gorgeous pictures, one can also take out some time for the boating activity that travellers love to do here. The upper lake was made in the 11th Century and since then it is the largest manmade lake in the entire country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642669465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":35364,\"Title\":\"Lower Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23050,\"Title\":\"Indira Gandhi Rashtriya Manav Sangrahalaya\",\"Description\":\"&lt;p&gt;The Indira Gandhi Rashtriya Manav Sangrahalaya is spearheading an interactive Museum Movement in India, to celebrate the simultaneous validity of various valuable cultural patterns evolved over thousands of years. The Organization is working for national integration, and promotes research and training and inter-institutional networking for salvage and revitalization of vanishing but valuable cultural traditions and highlights the unity and diversity and organizes exhibitions to present an integrated story of biological evolutions and variations. The IGRMS, through its exhibitions and salvage activities, demonstrates the aesthetic qualities of India&#039;s traditional life styles local knowledge and mores, and caution the people against unprecedented destruction of ecology, environment, local values, customs, etc. In IGRMS they have categorized their collection in 17 functional categories of Agriculture, Animal Husbandry, Art and Craft, Basketry, Fishing, Games &amp; Amusement, Household, Hunting, Musical, Narcotics, Ornament, Ritual, Spinning &amp; Weaving, Textile, Travel &amp; Transport, Tools and Weapons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642662298.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":23051,\"Title\":\"Madhya Pradesh Tribal Museum\",\"Description\":\"&lt;p&gt;Established in 2013, the museum was inaugurated by former President Pranab Mukherjee and designed by Revathi Kamath. The Tribal Museum in Bhopal was created with the hard work and labors of numerous tribal artists, reaching there in shifts from each corner of the state. Made out of conventional materials such as mud, jute, clay, wood, iron, leaves, hemp, straw along with glass, acrylic, and canvas, the museum is a must-visit in Bhopal. The Tribal Museum is not like any usual museum where dead objects are stored and exhibits are showcased with some contextual information. Rather, it is an ode to the state&acirc;&euro;&trade;s tribal art and culture, celebrating the life lived by the seven indigenous tribes of Madhya Pradesh, including the Gond, Sahariya, Bhariya, Kol, Baiga, Korku, and Bhil. So, the theme of the museum is about tribal life and facts of local aesthetics and traditions. The purpose of the Tribal Museum Bhopal is to raise awareness about tribal culture and life among the general public.&lt;\\/p&gt;&lt;p&gt;One of the most interesting places in your Bhopal sightseeing tour, the museum has a small boutique shop of artefacts, an auditorium, and a restaurant. The plays, poetry, musical performances, and cultural shows, organized at the museum&acirc;&euro;&trade;s amphitheater provide people with an actual inside look at tribal life and culture. Apart from this, you can shop for souvenirs, tribal jewellery, regional books, and other artefacts from the museum shop.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3139,\"CityName\":\"Bhopal\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3139\\/sightseeing\\/6135_1642664003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7439,\"SupplierName\":\"Travel India Tourism Pvt Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"319189\",\"Title\":\"Arrival at Nagpur. Transfer to Pench. (80 KMs \\/\\/ 1.5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Nagpur, meet and greet with representatives. Transfer to Pench. Pench Tiger Reserve comprises the Indira Priyadarshini Pench National Park and the Pench Mowgli Sanctuary. It is named after the Pench river that flows through it.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rudyard Kipling&amp;#39;s Mowgli&amp;#39;s adventure and his battle with the furious Sher Khan is based on this very landscape in Madhya Pradesh. The places described in the &amp;#39;The Jungle Book&amp;#39; are the locations marked at Alikatta village and the Seeonee hills. This is the reason, Pench Tiger Reserve is also popularly known as &amp;#39;Land of The Jungle Book&amp;#39;. It is also interesting to know that the one best wildlife series on tigers so far, &amp;#39;Tiger : Spy in the Jungle&amp;#39; is also filmed in Pench National Park. The series was shot with the use of `trunk cams&amp;#39; ; the cameras held by elephants&amp;#39; trunks, to follow four newborn tiger cubs all the way to adulthood. A magnificent expanse in Madhya Pradesh, Pench Tiger Reserve, though is a tiger territory but it is also shelters dense population chetal, followed by leopard, sambhar, gaur (Indian bison), chousingha, chinkara, barking deer, small Indian civet, and porcupine and migratory birds such as Malabar pied hornbill, Indian pitta and osprey . The major attractions of the Pench Tiger Reserves are jungle walk, jungle safari, night safari, trekking, wildlife viewing from machaan and village tour Check into the hotel, Evening free for leisure. Overnight stay at Pench.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"},{\"IsIncluded\":false,\"Id\":527172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC 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\":23259,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35399,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35400,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35401,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35402,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319192\",\"Title\":\"Pench\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;At Morning 6 AM, Move to Jungle Safari by Open Gypsy at Pench National Park. Take Breakfast (Packaged by Resort) during Jungle Safari. Back to Hotel, Take Lunch and Relax at Hotel. In the Evening, You can enjoy &amp;ldquo;Travel Dance&amp;rdquo; or &amp;ldquo;Nature Walk&amp;rdquo; on your own. Night Stay at Pench National Park Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"},{\"IsIncluded\":false,\"Id\":527172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC 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\":35403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35404,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35405,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319195\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"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\":\"319198\",\"Title\":\"Pench- Jabalpur (231 KMs \\/\\/ 4.5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning post breakfast check out from the hotel, transfer to Jabalpur. Pleasure resort and capital of the Gond kings during the 12th century, Jabalpur was later the seat of the Kalchuri dynasty. The Marathas held sway over Jabalpur until 1817, when the British wrested it from them and left their impression on the spacious cantonment with its colonial residences and barracks. Today Jabalpur is an important administrative center, abustle with commercial activity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check into the hotel, freshen up later embark your sightseeing of Jabalpur, visit- balancing Rock, Pisanhari Ki Madiya, Dhuandhar Fall, Bhedaghat, Chausath Yogini Temple, and Panchwati Nauka Vihar and overnight stay at Jabalpur.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12971,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527178,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Executive\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23099,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":115,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35406,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35407,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":315,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319201\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12971,\"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\":\"319204\",\"Title\":\" Jabalpur- Pachmarhi (296KMs \\/\\/ 5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast checkout from hotel and transfer to Pachmarhi. Pachmarhi, is Madhya Pradesh&amp;#39;s most verdant gem. A lovely hill resort girdled by the Satpura ranges, it offers absolute tranquility. Bridle paths lead into placid forest groves of wild bamboo and jamun, dense sal forests and delicate bamboo thickets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check into the pre booked hotel later visit after check-in and freshen up later move to visit sightseeing Jata Shankar, Handi Kho, Priyadarshini, Mahadev, Gupt Mahadev, Amba Mai, come back to hotel .night stay at Pachmarhi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36727,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527189,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"A\\/c Executive\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23072,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23078,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23077,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16661,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35409,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319207\",\"Title\":\"Pachmarhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After Breakfast, Visit Sightseeings of Pachmarhi &amp;ndash; Pandav Gufa, Museum, Apsara Vihar, Silver Fall, Panchali Kund, Bee Fall, Reechgarh, and Rajendra Giri. ( for this tour gypse need to be booked from local taxi union)Night Stay at Pachmarhi Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36727,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":527187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527189,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"A\\/c Executive\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23070,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35410,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35411,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35412,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35413,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16660,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35414,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35415,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319210\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36727,\"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\":\"319213\",\"Title\":\"Pachmarhi- Bhopal (210 KMs \\/\\/ 4.5 HRs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Check out from the hotel and transfer to Bhopal, Enroute to Bhopal visit Bhimbetka. The Vindhya mountain range is covered by huge rocks, and recent discoveries here of over 600 rock shelters (the largest group in the world) have revealed paintings that date back to the early Stone Age. Cave paintings dating back to approximately 30,000 years. Rock shelters that were home to humans, millennia ago. And a rich flora and fauna surrounding these, indeed, make Bhimbetka a gift to us from our earliest ancestors. On arrival at Bhopal, Check into the hotel. Later start sightseeing Visit Upper Lake, Lower Lake, and Indira Gandhi Rasthtriya Manav Sangrahalya, Tribal Museum at Bhopal and night stay at Bhopal.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3139,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493149,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":527152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":527190,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"AC Executive\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23060,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23056,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35364,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23050,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23051,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"319216\",\"Title\":\"Bhopal- Departure\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast Checkout from Hotel. and remaining sightseeing of Bhopal and drop to Bhopal Railway Station for your onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3139,\"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\":\"44280\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26243.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":23310,\"priceDoubleOcc\":\"26243.00\",\"priceSingleOcc\":26243,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26243,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":26243,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24375,\"priceDoubleOcc\":\"27841.50\",\"priceSingleOcc\":27841.5,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27841.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":27841.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25974,\"priceDoubleOcc\":\"30239.25\",\"priceSingleOcc\":30239.25,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30239.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":30239.25,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25035,\"priceDoubleOcc\":\"28830.50\",\"priceSingleOcc\":28830.5,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28830.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":28830.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":28561,\"priceDoubleOcc\":\"34120.50\",\"priceSingleOcc\":34120.5,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34120.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":34120.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":34886,\"priceDoubleOcc\":\"43608.00\",\"priceSingleOcc\":43608,\"priceExtraBed\":\"13082.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43608,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13082.4,\"COSTDO\":43608,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":17443.2,\"COSTTO\":17443.2}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44281\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32625.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":21750,\"priceDoubleOcc\":\"32625.50\",\"priceSingleOcc\":65251,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32625.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":32625.5,\"COSTSO\":65251,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":22816,\"priceDoubleOcc\":\"34224.00\",\"priceSingleOcc\":66849.5,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34224,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":34224,\"COSTSO\":66849.5,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24415,\"priceDoubleOcc\":\"36621.75\",\"priceSingleOcc\":69247.25,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36621.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":36621.75,\"COSTSO\":69247.25,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":23475,\"priceDoubleOcc\":\"35213.00\",\"priceSingleOcc\":67838.5,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35213,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":35213,\"COSTSO\":67838.5,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":27002,\"priceDoubleOcc\":\"40503.00\",\"priceSingleOcc\":73128.5,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40503,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":40503,\"COSTSO\":73128.5,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":33327,\"priceDoubleOcc\":\"49990.50\",\"priceSingleOcc\":82616,\"priceExtraBed\":\"19996.20\",\"priceWithoutBed\":\"14997.15\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49990.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14997.15,\"CEB\":19996.2,\"COSTDO\":49990.5,\"COSTSO\":82616,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"44282\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39180.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":33660,\"priceDoubleOcc\":\"39180.50\",\"priceSingleOcc\":39180.5,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39180.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":39180.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":34725,\"priceDoubleOcc\":\"40779.00\",\"priceSingleOcc\":40779,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40779,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":40779,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":36324,\"priceDoubleOcc\":\"43176.75\",\"priceSingleOcc\":43176.75,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43176.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":43176.75,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":35385,\"priceDoubleOcc\":\"41768.00\",\"priceSingleOcc\":41768,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41768,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":41768,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":38911,\"priceDoubleOcc\":\"47058.00\",\"priceSingleOcc\":47058,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47058,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":47058,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":45236,\"priceDoubleOcc\":\"56545.50\",\"priceSingleOcc\":56545.5,\"priceExtraBed\":\"16963.65\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56545.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16963.65,\"COSTDO\":56545.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22618.2,\"COSTTO\":22618.2}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"44280\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25102.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":22296,\"priceDoubleOcc\":\"25102.00\",\"priceSingleOcc\":25102,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25102,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":25102,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":23316,\"priceDoubleOcc\":\"26631.00\",\"priceSingleOcc\":26631,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26631,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":26631,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24845,\"priceDoubleOcc\":\"28924.50\",\"priceSingleOcc\":28924.5,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28924.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":28924.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":23946,\"priceDoubleOcc\":\"27577.00\",\"priceSingleOcc\":27577,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27577,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":27577,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":27320,\"priceDoubleOcc\":\"32637.00\",\"priceSingleOcc\":32637,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32637,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":32637,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":33370,\"priceDoubleOcc\":\"41712.00\",\"priceSingleOcc\":41712,\"priceExtraBed\":\"12513.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41712,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":12513.6,\"COSTDO\":41712,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":16684.8,\"COSTTO\":16684.8}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44281\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31207.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":20805,\"priceDoubleOcc\":\"31207.00\",\"priceSingleOcc\":62414,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31207,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":31207,\"COSTSO\":62414,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":21824,\"priceDoubleOcc\":\"32736.00\",\"priceSingleOcc\":63943,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32736,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":32736,\"COSTSO\":63943,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":23353,\"priceDoubleOcc\":\"35029.50\",\"priceSingleOcc\":66236.5,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35029.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":35029.5,\"COSTSO\":66236.5,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":22455,\"priceDoubleOcc\":\"33682.00\",\"priceSingleOcc\":64889,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33682,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":33682,\"COSTSO\":64889,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25828,\"priceDoubleOcc\":\"38742.00\",\"priceSingleOcc\":69949,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38742,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":38742,\"COSTSO\":69949,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":31878,\"priceDoubleOcc\":\"47817.00\",\"priceSingleOcc\":79024,\"priceExtraBed\":\"19126.80\",\"priceWithoutBed\":\"14345.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47817,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14345.1,\"CEB\":19126.8,\"COSTDO\":47817,\"COSTSO\":79024,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"44282\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37477.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":32196,\"priceDoubleOcc\":\"37477.00\",\"priceSingleOcc\":37477,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37477,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":37477,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":33216,\"priceDoubleOcc\":\"39006.00\",\"priceSingleOcc\":39006,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39006,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":39006,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":34745,\"priceDoubleOcc\":\"41299.50\",\"priceSingleOcc\":41299.5,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41299.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":41299.5,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":33846,\"priceDoubleOcc\":\"39952.00\",\"priceSingleOcc\":39952,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39952,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":39952,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":37220,\"priceDoubleOcc\":\"45012.00\",\"priceSingleOcc\":45012,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45012,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":45012,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8},{\"From\":\"2022-11-21\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":43270,\"priceDoubleOcc\":\"54087.00\",\"priceSingleOcc\":54087,\"priceExtraBed\":\"16226.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54087,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":16226.1,\"COSTDO\":54087,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":21634.8,\"COSTTO\":21634.8}]}]}]}}]}]},\"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\":{\"319189\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[319189],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"319192\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[319192],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"319195\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[319195],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"319198\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[319198],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"319201\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[319201],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"319204\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[319204],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"319207\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[319207],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"319210\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[319210],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"319213\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[319213],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"319216\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[319216],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[]}}','Pench,Jabalpur,Pachmarhi,Bhopal','Pench,Indian Subcontinent,India,Jabalpur,Madhya Pradesh,Central India,Pachmarhi,Bhopal',NULL,'21077,12971,36727,3139',25102,56546,6,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'wild-life',NULL,NULL,NULL,0),(7,43845,1,36973,1,0,0,'Honeymoon,Adventure,Wildlife,Family,Religious,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":43845,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":50,\"DETAILS\":\"&lt;p&gt;GLORIOUS KASHMIR&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"Connect India\",\"Name\":\"Glorious Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6792\",\"SupplierName\":\"Kailash Expeditions India\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Welcome Drink,Inner Line Permit,Cab,Activity\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Religious,Hill Station\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486930,\"Name\":\"any deluxe houseboat\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe Houseboat\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518865,\"Name\":\"May queen houseboat\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Super Deluxe Houseboat\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":526089,\"Name\":\"Hotel Adlife Luxury\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0819189\",\"Long\":\"74.8201807\",\"Address\":\"Bishember Nagar MunawarAbad - Bishmber Nagar, Link, Chinar Bagh, Srinagar, Jammu and Kashmir 190003\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":526091,\"Name\":\"Asian Park Hotel\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.08161319999999\",\"Long\":\"74.81833759999999\",\"Address\":\"Munawar Link Road, Munawara Abad, Srinagar, Jammu and Kashmir 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":526093,\"Name\":\"Apple Orchard Resort & Spa\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1543215\",\"Long\":\"74.8861731\",\"Address\":\"Chandpora, Shalimar, Srinagar, Jammu and Kashmir 190025\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":17500,\"Title\":\"Baltal\",\"Description\":\"Baltal is a camping ground for pilgrims, 15 km north of Sonamarg on the Sind River at the base of Zojila pass in Jammu and Kashmir. This little valley is only a day&amp;#039;s journey away from and provides a shorter high-altitude alternate route to the sacred cave of Amarnath.\",\"CurrencyType\":0,\"CityId\":34549,\"CityName\":\"Sonamarg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34549\\/sightseeing\\/Baltal_34549_1601551906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":90,\"Title\":\"Awantipura Ruins\",\"Description\":\"Awantipora or Awantipur is a town and a notified area committee in Pulwama district of the Indian state of Jammu &amp;amp; Kashmir. It is situated between Anantnag and Srinagar on NH44.  Awantipora was named after Avanti Varman and had a number of ancient Hindu temples built by the king including the Avantiswami Temple. The ruins of temples constructed by Lalitaditya are also found in Awantipora. The temple sites are protected and maintained by the Archaeological Survey of India.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/178\\/thumb\\/Awantipura Ruins_152.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"316013\",\"Title\":\" Arrival Srinagar &ndash; Local sightseeing \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Srinagar airport our representative heartily greets you and assists you to transfer you to the houseboat. Check in at the houseboat, freshen up and visit the famous Mughal gardens in Srinagar which are Nishat Bagh (the garden of Pleasure) and Shalimar Bagh (abode of love). These gardens are situated on the banks of Dal lake. NishatBagh is the larger of the two gardens and has an impressive plantation of Chinar trees on its highest terrace. Both the gardens are built on a symmetrical plan of central waterways with fountains dividing a series of gardened terraces.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening enjoy Shikara ride on Dal Lake and witness the marvel of nature that is beyond visual and verbal descriptions. The Sun-set view from the Shikara will engulf your heart and leave your spell bound. Later enjoy the welcome dinner and overnight stay in the Houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486930,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Houseboat\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":518865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Houseboat\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316015\",\"Title\":\"Srinagar &ndash; Gulmarg &ndash; Srinagar (58kms on one way)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Early morning Check Out from the houseboat and proceed to Gulmarg driving past willow trees, fast flowing streams and lush green meadows. Gulmarg - the meadow of flowers is an apt term for this idyllic flower-laden meadow offering a spectacular view of towering snow-capped peaks covered with dense forests of tall conifers and gigantic fir and pine trees. Stroll leisurely or take pony rides (by your own payment) across the green meadow to one of the world&amp;#39;s highest Golf Courses. A must is a fun-filled ride in the Gondola lift (by your own payment). Return to Srinagar in the evening and enjoy a comfortable overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;Note: The vehicle will drop and pick you up at Gulmarg car stand. To reach the above places, you can hire ponies by your own payment basis.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":526089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":526091,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":526093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super 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\":612,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":587,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316017\",\"Title\":\"Srinagar &ndash; Sonmarg &ndash; Srinagar (89kms on one way)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Today you embark on a full day excursion to the picturesque &amp;#39;meadow of gold&amp;rsquo; Sonamarg. Enroute visit Hazratbal Shrine &amp;amp;The fast-flowing Sindh River makes it popular for trout and mahseer fishing in summer. On arrival at Sonamarg You can opt for a pony ride to one of the glaciers for some fun in snow and ice (by your own payment). Return to the Hotel in Srinagar in the evening and enjoy a comfortable overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;Note: The vehicle will drop and pick you up at Sonamarg car stand. To reach the glaciers, you can hire ponies by your own payment basis.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486930,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526091,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":518865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526093,\"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\":17500,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":661,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316019\",\"Title\":\"Srinagar &ndash; Pahalgam &ndash; Sriangar (98kms on one way)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Early in the morning leave for Pahalgam the &amp;#39;valley of shepherds&amp;#39; which is situated at the confluence of the streams flowing from river Lidder and Sheeshnaglake. Enroute visit the Awantipura ruins, an 1100-year-old temple dedicated to Lord Vishnu and built by King Awantivarman. On arrival into Pahalgam enjoy the surrounding beauty or walk to Baisaren, which is about 2 km from Pahalgam. A small village set in pine and fir forest is pleasing and offers a good view. In Pahalgam one can have a horse ride and can visit Baisaran, Badyan &amp;amp; Kashmir valley (on your own cost).Return to Srinagar in the evening and enjoy a comfortable overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;Note: The vehicle will drop and pick you up at Pahalgam car stand. To reach the above places, you can hire ponies by your own payment basis.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486930,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526091,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":518865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":526093,\"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\":1278,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":90,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"316021\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, transfer to Srinagar airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;Advice your client to traveller as per itinerary and last day we count as drop only, if client do any sightseen on last day it will be extra on direct basic.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"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\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43845\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"12980.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8653,\"priceDoubleOcc\":\"12980.00\",\"priceSingleOcc\":12980,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":12980,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9533,\"priceDoubleOcc\":\"14300.00\",\"priceSingleOcc\":14300,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":14300,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11000,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":16500,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43846\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"24200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16133,\"priceDoubleOcc\":\"24200.00\",\"priceSingleOcc\":24200,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":24200,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16867,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":25300,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":25300,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18700,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":28050,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":28050,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43845\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"14160.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9440,\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":14160,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":14160,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10400,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":15600,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":18000,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43846\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"26400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17600,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":26400,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":27600,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":27600,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2022-11-10\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20400,\"priceDoubleOcc\":\"30600.00\",\"priceSingleOcc\":30600,\"priceExtraBed\":\".00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":30600,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":null,\"COSTTO\":null}]}]}]}}]}]},\"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;GST&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Extra Heating charges in Houseboat &amp;amp; Hotel during winter season&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Trip&amp;nbsp;to&amp;nbsp;Aru, Chandanwari&amp;amp;Betaab Valley in Pahalgam&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Gondola &amp;amp; Pony ride in Gulmarg&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Thajiwas Glacier &amp;amp; Snow Point in Sonamarg&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Garden Entrance fees and guide charges, where ever applicable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Snow Jeep from Tangmarg to Gulmarg&amp;amp; back, (Applicable from Nov &amp;ndash; February Month)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Item of personal nature viz, tips, laundry, room service, telephone, alcoholic or non-alcoholic beverages, room heaters, boat rides, pony \\/ horse rides, safaris, rafting, skiing, skating, cable car \\/ ropeway rides, helicopter rides, additional sightseeing tours excursions not included in the itinerary, still or video camera fees etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Any kind of insurance, Air, Train or Bus fare from \\/ to your originating city of stay, unless specified&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch and personal expenses like entry ticket any, telephone laundry, or anything which is not mentioned above.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Any Tax &amp;amp; Government Service tax (5%)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Any Kind of Personal Expenses or Optional Tours \\/ Extra Meals Ordered&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anything not specifically mentioned under the head &amp;ldquo;Prices included&amp;rdquo;. The services of vehicle are not included on leisure days &amp;amp; after finishing the sightseeing tour as per the itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Additional costs due to flight cancellation, road blocks etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Medical &amp;amp; Travel insurance&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;IMPORTANT NOTES :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;No Cars are allowed to move inside Gulmarg area, due to issue of horse owner&amp;rsquo;s association.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;We are not responsible for any local dealing of client with Local market vendors or pony wala&amp;rsquo;s or Local guide in Gulmarg.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Shikara ride is for 01-hour ride as per package, if it is included in package.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Advice your client to traveler as per itinerary and last day we count as drop only, if client do any &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;sightseen on last day it will be extra.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If it is about disposal, car will be on disposal from 09:00 am to 06:00 pm with 1 place sightseen.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If there is night stay in Gulmarg then car will drop client at Hotel and if there is a day trip the car will drop the client at parking.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Sonamarg visit during heavy snowfall vehicles go till Gagangir which is 10km Away from Sonamarg. In this case we will provide stay in Srinagar and day visit to Sonamarg. As hotels in Sonamarg close their operations after October.&lt;\\/strong&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\":{\"316013\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[316013],\"Remark\":[\"&lt;p&gt;NON AC SEDAN&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1\"]}},\"316015\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[316015],\"Remark\":[\"&lt;p&gt;NON AC SEDAN&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"316017\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[316017],\"Remark\":[\"&lt;p&gt;NON AC SEDAN&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"316019\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[316019],\"Remark\":[\"&lt;p&gt;NON AC SEDAN&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"316021\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[316021],\"Remark\":[\"&lt;p&gt;NON AC SEDAN&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"1\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[]}}','Srinagar','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Gulmarg,Pahalgam,Sonamarg',NULL,'25897',12980,30600,4,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glorious-kashmir',NULL,NULL,NULL,0),(8,43519,1,36973,1,0,0,'Adventure,Wildlife,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":43519,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/6135\\/package\\/images\\/ladakh-autumn-experiences---_1667381826\",\"BookingValidUntill\":\"2023-01-31\",\"AdvBookingDays\":50,\"DETAILS\":\"&lt;p&gt;LADAKH WINTER EXPRIENCES 2022- 2023&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"Connect India\",\"Name\":\"Ladakh Autumn Experiences 2022 - 2023\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6792\",\"SupplierName\":\"Kailash Expeditions India\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Welcome Drink,Inner Line Permit,Airport Transfers,Activity\",\"PackageType\":\"Adventure,Wildlife,Family,Hill Station\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-01-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":525094,\"Name\":\"The Pangong Hotel\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1615001\",\"Long\":\"77.5825972\",\"Address\":\"Chulung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard double room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486171,\"Name\":\"HOTEL NATURE\'S LAND LEH LADAKH\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.1745476\",\"Long\":\"77.5818543\",\"Address\":\"upper, Changspa Rd, yourtung, Leh, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard double room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486670,\"Name\":\"TSOKAR Retreat\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.16456319999999\",\"Long\":\"77.5820998\",\"Address\":\"Malpak, Leh, Jammu and Kashmir 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"},{\"RefHotelId\":525095,\"Name\":\"Casa Galwan\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.1757903\",\"Long\":\"77.580682\",\"Address\":\"Shanti Stupa Rd, Yourtung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"},{\"RefHotelId\":119228,\"Name\":\"The Grand Dragon Ladakh\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1573005\",\"Long\":\"77.58020775\",\"Address\":\"Old Road Sheynam \"},\"Images\":{\"Image\":[{\"ImagId\":2620015,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_47_t.jpg\"},{\"ImagId\":2620016,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_35_t.jpg\"},{\"ImagId\":2620017,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_45_t.jpg\"},{\"ImagId\":2620018,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_51_t.jpg\"},{\"ImagId\":2620019,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_62_t.jpg\"},{\"ImagId\":2620020,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_34_t.jpg\"},{\"ImagId\":2620021,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_39_t.jpg\"},{\"ImagId\":2620022,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_40_t.jpg\"},{\"ImagId\":2620023,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_37_t.jpg\"},{\"ImagId\":2620024,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_43_t.jpg\"},{\"ImagId\":2620025,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_44_t.jpg\"},{\"ImagId\":2620026,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_61_t.jpg\"},{\"ImagId\":2620027,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_41_t.jpg\"},{\"ImagId\":2620028,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_55_t.jpg\"},{\"ImagId\":2620029,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_64_t.jpg\"},{\"ImagId\":2620030,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_54_t.jpg\"},{\"ImagId\":2620031,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_56_t.jpg\"},{\"ImagId\":2620032,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_57_t.jpg\"},{\"ImagId\":2620033,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_60_t.jpg\"},{\"ImagId\":2620034,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_50_t.jpg\"},{\"ImagId\":2620035,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_38_t.jpg\"},{\"ImagId\":2620036,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_42_t.jpg\"},{\"ImagId\":2620037,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_33_t.jpg\"},{\"ImagId\":2620038,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_46_t.jpg\"},{\"ImagId\":2620039,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_52_t.jpg\"},{\"ImagId\":2620040,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_79_t.jpg\"},{\"ImagId\":2620041,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_73_t.jpg\"},{\"ImagId\":2620042,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_66_t.jpg\"},{\"ImagId\":2620043,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_74_t.jpg\"},{\"ImagId\":2620044,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_75_t.jpg\"},{\"ImagId\":2620045,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_76_t.jpg\"},{\"ImagId\":2620046,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_77_t.jpg\"},{\"ImagId\":2620047,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_78_t.jpg\"},{\"ImagId\":2620048,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/a7395d79_t.jpg\"},{\"ImagId\":2620049,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/d7072646_t.jpg\"},{\"ImagId\":2620050,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_53_t.jpg\"},{\"ImagId\":2620051,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_36_t.jpg\"}]},\"CityId\":15229,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at The Grand Dragon Ladakh in Leh, you&amp;apos;ll be connected to the airport and convenient to Leh Temple and Namgyal Tsemo Gompa.  This 4-star hotel is within close proximity of Shanti Stupa and Sankar Gompa.&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 82 individually decorated guestrooms, featuring refrigerators and LED televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature designer toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&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 recreational opportunities including a 24-hour health club and bicycles to rent. Additional amenities at this 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).&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 one of the hotel&amp;apos;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 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 complimentary high-speed (wired) Internet access, a 24-hour business center, 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 complimentary (available on request).&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_47_t.jpg\",\"AccoAminitiesMask\":\"110000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":418225,\"Name\":\"The Pangong Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1525864\",\"Long\":\"77.5770535\",\"Address\":\"The Pangong Hotel,Chulung,,Jammu and Kashmir,India, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":3535,\"Title\":\"Sangam\",\"Description\":\"Sangam Valley is a 48 kilometre drive from Leh and is the confluence of the rivers Indus and Zanskar. Just the view of Sangam Valley from the road above it can make you swoon in ecstasy. \\r\\n\\r\\nThe colours of the two rivers can be distinctly seen at the confluence. It is an amazing place to sit, relax, and enjoy a picnic with family and friends.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.8275058,\"Long\":75.0720656,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518697786.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":20847,\"Title\":\"Khardongla\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":21184,\"Title\":\"Turtuk village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":20943,\"Title\":\"Shayok valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":34318,\"Title\":\"Local heritage walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":525096,\"Name\":\"Hotel Lhas-Thang\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5463472\",\"Long\":\"77.56050470000001\",\"Address\":\"Nubra Valley, Ladakh, Diskit, 194401\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard double room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":518550,\"Name\":\"The Dunes Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5819375\",\"Long\":\"77.4701875\",\"Address\":\"HFJC+Q3X Hunder Jammu and Kashmir, Hunder, 194101\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":525097,\"Name\":\"Stone Hedge Hotel ladakh\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.58367580000001\",\"Long\":\"77.4677399\",\"Address\":\"Hunder, Jammu and Kashmir 194101\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Deluxe\",\"MealTypeName\":\"MAP\"}]},\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":3535,\"Title\":\"Sangam\",\"Description\":\"Sangam Valley is a 48 kilometre drive from Leh and is the confluence of the rivers Indus and Zanskar. Just the view of Sangam Valley from the road above it can make you swoon in ecstasy. \\r\\n\\r\\nThe colours of the two rivers can be distinctly seen at the confluence. It is an amazing place to sit, relax, and enjoy a picnic with family and friends.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.8275058,\"Long\":75.0720656,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518697786.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":20847,\"Title\":\"Khardongla\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":21184,\"Title\":\"Turtuk village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"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\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":20943,\"Title\":\"Shayok valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null},{\"RefSSId\":34318,\"Title\":\"Local heritage walk\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6792,\"SupplierName\":\"Kailash Expeditions India\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"313930\",\"Title\":\"Day 1 :Leh  (Visit Shanti Stupa and Leh Palace in Evening).\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Experience a wonderful flight over the Himalaya .Onarrival,you will be receive by Kailash expeditions representative and transfer to hotel. After welcome tea and coffee, rest for whole day &amp;amp; and let your body take complete acclimatization . Late afternoon , if health permits ,drive to Shanti Stupa &amp;amp; stay back . Overnight Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":525094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard double room\"},{\"IsIncluded\":false,\"Id\":486171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard double room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":525095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double 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\":3541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313933\",\"Title\":\"Day 2 : Hall Of Fame \\/ Magnetic Hill \\/ Gurudwara\\/ Sangam Point\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Breakfast at the hotel. After breakfast we take you for a tour of Hall of Fame, Gurudwara Patthar Sahib, Magnetic Hill, Kali Temple and Sangam. At Sangam you can enjoy rafting on Zangskar river.&amp;nbsp;&lt;br \\/&gt;\\r\\nHall of Fame is a must visit for every patriotic Indian. It has been built by Indian army in memory of soldiers who lost their lives in Kargil war. Return to Leh in the afternoon.&amp;nbsp;&lt;br \\/&gt;\\r\\nGurdwaraPatthar Sahib located at a distance of 40 kms from Leh, was constructed in 1571, in memory of Guru Nanak to commemorate his visit to this region.&amp;nbsp;&lt;br \\/&gt;\\r\\nMagnetic Hill is the place where you will see your car, with its engine turned off, move upwards on a steep slope. It almost sounds unbelievable.&amp;nbsp;&lt;br \\/&gt;\\r\\nThe Sangam is the place called Nimu where the Zanskarriver and Indus rivers merge. In the evening come back to Leh. Overnight Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":525094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard double room\"},{\"IsIncluded\":false,\"Id\":486171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard double room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":525095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double 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\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3535,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313936\",\"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\":\"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\":\"313939\",\"Title\":\"Day 3 :Leh \\/Nubra Valley via Khardongla. 125km.\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After an early breakfast ,drive to beautiful NubraValley via Khardungla (Highest Motorable road in the World, 18,380 ft) with the zig zag trail continues and drive till Hundar&nbsp; village. On arrival check in Nature&#039;s nest North camp. Afternoon enjoy the beauty of sand dune and double hump camel. Overnight at Camp or hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":525096,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard double room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":518550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":525097,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"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\":20847,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3575,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313942\",\"Title\":\"Day 4 :Turtuk excursion (Former Baltistan)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Early morning drive to TurTuk village with drive landscape, Exotic village. Turtuk this village is about 115 kms from Nubra valley and can take about 3 to 4 hours to reach here, the total population of Turtuk is just 4000 and follow islam as about 40 years back this village was under Pakistan and speak Baltistan language, explore this beautiful village and explore the life here, we will go for a walk around the village and also meet the people. Later Come back to Hundervillag. Overnight at the camps or Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":525096,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":518550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":525097,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21184,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313945\",\"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\":\"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\":\"313948\",\"Title\":\"Nubra via shayok - Pangong - Leh via Changla pass\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast drive towards pangong via shayok village . After at lake enjoy the beautiful heart fulfilling lake colur. Then later drive back to leh via Changla pass. Evening at leh. Overnight at Leh.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":418225,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":525095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":486670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"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\":3496,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20943,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313951\",\"Title\":\"Day 6 : Walk the Old town &ndash; Guided Heritage tour of  old town and Outdoor Lunch \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;One day trail&nbsp;in&nbsp;Ancient&nbsp;Ladakh&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the pages of history, the ancient capital of&nbsp;Leh&nbsp;bookmarks one of the greatest cross-cultural crusades of its time! A bustling trade post on the Silk Route, it gave birth to a trans-Himalayan pedigree, nourished by the valleys of&nbsp;Baltistan&nbsp;and Afghanistan, while dynastic rule trickled in from the highest abyss of the Tibetan Plateau and down the realms of the Mongolian Empire&hellip; &nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We have mapped out a trajectory of hidden trails shadowing the glory of the Silk Road Era and all that it left behind&hellip; Seek out timeless stories and let them illustrate history that once existed on a grand scale!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Central Asian Museum&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The quiet courtyard beckons history and the fortified structure stores relics from the ever-lasting escapade of traditions that have transpired here over time&hellip; &nbsp;Bringing to life the Tibetan, Kashmiri,&nbsp;Baltistani&nbsp;and&nbsp;Ladhaki&nbsp;origins of the land.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;La Las Caf&eacute;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An antiquated, mud-brick caf&eacute;, with a history rooted in romanticism! Andre Alexander, a revered historian and traveller built the innate structure for his Tibetan wife, La&nbsp;La&nbsp;and it stands true to the tale of their love, long after they&rsquo;ve been gone.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Munshi&nbsp;House:&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Explore the endless, prehistoric perspectives that lie within the original residence of the King&rsquo;s tax collector! Proudly known as the&nbsp;Munshi&nbsp;House, its primeval kitchen still stores the original earthen pots and the interior is a profound reflection of&nbsp;Ladakhs&nbsp;vernacular architecture.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Leh&nbsp;Palace&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An audacious, architectural figure to which we all look up, the masonry walls of&nbsp;Leh&nbsp;Palace have watched over Old Town like a protective parent since the 16thcentury.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Erected without machines or modern engineering, they have forbidden time from diminishing their age-old glory, keeping their perpendicular perfection intact to this very&nbsp;day.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tsemo&nbsp;Namgyal&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The walls of&nbsp;Tsemo,&nbsp;radiate a forgotten light. Fortified in celebration of an ancient victory, yet their presence today is quiet and elusive, that of a humble bystander who retains a distant dignity while forfeiting all the glory.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;And&nbsp;Lastly ,&nbsp;Food&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Experience &nbsp;Authentic&nbsp;Local food&nbsp;at&nbsp;Alchi&nbsp;Kitchen or Central&nbsp;Asain&nbsp;Museum&nbsp;.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":418225,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":525095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":486670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":34318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"313954\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Goodbye visit again !!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"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\":\"43519\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29555.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24610,\"priceDoubleOcc\":\"29555.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29555,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":29555,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"27140.00\",\"priceSingleOcc\":27140,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":27140,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24610,\"priceDoubleOcc\":\"29555.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29555,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":29555,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":27293,\"priceDoubleOcc\":\"33580.00\",\"priceSingleOcc\":33580,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":33580,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24610,\"priceDoubleOcc\":\"29555.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29555,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":29555,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":32660,\"priceDoubleOcc\":\"41630.00\",\"priceSingleOcc\":41630,\"priceExtraBed\":\"14720.00\",\"priceWithoutBed\":\"11960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11960,\"CEB\":14720,\"COSTDO\":41630,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":14720,\"COSTTO\":14720}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43520\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41630.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35880,\"priceDoubleOcc\":\"41630.00\",\"priceSingleOcc\":41630,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":41630,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34270,\"priceDoubleOcc\":\"39215.00\",\"priceSingleOcc\":39215,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39215,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":39215,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35880,\"priceDoubleOcc\":\"41630.00\",\"priceSingleOcc\":41630,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":41630,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":38563,\"priceDoubleOcc\":\"45655.00\",\"priceSingleOcc\":45655,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45655,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":45655,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35880,\"priceDoubleOcc\":\"41630.00\",\"priceSingleOcc\":41630,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":41630,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":43393,\"priceDoubleOcc\":\"52900.00\",\"priceSingleOcc\":52900,\"priceExtraBed\":\"24380.00\",\"priceWithoutBed\":\"41400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41400,\"CEB\":24380,\"COSTDO\":52900,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":24380,\"COSTTO\":24380}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43521\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"62905.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":55737,\"priceDoubleOcc\":\"62905.00\",\"priceSingleOcc\":62905,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62905,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":62905,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":54127,\"priceDoubleOcc\":\"60490.00\",\"priceSingleOcc\":60490,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":60490,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":55737,\"priceDoubleOcc\":\"62905.00\",\"priceSingleOcc\":62905,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62905,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":62905,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":58420,\"priceDoubleOcc\":\"66930.00\",\"priceSingleOcc\":66930,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":66930,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":55737,\"priceDoubleOcc\":\"62905.00\",\"priceSingleOcc\":62905,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62905,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":62905,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":63787,\"priceDoubleOcc\":\"74980.00\",\"priceSingleOcc\":74980,\"priceExtraBed\":\"41400.00\",\"priceWithoutBed\":\"31970.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31970,\"CEB\":41400,\"COSTDO\":74980,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":41400,\"COSTTO\":41400}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43519\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":21400,\"priceDoubleOcc\":\"25700.00\",\"priceSingleOcc\":25700,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":25700,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":20000,\"priceDoubleOcc\":\"23600.00\",\"priceSingleOcc\":23600,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":23600,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":21400,\"priceDoubleOcc\":\"25700.00\",\"priceSingleOcc\":25700,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":25700,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":23733,\"priceDoubleOcc\":\"29200.00\",\"priceSingleOcc\":29200,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":29200,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":21400,\"priceDoubleOcc\":\"25700.00\",\"priceSingleOcc\":25700,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":25700,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":28400,\"priceDoubleOcc\":\"36200.00\",\"priceSingleOcc\":36200,\"priceExtraBed\":\"12800.00\",\"priceWithoutBed\":\"10400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10400,\"CEB\":12800,\"COSTDO\":36200,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":12800,\"COSTTO\":12800}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43520\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38010.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"38010.00\",\"priceSingleOcc\":38010,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38010,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":38010,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":31290,\"priceDoubleOcc\":\"35805.00\",\"priceSingleOcc\":35805,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35805,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":35805,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"38010.00\",\"priceSingleOcc\":38010,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38010,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":38010,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35210,\"priceDoubleOcc\":\"41685.00\",\"priceSingleOcc\":41685,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41685,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":41685,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"38010.00\",\"priceSingleOcc\":38010,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38010,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":38010,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":39620,\"priceDoubleOcc\":\"48300.00\",\"priceSingleOcc\":48300,\"priceExtraBed\":\"22260.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37800,\"CEB\":22260,\"COSTDO\":48300,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":22260,\"COSTTO\":22260}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43521\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57435.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":50890,\"priceDoubleOcc\":\"57435.00\",\"priceSingleOcc\":57435,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":57435,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":49420,\"priceDoubleOcc\":\"55230.00\",\"priceSingleOcc\":55230,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":55230,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":50890,\"priceDoubleOcc\":\"57435.00\",\"priceSingleOcc\":57435,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":57435,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":53340,\"priceDoubleOcc\":\"61110.00\",\"priceSingleOcc\":61110,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61110,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":61110,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":50890,\"priceDoubleOcc\":\"57435.00\",\"priceSingleOcc\":57435,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":57435,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800},{\"From\":\"2022-11-04\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":58240,\"priceDoubleOcc\":\"68460.00\",\"priceSingleOcc\":68460,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"29190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68460,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29190,\"CEB\":37800,\"COSTDO\":68460,\"COSTSO\":null,\"CostQuad\":null,\"ACEB\":37800,\"COSTTO\":37800}]}]}]}}]}]},\"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;&amp;Oslash; Accommodation on double sharing basis as per the details given above&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Meal Plan MAPI (Breakfast and Dinner).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Outdoor luncheon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; One day heritage guided walk tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Arrival\\/departure transfer and all land transfers as per the itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; NAC Innova (01 cab upto 04 pax, 02 cab from 06 to 10 pax and 03 cab for 12 pax) as per the itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Pickup and Drop from Leh Airport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Inner line permit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;Oslash; Driver allowance\\/toll\\/parking\\/road tax\\/fuel charge.&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\":{\"313930\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[313930],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1\"]}},\"313933\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[313933],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"313936\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[313936],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313939\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[313939],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"313942\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[313942],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"313945\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[313945],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"313948\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[313948],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"313951\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[313951],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1\"]}},\"313954\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[313954],\"Remark\":[\"&lt;p&gt;NON AC INNOVA&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"1\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[]}}','Leh,Nubra','Leh,Ladakh,Indian Subcontinent,North India,India,Nubra,Turtuk',NULL,'15229,35282',23600,74980,6,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-01-31 00:00:00','2023-01-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ladakh-autumn-experiences-2022-2023',NULL,NULL,NULL,0),(9,43698,1,36973,1,0,0,'Honeymoon,Adventure,Wildlife,Family,Cruise,Culture,Romantic,Shopping and Nightlife,Offbeat,Leisure,By Cab,Group Tours,Activites Tour,Educational Tours,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":43698,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/6135\\/package\\/images\\/amazing-australia_1667817811\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Australia, officially the Commonwealth of Australia, is a sovereign country comprising the mainland of the Australian continent, the island of Tasmania, and numerous smaller islands. With an area of 7,617,930 square kilometres, Australia is the largest country by area in Oceania and the world&amp;#39;s sixth-largest country.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Melbourne\",\"DestinationPlacesSysId\":35383,\"SourcePlaces\":\"Sydney\",\"SourcePlaceSysId\":26541,\"AgencyName\":\"Connect India\",\"Name\":\"Amazing Australia\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"9017\",\"SupplierName\":\"\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Cruise,Culture,Romantic,Shopping and Nightlife,Offbeat,Leisure,By Cab,Group Tours,Activites Tour,Educational Tours,Women Only\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":26541,\"Title\":\"Sydney\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":369927,\"Name\":\"Hotel ibis Sydney World Square\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.877854\",\"Long\":\"151.20784\",\"Address\":\"382-384 Pitt Street, Sydney 2000, New South Wales\"},\"Images\":[],\"CityId\":26541,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at ibis Sydney World Square, you&#039;ll be centrally located in Sydney, steps from World Square Shopping Centre and Capitol Theatre.  This hotel is within close proximity of Chinatown Night Market and ANZAC War Memorial.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 166 air-conditioned rooms featuring refrigerators. Pay movies provides entertainment, and wired and wireless Internet access is available for a surcharge. Private bathrooms with showers feature complimentary toiletries and hair dryers. 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;Enjoy recreation amenities such as a fitness center or take in the view from a terrace. This hotel also features wireless Internet access (surcharge) and a television in a common area.&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, which serves breakfast and dinner, or stay in and take advantage of 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 newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. A roundtrip airport shuttle is provided for a surcharge (available 24 hours).&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/27\\/4d\\/274d898825acfae47c1b2888e238c84236dac1fd.jpg\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":17927,\"Name\":\"Holiday Inn Darling Harbour\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.878519359627\",\"Long\":\"151.20354920626\",\"Address\":\"68 Harbour Street Sydney\"},\"Images\":{\"Image\":[{\"ImagId\":441281,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/107\\/SYDDH_4131766292_A.jpg\"},{\"ImagId\":441282,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/143\\/SYDDH_3896326518_A.jpg\"},{\"ImagId\":441283,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/181\\/SYDDH_3906727920_A.jpg\"},{\"ImagId\":441284,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/691\\/33\\/SYDDH_3567107762_A.jpg\"},{\"ImagId\":441285,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/73\\/SYDDH_3858359908_A.jpg\"},{\"ImagId\":441286,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/177\\/SYDDH_4124514299_A.jpg\"},{\"ImagId\":441287,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/690\\/915\\/SYDDH_3969318181_A.jpg\"},{\"ImagId\":441288,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/117\\/SYDDH_3884078886_A.jpg\"},{\"ImagId\":441289,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/85\\/SYDDH_3969363327_A.jpg\"},{\"ImagId\":441290,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/89\\/SYDDH_3543154589_A.jpg\"},{\"ImagId\":441291,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/777\\/829\\/SYDDH_4133699912_A.jpg\"},{\"ImagId\":441292,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/169\\/SYDDH_3816542344_A.jpg\"},{\"ImagId\":441293,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/185\\/SYDDH_3896326512_A.jpg\"},{\"ImagId\":441294,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/161\\/SYDDH_4126383181_A.jpg\"},{\"ImagId\":441295,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/131\\/SYDDH_3969289741_A.jpg\"},{\"ImagId\":441296,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/93\\/SYDDH_4126383018_A.jpg\"},{\"ImagId\":441297,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/227\\/SYDDH_3896326515_A.jpg\"},{\"ImagId\":441298,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/223\\/SYDDH_3898936459_A.jpg\"},{\"ImagId\":441299,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/81\\/SYDDH_3898936456_A.jpg\"},{\"ImagId\":441300,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/272\\/SYDDH_3861756786_A.jpg\"},{\"ImagId\":441301,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/260\\/SYDDH_3543319891_A.jpg\"},{\"ImagId\":441302,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/278\\/SYDDH_3385764776_A.jpg\"},{\"ImagId\":441303,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/252\\/SYDDH_3543501614_A.jpg\"},{\"ImagId\":441304,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/248\\/SYDDH_3581210242_A.jpg\"},{\"ImagId\":441305,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/461\\/412\\/SYDDH_4610239994_A.jpg\"},{\"ImagId\":441306,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/233\\/SYDDH_4155875508_A.jpg\"},{\"ImagId\":441307,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/135\\/SYDDH_3906727923_A.jpg\"},{\"ImagId\":441308,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/195\\/954\\/SYDDH_4324295485_A.jpg\"},{\"ImagId\":441309,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/193\\/SYDDH_3884078889_A.jpg\"},{\"ImagId\":441310,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/834\\/8\\/SYDDH_4035979742_A.jpg\"},{\"ImagId\":441311,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/153\\/SYDDH_4124088470_A.jpg\"},{\"ImagId\":441312,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/173\\/SYDDH_4131764832_A.jpg\"},{\"ImagId\":441313,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/189\\/SYDDH_4136597758_A.jpg\"},{\"ImagId\":441314,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/165\\/SYDDH_4126385848_A.jpg\"},{\"ImagId\":441315,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/201\\/SYDDH_4126382894_A.jpg\"},{\"ImagId\":441316,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/197\\/SYDDH_4136600726_A.jpg\"},{\"ImagId\":441317,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/241\\/SYDDH_4131764472_A.jpg\"},{\"ImagId\":441318,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/149\\/SYDDH_4126386095_A.jpg\"},{\"ImagId\":441319,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/113\\/SYDDH_4126341165_A.jpg\"},{\"ImagId\":441320,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/237\\/SYDDH_4126381754_A.jpg\"},{\"ImagId\":441321,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/207\\/SYDDH_4126382798_A.jpg\"},{\"ImagId\":441322,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/121\\/SYDDH_4126340537_A.jpg\"},{\"ImagId\":441323,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/101\\/SYDDH_4126385749_A.jpg\"},{\"ImagId\":441324,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/219\\/SYDDH_4126366410_A.jpg\"},{\"ImagId\":441325,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/69\\/SYDDH_3626198819_A.jpg\"},{\"ImagId\":441326,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/215\\/SYDDH_4131772519_A.jpg\"},{\"ImagId\":441327,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/211\\/SYDDH_4126365298_A.jpg\"},{\"ImagId\":441328,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/77\\/SYDDH_4140816658_A.jpg\"},{\"ImagId\":441329,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/157\\/SYDDH_4140824199_A.jpg\"},{\"ImagId\":441330,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/97\\/SYDDH_4136596611_A.jpg\"},{\"ImagId\":441331,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/690\\/955\\/SYDDH_4126385655_A.jpg\"},{\"ImagId\":441332,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/77\\/23\\/853\\/SYDDH_4657468098_A.jpg\"}]},\"CityId\":26541,\"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 Holiday Inn Darling Harbour, you&amp;apos;ll be centrally located in Haymarket, steps from Sydney Entertainment Centre and Market City. This 4-star hotel is close to University of Sydney and Sydney Opera House.&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 370 air-conditioned rooms featuring refrigerators and LED televisions. Cable programming provides entertainment, and wired and wireless Internet access is available for a surcharge. Private bathrooms have deep soaking bathtubs and complimentary toiletries. Conveniences include phones, as well as safes and desks.&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 recreational opportunities offered, including a spa tub, a sauna, and a fitness center. This hotel also features wireless Internet access (surcharge), concierge services, and babysitting\\/childcare (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;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast and dinner, or stay in and take advantage of 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 high-speed (wired) Internet access (surcharge), express check-in, and complimentary newspapers in the lobby.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/107\\/SYDDH_4131766292_A.jpg\",\"AccoAminitiesMask\":\"101000100000010000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":369966,\"Name\":\"Sofitel Sydney Darling Harbour\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.8726\",\"Long\":\"151.2\",\"Address\":\"12 Darling Drive, Sydney, New South Wales 2000\"},\"Images\":[],\"CityId\":26541,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Sydney (Darling Harbour), Sofitel Sydney Darling Harbour is minutes from International Convention Centre Sydney and Madame Tussauds Sydney.  This 5-star hotel is close to Sydney Opera House and Sydney Harbour Bridge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 590 air-conditioned rooms featuring minibars and LED televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. 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;Be sure to enjoy recreational amenities including an outdoor pool and a fitness center. Additional amenities at this hotel include wireless Internet access (surcharge), 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 a restaurant, or stay in and take advantage of the hotel&#039;s 24-hour room service. Relax with a refreshing drink at one of the 3 bars\\/lounges.&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-out, and dry cleaning\\/laundry services.&lt;\\/p&gt;\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe City View Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":34480,\"Title\":\"Dinner Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34481,\"Title\":\"Karunda Skyrail Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34482,\"Title\":\"Green Island Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4884,\"Title\":\"Sea World\",\"Description\":\"Sea World is a marine mammal park, oceanarium, and theme park located on the Gold Coast, Queensland, Australia. It includes rides, animal exhibits and other attractions, and it promotes conservation through education and the rescue and rehabilitation of sick, injured or orphaned wildlife. The park is commercially linked to Warner Bros. Movie World and Wet&#039;n&#039;Wild Gold Coast as part of the theme park division of Village Roadshow.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.957236,\"Long\":153.423327,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525503179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":4693,\"Title\":\"Cairns\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":2466,\"Name\":\"Best Western Central Plaza Apartments Cairns\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-16.911569794138\",\"Long\":\"145.76620861888\",\"Address\":\"255-257 Lake Street Cairns 4870\"},\"Images\":{\"Image\":[{\"ImagId\":54555,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/10\\/285\\/913\\/039922B_A.jpg\"}]},\"CityId\":4693,\"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 Best Western Central Plaza Apartments Cairns, you&amp;apos;ll be centrally located in Cairns North, steps from Cairns Esplanade Charles Street Parkland and minutes from Cairns Base Hospital.  This apartment is within close proximity of Muddy&amp;apos;s Playground and St Monica&amp;apos;s Cathedral.&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 40 air-conditioned rooms featuring kitchens with refrigerators and microwaves. Rooms have private balconies or patios. Cable programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include phones, as well as coffee\\/tea makers and washers\\/dryers.&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 an outdoor pool and a spa tub. Additional features at this apartment include complimentary wireless Internet access, tour\\/ticket assistance, and barbecue grills.&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 express check-out, dry cleaning\\/laundry services, and multilingual staff. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/10\\/285\\/913\\/039922B_A.jpg\",\"AccoAminitiesMask\":\"110100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":2438,\"Name\":\"Pacific Hotel Cairns \",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-16.922119326575\",\"Long\":\"145.77869634377\",\"Address\":\"Corner The Esplanade &amp; Spence Street PO Box 2325\"},\"Images\":{\"Image\":[{\"ImagId\":54202,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/493\\/141\\/Exterior_A.jpg\"},{\"ImagId\":54203,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/857\\/Chifley_Pacific_International_Cairns_-_Exterior_City_A.jpg\"},{\"ImagId\":54204,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/873\\/Chifley_Pacific_International_Cairns_-_Exterior_A.jpg\"},{\"ImagId\":54205,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/508\\/740\\/Pacific_International_Cairns_-_Interior__A.jpg\"},{\"ImagId\":54206,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/913\\/Deluxe_Room_1_A.jpg\"},{\"ImagId\":54207,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/508\\/732\\/Chifley_Pacific_International_Cairns_-_Executive_Room_A.jpg\"},{\"ImagId\":54208,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/809\\/Bushfire_Restaurant_Exteriorl_A.jpg\"},{\"ImagId\":54209,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/841\\/Chifley_Pacific_International_-_Bushfire_Restaurant_A.jpg\"},{\"ImagId\":54210,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/761\\/Bushfire_Restaurant_-_Taster_A.jpg\"},{\"ImagId\":54211,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/508\\/660\\/Bushfire_Restaurant_-_Churrasco_Grill_Served_A.jpg\"},{\"ImagId\":54212,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/825\\/Bushfire_Restaurant_-_Bar_A.jpg\"},{\"ImagId\":54213,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/665\\/BNP_120511-6795P_A.jpg\"},{\"ImagId\":54214,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/681\\/Chifley_Pacific_International_Cairns_-_Lounge__A.jpg\"},{\"ImagId\":54215,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/705\\/Chifley_Pacific_International_Cairns_-_Islander_2_A.jpg\"},{\"ImagId\":54216,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/769\\/Chifley_Pacific_International_Cairns_-_Ballroom_A.jpg\"},{\"ImagId\":54217,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/180\\/897\\/Chifley_Pacific_International_Cairns_-_Pool_A.jpg\"},{\"ImagId\":54218,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/826\\/243\\/CPI_52180809_A.jpg\"},{\"ImagId\":54219,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/826\\/259\\/CPI_52180913_A.jpg\"},{\"ImagId\":54220,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/839\\/288\\/CPI_60508732_Room2_A.jpg\"},{\"ImagId\":54221,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/839\\/300\\/CPI_52180841_Dining2_A.jpg\"},{\"ImagId\":54222,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/839\\/324\\/CPI_52180665_Meetings2_A.jpg\"},{\"ImagId\":54223,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/826\\/235\\/CPI_52180705_A.jpg\"},{\"ImagId\":54224,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/541\\/486\\/CPI_Home1_A.jpg\"},{\"ImagId\":54225,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/760\\/145\\/Home3_A.jpg\"},{\"ImagId\":54226,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/760\\/153\\/Weddings1_A.jpg\"},{\"ImagId\":54227,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/760\\/161\\/Weddings2_A.jpg\"},{\"ImagId\":54228,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/874\\/59\\/CPI_Home3_A.jpg\"}]},\"CityId\":4693,\"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 Pacific Hotel Cairns, you&amp;apos;ll be centrally located in Cairns, steps from Reef Fleet Terminal and minutes from Cairns Zoom and Wildlife Dome.  This 4.5-star hotel is within close proximity of ZOO To You HQ Wildlife Discovery Centre and Cairns Regional Gallery.&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 176 air-conditioned rooms featuring refrigerators and flat-screen televisions. Rooms have private balconies. Complimentary wired and wireless Internet access keeps you connected, and digital programming provides entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers.&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 such as an outdoor pool, or other amenities including complimentary wireless Internet access and wedding 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;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast 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.&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 a computer station, dry cleaning\\/laundry services, and a 24-hour front desk. Event facilities at this hotel consist of a conference center and meeting rooms. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/493\\/141\\/Exterior_A.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":2432,\"Name\":\"DoubleTree by Hilton Hotel Cairns\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-16.917374\",\"Long\":\"145.773768\",\"Address\":\"121-123 The Esplanade &amp; Florence Street P.O. Box 121\"},\"Images\":{\"Image\":[{\"ImagId\":54075,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/254\\/CNSDCDI_CNSDC_Aerial_shot_A.jpg\"},{\"ImagId\":54076,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/258\\/CNSDCDI_CNSDC_Lobby_2_A.jpg\"},{\"ImagId\":54077,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/262\\/CNSDCDI_CNSDC_Deluxe_Ocean_View_-_twin_A.jpg\"},{\"ImagId\":54078,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/266\\/CNSDCDI_CNSDC_Fitness_Centre_Hi_Res_A.jpg\"},{\"ImagId\":54079,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/270\\/CNSDCDI_CNSDC_Dunbar_-_Theatre_2_A.jpg\"},{\"ImagId\":54080,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/976\\/CNSDCDI_160202-4673_A.jpg\"},{\"ImagId\":54081,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/980\\/CNSDCDI_160202-7566_A.jpg\"},{\"ImagId\":54082,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/984\\/CNSDCDI_160219-1743-Edit_A.jpg\"},{\"ImagId\":54083,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/988\\/CNSDCDI_160302-1802_A.jpg\"},{\"ImagId\":54084,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/992\\/CNSDCDI_160302-1819_A.jpg\"},{\"ImagId\":54085,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/586\\/996\\/CNSDCDI_Buffet_Atrium_Restaurant_Hi_Res_A.jpg\"},{\"ImagId\":54086,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/278\\/CNSDCDI_CNSDC_Bathroom_High_-_flipped_A.jpg\"},{\"ImagId\":54087,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/282\\/CNSDCDI_CNSDC_Dunbar_-_Buffet_1_A.jpg\"},{\"ImagId\":54088,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/286\\/CNSDCDI_CNSDC_Guest_Room_-_twin_A.jpg\"},{\"ImagId\":54089,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/290\\/CNSDCDI_CNSDC_Lakefield_-_Banquet_3_A.jpg\"},{\"ImagId\":54090,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/294\\/CNSDCDI_CNSDC_Lakefield_-_Cabaret_A.jpg\"},{\"ImagId\":54091,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/298\\/CNSDCDI_CNSDC_Lobby_1_A.jpg\"},{\"ImagId\":54092,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/302\\/CNSDCDI_CNSDC_Lobby_Bar_Hi_Res_A.jpg\"},{\"ImagId\":54093,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/306\\/CNSDCDI_CNSDC_Terrace_-_Theatre_A.jpg\"},{\"ImagId\":54094,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/310\\/CNSDCDI_CNSDC_Terrace_-_UShape_3_A.jpg\"},{\"ImagId\":54095,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/314\\/CNSDCDI_CNSDC_cairns-esplanade-night_A.jpg\"},{\"ImagId\":54096,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/318\\/CNSDCDI_CNSDC_reef_experience_TTNQ47_A.jpg\"},{\"ImagId\":54097,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/30\\/CNSDCDI_Deluxe_Bathroom_A.jpg\"},{\"ImagId\":54098,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/34\\/CNSDCDI_Double_Deluxe_Mountain_View_A.jpg\"},{\"ImagId\":54099,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/38\\/CNSDCDI_Double_Deluxe_Water_View_2_A.jpg\"},{\"ImagId\":54100,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/42\\/CNSDCDI_Double_Deluxe_Water_View_A.jpg\"},{\"ImagId\":54101,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/46\\/CNSDCDI_Double_Deluxe_Waterview_4_A.jpg\"},{\"ImagId\":54102,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/50\\/CNSDCDI_Double_Guest_room_A.jpg\"},{\"ImagId\":54103,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/54\\/CNSDCDI_Exterior_V2_A.jpg\"},{\"ImagId\":54104,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/58\\/CNSDCDI_King_Deluxe_Room_with_Mountain_View_2_A.jpg\"},{\"ImagId\":54105,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/66\\/CNSDCDI_King_Deluxe_Room_with_Mountain_View_3_A.jpg\"},{\"ImagId\":54106,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/72\\/CNSDCDI_King_Deluxe_Room_with_Mountain_View_A.jpg\"},{\"ImagId\":54107,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/76\\/CNSDCDI_King_Deluxe_Room_with_Water_View_3_A.jpg\"},{\"ImagId\":54108,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/82\\/CNSDCDI_King_Deluxe_Room_with_Water_View_4_A.jpg\"},{\"ImagId\":54109,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/87\\/CNSDCDI_King_Deluxe_Room_with_Water_View_A.jpg\"},{\"ImagId\":54110,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/92\\/CNSDCDI_King_Guest_Room_A.jpg\"},{\"ImagId\":54111,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/98\\/CNSDCDI_Suite_2_A.jpg\"},{\"ImagId\":54112,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/105\\/CNSDCDI_Suite_View_A.jpg\"},{\"ImagId\":54113,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/587\\/110\\/CNSDCDI_Suite_A.jpg\"}]},\"CityId\":4693,\"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 DoubleTree by Hilton Hotel Cairns, you&amp;apos;ll be centrally located in Cairns, steps from Cairns Esplanade and Kick Contemporary Arts.  This 4.5-star hotel is within close proximity of Center of Contemporary Arts and Jute Theatre.&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 237 air-conditioned rooms featuring refrigerators and LCD televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. 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;Don&amp;apos;t miss out on the many recreational opportunities, including an outdoor pool, a spa tub, and a fitness center. Additional amenities at this hotel include wireless Internet access (surcharge), babysitting\\/childcare (surcharge), and gift shops\\/newsstands.&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, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&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 a business center, express check-in, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/291\\/254\\/CNSDCDI_CNSDC_Aerial_shot_A.jpg\",\"AccoAminitiesMask\":\"101100000000010000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":34480,\"Title\":\"Dinner Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34481,\"Title\":\"Karunda Skyrail Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34482,\"Title\":\"Green Island Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4884,\"Title\":\"Sea World\",\"Description\":\"Sea World is a marine mammal park, oceanarium, and theme park located on the Gold Coast, Queensland, Australia. It includes rides, animal exhibits and other attractions, and it promotes conservation through education and the rescue and rehabilitation of sick, injured or orphaned wildlife. The park is commercially linked to Warner Bros. Movie World and Wet&#039;n&#039;Wild Gold Coast as part of the theme park division of Village Roadshow.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.957236,\"Long\":153.423327,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525503179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":10616,\"Title\":\"Gold Coast\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":369673,\"Name\":\"Sea Mist Palms Apartments\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1500 Gold Coast Highway, Queensland, Gold Coast, Australia, , , 4221, \"},\"Images\":[],\"CityId\":10616,\"Brief\":\"Located in Palm Beach, Sea Mist Palms Apartments is a perfect starting point from which to explore Gold Coast. Offering a variety of facilities and services, the property provides all you need for a good night&#039;s sleep. Kitchen, car park, BBQ facilities, car hire, tours are on the list of things guests can enjoy. Comfortable guestrooms ensure a good night&#039;s sleep with some rooms featuring facilities such as additional bathroom, additional toilet, balcony\\/terrace, refrigerator, full kitchen. The property offers various recreational opportunities. Convenience and comfort make Sea Mist Palms Apartments the perfect choice for your stay in Gold Coast.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiqxBEKnzP6FO6cGEJAec3ITvEQwIFLoGpxj6jPy9e4Imnn7gj+lyxNUIYZCzwbIBwPaee5lTBUvPZgs9lOviherYBRCwzQjMxqa7YFJ4q96Q==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":369763,\"Name\":\"Mantra Legends Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Crn of Surfers Paradise Blvd &amp; Laycock St, Gold Coast, Australia, , , 4217, \"},\"Images\":[],\"CityId\":10616,\"Brief\":\"Mantra Legends Hotel is a popular choice amongst travelers in Gold Coast, whether exploring or just passing through. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. Facilities like 24-hour front desk, facilities for disabled guests, express check-in\\/check-out, luggage storage, car park are readily available for you to enjoy. Comfortable guestrooms ensure a good night&#039;s sleep with some rooms featuring facilities such as additional toilet, separate living room, television LCD\\/plasma screen, additional bathroom, internet access &acirc;&euro;&ldquo; wireless. Enjoy the hotel&#039;s recreational facilities, including fitness center, sauna, golf course (within 3 km), outdoor pool, steamroom, before retiring to your room for a well-deserved rest. Mantra Legends Hotel combines warm hospitality with a lovely ambiance to make your stay in Gold Coast unforgettable.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiML+TprZkTabTwwwPgGXxCQkEoOgYSSU4UsL+SDVs1LA89K+y7wsg6\\/yE1v5UK9qN2AyvKeeiZLniBd1MrCSiFN0VNSfJHq4g=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":369659,\"Name\":\"Novotel Surfers Paradise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-28.002503000000000\",\"Long\":\"153.428778000000000\",\"Address\":\"Cnr Surfers Paradise Blvd &amp; Hanlan Gold Coast 4217 Queensland Australia, Australia, \"},\"Images\":[],\"CityId\":10616,\"Brief\":\"The hotel is located in the very heart of Surfers Paradise, on the corner of the Gold Coast Highway and Hanlan Street, adjacent to the Paradise Shopping Centre on Cavill Avenue and half a block from the beach. Rooms are medium in size and generally in a very good condition.  Room facilities include air-conditioning, mini-bar, internet access (fees apply), tea &amp; coffee making facilities and cable TV.  Bathrooms feature a shower.  Bedding is either one king bed or two double beds plus a rollaway. The restaurant is open for breakfast, lunch and dinner. This is a modern building. This accommodation has a large lobby. Superb location in the heart of Surfers Paradise and only a few minutes walk from one of Australia&#039;s most popular beaches.  Plenty to do in the area with all the shops, restaurants, bars and attractions of Cavill Avenue on your doorstep.  Sea World and other fun parks is located around a 15 minute drive away.  NH0910 The accommodation refurbishment will involve our 252 standard guestrooms and will commence on the\\n29th May 2017 and will be completed mid December 2017. The planning of all aspects of the refurbishment\\nhas been designed to ensure minimal disruption and inconvenience to our guests. It will therefore be\\ncompleted a few floors at a time, with a buffer floor to minimise the noise, with work occurring from 8am to\\n5pm Monday to Friday.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":34480,\"Title\":\"Dinner Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34481,\"Title\":\"Karunda Skyrail Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34482,\"Title\":\"Green Island Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4884,\"Title\":\"Sea World\",\"Description\":\"Sea World is a marine mammal park, oceanarium, and theme park located on the Gold Coast, Queensland, Australia. It includes rides, animal exhibits and other attractions, and it promotes conservation through education and the rescue and rehabilitation of sick, injured or orphaned wildlife. The park is commercially linked to Warner Bros. Movie World and Wet&#039;n&#039;Wild Gold Coast as part of the theme park division of Village Roadshow.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.957236,\"Long\":153.423327,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525503179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":35383,\"Title\":\"Melbourne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509031,\"Name\":\"ibis Melbourne Central\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.812047\",\"Long\":\"144.9602102\",\"Address\":\"399 Little Lonsdale St, Melbourne VIC 3000, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":509032,\"Name\":\"Travelodge Docklands\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.81899689999999\",\"Long\":\"144.9503634\",\"Address\":\"66 Aurora Ln, Docklands VIC 3008, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":525663,\"Name\":\"Hilton Melbourne Little Queen Street\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.8147638\",\"Long\":\"144.9595096\",\"Address\":\"18 Little Queen St, Melbourne VIC 3000, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":34480,\"Title\":\"Dinner Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34481,\"Title\":\"Karunda Skyrail Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":34482,\"Title\":\"Green Island Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4884,\"Title\":\"Sea World\",\"Description\":\"Sea World is a marine mammal park, oceanarium, and theme park located on the Gold Coast, Queensland, Australia. It includes rides, animal exhibits and other attractions, and it promotes conservation through education and the rescue and rehabilitation of sick, injured or orphaned wildlife. The park is commercially linked to Warner Bros. Movie World and Wet&#039;n&#039;Wild Gold Coast as part of the theme park division of Village Roadshow.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.957236,\"Long\":153.423327,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525503179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9017,\"SupplierName\":\"\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"315134\",\"Title\":\"Sydney - Arrival at the Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Sydney Airport you&amp;#39;ll be transferred to your hotel you choosed for your stay. Upon flying into SYD airport make your way to the designated pick-up points. At International Terminal &amp;ndash; The designated meeting point is outside the arrivals terminal at Bay 12 (opposite the Rydges Airport Hotel). Please do not wait inside the Terminal, make your way to the Meeting Point when you walk out of the terminal&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;Sydney Sunset Cruise - Sydney Harbour Sunset Dinner Cruise&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a deluxe sunset cruise on Sydney Harbour accompanied by a delicious three-course dinner. From the water, admire iconic sights such as Sydney Harbour Bridge, Sydney Opera House, Fort Denison, Luna Park and more. Snap photos as the sky shimmers at sunset and the city skyline lights up for the night as you cruise through Sydney in the evening.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369966,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":34480,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315137\",\"Title\":\"Sydney Tour - Sydney attraction - SEA life Aquarium + Sydney Tower + Wild life zoo + Madame Tussauds\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Visit your choice of any two of Sydney&amp;rsquo;s top attractions with the convenient and economical Sydney combo pass. Choose from a list of five options: SEA LIFE Sydney Aquarium, WILD LIFE Sydney Zoo, Sydney Tower Eye or Madame Tussauds Sydney. The Sydney Tower Eye observation deck offers sweeping views over Sydney Harbour and the city. The zoo and aquariums feature an amazing array of native Australian wildlife. Pose for photos with life-like wax statues of your favorite celebrities at Madame Tussauds.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369966,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2049,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2175,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315140\",\"Title\":\"Sydney Tour - Full Day Blue Mountain with Featherdale Wildlife\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Visit Featherdale Wildlife Park, Sydney&amp;#39;s ultimate hands-on wildlife experience. Hand feed kangaroos, see Koalas, penguins, wombats and a crocodile. At Echo Point you will enjoy splendid views of the Jamison Valley and the Three Sisters , a towering rock formation from the dreamtime.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369966,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":26975,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315143\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"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\":\"315146\",\"Title\":\"Sydney - Cairns\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Sydney Airport Transfers - Departure to Airport&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It&amp;#39;s time to say goodbye to Sydney. You will be transferred to airport today to catch your flight to your next destination&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;: Cairns - Arrival at the Airport&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrival transfer from Cairns airport to your hotel, and enjoy a stress-free start to your trip. Simply meet your driver on arrival at Cairns Domestic Airport and travel to your Cairns CBD hotel. It&amp;rsquo;s an easy, cost-effective option that&amp;rsquo;s available for all arriving flights and there&amp;rsquo;s no need to worry about flight delays, as your driver will be waiting for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":2438,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":2432,\"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\":\"315149\",\"Title\":\"Cairns Tour - Karunda + Skyrail + Scenic Railway\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Explore the lush beauty, amazing wildlife and rich heritage of Tropical North Queensland on this customizable full-day trip to Kuranda from Cairns. Travel to this enchanting rain forest village aboard the historic Kuranda Scenic Railway, and choose from a variety of activities including visits to the Tjupakai Aboriginal Cultural Park and Rainforestation Nature Park. Hang out with koalas and exotic birds, browse local markets and opt to include a delicious buffet lunch. At the end of the day, glide through the treetops back to Cairns on the Skyrail Rainforest Cableway.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":2438,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":2432,\"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\":34481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315152\",\"Title\":\"Cairns Tour - Green island Day Trip\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Explore full-day catamaran tour to Green Island from Cairns. Create your own perfect day on this protected coral cay with optional variety of activities including snorkeling, scuba diving, Seawalking, nature walks, and tours on a glass-bottom boat. Upgrade to include a delicious buffet lunch on board the catamaran and\\/or a ride in a semi-submarine. It&amp;rsquo;s a fantastic way to discover the underwater wonders of the world&amp;rsquo;s most famous reef!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":2438,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":2432,\"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\":34482,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315155\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"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\":\"315158\",\"Title\":\"Cairns - Gold Coast\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;Cairns Airport Transfers - Departure from Airport&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It&amp;#39;s time to say goodbye to Cairns. Transfer to airport to board your flight to next destination.&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;Gold Coast - Transfer from Gold Coast Airport airport to Gold Coast Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start your visit to the Gold Coast with hassle-free airport pickup and easy transport to your hotel. This convenient and economical shared transfer service meets you at Airport (OOL) and provides door-to-door service to your hotel in the Gold Coast&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369673,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369659,\"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\":\"315161\",\"Title\":\"Gold Coast Tour day pass - Movie World\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Gold Coast Tour day pass - Movie World full day&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369673,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369659,\"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\":2170,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315164\",\"Title\":\"Gold Coast Tour day pass - Sea World full day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Gold Coast Tour day pass - Sea World full day&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369673,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369659,\"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\":4884,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315167\",\"Title\":\"Day Free\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Day Free at Leisure or opt for optional tours. Contact us for more info&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369673,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369659,\"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\":\"315170\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"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\":\"315173\",\"Title\":\"Gold Coast - Melbourne\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;&lt;strong&gt;Gold Coast Airport Transfers - Departure from Gold Coast to Gold Coast Airport&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It&amp;#39;s time to say goodbye to beautiful Gold Coast and Surfer Parasdie. Transfer to airport to board your flight to next destination&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;: Melbourne - Arrival at the Airport&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival at Melbourne Airport you&amp;#39;ll be transferred to your hotel in the central city.Depending on your time of arrival, you may have time to choose an optional tour, or to explore Melbourne at your leisure. Melbourne is a cosmopolitan city and a foodie&amp;#39;s delight. It&amp;#39;s an easy city to explore, with a good tram network and laid out on a grid system, so it&amp;#39;s hard to get lost.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":525663,\"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\":\"315176\",\"Title\":\"Melbourne Tour - Phillip Island Tour with Penguin Parade\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;Discover the natural delights of Phillip Island with an eco-tour from Melbourne. See the iconic Brighton Beach bathing boxes, visit the beach and take some time to admire these historic landmarks. Visit the Moonlit Sanctuary Conservation Park for an up-close encounter with koalas and other Australian wildlife. Finish the day at a local beach where you can watch hundreds of some of the world&amp;#39;s tiniest penguins waddle out of the ocean and across the sand to their burrows.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":525663,\"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\":\"315179\",\"Title\":\"Melbourne Tour - Great Ocean Road Tour + 12 Apostles Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;Discover some of Australia&amp;rsquo;s most photographed landscapes on this full-day tour of the famous Great Ocean Road from Melbourne. Stop for morning tea in Anglesea, spot wild koalas along the way, and tuck into lunch overlooking the dramatic Apollo Bay. After lunch, enjoy a hike through Great Otway National Park, learn how the notorious Shipwreck Coast earned its name, and marvel over natural landmarks like the 12 Apostles, Loch Ard Gorge, and the Gibson Steps.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":525663,\"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\":5577,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"315182\",\"Title\":\"Melbourne Airport Transfers - Departure from melbourne Hotel to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":14,\"Program\":\"&lt;p&gt;It&amp;#39;s time to say goodbye to Melbourne.Transfer to airport to board your flight to next destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"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\":\"43698\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"142738.96\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":130549,\"priceDoubleOcc\":\"142738.96\",\"priceSingleOcc\":248908.43,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":142738.96,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2710.4,\"COSTSO\":4726.4,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":130549,\"priceDoubleOcc\":\"142738.96\",\"priceSingleOcc\":248908.43,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":142738.96,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2710.4,\"COSTSO\":4726.4,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":130549,\"priceDoubleOcc\":\"142738.96\",\"priceSingleOcc\":248908.43,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":142738.96,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2710.4,\"COSTSO\":4726.4,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":133695,\"priceDoubleOcc\":\"147457.60\",\"priceSingleOcc\":253627.07,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":147457.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2800,\"COSTSO\":4816,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":136841,\"priceDoubleOcc\":\"152176.24\",\"priceSingleOcc\":258345.71,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":152176.24,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2889.6,\"COSTSO\":4905.6,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":136841,\"priceDoubleOcc\":\"152176.24\",\"priceSingleOcc\":258345.71,\"priceExtraBed\":\"94372.86\",\"priceWithoutBed\":\"70779.64\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":152176.24,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1344,\"CEB\":1792,\"COSTDO\":2889.6,\"COSTSO\":4905.6,\"CostQuad\":null,\"ACEB\":2016,\"COSTTO\":2016}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43699\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"147457.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":147458,\"priceDoubleOcc\":\"147457.60\",\"priceSingleOcc\":265423.68,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":147457.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":2800,\"COSTSO\":5040,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":147458,\"priceDoubleOcc\":\"147457.60\",\"priceSingleOcc\":265423.68,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":147457.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":2800,\"COSTSO\":5040,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":151390,\"priceDoubleOcc\":\"153355.90\",\"priceSingleOcc\":271321.98,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":153355.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":2912,\"COSTSO\":5152,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":155322,\"priceDoubleOcc\":\"159254.21\",\"priceSingleOcc\":277220.29,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":159254.21,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":3024,\"COSTSO\":5264,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":162793,\"priceDoubleOcc\":\"170460.99\",\"priceSingleOcc\":288427.07,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":170460.99,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":3236.8,\"COSTSO\":5476.8,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":162793,\"priceDoubleOcc\":\"170460.99\",\"priceSingleOcc\":288427.07,\"priceExtraBed\":\"141559.30\",\"priceWithoutBed\":\"106169.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":170460.99,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":2016,\"CEB\":2688,\"COSTDO\":3236.8,\"COSTSO\":5476.8,\"CostQuad\":null,\"ACEB\":2800,\"COSTTO\":2800}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43700\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"200542.34\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":180881,\"priceDoubleOcc\":\"200542.34\",\"priceSingleOcc\":353898.24,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":200542.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":3808,\"COSTSO\":6720,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":181668,\"priceDoubleOcc\":\"201721.99\",\"priceSingleOcc\":355077.89,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":201721.99,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":3830.4,\"COSTSO\":6742.4,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":181668,\"priceDoubleOcc\":\"201721.99\",\"priceSingleOcc\":355077.89,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":201721.99,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":3830.4,\"COSTSO\":6742.4,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":181668,\"priceDoubleOcc\":\"201721.99\",\"priceSingleOcc\":355077.89,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":201721.99,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":3830.4,\"COSTSO\":6742.4,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":188746,\"priceDoubleOcc\":\"212338.94\",\"priceSingleOcc\":365694.83999999997,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":212338.94,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":4032,\"COSTSO\":6944,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":188746,\"priceDoubleOcc\":\"212338.94\",\"priceSingleOcc\":365694.83999999997,\"priceExtraBed\":\"129762.68\",\"priceWithoutBed\":\"94372.86\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":212338.94,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1792,\"CEB\":2464,\"COSTDO\":4032,\"COSTSO\":6944,\"CostQuad\":null,\"ACEB\":2688,\"COSTTO\":2688}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"43698\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"136366.68\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":124721,\"priceDoubleOcc\":\"136366.68\",\"priceSingleOcc\":237796.44,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":136366.68,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2589.4,\"COSTSO\":4515.4,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":124721,\"priceDoubleOcc\":\"136366.68\",\"priceSingleOcc\":237796.44,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":136366.68,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2589.4,\"COSTSO\":4515.4,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":124721,\"priceDoubleOcc\":\"136366.68\",\"priceSingleOcc\":237796.44,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":136366.68,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2589.4,\"COSTSO\":4515.4,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":127726,\"priceDoubleOcc\":\"140874.67\",\"priceSingleOcc\":242304.43,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140874.67,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2675,\"COSTSO\":4601,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":130732,\"priceDoubleOcc\":\"145382.65\",\"priceSingleOcc\":246812.40999999997,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":145382.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2760.6,\"COSTSO\":4686.6,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":130732,\"priceDoubleOcc\":\"145382.65\",\"priceSingleOcc\":246812.40999999997,\"priceExtraBed\":\"90159.78\",\"priceWithoutBed\":\"67619.84\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":145382.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1284,\"CEB\":1712,\"COSTDO\":2760.6,\"COSTSO\":4686.6,\"CostQuad\":null,\"ACEB\":1926,\"COSTTO\":1926}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43699\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"140874.67\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":140875,\"priceDoubleOcc\":\"140874.67\",\"priceSingleOcc\":253574.41000000003,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140874.67,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":2675,\"COSTSO\":4815,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":140875,\"priceDoubleOcc\":\"140874.67\",\"priceSingleOcc\":253574.41000000003,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140874.67,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":2675,\"COSTSO\":4815,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":144631,\"priceDoubleOcc\":\"146509.65\",\"priceSingleOcc\":259209.39,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146509.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":2782,\"COSTSO\":4922,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":148388,\"priceDoubleOcc\":\"152144.65\",\"priceSingleOcc\":264844.39,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":152144.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":2889,\"COSTSO\":5029,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":155526,\"priceDoubleOcc\":\"162851.12\",\"priceSingleOcc\":275550.86,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":162851.12,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":3092.3,\"COSTSO\":5232.3,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":155526,\"priceDoubleOcc\":\"162851.12\",\"priceSingleOcc\":275550.86,\"priceExtraBed\":\"135239.69\",\"priceWithoutBed\":\"101429.76\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":162851.12,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1926,\"CEB\":2568,\"COSTDO\":3092.3,\"COSTSO\":5232.3,\"CostQuad\":null,\"ACEB\":2675,\"COSTTO\":2675}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"43700\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"191589.56\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":172806,\"priceDoubleOcc\":\"191589.56\",\"priceSingleOcc\":338099.20999999996,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191589.56,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3638,\"COSTSO\":6420,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":173558,\"priceDoubleOcc\":\"192716.54\",\"priceSingleOcc\":339226.19,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":192716.54,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3659.4,\"COSTSO\":6441.4,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":173558,\"priceDoubleOcc\":\"192716.54\",\"priceSingleOcc\":339226.19,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":192716.54,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3659.4,\"COSTSO\":6441.4,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":173558,\"priceDoubleOcc\":\"192716.54\",\"priceSingleOcc\":339226.19,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":192716.54,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3659.4,\"COSTSO\":6441.4,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":180320,\"priceDoubleOcc\":\"202859.52\",\"priceSingleOcc\":349369.17,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202859.52,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3852,\"COSTSO\":6634,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568},{\"From\":\"2022-11-08\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":180320,\"priceDoubleOcc\":\"202859.52\",\"priceSingleOcc\":349369.17,\"priceExtraBed\":\"123969.71\",\"priceWithoutBed\":\"90159.78\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202859.52,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1712,\"CEB\":2354,\"COSTDO\":3852,\"COSTSO\":6634,\"CostQuad\":null,\"ACEB\":2568,\"COSTTO\":2568}]}]}]}}]}]},\"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;International and Domestic Air tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Australia Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overseas Travel Insurance (Strongly recommended)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals, Laundry, telephone, optional excursions and other items of a personal nature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Portage Charges and\\/or luggage trolley in Hotel\\/Airport\\/During Tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST &amp;amp; TCS on total package cost as per rules&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips to Driver and Guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;High Season Surcharges as applicable&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of vehicle other than the specified itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any items or services not mentioned in the itinerary section.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not in inclusions is excluded&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation as per itinerary mentioned above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast at the hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunches &amp;amp; Dinners are optional and are included only if mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing tours \\/ excursions as mentioned in the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Admission tickets wherever applicable unless mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers to sightseeing \\/ excursion in comfortable A\\/c vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfer on Seat in Coach basis unless specified&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All local permit\\/road tax\\/state tax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All local taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No Hidden Cost&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\":{\"315134\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[315134],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"315137\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[315137],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315140\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[315140],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"315143\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[315143],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315146\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[315146],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"315149\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[315149],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315152\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[315152],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315155\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[315155],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315158\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[315158],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"315161\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[315161],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315164\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[315164],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315167\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[315167],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315170\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[315170],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315173\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[315173],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"315176\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[315176],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315179\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[315179],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"315182\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[315182],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[]}}','Sydney,Cairns,Gold Coast,Melbourne','Sydney,Oceania,Australia,Cairns,Gold Coast,Melbourne',NULL,'26541,4693,10616,35383',136367,212339,13,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Australia','13','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'amazing-australia',NULL,NULL,NULL,0),(10,42991,1,36973,1,0,0,'Honeymoon,Family,Hill Station,Weekend',NULL,1,1,0,'{\"package\":{\"TPId\":42991,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/6135\\/package\\/images\\/coorg-mysore-n-d_1665820723\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Coorg is called&amp;nbsp;&amp;ldquo;The Scotland of India&amp;rdquo;, because of its rolling hills and scenic countryside. Located in the Kodagu district, the elevation of this hill station town is over 1500 meters above sea level. It is the land of Kodavas known for hospitality, coffee, cardamom, pepper, orange and honey.&amp;nbsp; Kodavas are known for their own tradition and culture. Youget to see one of the fastest-growing cities in the world, also known as the garden city, silicon valley of India. Mysore is declared as a heritage city, rich in history and heritage. Major places of interest Mysore Palace, Brindavan garden, Chamundi hill, Srirangapatna.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Bengaluru\",\"DestinationPlacesSysId\":2262,\"SourcePlaces\":\"Bengaluru\",\"SourcePlaceSysId\":2262,\"AgencyName\":\"Connect India\",\"Name\":\"Coorg Mysore 3N 4D\",\"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,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Weekend\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":6879,\"Title\":\"Coorg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485066,\"Name\":\"Woodstock Resorts\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.4308796\",\"Long\":\"75.7535262\",\"Address\":\"Next to Big Cup Cafe Madikeri, Mangalore - Mysore Hwy, near Sampigekatte Junction, Kannanda Bane, Madikeri, Karnataka 571201, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488489,\"Name\":\"Hotel Mayura Valley View\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.4167567\",\"Long\":\"75.7344383\",\"Address\":\"near Raja&#039;s Seat, Stuart Hill, Madikeri, Karnataka 571201, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488490,\"Name\":\"Abbydhama Estate Stay\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.4413371\",\"Long\":\"75.7327273\",\"Address\":\"Abbyfalls Road, Madikeri, Karnataka 571201, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488491,\"Name\":\"Club Mahindra Madikeri Resort In Coorg\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.4408997\",\"Long\":\"75.71660039999999\",\"Address\":\"Galibeedu, Road, Karavale Badaga, Madikeri, Karnataka 571204, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488492,\"Name\":\"Paddington Resorts and Spa\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.418691\",\"Long\":\"75.87716999999999\",\"Address\":\"7th Hosakote, Thondoor Village, Suntikoppa Post, Somwarpet, Madikeri, Karnataka 571237, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418761,\"Name\":\"The Windflower Resorts And Spa Coorg\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.433306863061\",\"Long\":\"75.813470168442\",\"Address\":\"201\\/P1 Kedakal Village, Suntikoppa Hobli, Somwarpet Taluk, Mercara, Kodagu 571237\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Suntikoppa, The Windflower Resorts &amp; Spa is within the vicinity of Gaddige - Raja&#039;s Tomb and Madikeri Fort.  This 4.5-star resort is within the region of Raja&#039;s Seat and Harangi Dam.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 44 guestrooms. Bathrooms have designer toiletries and hair dryers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Make use of convenient amenities, which include complimentary wireless Internet access and an arcade\\/game room.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the resort&#039;s restaurant, where you can take in a pool view and dine alfresco (weather permitting). Snacks are also available at a coffee shop\\/cafe.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/3a\\/6b\\/3a6bd2bf073c9418e0fd11d07aab5fd856133924.jpg\",\"AccoAminitiesMask\":\"1010000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":67209,\"Name\":\"Heritage Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.459831052393\",\"Long\":\"75.694889624345\",\"Address\":\"Monnangeri Village Galibeedu\"},\"Images\":{\"Image\":[{\"ImagId\":1489630,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_1_t.jpg\"},{\"ImagId\":1489631,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_2_t.jpg\"},{\"ImagId\":1489632,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_3_t.jpg\"},{\"ImagId\":1489633,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_4_t.jpg\"},{\"ImagId\":1489634,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_6_t.jpg\"},{\"ImagId\":1489635,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_8_t.jpg\"},{\"ImagId\":1489636,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_14_t.jpg\"},{\"ImagId\":1489637,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_18_t.jpg\"},{\"ImagId\":1489638,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_10_t.jpg\"},{\"ImagId\":1489639,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_12_t.jpg\"},{\"ImagId\":1489640,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_11_t.jpg\"},{\"ImagId\":1489641,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_19_t.jpg\"},{\"ImagId\":1489642,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_16_t.jpg\"},{\"ImagId\":1489643,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_21_t.jpg\"},{\"ImagId\":1489644,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_9_t.jpg\"},{\"ImagId\":1489645,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_13_t.jpg\"},{\"ImagId\":1489646,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_7_t.jpg\"},{\"ImagId\":1489647,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_15_t.jpg\"},{\"ImagId\":1489648,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_20_t.jpg\"},{\"ImagId\":1489649,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_23_t.jpg\"},{\"ImagId\":1489650,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_17_t.jpg\"},{\"ImagId\":1489651,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_22_t.jpg\"},{\"ImagId\":1489652,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_24_t.jpg\"}]},\"CityId\":6879,\"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 Madikeri, Heritage Resort Coorg is within the vicinity of Gaddige - Raja&amp;apos;s Tomb and Madikeri Fort.  This hotel is within the vicinity of Raja&amp;apos;s Seat.&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;Stay in one of 26 guestrooms featuring LCD televisions. Conveniences include phones, as well as desks and coffee\\/tea makers.&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 Heritage Resort Coorg.&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 a 24-hour front desk and a safe deposit box at the front desk.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3770000\\/3768300\\/3768252\\/3768252_1_t.jpg\",\"AccoAminitiesMask\":\"101000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488493,\"Name\":\"Taj Madikeri Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.4459096\",\"Long\":\"75.6850139\",\"Address\":\"1st Monnangeri Galibeedu, Post, Madikeri, Karnataka 571201, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":67199,\"Name\":\"The Tamara  Coorg\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.424275\",\"Long\":\"75.738224\",\"Address\":\"Kabbinakad Estate Napoklu Nad\"},\"Images\":{\"Image\":[{\"ImagId\":1489467,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_1_b.jpg\"},{\"ImagId\":1489468,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_2_b.jpg\"},{\"ImagId\":1489469,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_3_b.jpg\"},{\"ImagId\":1489470,\"Type\":\"FullImage\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_4_b.jpg\"},{\"ImagId\":1489471,\"Type\":\"FullImage\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_5_b.jpg\"},{\"ImagId\":1489472,\"Type\":\"FullImage\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_6_b.jpg\"},{\"ImagId\":1489473,\"Type\":\"FullImage\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_7_b.jpg\"},{\"ImagId\":1489474,\"Type\":\"FullImage\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_8_b.jpg\"},{\"ImagId\":1489475,\"Type\":\"FullImage\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_9_b.jpg\"},{\"ImagId\":1489476,\"Type\":\"FullImage\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_10_b.jpg\"},{\"ImagId\":1489477,\"Type\":\"FullImage\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_11_b.jpg\"},{\"ImagId\":1489478,\"Type\":\"FullImage\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_12_b.jpg\"},{\"ImagId\":1489479,\"Type\":\"FullImage\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_13_b.jpg\"},{\"ImagId\":1489480,\"Type\":\"FullImage\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_14_b.jpg\"},{\"ImagId\":1489481,\"Type\":\"FullImage\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_15_b.jpg\"},{\"ImagId\":1489482,\"Type\":\"FullImage\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_16_b.jpg\"},{\"ImagId\":1489483,\"Type\":\"FullImage\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_17_b.jpg\"},{\"ImagId\":1489484,\"Type\":\"FullImage\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_18_b.jpg\"},{\"ImagId\":1489485,\"Type\":\"FullImage\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_19_b.jpg\"},{\"ImagId\":1489486,\"Type\":\"FullImage\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_20_b.jpg\"},{\"ImagId\":1489487,\"Type\":\"FullImage\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_21_b.jpg\"},{\"ImagId\":1489488,\"Type\":\"FullImage\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_22_b.jpg\"},{\"ImagId\":1489489,\"Type\":\"FullImage\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_23_b.jpg\"},{\"ImagId\":1489490,\"Type\":\"FullImage\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_24_b.jpg\"},{\"ImagId\":1489491,\"Type\":\"FullImage\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_25_b.jpg\"},{\"ImagId\":1489492,\"Type\":\"FullImage\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_26_b.jpg\"},{\"ImagId\":1489493,\"Type\":\"FullImage\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_27_b.jpg\"},{\"ImagId\":1489494,\"Type\":\"FullImage\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_28_b.jpg\"}]},\"CityId\":6879,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;You&amp;apos;ll be in the mountains with a stay at The Tamara Coorg in Kakabe.&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 31 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rec, Spa, Premium Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make use of convenient amenities such as 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;Satisfy your appetite at the resort&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or grab a snack at a coffee shop\\/caf&eacute;. 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 dry cleaning\\/laundry services and a 24-hour front desk. Planning an event in Kakabe? This resort has facilities measuring 1650 square feet (149 square meters), including meeting rooms. A shuttle from the airport to the hotel is provided for a surcharge (available on request), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/images.travelnow.com\\/hotels\\/6000000\\/5350000\\/5344000\\/5343985\\/5343985_1_b.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":488494,\"Name\":\"Evolve Back\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.322031\",\"Long\":\"75.89011760000001\",\"Address\":\"Karadigodu Rd, Post, Siddapura, Karnataka 571253, India\"},\"Images\":[],\"CityId\":6879,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":5,\"Title\":\"Abbey Falls\",\"Description\":\"Abbey Falls, also known as Abbi Falls, is located around 10 kilometres away from the town of Madikeri and is one of the most popular tourist attractions in and around Coorg. The water cascade coming down from the cliff from a height of 70 feet provides a spectacular scene to behold.  The flow of the falls leaves a significant amount of water spray on those who stand on the bridge for some time.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.43414,\"Long\":75.73758,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/288\\/thumb\\/Abbey Falls_174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1014,\"Title\":\"Madikeri Fort\",\"Description\":\"The Madikeri Fort is a famous historical landmark that is located in Coorg. The elevated structures of the fort also provide panoramic views of the town, which is undoubtedly breathtaking and beautiful. It cannot be argued that the Madikeri Fort is the most famous and most loved tourist attraction in Coorg, which is precisely why tourists enjoy visiting the attraction time and again.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4208474,\"Long\":75.7389661,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/285\\/thumb\\/Madikeri Fort_713.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20452,\"Title\":\"Omkareshwara Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.420754,\"Long\":75.741653,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1426,\"Title\":\"Raja&#039;s Seat\",\"Description\":\"Raja&amp;#039;s Seat, a garden with beautiful flowering plants and skilfully designed artificial fountains. The delightful garden here is adorned with a multitude of flowers and is a treat to nature lovers, and the proximity of the location also makes it a preferred picnic spot for the locals. There is also a Toy Train available for your little ones to take a ride on and the fountains have been modified into musical fountains. Today, this place is managed by the Archaeological Survey of India and is considered of historical importance in the country.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4141582,\"Long\":75.7369566,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/286\\/thumb\\/Raja&#039;s Seat_43.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":181,\"Title\":\"Bhagamandala\",\"Description\":\"Bhagamandala is situated in the scenic foothills of Talacauvery. Bhagamandala is also popularly called the &amp;#039;Triveni Sangam&amp;#039;.  Bhagamandala is not only extremely sacred but also a very spiritually uplifting and cleansing experience. It&amp;rsquo;s called a mythical river because legend says that the river Sujuyoti flows underground until it meets the sangam, and then it expands into its merry flow.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4136663,\"Long\":75.7426886,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/990\\/thumb\\/Bhagamandala_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1719,\"Title\":\"Talacauvery\",\"Description\":\"Talacauvery is the source of the river Kaveri, located on the Brahmagiri hill near Bhagamandala in Kodagu district.  It is believed that the River originates as a spring feeding a tank or a Kundike and then flows underground to re-emerge as Kaveri some distance away. The tank is marked by a temple and bathing in it on special occasions is considered holy.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4244205,\"Long\":75.7381856,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/287\\/thumb\\/Talacauvery_829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":246,\"Title\":\"Brindavan Garden\",\"Description\":\"Visited by close to 2 million tourists per year, the garden is one of the major attractions of Srirangapatna. It is spread across an area of 60 acres . The garden is laid out in 3 terraces which contain water fountains, Ficus trees, foliage plants such as Duranta plumaria and Euphorbia and flowering plants like Celosia, Marigold and bougainvillea. There is also a lake within the garden with boating facilities available for visitors.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.5221567,\"Long\":76.9009191,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/283\\/thumb\\/Brindavan Garden_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":263,\"Title\":\"Bylakuppe\",\"Description\":\"Bylakuppe is an area in Karnataka which is home to the Indian town Bylakuppe and several Tibetan settlements, established by Lugsum Samdupling and Dickyi Larsoe. It also shares the border with Eastern part of Coorg district.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2958104,\"Long\":76.6393805,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5070\\/thumb\\/Bylakuppe_166.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1166,\"Title\":\"Mysore Maharaja Palace\",\"Description\":\"Ambavilas Palace otherwise known as the Mysore Palace, is a historical palace and a royal residence at Mysore. Mysore Palace is now one of the most famous tourist attractions in India, after the Taj Mahal, with more than 6 million annual visitors. The architectural style of domes of the palace is commonly described as Indo-Saracenic, with blends of the Hindu, Mughal, Rajput, and Gothic styles. It is a three-story stone structure with marble domes, and has a 145-foot five-story tower.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.3051351,\"Long\":76.6551483,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/231\\/thumb\\/Mysore Maharaja Palace_756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20569,\"Title\":\"Dubare Elephant Camp\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.3730482,\"Long\":75.9044833,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1241,\"Title\":\"Kaveri Nisargadhama\",\"Description\":\"Kaveri Nisargadhama is an island formed by river Kaveri.  It is a 64-acre  island with lush foliage of thick bamboo groves, sandalwood and teak trees. The island is accessible through a hanging rope bridge. There are deer, rabbits, peacocks, and a children&amp;#039;s playground as well as an orchidarium.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4407439,\"Long\":75.9361629,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/290\\/thumb\\/Nisargadhama_175.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":294,\"Title\":\"Chamundi Hills\",\"Description\":\"Patronised for centuries by Mysore rulers, Chamundeshwari Temple is located atop the Chamundi Hills.Named after goddess Chamundi, the Chamundeshwari Temple sits atop the main hill. The main hill itself features an ancient stone stairway of 1,008 steps leading to its summit.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2784749,\"Long\":76.6681937,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/235\\/thumb\\/Chamundi Hills_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20454,\"Title\":\"Srirangapatna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.4237094,\"Long\":76.6828604,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1676,\"Title\":\"St. Philomena Church\",\"Description\":\"The full name is the Cathedral of St. Joseph and St. Philomena. It is also known as St. Joseph&amp;#039;s Cathedral.  It was constructed in 1936 using a Neo Gothic style and its architecture was inspired by the Cologne Cathedral in Germany. This is one of the tallest churches in Asia.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.316052,\"Long\":76.6568844,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/233\\/thumb\\/St. Philomena&#039;s Church_852.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}},{\"CityId\":18821,\"Title\":\"Mysore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485058,\"Name\":\"Hotel Rio Meridian\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.3289022\",\"Long\":\"76.6445608\",\"Address\":\"#2203, 54, Sayyaji Rao Rd, Bamboo Bazar, Tilak Nagar, Mysuru, Karnataka 570015, India\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418705,\"Name\":\"Spree Roopa Elite\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.3144\",\"Long\":\"76.6483\",\"Address\":\"29 6th Main Road, V.V Mohalla, Mysore 570002\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000000001100000\",\"AccoAminities\":[{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142174,\"Name\":\"Pai Vista\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.3144\",\"Long\":\"76.6483\",\"Address\":\"35\\/A Bangalore-Nilgiri Mysore 570 001\"},\"Images\":{\"Image\":[{\"ImagId\":3126569,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_1_t.jpg\"},{\"ImagId\":3126570,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_2_t.jpg\"},{\"ImagId\":3126571,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_3_t.jpg\"},{\"ImagId\":3126572,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_4_t.jpg\"},{\"ImagId\":3126573,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_5_t.jpg\"},{\"ImagId\":3126574,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_6_t.jpg\"},{\"ImagId\":3126575,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_7_t.jpg\"},{\"ImagId\":3126576,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_8_t.jpg\"},{\"ImagId\":3126577,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_9_t.jpg\"},{\"ImagId\":3126578,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_10_t.jpg\"},{\"ImagId\":3126579,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_11_t.jpg\"},{\"ImagId\":3126580,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_12_t.jpg\"}]},\"CityId\":18821,\"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 Pai Vista in Mysore, you&amp;apos;ll be minutes from Mysore Palace and Jaganmohan Palace and Art Gallery.  This hotel is within close proximity of Jayachamarajendra Art Gallery and St. Philomenas 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 66 air-conditioned rooms featuring minibars. Cable television is provided for your entertainment. Conveniences include coffee\\/tea makers, and irons\\/ironing boards can be requested.&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;Be sure to enjoy recreational amenities including a fitness center and a seasonal outdoor pool. Additional features at this hotel include complimentary wireless Internet access 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 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 a business center, laundry facilities, and a safe deposit box at the front desk. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2820000\\/2810400\\/2810332\\/2810332_1_t.jpg\",\"AccoAminitiesMask\":\"111000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418697,\"Name\":\"Hotel Southern Star Mysore\",\"Star\":\"3.50\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.311993\",\"Long\":\"76.643181\",\"Address\":\"14-15 Vinobha Road, Mysore 570005, Karnataka\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"Conveniently located close to the city centre, whilst also easily accessible from the airport.  TO1007 The hotel is located one kilometre from the city centre and ten from the airport.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/48\\/85\\/488593146ac0dd0bbd63ec2e3d7e82aff781d394.jpg\",\"AccoAminitiesMask\":\"1010000000001111000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142170,\"Name\":\"Sandesh the Prince\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.309323265104\",\"Long\":\"76.662366362788\",\"Address\":\"3 Nazarbad Main Road Mysore 570010\"},\"Images\":{\"Image\":[{\"ImagId\":3126542,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/54\\/1136736cdmssabrevfm_img_pho_000_nc__382510_Recreational_F_A.jpg\"},{\"ImagId\":3126543,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/64\\/1136736cdmssabrevfm_img_pho_000_nc__382513_Guest_Room___A.jpg\"},{\"ImagId\":3126544,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/74\\/1136736cdmssabrevfm_img_pho_000_nc__382514_Exterior___C.jpg\"},{\"ImagId\":3126545,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/94\\/1136736cdmssabrevfm_img_pho_000_nc__382520_Interior___A.jpg\"},{\"ImagId\":3126546,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/84\\/1136736cdmssabrevfm_img_pho_000_nc__382519_Other___A.jpg\"},{\"ImagId\":3126547,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/114\\/1136736cdmssabrevfm_img_pho_000_nc__382525_Other___A.jpg\"}]},\"CityId\":18821,\"Brief\":\"This 4 star hotel is located in the city centre of Mysore and was established in 2002. It is close to the Mysore Palace and the nearest station is Mysore Junction Railway Statio.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/17\\/647\\/54\\/1136736cdmssabrevfm_img_pho_000_nc__382510_Recreational_F_A.jpg\",\"AccoAminitiesMask\":\"100000000000000000\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418750,\"Name\":\"The Windflower Resort and Spa, Mysore\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.291793\",\"Long\":\"76.67042\",\"Address\":\"Maharanaprathap Road, Nazarabad, , Nazarbad, MYSORE, KARNATAKA, India, Pin-570010, 570010\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"Overlooking the Chamunda hills, The Windflower Resorts &amp; Spa is a popular property offering luxurious stay in Mysore. Featuring a large outdoor pool, this property is 149km from the Mysore Airport.  This resort offers 39 well-equipped rooms for accommodation. In-room amenities include tea\\/coffee maker, mini ?bar and flat screen television.  null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/maw\\/pyh\\/dbs\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142163,\"Name\":\"Fortune JP Palace\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.318362991545\",\"Long\":\"76.662981212139\",\"Address\":\"3 Abba Road Nazarbad\"},\"Images\":{\"Image\":[{\"ImagId\":3126506,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/778\\/Fortune_1_C.jpg\"},{\"ImagId\":3126507,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/796\\/Fortune_3_A.jpg\"},{\"ImagId\":3126508,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/787\\/Fortune_2_A.jpg\"}]},\"CityId\":18821,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Centrally located in Mysore, Fortune JP Palace is minutes from Jayachamarajendra Art Gallery and Jaganmohan Palace and Art Gallery.  This 4-star hotel is within close proximity of Mysore Palace and St. Philomenas 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 108 individually furnished guestrooms, featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature designer toiletries and hair dryers. Conveniences include phones, as well as laptop-compatible safes and desks.&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;Treat yourself with massages and body treatments. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool and a fitness center. This Art Deco hotel also features wireless Internet access (surcharge), concierge services, and gift shops\\/newsstands.&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;All-inclusive rates are available at this hotel. Meals and beverages at onsite dining establishments are included in all-inclusive rates. Charges may be applied for dining at some restaurants, special dinners and dishes, some beverages, and other amenities. &amp;lt;p&amp;gt;Grab a bite at one of the hotel&amp;apos;s 3 restaurants, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary buffet breakfast is served daily. &amp;lt;\\/p&amp;gt;&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 high-speed (wired) Internet access (surcharge), a 24-hour business center, and limo\\/town car service. Planning an event in Mysore? This hotel has facilities measuring 11700 square feet (1087 square meters), including a conference center. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/778\\/Fortune_1_C.jpg\",\"AccoAminitiesMask\":\"100100000000010000\",\"AccoAminities\":[{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142181,\"Name\":\"Radisson Blu Plaza Hotel Mysore\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.298202\",\"Long\":\"76.665169\",\"Address\":\"1 MG Road Mysore 570010\"},\"Images\":{\"Image\":[{\"ImagId\":3126621,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_33_t.jpg\"},{\"ImagId\":3126622,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_74_t.jpg\"},{\"ImagId\":3126623,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_86_t.jpg\"},{\"ImagId\":3126624,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_95_t.jpg\"},{\"ImagId\":3126625,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_97_t.jpg\"},{\"ImagId\":3126626,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_98_t.jpg\"},{\"ImagId\":3126627,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_99_t.jpg\"},{\"ImagId\":3126628,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_100_t.jpg\"},{\"ImagId\":3126629,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_109_t.jpg\"},{\"ImagId\":3126630,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_116_t.jpg\"},{\"ImagId\":3126631,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_110_t.jpg\"},{\"ImagId\":3126632,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_143_t.jpg\"},{\"ImagId\":3126633,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_144_t.jpg\"},{\"ImagId\":3126634,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_147_t.jpg\"},{\"ImagId\":3126635,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_145_t.jpg\"},{\"ImagId\":3126636,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_153_t.jpg\"},{\"ImagId\":3126637,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_154_t.jpg\"},{\"ImagId\":3126638,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_148_t.jpg\"},{\"ImagId\":3126639,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_149_t.jpg\"},{\"ImagId\":3126640,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_142_t.jpg\"},{\"ImagId\":3126641,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_141_t.jpg\"},{\"ImagId\":3126642,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_140_t.jpg\"},{\"ImagId\":3126643,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_132_t.jpg\"},{\"ImagId\":3126644,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_136_t.jpg\"},{\"ImagId\":3126645,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_137_t.jpg\"},{\"ImagId\":3126646,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_129_t.jpg\"},{\"ImagId\":3126647,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_124_t.jpg\"},{\"ImagId\":3126648,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_123_t.jpg\"},{\"ImagId\":3126649,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_122_t.jpg\"},{\"ImagId\":3126650,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_126_t.jpg\"},{\"ImagId\":3126651,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_135_t.jpg\"},{\"ImagId\":3126652,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_104_t.jpg\"},{\"ImagId\":3126653,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_102_t.jpg\"},{\"ImagId\":3126654,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_112_t.jpg\"},{\"ImagId\":3126655,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_107_t.jpg\"},{\"ImagId\":3126656,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_71_t.jpg\"}]},\"CityId\":18821,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Radisson Blu Plaza Hotel Mysore is centrally located in Mysore, walking distance from Mysore Zoo and close to Mysore Palace.  This hotel is within close proximity of Jaganmohan Palace and Art Gallery and Jayachamarajendra Art Gallery.&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 140 air-conditioned rooms featuring kitchens. LED televisions with digital programming provide entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include safes and complimentary newspapers, 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 time to pamper yourself with a visit to the full-service spa. You can take advantage of recreational amenities such as an outdoor pool, a spa tub, and a steam room. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). 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;Grab a bite to eat at the hotel&amp;apos;s restaurant, where you can take in a pool view, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary breakfast is included.&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 a 24-hour business center, express check-in, and express check-out. Event facilities at this hotel consist of a conference center and meeting rooms. 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\\/10000000\\/9400000\\/9398400\\/9398400\\/9398400_33_t.jpg\",\"AccoAminitiesMask\":\"111100100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142207,\"Name\":\"Grand Mercure Mysuru\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.3144\",\"Long\":\"76.6483\",\"Address\":\"2203 60 New Sayyaji Rao Road Nelson Mandela Circle\"},\"Images\":{\"Image\":[{\"ImagId\":3126993,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/506b7ed0_t.jpg\"},{\"ImagId\":3126994,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/902a67ef_t.jpg\"},{\"ImagId\":3126995,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/ca4bde3d_t.jpg\"},{\"ImagId\":3126996,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/cf5b9a37_t.jpg\"},{\"ImagId\":3126997,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/fe08e400_t.jpg\"},{\"ImagId\":3126998,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/ac24d99c_t.jpg\"},{\"ImagId\":3126999,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/6a0bc58b_t.jpg\"},{\"ImagId\":3127000,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/397ab849_t.jpg\"},{\"ImagId\":3127001,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/628ea7dd_t.jpg\"},{\"ImagId\":3127002,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/c0738c57_t.jpg\"},{\"ImagId\":3127003,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/67b48545_t.jpg\"},{\"ImagId\":3127004,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/69484559_t.jpg\"},{\"ImagId\":3127005,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/8c962bc2_t.jpg\"},{\"ImagId\":3127006,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/f9e9b9de_t.jpg\"},{\"ImagId\":3127007,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/b5e5a047_t.jpg\"},{\"ImagId\":3127008,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/c7eb91b8_t.jpg\"},{\"ImagId\":3127009,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/ad925e9f_t.jpg\"},{\"ImagId\":3127010,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/98f8b086_t.jpg\"},{\"ImagId\":3127011,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/8c588a44_t.jpg\"},{\"ImagId\":3127012,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/920ee181_t.jpg\"},{\"ImagId\":3127013,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/fc2a70ea_t.jpg\"},{\"ImagId\":3127014,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/d901422e_t.jpg\"},{\"ImagId\":3127015,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/b44f33ac_t.jpg\"},{\"ImagId\":3127016,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/11df3d8f_t.jpg\"},{\"ImagId\":3127017,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/0ca6db9f_t.jpg\"},{\"ImagId\":3127018,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/36c48503_t.jpg\"},{\"ImagId\":3127019,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/4cc34915_t.jpg\"},{\"ImagId\":3127020,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/4e0d91fb_t.jpg\"},{\"ImagId\":3127021,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/5e3ca853_t.jpg\"},{\"ImagId\":3127022,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/6a7f18b2_t.jpg\"},{\"ImagId\":3127023,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/7b687121_t.jpg\"},{\"ImagId\":3127024,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/85b03ef8_t.jpg\"},{\"ImagId\":3127025,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/a671acb3_t.jpg\"},{\"ImagId\":3127026,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/b2f76668_t.jpg\"},{\"ImagId\":3127027,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/e00d222f_t.jpg\"},{\"ImagId\":3127028,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/e6bc269f_t.jpg\"},{\"ImagId\":3127029,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/e944d9d7_t.jpg\"},{\"ImagId\":3127030,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/f0f9492c_t.jpg\"},{\"ImagId\":3127031,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/f1381f51_t.jpg\"},{\"ImagId\":3127032,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/f85dd9ec_t.jpg\"},{\"ImagId\":3127033,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/f9e1fe88_t.jpg\"},{\"ImagId\":3127034,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/fe9b77fc_t.jpg\"},{\"ImagId\":3127035,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/13455660_6_t.jpg\"},{\"ImagId\":3127036,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/13455660_7_t.jpg\"},{\"ImagId\":3127037,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/13455660_8_t.jpg\"},{\"ImagId\":3127038,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/13455660_9_t.jpg\"},{\"ImagId\":3127039,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/22d5805c_t.jpg\"},{\"ImagId\":3127040,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/570c2406_t.jpg\"},{\"ImagId\":3127041,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/59f48b37_t.jpg\"},{\"ImagId\":3127042,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/a84cea09_t.jpg\"},{\"ImagId\":3127043,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/d0e3599f_t.jpg\"},{\"ImagId\":3127044,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/da1235f3_t.jpg\"},{\"ImagId\":3127045,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/ff84c4a0_t.jpg\"}]},\"CityId\":18821,\"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 Grand Mercure Mysuru in Mysore, you&amp;apos;ll be convenient to St. Philomenas Church and Jayachamarajendra Art Gallery.  This 5-star hotel is within close proximity of Jaganmohan Palace and Art Gallery and Mysore Palace.&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 146 air-conditioned rooms featuring minibars and LED televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&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;Enjoy recreational amenities such as an outdoor pool and a 24-hour fitness center. This hotel 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 one of the hotel&amp;apos;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar. 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 a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Mysore? This hotel has facilities measuring 2153 square feet (200 square meters), including meeting rooms. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13460000\\/13455700\\/13455660\\/506b7ed0_t.jpg\",\"AccoAminitiesMask\":\"110100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":142168,\"Name\":\"Lalitha Mahal Palace\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.298263\",\"Long\":\"76.692342\",\"Address\":\"Mysore  570028 Karnataka\"},\"Images\":{\"Image\":[{\"ImagId\":3126535,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/26\\/340\\/897\\/Deluxe_Suite_A.jpg\"},{\"ImagId\":3126536,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/26\\/340\\/910\\/Property_pic_C.jpg\"}]},\"CityId\":18821,\"Brief\":\"The hotel is located in a low hilly area of Mysore, in the middle of nature&#039;s beauty. The hotel is situated about 15 km away from Mysore Airport and 8 km away from a railway station.\\n\\nThe air-conditioned hotel is a shimmering white palace with a splendid Italianate palazzo style, double-columned and domed, and is set in sprawling terraced and landscaped gardens. The hotel offers an experience of princely living with comfort. Guests are welcomed in the lobby, which offers a 24-hour reception, a hotel safe, currency exchange and a newspaper stand. There is also a games room and guests can enjoy a drink in the caf&eacute; and dine in the restaurant. Business travellers can make use of the conference facilities and Internet access. Additional features include room and laundry services and a car park for those arriving by car.\\n\\nThe hotel provides rooms featuring heritage architecture, modern convenience, decorated furniture and well maintained interiors. All rooms are en suite and feature a shower and a bath, as well as a double or king-size bed, a direct dial telephone, satellite\\/cable TV and wireless Internet access. Additional room amenities include an electronic safe, a minibar and tea and coffee making facilities. The rooms have air conditioning and a balcony or terrace.\\n\\nThe hotel provides a health club with gym to its guests.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/26\\/340\\/897\\/Deluxe_Suite_A.jpg\",\"AccoAminitiesMask\":\"110010001010100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":5,\"Title\":\"Abbey Falls\",\"Description\":\"Abbey Falls, also known as Abbi Falls, is located around 10 kilometres away from the town of Madikeri and is one of the most popular tourist attractions in and around Coorg. The water cascade coming down from the cliff from a height of 70 feet provides a spectacular scene to behold.  The flow of the falls leaves a significant amount of water spray on those who stand on the bridge for some time.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.43414,\"Long\":75.73758,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/288\\/thumb\\/Abbey Falls_174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1014,\"Title\":\"Madikeri Fort\",\"Description\":\"The Madikeri Fort is a famous historical landmark that is located in Coorg. The elevated structures of the fort also provide panoramic views of the town, which is undoubtedly breathtaking and beautiful. It cannot be argued that the Madikeri Fort is the most famous and most loved tourist attraction in Coorg, which is precisely why tourists enjoy visiting the attraction time and again.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4208474,\"Long\":75.7389661,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/285\\/thumb\\/Madikeri Fort_713.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20452,\"Title\":\"Omkareshwara Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.420754,\"Long\":75.741653,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1426,\"Title\":\"Raja&#039;s Seat\",\"Description\":\"Raja&amp;#039;s Seat, a garden with beautiful flowering plants and skilfully designed artificial fountains. The delightful garden here is adorned with a multitude of flowers and is a treat to nature lovers, and the proximity of the location also makes it a preferred picnic spot for the locals. There is also a Toy Train available for your little ones to take a ride on and the fountains have been modified into musical fountains. Today, this place is managed by the Archaeological Survey of India and is considered of historical importance in the country.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4141582,\"Long\":75.7369566,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/286\\/thumb\\/Raja&#039;s Seat_43.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":181,\"Title\":\"Bhagamandala\",\"Description\":\"Bhagamandala is situated in the scenic foothills of Talacauvery. Bhagamandala is also popularly called the &amp;#039;Triveni Sangam&amp;#039;.  Bhagamandala is not only extremely sacred but also a very spiritually uplifting and cleansing experience. It&amp;rsquo;s called a mythical river because legend says that the river Sujuyoti flows underground until it meets the sangam, and then it expands into its merry flow.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4136663,\"Long\":75.7426886,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/990\\/thumb\\/Bhagamandala_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1719,\"Title\":\"Talacauvery\",\"Description\":\"Talacauvery is the source of the river Kaveri, located on the Brahmagiri hill near Bhagamandala in Kodagu district.  It is believed that the River originates as a spring feeding a tank or a Kundike and then flows underground to re-emerge as Kaveri some distance away. The tank is marked by a temple and bathing in it on special occasions is considered holy.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4244205,\"Long\":75.7381856,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/287\\/thumb\\/Talacauvery_829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":246,\"Title\":\"Brindavan Garden\",\"Description\":\"Visited by close to 2 million tourists per year, the garden is one of the major attractions of Srirangapatna. It is spread across an area of 60 acres . The garden is laid out in 3 terraces which contain water fountains, Ficus trees, foliage plants such as Duranta plumaria and Euphorbia and flowering plants like Celosia, Marigold and bougainvillea. There is also a lake within the garden with boating facilities available for visitors.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.5221567,\"Long\":76.9009191,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/283\\/thumb\\/Brindavan Garden_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":263,\"Title\":\"Bylakuppe\",\"Description\":\"Bylakuppe is an area in Karnataka which is home to the Indian town Bylakuppe and several Tibetan settlements, established by Lugsum Samdupling and Dickyi Larsoe. It also shares the border with Eastern part of Coorg district.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2958104,\"Long\":76.6393805,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5070\\/thumb\\/Bylakuppe_166.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1166,\"Title\":\"Mysore Maharaja Palace\",\"Description\":\"Ambavilas Palace otherwise known as the Mysore Palace, is a historical palace and a royal residence at Mysore. Mysore Palace is now one of the most famous tourist attractions in India, after the Taj Mahal, with more than 6 million annual visitors. The architectural style of domes of the palace is commonly described as Indo-Saracenic, with blends of the Hindu, Mughal, Rajput, and Gothic styles. It is a three-story stone structure with marble domes, and has a 145-foot five-story tower.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.3051351,\"Long\":76.6551483,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/231\\/thumb\\/Mysore Maharaja Palace_756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20569,\"Title\":\"Dubare Elephant Camp\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.3730482,\"Long\":75.9044833,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1241,\"Title\":\"Kaveri Nisargadhama\",\"Description\":\"Kaveri Nisargadhama is an island formed by river Kaveri.  It is a 64-acre  island with lush foliage of thick bamboo groves, sandalwood and teak trees. The island is accessible through a hanging rope bridge. There are deer, rabbits, peacocks, and a children&amp;#039;s playground as well as an orchidarium.\",\"CurrencyType\":0,\"CityId\":6879,\"CityName\":\"Coorg\",\"Lat\":12.4407439,\"Long\":75.9361629,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/290\\/thumb\\/Nisargadhama_175.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":294,\"Title\":\"Chamundi Hills\",\"Description\":\"Patronised for centuries by Mysore rulers, Chamundeshwari Temple is located atop the Chamundi Hills.Named after goddess Chamundi, the Chamundeshwari Temple sits atop the main hill. The main hill itself features an ancient stone stairway of 1,008 steps leading to its summit.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2784749,\"Long\":76.6681937,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/235\\/thumb\\/Chamundi Hills_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":20454,\"Title\":\"Srirangapatna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.4237094,\"Long\":76.6828604,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1676,\"Title\":\"St. Philomena Church\",\"Description\":\"The full name is the Cathedral of St. Joseph and St. Philomena. It is also known as St. Joseph&amp;#039;s Cathedral.  It was constructed in 1936 using a Neo Gothic style and its architecture was inspired by the Cologne Cathedral in Germany. This is one of the tallest churches in Asia.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.316052,\"Long\":76.6568844,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/233\\/thumb\\/St. Philomena&#039;s Church_852.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"310311\",\"Title\":\"Bangalore \\/ Coorg: (270Kms \\/ 5 Hrs)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Meet on arrival at Bangalore Railway Station \\/ Airport &amp;amp; proceed to Coorg &amp;ndash; Madikeri. On arrival check into the resort, have lunch &amp;amp; relax. Later proceed to visit&amp;nbsp;Abbey falls-Tucked away between private coffee and spice estate,&amp;nbsp;Madikeri Fort&amp;nbsp;- The 19th century Madikeri fort with its stone ramparts now houses the prison,&amp;nbsp;Omkareshwara Temple&amp;nbsp;- Built in 1820 and featuring a blend of red-tile roofed Kerala architecture and Islamic-style domes. Evening visit&amp;nbsp;Raja Seat- is an enchanting picnic spot with a swathing in the nature&amp;#39;s lap. Return to hotel and overnight.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6879,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485066,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":488489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":488490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":488491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":488492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":418761,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":67209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":488493,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":67199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":488494,\"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\":5,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1014,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20452,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1426,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"310314\",\"Title\":\"Coorg - Madikeri\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Morning breakfast, proceed to visit&amp;nbsp;Bhagamandala&amp;nbsp;- situated at the confluence of two rivers, the Cauvery and the Kanika. A third river, the Sujyothi is said to join from underground, visit&amp;nbsp;Talacauvery&amp;nbsp;- known as DakshinKashi is the birthplace of river Cauvery at the foot of the breath taking Brahmagiri Hills in Coorg. The river flows down inconspicuously as &amp;#39;Guptagamini&amp;#39; from here before re-emerging a small distance downwards at Nagateerta. Back to hotel for dinner and Overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6879,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485066,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":488489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":488490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":488491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":488492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":418761,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":67209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":488493,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":67199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":488494,\"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\":181,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1719,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"310317\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6879,\"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\":\"310320\",\"Title\":\"Coorg - Madikeri \\/ Mysore (130 Km \\/ 03 Hrs)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Early breakfast checkout and proceed to&amp;nbsp;Dubare elephant camp&amp;nbsp;(to reach the place before 08.30Hrs) offer the 3 hour experience with Elephants consisting of elephant Grooming, feeding,&amp;nbsp;later visit&amp;nbsp;Cauvery Nisargadhama&amp;nbsp;- is an island formed by river Cauvery and is used as a picnic spot island, with lush foliage of thick bamboo groves, Lunch at Kushalnagar and later visit&amp;nbsp;Bylakuppe&amp;nbsp;- largest Tibetan settlement in South India. The temple has 62 feet Buddha statues covered with gold plates is a wonderful sight anytime. Later drive to Mysore. On arrival check into hotel. Later proceed to visit&amp;nbsp;Maharaja Palace&amp;nbsp;- the palace is a splendid structure in the Indo - Saracenic style, among its many attractions are a magnificent gold throne, evening visit&amp;nbsp;Brindavan Garden&amp;nbsp;- &amp;nbsp;musical fountains and colored lights transform this place into a magical fairyland. Return to hotel for dinner and overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18821,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":418705,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":142174,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":418697,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":142170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":418750,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":142163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":142181,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":142207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":142168,\"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\":246,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":263,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1166,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20569,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1241,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"310323\",\"Title\":\"Mysore \\/ Bangalore (160 Km \\/ 04 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast, checkout and proceed to visit&amp;nbsp;Chamundi Hill&amp;nbsp;- perched atop a hill. The 4.8m tall monolith of Nandi and the gigantic Mahishasura statue are added attractions and later drive to Bangalore enroute visit Enroute visit&amp;nbsp;St. Philomena&amp;rsquo;s Church&amp;nbsp;- this imposing Gothic structure with beautiful stained glass windows and lofty towers is a must see. Visit&amp;nbsp;Srirangapatna&amp;nbsp;- the island fortress of Tippu Sultan.&amp;nbsp;On arrival drop at the Railway station \\/ Airport to board the Flight \\/ Train for the onward destination. Tour Ends.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18821,\"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\":294,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20454,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7667,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":29500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":8500,\"COSTSO\":29500,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8000,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":9000,\"COSTSO\":30000,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":10500,\"COSTSO\":31500,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":10500,\"COSTSO\":31500,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":10500,\"COSTSO\":31500,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11000,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":6000,\"COSTDO\":13500,\"COSTSO\":34500,\"CostQuad\":null,\"ACEB\":6000,\"COSTTO\":6000}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"42992\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":14000,\"COSTSO\":42000,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":14000,\"COSTSO\":42000,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":14500,\"COSTSO\":42500,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":14500,\"COSTSO\":42500,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":14500,\"COSTSO\":42500,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15333,\"priceDoubleOcc\":\"18500.00\",\"priceSingleOcc\":46500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":9000,\"COSTDO\":18500,\"COSTSO\":46500,\"CostQuad\":null,\"ACEB\":9000,\"COSTTO\":9000}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"42993\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21833,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":71500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":26000,\"COSTSO\":71500,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":72500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":27000,\"COSTSO\":72500,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23167,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":73500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":28000,\"COSTSO\":73500,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21500,\"priceDoubleOcc\":\"25500.00\",\"priceSingleOcc\":71000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":25500,\"COSTSO\":71000,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21500,\"priceDoubleOcc\":\"25500.00\",\"priceSingleOcc\":71000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":25500,\"COSTSO\":71000,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24167,\"priceDoubleOcc\":\"29500.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":13500,\"COSTDO\":29500,\"COSTSO\":75000,\"CostQuad\":null,\"ACEB\":13500,\"COSTTO\":13500}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7667,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":29500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8000,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9000,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11000,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"42992\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"9000.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-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":42500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15333,\"priceDoubleOcc\":\"18500.00\",\"priceSingleOcc\":46500,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"42993\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21833,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":71500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":72500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23167,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":73500,\"priceExtraBed\":\"13500.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-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21500,\"priceDoubleOcc\":\"25500.00\",\"priceSingleOcc\":71000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21500,\"priceDoubleOcc\":\"25500.00\",\"priceSingleOcc\":71000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24167,\"priceDoubleOcc\":\"29500.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29500.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;Personal Expenses such as Laundry, telephone calls, tips &amp;amp; gratuity, Bottled water, soft &amp;amp;harddrinks, and Adventure Activities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost arising due to natural calamities like, landslides, road blockage, politicaldisturbances(strikes), etc (to be borne by the client, which is directly payable on the spot).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp;landarrangements, which may come into effect prior to departure.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin \\/ triple sharing basis with breakfast, dinner and taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by Ac Car \\/ Coach including sightseeing as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Driver Allowance, parking, toll &amp;amp;taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST.&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\":{\"310311\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[310311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"310314\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[310314],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"310317\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[310317],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"310320\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[310320],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"310323\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[310323],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Coorg,Mysore','Coorg,Karnataka,Indian Subcontinent,South India,India,Mysore',NULL,'6879,18821',8500,29500,3,NULL,NULL,NULL,1,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'coorg-mysore-3n-4d',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (11,39794,1,36973,1,0,0,'Honeymoon,Beach,Family,Romantic,Leisure,By Cab,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":39794,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/remaining_andaman_1660478153.jpg\",\"BookingValidUntill\":\"2023-09-30\",\"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\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Connect India\",\"Name\":\"Remaining Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7195\",\"SupplierName\":\"Mountain Edge\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Intercity Transfers,Sightseeing,Ferry\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure,By Cab,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":514324,\"Name\":\"Hotel Mainak\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4821661,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_514324\\/6135_01659087336.jpg\"}]},\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_514324\\/6135_5a132ed729323e599d494468df20736e1659087336.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"BASE CATEGORY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":515959,\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":515960,\"Name\":\"Hotel Ami Grace\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":516000,\"Name\":\"Lemon Tree Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6501515\",\"Long\":\"92.73127339999999\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":515962,\"Name\":\"Symphony Samudra Beachside Jungle Resort And Spa\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.5080812\",\"Long\":\"92.7039755\",\"Address\":\"Chidyatapu Beach, next to Biological Park, Port Blair, Andaman and Nicobar Islands 744105, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":515961,\"Name\":\"Lemon Tree Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6501515\",\"Long\":\"92.73127339999999\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29783,\"Title\":\"Limestone Cave Baratang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.0959029,\"Long\":92.7454867,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29782,\"Title\":\"Mud Volcano - ?????? ??????????\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.1297889,\"Long\":92.79198889999999,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29787,\"Title\":\"Ross & Smith Islands\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34491,\"CityName\":\"Diglipur\",\"Lat\":13.3044187,\"Long\":93.0720681,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516187,\"Name\":\"Royal Crown Beach Resort\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0288644\",\"Long\":\"92.9994356\",\"Address\":\"Havelock Swaraj Dweep (Havelock, Andaman and Nicobar Islands 744201, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"BASE CATEGORY\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":516188,\"Name\":\"Havelock Country Homes\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0386457\",\"Long\":\"92.98287859999999\",\"Address\":\"Govind Nagar, 1 , South, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":516189,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\".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\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":516191,\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29783,\"Title\":\"Limestone Cave Baratang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.0959029,\"Long\":92.7454867,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29782,\"Title\":\"Mud Volcano - ?????? ??????????\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.1297889,\"Long\":92.79198889999999,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29787,\"Title\":\"Ross & Smith Islands\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34491,\"CityName\":\"Diglipur\",\"Lat\":13.3044187,\"Long\":93.0720681,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null}]}},{\"CityId\":34491,\"Title\":\"Diglipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516760,\"Name\":\"Pristine Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.2266124\",\"Long\":\"93.0451247\",\"Address\":\"Great Andaman Trunk Rd, Kalipur, Diglipur, Andaman and Nicobar Islands 744202, India\"},\"Images\":[],\"CityId\":34491,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null,\"RoomTypeName\":\"BASE CATEGORY\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"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\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29783,\"Title\":\"Limestone Cave Baratang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.0959029,\"Long\":92.7454867,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29782,\"Title\":\"Mud Volcano - ?????? ??????????\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":12.1297889,\"Long\":92.79198889999999,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null},{\"RefSSId\":29787,\"Title\":\"Ross & Smith Islands\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34491,\"CityName\":\"Diglipur\",\"Lat\":13.3044187,\"Long\":93.0720681,\"Image\":\"0\",\"SupplierSysId\":7195,\"SupplierName\":\"Mountain Edge\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"285618\",\"Title\":\"ARRIVE PORT BLAIR\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrive at Port Blair airport, our representative will receive and escorted to the hotel. After check-in at the hotel and little relax, we proceed to covers &lt;strong&gt;Cellular Jail (National Memorial)&lt;\\/strong&gt;, and after at evening, we move for the &lt;strong&gt;Light and Sound Show at Cellular Jail &lt;\\/strong&gt;where the saga of the freedom struggle brought alive.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;The Cellular Jail &lt;\\/strong&gt;has a pride of place in India&amp;rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-storey prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The day draws to a gentle close with the &lt;strong&gt;Sound and Light Show at the historic Cellular Jail&lt;\\/strong&gt; which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":514324,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":515959,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":515960,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":515962,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"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\":2294,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285623\",\"Title\":\"PORT BLAIR &ndash; ROSS ISLAND (NSCB Dweep) &ndash; NORTH BAY ISLAND (Coral Island)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today, after breakfast we will proceed for a full day cruising towards &lt;strong&gt;Ross Island &amp;amp; North Bay(Coral Island)&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;First we starts the exhilarating journey (by boat) to &lt;strong&gt;Ross Island (Netaji Subhash Chandra Bose Dweep) &lt;\\/strong&gt;the erstwhile capital of Port Blair during the British regime, it now stands an imposing relic, with the structure almost in debris. A small museum displays photographs and other antiques of the Britishers, relevant to these Islands.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From Ross Island, we proceed for a joyful trip to &lt;strong&gt;North Bay island (Coral Island)&lt;\\/strong&gt; offering exotic coral, colourful fishes and underwater marine life. We can view this colourful corals &amp;amp; underwater marine life.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":514324,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":515959,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":515960,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":515962,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"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\":\"285628\",\"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\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285633\",\"Title\":\"PORT BLAIR - HAVELOCK ISLAND (Swaraj Dweep)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today morning after breakfast, check out from Port Blair Hotel to visit Havelock Island (renamed to Swaraj Dweep). The Journey of Havelock Island starts by ferry from Port Blair Harbour. The sailing duration is around 90 to 120 minutes. On arrival at Havelock Island, our representative will receive at Harbour and assist to check-in to the 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\":516187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":516188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":516189,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516189,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":516191,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"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\":\"285638\",\"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\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285643\",\"Title\":\"HAVELOCK ISLAND - PORT BLAIR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, we check out from the resort and visit &lt;strong&gt;Radhanagar Beach (Beach No. 7)&lt;\\/strong&gt;, the Times Magazine crowned one among the best beaches in Asia. The wide sandy beach is ideal for swimming, play with high tides, sea bathing and basking. There are multiple options for multi-cuisine restaurant for lunch at Havelock and paradise for sea food lovers, post lunch proceed towards Havelock Harbour for return journey towards Port Blair (via ferry) and 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\":514324,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":515959,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":515960,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":515961,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":515962,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"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\":\"285648\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"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\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285653\",\"Title\":\"DEPART FROM PORT BLAIR TO DIGLIPUR ISLAND: \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Depart from Port Blair to Diglipur Island (325 KMS) by road through the dense tropical forest and Jarawa Tribal reserve. Often you might see a member of the Jarawa Tribe while passing through the tribal reserve. On your journey you will take the route of Andaman Grand Trunk Road passing through Baratang Island, Rangat &amp;amp; Mayabunder. Reach Diglipur &amp;amp; overnight stay at Diglipur. Experience the lifeline of the Andaman Islands, Vehicle Ferry on your journey. A personal ac vehicle will be provided for your trip to Diglipur Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34491,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29783,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29782,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285658\",\"Title\":\"EXCURSION TO ROSS AND SMITH ISLAND AND LATER VISIT ARIAL BAY BEACH:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;This day we visit the heart of Diglipur, Ross and Smith Island. 2 Islands separated by a Sand bar is a treat to see and experience. Your journey begins from Arial Bay Jetty by boat. It takes around 30 minutes by boat to reach the twin Island. Virgin beaches on this island is a treat to experience. Spend your day enjoying the turquoise water and walk on the Sand bar that adjoins both Ross and Smith Island. We then return back from this trip and visit Aerial Bay beach that is one among the turtle nesting grounds in Diglipur. Overnight Stay in Diglipur.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34491,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":516760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29787,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"285663\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34491,\"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\":\"285668\",\"Title\":\"TRAVEL FROM DIGLIPUR TO PORT BLAIR AND VISIT AMBKUNJ BEACH IN RANGAT:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Today we start early from Diglipur and visit Amkunj beach in Rangat. At around 3:00pm we take a convoy through the Jarawa Tribe reserve to reach Port Blair. Overnight stay in Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":514324,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":515959,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":515960,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":516000,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":515962,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"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\":\"285673\",\"Title\":\"DEPART FROM ANDAMAN ISLANDS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Check out from the hotel and head to the airport for your journey back home, with memories of the mesmerizing Andaman and Nicobar Islands.&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\":\"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\":1,\"Type\":\"Budget\",\"TPSysId\":\"39794\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25806.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21470,\"priceDoubleOcc\":\"25806.90\",\"priceSingleOcc\":52124.100000000006,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25806.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":25806.9,\"COSTSO\":52124.1,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21644,\"priceDoubleOcc\":\"26067.30\",\"priceSingleOcc\":52384.5,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26067.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":26067.3,\"COSTSO\":52384.5,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21820,\"priceDoubleOcc\":\"26330.85\",\"priceSingleOcc\":52648.05,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26330.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":26330.85,\"COSTSO\":52648.05,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21997,\"priceDoubleOcc\":\"26596.50\",\"priceSingleOcc\":52913.7,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26596.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":26596.5,\"COSTSO\":52913.7,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22176,\"priceDoubleOcc\":\"26865.30\",\"priceSingleOcc\":53182.5,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26865.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":26865.3,\"COSTSO\":53182.5,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22542,\"priceDoubleOcc\":\"27414.45\",\"priceSingleOcc\":53731.65,\"priceExtraBed\":\"12681.90\",\"priceWithoutBed\":\"11064.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27414.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11064.9,\"CEB\":12681.9,\"COSTDO\":27414.45,\"COSTSO\":53731.65,\"CostQuad\":null,\"ACEB\":12797.4,\"COSTTO\":12797.4},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":23199,\"priceDoubleOcc\":\"27926.85\",\"priceSingleOcc\":56406,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27926.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":27926.85,\"COSTSO\":56406,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":23388,\"priceDoubleOcc\":\"28209.30\",\"priceSingleOcc\":56688.45,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28209.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28209.3,\"COSTSO\":56688.45,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":23577,\"priceDoubleOcc\":\"28493.85\",\"priceSingleOcc\":56973,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28493.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28493.85,\"COSTSO\":56973,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":23770,\"priceDoubleOcc\":\"28782.60\",\"priceSingleOcc\":57261.75,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28782.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28782.6,\"COSTSO\":57261.75,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":23963,\"priceDoubleOcc\":\"29072.40\",\"priceSingleOcc\":57551.55,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29072.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":29072.4,\"COSTSO\":57551.55,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24359,\"priceDoubleOcc\":\"29666.70\",\"priceSingleOcc\":58145.850000000006,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29666.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":29666.7,\"COSTSO\":58145.85,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23199,\"priceDoubleOcc\":\"27926.85\",\"priceSingleOcc\":56406,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27926.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":27926.85,\"COSTSO\":56406,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23388,\"priceDoubleOcc\":\"28209.30\",\"priceSingleOcc\":56688.45,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28209.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28209.3,\"COSTSO\":56688.45,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23577,\"priceDoubleOcc\":\"28493.85\",\"priceSingleOcc\":56973,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28493.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28493.85,\"COSTSO\":56973,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23770,\"priceDoubleOcc\":\"28782.60\",\"priceSingleOcc\":57261.75,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28782.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":28782.6,\"COSTSO\":57261.75,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23963,\"priceDoubleOcc\":\"29072.40\",\"priceSingleOcc\":57551.55,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29072.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":29072.4,\"COSTSO\":57551.55,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24359,\"priceDoubleOcc\":\"29666.70\",\"priceSingleOcc\":58145.850000000006,\"priceExtraBed\":\"13629.00\",\"priceWithoutBed\":\"12797.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29666.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12797.4,\"CEB\":13629,\"COSTDO\":29666.7,\"COSTSO\":58145.85,\"CostQuad\":null,\"ACEB\":13744.5,\"COSTTO\":13744.5}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39795\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29503.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25475,\"priceDoubleOcc\":\"29503.95\",\"priceSingleOcc\":59591.7,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29503.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":29503.95,\"COSTSO\":59591.7,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25674,\"priceDoubleOcc\":\"29802.15\",\"priceSingleOcc\":59889.9,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29802.15,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":29802.15,\"COSTSO\":59889.9,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25874,\"priceDoubleOcc\":\"30102.45\",\"priceSingleOcc\":60190.2,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30102.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":30102.45,\"COSTSO\":60190.2,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26077,\"priceDoubleOcc\":\"30406.95\",\"priceSingleOcc\":60494.7,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30406.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":30406.95,\"COSTSO\":60494.7,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26282,\"priceDoubleOcc\":\"30714.60\",\"priceSingleOcc\":60802.35,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30714.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":30714.6,\"COSTSO\":60802.35,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26700,\"priceDoubleOcc\":\"31341.45\",\"priceSingleOcc\":61429.2,\"priceExtraBed\":\"17417.40\",\"priceWithoutBed\":\"14067.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31341.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14067.9,\"CEB\":17417.4,\"COSTDO\":31341.45,\"COSTSO\":61429.2,\"CostQuad\":null,\"ACEB\":17417.4,\"COSTTO\":17417.4},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":26914,\"priceDoubleOcc\":\"31189.20\",\"priceSingleOcc\":62994.75,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31189.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31189.2,\"COSTSO\":62994.75,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":27124,\"priceDoubleOcc\":\"31504.20\",\"priceSingleOcc\":63309.75,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31504.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31504.2,\"COSTSO\":63309.75,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":27336,\"priceDoubleOcc\":\"31822.35\",\"priceSingleOcc\":63627.899999999994,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31822.35,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31822.35,\"COSTSO\":63627.9,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":27551,\"priceDoubleOcc\":\"32143.65\",\"priceSingleOcc\":63949.2,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32143.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":32143.65,\"COSTSO\":63949.2,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":27767,\"priceDoubleOcc\":\"32468.10\",\"priceSingleOcc\":64273.649999999994,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32468.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":32468.1,\"COSTSO\":64273.65,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":28209,\"priceDoubleOcc\":\"33131.70\",\"priceSingleOcc\":64937.25,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33131.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":33131.7,\"COSTSO\":64937.25,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26914,\"priceDoubleOcc\":\"31189.20\",\"priceSingleOcc\":62994.75,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31189.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31189.2,\"COSTSO\":62994.75,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27124,\"priceDoubleOcc\":\"31504.20\",\"priceSingleOcc\":63309.75,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31504.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31504.2,\"COSTSO\":63309.75,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27336,\"priceDoubleOcc\":\"31822.35\",\"priceSingleOcc\":63627.899999999994,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31822.35,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":31822.35,\"COSTSO\":63627.9,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27551,\"priceDoubleOcc\":\"32143.65\",\"priceSingleOcc\":63949.2,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32143.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":32143.65,\"COSTSO\":63949.2,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27767,\"priceDoubleOcc\":\"32468.10\",\"priceSingleOcc\":64273.649999999994,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32468.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":32468.1,\"COSTSO\":64273.65,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":28209,\"priceDoubleOcc\":\"33131.70\",\"priceSingleOcc\":64937.25,\"priceExtraBed\":\"18364.50\",\"priceWithoutBed\":\"15800.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33131.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15800.4,\"CEB\":18364.5,\"COSTDO\":33131.7,\"COSTSO\":64937.25,\"CostQuad\":null,\"ACEB\":18364.5,\"COSTTO\":18364.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"39796\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30754.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27772,\"priceDoubleOcc\":\"30754.50\",\"priceSingleOcc\":62116.95,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30754.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":30754.5,\"COSTSO\":62116.95,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27979,\"priceDoubleOcc\":\"31065.30\",\"priceSingleOcc\":62427.75,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31065.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":31065.3,\"COSTSO\":62427.75,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":28188,\"priceDoubleOcc\":\"31378.20\",\"priceSingleOcc\":62740.65,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31378.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":31378.2,\"COSTSO\":62740.65,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":28399,\"priceDoubleOcc\":\"31695.30\",\"priceSingleOcc\":63057.75,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31695.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":31695.3,\"COSTSO\":63057.75,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":28613,\"priceDoubleOcc\":\"32015.55\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32015.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":32015.55,\"COSTSO\":63378,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29049,\"priceDoubleOcc\":\"32669.70\",\"priceSingleOcc\":64032.15,\"priceExtraBed\":\"19496.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32669.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":19496.4,\"COSTDO\":32669.7,\"COSTSO\":64032.15,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":30117,\"priceDoubleOcc\":\"33798.45\",\"priceSingleOcc\":68265.75,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33798.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":33798.45,\"COSTSO\":68265.75,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":30344,\"priceDoubleOcc\":\"34139.70\",\"priceSingleOcc\":68607,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34139.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34139.7,\"COSTSO\":68607,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":30575,\"priceDoubleOcc\":\"34485.15\",\"priceSingleOcc\":68952.45000000001,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34485.15,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34485.15,\"COSTSO\":68952.45,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":30807,\"priceDoubleOcc\":\"34833.75\",\"priceSingleOcc\":69301.05,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34833.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34833.75,\"COSTSO\":69301.05,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":31042,\"priceDoubleOcc\":\"35185.50\",\"priceSingleOcc\":69652.8,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35185.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":35185.5,\"COSTSO\":69652.8,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":31520,\"priceDoubleOcc\":\"35903.70\",\"priceSingleOcc\":70371,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35903.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":35903.7,\"COSTSO\":70371,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30117,\"priceDoubleOcc\":\"33798.45\",\"priceSingleOcc\":68265.75,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33798.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":33798.45,\"COSTSO\":68265.75,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30344,\"priceDoubleOcc\":\"34139.70\",\"priceSingleOcc\":68607,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34139.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34139.7,\"COSTSO\":68607,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30575,\"priceDoubleOcc\":\"34485.15\",\"priceSingleOcc\":68952.45000000001,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34485.15,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34485.15,\"COSTSO\":68952.45,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30807,\"priceDoubleOcc\":\"34833.75\",\"priceSingleOcc\":69301.05,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34833.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":34833.75,\"COSTSO\":69301.05,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":31042,\"priceDoubleOcc\":\"35185.50\",\"priceSingleOcc\":69652.8,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35185.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":35185.5,\"COSTSO\":69652.8,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":31520,\"priceDoubleOcc\":\"35903.70\",\"priceSingleOcc\":70371,\"priceExtraBed\":\"20443.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35903.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":20443.5,\"COSTDO\":35903.7,\"COSTSO\":70371,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"39797\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35755.65\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":31106,\"priceDoubleOcc\":\"35755.65\",\"priceSingleOcc\":72219,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35755.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":35755.65,\"COSTSO\":72219,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":31347,\"priceDoubleOcc\":\"36116.85\",\"priceSingleOcc\":72580.2,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36116.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":36116.85,\"COSTSO\":72580.2,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":31590,\"priceDoubleOcc\":\"36482.25\",\"priceSingleOcc\":72945.6,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36482.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":36482.25,\"COSTSO\":72945.6,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":31836,\"priceDoubleOcc\":\"36850.80\",\"priceSingleOcc\":73314.15,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36850.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":36850.8,\"COSTSO\":73314.15,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":32084,\"priceDoubleOcc\":\"37222.50\",\"priceSingleOcc\":73685.85,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37222.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":37222.5,\"COSTSO\":73685.85,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":32591,\"priceDoubleOcc\":\"37982.70\",\"priceSingleOcc\":74446.04999999999,\"priceExtraBed\":\"21806.40\",\"priceWithoutBed\":\"14703.15\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37982.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14703.15,\"CEB\":21806.4,\"COSTDO\":37982.7,\"COSTSO\":74446.05,\"CostQuad\":null,\"ACEB\":21806.4,\"COSTTO\":21806.4},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":34176,\"priceDoubleOcc\":\"39887.40\",\"priceSingleOcc\":80563.35,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39887.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":39887.4,\"COSTSO\":80563.35,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":34445,\"priceDoubleOcc\":\"40290.60\",\"priceSingleOcc\":80966.54999999999,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40290.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":40290.6,\"COSTSO\":80966.55,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":34716,\"priceDoubleOcc\":\"40696.95\",\"priceSingleOcc\":81372.9,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40696.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":40696.95,\"COSTSO\":81372.9,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":34990,\"priceDoubleOcc\":\"41108.55\",\"priceSingleOcc\":81784.5,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41108.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":41108.55,\"COSTSO\":81784.5,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":35267,\"priceDoubleOcc\":\"41523.30\",\"priceSingleOcc\":82199.25,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41523.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":41523.3,\"COSTSO\":82199.25,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":35832,\"priceDoubleOcc\":\"42371.70\",\"priceSingleOcc\":83047.65,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42371.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":42371.7,\"COSTSO\":83047.65,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":34176,\"priceDoubleOcc\":\"39887.40\",\"priceSingleOcc\":80563.35,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39887.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":39887.4,\"COSTSO\":80563.35,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":34445,\"priceDoubleOcc\":\"40290.60\",\"priceSingleOcc\":80966.54999999999,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40290.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":40290.6,\"COSTSO\":80966.55,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":34716,\"priceDoubleOcc\":\"40696.95\",\"priceSingleOcc\":81372.9,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40696.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":40696.95,\"COSTSO\":81372.9,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":34990,\"priceDoubleOcc\":\"41108.55\",\"priceSingleOcc\":81784.5,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41108.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":41108.55,\"COSTSO\":81784.5,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":35267,\"priceDoubleOcc\":\"41523.30\",\"priceSingleOcc\":82199.25,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41523.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":41523.3,\"COSTSO\":82199.25,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":35832,\"priceDoubleOcc\":\"42371.70\",\"priceSingleOcc\":83047.65,\"priceExtraBed\":\"22753.50\",\"priceWithoutBed\":\"16435.65\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42371.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16435.65,\"CEB\":22753.5,\"COSTDO\":42371.7,\"COSTSO\":83047.65,\"CostQuad\":null,\"ACEB\":22753.5,\"COSTTO\":22753.5}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"39798\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44073.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":38384,\"priceDoubleOcc\":\"44073.75\",\"priceSingleOcc\":89019,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44073.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":44073.75,\"COSTSO\":89019,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":38681,\"priceDoubleOcc\":\"44518.95\",\"priceSingleOcc\":89464.2,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44518.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":44518.95,\"COSTSO\":89464.2,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":38980,\"priceDoubleOcc\":\"44968.35\",\"priceSingleOcc\":89913.6,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44968.35,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":44968.35,\"COSTSO\":89913.6,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":39283,\"priceDoubleOcc\":\"45423.00\",\"priceSingleOcc\":90368.25,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45423,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":45423,\"COSTSO\":90368.25,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":39589,\"priceDoubleOcc\":\"45881.85\",\"priceSingleOcc\":90827.1,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45881.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":45881.85,\"COSTSO\":90827.1,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40214,\"priceDoubleOcc\":\"46818.45\",\"priceSingleOcc\":91763.7,\"priceExtraBed\":\"27003.90\",\"priceWithoutBed\":\"19842.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46818.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19842.9,\"CEB\":27003.9,\"COSTDO\":46818.45,\"COSTSO\":91763.7,\"CostQuad\":null,\"ACEB\":27003.9,\"COSTTO\":27003.9},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":41164,\"priceDoubleOcc\":\"47770.80\",\"priceSingleOcc\":96485.55,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47770.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":47770.8,\"COSTSO\":96485.55,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":41486,\"priceDoubleOcc\":\"48252.75\",\"priceSingleOcc\":96967.5,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48252.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":48252.75,\"COSTSO\":96967.5,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":41810,\"priceDoubleOcc\":\"48739.95\",\"priceSingleOcc\":97454.7,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48739.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":48739.95,\"COSTSO\":97454.7,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":42139,\"priceDoubleOcc\":\"49232.40\",\"priceSingleOcc\":97947.15,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49232.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":49232.4,\"COSTSO\":97947.15,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":42470,\"priceDoubleOcc\":\"49730.10\",\"priceSingleOcc\":98444.85,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49730.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":49730.1,\"COSTSO\":98444.85,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":43147,\"priceDoubleOcc\":\"50745.45\",\"priceSingleOcc\":99460.2,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50745.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":50745.45,\"COSTSO\":99460.2,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":41164,\"priceDoubleOcc\":\"47770.80\",\"priceSingleOcc\":96485.55,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47770.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":47770.8,\"COSTSO\":96485.55,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":41486,\"priceDoubleOcc\":\"48252.75\",\"priceSingleOcc\":96967.5,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48252.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":48252.75,\"COSTSO\":96967.5,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":41810,\"priceDoubleOcc\":\"48739.95\",\"priceSingleOcc\":97454.7,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48739.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":48739.95,\"COSTSO\":97454.7,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":42139,\"priceDoubleOcc\":\"49232.40\",\"priceSingleOcc\":97947.15,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49232.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":49232.4,\"COSTSO\":97947.15,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":42470,\"priceDoubleOcc\":\"49730.10\",\"priceSingleOcc\":98444.85,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49730.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":49730.1,\"COSTSO\":98444.85,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":43147,\"priceDoubleOcc\":\"50745.45\",\"priceSingleOcc\":99460.2,\"priceExtraBed\":\"27951.00\",\"priceWithoutBed\":\"21575.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50745.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21575.4,\"CEB\":27951,\"COSTDO\":50745.45,\"COSTSO\":99460.2,\"CostQuad\":null,\"ACEB\":27951,\"COSTTO\":27951}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"39794\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27035.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22493,\"priceDoubleOcc\":\"27035.80\",\"priceSingleOcc\":54606.2,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27035.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":27035.8,\"COSTSO\":54606.2,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22675,\"priceDoubleOcc\":\"27308.60\",\"priceSingleOcc\":54879,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27308.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":27308.6,\"COSTSO\":54879,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22859,\"priceDoubleOcc\":\"27584.70\",\"priceSingleOcc\":55155.100000000006,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27584.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":27584.7,\"COSTSO\":55155.1,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23044,\"priceDoubleOcc\":\"27863.00\",\"priceSingleOcc\":55433.4,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27863,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":27863,\"COSTSO\":55433.4,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23232,\"priceDoubleOcc\":\"28144.60\",\"priceSingleOcc\":55715,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28144.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":28144.6,\"COSTSO\":55715,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23616,\"priceDoubleOcc\":\"28719.90\",\"priceSingleOcc\":56290.3,\"priceExtraBed\":\"13285.80\",\"priceWithoutBed\":\"11591.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28719.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11591.8,\"CEB\":13285.8,\"COSTDO\":28719.9,\"COSTSO\":56290.3,\"CostQuad\":null,\"ACEB\":13406.8,\"COSTTO\":13406.8},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24304,\"priceDoubleOcc\":\"29256.70\",\"priceSingleOcc\":59092,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29256.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29256.7,\"COSTSO\":59092,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24501,\"priceDoubleOcc\":\"29552.60\",\"priceSingleOcc\":59387.899999999994,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29552.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29552.6,\"COSTSO\":59387.9,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24700,\"priceDoubleOcc\":\"29850.70\",\"priceSingleOcc\":59686,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29850.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29850.7,\"COSTSO\":59686,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24902,\"priceDoubleOcc\":\"30153.20\",\"priceSingleOcc\":59988.5,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30153.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":30153.2,\"COSTSO\":59988.5,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25104,\"priceDoubleOcc\":\"30456.80\",\"priceSingleOcc\":60292.1,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30456.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":30456.8,\"COSTSO\":60292.1,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25519,\"priceDoubleOcc\":\"31079.40\",\"priceSingleOcc\":60914.7,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31079.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":31079.4,\"COSTSO\":60914.7,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24304,\"priceDoubleOcc\":\"29256.70\",\"priceSingleOcc\":59092,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29256.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29256.7,\"COSTSO\":59092,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24501,\"priceDoubleOcc\":\"29552.60\",\"priceSingleOcc\":59387.899999999994,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29552.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29552.6,\"COSTSO\":59387.9,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24700,\"priceDoubleOcc\":\"29850.70\",\"priceSingleOcc\":59686,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29850.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":29850.7,\"COSTSO\":59686,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24902,\"priceDoubleOcc\":\"30153.20\",\"priceSingleOcc\":59988.5,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30153.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":30153.2,\"COSTSO\":59988.5,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25104,\"priceDoubleOcc\":\"30456.80\",\"priceSingleOcc\":60292.1,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30456.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":30456.8,\"COSTSO\":60292.1,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25519,\"priceDoubleOcc\":\"31079.40\",\"priceSingleOcc\":60914.7,\"priceExtraBed\":\"14278.00\",\"priceWithoutBed\":\"13406.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31079.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13406.8,\"CEB\":14278,\"COSTDO\":31079.4,\"COSTSO\":60914.7,\"CostQuad\":null,\"ACEB\":14399,\"COSTTO\":14399}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39795\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30908.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26688,\"priceDoubleOcc\":\"30908.90\",\"priceSingleOcc\":62429.4,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30908.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":30908.9,\"COSTSO\":62429.4,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26896,\"priceDoubleOcc\":\"31221.30\",\"priceSingleOcc\":62741.8,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31221.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":31221.3,\"COSTSO\":62741.8,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27106,\"priceDoubleOcc\":\"31535.90\",\"priceSingleOcc\":63056.4,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31535.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":31535.9,\"COSTSO\":63056.4,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27319,\"priceDoubleOcc\":\"31854.90\",\"priceSingleOcc\":63375.4,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31854.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":31854.9,\"COSTSO\":63375.4,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27534,\"priceDoubleOcc\":\"32177.20\",\"priceSingleOcc\":63697.7,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32177.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":32177.2,\"COSTSO\":63697.7,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27972,\"priceDoubleOcc\":\"32833.90\",\"priceSingleOcc\":64354.4,\"priceExtraBed\":\"18246.80\",\"priceWithoutBed\":\"14737.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32833.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14737.8,\"CEB\":18246.8,\"COSTDO\":32833.9,\"COSTSO\":64354.4,\"CostQuad\":null,\"ACEB\":18246.8,\"COSTTO\":18246.8},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":28196,\"priceDoubleOcc\":\"32674.40\",\"priceSingleOcc\":65994.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32674.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":32674.4,\"COSTSO\":65994.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":28416,\"priceDoubleOcc\":\"33004.40\",\"priceSingleOcc\":66324.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33004.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33004.4,\"COSTSO\":66324.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":28638,\"priceDoubleOcc\":\"33337.70\",\"priceSingleOcc\":66657.79999999999,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33337.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33337.7,\"COSTSO\":66657.8,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":28863,\"priceDoubleOcc\":\"33674.30\",\"priceSingleOcc\":66994.4,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33674.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33674.3,\"COSTSO\":66994.4,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":29089,\"priceDoubleOcc\":\"34014.20\",\"priceSingleOcc\":67334.29999999999,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34014.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":34014.2,\"COSTSO\":67334.3,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":29553,\"priceDoubleOcc\":\"34709.40\",\"priceSingleOcc\":68029.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34709.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":34709.4,\"COSTSO\":68029.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":28196,\"priceDoubleOcc\":\"32674.40\",\"priceSingleOcc\":65994.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32674.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":32674.4,\"COSTSO\":65994.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":28416,\"priceDoubleOcc\":\"33004.40\",\"priceSingleOcc\":66324.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33004.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33004.4,\"COSTSO\":66324.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":28638,\"priceDoubleOcc\":\"33337.70\",\"priceSingleOcc\":66657.79999999999,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33337.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33337.7,\"COSTSO\":66657.8,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":28863,\"priceDoubleOcc\":\"33674.30\",\"priceSingleOcc\":66994.4,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33674.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":33674.3,\"COSTSO\":66994.4,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":29089,\"priceDoubleOcc\":\"34014.20\",\"priceSingleOcc\":67334.29999999999,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34014.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":34014.2,\"COSTSO\":67334.3,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":29553,\"priceDoubleOcc\":\"34709.40\",\"priceSingleOcc\":68029.5,\"priceExtraBed\":\"19239.00\",\"priceWithoutBed\":\"16552.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34709.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16552.8,\"CEB\":19239,\"COSTDO\":34709.4,\"COSTSO\":68029.5,\"CostQuad\":null,\"ACEB\":19239,\"COSTTO\":19239}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"39796\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32219.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29094,\"priceDoubleOcc\":\"32219.00\",\"priceSingleOcc\":65074.9,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32219,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":32219,\"COSTSO\":65074.9,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29311,\"priceDoubleOcc\":\"32544.60\",\"priceSingleOcc\":65400.5,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32544.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":32544.6,\"COSTSO\":65400.5,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29530,\"priceDoubleOcc\":\"32872.40\",\"priceSingleOcc\":65728.3,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32872.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":32872.4,\"COSTSO\":65728.3,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29751,\"priceDoubleOcc\":\"33204.60\",\"priceSingleOcc\":66060.5,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33204.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":33204.6,\"COSTSO\":66060.5,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":29975,\"priceDoubleOcc\":\"33540.10\",\"priceSingleOcc\":66396,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33540.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":33540.1,\"COSTSO\":66396,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":30432,\"priceDoubleOcc\":\"34225.40\",\"priceSingleOcc\":67081.3,\"priceExtraBed\":\"20424.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34225.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":20424.8,\"COSTDO\":34225.4,\"COSTSO\":67081.3,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":31551,\"priceDoubleOcc\":\"35407.90\",\"priceSingleOcc\":71516.5,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35407.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":35407.9,\"COSTSO\":71516.5,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":31789,\"priceDoubleOcc\":\"35765.40\",\"priceSingleOcc\":71874,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35765.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":35765.4,\"COSTSO\":71874,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":32031,\"priceDoubleOcc\":\"36127.30\",\"priceSingleOcc\":72235.9,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36127.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36127.3,\"COSTSO\":72235.9,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":32274,\"priceDoubleOcc\":\"36492.50\",\"priceSingleOcc\":72601.1,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36492.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36492.5,\"COSTSO\":72601.1,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":32520,\"priceDoubleOcc\":\"36861.00\",\"priceSingleOcc\":72969.6,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36861,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36861,\"COSTSO\":72969.6,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":33021,\"priceDoubleOcc\":\"37613.40\",\"priceSingleOcc\":73722,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37613.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":37613.4,\"COSTSO\":73722,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":31551,\"priceDoubleOcc\":\"35407.90\",\"priceSingleOcc\":71516.5,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35407.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":35407.9,\"COSTSO\":71516.5,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":31789,\"priceDoubleOcc\":\"35765.40\",\"priceSingleOcc\":71874,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35765.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":35765.4,\"COSTSO\":71874,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":32031,\"priceDoubleOcc\":\"36127.30\",\"priceSingleOcc\":72235.9,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36127.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36127.3,\"COSTSO\":72235.9,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":32274,\"priceDoubleOcc\":\"36492.50\",\"priceSingleOcc\":72601.1,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36492.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36492.5,\"COSTSO\":72601.1,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":32520,\"priceDoubleOcc\":\"36861.00\",\"priceSingleOcc\":72969.6,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36861,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":36861,\"COSTSO\":72969.6,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":33021,\"priceDoubleOcc\":\"37613.40\",\"priceSingleOcc\":73722,\"priceExtraBed\":\"21417.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37613.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":21417,\"COSTDO\":37613.4,\"COSTSO\":73722,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"39797\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37458.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":32587,\"priceDoubleOcc\":\"37458.30\",\"priceSingleOcc\":75658,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37458.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":37458.3,\"COSTSO\":75658,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":32839,\"priceDoubleOcc\":\"37836.70\",\"priceSingleOcc\":76036.4,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37836.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":37836.7,\"COSTSO\":76036.4,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":33095,\"priceDoubleOcc\":\"38219.50\",\"priceSingleOcc\":76419.2,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38219.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":38219.5,\"COSTSO\":76419.2,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":33352,\"priceDoubleOcc\":\"38605.60\",\"priceSingleOcc\":76805.29999999999,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38605.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":38605.6,\"COSTSO\":76805.3,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":33612,\"priceDoubleOcc\":\"38995.00\",\"priceSingleOcc\":77194.7,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":38995,\"COSTSO\":77194.7,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":34143,\"priceDoubleOcc\":\"39791.40\",\"priceSingleOcc\":77991.1,\"priceExtraBed\":\"22844.80\",\"priceWithoutBed\":\"15403.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39791.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15403.3,\"CEB\":22844.8,\"COSTDO\":39791.4,\"COSTSO\":77991.1,\"CostQuad\":null,\"ACEB\":22844.8,\"COSTTO\":22844.8},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":35804,\"priceDoubleOcc\":\"41786.80\",\"priceSingleOcc\":84399.70000000001,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41786.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":41786.8,\"COSTSO\":84399.7,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":36085,\"priceDoubleOcc\":\"42209.20\",\"priceSingleOcc\":84822.1,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42209.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":42209.2,\"COSTSO\":84822.1,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":36369,\"priceDoubleOcc\":\"42634.90\",\"priceSingleOcc\":85247.8,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42634.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":42634.9,\"COSTSO\":85247.8,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":36656,\"priceDoubleOcc\":\"43066.10\",\"priceSingleOcc\":85679,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43066.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":43066.1,\"COSTSO\":85679,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":36946,\"priceDoubleOcc\":\"43500.60\",\"priceSingleOcc\":86113.5,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43500.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":43500.6,\"COSTSO\":86113.5,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":37539,\"priceDoubleOcc\":\"44389.40\",\"priceSingleOcc\":87002.3,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44389.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":44389.4,\"COSTSO\":87002.3,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":35804,\"priceDoubleOcc\":\"41786.80\",\"priceSingleOcc\":84399.70000000001,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41786.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":41786.8,\"COSTSO\":84399.7,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":36085,\"priceDoubleOcc\":\"42209.20\",\"priceSingleOcc\":84822.1,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42209.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":42209.2,\"COSTSO\":84822.1,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":36369,\"priceDoubleOcc\":\"42634.90\",\"priceSingleOcc\":85247.8,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42634.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":42634.9,\"COSTSO\":85247.8,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":36656,\"priceDoubleOcc\":\"43066.10\",\"priceSingleOcc\":85679,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43066.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":43066.1,\"COSTSO\":85679,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":36946,\"priceDoubleOcc\":\"43500.60\",\"priceSingleOcc\":86113.5,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43500.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":43500.6,\"COSTSO\":86113.5,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":37539,\"priceDoubleOcc\":\"44389.40\",\"priceSingleOcc\":87002.3,\"priceExtraBed\":\"23837.00\",\"priceWithoutBed\":\"17218.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44389.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17218.3,\"CEB\":23837,\"COSTDO\":44389.4,\"COSTSO\":87002.3,\"CostQuad\":null,\"ACEB\":23837,\"COSTTO\":23837}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"39798\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46172.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40212,\"priceDoubleOcc\":\"46172.50\",\"priceSingleOcc\":93258,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46172.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":46172.5,\"COSTSO\":93258,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40523,\"priceDoubleOcc\":\"46638.90\",\"priceSingleOcc\":93724.4,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46638.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":46638.9,\"COSTSO\":93724.4,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40836,\"priceDoubleOcc\":\"47109.70\",\"priceSingleOcc\":94195.2,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47109.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":47109.7,\"COSTSO\":94195.2,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":41154,\"priceDoubleOcc\":\"47586.00\",\"priceSingleOcc\":94671.5,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":47586,\"COSTSO\":94671.5,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":41474,\"priceDoubleOcc\":\"48066.70\",\"priceSingleOcc\":95152.2,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48066.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":48066.7,\"COSTSO\":95152.2,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-08-14\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":42129,\"priceDoubleOcc\":\"49047.90\",\"priceSingleOcc\":96133.4,\"priceExtraBed\":\"28289.80\",\"priceWithoutBed\":\"20787.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49047.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20787.8,\"CEB\":28289.8,\"COSTDO\":49047.9,\"COSTSO\":96133.4,\"CostQuad\":null,\"ACEB\":28289.8,\"COSTTO\":28289.8},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":43124,\"priceDoubleOcc\":\"50045.60\",\"priceSingleOcc\":101080.1,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50045.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":50045.6,\"COSTSO\":101080.1,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":43461,\"priceDoubleOcc\":\"50550.50\",\"priceSingleOcc\":101585,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50550.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":50550.5,\"COSTSO\":101585,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":43801,\"priceDoubleOcc\":\"51060.90\",\"priceSingleOcc\":102095.4,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51060.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":51060.9,\"COSTSO\":102095.4,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":44145,\"priceDoubleOcc\":\"51576.80\",\"priceSingleOcc\":102611.3,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":51576.8,\"COSTSO\":102611.3,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":44493,\"priceDoubleOcc\":\"52098.20\",\"priceSingleOcc\":103132.7,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52098.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":52098.2,\"COSTSO\":103132.7,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2022-10-01\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":45202,\"priceDoubleOcc\":\"53161.90\",\"priceSingleOcc\":104196.4,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53161.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":53161.9,\"COSTSO\":104196.4,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":43124,\"priceDoubleOcc\":\"50045.60\",\"priceSingleOcc\":101080.1,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50045.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":50045.6,\"COSTSO\":101080.1,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":43461,\"priceDoubleOcc\":\"50550.50\",\"priceSingleOcc\":101585,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50550.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":50550.5,\"COSTSO\":101585,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":43801,\"priceDoubleOcc\":\"51060.90\",\"priceSingleOcc\":102095.4,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51060.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":51060.9,\"COSTSO\":102095.4,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":44145,\"priceDoubleOcc\":\"51576.80\",\"priceSingleOcc\":102611.3,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":51576.8,\"COSTSO\":102611.3,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":44493,\"priceDoubleOcc\":\"52098.20\",\"priceSingleOcc\":103132.7,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52098.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":52098.2,\"COSTSO\":103132.7,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282},{\"From\":\"2023-01-16\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45202,\"priceDoubleOcc\":\"53161.90\",\"priceSingleOcc\":104196.4,\"priceExtraBed\":\"29282.00\",\"priceWithoutBed\":\"22602.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53161.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22602.8,\"CEB\":29282,\"COSTDO\":53161.9,\"COSTSO\":104196.4,\"CostQuad\":null,\"ACEB\":29282,\"COSTTO\":29282}]}]}]}}]}]},\"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;ol&gt;\\r\\n\\t&lt;li&gt;Air-Conditioned Hotel Accommodation for 7 Nights at specified locations&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport \\/ harbour transfers by Private AC car as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entry permits \\/ tickets, ferry tickets and permits wherever applicable as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast for 7 occasions at respective Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Assistance at all arrival and departure points.&lt;\\/li&gt;\\r\\n&lt;\\/ol&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\":{\"285618\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[285618],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285623\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[285623],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285628\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[285628],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285633\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[285633],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285638\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[285638],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285643\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[285643],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285648\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[285648],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285653\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[285653],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285658\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[285658],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285663\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[285663],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285668\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[285668],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"285673\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[285673],\"Remark\":[\"&lt;p&gt;Specified Sightseeing \\/ transfers in Private AC Car as per the itinerary.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Diglipur','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Diglipur,Mayabunder,Baratang,Rangat',NULL,'32511,11658,34491',25807,53162,7,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'remaining-andaman',NULL,NULL,NULL,0),(12,37066,1,36973,1,0,0,'Honeymoon,Family',NULL,1,1,0,'{\"package\":{\"TPId\":37066,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ooty_tour_package_\\u2013_03_nights__04_days_1661346627.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Ooty (short for Udhagamandalam) is a resort town in the Western Ghats mountains, in southern India&amp;#39;s Tamil Nadu state. Founded as a British Raj summer resort, it retains a working steam railway line. Other reminders of its colonial past include Stone House, a 19th-century residence, and the circa-1829 St. Stephen&amp;rsquo;s Church. Its 55-acre Government Botanical Garden lies on the slopes of Doddabetta Peak.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Coonoor is a hill station in the southern Indian state of Tamil Nadu. It&amp;rsquo;s known for its tea estates in the surrounding Nilgiri hills. Sim&amp;rsquo;s Park is a sprawling public garden with plants like rhododendrons, roses and eucalyptus trees. The steam Nilgiri Mountain Railway travels between the towns of Mettupalayam and Ooty via Coonoor. Dolphin&amp;rsquo;s Nose is a vantage point with views of the cascading Catherine Falls&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"14900\\/- pp\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Coimbatore\",\"DestinationPlacesSysId\":6609,\"SourcePlaces\":\"Coimbatore\",\"SourcePlaceSysId\":6609,\"AgencyName\":\"Connect India\",\"Name\":\"OOTY TOUR PACKAGE \\u2013 03 NIGHTS \\/ 04 DAYS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6801\",\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20161,\"Title\":\"Ooty\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511718,\"Name\":\"Vinayaga Inn by Poppys - Ooty\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.4149126\",\"Long\":\"76.71259169999999\",\"Address\":\"No.36-C, Garden Rd, Pudumund, Ooty, Tamil Nadu 643001, India\"},\"Images\":[],\"CityId\":20161,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":237,\"Title\":\"Botanical Garden\",\"Description\":\"Sprawled over an area of 22 hectares, the garden is divided into several sections that are trimmed beautifully to present an endearing sight.  Another highlight of the Botanical Garden is the Toda hill, known as the Toda mund, which gives the visitors an insight into the lives and culture of Todas (a tribe of the Nilgiris). The slopes of the hill lie at an ascent of 2500 metres above mean sea level, as a result of which the garden enjoys a temperate climate ideal for a number of plants and shrubs to grow.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4040343,\"Long\":76.7019038,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4665\\/thumb\\/Botanical Garden_847.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1489,\"Title\":\"Rose Garden\",\"Description\":\"It is also known as the Jayalalithaa Rose Garden, the Nootrandu Roja Poonga and the Centenary Rose Park. Nature lovers are drawn to the Rose Garden like bees to honey. The view of the lush green garden with areas dedicated to captivatingly fragrant roses is a sight to remember. The flowers add more than just colour and attract visitors from all age groups, especially those who are interested in the study of Botany.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4053564,\"Long\":76.7080376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/917\\/thumb\\/Rose Garden_655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1736,\"Title\":\"Tea Factory\",\"Description\":\"Spread over an area of nearly 1 acre of land, the Ooty Tea Factory is situated amid the blue hills of Nilgiris.  It houses the Tea Museum as well where visitors can learn about the origin of different kinds of tea leaves that are used across the globe along with the history of tea in India and its evolution in the Nilgiris.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.41,\"Long\":76.7,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1388\\/thumb\\/Tea Factory_971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":6800,\"Title\":\"Thread Garden\",\"Description\":\"The thread garden at Ooty is a popular tourist spot that exhibits some of the most magnificent and exquisite collection of artificial flowers and plants, all made by the expert hands of the skilful artists by using JUST thread.  Approximately 6 crore meters of embroidery thread have been employed in the creation of this one-of-a-kind attraction in the world. The most astounding fact stay to be that not a stitch of a needle or any other machinery have been used in the production of these flowers.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4069218,\"Long\":76.6882567,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20161\\/sightseeing\\/Thread_Garden_20161_1531301153.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1796,\"Title\":\"Toda Huts\",\"Description\":\"Toda huts are curious structures, usually without any windows and in a semi barrel shape. You have to stoop inside the hut but can manage to stand upright once inside.  There are very few chances of finding more than ten huts in a single Toda community. Of these one hut is exclusively for the cattle while a second one is meant for storage. The people inhabit the rest of the huts.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4064138,\"Long\":76.6932438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5320\\/thumb\\/Toda Huts_481.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1909,\"Title\":\"Wax World\",\"Description\":\"The Wax World contains beautiful statues of Indian freedom fighters like Mahatma Gandhi, Bal Gangadhar Tilak, Gopal Krishna Gokhale among many others. The museum also has wonderful replicas of social figures like Mother Teresa and our former President, Dr.A.P.J.Adbul Kalam. The Wax World also has many replicas depicting the typical Indian way of life, especially in the villages. The whole setting of a village and people doing pottery and farming and so on all made entirely of wax is a wonderful site.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.41,\"Long\":76.7,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1387\\/thumb\\/Wax World_810.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3,\"Title\":\"9th Mile\",\"Description\":\"9th Mile, also known as Shooting Medu, is just 9 miles away from the Ooty city. This place is popularly called the Shooting Medu, as many of the Tamil and other Indian movies are shot here. The lush green forests and large mountains add to the beauty of this place, making it an ideal picnic spot.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4064138,\"Long\":76.6932438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5636\\/thumb\\/9th Mile_710.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":824,\"Title\":\"Kamaraj Sagar Dam\",\"Description\":\"There is a wide variety of herbs and shrubs available in the terrain and a beautiful place to capture the scenic beauty in your camera. Several good movies are shot in the neighbourhood on the open roads and on the slopes of the Wendlock  sagar.  One can have good experience fishing in this lake.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4064138,\"Long\":76.6932438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5638\\/thumb\\/Kamaraj Sagar Dam_304.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":13649,\"Title\":\"Pine Forest\",\"Description\":\"The scenic canvas of the Pine Forest of the town is spread between the locales of Ooty and Thalakunda. This vast landscape has been a famous tourist destination for some time now and continues to remain the same. The Pine Forest highlights an evergreen and adhesive collection of trees that grows between 3 to 80 meters tall while the average one towers between 15 and 45 meters. There are many species of Pine Trees from Siberian Dwarf, which is the smallest to the tallest, Potosi Pinyon and Ponderosa Pine. The tallest pine is mostly found along the Rogue River in Southern Oregon amidst the Siskiyou National Forest. The pine trees in the forest are almost arriving at hundred or some, even a thousand years old.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20161\\/sightseeing\\/Pine_Forest_20161_1579524014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":6454,\"Title\":\"Pykara boat house\",\"Description\":\"Boating at Pykara Lake is a great hit with travellers. Go gliding across the waters at the lake for another world experience. The boat house by the lake has all the boats that are available for the activity and you can get the booking done from here. \\r\\n\\r\\nMoreover, you can also choose the boat that you like. This one makes for a perfect break for loners and families alike, letting them bask in the breeze that touches the waters here. The swiftly rising Nilgiris make for a horizon that&#039;s much more than just picture perfect. You can take a pick from either motor boats or pedal boat.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/20161\\/sightseeing\\/15809_pykara-boat-house1.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":13648,\"Title\":\"Pykara Falls\",\"Description\":\"Pykara Falls is formed by Pykara River on the downstream of the Pykara Dam. The falls drops down into two sections with height of 55 m and 61 m through multiple layers on the rocky bed providing a unique beauty to the stream. The waterfall amidst the dense forest is a treat to watch. During rainy season, the waterfall is in full bloom. There are barricades setups along the waterfall view point for the safety of the tourists.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20161\\/sightseeing\\/Pykara_Falls_20161_1579523523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":447,\"Title\":\"Dolphin&#039;s Nose\",\"Description\":\"Situated about 10 km from Coonoor, Dolphin&amp;#039;s Nose is regarded as a must visit place if in Coonoor. It is known to provide the most amazing panoramic view of not only the Nilgiri Hills but also the Catherine Falls too.\",\"CurrencyType\":0,\"CityId\":6871,\"CityName\":\"Coonoor\",\"Lat\":11.3530022,\"Long\":76.7959095,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/246\\/thumb\\/Dolphin&#039;s Nose_534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":14395,\"Title\":\"Madras Regimental Centre\",\"Description\":\"The Madras Regiment is one of the oldest infantry regiment of the Indian Army, originating in the 1750s. The regiment took part in numerous campaigns with both the British Indian Army and the post-independence Indian Army.\",\"CurrencyType\":0,\"CityId\":6871,\"CityName\":\"Coonoor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6871\\/sightseeing\\/Madras_Regimental_Centre_6871_1580976286.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1620,\"Title\":\"Sim&#039;s Park\",\"Description\":\"An excellent and delightful treasure trove of some of the most exquisite plant species in the world, the Sim&amp;#039;s Park is an outstanding sightseeing destination in Coonoor that boasts of being home to over one thousand different species of flora. All of these different plants and trees are scattered all across the park, and a walk through the lush greenery and colourful, vibrant flowers provides refreshment, inner peace and tranquillity, not to forget the unique and beautiful views.\",\"CurrencyType\":0,\"CityId\":6871,\"CityName\":\"Coonoor\",\"Lat\":11.372174,\"Long\":76.7583296,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/244\\/thumb\\/Sim&#039;s Park_154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":14401,\"Title\":\"Tea Garden\",\"Description\":\"The Nilgiri region is renowned for its tea and most of the areas in Ooty are surrounded with the tea plantation. The tea estate or plantation is one of the tourist attraction and the tourist enjoys to go for a walk in the tea estate which gives them peacefully. The place which is most popular for its tea estates is Glenmorgan which is one of the old tea estate and also Glenmorgan is one of the famous picnic spots. In Ooty, there are own tea factories for their tea plantations.\",\"CurrencyType\":0,\"CityId\":6871,\"CityName\":\"Coonoor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6871\\/sightseeing\\/Tea_Garden_6871_1580977875.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":6708,\"Title\":\"Wellington Golf Course\",\"Description\":\"Wellington&amp;#039;s golf club is one of the oldest golf clubs in south India which has a history of a century in the Nilgiris. Nestled among the scenic tea gardens and slopes of the plains it has an excellent view of the fairways. It is affiliated to some of the top-notch golf clubs across the country retailing the old world charm of the British days.\",\"CurrencyType\":0,\"CityId\":6871,\"CityName\":\"Coonoor\",\"Lat\":11.3623148,\"Long\":76.7974055,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6871\\/sightseeing\\/Wellington_Golf_Course__6871_1530946241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6801,\"SupplierName\":\"MADRAS TRAVELS AND TOURS PVT LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"265704\",\"Title\":\"Coimbatore Airport or Railway Station Pick, Transferred to Ooty.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Later Visit Tea Factory, Wax World, Chocolate Factory, Botanical Garden, Rose Garden, Boat House, Thread Garden and Triable Musceum.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511718,\"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\":237,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1489,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1736,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6800,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1796,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1909,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"265705\",\"Title\":\"Ooty \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast proceed to&amp;nbsp;Filmy Chakkar Sightseeing, Pine Forest, Kamaraj Sagar Dam, 9th&amp;nbsp;Miles Shooting Spot, Pykara Water Falls and Pykara Boating.&amp;nbsp; Overnight stay at&amp;nbsp;Ooty&amp;nbsp;Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511718,\"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\":3,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":824,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13649,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6454,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13648,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"265706\",\"Title\":\"Ooty &ndash; Coonoor &ndash; Ooty \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast, &amp;nbsp;proceed to Coonoor &amp;ndash; Wellington, Sims Park, Tea Garden, Valley View, Dolphin Nose, Sims Park, MRC and Gymkhana Club.&amp;nbsp;Overnight stay at&amp;nbsp;Ooty&amp;nbsp;Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511718,\"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\":447,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1620,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14401,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6708,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"265707\",\"Title\":\"Ooty - Coimbatore Airport or Railway Station Drop\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today after breakfast, check-out,&amp;nbsp;drive to Coimbatore Railway Station or Airport for the return journey..&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"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\":\"37066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15645.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"37066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15645.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645},{\"From\":\"2022-11-02\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15645,\"priceDoubleOcc\":\"15645.00\",\"priceSingleOcc\":31290,\"priceExtraBed\":\"15645.00\",\"priceWithoutBed\":\"15645.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15645,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15645,\"CEB\":15645,\"COSTDO\":15645,\"COSTSO\":31290,\"CostQuad\":null,\"ACEB\":15645,\"COSTTO\":15645}]}]}]}}]}]},\"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;Airfare \\/ Train fare Personal Expenses such as Laundry, telephone calls, tips &amp;amp; porterage, mineral water, soft &amp;amp; hard drinks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Entry fee for all monuments and boating fees &amp;amp; Guide Charges.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;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 Travel Insurance.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anything which is not mentioned in the Inclusions&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;03 Nights&amp;rsquo; accommodations at the above mentioned hotels or similar&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast at the hotels Pickup and drop from Airport \\/ Railway Station&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All Sightseeing arrangements by A\\/C Dzire or similar Toll taxes and Parking fees, along with Chauffer allowance&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;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\":{\"265704\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[265704],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"265705\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[265705],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"2\"]}},\"265706\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[265706],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"2\"]}},\"265707\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[265707],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Ooty','Ooty,Tamil Nadu,Indian Subcontinent,South India,India,Coonoor',NULL,'20161',15645,15645,3,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ooty-tour-package-–-03-nights-04-days',NULL,NULL,NULL,0),(13,36937,1,36973,1,0,0,'Honeymoon,Adventure,Family,Religious,Hill Station,Heritage,Culture',NULL,1,1,0,'{\"package\":{\"TPId\":36937,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/01_night_delhi__01_night_agra__02_nights_jaipur__02_nights_udaipur_1661331061.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Witness the cultural and royal heritage of India with our 8 days Golden Triangle Tour with Udaipur. The well-planned itinerary will take you across the renowned monuments, forts, palaces, and other architectural wonders across Delhi, Jaipur, Agra, and Udaipur as well. Enjoy activities like an elephant ride and shopping in Jaipur&amp;rsquo;s markets for a memorable time.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Plan a Golden Triangle with a Udaipur tour package and embark on a lifetime journey to explore the rich heritage culture of India. Avail excellent services like assisted transfers, meals, comfortable accommodation, and sightseeing tours.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"Connect India\",\"Name\":\"01 Night Delhi + 01 Night Agra + 02 Nights Jaipur + 02 Nights Udaipur \",\"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,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Hill Station,Heritage,Culture\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":[],\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":371,\"Title\":\"Connaught Place\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6314512,\"Long\":77.2166672,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/673\\/thumb\\/Connaught Place_840.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1114,\"Title\":\"Mehtab Bagh\",\"Description\":\"Mehtab Bagh or The Moonlight Garden is a square-shaped garden that is behind the Taj Mahal. This garden was built by Babur but this area was chosen by Shah Jahan for building a black colour building similar to Taj Mahal for him. But, he was imprisoned by his son and could not complete his wishes. The park was just a barren land. To avoid any erosion effects on the Mahal, government has planted 25 different species plants in the area includes Neem, Citrus fruits, Hibiscus, Jamun, Ashoka, Guava and bright colored flowers also. A large pond inside the park reflects the image of Taj Mahal.You can find the foundation of the Black Taj Mahal near the pond. It is famous for spotting Taj Mahal from a distance.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.196237,\"Long\":77.9979106,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Mehtab_Bagh_266_1518504369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":39,\"Title\":\"Albert Hall Museum\",\"Description\":\"It is the oldest museum of the state and functions as the State museum of Rajasthan.  It is also called the Government Central Museum.  The museum has a rich collection of artifacts including paintings, carpets, ivory, stone, metal sculptures, and works in crystal.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9099544,\"Long\":75.8191636,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Albert_Hall_Museum_12995_1519624855.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":485,\"Title\":\"Elephant Ride\",\"Description\":\"This is the most attractive thing in jaipur tour. Ones tour cannot be completed unless one has this. The elephants are decorated and painted really well and offer a very enjoyable ride to the fort top.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9031205,\"Long\":75.7979863,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Elephant_Ride_12995_1529062753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":[],\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":371,\"Title\":\"Connaught Place\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6314512,\"Long\":77.2166672,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/673\\/thumb\\/Connaught Place_840.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1114,\"Title\":\"Mehtab Bagh\",\"Description\":\"Mehtab Bagh or The Moonlight Garden is a square-shaped garden that is behind the Taj Mahal. This garden was built by Babur but this area was chosen by Shah Jahan for building a black colour building similar to Taj Mahal for him. But, he was imprisoned by his son and could not complete his wishes. The park was just a barren land. To avoid any erosion effects on the Mahal, government has planted 25 different species plants in the area includes Neem, Citrus fruits, Hibiscus, Jamun, Ashoka, Guava and bright colored flowers also. A large pond inside the park reflects the image of Taj Mahal.You can find the foundation of the Black Taj Mahal near the pond. It is famous for spotting Taj Mahal from a distance.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.196237,\"Long\":77.9979106,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Mehtab_Bagh_266_1518504369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":39,\"Title\":\"Albert Hall Museum\",\"Description\":\"It is the oldest museum of the state and functions as the State museum of Rajasthan.  It is also called the Government Central Museum.  The museum has a rich collection of artifacts including paintings, carpets, ivory, stone, metal sculptures, and works in crystal.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9099544,\"Long\":75.8191636,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Albert_Hall_Museum_12995_1519624855.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":485,\"Title\":\"Elephant Ride\",\"Description\":\"This is the most attractive thing in jaipur tour. Ones tour cannot be completed unless one has this. The elephants are decorated and painted really well and offer a very enjoyable ride to the fort top.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9031205,\"Long\":75.7979863,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Elephant_Ride_12995_1529062753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":[],\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":371,\"Title\":\"Connaught Place\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6314512,\"Long\":77.2166672,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/673\\/thumb\\/Connaught Place_840.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1114,\"Title\":\"Mehtab Bagh\",\"Description\":\"Mehtab Bagh or The Moonlight Garden is a square-shaped garden that is behind the Taj Mahal. This garden was built by Babur but this area was chosen by Shah Jahan for building a black colour building similar to Taj Mahal for him. But, he was imprisoned by his son and could not complete his wishes. The park was just a barren land. To avoid any erosion effects on the Mahal, government has planted 25 different species plants in the area includes Neem, Citrus fruits, Hibiscus, Jamun, Ashoka, Guava and bright colored flowers also. A large pond inside the park reflects the image of Taj Mahal.You can find the foundation of the Black Taj Mahal near the pond. It is famous for spotting Taj Mahal from a distance.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.196237,\"Long\":77.9979106,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Mehtab_Bagh_266_1518504369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":39,\"Title\":\"Albert Hall Museum\",\"Description\":\"It is the oldest museum of the state and functions as the State museum of Rajasthan.  It is also called the Government Central Museum.  The museum has a rich collection of artifacts including paintings, carpets, ivory, stone, metal sculptures, and works in crystal.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9099544,\"Long\":75.8191636,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Albert_Hall_Museum_12995_1519624855.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":485,\"Title\":\"Elephant Ride\",\"Description\":\"This is the most attractive thing in jaipur tour. Ones tour cannot be completed unless one has this. The elephants are decorated and painted really well and offer a very enjoyable ride to the fort top.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9031205,\"Long\":75.7979863,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Elephant_Ride_12995_1529062753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":[],\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":371,\"Title\":\"Connaught Place\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6314512,\"Long\":77.2166672,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/673\\/thumb\\/Connaught Place_840.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1114,\"Title\":\"Mehtab Bagh\",\"Description\":\"Mehtab Bagh or The Moonlight Garden is a square-shaped garden that is behind the Taj Mahal. This garden was built by Babur but this area was chosen by Shah Jahan for building a black colour building similar to Taj Mahal for him. But, he was imprisoned by his son and could not complete his wishes. The park was just a barren land. To avoid any erosion effects on the Mahal, government has planted 25 different species plants in the area includes Neem, Citrus fruits, Hibiscus, Jamun, Ashoka, Guava and bright colored flowers also. A large pond inside the park reflects the image of Taj Mahal.You can find the foundation of the Black Taj Mahal near the pond. It is famous for spotting Taj Mahal from a distance.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.196237,\"Long\":77.9979106,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Mehtab_Bagh_266_1518504369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":39,\"Title\":\"Albert Hall Museum\",\"Description\":\"It is the oldest museum of the state and functions as the State museum of Rajasthan.  It is also called the Government Central Museum.  The museum has a rich collection of artifacts including paintings, carpets, ivory, stone, metal sculptures, and works in crystal.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9099544,\"Long\":75.8191636,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Albert_Hall_Museum_12995_1519624855.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null},{\"RefSSId\":485,\"Title\":\"Elephant Ride\",\"Description\":\"This is the most attractive thing in jaipur tour. Ones tour cannot be completed unless one has this. The elephants are decorated and painted really well and offer a very enjoyable ride to the fort top.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9031205,\"Long\":75.7979863,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Elephant_Ride_12995_1529062753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"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\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"264848\",\"Title\":\"Day 01 : Delhi Arrival \",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Delhi International Airport you will be greeted by our representative &amp;amp; transferred to your pre &amp;ndash; booked hotel. Then&amp;nbsp;The capital of India was destroyed and rebuilt a number of times, and virtually carries in its bosom the history of 07 cities. The present New Delhi was designed by Edwin Lutyens, and its main architect was Herbert Baker. In 1911 the capital of the British Raj was shifted from Kolkata to Delhi. Today it is the seat of power of the country and a major Gateway to the country for the tourists.Old Delhi visit Raj Ghat which is located on the banks of the river Yamuna, This is Mahatma Gandhi&amp;rsquo;s Memorial, where he was cremated following his assassination in January 1948. The memorial lies in the midst of landscaped gardens and made of a simple square platform of black marble inscribed with his last words &amp;ldquo;Hey Ram&amp;rdquo;. Red Fort (closed on Monday) the 17th century imposing fortress built in red sandstone is surrounded by a huge boundary wall 33m high. Inside are exquisite palaces and beautiful gardens. Opposite the Red Fort lies Jama Masjid (Friday Mosque) made of red sandstone and white marble, completed in 1656.&amp;nbsp; It is India&amp;rsquo;s largest mosque where more than 20,000 people can kneel in prayer at one time.New Delhi visit Humayun&amp;rsquo;s Tomb, built by his wife Haji Begum in the 16th Century. An early example of Mughal architecture considered the predecessor of the Taj Mahal. The Qutab Minar, the landmark of Delhi, a huge tower of victory started in 1199 and completed in 1368. The Minar is 72.5m high with a diameter at the base 14.4m and 2.7m at the top. Proceed to the Rashtrapati Bhawan (Drive Pass) once the Viceroy&amp;rsquo;s residence and now the official residence of the President of India. Designed by Lutyens, it combines western and eastern styles - the dome reflects the Buddhist stupa, the chhattris &amp;ldquo;Hindu&amp;rdquo; and the graceful colonnades very &amp;ldquo;British&amp;rdquo;. It has 340 rooms. The India Gate (42m), commemorates the 70,000 Indian soldiers who died in the 1st world war. 13516 names of British and Indian soldiers killed in the Afghan War of 1919 are engraved on the arch and foundations. Under the arch, glows the Amar Jawan Jyoti flame commemorating Indian armed forces&amp;rsquo; losses in the Indo-Pakistan war of 1971.&amp;nbsp; Stay overnight at the hotel. &amp;nbsp;&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\":300,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":371,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":411,\"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}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264849\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&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\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264850\",\"Title\":\"Day 02 : Delhi to Agra \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Drive to Agra . On arrival check in at hotel . A medieval city on the banks of the Yamuna River. It was founded by Sultan Sikandar Lodi in the year 1506. Agra achieved fame as the capital of the Mughal emperors from 1526 to 1658 and remains a major tourist destination because of its many splendid Mughal-era buildings. Most notably the Taj Mahal, Agra Fort and Fatehpur Sikri, all three of which are UNESCO World Heritage Sites.Agra Fort was originally a brick fort and the Chauhan Rajputs held it. It was mentioned for the first time in 1080 AD when a Ghaznavide force captured it. Sikandar Lodi (1487-1517) was the first Sultan of Delhi who shifted to Agra and lived in the fort. He governed the country from here and Agra assumed the importance of the second capital. He died in the fort in 1517 and his son, Ibrahim Lodi, held it for nine years until he was defeated and killed at Panipat in 1526. He built several palaces, wells and a mosque in the fort during his period. World famous monument The Taj Mahal, Overlooking the River Yamuna, the Taj Mahal is a classic example of Mughul architecture, with the Taj itself built as a mausoleum at the northern end of an extensive formal walled garden designed in the charbagh style and structured on the Islamic theme of &amp;lsquo;paradise&amp;rsquo;. The whole site was built by Shah Jahan between ad 1632 and 1653 as the final resting place of his favourite wife Arjumand Bano Begum (also known as Mumtaz Mahal) who died in ad 1631 shortly after giving birth to their fourteenth child. Upon his death in ad 1666, Shah Jahan was buried alongside his wife in the Taj. (Closed on Fridays).Stay overnight at the hotel. &amp;nbsp;&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\":[{\"IsIncluded\":true,\"Id\":22,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3275,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1114,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264851\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"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\":\"264852\",\"Title\":\"Day 03 : Agra to Jaipur via abhaneri\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast check out from hotel &amp;amp; opt for sightseeing of Agra Fort, the majestic fort of red sandstone stands on the banks of river Yamuna.&amp;nbsp;By the time drive to Jaipur stopping at Abhaneri step well.&amp;nbsp;Later drive straight to Jaipur. Upon arrival check in at hotel and stay overnight.&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\":\"264853\",\"Title\":\"Day 04 : Jaipur sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"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\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":39,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":216,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":485,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264854\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"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\":\"264855\",\"Title\":\"Jaipur to Udaipur \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Today drive to Udaipur . On arrival check in at hotel .&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"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\":\"264856\",\"Title\":\"Udaipur sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today we visit Udaipur, also known as the city of sunrise.We start our sightseeing with the visit of Sahelion-Ki-Bari. This Garden of the Maids of Honour is well laid out with extensive lawns and shady walks. After the visit of Garden of Maids we visit a Museum of folk art. This museum has a rich collection of Folk dresses, ornaments, puppets, masks, dolls, folk musical instruments and paintings on display. After a break we proceed to city palace, the biggest Palace in India, where 4 generations of Maharajas added their contribution, is so carefully planned and integrated with the original buildings that it is difficult to believe that it was not conceived as a whole.The museum of the palace includes the beautiful peacock mosaic and miniature wall paintings of Indian mythology. Today we have an opportunity to visit a traditional painting school and see the famous miniature paintings done.In the evening we have a Boatride on the lake Pichola.The famous Lake Palace of Udaipur was the summer residence of the former rulers. The James bond Film Octopussy was shot here and made this palace more known in the west&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"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\":\"264857\",\"Title\":\"Udaipur departure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Today on time transfer to airport \\/ rly station for onward journey .&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"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\":\"36937\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20900,\"priceDoubleOcc\":\"20900.00\",\"priceSingleOcc\":46200,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":20900,\"COSTSO\":46200,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21633,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":47300,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":22000,\"COSTSO\":47300,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22367,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":48400,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":23100,\"COSTSO\":48400,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23100,\"priceDoubleOcc\":\"24200.00\",\"priceSingleOcc\":49500,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":24200,\"COSTSO\":49500,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":50600,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":25300,\"COSTSO\":50600,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":50600,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"16500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16500,\"CEB\":20900,\"COSTDO\":25300,\"COSTSO\":50600,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21850,\"priceDoubleOcc\":\"21850.00\",\"priceSingleOcc\":43700,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":21850,\"COSTSO\":43700,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":44850,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":23000,\"COSTSO\":44850,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23383,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":46000,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":24150,\"COSTSO\":46000,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24150,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":47150,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":25300,\"COSTSO\":47150,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24917,\"priceDoubleOcc\":\"26450.00\",\"priceSingleOcc\":48300,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":26450,\"COSTSO\":48300,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24917,\"priceDoubleOcc\":\"26450.00\",\"priceSingleOcc\":48300,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":21850,\"COSTDO\":26450,\"COSTSO\":48300,\"CostQuad\":null,\"ACEB\":21850,\"COSTTO\":21850}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36937\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":19950,\"priceDoubleOcc\":\"19950.00\",\"priceSingleOcc\":44100,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":19950,\"COSTSO\":44100,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20650,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":45150,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":21000,\"COSTSO\":45150,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21350,\"priceDoubleOcc\":\"22050.00\",\"priceSingleOcc\":46200,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":22050,\"COSTSO\":46200,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22050,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":47250,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":23100,\"COSTSO\":47250,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22750,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":48300,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":24150,\"COSTSO\":48300,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-06-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22750,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":48300,\"priceExtraBed\":\"19950.00\",\"priceWithoutBed\":\"15750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15750,\"CEB\":19950,\"COSTDO\":24150,\"COSTSO\":48300,\"CostQuad\":null,\"ACEB\":19950,\"COSTTO\":19950},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20900,\"priceDoubleOcc\":\"20900.00\",\"priceSingleOcc\":41800,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":20900,\"COSTSO\":41800,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21633,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":42900,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":22000,\"COSTSO\":42900,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22367,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":23100,\"COSTSO\":44000,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23100,\"priceDoubleOcc\":\"24200.00\",\"priceSingleOcc\":45100,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":24200,\"COSTSO\":45100,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":46200,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":25300,\"COSTSO\":46200,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":46200,\"priceExtraBed\":\"20900.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":20900,\"COSTDO\":25300,\"COSTSO\":46200,\"CostQuad\":null,\"ACEB\":20900,\"COSTTO\":20900}]}]}]}}]}]},\"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\":{\"264848\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[264848],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264849\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[264849],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264850\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[264850],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264851\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[264851],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264852\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[264852],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264853\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[264853],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264854\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[264854],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264855\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[264855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264856\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[264856],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264857\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[264857],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[]}}','Delhi,Agra,Jaipur,Udaipur','Delhi,Indian Subcontinent,North India,India,Agra,Uttar Pradesh,Jaipur,Rajasthan,Udaipur',NULL,'7701,266,12995,28058',19950,26450,6,NULL,NULL,NULL,1,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'01-night-delhi-+-01-night-agra-+-02-nights-jaipur-+-02-nights-udaipur',NULL,NULL,NULL,0),(14,36324,1,36973,1,0,0,'Honeymoon,Adventure,Wildlife,Family,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours,Sr. Citizen',NULL,1,1,0,'{\"package\":{\"TPId\":36324,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/australia_memories_1655799537.jpeg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Australia, officially the Commonwealth of Australia, is a sovereign country comprising the mainland of the Australian continent, the island of Tasmania, and numerous smaller islands. With an area of 7,617,930 square kilometres, Australia is the largest country by area in Oceania and the world&amp;#39;s sixth-largest country.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Melbourne\",\"DestinationPlacesSysId\":35383,\"SourcePlaces\":\"Sydney\",\"SourcePlaceSysId\":26541,\"AgencyName\":\"Connect India\",\"Name\":\"Australia Memories\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"9016\",\"SupplierName\":\"Aussie grand Tours\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours,Sr. Citizen\",\"Validity\":{\"From\":\"2022-12-23\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":26541,\"Title\":\"Sydney\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":370351,\"Name\":\"Travelodge Hotel Sydney\",\"Star\":\"3.00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.878252\",\"Long\":\"151.210757\",\"Address\":\"WENTWORTH AVENUE 27 2010 SYDNEY  AU, 2010\"},\"Images\":[],\"CityId\":26541,\"Brief\":\"Travelodge Sydney is located approximately 700 metres from Oxford Street, Darling Harbour, and the Pitt Street shopping mall. The hotel is 19 kms from the Sydney International Airport. Boasting 406 well appointed hotel rooms and a privileged location, the hotel is perfect for the business and leisure traveller. It offers a lobby area with 24-hour reception, conference facilities and a laundry service. Soft refurbishment was completed in July 2009. Travelodge Sydney is a non smoking hotel. Rooms are modern and fresh with a range of facilities designed for both the business and leisure traveller. The large restaurant is located on the 1st floor and is open for breakfast. Travelodge Sydney prides itself in offering a personalised service where the guests can feel at home at a reasonable price.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/08\\/084997\\/084997a_hb_l_012.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":370375,\"Name\":\"Vibe Hotel Sydney\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.87868\",\"Long\":\"151.209635\",\"Address\":\"111 GOULBURN STREET  2000 SYDNEY  AU, 2000\"},\"Images\":[],\"CityId\":26541,\"Brief\":\"Featuring a stunning location in the heart of Sydney CBD, this hotel is surrounded by some of the most important tourist attractions of the area, including Hyde Park, Chinatown, and Centrepoint Tower. Guests will find themselves just a few minutes from the vibrant suburbs of Surry Hills and Darlinghurst. The spacious and bright rooms feature a contemporary d&Atilde;&copy;cor with a soothing palate and luxurious soft furnishings. Visitors may take advantage of the wide range of services and facilities on offer, including a rooftop pool as well as a fully-equipped fitness centre and sauna ideal to enjoy an invigorating workout and to keep fit. This outstanding property specializes in conferences and seminars, offering five conference rooms that can accommodate up to 200 attendees.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/09\\/091278\\/091278a_hb_l_008.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":370516,\"Name\":\"Sofitel Sydney Darling Harbour\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.873417\",\"Long\":\"151.198305\",\"Address\":\"Darling Drive, Darling Harbour 12 NSW 2000 SYDNEY  AU, NSW 2000\"},\"Images\":[],\"CityId\":26541,\"Brief\":\"Located in Darling Harbour, adjacent to the new International Convention Centre Sydney and just a short walk from the shopping areas, the 5 star Sofitel Sydney Darling Harbour sets the benchmark for luxury and exceptional experience. The 590 rooms and suites combine French elegance and contemporary design, with breathtaking views of the Harbour. The hotel also features 3 bars, a restaurant, club lounge and outdoor pool.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2177,\"Title\":\"Bondi Beach\",\"Description\":\"Bondi Beach is a popular beach and the name of the surrounding suburb in Sydney, New South Wales, Australia. Bondi Beach is located 7 km (4 mi) east of the Sydney central business district, in the local government area of Waverley Council, in the Eastern Suburbs. Bondi, North Bondi and Bondi Junction are neighbouring suburbs. Bondi Beach is one of the most visited tourist sites in Australia.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501486401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2171,\"Title\":\"Darling Harbour\",\"Description\":\"Darling Harbour is named after Lieutenant-General Ralph Darling, who was Governor of New South Wales from 1825 to 1831. The area was originally known as Long Cove, but was generally referred to as Cockle Bay until 1826 when Governor Darling renamed it after himself. The name Cockle Bay has recently been restored in reference to the headwaters of the harbour.It was originally part of the commercial port of Sydney, including the Darling Harbour Railway Goods Yard. During the Great Depression, the eastern part of Darling Harbour (Barangaroo) became known as The Hungry Mile, a reference to the waterside workers searching for jobs along the wharves.\\r\\nMuch of the land had been the site of the NSW Railways central marshalling yards and freight consolidation centre. The Enquiry into the NSW industry, including rail\\/road competition (1978&acirc;&euro;&ldquo;80), under Commissioner Gavan McDonell, found that this centre was inefficient, should be moved, and the land used for other public purposes. These recommendations were acted upon and by the mid-to-late 1980s, when the area had become largely derelict it was redeveloped as a pedestrian and tourist precinct as an initiative of then New South Wales Minister for Public Works, Laurie Brereton. The Sydney Convention and Exhibition Centre at Darling Harbour was a venue of the 2000 Summer Olympic Games and a key meeting venue of APEC Australia 2007.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485052.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2172,\"Title\":\"Sydney Opera House\",\"Description\":\"The Sydney Opera House is a multi-venue performing arts centre in Sydney, Australia. It is one of the 20th century&#039;s most famous and distinctive buildings.\\r\\nDesigned by Danish architect J&Atilde;&cedil;rn Utzon, the building was formally opened on 20 October 1973 after a gestation beginning with Utzon&#039;s 1957 selection as winner of an international design competition. The government of New South Wales, led by the premier, Joseph Cahill, authorised work to begin in 1958 with Utzon directing construction. The government&#039;s decision to build Utzon&#039;s design is often overshadowed by circumstances that followed, including cost and scheduling overruns as well as the architect&#039;s ultimate resignation.\\r\\nThe building and its surrounds occupy the whole of Bennelong Point on Sydney Harbour, between Sydney Cove and Farm Cove, adjacent to the Sydney central business district and the Royal Botanic Gardens, and close by the Sydney Harbour Bridge.\\r\\nThough its name suggests a single venue, the building comprises multiple performance venues which together are among the busiest[citation needed] performing arts centres &acirc;&euro;&ldquo; hosting well over 1,500 performances annually, attended by more than 1.2 million people.\\r\\nPerformances are presented by numerous performing artists, including four resident companies: Opera Australia, The Australian Ballet, the Sydney Theatre Company and the Sydney Symphony Orchestra. As one of the most popular visitor attractions in Australia, more than eight million people visit the site annually, and approximately 350,000 visitors take a guided tour of the building each year. The building is managed by the Sydney Opera House Trust, an agency of the New South Wales State Government.\\r\\nOn 28 June 2007, the Sydney Opera House became a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4869,\"Title\":\"Fire Truck\",\"Description\":\"Try something different and take a joy ride on a fire truck with Fire 4 Hire. Once at the Spit, guests will be able to experience the operation of a fully functional fire hose, and pose for photographs holding the nozzle and wearing authentic fire helmets!\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-28.001977,\"Long\":153.425679,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525437119.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4867,\"Title\":\"Dreamworld\",\"Description\":\"Dreamworld is a theme park and zoo situated on the Gold Coast in Queensland. It is Australia&#039;s largest theme park with over 40 rides and attractions, including five roller coasters. The park is made up of several themed lands: Ocean Parade, DreamWorks Experience, Wiggles World, Town of Gold Rush, Rocky Hollow, Tiger Island and the Dreamworld Corroboree. These lands have a collection of rides, animal exhibits, shows, food outlets and merchandise shops.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.863507,\"Long\":153.313064,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1543207976.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":7599,\"Title\":\"Eureka Tower\",\"Description\":\"Eureka Tower is a 297.3-metre skyscraper located in the Southbank precinct of Melbourne, Victoria, Australia. Construction began in August 2002 and the exterior completed on 1 June 2006. The plaza was finished in June 2006 and the building was officially opened on 11 October 2006.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Eureka_Tower_35383_1544783015.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":17946,\"Title\":\"Magnificent Melbourne city tour\",\"Description\":\"Melbourne Morning City Tour See Cook&amp;rsquo;s Cottage, the first home of Captain James Cook&amp;rsquo;s folks, Queen Victoria Market, Fitzroy Gardens and Albert Park, home to the Australian Grand Prix. Walk around the Royal Botanic Gardens, see the Royal Exhibition Buildings, Parliament House and Federation Square.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Magnificent_Melbourne_city_tou_35383_1605591678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5575,\"Title\":\"MELBOURNE CRICKET GROUND\",\"Description\":\"With a capacity of 100,000 people, the  (MCG) is the largest stadium in Australia, the 10th largest stadium in the world, and the world&#039;s largest cricket stadium. It&acirc;&euro;&trade;s part of the Melbourne Sports Precinct at Yarra Park, which also includes the Rod Laver Arena, Hisense Arena and AAMI Park. In winter the ground hosts  (also known as Aussie rules, or AFL) matches, while in summer it&#039;s the stage for cricket. The G, as it&#039;s affectionately known, has been the scene of many great events in Australian sporting history since its debut in 1853.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287646.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null}]}},{\"CityId\":10616,\"Title\":\"Gold Coast\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":369669,\"Name\":\"Paradise Island Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1 Paradise Island, Gold Coast, Australia, , , 4217, \"},\"Images\":[],\"CityId\":10616,\"Brief\":\"Stop at Paradise Island Resort to discover the wonders of Gold Coast. The hotel offers guests a range of services and amenities designed to provide comfort and convenience. Express check-in\\/check-out, luggage storage, Wi-Fi in public areas, car park, airport transfer are there for guest&#039;s enjoyment. All rooms are designed and decorated to make guests feel right at home, and some rooms come with television LCD\\/plasma screen, clothes rack, mirror, sofa, towels. Take a break from a long day and make use of hot tub, fitness center, golf course (within 3 km), outdoor pool, spa. Paradise Island Resort combines warm hospitality with a lovely ambiance to make your stay in Gold Coast unforgettable.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiqxBEKnzP6FO6cGEJAec3ITvEQwIFLoGq+FSWmzF2HSzTsm1RB1LiH+sPrWSxDxfE3EEVpwv4dpnNSmMKFkmJWFhCA\\/vhcCm\\/v9tski0Ckeg==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":369648,\"Name\":\"Mercure Gold Coast Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-28.0292960251024\",\"Long\":\"153.377883061821\",\"Address\":\"Palm Meadows Drive, Carrara, \"},\"Images\":[],\"CityId\":10616,\"Brief\":\"This 4 star hotel is located in the suburbs of Carrara. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 308 rooms are equipped with minibar, hairdryer, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/1\\/3776927f4009d8b9ec7ab7c88c538bc5-179143.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":369775,\"Name\":\"Hilton Surfers Paradise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-28.001036\",\"Long\":\"153.429207\",\"Address\":\"ORCHID AVE 6 4217 SURFERS PARADISE  AU, 4217\"},\"Images\":[],\"CityId\":10616,\"Brief\":\"This stunning hotel is located between Orchid Avenue and Surfers Paradise Boulevard. The hotel is surrounded by the main business district of the city, next to the Cavill Mall and is within easy driving distance of the Gold Coast Convention Centre.Basking in its setting overlooking the sea, this spectacular landmark hotel offers guests unrivalled views and vistas. The hotel features a sleek, contemporary architectural style, while the interiors feature a refined, timeless elegance, offering guests the ideal surroundings in which to relax and unwind at the end of a long day. The guest rooms feature a stunning display of decadence and grandeur, without compromising on style. The rooms feature crisp whites, sleek, refreshing chromes and subtle quirky design elements. Guests will experience the ideal surroundings for a conducive working environment.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/14\\/148405\\/148405a_hb_a_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2177,\"Title\":\"Bondi Beach\",\"Description\":\"Bondi Beach is a popular beach and the name of the surrounding suburb in Sydney, New South Wales, Australia. Bondi Beach is located 7 km (4 mi) east of the Sydney central business district, in the local government area of Waverley Council, in the Eastern Suburbs. Bondi, North Bondi and Bondi Junction are neighbouring suburbs. Bondi Beach is one of the most visited tourist sites in Australia.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501486401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2171,\"Title\":\"Darling Harbour\",\"Description\":\"Darling Harbour is named after Lieutenant-General Ralph Darling, who was Governor of New South Wales from 1825 to 1831. The area was originally known as Long Cove, but was generally referred to as Cockle Bay until 1826 when Governor Darling renamed it after himself. The name Cockle Bay has recently been restored in reference to the headwaters of the harbour.It was originally part of the commercial port of Sydney, including the Darling Harbour Railway Goods Yard. During the Great Depression, the eastern part of Darling Harbour (Barangaroo) became known as The Hungry Mile, a reference to the waterside workers searching for jobs along the wharves.\\r\\nMuch of the land had been the site of the NSW Railways central marshalling yards and freight consolidation centre. The Enquiry into the NSW industry, including rail\\/road competition (1978&acirc;&euro;&ldquo;80), under Commissioner Gavan McDonell, found that this centre was inefficient, should be moved, and the land used for other public purposes. These recommendations were acted upon and by the mid-to-late 1980s, when the area had become largely derelict it was redeveloped as a pedestrian and tourist precinct as an initiative of then New South Wales Minister for Public Works, Laurie Brereton. The Sydney Convention and Exhibition Centre at Darling Harbour was a venue of the 2000 Summer Olympic Games and a key meeting venue of APEC Australia 2007.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485052.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2172,\"Title\":\"Sydney Opera House\",\"Description\":\"The Sydney Opera House is a multi-venue performing arts centre in Sydney, Australia. It is one of the 20th century&#039;s most famous and distinctive buildings.\\r\\nDesigned by Danish architect J&Atilde;&cedil;rn Utzon, the building was formally opened on 20 October 1973 after a gestation beginning with Utzon&#039;s 1957 selection as winner of an international design competition. The government of New South Wales, led by the premier, Joseph Cahill, authorised work to begin in 1958 with Utzon directing construction. The government&#039;s decision to build Utzon&#039;s design is often overshadowed by circumstances that followed, including cost and scheduling overruns as well as the architect&#039;s ultimate resignation.\\r\\nThe building and its surrounds occupy the whole of Bennelong Point on Sydney Harbour, between Sydney Cove and Farm Cove, adjacent to the Sydney central business district and the Royal Botanic Gardens, and close by the Sydney Harbour Bridge.\\r\\nThough its name suggests a single venue, the building comprises multiple performance venues which together are among the busiest[citation needed] performing arts centres &acirc;&euro;&ldquo; hosting well over 1,500 performances annually, attended by more than 1.2 million people.\\r\\nPerformances are presented by numerous performing artists, including four resident companies: Opera Australia, The Australian Ballet, the Sydney Theatre Company and the Sydney Symphony Orchestra. As one of the most popular visitor attractions in Australia, more than eight million people visit the site annually, and approximately 350,000 visitors take a guided tour of the building each year. The building is managed by the Sydney Opera House Trust, an agency of the New South Wales State Government.\\r\\nOn 28 June 2007, the Sydney Opera House became a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4869,\"Title\":\"Fire Truck\",\"Description\":\"Try something different and take a joy ride on a fire truck with Fire 4 Hire. Once at the Spit, guests will be able to experience the operation of a fully functional fire hose, and pose for photographs holding the nozzle and wearing authentic fire helmets!\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-28.001977,\"Long\":153.425679,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525437119.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4867,\"Title\":\"Dreamworld\",\"Description\":\"Dreamworld is a theme park and zoo situated on the Gold Coast in Queensland. It is Australia&#039;s largest theme park with over 40 rides and attractions, including five roller coasters. The park is made up of several themed lands: Ocean Parade, DreamWorks Experience, Wiggles World, Town of Gold Rush, Rocky Hollow, Tiger Island and the Dreamworld Corroboree. These lands have a collection of rides, animal exhibits, shows, food outlets and merchandise shops.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.863507,\"Long\":153.313064,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1543207976.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":7599,\"Title\":\"Eureka Tower\",\"Description\":\"Eureka Tower is a 297.3-metre skyscraper located in the Southbank precinct of Melbourne, Victoria, Australia. Construction began in August 2002 and the exterior completed on 1 June 2006. The plaza was finished in June 2006 and the building was officially opened on 11 October 2006.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Eureka_Tower_35383_1544783015.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":17946,\"Title\":\"Magnificent Melbourne city tour\",\"Description\":\"Melbourne Morning City Tour See Cook&amp;rsquo;s Cottage, the first home of Captain James Cook&amp;rsquo;s folks, Queen Victoria Market, Fitzroy Gardens and Albert Park, home to the Australian Grand Prix. Walk around the Royal Botanic Gardens, see the Royal Exhibition Buildings, Parliament House and Federation Square.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Magnificent_Melbourne_city_tou_35383_1605591678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5575,\"Title\":\"MELBOURNE CRICKET GROUND\",\"Description\":\"With a capacity of 100,000 people, the  (MCG) is the largest stadium in Australia, the 10th largest stadium in the world, and the world&#039;s largest cricket stadium. It&acirc;&euro;&trade;s part of the Melbourne Sports Precinct at Yarra Park, which also includes the Rod Laver Arena, Hisense Arena and AAMI Park. In winter the ground hosts  (also known as Aussie rules, or AFL) matches, while in summer it&#039;s the stage for cricket. The G, as it&#039;s affectionately known, has been the scene of many great events in Australian sporting history since its debut in 1853.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287646.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null}]}},{\"CityId\":35383,\"Title\":\"Melbourne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509031,\"Name\":\"ibis Melbourne Central\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.812047\",\"Long\":\"144.9602102\",\"Address\":\"399 Little Lonsdale St, Melbourne VIC 3000, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":509032,\"Name\":\"Travelodge Docklands\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.81899689999999\",\"Long\":\"144.9503634\",\"Address\":\"66 Aurora Ln, Docklands VIC 3008, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":509033,\"Name\":\"Pullman Melbourne On the Park\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-37.8157469\",\"Long\":\"144.9832559\",\"Address\":\"192 Wellington Parade, East Melbourne VIC 3002, Australia\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2177,\"Title\":\"Bondi Beach\",\"Description\":\"Bondi Beach is a popular beach and the name of the surrounding suburb in Sydney, New South Wales, Australia. Bondi Beach is located 7 km (4 mi) east of the Sydney central business district, in the local government area of Waverley Council, in the Eastern Suburbs. Bondi, North Bondi and Bondi Junction are neighbouring suburbs. Bondi Beach is one of the most visited tourist sites in Australia.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501486401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2171,\"Title\":\"Darling Harbour\",\"Description\":\"Darling Harbour is named after Lieutenant-General Ralph Darling, who was Governor of New South Wales from 1825 to 1831. The area was originally known as Long Cove, but was generally referred to as Cockle Bay until 1826 when Governor Darling renamed it after himself. The name Cockle Bay has recently been restored in reference to the headwaters of the harbour.It was originally part of the commercial port of Sydney, including the Darling Harbour Railway Goods Yard. During the Great Depression, the eastern part of Darling Harbour (Barangaroo) became known as The Hungry Mile, a reference to the waterside workers searching for jobs along the wharves.\\r\\nMuch of the land had been the site of the NSW Railways central marshalling yards and freight consolidation centre. The Enquiry into the NSW industry, including rail\\/road competition (1978&acirc;&euro;&ldquo;80), under Commissioner Gavan McDonell, found that this centre was inefficient, should be moved, and the land used for other public purposes. These recommendations were acted upon and by the mid-to-late 1980s, when the area had become largely derelict it was redeveloped as a pedestrian and tourist precinct as an initiative of then New South Wales Minister for Public Works, Laurie Brereton. The Sydney Convention and Exhibition Centre at Darling Harbour was a venue of the 2000 Summer Olympic Games and a key meeting venue of APEC Australia 2007.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485052.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2049,\"Title\":\"SEA LIFE Sydney Aquarium\",\"Description\":\"SEA LIFE Sydney Aquarium contains a large variety of Australian aquatic life, displaying more than 700 species comprising more than 13,000 individual fish and other sea and water creatures from most of Australia&#039;s water habitats.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"SEA_LIFE_Sydney_Aquarium_26541_1496809390.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2172,\"Title\":\"Sydney Opera House\",\"Description\":\"The Sydney Opera House is a multi-venue performing arts centre in Sydney, Australia. It is one of the 20th century&#039;s most famous and distinctive buildings.\\r\\nDesigned by Danish architect J&Atilde;&cedil;rn Utzon, the building was formally opened on 20 October 1973 after a gestation beginning with Utzon&#039;s 1957 selection as winner of an international design competition. The government of New South Wales, led by the premier, Joseph Cahill, authorised work to begin in 1958 with Utzon directing construction. The government&#039;s decision to build Utzon&#039;s design is often overshadowed by circumstances that followed, including cost and scheduling overruns as well as the architect&#039;s ultimate resignation.\\r\\nThe building and its surrounds occupy the whole of Bennelong Point on Sydney Harbour, between Sydney Cove and Farm Cove, adjacent to the Sydney central business district and the Royal Botanic Gardens, and close by the Sydney Harbour Bridge.\\r\\nThough its name suggests a single venue, the building comprises multiple performance venues which together are among the busiest[citation needed] performing arts centres &acirc;&euro;&ldquo; hosting well over 1,500 performances annually, attended by more than 1.2 million people.\\r\\nPerformances are presented by numerous performing artists, including four resident companies: Opera Australia, The Australian Ballet, the Sydney Theatre Company and the Sydney Symphony Orchestra. As one of the most popular visitor attractions in Australia, more than eight million people visit the site annually, and approximately 350,000 visitors take a guided tour of the building each year. The building is managed by the Sydney Opera House Trust, an agency of the New South Wales State Government.\\r\\nOn 28 June 2007, the Sydney Opera House became a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2175,\"Title\":\"Sydney Tower\",\"Description\":\"Sydney Tower is Sydney&#039;s tallest structure and the second tallest observation tower in the Southern Hemisphere. Auckland&#039;s Sky Tower is taller but Sydney Tower&#039;s main observation deck is almost 50 m (164 ft) higher than the observation deck on Auckland&#039;s Sky Tower. The name Sydney Tower has become common in daily usage, however the tower has been known as the Sydney Tower Eye,AMP Tower, Westfield Centrepoint Tower, Centrepoint Tower or just Centrepoint. The Sydney Tower is a member of the World Federation of Great Towers.\\r\\nThe tower stands 309 m (1,014 ft) above the Sydney central business district (CBD), located on Market Street, between Pitt and Castlereagh Streets.It is accessible from the Pitt Street Mall, Market Street or Castlereagh Street and sits above the Westfield Sydney (formerly Centrepoint) shopping centre. The tower is open to the public, and is one of the most prominent tourist attractions in the city, being visible from a number of vantage points throughout town and from adjoining suburbs.\\r\\nWhile the shopping centre at the base of the tower is run by the Westfield Group, the tower itself is occupied by Trippas White Group, which owns and operates Sydney Tower Dining,[6] and Merlin Entertainments, which owns and operates the Sydney Tower Eye and Oztrek.\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/26541\\/sightseeing\\/21_1501485871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":26975,\"Title\":\"Full Day Blue Mountain Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4869,\"Title\":\"Fire Truck\",\"Description\":\"Try something different and take a joy ride on a fire truck with Fire 4 Hire. Once at the Spit, guests will be able to experience the operation of a fully functional fire hose, and pose for photographs holding the nozzle and wearing authentic fire helmets!\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-28.001977,\"Long\":153.425679,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1525437119.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":4867,\"Title\":\"Dreamworld\",\"Description\":\"Dreamworld is a theme park and zoo situated on the Gold Coast in Queensland. It is Australia&#039;s largest theme park with over 40 rides and attractions, including five roller coasters. The park is made up of several themed lands: Ocean Parade, DreamWorks Experience, Wiggles World, Town of Gold Rush, Rocky Hollow, Tiger Island and the Dreamworld Corroboree. These lands have a collection of rides, animal exhibits, shows, food outlets and merchandise shops.\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":-27.863507,\"Long\":153.313064,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/48_1543207976.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":2170,\"Title\":\"Warner Bros. Movie World\",\"Description\":\"Warner Bros. Movie World (more commonly referred to as Movie World) is a movie related theme park on the Gold Coast, Queensland, Australia. It is owned and operated by Village Roadshow since the take over from Time Warner and is the only movie related park in Australia. It was opened on the 3rd of June 1991.\\r\\nThe park contains various movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. In addition, famous characters also patrol the park, allowing visitors the chance to take photos with them. These include Batman, Austin Powers, Marilyn Monroe, Scooby-Doo and Shaggy and various Looney Tunes characters. Minor street shows including skits and singing performances are also present. The All-Star Parade showcases characters alongside vehicles and movie-themed floats.\\r\\nThere are a number of active film studios within the Movie World complex. House of Wax, the first Scooby-Doo film, the 2003 Peter Pan film, Ghost Ship, The Condemned and Fortress are amongst the many films and television series produced at Warner Roadshow Studios, adjoining Warner Bros. Movie World\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10616\\/sightseeing\\/21_1501483873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5577,\"Title\":\"GREAT OCEAN ROAD\",\"Description\":\"Take a drive on the spectacular Great Ocean Road, which winds alongside the wild and windswept Southern Ocean. Home to the world-class surf at Bells Beach and the craggy limestone spires of the 12 Apostles, this diverse and dramatic region is best explored over the course of a few days\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":7599,\"Title\":\"Eureka Tower\",\"Description\":\"Eureka Tower is a 297.3-metre skyscraper located in the Southbank precinct of Melbourne, Victoria, Australia. Construction began in August 2002 and the exterior completed on 1 June 2006. The plaza was finished in June 2006 and the building was officially opened on 11 October 2006.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Eureka_Tower_35383_1544783015.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":17946,\"Title\":\"Magnificent Melbourne city tour\",\"Description\":\"Melbourne Morning City Tour See Cook&amp;rsquo;s Cottage, the first home of Captain James Cook&amp;rsquo;s folks, Queen Victoria Market, Fitzroy Gardens and Albert Park, home to the Australian Grand Prix. Walk around the Royal Botanic Gardens, see the Royal Exhibition Buildings, Parliament House and Federation Square.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/Magnificent_Melbourne_city_tou_35383_1605591678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null},{\"RefSSId\":5575,\"Title\":\"MELBOURNE CRICKET GROUND\",\"Description\":\"With a capacity of 100,000 people, the  (MCG) is the largest stadium in Australia, the 10th largest stadium in the world, and the world&#039;s largest cricket stadium. It&acirc;&euro;&trade;s part of the Melbourne Sports Precinct at Yarra Park, which also includes the Rod Laver Arena, Hisense Arena and AAMI Park. In winter the ground hosts  (also known as Aussie rules, or AFL) matches, while in summer it&#039;s the stage for cricket. The G, as it&#039;s affectionately known, has been the scene of many great events in Australian sporting history since its debut in 1853.\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35383\\/sightseeing\\/968_1528287646.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":9016,\"SupplierName\":\"Aussie grand Tours\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"260308\",\"Title\":\"Arrive Sydney\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive Sydney Airport &amp;amp; Transfer to Hotel and Check-in. The rest of the day is kept free for leisure to explore on your own. Overnight at the Respected hotel in Sydney&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":370351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":370375,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":370516,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"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\":\"260311\",\"Title\":\"Sydney City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Morning Sydney City tour including Bondi Beach, Harbour Bridge, Darling Harbour, The Rocks, King Cross, Chinatown &amp;amp; Opera House (view) &amp;amp; Mrs Macquarie&amp;#39;s Chair etc. Later proceed on own to Sea life Aquarium at Darling Harbour to exchange 2 combo pass voucher for admission to Sydney Sea life Aquarium and Sydney Tower Eye with 4D experience. In the evening enjoy Admission to one hour Sydney Harbour Cruise (Transfer on own). Overnight at the Respected hotel in Sydney.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":370351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":370375,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":370516,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2177,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2171,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2049,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2172,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2175,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260314\",\"Title\":\"Full Day Blue Mountain Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today we proceed to explore the World Heritage listed Blue Mountains. Stretching over one million hectares, the Blue Mountains are an inspiring mix of rain forests, canyons, tall forests, and heath lands; truly one of Australia&amp;rsquo;s natural wonders. Discover this wonderland of sandstone outcrops, deep ravines, pristine bush lands, and dramatic cliffs. This region is one area which is not to be missed. Then, get an opportunity to observe unique Australian wildlife, including kangaroos and koalas. Later, return to the hotel. Overnight at the Respected hotel in Sydney.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":370351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":370375,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":370516,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":26975,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260317\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"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\":\"260320\",\"Title\":\"Sydney &ndash; Gold Coast\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;This morning check out Sydney. MUST Arrive Brisbane or Gold Coast Domestic Airport within 23:00 Hrs and SIC Transfer to your Hotel. This Afternoon for optional tour proceed (on your own) to join 55Min Jet boating Ride Adventure. This early Evening proceed to join 1Hr Fire Truck Tour of Gold Coast. Overnight at the hotel in Gold Coast&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369775,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4869,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260323\",\"Title\":\"Gold Coast &ndash; Dream World\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy a full day at the Dream World. Return to the hotel in the evening. Overnight at the hotel in Gold Coast.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369775,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4867,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260326\",\"Title\":\"Gold Coast &ndash; Movie World\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy a full day at the Movie World. The park contains various Movie-themed rides and attractions ranging from motion simulators to roller coasters and slow river rides. Return to the hotel in the evening. Overnight at the hotel in Gold Coast&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":369669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":369648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":369775,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2170,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260329\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"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\":\"260332\",\"Title\":\"Gold Coast &ndash; Brisbane - Melbourne\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, transfers to Brisbane airport to board your flight to Melbourne. Arrive at Melbourne Tullamarine Airport, transfer to the hotel for check in. Rest of the day is free at leisure. Overnight at the hotel in Melbourne.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":509033,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"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\":\"260335\",\"Title\":\"Full day tour &ndash; Great Ocean Road\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Choice of 1 Full Day SIC Tour, Either - Morning Full Day Great Ocean Road Tour OR Afternoon Full Day Phillip Island Penguins, Kangaroos &amp;amp; Koalas Dep 1300hrs \\/ Returns after 2130hrs. Overnight at the hotel in Melbourne&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":509033,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5577,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260338\",\"Title\":\"Half Day city tour - Melbourne\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;This morning we proceed for a half day Morning City Tour of Melbourne. Later Join the guided 1Hr Melbourne Cricket Ground (MCG) tour (operates between 1000-1500hrs on non-event dates) OR Join 1Hr Melbourne Yarra River Cruise (Last departure time between 1500-1530hrs). Return to hotel OR explore city on your own. Overnight at the hotel in Melbourne&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":509032,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":509033,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7599,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17946,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5575,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260341\",\"Title\":\"Depart Melbourne\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;This morning checkout from the hotel and transfer to the Airport for your flight back home or your next destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"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\":2,\"Type\":\"Standard\",\"TPSysId\":\"36324\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"111070.24\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":103049,\"priceDoubleOcc\":\"111070.24\",\"priceSingleOcc\":155498.33000000002,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111070.24,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2016,\"COSTSO\":2822.4,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":103049,\"priceDoubleOcc\":\"111070.24\",\"priceSingleOcc\":155498.33000000002,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111070.24,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2016,\"COSTSO\":2822.4,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":103871,\"priceDoubleOcc\":\"112304.35\",\"priceSingleOcc\":156732.44,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112304.35,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2038.4,\"COSTSO\":2844.8,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":103871,\"priceDoubleOcc\":\"112304.35\",\"priceSingleOcc\":156732.44,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112304.35,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2038.4,\"COSTSO\":2844.8,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":104941,\"priceDoubleOcc\":\"113908.70\",\"priceSingleOcc\":158336.78999999998,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113908.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2067.52,\"COSTSO\":2873.92,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":104941,\"priceDoubleOcc\":\"113908.70\",\"priceSingleOcc\":158336.78999999998,\"priceExtraBed\":\"74602.18\",\"priceWithoutBed\":\"50660.37\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113908.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":919.52,\"CEB\":1354.08,\"COSTDO\":2067.52,\"COSTSO\":2873.92,\"CostQuad\":null,\"ACEB\":1579.2,\"COSTTO\":1579.2}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36325\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"122794.32\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113127,\"priceDoubleOcc\":\"122794.32\",\"priceSingleOcc\":181414.73,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122794.32,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2228.8,\"COSTSO\":3292.8,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113127,\"priceDoubleOcc\":\"122794.32\",\"priceSingleOcc\":181414.73,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122794.32,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2228.8,\"COSTSO\":3292.8,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113127,\"priceDoubleOcc\":\"122794.32\",\"priceSingleOcc\":181414.73,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122794.32,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2228.8,\"COSTSO\":3292.8,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113251,\"priceDoubleOcc\":\"122979.44\",\"priceSingleOcc\":181599.85,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122979.44,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2232.16,\"COSTSO\":3296.16,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113251,\"priceDoubleOcc\":\"122979.44\",\"priceSingleOcc\":181599.85,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122979.44,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2232.16,\"COSTSO\":3296.16,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":113251,\"priceDoubleOcc\":\"122979.44\",\"priceSingleOcc\":181599.85,\"priceExtraBed\":\"82253.68\",\"priceWithoutBed\":\"53190.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122979.44,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":965.44,\"CEB\":1492.96,\"COSTDO\":2232.16,\"COSTSO\":3296.16,\"CostQuad\":null,\"ACEB\":1702.4,\"COSTTO\":1702.4}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"36326\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"148031.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":137151,\"priceDoubleOcc\":\"148031.95\",\"priceSingleOcc\":224176.77000000002,\"priceExtraBed\":\"102184.62\",\"priceWithoutBed\":\"56830.94\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":148031.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":1031.52,\"CEB\":1854.72,\"COSTDO\":2686.88,\"COSTSO\":4068.96,\"CostQuad\":null,\"ACEB\":2094.4,\"COSTTO\":2094.4}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36324\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"105120.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":97528,\"priceDoubleOcc\":\"105120.05\",\"priceSingleOcc\":147168.07,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105120.05,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1908,\"COSTSO\":2671.2,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":97528,\"priceDoubleOcc\":\"105120.05\",\"priceSingleOcc\":147168.07,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105120.05,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1908,\"COSTSO\":2671.2,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":98307,\"priceDoubleOcc\":\"106288.04\",\"priceSingleOcc\":148336.06,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106288.04,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1929.2,\"COSTSO\":2692.4,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":98307,\"priceDoubleOcc\":\"106288.04\",\"priceSingleOcc\":148336.06,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106288.04,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1929.2,\"COSTSO\":2692.4,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":99319,\"priceDoubleOcc\":\"107806.45\",\"priceSingleOcc\":149854.47,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107806.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1956.76,\"COSTSO\":2719.96,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":99319,\"priceDoubleOcc\":\"107806.45\",\"priceSingleOcc\":149854.47,\"priceExtraBed\":\"70605.64\",\"priceWithoutBed\":\"47946.42\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107806.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":870.26,\"CEB\":1281.54,\"COSTDO\":1956.76,\"COSTSO\":2719.96,\"CostQuad\":null,\"ACEB\":1494.6,\"COSTTO\":1494.6}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36325\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"116216.06\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107067,\"priceDoubleOcc\":\"116216.06\",\"priceSingleOcc\":171696.09,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116216.06,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2109.4,\"COSTSO\":3116.4,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107067,\"priceDoubleOcc\":\"116216.06\",\"priceSingleOcc\":171696.09,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116216.06,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2109.4,\"COSTSO\":3116.4,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107067,\"priceDoubleOcc\":\"116216.06\",\"priceSingleOcc\":171696.09,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116216.06,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2109.4,\"COSTSO\":3116.4,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"116391.25\",\"priceSingleOcc\":171871.28,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116391.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2112.58,\"COSTSO\":3119.58,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"116391.25\",\"priceSingleOcc\":171871.28,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116391.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2112.58,\"COSTSO\":3119.58,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"116391.25\",\"priceSingleOcc\":171871.28,\"priceExtraBed\":\"77847.24\",\"priceWithoutBed\":\"50340.82\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116391.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":913.72,\"CEB\":1412.98,\"COSTDO\":2112.58,\"COSTSO\":3119.58,\"CostQuad\":null,\"ACEB\":1611.2,\"COSTTO\":1611.2}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"36326\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"140101.66\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2},{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":129804,\"priceDoubleOcc\":\"140101.66\",\"priceSingleOcc\":212167.3,\"priceExtraBed\":\"96710.45\",\"priceWithoutBed\":\"53786.42\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":140101.66,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":3,\"CWOB\":976.26,\"CEB\":1755.36,\"COSTDO\":2542.94,\"COSTSO\":3850.98,\"CostQuad\":null,\"ACEB\":1982.2,\"COSTTO\":1982.2}]}]}]}}]}]},\"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;International and Domestic Air tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Australia Visa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals, Laundry, telephone, optional excursions and other items of a personal nature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of foreign exchange for personal use.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Portage Charges in Hotel\\/Airport\\/During Tours.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST of 5% on total package cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips to Driver and Guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expense&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;High Season Surcharges as applicable&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of vehicle other than the specified itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any items or services not mentioned in the itinerary section.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Three night&amp;rsquo;s Accomodation in Sydney at suggested hotels or similar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Three night&amp;rsquo;s Accomodation in Goldcoast at suggested hotels or similar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Three night&amp;rsquo;s Accomodation in Melbourne at suggested hotels or similar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast except day 01.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Melbourne Half day &amp;amp; Full day city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Dream World on Seat in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Movie World on Seat in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sydney Half day city tour on Seat in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sydney Aquarium or Sydney Tower Eye with 4D Experience or Wildlife Sydney or Madam Tussauds &amp;ndash; Any 3 Admission tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sydney Show Boat Indian Dinner Cruise with Standard Seating &amp;ndash; No Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Blue Mountains Tour on Seat in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on Seat in Coach basis&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\":{\"260308\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[260308],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260311\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[260311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260314\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[260314],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260317\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[260317],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260320\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[260320],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260323\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[260323],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260326\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[260326],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260329\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[260329],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260332\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[260332],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260335\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[260335],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260338\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[260338],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"260341\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[260341],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[]}}','Sydney,Gold Coast,Melbourne','Sydney,Oceania,Australia,Gold Coast,Melbourne',NULL,'26541,10616,35383',105120,148032,9,NULL,NULL,NULL,2,'',0,'2022-12-23 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Australia','13','2022-12-23 00:00:00','2022-12-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'australia-memories',NULL,NULL,NULL,0),(15,3795,6,36973,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"3795\",\"VisaName\":\"Dubai\",\"Nationality\":null,\"VisaAdultRates\":7200,\"VisaChildRates\":7000,\"VisaInfantRates\":7000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Valid passport having validity of 6 months from the date of travel.scanned colour passport (First and last page) in JPEG format.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;scanned photograph required in JPEG format&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;Designation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Photo ID:&amp;nbsp;Pan card&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Others:&amp;nbsp;Occupation ,Email id, and Mobile number.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5\",\"VisaValidity\":\"30\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',7200,7200,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-03-30 14:02:09','2023-03-30 00:00:00',1,1,'1','1','0','','','',NULL,'dubai','[{\"question\":\"Dubai Visa price for Indian\",\"answer\":\"The Dubai tourist visa price starts at Rs 6,300 for a 14 days Dubai Visa.\"},{\"question\":\"When should I apply for a Dubai visa?\",\"answer\":\"You can apply for a Dubai visa from 58 to 5 working days prior to your travel date.\"},{\"question\":\"Is there an age criteria for application?\",\"answer\":\"No, there isn\'t an age criteria to apply for your Dubai Visa but it is advisable for Females below 25 years of age and males below 21 years of age to apply for a Dubai visa along with their father, mother or husband to avoid any possibilities of rejection.\"},{\"question\":\"My passport is expiring soon; can I still get a Dubai visa?\",\"answer\":\"Your passport should be valid for a minimum of 6 months from the date of arrival in Dubai.\"},{\"question\":\"How will I receive my Dubai visa?\",\"answer\":\"The visa will be mailed to you on the email address provided in the application form.\"}]',NULL,NULL,0),(16,45968,1,36973,0,0,0,'Honeymoon,Family,Shopping and Nightlife',NULL,1,1,0,'{\"package\":{\"TPId\":45968,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/singapore---free--easy_1672228016\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Singapore - Free & Easy\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13448\",\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Shopping and Nightlife\",\"Validity\":{\"From\":\"2022-12-28\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531569,\"Name\":\"Hotel Chancellor \",\"Star\":\"3.00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3011349\",\"Long\":\"103.8421518\",\"Address\":\"28 Cavenagh Rd, Singapore 229635\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;In a glass-fronted building off the Central Expressway, this modern hotel is a 6-minute walk from Somerset subway station, a 13-minute walk from the bustling shops of Orchard Road and 5 km&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;from the waterfront Gardens by the Bay.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual rooms with floor-to-ceiling windows feature free Wi-Fi, flat-screen TVs, and minifridges, plus tea and coffeemaking facilities. Upgraded rooms add rainfall showers.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in a sleek, bi-level cafe overlooking a lush courtyard, which also offers other meals. Other amenities include a striking rooftop lap pool flanked by a wooden deck, plus 5 conference rooms.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531569\\/4539_dc115a574e0668ecc60fa06927e99af21672230660.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":531571,\"Name\":\"Hotel Chancellor\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"1.3011349\",\"Long\":\"103.8421518\",\"Address\":\"28 Cavenagh Rd, Singapore 229635\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":17205,\"Name\":\"V Lavender\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.307427\",\"Long\":\"103.861575\",\"Address\":\"70 Jellicoe Road Singapore 208767\"},\"Images\":{\"Image\":[{\"ImagId\":423298,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/72\\/276\\/GZSINVHL(L)_37332620_Facade_1417x1417_5_C.jpg\"}]},\"CityId\":25278,\"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 V Hotel Lavender places you in the heart of Singapore, convenient to Golden Mile Complex and Chinatown Heritage Center.  This hotel is within close proximity of City Square Mall and Mustafa Centre.&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 888 air-conditioned rooms featuring refrigerators and LED televisions. 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. Conveniences include safes and desks, as well as phones with free local calls.&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;Be sure to enjoy recreational amenities including an outdoor pool and a fitness center. Additional amenities at this hotel include complimentary wireless Internet access, gift shops\\/newsstands, and a hair salon.&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 the hotel&amp;apos;s restaurant, which features a bar and a garden view. You can also stay in and take advantage of room service (during limited hours). 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 express check-in, express check-out, and dry cleaning\\/laundry services. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/72\\/276\\/GZSINVHL(L)_37332620_Facade_1417x1417_5_C.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":442532,\"Name\":\"PENINSULA EXCELSIOR\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"5 Coleman Street, Singapore, 179805, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 3 star hotel is located in the city centre of Singapore and was established in 1974. It is close to the Clarke Quay and the nearest station is City Hall. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 591 rooms are equipped with minibar, hairdryer, safe and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/280\\/lr\\/01ext.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":426045,\"Name\":\"PARKROYAL on Kitchener Road\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"181 Kitchener Road, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"In the heart of Singapore, the PARKROYAL on Kitchener Road hotel (part of Park Royal Hotels &amp; Resorts) is close to the Sri Veeramakaliamman Temple and the Malay Heritage Centre (Istana Kampong Gelam). This hotel built in 1983 is rated for its location and its rooms. The main hotel amenities are coffee shop or caf&Atilde;&copy;, bar &amp; lounge, 24-hour front desk, elevator, free WiFi and multilingual staff. Additional amenities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), facilities for disabled guests, ironing facilities, non-smoking rooms, designated smoking areas, tours &amp; ticket assistance, bridal suite, currency exchange, ironing service, shoeshine, tour desk, trouser press and fax &amp; photocopying. This hotel accepts the following payment types: American Express, Diners Club, JCB International, MasterCard and Visa. Cash not accepted. Pets not allowed. The hotel is recommended for groups of friends and couples.This 4 star hotel is within close proximity of the Haw Par Villa (Tiger Balm Gardens) and the Underwater World. The closest airports to the hotel are Changi and Senai Intl.The hotel occupies a modern high-rise property featuring an angular, decorative facade with some prominent panelling.The hotel has business facilities including business center and multiple small meeting rooms. This hotel provides the following swimming facilities: children&#039;s swimming pool and outdoor swimming pool. Wellness facilities include 24-hour fitness facilities, sauna, spa services on site and steam room.Relax in one of the lovely 532 air conditioned rooms at PARKROYAL on Kitchener Road. The main room amenities are air conditioning, in-room safe and hair dryer. Additional room amenities include bathrobes, hair dryer (on request), slippers, complimentary newspaper, complimentary toiletries, complimentary weekday newspaper, adjoining rooms and daily housekeeping.Eating and drinking facilities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), coffee shop or caf&Atilde;&copy; and bar &amp; lounge. Shopping facilities include gift shops or newsstand.Free parking is possible onsite. The hotel has a 24-hour reception.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/P3K\\/P3K_FRONT.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331827\",\"Title\":\"Singapore: Arrival\",\"MealPlanInclude\":\"\",\"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.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can opt for one of the kind zoo &amp;ldquo;Night Safari&amp;rdquo; &lt;strong&gt;(Extra Cost)&lt;\\/strong&gt;. 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.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;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\":531569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":17205,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"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\":\"331832\",\"Title\":\"Singapore City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":17205,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"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\":1967,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331837\",\"Title\":\"Singapore: Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Spend the 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\":531569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":17205,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"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\":\"331842\",\"Title\":\"Departure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast check out and take a transfer to the airport for a flight back to India, come back with unforgettable Memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"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\":\"45968\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25454.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24536,\"priceDoubleOcc\":\"25454.00\",\"priceSingleOcc\":37761.9,\"priceExtraBed\":\"22147.40\",\"priceWithoutBed\":\"12962.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25454,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12962.4,\"CEB\":22147.4,\"COSTDO\":25454,\"COSTSO\":37761.9,\"CostQuad\":null,\"ACEB\":22698.5,\"COSTTO\":22698.5}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45969\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27236.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26318,\"priceDoubleOcc\":\"27236.00\",\"priceSingleOcc\":47443,\"priceExtraBed\":\"23929.40\",\"priceWithoutBed\":\"13825.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27236,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13825.9,\"CEB\":23929.4,\"COSTDO\":27236,\"COSTSO\":47443,\"CostQuad\":null,\"ACEB\":24480.5,\"COSTTO\":24480.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45970\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28521.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27603,\"priceDoubleOcc\":\"28521.90\",\"priceSingleOcc\":50198.5,\"priceExtraBed\":\"24847.90\",\"priceWithoutBed\":\"14377.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28521.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14377,\"CEB\":24847.9,\"COSTDO\":28521.9,\"COSTSO\":50198.5,\"CostQuad\":null,\"ACEB\":25766.4,\"COSTTO\":25766.4}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"45971\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36421.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35503,\"priceDoubleOcc\":\"36421.00\",\"priceSingleOcc\":62139,\"priceExtraBed\":\"32195.90\",\"priceWithoutBed\":\"18051.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36421,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18051,\"CEB\":32195.9,\"COSTDO\":36421,\"COSTSO\":62139,\"CostQuad\":null,\"ACEB\":33665.5,\"COSTTO\":33665.5}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"45972\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36586.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35668,\"priceDoubleOcc\":\"36586.00\",\"priceSingleOcc\":63682.3,\"priceExtraBed\":\"32360.90\",\"priceWithoutBed\":\"18216.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18216,\"CEB\":32360.9,\"COSTDO\":36586,\"COSTSO\":63682.3,\"CostQuad\":null,\"ACEB\":33830.5,\"COSTTO\":33830.5}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"45968\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24759.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23866,\"priceDoubleOcc\":\"24759.80\",\"priceSingleOcc\":36732.03,\"priceExtraBed\":\"21543.38\",\"priceWithoutBed\":\"12608.88\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24759.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12608.88,\"CEB\":21543.38,\"COSTDO\":24759.8,\"COSTSO\":36732.03,\"CostQuad\":null,\"ACEB\":22079.45,\"COSTTO\":22079.45}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45969\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26493.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25600,\"priceDoubleOcc\":\"26493.20\",\"priceSingleOcc\":46149.100000000006,\"priceExtraBed\":\"23276.78\",\"priceWithoutBed\":\"13448.83\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26493.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13448.83,\"CEB\":23276.78,\"COSTDO\":26493.2,\"COSTSO\":46149.1,\"CostQuad\":null,\"ACEB\":23812.85,\"COSTTO\":23812.85}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45970\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27744.03\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26851,\"priceDoubleOcc\":\"27744.03\",\"priceSingleOcc\":48829.45,\"priceExtraBed\":\"24170.23\",\"priceWithoutBed\":\"13984.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27744.03,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13984.9,\"CEB\":24170.23,\"COSTDO\":27744.03,\"COSTSO\":48829.45,\"CostQuad\":null,\"ACEB\":25063.68,\"COSTTO\":25063.68}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"45971\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35427.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34534,\"priceDoubleOcc\":\"35427.70\",\"priceSingleOcc\":60444.299999999996,\"priceExtraBed\":\"31317.83\",\"priceWithoutBed\":\"17558.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35427.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17558.7,\"CEB\":31317.83,\"COSTDO\":35427.7,\"COSTSO\":60444.3,\"CostQuad\":null,\"ACEB\":32747.35,\"COSTTO\":32747.35}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"45972\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35588.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85},{\"From\":\"2023-01-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34695,\"priceDoubleOcc\":\"35588.20\",\"priceSingleOcc\":61945.509999999995,\"priceExtraBed\":\"31478.33\",\"priceWithoutBed\":\"17719.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35588.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17719.2,\"CEB\":31478.33,\"COSTDO\":35588.2,\"COSTSO\":61945.51,\"CostQuad\":null,\"ACEB\":32907.85,\"COSTTO\":32907.85}]}]}]}}]}]},\"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;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;3 Nights accommodation on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on Private Basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore City Tour on SIC Basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Visa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance.&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\":{\"331827\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331827],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331832\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331832],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331837\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331837],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331842\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331842],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',24760,36586,3,NULL,NULL,NULL,2,'',0,'2022-12-28 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Singapore','190','2022-12-28 00:00:00','2022-12-28 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'singapore-free-easy',NULL,NULL,NULL,0),(17,46044,1,36973,0,0,0,'Honeymoon,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":46044,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/36973\\/package\\/images\\/mystery-himachal_1672318993\",\"BookingValidUntill\":\"2023-01-04\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&amp;nbsp;Tour Start: Ex. DELHI \\/CHANDIGARH&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Duration:2 Nights &amp;amp; 3 Days&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay:- Shimla(2 Nights)&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":36973,\"AgencyIdB2C\":36973,\"AgencyIdB2B\":36973,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Shimla\",\"SourcePlaceSysId\":1,\"AgencyName\":\"UAMONGUS\",\"Name\":\"Mystery Himachal\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13450\",\"SupplierName\":\"\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,All Meals,Cab,Sightseeing\",\"PackageType\":\"Honeymoon,Wildlife,Family\",\"Validity\":{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531765,\"Name\":\"Hotel Sukh Sagar\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.10919969999999\",\"Long\":\"77.1647812\",\"Address\":\"Circular Road, Upper Kaithu, Kaithu, Shimla, Himachal Pradesh 171003, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13450,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531766,\"Name\":\"Hotel Aachman Regency Shimla\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"31.0940619\",\"Long\":\"77.1395431\",\"Address\":\"NH-22, Kachi Ghatti, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13450,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"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\":13450,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":736,\"Title\":\"Jakhoo Temple\",\"Description\":\"Jakhoo Temple is an ancient temple in Shimla dedicated to Hindu deity Hanuman.It is believed that this temple holds the footprints of Lord Hanuman. Jhakoo Temple is located on the Jakhoo Hill which is 2.5 km from the Ridge. It offers a beautiful views of the Shivalik Mountains and the nearby town of Sanjauli.According to Legends  Lord Hanuman stopped there to rest while he was searching for the Sanjivni Booti to revive Lakshmana in the Epic Ramayana. Every year  a big festival is held in the Temple on Dussehra.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1013414,\"Long\":77.1835041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Jakhoo_Temple_1_1518244811.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":13450,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13450,\"SupplierName\":\"\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"332355\",\"Title\":\"Delhi  to Shimla: ( 350 KM approx 6-7 Hrs) \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Delhi Railway Station \\/ Airport&amp;nbsp; and drive&amp;nbsp; to Shimla. O\\/N Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":531766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe 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\":\"332356\",\"Title\":\"SHIMLA CITY TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast Excursion to Kufri. Kufri is famous for its Himalayan National Park, Poney and Yak Ride (Extra cost) and One can see the endless Himalayan Panorama from Kufri,. Shimla Vice regal Lodge built in (1885),Jakhu Temple,The Scandal Point and The famous Shopping Plaza of the North The Mall. O\\/N Hotel at SHIMLA. &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":531766,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":736,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7431,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332357\",\"Title\":\"Shimla to Delhi(350 Km Approx 8-10 Hrs) \\/ Chandigarh\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast&amp;nbsp;check out from hotel and drive to Delhi \\/ Chandigarh and drop railway station \\/ airport.&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}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"8508.85\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":6248,\"priceDoubleOcc\":\"8508.85\",\"priceSingleOcc\":10233.85,\"priceExtraBed\":\"1725.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8508.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":1725,\"COSTDO\":8508.85,\"COSTSO\":10233.85,\"CostQuad\":null,\"ACEB\":1725,\"COSTTO\":1725},{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":7704,\"priceDoubleOcc\":\"10693.85\",\"priceSingleOcc\":12418.85,\"priceExtraBed\":\"1725.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10693.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":1725,\"COSTDO\":10693.85,\"COSTSO\":12418.85,\"CostQuad\":null,\"ACEB\":1725,\"COSTTO\":1725},{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":9544,\"priceDoubleOcc\":\"13453.85\",\"priceSingleOcc\":15178.85,\"priceExtraBed\":\"1725.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13453.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":1725,\"COSTDO\":13453.85,\"COSTSO\":15178.85,\"CostQuad\":null,\"ACEB\":1725,\"COSTTO\":1725}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":6,\"Price\":\"7990.92\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":5867,\"priceDoubleOcc\":\"7990.92\",\"priceSingleOcc\":9610.92,\"priceExtraBed\":\"1620.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7990.92,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":1620,\"COSTDO\":7990.92,\"COSTSO\":9610.92,\"CostQuad\":null,\"ACEB\":1620,\"COSTTO\":1620},{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":7235,\"priceDoubleOcc\":\"10042.92\",\"priceSingleOcc\":11662.92,\"priceExtraBed\":\"1620.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10042.92,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":1620,\"COSTDO\":10042.92,\"COSTSO\":11662.92,\"CostQuad\":null,\"ACEB\":1620,\"COSTTO\":1620},{\"From\":\"2022-12-29\",\"To\":\"2023-01-04\",\"Currency\":1,\"priceTripleOcc\":8963,\"priceDoubleOcc\":\"12634.92\",\"priceSingleOcc\":14254.92,\"priceExtraBed\":\"1620.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12634.92,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":1620,\"COSTDO\":12634.92,\"COSTSO\":14254.92,\"CostQuad\":null,\"ACEB\":1620,\"COSTTO\":1620}]}]}]}}]}]},\"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\":{\"332355\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[332355],\"Remark\":[\"&lt;p&gt;Cab Transfer&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332356\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332356],\"Remark\":[\"&lt;p&gt;Local Sightseeing transfer&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332357\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[332357],\"Remark\":[\"&lt;p&gt;Cab Transfer&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India',NULL,'1',7991,13454,2,NULL,NULL,NULL,2,'',0,'2022-12-29 00:00:00','2023-01-04 00:00:00','2023-01-04 00:00:00',3,'India','101','2022-12-29 00:00:00','2022-12-29 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'mystery-himachal',NULL,NULL,NULL,0),(18,4174,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4174\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":14325,\"VisaChildRates\":14325,\"VisaInfantRates\":14325,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"UNITED KINGDOM\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;Covering letter from Applicant stating name of the applicant, designation, nationality, passport number, purpose of visit, period of stay with dates and saying that all the expenses including medical, boarding and lodging will be borne by the Applicant..Letter should be on a plain paper if employed person and on letterhead of the company if self employed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Original bank statement for last 6 months with stamp and Sign.Income tax return for last 3 years .Other financial papers like proof of investment in shares or mutual funds, property paper, Fix Deposit Receipts etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Registration proof \\/ Partnership deed \\/ MOA of the Company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Student:&amp;nbsp;NOC from School\\/College.School\\/ College Id card copy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note:&amp;nbsp;1. Cover letter should be addressed to the Visa officer , UK High Commission , New Delhi 2. All documents should be in A4 size&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"30-45\",\"VisaValidity\":\"180\",\"VisaDuration\":\"180\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&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;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&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;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','UNITED KINGDOM','UNITED KINGDOM',NULL,'469',14325,14325,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'UNITED KINGDOM','469','2023-03-30 14:02:06','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(19,4175,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4175\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":11600,\"VisaChildRates\":11600,\"VisaInfantRates\":11600,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"France\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Valid passport for 6 months from the date of return,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One online visa application form (&amp;nbsp;https:\\/\\/france-visas.gouv.fr\\/&amp;nbsp;),&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two colour photos 35mm by 45mm white background 80% of the face should be seen,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covering letter from Indian company on company letter head in details if pax is doing own business,If working then covering letter on plain letter &amp;amp; Leave letter from Indian company,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed Hotel confirmation as per the air tkt,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal IT paper for last 3 years,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Bank Statement of last 6 months need update bank statement one day before submission mandatory, If working then Salary Slips for last 3 months,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overseas medical insurance as per the Air tkt&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Air ticket.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If pax is doing his own business then company registration copy required in English language.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If the pax is sponsored by somebody from France for a tourist visa then the consulate require original sponsorship letter&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;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"15\",\"VisaValidity\":\"180\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&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;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&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;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','France','France',NULL,'76',11600,11600,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'France','76','2023-03-30 14:02:04','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(20,4176,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4176\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":9500,\"VisaChildRates\":9500,\"VisaInfantRates\":9500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Canada\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application form;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 recent colour photographs ;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Covering letter (For Employed-Plain paper\\/ Self-Employed-Letterhead);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original updated Bank Statements with sufficient bank balance (last 6 months);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Income Tax Returns\\/Form 16 for last 3 years;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Supporting Financial Documents such as Fixed Deposits, Property Investments, Other Investments etc. (Optional)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kindly note:&amp;nbsp;The Govt is very strict on the photograph requirement; please ensure that your photos are as per the specifications.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"25-30\",\"VisaValidity\":\"180\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Canada','Canada',NULL,'39',9500,9500,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Canada','39','2023-03-30 14:02:00','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(21,4177,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4177\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":10660,\"VisaChildRates\":10660,\"VisaInfantRates\":10660,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Spain\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Valid Passport for 3 months from the return date,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One original type application form dully filled in and its should be signed with a blue ball-point pen by the applicant with a photo should be pasted \\/ stuck &amp;amp; in visa form E mail address of Applicant with the telephone number,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two latest photographs 3.5 cms x 4.5 cms with the head centered in the frame 80% face,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covering letter from pax on company letter head in detail, If pax is working then covering letter from pax on plain letter &amp;amp; leave letter from Indian company on company letter head,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel confirmation as per the air tkt, If pax is visiting to any relatives &amp;amp; friend then we required Invitation letter duly attested by Spanish Police if there is an Sponsor&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal IT paper for last 3 years,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original personal Bank Statements for last 06 months with the balance should be equivalent or above Euros &amp;euro;589.68 per person for a minimum period of stay. For longer stays applicants need to show an additional of approximately Euros &amp;euro;65.52 per day per applicant with bank seal and sign,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If working then salary slips for last 6 months,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pan card copy,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overseas Mediclaim policy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return ticket,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel vouchers&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"15\",\"VisaValidity\":\"180\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Spain','Spain',NULL,'199',10660,10660,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Spain','199','2023-03-30 14:01:59','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(22,4178,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4178\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":11500,\"VisaChildRates\":11500,\"VisaInfantRates\":11500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Switzerland\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Original passport valid at least for 06 months from the date of return,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Colour photo as per specification 35mm x 45mm white background 80% face should be seen with dark colour cloth and the photograph should be on good quality paper, Glossy finished&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;(Scanned photo will not do, passenger should give clicked photograph only)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Swiss schengen visa application form duly filled and signed by the pax, visa form as per attachment,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original Covering letter from applicant addressing to The Swiss Embassy New Delhi with whole travel details (If self employed then it should be on company&amp;rsquo;s letter head),&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original leave letter from company on company&amp;rsquo;s letter head with seal and sign. (If working),&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel confirmation as per travel date,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tkt as per hotel confirmation,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overseas medical policy as per tkt,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original Personal updated Bank statement for last 3 months with bank name and applicant name with bank seal and sign on every pages and page should be A4 size only,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Salary Slip For last 06 month with original company seal on every pages,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of personal I.T. returns for last three years&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If self employed then required Company IT paper last 3 year and Company bank statement&amp;nbsp; last 3 month&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If pax is doing his own business then company registration copy required in English language.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of qualification certificate if travelling first tome to Schengen, Original previous passport if available, For child School bonafide also required.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If child under 18 is travelling to Swiss other parents then required NOC letter from mother and father 100rs stamp paper with notary and govt id proof both pax.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Final Covid Certificate Both Dose with mention passport number&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"15\",\"VisaValidity\":\"180\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Switzerland','Switzerland',NULL,'210',11500,11500,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Switzerland','210','2023-03-30 00:00:00','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(23,4179,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4179\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":4500,\"VisaChildRates\":4500,\"VisaInfantRates\":4500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Thailand\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;We can Submit only Maharashtra, Goa, Gujarat, Madhya Pradesh in Mumbai.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Valid Passport for 6 months from date of entry.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Visa Application form with the original signature of the applicant. [ As In Attachment ].&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two recent photographs (not older than 3 months) of applicant Size - 3.5x4.5cm, white background &amp;amp; matt finish, &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;visiting card copy of employee or self employed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Hotel\\/accommodation reservation in Thailand with contact number and address.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 months Bank Statement BALANCE SHOULD BE MINIMUM 60,000\\/- INR PER PAX with original seal and signature from authorise person of bank&amp;nbsp;in all pages for per person&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return confirmed travel ticket.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"5-7\",\"VisaValidity\":\"15\",\"VisaDuration\":\"30\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Thailand','Thailand',NULL,'215',4500,4500,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Thailand','215','2023-03-30 00:00:00','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(24,4186,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4186\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":4150,\"VisaChildRates\":4150,\"VisaInfantRates\":4150,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Malaysia\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport copy of first and last page.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Photo as per specification 35 by 45 80% face white background&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirm hotel confirmation as per travel date&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal bank statement for last 03 month minimum balance of Rs 50,000 per person.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully vaccinated certificate copy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirm ticket as per travel date&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For child required birth certificate copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of covering letter on company letter head (for Business visa)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of invitation letter from Malaysia on company letter head (For Business Visa)&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"7-8\",\"VisaValidity\":\"30\",\"VisaDuration\":\"30\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Malaysia','Malaysia',NULL,'132',4150,4150,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Malaysia','132','2023-03-30 18:08:23','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(25,4187,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4187\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":3000,\"VisaChildRates\":3000,\"VisaInfantRates\":3000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Vietnam\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;scanned colour passport (First and last page) in JPEG format.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;One recent colour photograph (soft copy JPG) in white background and 35&amp;ndash;45 mm in size. 70% face without specs and glasses.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Bookings:&amp;nbsp;Confirmed air tickets or booking of air tickets of onward and return&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Reservation:&amp;nbsp;Name and Address of the Hotel\\/Accommodation&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5\",\"VisaValidity\":\"30\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Vietnam','Vietnam',NULL,'236',3000,3000,0,NULL,NULL,NULL,0,'',0,'2023-03-30 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Vietnam','236','2023-03-30 18:08:13','2023-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(26,4188,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4188\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":12000,\"VisaChildRates\":12000,\"VisaInfantRates\":12000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Australia\",\"VisaRequired\":1,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"No\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Old passport if any.Scan copy of first and last pages and all used pages of current passport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;scanned photograph required in JPEG format&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;A covering letter from the applicant mentioning name, designation, passport number, purpose and duration of visit.. For self-employed\\/businessmen, the letter should be on their business Letter head for employed individuals it should be on company&amp;rsquo;s letterhead and others on the plain paper.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Company and personal bank account statement for last 6 months.Income tax return for last 3 years&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Registration proof \\/ Partnership deed \\/ MOA of the Company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note:&amp;nbsp;Soft copies required for all above documents&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"20-25\",\"VisaValidity\":\"90\",\"VisaDuration\":\"365\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Australia','Australia',NULL,'13',12000,12000,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Australia','13','2023-03-31 13:43:51','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(27,4190,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4190\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":8500,\"VisaChildRates\":8500,\"VisaInfantRates\":8500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Belgium\",\"VisaRequired\":1,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"No\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Original Passport valid for 3 months after the intended stay and must have 2 blank pages&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;A Visa Application Form that is completely filled and signed by the Applicant. (Use only one pen to fill the form; overwriting \\/using whitener is not allowed)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;1 recent color photograph (5x3cm) with white background.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;A covering letter from the applicant mentioning name, designation, passport number, purpose and duration of visit.. For self-employed\\/businessmen, the letter should be on their business Letter head for employed individuals it should be on company&amp;rsquo;s letterhead and others on the plain paper.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Bookings:&amp;nbsp;Travel Itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Reservation:&amp;nbsp;Proof of reservation of hotel or any other accommodation for the intended stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day to Day Tour Itinerary:&amp;nbsp;Mentioning details of places visiting&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance:&amp;nbsp;Valid for all Schengen countries throughout the duration of stay.Insurance should be amounting 30000 Euros&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Income tax return for last 3 years.Bank statement for last 3 months&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Company Registration Certificate \\/ Certificate of Incorporation.Registration proof \\/ Partnership deed \\/ MOA of the Company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vaccination Certificate:&amp;nbsp;Covid 19 Vaccination Certificate for both doses (it should be linked with Passport Number)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note:&amp;nbsp;Covering Letter Addressed To General Consulate of Belgium Mumbai, India&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"10-15\",\"VisaValidity\":\"90\",\"VisaDuration\":\"180\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Belgium','Belgium',NULL,'21',8500,8500,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Belgium','21','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(28,4191,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4191\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":14640,\"VisaChildRates\":14640,\"VisaInfantRates\":14640,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"New Zealand\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Original Passport with 2 blank pages and valid for minimum six months at time of travel.Old visas if any.copy of all data pages&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;A Visa Application Form that is completely filled and signed by the Applicant. (Use only one pen to fill the form; overwriting \\/using whitener is not allowed)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;One recent passport-sized photograph (4.5 CM X 3.5 CM), white background, without glasses. Face should cover 80% of the photo.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;A covering letter from the applicant mentioning name, designation, passport number, purpose and duration of visit.. For self-employed\\/businessmen, the letter should be on their business Letter head for employed individuals it should be on company&amp;rsquo;s letterhead and others on the plain paper.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Original bank statement for last 3 months with stamp and Sign.Income tax return for last 3 years .Pay slip for last 3 months&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Company Registration Certificate \\/ Certificate of Incorporation.Company&amp;#39;s Original 3 month`s bank statement with bank seal and signature..Registration proof \\/ Partnership deed \\/ MOA of the Company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note:&amp;nbsp;COVER LETTER + INVITATION LETTER SHOULD BE ADDRESSED TO VISA OFFICER - CONSULATE GENERAL OF NEW ZEALAND MUMBAI&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evidence of funds of at least NZ$ 1,000 per month for maintenance and accommodation, or NZ$ 400 per month if your accommodation has been prepaid. In the form of bank statements, saving books or fixed deposit certificates, or Completed sponsorship form INZ 1025 if your visit is being sponsored by a New Zealand citizen\\/resident.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"15\",\"VisaValidity\":\"90\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','New Zealand','New Zealand',NULL,'157',14640,14640,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'New Zealand','157','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(29,4192,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4192\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":2500,\"VisaChildRates\":2500,\"VisaInfantRates\":2500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Singapore\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Original Passport with two blank pages and it should be valid for at least 6 months from the date of travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;A Visa Application Form that is completely filled and signed by the Applicant. (Use only one pen to fill the form; overwriting \\/using whitener is not allowed)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;Two matt-finished, coloured photographs with white background. It should be an 80% face close up and 35mm x 45mm in size. The photograph should not be older than 3 months.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;Applicant email id and contact number should be mentioned in cover letter..Letter should be on a plain paper if employed person and on letterhead of the company if self employed..Covering letter from Applicant stating name of the applicant, designation, nationality, passport number, purpose of visit, period of stay with dates and saying that all the expenses including medical, boarding and lodging will be borne by the Applicant. In case applicant is travelling with someone, their name, relationship with the applicant , occupation and passport details should be mentioned on the covering letter..vaccination details should be mentioned in cover letter with statement - Applicant is fully vaccinated and is taking full responsibility for safe travels requirements stipulated for travelling to Singapore..Accommodation address should be mentioned on covering letter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Copy of bank statement for last 6 months.Only required in case of no stamped visas on passport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Student:&amp;nbsp;School\\/ College Id card copy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Minor Travelling:&amp;nbsp;Visa Application form should be signed by both the parents.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sample Visa Application Form&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sample Cover Letter&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note :&amp;nbsp;Cover letter should be addressed to - The Visa Officer, The Consulate General of Singapore, Mumbai.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"3-5\",\"VisaValidity\":\"30\",\"VisaDuration\":\"730\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Singapore','Singapore',NULL,'190',2500,2500,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Singapore','190','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(30,4193,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4193\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":2600,\"VisaChildRates\":2600,\"VisaInfantRates\":2600,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Sri Lanka\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":3,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Double Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;First and last page of data pages.Valid passport having validity of 6 months from the date of travel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Bookings:&amp;nbsp;Travel dates&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Others:&amp;nbsp;Contact\\/Mobile number of the applicant&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"48 hours\",\"VisaValidity\":\"30\",\"VisaDuration\":\"180\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Sri Lanka','Sri Lanka',NULL,'200',2600,2600,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Sri Lanka','200','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(31,4196,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4196\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Indonesia\",\"VisaRequired\":1,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"No\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Scanned recent colour photograph.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed return flight ticket&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation proof (hotel booking or invitation letter if visiting relative\\/friend)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day wise itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sufficient financial funds for the entire trip (cash, debit\\/credit card etc.)&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"-\",\"VisaValidity\":\"30\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Indonesia','Indonesia',NULL,'102',0,0,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Indonesia','102','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(32,4197,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4197\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":8000,\"VisaChildRates\":8000,\"VisaInfantRates\":8000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Italy\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Original Passport with 1 blank page and valid for minimum six months at time of travel.Old passport if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;Application form completely filled and duly signed by the applicant .&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Form:&amp;nbsp;Travel Health Insurance declaration form&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;2 passport size colour Photograph 45mm x 35mm with matte finish and not older than 6 months.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;A covering letter from the applicant mentioning name, designation, passport number, purpose and duration of visit.. For self-employed\\/businessmen, the letter should be on their business Letter head for employed individuals it should be on company&amp;rsquo;s letterhead and others on the plain paper.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Bookings:&amp;nbsp;Ticket Itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Reservation:&amp;nbsp;day to day schedule.Proof of reservation of hotel or any other accommodation for the intended stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance:&amp;nbsp;Valid for all Schengen countries throughout the duration of stay.Insurance should be amounting 30000 Euros&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Original bank statement for last 3 months with stamp and Sign.Income tax return for last 3 years&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Registration proof \\/ Partnership deed \\/ MOA of the Company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vaccination Certificate:&amp;nbsp;Covid 19 Vaccination Certificate for both doses (it should be linked with Passport Number)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note:&amp;nbsp;COVERING LETTER ADDRESS TO -TO THE VISA OFFICER, CONSULATE GENERAL OF ITALY,MUMBAI&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"10-15\",\"VisaValidity\":\"90\",\"VisaDuration\":\"180\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Italy','Italy',NULL,'107',8000,8000,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Italy','107','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(33,4198,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4198\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":9800,\"VisaChildRates\":9800,\"VisaInfantRates\":9800,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Portugal\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Old passport if any.First and last page of data pages.Original Passport with 2 blank pages and valid for 90 days after the scheduled return&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;Online filled visa application form&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;Photograph 2 passport size colour Photograph 45mm x 35mm, not older than 6 months..Photograph should be in white background.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;Covering letter from Applicant stating name of the applicant, designation, nationality, passport number, purpose of visit, period of stay with dates and saying that all the expenses including medical, boarding and lodging will be borne by the Applicant. In case applicant is travelling with someone, their name, relationship with the applicant , occupation and passport details should be mentioned on the covering letter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Bookings:&amp;nbsp;Confirmed air tickets or booking of air tickets of onward and return&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Reservation:&amp;nbsp;Proof of reservation of hotel or any other accommodation for the intended stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance:&amp;nbsp;Valid for all Schengen countries throughout the duration of stay.Insurance should be amounting 30000 Euros&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Copy of bank statement for last 6 months.Income tax return for last 3 years&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Sponsored:&amp;nbsp;sponsor&amp;#39;s Govt id proof.Proof of sponsorship and\\/or private accommodation (Sponsor letter should be attested by the Notary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A Sponsorship Letter:&amp;nbsp;Must provide the details such as relationship with the applicant, purpose of visit, location, and duration of stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vaccination Certificate:&amp;nbsp;Covid 19 Vaccination Certificate for both doses (it should be linked with Passport Number)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Others:&amp;nbsp;Copy of Pan card&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional Documents :&amp;nbsp;Original Employment Letter from the Indian organization or company mentioning the designation and current profile of the applicant, place of residence in India, purpose of the visit, itinerary stating the number of days, name &amp;amp; contacts of the company in Portugal with complete and full address and contacts of host \\/ hotel accommodation in Portugal.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"10-15\",\"VisaValidity\":\"90\",\"VisaDuration\":\"180\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Portugal','Portugal',NULL,'175',9800,9800,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Portugal','175','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(34,4199,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4199\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":4500,\"VisaChildRates\":4500,\"VisaInfantRates\":4500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Turkey\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Scanned copy of the first and last page of your Passport;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two (2) recent colour photographs taken against a white background.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed return flight ticket;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel reservation;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Valid Visa or Residence permit of UK \\/ USA \\/ Schengen Country \\/ Ireland.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5\",\"VisaValidity\":\"30\",\"VisaDuration\":\"180\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Turkey','Turkey',NULL,'222',4500,4500,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Turkey','222','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(35,4201,6,36973,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4201\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":8500,\"VisaChildRates\":8500,\"VisaInfantRates\":8500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Russia\",\"VisaRequired\":3,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Normal Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Passport:&amp;nbsp;Original passport valid for 6 months from the scheduled return and must have 2 blank pages.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Application Form:&amp;nbsp;Application form completely filled and duly signed by the applicant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coloured Photograph:&amp;nbsp;2 Photographs (35X45mm) white background, glossy finish, 80% face cover and not older than 3 months.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cover Letter:&amp;nbsp;Stating the name, passport number of applicant as well as purpose and duration of visit. Letter must have the physical address, as well as contact details of authorized signature&amp;rsquo;s name, designation and signature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Invitation Letter:&amp;nbsp;An official invitation from a Russian tour operator (good quality scanned copies are accepted)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Financial Document:&amp;nbsp;Original personal bank statement for last 6 months mentioning the Bank name and bank&amp;#39;s telephone number..Income tax return for last 3 years&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Employed:&amp;nbsp;3-month Salary slip and NOC from employer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If Self Employed:&amp;nbsp;Company Registration Certificate \\/ Certificate of Incorporation.Certificate of Proprietorship or other proof of ownership (proof of land title, proof of income from agriculture..Balance sheet of the Company or Partnership Deed.Articles of Memorandum (If Director \\/ MD).Brief Company Profile&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"10-15\",\"VisaValidity\":\"30\",\"VisaDuration\":\"As per Embassy\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Russia','Russia',NULL,'507',8500,8500,0,NULL,NULL,NULL,0,'',0,'2023-03-31 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Russia','507','2023-03-31 00:00:00','2023-03-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(36,46073,1,59951,0,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46073,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/magical-mauritius_1672395742\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Mauritius is the perfect destination for a romantic getaway or a family holiday with its idyllic beaches, wide array of sightseeings, leisure and water sports activities, hotels appealing to romance and stunning sceneries. Whether you are on holidays with your loved ones or on your honeymoon, your stay in Mauritius promises to be unforgettable.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Magical Mauritius\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13483\",\"SupplierName\":\"SILVER WINGS TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Airport Transfers,Sightseeing,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-06-02\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2370,\"Title\":\"Casela Nature &amp; Leisure Park, Cascavelle, Mauritius\",\"Description\":\"The Casela Nature and Leisure Park is situated in the western piece of Mauritius between Flic en Flac and Tamarin. The recreation center covers a zone of around 14 ha. In the recreation center you can see around 1500 flying creatures of more than 150 species and an assortment of creatures, for example, the great goliath turtles and different warm blooded animals, for example, lions and monkeys. The recreation center is set up with an assortment of excellent intriguing plants and blossoms. In addition on the grounds of the recreation center are found the tasty eatery Le Mirador and a wonderful post point with dazzling perspectives over the west drift. Guided visits through the recreation center are not offered but rather everybody gets an aide leaflet at the passage in which are given quickly portrayals of the individual creatures. Term: You can spend one hour in the recreation center and a few hours in the event that you take as much time as necessary to enjoy it.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.290871,\"Long\":57.403514,\"Image\":\"Casela_Nature_&amp;_Leisure_Park,__17162_1503479850.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"332520\",\"Title\":\"ARRIVE MAURITIUS - TRANSFER TO HOTEL \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;As you arrive at the Sir Seewoosagur Ramgoolam International Airport for your holiday in Mauritius, clear immigration and baggage collection followed by meet and assist by our airport representative. Get transferred to your resort and complete the check-in formalities.&amp;nbsp;&lt;br \\/&gt;\\r\\nYour evening is at leisure and you can utilize it to spend quality time with your family. Head to the nearby beaches or splurge at the local markets.&lt;br \\/&gt;\\r\\nCome back to the resort for a delicious dinner and cozy stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"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\":\"332525\",\"Title\":\"MAURITIUS - NORTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After a sumptuous breakfast gear up for a full day excursion trip to the North Island of Mauritius.&lt;br \\/&gt;\\r\\nVisit major tourist attractions such as the Place D&amp;rsquo;Armes, reminiscent of the colonial French era and the Champ de Mars Racecourse.&amp;nbsp;Le Caudan Waterfront, which is a popular commercial hub in Port Louis is also a part of your day&amp;rsquo;s itinerary.&amp;nbsp;Home to casinos, luxury shops, and fine dine restaurants, Le Caudan is the place where everyone can truly have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Return to the resort for a delicious dinner and have a good night&amp;rsquo;s sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"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\":2364,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332530\",\"Title\":\"MAURITIUS -ILE AUX CERF TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After a delicious breakfast in the resort, you will be transferred to the beautiful Ile Aux Cerfs Island. The most famous island in Mauritius, your holiday in Mauritius would be incomplete without a trip to this scintillating island.&lt;br \\/&gt;\\r\\nSoak up the sun and indulge in thrilling water sports activities (own cost). Choose from a range of adventurous water sports such as parasailing, snorkeling, underwater sea walk and speed boat rides and have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Head back to your resort for a delectable dinner and warm stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"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\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332535\",\"Title\":\"DAY AT LEISURE TO ENJOY WATER SPORTS ACTIVITIES \\/ OPTIONAL SIGHTSEEING (OWN COST)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After a hearty breakfast, you have the day at leisure to relax in the comforts of your room or perhaps explore the beautiful beaches of Mauritius and enjoy some water sports activities or some optional sightseeing tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and overnight stay in your Mauritius resort.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"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\":\"332540\",\"Title\":\"MAURITIUS -SOUTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Begin your day with a delicious breakfast followed by South Island Tour of Mauritius.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Model Ship Factory, Duty-Free Shop - Adamas, Stop at Trou aux Cerfs Volcanic Crater (Viewpoint) at Curepipe with its 7 coloured earth, Chamarel Water falls followed by visit to the Sacred Lake of Grand Bassin Ganga Talao &amp;amp; Shivji Temple.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer back to the hotel for dinner and overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"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\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332545\",\"Title\":\"VISIT TO CASELA PARK + INTERACTION WITH CHEETAH* (15 MINUTES) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy breakfast in the resort followed by an exciting day trip to Casela Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Casela is one of the most popular leisure and attraction parks in Mauritius offering a variety of fun and thrilling activities to individuals, families and corporates.&amp;nbsp;The park spans over 350 hectares and is divided into 5 zones, each with its own unique characteristic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your Casela Park entrance includes viewing of giraffe, pygmy hippo, camels and llamas, Petting Farm, Children&amp;#39;s playground, walk thru the aviary, safari photo, big cat viewing and giraffe viewing, Tortoise Pen + Bus Safari Tour + 1 Ride at Tulawaka Gold Coaster + Interaction with Cheetah for 15 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;* Interaction with Cheetah is allowed only for adults with minimum 5 ft height.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to you resort for Dinner and Overnight Stay.&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\":17162,\"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\":2370,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332550\",\"Title\":\"DEPARTURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy a healthy breakfast before checking out from the resort as your Magical Mauritius package ends today. Get transferred to the airport and board your homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories ...!!!&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\":17162,\"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\":\"46073\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"47795.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":47117,\"priceDoubleOcc\":\"47795.00\",\"priceSingleOcc\":68200,\"priceExtraBed\":\"27940.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":27940,\"COSTDO\":47795,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45760,\"COSTTO\":45760}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46074\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57145.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":55513,\"priceDoubleOcc\":\"57145.00\",\"priceSingleOcc\":91905,\"priceExtraBed\":\"37290.00\",\"priceWithoutBed\":\"32450.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57145,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32450,\"CEB\":37290,\"COSTDO\":57145,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46075\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"79189.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":77048,\"priceDoubleOcc\":\"79189.00\",\"priceSingleOcc\":136499,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79189,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":79189,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72765,\"COSTTO\":72765}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46076\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"92950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":90823,\"priceDoubleOcc\":\"92950.00\",\"priceSingleOcc\":144210,\"priceExtraBed\":\"41717.50\",\"priceWithoutBed\":\"11880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11880,\"CEB\":41717.5,\"COSTDO\":92950,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86570,\"COSTTO\":86570}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46077\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"116710.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":114369,\"priceDoubleOcc\":\"116710.00\",\"priceSingleOcc\":189530,\"priceExtraBed\":\"43945.00\",\"priceWithoutBed\":\"12650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12650,\"CEB\":43945,\"COSTDO\":116710,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109686.5,\"COSTTO\":109686.5}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46073\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46491.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":45832,\"priceDoubleOcc\":\"46491.50\",\"priceSingleOcc\":66340,\"priceExtraBed\":\"27178.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46491.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21400,\"CEB\":27178,\"COSTDO\":46491.5,\"COSTSO\":\"18550.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44512,\"COSTTO\":44512}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46074\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55586.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":53999,\"priceDoubleOcc\":\"55586.50\",\"priceSingleOcc\":89398.5,\"priceExtraBed\":\"36273.00\",\"priceWithoutBed\":\"31565.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55586.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":31565,\"CEB\":36273,\"COSTDO\":55586.5,\"COSTSO\":\"31600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50825,\"COSTTO\":50825}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46075\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"77029.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":74946,\"priceDoubleOcc\":\"77029.30\",\"priceSingleOcc\":132776.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77029.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":77029.3,\"COSTSO\":\"52100.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70780.5,\"COSTTO\":70780.5}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46076\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"90415.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":88346,\"priceDoubleOcc\":\"90415.00\",\"priceSingleOcc\":140277,\"priceExtraBed\":\"40579.75\",\"priceWithoutBed\":\"11556.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90415,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11556,\"CEB\":40579.75,\"COSTDO\":90415,\"COSTSO\":\"46600.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84209,\"COSTTO\":84209}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46077\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"113527.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":111250,\"priceDoubleOcc\":\"113527.00\",\"priceSingleOcc\":184361,\"priceExtraBed\":\"42746.50\",\"priceWithoutBed\":\"12305.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113527,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12305,\"CEB\":42746.5,\"COSTDO\":113527,\"COSTSO\":\"66200.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106695.05,\"COSTTO\":106695.05}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"\",\"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\":\"\",\"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;Mauritius Visa (free on arrival).&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;06 nights accommodation on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast and Dinner in the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;North Island Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;South Island Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ile Aux Cerfs Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Casela Park with Cheetah Interaction* (15 minutes).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"\",\"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\":{\"332520\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[332520],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332525\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332525],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332530\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[332530],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332535\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[332535],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332540\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[332540],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332545\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[332545],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332550\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[332550],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',46492,116710,6,NULL,NULL,NULL,2,'',0,'2023-06-02 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Mauritius','139','2023-06-02 00:00:00','2023-06-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'magical-mauritius',NULL,NULL,NULL,0),(37,45721,1,59951,0,0,0,'Family,Heritage,Shopping and Nightlife,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":45721,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4913\\/package\\/images\\/ultimate-usa_1672666602\",\"BookingValidUntill\":\"2023-09-03\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;U.S.A.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The U.S. is a country of 50 states covering a vast swath of North America, with Alaska in the northwest and Hawaii extending the nation&amp;rsquo;s presence into the Pacific Ocean. Major Atlantic Coast cities are New York, a global finance and culture center, and capital Washington, DC. Midwestern metropolis Chicago is known for influential architecture and on the west coast, Los Angeles&amp;#39; Hollywood is famed for filmmaking.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4913,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"San Francisco\",\"DestinationPlacesSysId\":32994,\"SourcePlaces\":\"New York\",\"SourcePlaceSysId\":32159,\"AgencyName\":\"Best Tours and Forex PVT LTD\",\"Name\":\"Ultimate USA 2023\",\"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\":\"Hotel,All Meals,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family,Heritage,Shopping and Nightlife,Activites Tour\",\"Validity\":{\"From\":\"2023-06-03\",\"To\":\"2023-09-03\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32159,\"Title\":\"New 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\":32159,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":29337,\"Title\":\"Washington\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":29337,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":31839,\"Title\":\"Los Angeles\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":31839,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":32994,\"Title\":\"San Francisco\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32994,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":19383,\"Title\":\"Niagara Falls\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":19383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":31631,\"Title\":\"Las Vegas\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":31631,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4479,\"Title\":\"Liberty Island\",\"Description\":\"Also known as Bedleo&amp;rsquo;s Island, Liberty Island is one of the most rewarding experiences of any trip to New York City, best known as the location of the Statue of Liberty. This Island can be reached by ferry. There is self-guided tour is available with ferry ride and can be picked up at the Antenna Audio booth on Liberty Island. This tour with ferry ride helps visitors learn about the Statue of Liberty while exploring the grounds of Liberty Island and the service of deive audio tour is also available here.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6895453,\"Long\":-74.0449292,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/liberty_isl_32159_1674566349.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36783,\"Title\":\"Manhattan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.7830603,\"Long\":-73.9712488,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3138,\"Title\":\"Statue of Liberty\",\"Description\":\"The Statue of Liberty is a memorial. Lakhs of people around the world have a living symbol of freedom. He is a sweet friend, this exhibition is a tribute to those who made him, for those who made and paid for him, reflects the ideals he represents, and the hopes he inspired. Are there. Statue of Liberty Exhibit, opened in July 1998. In addition to historical artifacts and deive lessons, full-scale replicas of the statue&amp;#039;s face and leg are also on display. The Statue of Liberty National Monument on Liberty Island and the Ellis Island National Immigration Museum on Ellis Island with round-trip ferry transportation.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.6892,\"Long\":74.0445,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/statue_of_liberty_32159_1674653286.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3350,\"Title\":\"Times Square\",\"Description\":\"Times Square is a major commercial intersection tourist destination entertainment center and neighborhood in the Midtown Manhattan section of New York City at the junction of Broadway and Seventh Avenue.\",\"CurrencyType\":0,\"CityId\":32159,\"CityName\":\"New York\",\"Lat\":40.758895,\"Long\":-73.985131,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/32159\\/sightseeing\\/times_square_32159_1674652417.jpg\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36787,\"Title\":\"Benjamin Franklin Parkway\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9598192,\"Long\":-75.1732591,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36785,\"Title\":\"Independence Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9488806,\"Long\":-75.1500349,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36786,\"Title\":\"Liberty Bell\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9496103,\"Long\":-75.1502821,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36784,\"Title\":\"Philadelphia City Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":39.9528,\"Long\":-75.1634833,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35375,\"Title\":\"Lincoln Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8892686,\"Long\":-77.050176,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6476,\"Title\":\"smithsonian air space museum\",\"Description\":\"The National Air and Space Museum of the Smithsonian Institution, also called the NASM, is a museum in Washington, D.C. It was established in 1946 as the National Air Museum and opened its main building on the National Mall near L&#039;Enfant Plaza in 1976. \\r\\nThe museum contains the Apollo 11 command module, the Friendship 7 capsule which was flown by John Glenn, Charles Lindbergh&#039;s Spirit of St. Louis, the Bell X-1 which broke the sound barrier, and the Wright brothers&#039; plane near the entrance.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/36_1530707303.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36149,\"Title\":\"The Pentagon\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8718568,\"Long\":-77.0562669,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4286,\"Title\":\"the White House\",\"Description\":\"The White House is the official residence and workplace of the President of the United States. It is located at 1600 Pennsylvania Avenue NW in Washington, D.C. and has been the residence of every U.S. President since John Adams in 1800.\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/29337\\/sightseeing\\/414_1522658871.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35374,\"Title\":\"Washington Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":29337,\"CityName\":\"Washington\",\"Lat\":38.8894838,\"Long\":-77.0352791,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2980,\"Title\":\"Hershey&rsquo;s Chocolate World\",\"Description\":\"HERSHEY&amp;rsquo;S CHOCOLATE WORLD Las Vegas is a unique and delicious retail experience that offers more than 800 Hershey&amp;rsquo;s chocolates and candies in the famous New York-New York Hotel &amp;amp; Casino.\\r\\n\\r\\nThis West Coast flagship store spans 13,000-square-feet and offers exclusive HERSHEY&amp;rsquo;S products, gifts, and delicious treats making it one of Las Vegas&amp;rsquo; most popular tourist destinations.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/414_1521805387.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3215,\"Title\":\"Cave of the Winds\",\"Description\":\"Cave of the Winds was a natural cave behind Bridal Erythe Falls in Niagara Falls. The cave was 130 feet high, 100 feet wide and 30 feet in depth. It was discovered in 1834, and originally termed Aulus&#039; cave, the Greek god of later winds. In present, the &quot;Cave of the Winds&quot; is the name of a tourist attraction near the same site. All winter long, crews repaint and waterproof the lumber with Thompson&#039;s Water Seal and then each spring, the decks and walkways are rebuilt for another summer of fun.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":43.0823,\"Long\":79.0709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/Cave_of_the_Winds_19383_1517813083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6680,\"Title\":\"MAID OF THE MIST RIDE\",\"Description\":\"The Maid of the Mist is a boat tour of Niagara Falls, starting and ending on the American side, crossing briefly into Ontario during a portion of the trip.\",\"CurrencyType\":0,\"CityId\":19383,\"CityName\":\"Niagara Falls\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19383\\/sightseeing\\/36_1530876609.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36790,\"Title\":\"Las Vegas\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35370,\"Title\":\"Grand Canyon National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.10692580000001,\"Long\":-112.1129484,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3322,\"Title\":\"Grand Canyon Skywalk\",\"Description\":\"You&amp;rsquo;re standing on a platform made of glass. The rim of the Grand Canyon is 70 feet behind you. The other side of it is 3 miles in front of you. Then you dare to look down and see nothing but 2,000 feet of air between you and the bottom of the Grand Canyon. Until recently, a sensation like this could only be experienced in dreams. But now, on the Hualapai Indian Reservation that is just East of Las Vegas, dreams and reality will meld into one with the Grand Canyon Skywalk.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.011874,\"Long\":-113.810935,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/414_1522732476.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2990,\"Title\":\"Hoover Dam\",\"Description\":\"Explore one of America&amp;rsquo;s most spectacular feats of engineering and journey deep inside the Hoover Dam on one of our Hoover Dam Tours. Combine your Hoover Dam tour with a trip to the West Rim, a leisurely cruise down the Colorado River, or even a relaxing boat tour of Lake Mead. You can even fly high above the Hoover Dam and experience this man-made wonder from the comfort of a luxury helicopter.\",\"CurrencyType\":0,\"CityId\":31631,\"CityName\":\"Las Vegas\",\"Lat\":36.016066,\"Long\":-114.737732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31631\\/sightseeing\\/Hoover_Dam_31631_1519282163.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6504,\"Title\":\"Los Angeles City Tour\",\"Description\":\"Los Angeles is a sprawling Southern California city and the center of the nation&acirc;&euro;&trade;s film and television industry. Near its iconic Hollywood sign, studios such as Paramount Pictures, Universal and Warner Brothers offer behind-the-scenes tours. On Hollywood Boulevard, TCL Chinese Theatre displays celebrities&acirc;&euro;&trade; hand- and footprints, the Walk of Fame honors thousands of luminaries and vendors sell maps to stars&acirc;&euro;&trade; homes.\\r\\nLos Angeles City Tour:A step on tour guide will join you for a Los Angeles guided city tour. Visit LA Downtown,\\r\\nBeverly Hills, Chinatown, Walk of Fame, Hollywood, Santa Monica Beach &amp; much more.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/36_1530770164.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3198,\"Title\":\"Universal Studios Hollywood\",\"Description\":\"Around 70% of the studio lies within the county island known as Universal City while the rest within the city limits of Los Angeles, California. This is one of the oldest and most famous Hollywood film studios still in use. That was originally created to offer tours of the real Universal Studios sets and is the first of many full-fledged Universal Studios Theme Parks located across the world. Universal Studios Hollywood is a division into two areas on various levels, connected by a series of escalators called the Starway. As of February 2016, Universal Studios Hollywood has contained 9 rides, 7 shows, and a large outdoor play area.\",\"CurrencyType\":0,\"CityId\":31839,\"CityName\":\"Los Angeles\",\"Lat\":34.1381,\"Long\":118.3534,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31839\\/sightseeing\\/Universal_Studios_Hollywood_31839_1517810993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4172,\"Title\":\"San Francisco City tour\",\"Description\":\"San Francisco, in northern California, is a hilly city on the tip of a peninsula surrounded by the Pacific Ocean and San Francisco Bay. It&#039;s known for its year-round fog, iconic Golden Gate Bridge, cable cars and colorful Victorian houses. The Financial District&#039;s Transamerica Pyramid is its most distinctive skyscraper. In the bay sits Alcatraz Island, site of the notorious former prison.\",\"CurrencyType\":0,\"CityId\":32994,\"CityName\":\"San Francisco\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32994\\/sightseeing\\/414_1524649335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"330051\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to the iconic city of New York. Your 12 nights\\/13 days USA tour package begins today. Our representative will meet you at the hotel. As soon as you reach the hotel, complete all check-in formalities, and unwind in your room.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in New Jersey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32159,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"330052\",\"Title\":\"New York\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Savor an authentic American breakfast, and get ready for a sightseeing tour of New York. We begin with a visit to the 9\\/11 Memorial followed by a ferry ride to the priceless attraction of Liberty Island, the Statue of Liberty.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, we will go to the tallest building in the western hemisphere, the One World Trade Centre. The Observation Deck of this tower, situated at the 102nd floor, provides stunning bird-eye views of New York City. After witnessing the city from the top, enjoy a drive across the bustling Times Square, and the Manhattan city before returning back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in New Jersey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32159,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":4479,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36783,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3138,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3350,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330053\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32159,\"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\":\"330054\",\"Title\":\"New York - Philadelphia - Washington DC\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After American breakfast, check-out of your hotel and embark on a road journey to the capital of U.S.A., Washington D.C. via Philadelphia. In Philadelphia, enjoy an entertaining orientation tour of the largest city in Pennsylvania state. Drive past Philadelphia City Hall, Independence Hall &amp;amp; Liberty Bell building. Drive on the famous Benjamin Franklin Parkway also known as Champs-Elysees of Philadelphia.&lt;br \\/&gt;\\r\\nLater, continue to Washington DC.&lt;br \\/&gt;\\r\\nAfter dinner, check-in at your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nOvernight stay at hotel in Washington.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nMEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29337,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":36787,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36785,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36786,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36784,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330055\",\"Title\":\"Washington DC\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After American breakfast at the Hotel, sit back through a GUIDED city tour of Washington DC covering all the major landmarks. See all the key attractions in DC and learn about the history and trivia that surrounds Washington on this interactive tour of the capital city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We pass by Washington Monument, the Pentagon building followed by Lincoln Memorial, White House, etc. We take a photostop a Capitol Hill to click a picture with backdrop of White House.&lt;br \\/&gt;\\r\\nLater explore Air &amp;amp; space museum (if open) to view all the different exhibits related to space &amp;amp; Aeronautics.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Washington.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29337,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":35375,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6476,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36149,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4286,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35374,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330056\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29337,\"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\":\"330057\",\"Title\":\"Washington DC - Hershey&rsquo;s Chocolate World - Niagara\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After American breakfast, check-out of your hotel and embark on a road journey to magical Niagara falls. But first, visit magical Hershey&amp;#39;s Chocolate World on the way to enjoy a chocolate adventure. Later, drive to the border to reach Niagara.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival, check-in at the hotel, and enjoy a comfortable overnight stay at this wonderland.&lt;br \\/&gt;\\r\\nNOTE: There is no vehicle allowed at Niagara, you have to walk for meals and sightseeing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Niagara.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":2980,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330058\",\"Title\":\"Niagara Falls\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After American breakfast, gear up to enjoy spectacular views of Niagara falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;View Cave of the Winds, take an elevator ride - 175 feet below to get to a feel the power of Falls first hand. You will also take a closer look at the Bridal veil falls in a boat ride abroad Maid of the mist. Evening Free on own.&lt;br \\/&gt;\\r\\nNOTE: There is no vehicle allowed at Niagara, you have to walk for meals and sightseeing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Niagara.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":3215,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6680,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330059\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19383,\"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\":\"330060\",\"Title\":\"Niagara - Las Vegas\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast at the Hotel check out &amp;amp; proceed to fly to Las Vegas &amp;ndash; the entertainment capital of the world!&lt;br \\/&gt;\\r\\nExplore the bright lights of the famous Las Vegas Strip and have first-hand experience of the Vegas glitz and glamour during Orientation City tour of Las Vegas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Las Vegas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31631,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":36790,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330061\",\"Title\":\"Grand Canyon\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast at the hotel, leave for the Grand Canyon National Park tour in the early morning. Enjoy ritual dances and a lovely lunch on arrival and later watch a Wild West show. Take a guided tour of the famous Hoover Dam from the arch-shaped O&amp;#39;Callaghan&amp;ndash;Pat Tillman Memorial Bridge. Proceed further through Joshua Tree National Forest and marvel at surreal geologic features narrated by the guide in the bus. After arriving at the Grand Canyon west rim, visit the Native American settlement of Hualapai tribe and learn about their way of life. Enjoy a tribal dance performance which is subjected to availability. Admire the 360-degree views of Grand Canyon from Guano Point, one of the most dramatic viewpoints. Visit the famous Eagle Point and live a few moments on the edge at Grand Canyon Skywalk, which is a cantilever bridge with glass walkway. In the afternoon, head to the Hualapai Ranch to witness a good-old Wild West show which is also subjected to availability. After a full-day tour of the Grand Canyon, return to Las Vegas in the evening for overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Las Vegas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Packed American Breakfast &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note: Lunch on own as there are no Indian restaurants near Grand Canyon.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31631,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":35370,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3322,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2990,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330062\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31631,\"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\":\"330063\",\"Title\":\"Las Vegas - Los Angeles\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast at the hotel, have an early start &amp;amp; culminate your Las Vegas holidays by leaving on your road trip via bus to Los Angeles. Enjoy a four-hour drive through the beautiful Mojave Desert.&lt;br \\/&gt;\\r\\nUpon reaching Los Angeles, enjoy an orientation city tour of Los Angeles. Drive through the sparkling boulevards and palm-fringed avenues of Los Angeles to take in the sights and sounds of everything that is Southern California. Get your picture of the famous Hollywood sign from one of the vantage points.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Los Angeles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":6504,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330064\",\"Title\":\"Universal Studios\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, visit Universal Studios Hollywood. Experience the first-hand delight of being on a movie or a TV set where popular actors have worked. Inside the Universal Studios tour, enjoy Despicable Me Minion Mayhem and Transformers 3D rides, as well as the Wizarding World of Harry Potter attraction.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Los Angeles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note: Lunch on own as you&amp;rsquo;ll be inside Universal studios whole day.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":3198,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330065\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31839,\"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\":\"330066\",\"Title\":\"Los Angeles - San Francisco\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":11,\"Program\":\"&lt;p&gt;After breakfast at the hotel, have an early start and check out of your hotel to proceed to last stop of your tour &amp;ndash; San Francisco.&lt;br \\/&gt;\\r\\nUpon arrival at San Francisco to check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in San Francisco.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32994,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"330067\",\"Title\":\"San Francisco\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":12,\"Program\":\"&lt;p&gt;After breakfast at the hotel, hop on the 60-minute Golden Gate Bay cruise as you sail past notable attractions in the city. Sail past the iconic Pier 43 in the Fisherman&amp;rsquo;s Wharf and admire the views of the skyline of San Francisco. Take the views of North Beach neighbourhood and San Francisco Maritime National Park as the cruise passes along the Fort Mason and the Marina District.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, in City tour of San Francisco drive to famous landmarks in San Francisco including Golden Gate Bridge and Sausalito. Admire the views of this orange-colored suspension bridge from the North Vista Point. Visit the Sausalito Waterfront on this one-hour guided tour to explore the Bay Area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in San Francisco.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast, Lunch &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32994,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":4172,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330068\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;After breakfast at the hotel, check out of your hotel as the tour ends with amazing lifelong memories.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: American Breakfast&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\\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\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Post a review to our profile: &lt;a href=&quot;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&quot;&gt;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&lt;\\/a&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32994,\"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\":\"45721\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"254999.85\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":255000,\"priceDoubleOcc\":\"254999.85\",\"priceSingleOcc\":382499.25,\"priceExtraBed\":\"229499.55\",\"priceWithoutBed\":\"203999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":254999.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":203999.25,\"CEB\":229499.55,\"COSTDO\":254999.85,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":254999.85,\"COSTTO\":254999.85}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45721\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"242857.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-06-26\",\"To\":\"2023-06-26\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857},{\"From\":\"2023-09-03\",\"To\":\"2023-09-03\",\"Currency\":1,\"priceTripleOcc\":242857,\"priceDoubleOcc\":\"242857.00\",\"priceSingleOcc\":364285,\"priceExtraBed\":\"218571.00\",\"priceWithoutBed\":\"194285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":242857,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":194285,\"CEB\":218571,\"COSTDO\":242857,\"COSTSO\":\"121428.00\",\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":242857,\"COSTTO\":242857}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"\",\"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\":\"\",\"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;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;TCS @5% on total package cost&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\":\"\",\"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\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 90 Days\",\"TPRulesSysId\":\"13009\",\"Value\":\"50\"},{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"13010\",\"Value\":\"75\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"13011\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"330051\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[330051],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330052\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[330052],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330053\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[330053],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330054\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[330054],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330055\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[330055],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330056\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[330056],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330057\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[330057],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330058\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[330058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330059\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[330059],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330060\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[330060],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330061\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[330061],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330062\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[330062],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330063\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[330063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330064\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[330064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330065\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[330065],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330066\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[330066],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330067\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[330067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330068\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[330068],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','New York,Washington,Los Angeles,San Francisco,Niagara Falls,Las Vegas','New York,North America,USA,Washington,Niagara Falls,Las Vegas,Los Angeles,San Francisco,Newark-new Jersey,Philadelphia',NULL,'32159,29337,31839,32994,19383,31631',242857,255000,12,NULL,NULL,NULL,1,'',0,'2023-06-03 00:00:00','2023-09-03 00:00:00','2023-09-03 00:00:00',3,'USA','231','2023-06-03 00:00:00','2023-06-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ultimate-usa-2023',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (38,45884,1,59951,0,0,0,'Family,Heritage,Shopping and Nightlife,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":45884,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4913\\/package\\/images\\/wonders-of-europe_1672668878\",\"BookingValidUntill\":\"2023-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Paris:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;is the capital and most populous city of France. It is especially known for its museums and architectural landmarks. It is the capital is a major European city and a global centre for art, 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;Switzerland:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;is a mountainous Central European country, home to numerous lakes, villages and the high peaks of the Alps. Its cities contain medieval quarters, with landmarks like capital Bern&amp;rsquo;s Zytglogge clock tower and Lucerne&amp;rsquo;s wooden chapel bridge. The country is also known for its ski resorts and hiking trails. Banking and finance are key industries, and Swiss watches and chocolate are world renowned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Innsbruck:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;capital of Austria&amp;rsquo;s western state of Tyrol, is a city in the Alps that&amp;#39;s long been a destination for winter sports. Innsbruck is also known for its Imperial and modern architecture. The Nordkette funicular, with futuristic stations designed by architect Zaha Hadid, climbs up to 2,256m from the city centre for skiing in winter and hiking or mountaineering in warmer months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Padua:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;a city in Northern Italy&amp;rsquo;s Veneto region. It&amp;rsquo;s known for the frescoes by Giotto in its Scrovegni Chapel from 1303&amp;ndash;05 and the vast 13th-century Basilica of St. Anthony. The basilica, with its Byzantine-style domes and notable artworks, contains the namesake saint&amp;rsquo;s tomb. In Padua&amp;#39;s old town are arcaded streets and stylish cafes frequented by students of the University of Padua, established in 1222.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rome:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Italy&amp;rsquo;s capital, is a sprawling, cosmopolitan city with nearly 3,000 years of globally influential art, architecture and culture on display. Ancient ruins such as the Forum and the Colosseum evoke the power of the former Roman Empire.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4913,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Rome\",\"DestinationPlacesSysId\":32754,\"SourcePlaces\":\"Paris\",\"SourcePlaceSysId\":20822,\"AgencyName\":\"Best Tours and Forex PVT LTD\",\"Name\":\"Wonders of Europe 2023\",\"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,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family,Heritage,Shopping and Nightlife,Group Tours\",\"Validity\":{\"From\":\"2023-06-03\",\"To\":\"2023-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":35223,\"Title\":\"Arc de Triomphe\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.295027499999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35225,\"Title\":\"Champs-\\u00c9lys\\u00e9es\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8662294,\"Long\":2.3077957,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35224,\"Title\":\"Church of Magdalena Paris\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23652,\"Title\":\"Fragonard\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8650452,\"Long\":2.331480399999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23653,\"Title\":\"Grand Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86463819999999,\"Long\":2.3143377,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23654,\"Title\":\"Petit Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86604790000001,\"Long\":2.3145896,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37047,\"Title\":\"Chapel Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.0516489,\"Long\":8.307535099999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23691,\"Title\":\"Swarovski Kristallwelten\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36900,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":45.4378296,\"Long\":12.3351087,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8637,\"Title\":\"Bridge of Sighs\",\"Description\":\"The Bridge of Sighs is a bridge located in Venice, northern Italy. The enclosed bridge is made of white limestone, has windows with stone bars, passes over the Rio di Palazzo, and connects the New Prison to the interrogation rooms in the Doge&amp;#039;s Palace. It was designed by Antonio Contino and was built in 1600.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Bridge_of_Sighs_28574_1552740433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3258,\"Title\":\"Doge&#039;s Palace\",\"Description\":\"The Doge&amp;rsquo;s Palace or Palazzo Ducaleis is the most representative symbol of Venice&amp;#039;s culture. This Palace had three fundamental roles: as the Doge residence, the seat of government and as the palace of justice. \\r\\nInitially, when it was built in the IX century A.D. it was more like a castle than a palace with high defensive walls and  four sighting towers. Later, due to a series of fires and subsequent rebuilding, it became a splendid example of Venetian gothic architecture.\\r\\nOn the floor of the lodges one can also admire the Hall of the Casket, the Hall of the Militia from the Sea\\r\\nThe most important room of the Doge&amp;rsquo;s Palace is the Sala del Maggior Consiglio, one of the largest in Europe. The visit to the Ducal Palace offers art, history and relics from ancient Venice and also includes the Opera Museum and the Armory(Bridge of Sighs prison).\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4337035,\"Long\":12.3403894,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Doge&#039;s_Palace_28574_1517921241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3256,\"Title\":\"Saint Mark&#039;s Basilica\",\"Description\":\"St. Mark&amp;rsquo;s Basilica is the most popular monument in Venice and hosts millions of visitors each year. It is the centerpiece of the piazza, commissioned in 1071 by doge Domenico Contarini.\\r\\nThe architecture of this amazing church is a mixture of Byzantine, Roman and Venetian style. \\r\\nConstruction began in 828, when the body of St. Mark was sneaked back to Venice from Alexandria. The church has been reconstruct, expanded, and delicately restored over the centuries.\\r\\nTopped by soaring domes and with an interior of astonishing golden mosaics, nicknamed Chiesa d&amp;rsquo;Oro, or the &amp;quot;Church of Gold&amp;quot; because of its opulence Chiesa d&amp;rsquo;Oro, or the Golden Church.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4345606,\"Long\":12.3397124,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Saint_Mark&#039;s_Basilica_28574_1517919555.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3254,\"Title\":\"St. Mark&#039;s Square (Piazza San Marco)\",\"Description\":\"Piazza San Marco, better known to Anglophones as St. Mark&amp;#039;s Square is Venice&amp;#039;s only square with the title of &amp;quot;piazza&amp;quot; - the rest are called &amp;quot;campo&amp;quot;. San Marco called as &amp;quot;the drawing room of Europe&amp;quot; by the Napolean. It is the tourist magnet in Venice, more attractive and hasn&amp;#039;t been corrupted by the automobile.\\r\\nThis great square overlooking the water is a mixture of spaces, volumes and styles: the Procurator&amp;#039;s residence, the Doge&amp;#039;s Palace, the bell tower and the Sansoviniana Bookshop.\\r\\nBesides being filled with people and great specimens of architecture, Piazza San Marco is also full of pigeons. Tourist love to feed the birds and take photographs. \\r\\nAll the most important religious and civil ceremonies have always been held here and now it is considered the city&amp;#039;s main symbol and tourist attraction.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4341668,\"Long\":12.3384717,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/St._Mark&#039;s_Square_(Piazza_San__28574_1517919356.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37045,\"Title\":\"Battistero di San Giovanni Battista\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":43.4016314,\"Long\":10.8583277,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37046,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4559,\"Title\":\"Leaning Tower of Pisa\",\"Description\":\"The Leaning Tower of Pisa or simply the Tower of Pisa is the campanile, or freestanding bell tower, of the cathedral of the Italian city of Pisa, known worldwide for its unintended tilt.\",\"CurrencyType\":0,\"CityId\":21478,\"CityName\":\"Pisa\",\"Lat\":43.722952,\"Long\":10.3944083,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21478\\/sightseeing\\/48_1522928246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36904,\"Title\":\"Castel Sant\'Angelo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.90306319999999,\"Long\":12.466276,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36903,\"Title\":\"Circus Maximus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.88613340000001,\"Long\":12.4851335,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3233,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"Saint Peter&amp;#039;s Basilica, the largest church in the world, is the center of Christianity. The basilica&amp;#039;s dome is one of the world&amp;#039;s largest measuring 42 meters in diameter and reaching 132.5 meters high. The church was reconsecrated in 1626 by pope Urban VIII, exactly 1300 years after the reconsecration of the first chruch by the greatest Italian architects of the era. The location is highly symbolic: this was the site where Saint Peter, the chief apostle, died a martyr and where he was buried in 64 AD. The building itself is truly impressive. This site attracting pilgrims and tourists from all over the world. Its lavish interior contains many spectacular works of art, including three of Italy&amp;#039;s most celebrated masterpieces: Michelangelo&amp;rsquo;s Piet&amp;agrave;, his soaring dome, and Bernini&amp;rsquo;s 29m-high baldachin over the papal altar.\",\"CurrencyType\":0,\"CityId\":28492,\"CityName\":\"Vatican City\",\"Lat\":41.9021667,\"Long\":12.4539367,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28492\\/sightseeing\\/St._Peter&#039;s_Basilica_28492_1517924259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":35223,\"Title\":\"Arc de Triomphe\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.295027499999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35225,\"Title\":\"Champs-\\u00c9lys\\u00e9es\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8662294,\"Long\":2.3077957,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35224,\"Title\":\"Church of Magdalena Paris\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23652,\"Title\":\"Fragonard\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8650452,\"Long\":2.331480399999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23653,\"Title\":\"Grand Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86463819999999,\"Long\":2.3143377,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23654,\"Title\":\"Petit Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86604790000001,\"Long\":2.3145896,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37047,\"Title\":\"Chapel Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.0516489,\"Long\":8.307535099999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23691,\"Title\":\"Swarovski Kristallwelten\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36900,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":45.4378296,\"Long\":12.3351087,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8637,\"Title\":\"Bridge of Sighs\",\"Description\":\"The Bridge of Sighs is a bridge located in Venice, northern Italy. The enclosed bridge is made of white limestone, has windows with stone bars, passes over the Rio di Palazzo, and connects the New Prison to the interrogation rooms in the Doge&amp;#039;s Palace. It was designed by Antonio Contino and was built in 1600.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Bridge_of_Sighs_28574_1552740433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3258,\"Title\":\"Doge&#039;s Palace\",\"Description\":\"The Doge&amp;rsquo;s Palace or Palazzo Ducaleis is the most representative symbol of Venice&amp;#039;s culture. This Palace had three fundamental roles: as the Doge residence, the seat of government and as the palace of justice. \\r\\nInitially, when it was built in the IX century A.D. it was more like a castle than a palace with high defensive walls and  four sighting towers. Later, due to a series of fires and subsequent rebuilding, it became a splendid example of Venetian gothic architecture.\\r\\nOn the floor of the lodges one can also admire the Hall of the Casket, the Hall of the Militia from the Sea\\r\\nThe most important room of the Doge&amp;rsquo;s Palace is the Sala del Maggior Consiglio, one of the largest in Europe. The visit to the Ducal Palace offers art, history and relics from ancient Venice and also includes the Opera Museum and the Armory(Bridge of Sighs prison).\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4337035,\"Long\":12.3403894,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Doge&#039;s_Palace_28574_1517921241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3256,\"Title\":\"Saint Mark&#039;s Basilica\",\"Description\":\"St. Mark&amp;rsquo;s Basilica is the most popular monument in Venice and hosts millions of visitors each year. It is the centerpiece of the piazza, commissioned in 1071 by doge Domenico Contarini.\\r\\nThe architecture of this amazing church is a mixture of Byzantine, Roman and Venetian style. \\r\\nConstruction began in 828, when the body of St. Mark was sneaked back to Venice from Alexandria. The church has been reconstruct, expanded, and delicately restored over the centuries.\\r\\nTopped by soaring domes and with an interior of astonishing golden mosaics, nicknamed Chiesa d&amp;rsquo;Oro, or the &amp;quot;Church of Gold&amp;quot; because of its opulence Chiesa d&amp;rsquo;Oro, or the Golden Church.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4345606,\"Long\":12.3397124,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Saint_Mark&#039;s_Basilica_28574_1517919555.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3254,\"Title\":\"St. Mark&#039;s Square (Piazza San Marco)\",\"Description\":\"Piazza San Marco, better known to Anglophones as St. Mark&amp;#039;s Square is Venice&amp;#039;s only square with the title of &amp;quot;piazza&amp;quot; - the rest are called &amp;quot;campo&amp;quot;. San Marco called as &amp;quot;the drawing room of Europe&amp;quot; by the Napolean. It is the tourist magnet in Venice, more attractive and hasn&amp;#039;t been corrupted by the automobile.\\r\\nThis great square overlooking the water is a mixture of spaces, volumes and styles: the Procurator&amp;#039;s residence, the Doge&amp;#039;s Palace, the bell tower and the Sansoviniana Bookshop.\\r\\nBesides being filled with people and great specimens of architecture, Piazza San Marco is also full of pigeons. Tourist love to feed the birds and take photographs. \\r\\nAll the most important religious and civil ceremonies have always been held here and now it is considered the city&amp;#039;s main symbol and tourist attraction.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4341668,\"Long\":12.3384717,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/St._Mark&#039;s_Square_(Piazza_San__28574_1517919356.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37045,\"Title\":\"Battistero di San Giovanni Battista\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":43.4016314,\"Long\":10.8583277,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37046,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4559,\"Title\":\"Leaning Tower of Pisa\",\"Description\":\"The Leaning Tower of Pisa or simply the Tower of Pisa is the campanile, or freestanding bell tower, of the cathedral of the Italian city of Pisa, known worldwide for its unintended tilt.\",\"CurrencyType\":0,\"CityId\":21478,\"CityName\":\"Pisa\",\"Lat\":43.722952,\"Long\":10.3944083,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21478\\/sightseeing\\/48_1522928246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36904,\"Title\":\"Castel Sant\'Angelo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.90306319999999,\"Long\":12.466276,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36903,\"Title\":\"Circus Maximus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.88613340000001,\"Long\":12.4851335,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3233,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"Saint Peter&amp;#039;s Basilica, the largest church in the world, is the center of Christianity. The basilica&amp;#039;s dome is one of the world&amp;#039;s largest measuring 42 meters in diameter and reaching 132.5 meters high. The church was reconsecrated in 1626 by pope Urban VIII, exactly 1300 years after the reconsecration of the first chruch by the greatest Italian architects of the era. The location is highly symbolic: this was the site where Saint Peter, the chief apostle, died a martyr and where he was buried in 64 AD. The building itself is truly impressive. This site attracting pilgrims and tourists from all over the world. Its lavish interior contains many spectacular works of art, including three of Italy&amp;#039;s most celebrated masterpieces: Michelangelo&amp;rsquo;s Piet&amp;agrave;, his soaring dome, and Bernini&amp;rsquo;s 29m-high baldachin over the papal altar.\",\"CurrencyType\":0,\"CityId\":28492,\"CityName\":\"Vatican City\",\"Lat\":41.9021667,\"Long\":12.4539367,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28492\\/sightseeing\\/St._Peter&#039;s_Basilica_28492_1517924259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":35223,\"Title\":\"Arc de Triomphe\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.295027499999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35225,\"Title\":\"Champs-\\u00c9lys\\u00e9es\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8662294,\"Long\":2.3077957,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35224,\"Title\":\"Church of Magdalena Paris\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23652,\"Title\":\"Fragonard\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8650452,\"Long\":2.331480399999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23653,\"Title\":\"Grand Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86463819999999,\"Long\":2.3143377,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23654,\"Title\":\"Petit Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86604790000001,\"Long\":2.3145896,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37047,\"Title\":\"Chapel Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.0516489,\"Long\":8.307535099999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23691,\"Title\":\"Swarovski Kristallwelten\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36900,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":45.4378296,\"Long\":12.3351087,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8637,\"Title\":\"Bridge of Sighs\",\"Description\":\"The Bridge of Sighs is a bridge located in Venice, northern Italy. The enclosed bridge is made of white limestone, has windows with stone bars, passes over the Rio di Palazzo, and connects the New Prison to the interrogation rooms in the Doge&amp;#039;s Palace. It was designed by Antonio Contino and was built in 1600.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Bridge_of_Sighs_28574_1552740433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3258,\"Title\":\"Doge&#039;s Palace\",\"Description\":\"The Doge&amp;rsquo;s Palace or Palazzo Ducaleis is the most representative symbol of Venice&amp;#039;s culture. This Palace had three fundamental roles: as the Doge residence, the seat of government and as the palace of justice. \\r\\nInitially, when it was built in the IX century A.D. it was more like a castle than a palace with high defensive walls and  four sighting towers. Later, due to a series of fires and subsequent rebuilding, it became a splendid example of Venetian gothic architecture.\\r\\nOn the floor of the lodges one can also admire the Hall of the Casket, the Hall of the Militia from the Sea\\r\\nThe most important room of the Doge&amp;rsquo;s Palace is the Sala del Maggior Consiglio, one of the largest in Europe. The visit to the Ducal Palace offers art, history and relics from ancient Venice and also includes the Opera Museum and the Armory(Bridge of Sighs prison).\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4337035,\"Long\":12.3403894,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Doge&#039;s_Palace_28574_1517921241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3256,\"Title\":\"Saint Mark&#039;s Basilica\",\"Description\":\"St. Mark&amp;rsquo;s Basilica is the most popular monument in Venice and hosts millions of visitors each year. It is the centerpiece of the piazza, commissioned in 1071 by doge Domenico Contarini.\\r\\nThe architecture of this amazing church is a mixture of Byzantine, Roman and Venetian style. \\r\\nConstruction began in 828, when the body of St. Mark was sneaked back to Venice from Alexandria. The church has been reconstruct, expanded, and delicately restored over the centuries.\\r\\nTopped by soaring domes and with an interior of astonishing golden mosaics, nicknamed Chiesa d&amp;rsquo;Oro, or the &amp;quot;Church of Gold&amp;quot; because of its opulence Chiesa d&amp;rsquo;Oro, or the Golden Church.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4345606,\"Long\":12.3397124,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Saint_Mark&#039;s_Basilica_28574_1517919555.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3254,\"Title\":\"St. Mark&#039;s Square (Piazza San Marco)\",\"Description\":\"Piazza San Marco, better known to Anglophones as St. Mark&amp;#039;s Square is Venice&amp;#039;s only square with the title of &amp;quot;piazza&amp;quot; - the rest are called &amp;quot;campo&amp;quot;. San Marco called as &amp;quot;the drawing room of Europe&amp;quot; by the Napolean. It is the tourist magnet in Venice, more attractive and hasn&amp;#039;t been corrupted by the automobile.\\r\\nThis great square overlooking the water is a mixture of spaces, volumes and styles: the Procurator&amp;#039;s residence, the Doge&amp;#039;s Palace, the bell tower and the Sansoviniana Bookshop.\\r\\nBesides being filled with people and great specimens of architecture, Piazza San Marco is also full of pigeons. Tourist love to feed the birds and take photographs. \\r\\nAll the most important religious and civil ceremonies have always been held here and now it is considered the city&amp;#039;s main symbol and tourist attraction.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4341668,\"Long\":12.3384717,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/St._Mark&#039;s_Square_(Piazza_San__28574_1517919356.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37045,\"Title\":\"Battistero di San Giovanni Battista\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":43.4016314,\"Long\":10.8583277,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37046,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4559,\"Title\":\"Leaning Tower of Pisa\",\"Description\":\"The Leaning Tower of Pisa or simply the Tower of Pisa is the campanile, or freestanding bell tower, of the cathedral of the Italian city of Pisa, known worldwide for its unintended tilt.\",\"CurrencyType\":0,\"CityId\":21478,\"CityName\":\"Pisa\",\"Lat\":43.722952,\"Long\":10.3944083,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21478\\/sightseeing\\/48_1522928246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36904,\"Title\":\"Castel Sant\'Angelo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.90306319999999,\"Long\":12.466276,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36903,\"Title\":\"Circus Maximus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.88613340000001,\"Long\":12.4851335,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3233,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"Saint Peter&amp;#039;s Basilica, the largest church in the world, is the center of Christianity. The basilica&amp;#039;s dome is one of the world&amp;#039;s largest measuring 42 meters in diameter and reaching 132.5 meters high. The church was reconsecrated in 1626 by pope Urban VIII, exactly 1300 years after the reconsecration of the first chruch by the greatest Italian architects of the era. The location is highly symbolic: this was the site where Saint Peter, the chief apostle, died a martyr and where he was buried in 64 AD. The building itself is truly impressive. This site attracting pilgrims and tourists from all over the world. Its lavish interior contains many spectacular works of art, including three of Italy&amp;#039;s most celebrated masterpieces: Michelangelo&amp;rsquo;s Piet&amp;agrave;, his soaring dome, and Bernini&amp;rsquo;s 29m-high baldachin over the papal altar.\",\"CurrencyType\":0,\"CityId\":28492,\"CityName\":\"Vatican City\",\"Lat\":41.9021667,\"Long\":12.4539367,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28492\\/sightseeing\\/St._Peter&#039;s_Basilica_28492_1517924259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":35223,\"Title\":\"Arc de Triomphe\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.295027499999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35225,\"Title\":\"Champs-\\u00c9lys\\u00e9es\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8662294,\"Long\":2.3077957,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35224,\"Title\":\"Church of Magdalena Paris\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23652,\"Title\":\"Fragonard\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8650452,\"Long\":2.331480399999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23653,\"Title\":\"Grand Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86463819999999,\"Long\":2.3143377,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23654,\"Title\":\"Petit Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86604790000001,\"Long\":2.3145896,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37047,\"Title\":\"Chapel Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.0516489,\"Long\":8.307535099999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23691,\"Title\":\"Swarovski Kristallwelten\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36900,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":45.4378296,\"Long\":12.3351087,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8637,\"Title\":\"Bridge of Sighs\",\"Description\":\"The Bridge of Sighs is a bridge located in Venice, northern Italy. The enclosed bridge is made of white limestone, has windows with stone bars, passes over the Rio di Palazzo, and connects the New Prison to the interrogation rooms in the Doge&amp;#039;s Palace. It was designed by Antonio Contino and was built in 1600.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Bridge_of_Sighs_28574_1552740433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3258,\"Title\":\"Doge&#039;s Palace\",\"Description\":\"The Doge&amp;rsquo;s Palace or Palazzo Ducaleis is the most representative symbol of Venice&amp;#039;s culture. This Palace had three fundamental roles: as the Doge residence, the seat of government and as the palace of justice. \\r\\nInitially, when it was built in the IX century A.D. it was more like a castle than a palace with high defensive walls and  four sighting towers. Later, due to a series of fires and subsequent rebuilding, it became a splendid example of Venetian gothic architecture.\\r\\nOn the floor of the lodges one can also admire the Hall of the Casket, the Hall of the Militia from the Sea\\r\\nThe most important room of the Doge&amp;rsquo;s Palace is the Sala del Maggior Consiglio, one of the largest in Europe. The visit to the Ducal Palace offers art, history and relics from ancient Venice and also includes the Opera Museum and the Armory(Bridge of Sighs prison).\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4337035,\"Long\":12.3403894,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Doge&#039;s_Palace_28574_1517921241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3256,\"Title\":\"Saint Mark&#039;s Basilica\",\"Description\":\"St. Mark&amp;rsquo;s Basilica is the most popular monument in Venice and hosts millions of visitors each year. It is the centerpiece of the piazza, commissioned in 1071 by doge Domenico Contarini.\\r\\nThe architecture of this amazing church is a mixture of Byzantine, Roman and Venetian style. \\r\\nConstruction began in 828, when the body of St. Mark was sneaked back to Venice from Alexandria. The church has been reconstruct, expanded, and delicately restored over the centuries.\\r\\nTopped by soaring domes and with an interior of astonishing golden mosaics, nicknamed Chiesa d&amp;rsquo;Oro, or the &amp;quot;Church of Gold&amp;quot; because of its opulence Chiesa d&amp;rsquo;Oro, or the Golden Church.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4345606,\"Long\":12.3397124,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Saint_Mark&#039;s_Basilica_28574_1517919555.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3254,\"Title\":\"St. Mark&#039;s Square (Piazza San Marco)\",\"Description\":\"Piazza San Marco, better known to Anglophones as St. Mark&amp;#039;s Square is Venice&amp;#039;s only square with the title of &amp;quot;piazza&amp;quot; - the rest are called &amp;quot;campo&amp;quot;. San Marco called as &amp;quot;the drawing room of Europe&amp;quot; by the Napolean. It is the tourist magnet in Venice, more attractive and hasn&amp;#039;t been corrupted by the automobile.\\r\\nThis great square overlooking the water is a mixture of spaces, volumes and styles: the Procurator&amp;#039;s residence, the Doge&amp;#039;s Palace, the bell tower and the Sansoviniana Bookshop.\\r\\nBesides being filled with people and great specimens of architecture, Piazza San Marco is also full of pigeons. Tourist love to feed the birds and take photographs. \\r\\nAll the most important religious and civil ceremonies have always been held here and now it is considered the city&amp;#039;s main symbol and tourist attraction.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4341668,\"Long\":12.3384717,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/St._Mark&#039;s_Square_(Piazza_San__28574_1517919356.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37045,\"Title\":\"Battistero di San Giovanni Battista\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":43.4016314,\"Long\":10.8583277,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37046,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4559,\"Title\":\"Leaning Tower of Pisa\",\"Description\":\"The Leaning Tower of Pisa or simply the Tower of Pisa is the campanile, or freestanding bell tower, of the cathedral of the Italian city of Pisa, known worldwide for its unintended tilt.\",\"CurrencyType\":0,\"CityId\":21478,\"CityName\":\"Pisa\",\"Lat\":43.722952,\"Long\":10.3944083,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21478\\/sightseeing\\/48_1522928246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36904,\"Title\":\"Castel Sant\'Angelo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.90306319999999,\"Long\":12.466276,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36903,\"Title\":\"Circus Maximus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.88613340000001,\"Long\":12.4851335,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3233,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"Saint Peter&amp;#039;s Basilica, the largest church in the world, is the center of Christianity. The basilica&amp;#039;s dome is one of the world&amp;#039;s largest measuring 42 meters in diameter and reaching 132.5 meters high. The church was reconsecrated in 1626 by pope Urban VIII, exactly 1300 years after the reconsecration of the first chruch by the greatest Italian architects of the era. The location is highly symbolic: this was the site where Saint Peter, the chief apostle, died a martyr and where he was buried in 64 AD. The building itself is truly impressive. This site attracting pilgrims and tourists from all over the world. Its lavish interior contains many spectacular works of art, including three of Italy&amp;#039;s most celebrated masterpieces: Michelangelo&amp;rsquo;s Piet&amp;agrave;, his soaring dome, and Bernini&amp;rsquo;s 29m-high baldachin over the papal altar.\",\"CurrencyType\":0,\"CityId\":28492,\"CityName\":\"Vatican City\",\"Lat\":41.9021667,\"Long\":12.4539367,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28492\\/sightseeing\\/St._Peter&#039;s_Basilica_28492_1517924259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":35223,\"Title\":\"Arc de Triomphe\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.295027499999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35225,\"Title\":\"Champs-\\u00c9lys\\u00e9es\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8662294,\"Long\":2.3077957,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":35224,\"Title\":\"Church of Magdalena Paris\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23652,\"Title\":\"Fragonard\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8650452,\"Long\":2.331480399999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23653,\"Title\":\"Grand Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86463819999999,\"Long\":2.3143377,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23654,\"Title\":\"Petit Palais\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.86604790000001,\"Long\":2.3145896,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37047,\"Title\":\"Chapel Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.0516489,\"Long\":8.307535099999999,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23691,\"Title\":\"Swarovski Kristallwelten\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36900,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":45.4378296,\"Long\":12.3351087,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8637,\"Title\":\"Bridge of Sighs\",\"Description\":\"The Bridge of Sighs is a bridge located in Venice, northern Italy. The enclosed bridge is made of white limestone, has windows with stone bars, passes over the Rio di Palazzo, and connects the New Prison to the interrogation rooms in the Doge&amp;#039;s Palace. It was designed by Antonio Contino and was built in 1600.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Bridge_of_Sighs_28574_1552740433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3258,\"Title\":\"Doge&#039;s Palace\",\"Description\":\"The Doge&amp;rsquo;s Palace or Palazzo Ducaleis is the most representative symbol of Venice&amp;#039;s culture. This Palace had three fundamental roles: as the Doge residence, the seat of government and as the palace of justice. \\r\\nInitially, when it was built in the IX century A.D. it was more like a castle than a palace with high defensive walls and  four sighting towers. Later, due to a series of fires and subsequent rebuilding, it became a splendid example of Venetian gothic architecture.\\r\\nOn the floor of the lodges one can also admire the Hall of the Casket, the Hall of the Militia from the Sea\\r\\nThe most important room of the Doge&amp;rsquo;s Palace is the Sala del Maggior Consiglio, one of the largest in Europe. The visit to the Ducal Palace offers art, history and relics from ancient Venice and also includes the Opera Museum and the Armory(Bridge of Sighs prison).\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4337035,\"Long\":12.3403894,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Doge&#039;s_Palace_28574_1517921241.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3256,\"Title\":\"Saint Mark&#039;s Basilica\",\"Description\":\"St. Mark&amp;rsquo;s Basilica is the most popular monument in Venice and hosts millions of visitors each year. It is the centerpiece of the piazza, commissioned in 1071 by doge Domenico Contarini.\\r\\nThe architecture of this amazing church is a mixture of Byzantine, Roman and Venetian style. \\r\\nConstruction began in 828, when the body of St. Mark was sneaked back to Venice from Alexandria. The church has been reconstruct, expanded, and delicately restored over the centuries.\\r\\nTopped by soaring domes and with an interior of astonishing golden mosaics, nicknamed Chiesa d&amp;rsquo;Oro, or the &amp;quot;Church of Gold&amp;quot; because of its opulence Chiesa d&amp;rsquo;Oro, or the Golden Church.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4345606,\"Long\":12.3397124,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/Saint_Mark&#039;s_Basilica_28574_1517919555.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3254,\"Title\":\"St. Mark&#039;s Square (Piazza San Marco)\",\"Description\":\"Piazza San Marco, better known to Anglophones as St. Mark&amp;#039;s Square is Venice&amp;#039;s only square with the title of &amp;quot;piazza&amp;quot; - the rest are called &amp;quot;campo&amp;quot;. San Marco called as &amp;quot;the drawing room of Europe&amp;quot; by the Napolean. It is the tourist magnet in Venice, more attractive and hasn&amp;#039;t been corrupted by the automobile.\\r\\nThis great square overlooking the water is a mixture of spaces, volumes and styles: the Procurator&amp;#039;s residence, the Doge&amp;#039;s Palace, the bell tower and the Sansoviniana Bookshop.\\r\\nBesides being filled with people and great specimens of architecture, Piazza San Marco is also full of pigeons. Tourist love to feed the birds and take photographs. \\r\\nAll the most important religious and civil ceremonies have always been held here and now it is considered the city&amp;#039;s main symbol and tourist attraction.\",\"CurrencyType\":0,\"CityId\":28574,\"CityName\":\"Venice\",\"Lat\":45.4341668,\"Long\":12.3384717,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28574\\/sightseeing\\/St._Mark&#039;s_Square_(Piazza_San__28574_1517919356.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37045,\"Title\":\"Battistero di San Giovanni Battista\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":43.4016314,\"Long\":10.8583277,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":37046,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":4559,\"Title\":\"Leaning Tower of Pisa\",\"Description\":\"The Leaning Tower of Pisa or simply the Tower of Pisa is the campanile, or freestanding bell tower, of the cathedral of the Italian city of Pisa, known worldwide for its unintended tilt.\",\"CurrencyType\":0,\"CityId\":21478,\"CityName\":\"Pisa\",\"Lat\":43.722952,\"Long\":10.3944083,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21478\\/sightseeing\\/48_1522928246.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36904,\"Title\":\"Castel Sant\'Angelo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.90306319999999,\"Long\":12.466276,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":36903,\"Title\":\"Circus Maximus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.88613340000001,\"Long\":12.4851335,\"Image\":\"0\",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"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\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3233,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"Saint Peter&amp;#039;s Basilica, the largest church in the world, is the center of Christianity. The basilica&amp;#039;s dome is one of the world&amp;#039;s largest measuring 42 meters in diameter and reaching 132.5 meters high. The church was reconsecrated in 1626 by pope Urban VIII, exactly 1300 years after the reconsecration of the first chruch by the greatest Italian architects of the era. The location is highly symbolic: this was the site where Saint Peter, the chief apostle, died a martyr and where he was buried in 64 AD. The building itself is truly impressive. This site attracting pilgrims and tourists from all over the world. Its lavish interior contains many spectacular works of art, including three of Italy&amp;#039;s most celebrated masterpieces: Michelangelo&amp;rsquo;s Piet&amp;agrave;, his soaring dome, and Bernini&amp;rsquo;s 29m-high baldachin over the papal altar.\",\"CurrencyType\":0,\"CityId\":28492,\"CityName\":\"Vatican City\",\"Lat\":41.9021667,\"Long\":12.4539367,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28492\\/sightseeing\\/St._Peter&#039;s_Basilica_28492_1517924259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331168\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Paris, capital of FRANCE!&lt;br \\/&gt;\\r\\nUpon arrival, enjoy hot Indian dinner at an Indian restaurant and afterwards check-in at your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Lunch, Dinner [ AS PER SCHEDULED FLIGHT ]&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 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\":\"331169\",\"Title\":\"Paris &ndash; City tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast, leave your hotel to visit the greatest attraction of Paris &amp;ndash; the Eiffel Tower (2nd level).Later visit Fragonard, a French perfume factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Thereafter, proceed for an orientation city tour of Paris, which will take you through &amp;ndash; Eiffel Tower, Arc of Triumph, Champs Elysees, Concorde Square, the Invalides, Grand Palais and Petit Palais, National Assembly, Church of Magdalena, Opera of Paris and the Louvre Museum. Today you also get to enjoy serene Seine River cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":35223,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35225,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35224,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23652,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23653,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17983,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3132,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9758,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23654,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331170\",\"Title\":\"Paris (Disney Land)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, Visit the famous Euro-Disney. A day full of action for the children as well as for adults of all ages. One day pass [Any one park] valid on all rides within Disneyland will be given to all passengers. Enjoy rides at Adventure World, Discovery Land, Frontier Land, Big Thunder Mountain, Cars Quatre Roues Rallye, Mad Hatter&amp;rsquo;s Tea Cups, USA Main Street &amp;amp; Fantasy Land. Late evening transfer to the Indian Restaurant for dinner.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":2226,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331171\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"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\":\"331172\",\"Title\":\"Paris - SWITZERLAND\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out and proceed to SWITZERLAND - home to numerous lakes, villages and the high peaks of the Alps.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in SWITZERLAND.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":\"331173\",\"Title\":\"SWITZERLAND &ndash; [OPTIONAL: Mt. Jungfrau with Interlaken]\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, day free for leisure. OR OPTIONAL ACTIVITY:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a trip to magnificent Mt. Jungfrau; enjoy a beautiful scenic drive ascend to Jungfrau in the Cog wheel train (the only rail to reach the height of 11000 feet). Enjoy fun rides in snow, Ice museum, shopping and 360-degree view of the Snow-Capped Alpine Mountains. Later enjoy free time at Interlaken, a town between the lakes and famous Bollywood shooting destination.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in SWITZERLAND.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":\"331174\",\"Title\":\"SWITZERLAND &ndash; Mt. Titlis\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, proceed to Engelberg, the base of Central Switzerland&amp;rsquo;s highest mountain. Enjoy cable car rides on the way up to Mt Titlis. Enjoy the different rides in the snow and also take the Cliff.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, enjoy the City tour of Lucerne, visiting the Lion Monument, the Chapel bridge over lake Lucerne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in SWITZERLAND.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":37047,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4400,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331175\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30548,\"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\":\"331176\",\"Title\":\"SWITZERLAND - Innsbruck\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out and proceed to Schaffhausen to view the Rhine River falls &amp;ndash; biggest fall in the continent of Europe (Boat Ride on your Own).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Further proceed to Swarovski Crystal garden at Wattens and engage yourselves into shopping for Crystals best known in the World. [Swarovski museum entry to be paid on your own.]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later enjoy orientation city tour of Innsbruck.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Innsbruck.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":23691,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331177\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"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\":\"331178\",\"Title\":\"Innsbruck - Padua\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;Today, proceed for an orientation city tour of Venice &amp;ndash; the city built on more than 100 small islands in a lagoon in the Adriatic Sea including St. Mark&amp;rsquo;s Basilica, Piazza San Marco, Doge&amp;rsquo;s Palace, Murano Glass Factory &amp;amp; Bridge of Sighs. Later, we proceed for a Gondola Ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Padua.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":36900,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8637,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3258,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3256,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3254,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331179\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32390,\"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\":\"331180\",\"Title\":\"Padua - Rome\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Today, after breakfast, we shall proceed to one of the seven wonders of the medieval world &amp;ndash; The Leaning Tower of Pisa, along with its neighbouring monuments &amp;ndash; Il Duomo and the Baptistery, sharing space on Piazza Dei Miracoli that translates to The Field of Miracles.&lt;br \\/&gt;\\r\\n[Note: The Leaning tower of Pisa is 8 storey tall structure with no elevator and unsafe stairs. Hence, we do not visit from inside.]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Rome.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":37045,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":37046,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4559,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331181\",\"Title\":\"Rome\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;Today, after breakfast, we shall proceed to discover the secrets of Roman civilization that gave birth to the entire continent of Europe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drive past sights such as Palatine Hill, Circus Maximus, Castle Sant&amp;rsquo;Angelo, Piazza Venezia, Roman Forum in the city tour which is incomplete without PHOTO STOPS at the Colosseum and Trevi Fountain.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the seat of the Pope, St. Peter&amp;rsquo;s Basilica in the Vatican, the epicentre of Christianity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Rome.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MEALS: Continental Breakfast, Lunch &amp;amp; Dinner&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 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\":36904,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":36903,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3232,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6213,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7727,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3245,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3233,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331182\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":11,\"Program\":\"&lt;p&gt;After breakfast, check out from hotel and proceed to the airport for your return flight.&lt;br \\/&gt;\\r\\nMEALS: Breakfast,Lunch [ AS PER SCHEDULED FLIGHT ]&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\\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\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Post a review to our profile: &lt;a href=&quot;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&quot;&gt;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&lt;\\/a&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"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\":[],\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"\",\"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\":\"\",\"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;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;TCS @5% on total package cost&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\":\"\",\"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\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 90 Days\",\"TPRulesSysId\":\"12910\",\"Value\":\"50\"},{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"12911\",\"Value\":\"75\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"12912\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"331168\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331168],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331169\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331169],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331170\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331170],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331171\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331171],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331172\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331172],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331173\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331173],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331174\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[331174],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331175\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[331175],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331176\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[331176],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331177\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[331177],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331178\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[331178],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331179\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[331179],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331180\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[331180],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331181\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[331181],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331182\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[331182],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"296\":{\"CityName\":\"Ahmedabad\",\"FlightInv\":{\"1\":{\"428\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"429\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20230528\":{\"FromDate\":\"2023-05-28\",\"FromDateDMY\":\"28\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230506\":{\"FromDate\":\"2023-05-06\",\"FromDateDMY\":\"06\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"18676\":{\"CityName\":\"Mumbai\",\"FlightInv\":{\"1\":{\"430\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"431\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20230528\":{\"FromDate\":\"2023-05-28\",\"FromDateDMY\":\"28\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230506\":{\"FromDate\":\"2023-05-06\",\"FromDateDMY\":\"06\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"20822\":{\"CityName\":\"Paris\",\"FlightInv\":{\"1\":{\"432\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"433\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20230528\":{\"FromDate\":\"2023-05-28\",\"FromDateDMY\":\"28\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230506\":{\"FromDate\":\"2023-05-06\",\"FromDateDMY\":\"06\\/05\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Innsbruck,Paris,Padova,Rome,Zurich','Paris,Western Europe,France,Zurich,Europe,Switzerland,Innsbruck,Eastern Europe,Austria,Padova,Italy,Rome,Interlaken,Lucerne,Pisa,Schaffhausen,Vatican City,Venice',NULL,'12747,20822,32390,32754,30548',0,0,10,NULL,NULL,NULL,1,'',0,'2023-06-03 00:00:00','2023-06-30 00:00:00','2023-06-30 00:00:00',3,'Austria,France,Italy,Switzerland','14,76,107,210','2023-06-03 00:00:00','2023-06-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'wonders-of-europe-2023',NULL,NULL,NULL,0),(39,56204,1,59951,0,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":56204,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-07-13\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":59951,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":59951,\"DestinationPlaces\":\"Indore\",\"DestinationPlacesSysId\":12706,\"SourcePlaces\":\"Indore\",\"SourcePlaceSysId\":12706,\"AgencyName\":\"Kalpnil tourism and agro solutions\",\"Name\":\"Religious MP\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"17947\",\"SupplierName\":\"KTAS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Cab,Sightseeing\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2023-06-26\",\"To\":\"2023-07-13\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12706,\"Title\":\"Indore\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1023,\"Title\":\"Mahakaleshwar Jyotirlinga\",\"Description\":\"Mahakaleshwar Jyotirlinga is a Hindu temple dedicated to Lord Shiva and one of the twelve Jyotirlingams, shrines which are said to be the most sacred abodes of Lord Shiva. It is located in the ancient city of Ujjain in the state of Madhya Pradesh, India. The temple is situated on the side of the Rudra Sagar lake.\",\"CurrencyType\":0,\"CityId\":28083,\"CityName\":\"Ujjain\",\"Lat\":23.178615,\"Long\":75.7691262,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6251\\/thumb\\/Mahakaleshwar Jyotirlinga_510.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null},{\"RefSSId\":951,\"Title\":\"Lal Bagh Palace\",\"Description\":\"Lal Bagh Palace is one of the most spectacular buildings in Indore. It stands on the outskirts of the town, towards the southwest. It is a three storey building on the bank of the River Khan. The palace was built by Maharaja Shivaji Rao Holkar during 1886-1921. Situated amidst dry and dusty gardens, it is architecturally quite similar to the New Palace. Lal Bagh Palace once hosted many royal receptions and even today, reflects the life style and taste of the Holkar Rulers.\",\"CurrencyType\":0,\"CityId\":12706,\"CityName\":\"Indore\",\"Lat\":22.9734229,\"Long\":78.6568942,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6255\\/thumb\\/Lal Bagh Palace_235.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null},{\"RefSSId\":16695,\"Title\":\"Sandipani Ashram\",\"Description\":\"was the Gurukul of Maharishi Sandipani, where Lord Krishna acquired his education.\\r\\nThe fact that ancient Ujjain apart from its political and religious importance, enjoyed the reputation of being a great seat of learning as early as the Mahabharata period is borne out by the fact that, Lord Krishna and Sudama received regular instruction in the ashram of Guru Sandipani. The area near the ashram is known as Ankapata, popularly believed to have been the place used by Lord Krishna for washing his writing tablet. The numerals 1 to 100 found on a stone are believed to have been engraved by Guru Sandipani.\",\"CurrencyType\":0,\"CityId\":28083,\"CityName\":\"Ujjain\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28083\\/sightseeing\\/Sandipani_Ashram_28083_1592299099.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null},{\"RefSSId\":1828,\"Title\":\"Ujjain City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28083,\"CityName\":\"Ujjain\",\"Lat\":23.1793013,\"Long\":75.7849097,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5725\\/thumb\\/Ujjain City Tour_189.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null},{\"RefSSId\":17551,\"Title\":\"Omkareshwara Jyotirlinga\",\"Description\":\"&lt;p&gt;Omkareshwar is a Hindu temple dedicated to Lord Shiva. It is one of the 12 Jyotirlinga shrines of Shiva. It is on an island called Mandhata or Shivapuri in the Narmada river the shape of the island is said to be like the Hindu om symbol. There are two temples here, one to Omkareshwar (whose name means &quot;Lord of Omkara&quot;) and the other is Amareshwar (whose name means &quot;Immortal lord&quot;). &lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20109,\"CityName\":\"Omkareshwar\",\"Lat\":22.2455766,\"Long\":76.1509657,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20109\\/sightseeing\\/5099_1610361824.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null},{\"RefSSId\":1036,\"Title\":\"Maheshwar City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16388,\"CityName\":\"Maheshwar\",\"Lat\":22.1772853,\"Long\":75.5829782,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5727\\/thumb\\/Maheshwar City Tour_214.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":17947,\"SupplierName\":\"KTAS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"410601\",\"Title\":\"Indore Arrival and Ujjain Departure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12706,\"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\":1023,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":951,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16695,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1828,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"410602\",\"Title\":\"Omkareshwar Darshan\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12706,\"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\":17551,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1036,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"410603\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12706,\"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\":[],\"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\":{\"410601\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[410601],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"410602\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[410602],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"410603\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[410603],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Indore','Indore,Madhya Pradesh,Indian Subcontinent,Central India,India,Maheshwar,Omkareshwar,Ujjain',NULL,'12706',0,0,2,NULL,NULL,NULL,2,'',0,'2023-06-26 00:00:00','2023-07-13 00:00:00','2023-07-13 00:00:00',3,'India','101','2023-06-26 00:00:00','2023-06-26 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'religious-mp',NULL,NULL,NULL,0),(40,61420,1,59951,0,0,0,'Honeymoon,Family,Culture,Weekend,Festivals and Events,Leisure,Sr. Citizen,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":61420,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/package\\/images\\/rann-utsav-tent-city-night--days---package_1695910235\",\"BookingValidUntill\":\"2024-02-22\",\"AdvBookingDays\":45,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rann Utsav - The Unique Tent City&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The timeless White Desert of Rann meets the modern world through Rann Utsav, orchestrated by the Tourism Corporation of Gujarat Limited (TCGL). This event introduces the extraordinary &amp;#39;White Rann Experience&amp;#39;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Previously deemed barren, the White Rann beside the Great Rann of Kutch was reimagined by TCGL in 2005. What began as a three-day festival has grown into a 100-day celebration at Dhordo village, where a novel tent city arises annually with temporary yet impressive infrastructure.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":81276,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":81276,\"DestinationPlaces\":\"Bhuj\",\"DestinationPlacesSysId\":3142,\"SourcePlaces\":\"Bhuj\",\"SourcePlaceSysId\":3142,\"AgencyName\":\"Aasaan Holidays\",\"Name\":\"Rann Utsav Tent City (4Night \\/ 5Days) - Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"18235\",\"SupplierName\":\"EYAK Ventures Private Limited\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Activity,Sightseeing,Guided Tours,All Transfers\",\"PackageType\":\"Honeymoon,Family,Culture,Weekend,Festivals and Events,Leisure,Sr. Citizen,Women Only\",\"Validity\":{\"From\":\"2023-09-30\",\"To\":\"2024-02-22\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35410,\"Title\":\"Dhordo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":570846,\"Name\":\"Rann Utsav Tent City\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.7989451\",\"Long\":\"69.5051299\",\"Address\":\"Tent City, Dhordo, Gorewali, Gujarat \"},\"Images\":[],\"CityId\":35410,\"Brief\":\"&lt;p&gt;The White Desert of Rann reflects an era passed by, as well as the years waiting to embrace the present. Driven by the Tourism Corporation of Gujarat Limited (TCGL), Rann Utsav brings the &lsquo;White Rann&nbsp;Experience&rsquo; to the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;While the White Rann, near the&nbsp;Great Rann of Kutch&nbsp;was written off as a lifeless stretch of land, the Tourism Corporation of Gujarat Limited (TCGL) took the initiative of introducing &lsquo;White Rann Experience&rsquo; to the world in 2005. What began as a three-day festival progressively evolved into a 100-day celebration at Dhordo, a village near Rann of Kutch where a whole new tent city has been created, replete with temporary infrastructure built and rebuilt every year.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_570846\\/81276_d8220a7b475fb62ec6e859062e9b46191692443524.png\",\"AccoAminitiesMask\":\"111001110000001101110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null,\"RoomTypeName\":\"Non Ac Swiss Cottage\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":50548,\"Title\":\"White Rann\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;Also known as the Great Rann Kutch&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;&nbsp;the White Desert is&nbsp;&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;a vast area of pristine white salt desert often explored for its natural beauty and ecological importance&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;. It is also called the world&#039;s largest salt desert which stretches from the mouth of River Indus to the Gulf of Kutch.&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8291573,\"Long\":69.4829974,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692431681.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54035,\"Title\":\"Cultural activities\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;The cultural activities at Rann Utsav have been one of the key highlights of Rann Utsav Tent City, where we showcase not only local artistes on the stage, but also invite unique dancers, performers, including the Siddi community who perform tribal dance to leave the audience in raptures.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.7989499,\"Long\":69.5005165,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692432982.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54029,\"Title\":\"Mandvi Beach\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;One of the finest beaches on Gujarat&rsquo;s coastline, &ndash; this beach is perfect for a family getaway. Enjoy fresh coconuts, swim in very pleasant waters, and behold a magnificent view of the coastline as the sun cools its heels in the sea.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34506,\"CityName\":\"Mandvi\",\"Lat\":22.8219229,\"Long\":69.3378466,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/34506\\/sightseeing\\/81276_1692431592.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54033,\"Title\":\"Vijay Vilas Palace\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;Built in 1929 by Maharao Vijay Singh, the palace is an eclectic blend of architectural styles, offering a panoramic view of the sea and is a favourite destination of Hindi filmmakers.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34506,\"CityName\":\"Mandvi\",\"Lat\":22.8342573,\"Long\":69.2801889,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/34506\\/sightseeing\\/81276_1692432388.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54034,\"Title\":\"Shri Shyam Krishna Memorial\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: left&quot;&gt;A memorial dedicated to Shri Shyamji Krishna Varma from London, who built India House, a hideout for Indian freedom fighters, which has been recreated at Mandvi.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34506,\"CityName\":\"Mandvi\",\"Lat\":22.8215821,\"Long\":69.3813541,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/34506\\/sightseeing\\/81276_1692432757.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54025,\"Title\":\"Archaeology Museum at Dholavira\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;Here lies a valuable history of more than 1800 years old with one of the best planned civilizations of that era. A UNESCO site, the Harappan City was made of stone unlike other brick cities. Many artefacts, like ornaments, vessels and Mesopotamian objects were excavated from this site.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":38421,\"CityName\":\"Dholavira\",\"Lat\":23.8865808,\"Long\":70.2084326,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/38421\\/sightseeing\\/81276_1692429960.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":50589,\"Title\":\"Kalo Dungar\",\"Description\":\"&lt;p&gt;25 kms north of Khavda, the top of Kala Dungar i.e. the Black Hills is the highest point in Kutch, at 462 m, where you feel like you are at the edge of the earth.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.9344975,\"Long\":69.8041837,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430611.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54027,\"Title\":\"Gandhi Nu Gaam\",\"Description\":\"&lt;div style=&quot;text-align: justify&quot;&gt;A traditional village in Ludiya, Kutch, where every family is well-versed with local crafts and handicrafts. The village was almost destroyed in the 2001 earthquake. The village was reconstructed in the &lsquo;Bhunga House&rsquo; style inspired by the local craftsman that survived the earthquake.&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8251023,\"Long\":69.7365734,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430578.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":51800,\"Title\":\"Smritivan Earthquake Memorial and Museum\",\"Description\":\"&lt;p&gt;The Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3142,\"CityName\":\"Bhuj\",\"Lat\":23.2407155,\"Long\":69.6885558,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/3142\\/sightseeing\\/81276_1690267548.jpg\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"453417\",\"Title\":\"Bhuj To Rann Utsav Tent City (Dhordo) - (85 KM \\/ 02 Hr)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Check-in time: 12:30 PM&amp;nbsp;Transfers from Bhuj to Rann Utsav - The Tent City, Dhordo on fixed timings:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;08:15 AM &amp;amp; 10:00 AM - From Railway Station and Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:30 PM - From Railway Station, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;The above timings are for fixed departures and subject to change.&lt;br \\/&gt;\\r\\nNo Complimentary transfers will be available after the above timings.&lt;br \\/&gt;\\r\\nIndividual transfers are available on request (chargeable).&lt;br \\/&gt;\\r\\nAllotment of tents to guests arriving before check-in time will be subject to availability.Distance from Bhuj to Rann Utsav - The Tent City, Dhordo is approx. 85 km, which takes about 1 hr 45 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Arrival at Rann Utsav - Tent City, Dhordo from Bhuj&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;12:30 PM - Onwards Welcome &amp;amp; Check&amp;amp;ndashin&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM to 02:30 PM - Lunch at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02:30 PM to 04:00 PM - Enjoy in-house activities like Skyzilla Adventure Tower, Club House, Spa, &amp;amp; many others.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04:00 PM to 05:00 PM - Hi-Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05:00 PM to 05:30 PM - Transfer to The White Rann to witness the grandeur of sunset. The mode of transport will be through bus\\/ camel cart\\/ both.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:00 PM to 07:30 PM - Return to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:30 PM - Dinner at respective dining area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:00 PM to 10:30 PM - Enjoy the Culture of Kutch along with entertaining activities at Cultural Activity Area&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50548,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54035,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453421\",\"Title\":\"Dhordo to Mandvi Excursion (150 KM \\/ 2.5 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session in our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 08:30 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;08:30 AM to 11:00 Am - onwards Complimentary Tour to Mandvi Kutch Mandvi is an important beach famous among travellers for peace and solitude. Mandvi has beautiful white sand, serene locales and enchanting views. Distance from Rann Utsav-The Tent City, Dhordo is 140 km (approx.).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 12:30 PM - Visit Shyamji Krishna Varma Memorial Shyamji Krishna Varma was born on 04th October, 1857 in the Mandvi town of Kutch district of Gujarat. He was one of the foremost freedom fighters in the history of the freedom movement in India. The memorials objective is to pay tribute to Shyamji Krishna Varma and educate the young generation about the Indians who sacrificed everything for the countrys freedom.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:00 PM to 02:00 PM - Visit to Vijay Vilas Palace The great palace of Mandvi was built in 1929 by His Highness Vijay Singhji, the Maharao of Kutch, as a summer resort. This palace has a domed terrace that gives a panoramic view of the sea. The interiors have an office-like structure, where the king used to work.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02:00 PM to 03:30 PM - Lunch at the private Dining Area on the Mandvi beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:00 PM to 05:30 PM - Enjoy Leisure at the Private Beach This beach is regarded as one of the finest beaches on the Gujarat shoreline. A great family spot to spend quality time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05:30 PM to 07:00 PM - onwards Return transfer to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:00 PM - Enjoy scrumptious Dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":54029,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54033,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54034,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453425\",\"Title\":\"Dhordo to Dholavira Excursion (100 Km \\/ 02 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session in our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 09:00 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:00 AM to 10:00 AM - Onwards Depart for Dholavira which is approx. 105 kms, which will take 2 hrs. to reach there.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:00 AM to 11:30 AM - Experience Road to Heaven&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM to 01:30 PM - A visit to the Archaeology Museum at Dholavira.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:30 PM to 03:30 PM - Enjoy delicious Lunch at the respective Dining Area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:30 PM to 04:00 PM - Tea\\/Coffee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04:00 PM to 06:00 PM - Visit to Archaelogy Excavation Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:00 PM to 07:00 PM - onwards Return transfer to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:00 PM - Enjoy scrumptious Dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":54025,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453429\",\"Title\":\"Dhordo to Kala Dungar Trip (05 Km \\/ 01 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session at our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Visit to the White Rann to witness the grandeur of the sunrise.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 AM to 10:00 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;10:00 AM to 12:30 PM - Indulge yourself in the exciting range of activities we offer in-house.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;12:30 PM to 02:30 PM - Enjoy delicious Lunch at the respective Dining Area,&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;03:00 PM to 07:30 PM - Complimentary Tour to Kala Dungar (Black Hill) - the highest point of Kutch. On the route visit to handicraft village &amp;quot;Gandhi nu Gaam&amp;quot;. En route to Kala Dungar, Tea\\/Coffee and Complimentary refreshments will be served.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 PM to 10:00 PM - Enjoy scrumptious dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;09:00 PM to 10:30 PM - Enjoy the culture of Kutch along with entertaining activities at Cultural Activity Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50589,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54027,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453433\",\"Title\":\"Rann Utsav Tent City - Bhuj Drop (85 Km \\/ 02 Hr)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 07:00 AM Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 09:30 AM Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:30 AM Check-out from Tent City.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 02:00 PM Complimentary sightseeing &amp;amp;ndash Places of interest in Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 2:00 PMComplimentary sightseeing to Smritivan Bhuj - (Earthquake Museum) For 2 hrs. (approx.) -&amp;nbsp;(It will be closed on Monday)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Smritivan Earthquake Museum, Bhuj&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThe Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"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\":[{\"IsIncluded\":true,\"Id\":51800,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61420\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19028.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"26550.00\",\"priceSingleOcc\":41300,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":20355,\"CEB\":20355,\"COSTDO\":26550,\"COSTSO\":\"12538.00\",\"ACEB\":20355,\"COSTTO\":20355,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61421\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24780.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"32392.00\",\"priceSingleOcc\":50388,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32392,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25400,\"CEB\":25400,\"COSTDO\":31312,\"COSTSO\":\"14756.00\",\"ACEB\":25400,\"COSTTO\":25400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23275.00\",\"priceDoubleOcc\":\"32067.00\",\"priceSingleOcc\":49738,\"priceExtraBed\":\"23275.00\",\"priceWithoutBed\":\"23275.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32067,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":30987,\"COSTSO\":\"14756.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61422\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29648.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"39294.00\",\"priceSingleOcc\":61124,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2183,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39294,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25783,\"CEB\":25783,\"COSTDO\":37984,\"COSTSO\":\"17901.00\",\"ACEB\":25783,\"COSTTO\":25783,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22892.00\",\"priceDoubleOcc\":\"38586.00\",\"priceSingleOcc\":59708,\"priceExtraBed\":\"22892.00\",\"priceWithoutBed\":\"22892.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38586,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":37276,\"COSTSO\":\"17901.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61423\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33188.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"42480.00\",\"priceSingleOcc\":66080,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2360,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25960,\"CEB\":25960,\"COSTDO\":41064,\"COSTSO\":\"19352.00\",\"ACEB\":25960,\"COSTTO\":25960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"22715.00\",\"priceDoubleOcc\":\"41595.00\",\"priceSingleOcc\":64310,\"priceExtraBed\":\"22715.00\",\"priceWithoutBed\":\"22715.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1475,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25075,\"CEB\":25075,\"COSTDO\":40179,\"COSTSO\":\"19352.00\",\"ACEB\":25075,\"COSTTO\":25075,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61420\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19028.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"25075.00\",\"priceSingleOcc\":37613,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":25075,\"COSTSO\":\"12538.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"18880.00\",\"priceDoubleOcc\":\"19028.00\",\"priceSingleOcc\":28542,\"priceExtraBed\":\"18880.00\",\"priceWithoutBed\":\"18880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19028,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":18880,\"CEB\":18880,\"COSTDO\":19028,\"COSTSO\":\"9514.00\",\"ACEB\":18880,\"COSTTO\":18880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61421\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24780.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29512.00\",\"priceSingleOcc\":44268,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29512,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29512,\"COSTSO\":\"14756.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":31860,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"24780.00\",\"priceSingleOcc\":37170,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":24780,\"COSTSO\":\"12390.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61422\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29648.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"35801.00\",\"priceSingleOcc\":53702,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35801,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":35801,\"COSTSO\":\"17901.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"25665.00\",\"priceSingleOcc\":38498,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25665,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":25665,\"COSTSO\":\"12833.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"29648.00\",\"priceSingleOcc\":44472,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29648,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":29648,\"COSTSO\":\"14824.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61423\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33188.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"38704.00\",\"priceSingleOcc\":58056,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38704,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":38704,\"COSTSO\":\"19352.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"27435.00\",\"priceSingleOcc\":41153,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":27435,\"COSTSO\":\"13718.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"23600.00\",\"priceDoubleOcc\":\"33188.00\",\"priceSingleOcc\":49782,\"priceExtraBed\":\"23600.00\",\"priceWithoutBed\":\"23600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33188,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":23600,\"CEB\":23600,\"COSTDO\":33188,\"COSTSO\":\"16594.00\",\"ACEB\":23600,\"COSTTO\":23600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"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;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;ul&gt;\\r\\n\\t&lt;li&gt;Pickup from Bhuj [Railway Station \\/ Airport] to Dhordo Tent City. [All transfers shall be in A.C. Coaches on S.I.C. basis]&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST &amp;amp; TAX are inclusive in the Above rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drop from Dhordo to Bhuj [Railway Station\\/Airport],&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary refreshments will be served enroute Dhordo Tent City in the bus.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night\\/2 Days package includes:&amp;nbsp;Lunch, High-Tea &amp;amp; Dinner on 1st Day and Morning Tea and Breakfast on 2nd Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The meals will be served as per scheduled time in respective dining areas and missed meals will not be refunded or extended on 2nd Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in Tent is on twin sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two bottles of drinking water per day per tent.&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\":{\"453417\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[453417],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453421\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[453421],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453425\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[453425],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453429\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[453429],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453433\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[453433],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dhordo','Dhordo,Gujarat,Indian Subcontinent,West India,India,Bhuj,Mandvi,Dholavira',NULL,'35410',15930,42480,4,NULL,NULL,NULL,1,'',0,'2023-09-30 00:00:00','2024-02-22 00:00:00','2024-02-22 00:00:00',3,'India','101','2023-09-30 00:00:00','2023-09-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rann-utsav-tent-city-(4night-5days)-package',NULL,NULL,NULL,0),(41,61410,1,59951,0,0,0,'Honeymoon,Family,Weekend,Leisure,Sr. Citizen,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":61410,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/package\\/images\\/rann-utsav-tent-city-night--days---package_1695901804\",\"BookingValidUntill\":\"2024-02-23\",\"AdvBookingDays\":45,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rann Utsav - The Unique Tent City&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The timeless White Desert of Rann meets the modern world through Rann Utsav, orchestrated by the Tourism Corporation of Gujarat Limited (TCGL). This event introduces the extraordinary &amp;#39;White Rann Experience&amp;#39;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Previously deemed barren, the White Rann beside the Great Rann of Kutch was reimagined by TCGL in 2005. What began as a three-day festival has grown into a 100-day celebration at Dhordo village, where a novel tent city arises annually with temporary yet impressive infrastructure.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":81276,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":81276,\"DestinationPlaces\":\"Bhuj\",\"DestinationPlacesSysId\":3142,\"SourcePlaces\":\"Bhuj\",\"SourcePlaceSysId\":3142,\"AgencyName\":\"Aasaan Holidays\",\"Name\":\"Rann Utsav Tent City (3Night \\/ 4Days) - Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"18235\",\"SupplierName\":\"EYAK Ventures Private Limited\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Activity,Sightseeing,Guided Tours,All Transfers\",\"PackageType\":\"Honeymoon,Family,Weekend,Leisure,Sr. Citizen,Women Only\",\"Validity\":{\"From\":\"2023-09-30\",\"To\":\"2024-02-23\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35410,\"Title\":\"Dhordo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":570846,\"Name\":\"Rann Utsav Tent City\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.7989451\",\"Long\":\"69.5051299\",\"Address\":\"Tent City, Dhordo, Gorewali, Gujarat \"},\"Images\":[],\"CityId\":35410,\"Brief\":\"&lt;p&gt;The White Desert of Rann reflects an era passed by, as well as the years waiting to embrace the present. Driven by the Tourism Corporation of Gujarat Limited (TCGL), Rann Utsav brings the &lsquo;White Rann&nbsp;Experience&rsquo; to the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;While the White Rann, near the&nbsp;Great Rann of Kutch&nbsp;was written off as a lifeless stretch of land, the Tourism Corporation of Gujarat Limited (TCGL) took the initiative of introducing &lsquo;White Rann Experience&rsquo; to the world in 2005. What began as a three-day festival progressively evolved into a 100-day celebration at Dhordo, a village near Rann of Kutch where a whole new tent city has been created, replete with temporary infrastructure built and rebuilt every year.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_570846\\/81276_d8220a7b475fb62ec6e859062e9b46191692443524.png\",\"AccoAminitiesMask\":\"111001110000001101110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null,\"RoomTypeName\":\"Non Ac Swiss Cottage\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":50548,\"Title\":\"White Rann\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;Also known as the Great Rann Kutch&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;&nbsp;the White Desert is&nbsp;&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;a vast area of pristine white salt desert often explored for its natural beauty and ecological importance&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;. It is also called the world&#039;s largest salt desert which stretches from the mouth of River Indus to the Gulf of Kutch.&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8291573,\"Long\":69.4829974,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692431681.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54035,\"Title\":\"Cultural activities\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;The cultural activities at Rann Utsav have been one of the key highlights of Rann Utsav Tent City, where we showcase not only local artistes on the stage, but also invite unique dancers, performers, including the Siddi community who perform tribal dance to leave the audience in raptures.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.7989499,\"Long\":69.5005165,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692432982.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54025,\"Title\":\"Archaeology Museum at Dholavira\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;Here lies a valuable history of more than 1800 years old with one of the best planned civilizations of that era. A UNESCO site, the Harappan City was made of stone unlike other brick cities. Many artefacts, like ornaments, vessels and Mesopotamian objects were excavated from this site.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":38421,\"CityName\":\"Dholavira\",\"Lat\":23.8865808,\"Long\":70.2084326,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/38421\\/sightseeing\\/81276_1692429960.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":50589,\"Title\":\"Kalo Dungar\",\"Description\":\"&lt;p&gt;25 kms north of Khavda, the top of Kala Dungar i.e. the Black Hills is the highest point in Kutch, at 462 m, where you feel like you are at the edge of the earth.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.9344975,\"Long\":69.8041837,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430611.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54027,\"Title\":\"Gandhi Nu Gaam\",\"Description\":\"&lt;div style=&quot;text-align: justify&quot;&gt;A traditional village in Ludiya, Kutch, where every family is well-versed with local crafts and handicrafts. The village was almost destroyed in the 2001 earthquake. The village was reconstructed in the &lsquo;Bhunga House&rsquo; style inspired by the local craftsman that survived the earthquake.&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8251023,\"Long\":69.7365734,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430578.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":51800,\"Title\":\"Smritivan Earthquake Memorial and Museum\",\"Description\":\"&lt;p&gt;The Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3142,\"CityName\":\"Bhuj\",\"Lat\":23.2407155,\"Long\":69.6885558,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/3142\\/sightseeing\\/81276_1690267548.jpg\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"453326\",\"Title\":\"Bhuj To Rann Utsav Tent City (Dhordo) - (85 KM \\/ 02 Hr)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Check-in time: 12:30 PM&amp;nbsp;Transfers from Bhuj to Rann Utsav - The Tent City, Dhordo on fixed timings:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;08:15 AM &amp;amp; 10:00 AM - From Railway Station and Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:30 PM - From Railway Station, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;The above timings are for fixed departures and subject to change.&lt;br \\/&gt;\\r\\nNo Complimentary transfers will be available after the above timings.&lt;br \\/&gt;\\r\\nIndividual transfers are available on request (chargeable).&lt;br \\/&gt;\\r\\nAllotment of tents to guests arriving before check-in time will be subject to availability.Distance from Bhuj to Rann Utsav - The Tent City, Dhordo is approx. 85 km, which takes about 1 hr 45 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Arrival at Rann Utsav - Tent City, Dhordo from Bhuj&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;12:30 PM - Onwards Welcome &amp;amp; Check&amp;amp;ndashin&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM to 02:30 PM - Lunch at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02:30 PM to 04:00 PM - Enjoy in-house activities like Skyzilla Adventure Tower, Club House, Spa, &amp;amp; many others.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04:00 PM to 05:00 PM - Hi-Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05:00 PM to 05:30 PM - Transfer to The White Rann to witness the grandeur of sunset. The mode of transport will be through bus\\/ camel cart\\/ both.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:00 PM to 07:30 PM - Return to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:30 PM - Dinner at respective dining area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:00 PM to 10:30 PM - Enjoy the Culture of Kutch along with entertaining activities at Cultural Activity Area&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50548,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54035,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453330\",\"Title\":\"Dhordo to Dholavira Excursion (100 Km \\/ 02 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session in our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 09:00 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:00 AM to 10:00 AM - Onwards Depart for Dholavira which is approx. 105 kms, which will take 2 hrs. to reach there.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:00 AM to 11:30 AM - Experience Road to Heaven&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM to 01:30 PM - A visit to the Archaeology Museum at Dholavira.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:30 PM to 03:30 PM - Enjoy delicious Lunch at the respective Dining Area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:30 PM to 04:00 PM - Tea\\/Coffee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04:00 PM to 06:00 PM - Visit to Archaelogy Excavation Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:00 PM to 07:00 PM - onwards Return transfer to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:00 PM - Enjoy scrumptious Dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":54025,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453334\",\"Title\":\"Dhordo to Kala Dungar Trip (05 Km \\/ 01 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session at our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Visit to the White Rann to witness the grandeur of the sunrise.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 AM to 10:00 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;10:00 AM to 12:30 PM - Indulge yourself in the exciting range of activities we offer in-house.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;12:30 PM to 02:30 PM - Enjoy delicious Lunch at the respective Dining Area,&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;03:00 PM to 07:30 PM - Complimentary Tour to Kala Dungar (Black Hill) - the highest point of Kutch. On the route visit to handicraft village &amp;quot;Gandhi nu Gaam&amp;quot;. En route to Kala Dungar, Tea\\/Coffee and Complimentary refreshments will be served.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 PM to 10:00 PM - Enjoy scrumptious dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;09:00 PM to 10:30 PM - Enjoy the culture of Kutch along with entertaining activities at Cultural Activity Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50589,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54027,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453338\",\"Title\":\"Rann Utsav Tent City - Bhuj Drop (85 Km \\/ 02 Hr)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 07:00 AM Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 09:30 AM Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:30 AM Check-out from Tent City.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 02:00 PM Complimentary sightseeing &amp;amp;ndash Places of interest in Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 2:00 PMComplimentary sightseeing to Smritivan Bhuj - (Earthquake Museum) For 2 hrs. (approx.) -&amp;nbsp;(It will be closed on Monday)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Smritivan Earthquake Museum, Bhuj&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThe Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"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\":[{\"IsIncluded\":true,\"Id\":51800,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61410\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15488.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":21240,\"COSTSO\":\"10620.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15340,\"CEB\":15340,\"COSTDO\":21240,\"COSTSO\":\"10030.00\",\"ACEB\":15340,\"COSTTO\":15340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61411\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19470.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25488,\"COSTSO\":\"12744.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25488.00\",\"priceSingleOcc\":39648,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1416,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19116,\"CEB\":19116,\"COSTDO\":24638,\"COSTSO\":\"11611.00\",\"ACEB\":19116,\"COSTTO\":19116,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61412\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23453.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30798,\"COSTSO\":\"15399.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30798.00\",\"priceSingleOcc\":47908,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1711,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30798,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19411,\"CEB\":19411,\"COSTDO\":29772,\"COSTSO\":\"14030.00\",\"ACEB\":19411,\"COSTTO\":19411,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61413\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25223.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52864,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":33984,\"COSTSO\":\"16992.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"33984.00\",\"priceSingleOcc\":52794,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1888,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33984,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19588,\"CEB\":19588,\"COSTDO\":32851,\"COSTSO\":\"15482.00\",\"ACEB\":19588,\"COSTTO\":19588,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61410\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15488.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20060,\"COSTSO\":\"10620.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"20060.00\",\"priceSingleOcc\":30090,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":20060,\"COSTSO\":\"10030.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"12833.00\",\"priceSingleOcc\":19249,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12833,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":12833,\"COSTSO\":\"6416.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"14160.00\",\"priceDoubleOcc\":\"15488.00\",\"priceSingleOcc\":23232,\"priceExtraBed\":\"14160.00\",\"priceWithoutBed\":\"14160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15488,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":14160,\"CEB\":14160,\"COSTDO\":15488,\"COSTSO\":\"7744.00\",\"ACEB\":14160,\"COSTTO\":14160,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61411\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19470.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16284,\"CEB\":16284,\"COSTDO\":24072,\"COSTSO\":\"12744.00\",\"ACEB\":16284,\"COSTTO\":16284,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23222.00\",\"priceSingleOcc\":34833,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23222,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23222,\"COSTSO\":\"11611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"16815.00\",\"priceSingleOcc\":25223,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16815,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":16815,\"COSTSO\":\"8408.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"19470.00\",\"priceSingleOcc\":29205,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":19470,\"COSTSO\":\"9735.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61412\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23453.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15989,\"CEB\":15989,\"COSTDO\":29087,\"COSTSO\":\"15399.00\",\"ACEB\":15989,\"COSTTO\":15989,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"28061.00\",\"priceSingleOcc\":42091,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28061,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":28061,\"COSTSO\":\"14030.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"20355.00\",\"priceSingleOcc\":30533,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20355,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":20355,\"COSTSO\":\"10178.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"23453.00\",\"priceSingleOcc\":35179,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":23453,\"COSTSO\":\"11726.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61413\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25223.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":15812,\"CEB\":15812,\"COSTDO\":32096,\"COSTSO\":\"16992.00\",\"ACEB\":15812,\"COSTTO\":15812,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-24\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"30963.00\",\"priceSingleOcc\":46445,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30963,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":30963,\"COSTSO\":\"15482.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"22568.00\",\"priceSingleOcc\":33852,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":22568,\"COSTSO\":\"11284.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"17700.00\",\"priceDoubleOcc\":\"25223.00\",\"priceSingleOcc\":37834,\"priceExtraBed\":\"17700.00\",\"priceWithoutBed\":\"17700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25223,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17700,\"CEB\":17700,\"COSTDO\":25223,\"COSTSO\":\"12611.00\",\"ACEB\":17700,\"COSTTO\":17700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"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;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;ul&gt;\\r\\n\\t&lt;li&gt;Pickup from Bhuj [Railway Station \\/ Airport] to Dhordo Tent City. [All transfers shall be in A.C. Coaches on S.I.C. basis]&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST &amp;amp; TAX are inclusive in the Above rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drop from Dhordo to Bhuj [Railway Station\\/Airport],&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary refreshments will be served enroute Dhordo Tent City in the bus.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The meals will be served as per scheduled time in respective dining areas and missed meals will not be refunded or extended on 2nd Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in Tent is on twin sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two bottles of drinking water per day per tent.&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\":{\"453326\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[453326],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453330\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[453330],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453334\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[453334],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453338\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[453338],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dhordo','Dhordo,Gujarat,Indian Subcontinent,West India,India,Bhuj,Dholavira',NULL,'35410',12833,33984,3,NULL,NULL,NULL,1,'',0,'2023-09-30 00:00:00','2024-02-23 00:00:00','2024-02-23 00:00:00',3,'India','101','2023-09-30 00:00:00','2023-09-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rann-utsav-tent-city-(3night-4days)-package',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (42,61393,1,59951,0,0,0,'Honeymoon,Family,Culture,Weekend,Festivals and Events,Leisure,Sr. Citizen,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":61393,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/package\\/images\\/rann-utsav-tent-city-night--days---package_1695892269\",\"BookingValidUntill\":\"2024-02-24\",\"AdvBookingDays\":45,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rann Utsav - The Unique Tent City&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The timeless White Desert of Rann meets the modern world through Rann Utsav, orchestrated by the Tourism Corporation of Gujarat Limited (TCGL). This event introduces the extraordinary &amp;#39;White Rann Experience&amp;#39;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Previously deemed barren, the White Rann beside the Great Rann of Kutch was reimagined by TCGL in 2005. What began as a three-day festival has grown into a 100-day celebration at Dhordo village, where a novel tent city arises annually with temporary yet impressive infrastructure.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":81276,\"AgencyIdB2C\":59951,\"AgencyIdB2B\":81276,\"DestinationPlaces\":\"Bhuj\",\"DestinationPlacesSysId\":3142,\"SourcePlaces\":\"Bhuj\",\"SourcePlaceSysId\":3142,\"AgencyName\":\"Aasaan Holidays\",\"Name\":\"Rann Utsav Tent City (2Night \\/ 3Days) - Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"18235\",\"SupplierName\":\"EYAK Ventures Private Limited\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Activity,Sightseeing,Guided Tours,All Transfers\",\"PackageType\":\"Honeymoon,Family,Culture,Weekend,Festivals and Events,Leisure,Sr. Citizen,Women Only\",\"Validity\":{\"From\":\"2023-09-30\",\"To\":\"2024-02-24\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35410,\"Title\":\"Dhordo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":570846,\"Name\":\"Rann Utsav Tent City\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.7989451\",\"Long\":\"69.5051299\",\"Address\":\"Tent City, Dhordo, Gorewali, Gujarat \"},\"Images\":[],\"CityId\":35410,\"Brief\":\"&lt;p&gt;The White Desert of Rann reflects an era passed by, as well as the years waiting to embrace the present. Driven by the Tourism Corporation of Gujarat Limited (TCGL), Rann Utsav brings the &lsquo;White Rann&nbsp;Experience&rsquo; to the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;While the White Rann, near the&nbsp;Great Rann of Kutch&nbsp;was written off as a lifeless stretch of land, the Tourism Corporation of Gujarat Limited (TCGL) took the initiative of introducing &lsquo;White Rann Experience&rsquo; to the world in 2005. What began as a three-day festival progressively evolved into a 100-day celebration at Dhordo, a village near Rann of Kutch where a whole new tent city has been created, replete with temporary infrastructure built and rebuilt every year.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_570846\\/81276_d8220a7b475fb62ec6e859062e9b46191692443524.png\",\"AccoAminitiesMask\":\"111001110000001101110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null,\"RoomTypeName\":\"Non Ac Swiss Cottage\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":50548,\"Title\":\"White Rann\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;Also known as the Great Rann Kutch&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;&nbsp;the White Desert is&nbsp;&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;a vast area of pristine white salt desert often explored for its natural beauty and ecological importance&lt;\\/span&gt;&lt;span style=&quot;text-align: left font-family: Arial&quot;&gt;. It is also called the world&#039;s largest salt desert which stretches from the mouth of River Indus to the Gulf of Kutch.&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8291573,\"Long\":69.4829974,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692431681.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54035,\"Title\":\"Cultural activities\",\"Description\":\"&lt;p style=&quot;text-align: left &quot;&gt;The cultural activities at Rann Utsav have been one of the key highlights of Rann Utsav Tent City, where we showcase not only local artistes on the stage, but also invite unique dancers, performers, including the Siddi community who perform tribal dance to leave the audience in raptures.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.7989499,\"Long\":69.5005165,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692432982.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":50589,\"Title\":\"Kalo Dungar\",\"Description\":\"&lt;p&gt;25 kms north of Khavda, the top of Kala Dungar i.e. the Black Hills is the highest point in Kutch, at 462 m, where you feel like you are at the edge of the earth.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.9344975,\"Long\":69.8041837,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430611.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":54027,\"Title\":\"Gandhi Nu Gaam\",\"Description\":\"&lt;div style=&quot;text-align: justify&quot;&gt;A traditional village in Ludiya, Kutch, where every family is well-versed with local crafts and handicrafts. The village was almost destroyed in the 2001 earthquake. The village was reconstructed in the &lsquo;Bhunga House&rsquo; style inspired by the local craftsman that survived the earthquake.&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":35410,\"CityName\":\"Dhordo\",\"Lat\":23.8251023,\"Long\":69.7365734,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/35410\\/sightseeing\\/81276_1692430578.png\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null},{\"RefSSId\":51800,\"Title\":\"Smritivan Earthquake Memorial and Museum\",\"Description\":\"&lt;p&gt;The Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":3142,\"CityName\":\"Bhuj\",\"Lat\":23.2407155,\"Long\":69.6885558,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/81276\\/city\\/3142\\/sightseeing\\/81276_1690267548.jpg\",\"SupplierSysId\":18235,\"SupplierName\":\"EYAK Ventures Private Limited\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"453188\",\"Title\":\"Bhuj To Rann Utsav Tent City (Dhordo) - (85 KM \\/ 02 Hr)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Check-in time: 12:30 PM&amp;nbsp;Transfers from Bhuj to Rann Utsav - The Tent City, Dhordo on fixed timings:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;08:15 AM &amp;amp; 10:00 AM - From Railway Station and Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01:30 PM - From Railway Station, Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03:30 PM - From Airport, Bhuj&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;The above timings are for fixed departures and subject to change.&lt;br \\/&gt;\\r\\nNo Complimentary transfers will be available after the above timings.&lt;br \\/&gt;\\r\\nIndividual transfers are available on request (chargeable).&lt;br \\/&gt;\\r\\nAllotment of tents to guests arriving before check-in time will be subject to availability.Distance from Bhuj to Rann Utsav - The Tent City, Dhordo is approx. 85 km, which takes about 1 hr 45 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Arrival at Rann Utsav - Tent City, Dhordo from Bhuj&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;12:30 PM - Onwards Welcome &amp;amp; Check&amp;amp;ndashin&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:30 PM to 02:30 PM - Lunch at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02:30 PM to 04:00 PM - Enjoy in-house activities like Skyzilla Adventure Tower, Club House, Spa, &amp;amp; many others.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04:00 PM to 05:00 PM - Hi-Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05:00 PM to 05:30 PM - Transfer to The White Rann to witness the grandeur of sunset. The mode of transport will be through bus\\/ camel cart\\/ both.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:00 PM to 07:30 PM - Return to Rann Utsav - The Tent City, Dhordo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 PM to 10:30 PM - Dinner at respective dining area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:00 PM to 10:30 PM - Enjoy the Culture of Kutch along with entertaining activities at Cultural Activity Area&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50548,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54035,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453192\",\"Title\":\"Dhordo to Kala Dungar Trip (05 Km \\/ 01 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:00 AM to 06:30 AM - Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Experience a rejuvenating yoga session at our dedicated Activity Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;06:30 AM to 07:30 AM - Visit to the White Rann to witness the grandeur of the sunrise.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 AM to 10:00 AM - Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;10:00 AM to 12:30 PM - Indulge yourself in the exciting range of activities we offer in-house.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;12:30 PM to 02:30 PM - Enjoy delicious Lunch at the respective Dining Area,&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;03:00 PM to 07:30 PM - Complimentary Tour to Kala Dungar (Black Hill) - the highest point of Kutch. On the route visit to handicraft village &amp;quot;Gandhi nu Gaam&amp;quot;. En route to Kala Dungar, Tea\\/Coffee and Complimentary refreshments will be served.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;07:30 PM to 10:00 PM - Enjoy scrumptious dinner at the respective Dining Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:left margin-bottom: 0px border: 0px outline: 0px padding: 0px vertical-align: baseline line-height: var(--atlets-h3-line-height)&quot;&gt;09:00 PM to 10:30 PM - Enjoy the culture of Kutch along with entertaining activities at Cultural Activity Area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Swiss Cottage\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Ac Swiss Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":570846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Super Premium Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50589,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54027,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":54035,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"453196\",\"Title\":\"Rann Utsav Tent City - Bhuj Drop (85 Km \\/ 02 Hr)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 AM to 07:00 AM Morning Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:30 AM to 09:30 AM Breakfast at respective Dining Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:30 AM Check-out from Tent City.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 02:00 PM Complimentary sightseeing &amp;amp;ndash Places of interest in Bhuj&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11:30 AM to 2:00 PMComplimentary sightseeing to Smritivan Bhuj - (Earthquake Museum) For 2 hrs. (approx.) -&amp;nbsp;(It will be closed on Monday)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Smritivan Earthquake Museum, Bhuj&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThe Smritivan Earthquake Museum, Bhuj is situated on the Bhujiyo Dungar. It was constructed in remembrance of the victims of the devastating 2001 Gujarat earthquake. The Sun-point at the memorial is situated on top of Bhujiyo Dungar, providing a panoramic view of the city as well as breathtaking views of the sunrise and sunset.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35410,\"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\":[{\"IsIncluded\":true,\"Id\":51800,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61393\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10620.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14868.00\",\"priceSingleOcc\":23128,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":826,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14868,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":10266,\"CEB\":10266,\"COSTDO\":14868,\"COSTSO\":\"7021.00\",\"ACEB\":10266,\"COSTTO\":10266,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61394\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13718.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17502,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18054.00\",\"priceSingleOcc\":28084,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1003,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18054,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12803,\"CEB\":12803,\"COSTDO\":17452,\"COSTSO\":\"8225.00\",\"ACEB\":12803,\"COSTTO\":12803,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61395\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16373.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21240.00\",\"priceSingleOcc\":33040,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1180,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12980,\"CEB\":12980,\"COSTDO\":20532,\"COSTSO\":\"9676.00\",\"ACEB\":12980,\"COSTTO\":12980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61396\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18143.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"23364.00\",\"priceSingleOcc\":36344,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1298,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23364,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13098,\"CEB\":13098,\"COSTDO\":22586,\"COSTSO\":\"10644.00\",\"ACEB\":13098,\"COSTTO\":13098,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"61393\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10620.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"14042.00\",\"priceSingleOcc\":21063,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14042,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":14042,\"COSTSO\":\"7021.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"8850.00\",\"priceSingleOcc\":13275,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":8850,\"COSTSO\":\"4425.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"9440.00\",\"priceDoubleOcc\":\"10620.00\",\"priceSingleOcc\":15930,\"priceExtraBed\":\"9440.00\",\"priceWithoutBed\":\"9440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":9440,\"CEB\":9440,\"COSTDO\":10620,\"COSTSO\":\"5310.00\",\"ACEB\":9440,\"COSTTO\":9440,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"61394\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13718.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16499.00\",\"priceSingleOcc\":24724,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16499,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16449.00\",\"priceSingleOcc\":24674,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16449,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16449,\"COSTSO\":\"8225.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"11505.00\",\"priceSingleOcc\":17258,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11505,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":11505,\"COSTSO\":\"5753.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"13718.00\",\"priceSingleOcc\":20577,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13718,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":13718,\"COSTSO\":\"6859.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"61395\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16373.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"19352.00\",\"priceSingleOcc\":29028,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19352,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":19352,\"COSTSO\":\"9676.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"14160.00\",\"priceSingleOcc\":21240,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":14160,\"COSTSO\":\"7080.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"16373.00\",\"priceSingleOcc\":24559,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16373,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":16373,\"COSTSO\":\"8186.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"61396\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18143.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-10\",\"To\":\"2023-11-18\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-19\",\"To\":\"2023-11-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-26\",\"To\":\"2023-11-28\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-29\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-01\",\"To\":\"2023-12-21\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-22\",\"To\":\"2023-12-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-01\",\"To\":\"2024-01-23\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-24\",\"To\":\"2024-01-24\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-25\",\"To\":\"2024-01-26\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"21288.00\",\"priceSingleOcc\":31932,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21288,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":21288,\"COSTSO\":\"10644.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-01-27\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-01\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":23895,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":15930,\"COSTSO\":\"7965.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-23\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"11800.00\",\"priceDoubleOcc\":\"18143.00\",\"priceSingleOcc\":27214,\"priceExtraBed\":\"11800.00\",\"priceWithoutBed\":\"11800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18143,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":11800,\"CEB\":11800,\"COSTDO\":18143,\"COSTSO\":\"9071.00\",\"ACEB\":11800,\"COSTTO\":11800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"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;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;ul&gt;\\r\\n\\t&lt;li&gt;Pickup from Bhuj [Railway Station \\/ Airport] to Dhordo Tent City. [All transfers shall be in A.C. Coaches on &lt;strong&gt;S.I.C.&lt;\\/strong&gt; basis]&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST &amp;amp; TAX are inclusive in the Above rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drop from Dhordo to Bhuj [Railway Station\\/Airport],&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary refreshments will be served enroute Dhordo Tent City in the bus.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night\\/2 Days package includes:&amp;nbsp;Lunch, High-Tea &amp;amp; Dinner on 1st Day and Morning Tea and Breakfast on 2nd Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The meals will be served as per scheduled time in respective dining areas and missed meals will not be refunded or extended on 2nd Day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in Tent is on twin sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two bottles of drinking water per day per tent.&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\":{\"453188\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[453188],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453192\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[453192],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"453196\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[453196],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dhordo','Dhordo,Gujarat,Indian Subcontinent,West India,India,Bhuj,Rannutsav',NULL,'35410',8850,23364,2,NULL,NULL,NULL,1,'',0,'2023-09-30 00:00:00','2024-02-24 00:00:00','2024-02-24 00:00:00',3,'India','101','2023-09-30 00:00:00','2023-09-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rann-utsav-tent-city-(2night-3days)-package',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_id` int NOT NULL DEFAULT '0',
  `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_1672925948.png','0'),(13,'Worldwide Coverage','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','13_1672925931.png','0'),(14,'Fast Booking','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','14_1672925919.png','0'),(15,'Guided Tours','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','15_1672925742.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` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `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_bookings`
--

DROP TABLE IF EXISTS `tbl_car_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_bookings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `customerCountryCode` varchar(200) DEFAULT NULL,
  `customerMobile` varchar(200) DEFAULT NULL,
  `customerEmail` varchar(200) DEFAULT NULL,
  `customerSalutation` varchar(255) DEFAULT NULL,
  `customerFirstName` varchar(250) DEFAULT NULL,
  `customerLocality` varchar(500) DEFAULT NULL,
  `customerPickupAddress` varchar(500) DEFAULT NULL,
  `customerLocalityId` varchar(500) DEFAULT NULL,
  `carSourceId` varchar(255) DEFAULT NULL,
  `traceId` varchar(150) DEFAULT NULL,
  `traceIdEncrypted` varchar(5000) DEFAULT NULL,
  `carSearchJson` text,
  `selectedCarId` varchar(50) DEFAULT NULL,
  `carSelectedJson` text,
  `customerDetailsJson` text,
  `agentSysId` varchar(200) DEFAULT NULL,
  `agencySysId` varchar(500) DEFAULT NULL,
  `guid` varchar(500) DEFAULT NULL,
  `BookingId` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `payableAmount` varchar(200) DEFAULT NULL,
  `paymentReturnUrl` varchar(500) DEFAULT NULL,
  `tripType` varchar(200) DEFAULT NULL,
  `subTripType` varchar(200) DEFAULT NULL,
  `pickupDateTime` varchar(100) DEFAULT NULL,
  `destinationCity` varchar(250) DEFAULT NULL,
  `customerLastName` varchar(200) DEFAULT NULL,
  `paymentStatus` varchar(20) NOT NULL DEFAULT '0',
  `paymentResponse` varchar(2000) DEFAULT NULL,
  `paymentError` varchar(2000) DEFAULT NULL,
  `paymentGuid` varchar(2000) DEFAULT NULL,
  `carBookingStatus` varchar(200) DEFAULT NULL,
  `carBookingResponsJson` text,
  `duration` varchar(20) NOT NULL DEFAULT '0',
  `dropDateTime` varchar(200) DEFAULT NULL,
  `destination_city_name` varchar(500) DEFAULT NULL,
  `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_car_bookings`
--

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

--
-- Table structure for table `tbl_car_callback_result`
--

DROP TABLE IF EXISTS `tbl_car_callback_result`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_callback_result` (
  `id` int NOT NULL AUTO_INCREMENT,
  `bookingId` varchar(500) DEFAULT NULL,
  `carModel` varchar(250) DEFAULT NULL,
  `carNumber` varchar(250) DEFAULT NULL,
  `driverName` varchar(250) DEFAULT NULL,
  `driverMobile` varchar(250) DEFAULT NULL,
  `bookingIdMessage` text,
  `driverAssignedMessage` varchar(5000) DEFAULT NULL,
  `bookingCancleMessage` varchar(5000) DEFAULT NULL,
  `bookingCancleReason` varchar(5000) DEFAULT NULL,
  `bookingStatus` varchar(500) DEFAULT NULL,
  `requestDetails` text,
  `tripStatus` varchar(500) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `totalFare` varchar(50) DEFAULT NULL,
  `extra` varchar(50) DEFAULT NULL,
  `driverAllowance` varchar(500) DEFAULT NULL,
  `prePayment` varchar(200) DEFAULT NULL,
  `postPayment` varchar(500) DEFAULT NULL,
  `tripMessage` varchar(5000) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_car_callback_result`
--

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

--
-- Table structure for table `tbl_car_search`
--

DROP TABLE IF EXISTS `tbl_car_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_search` (
  `id` int NOT NULL AUTO_INCREMENT,
  `token` varchar(500) DEFAULT NULL,
  `sourceCity` int DEFAULT NULL,
  `destinationCity` varchar(500) DEFAULT NULL,
  `pickupDateTime` varchar(50) DEFAULT NULL,
  `dropDateTime` varchar(50) DEFAULT NULL,
  `tripType` varchar(50) DEFAULT NULL,
  `subTripType` varchar(50) DEFAULT NULL,
  `duration` varchar(500) DEFAULT NULL,
  `source_city_name` varchar(500) DEFAULT NULL,
  `destination_city_name` varchar(500) DEFAULT NULL,
  `travelDate` varchar(500) DEFAULT NULL,
  `endDate` varchar(500) DEFAULT NULL,
  `traceId` varchar(500) DEFAULT NULL,
  `localityId` varchar(200) DEFAULT NULL,
  `pickupDateTimes` varchar(500) DEFAULT NULL,
  `travelTime` varchar(500) DEFAULT NULL,
  `search_api_data` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_car_search`
--

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

--
-- Table structure for table `tbl_car_settings`
--

DROP TABLE IF EXISTS `tbl_car_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_settings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `car_keys` varchar(500) NOT NULL,
  `car_another_keys` varchar(500) DEFAULT NULL,
  `result` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  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_car_settings`
--

LOCK TABLES `tbl_car_settings` WRITE;
/*!40000 ALTER TABLE `tbl_car_settings` DISABLE KEYS */;
INSERT INTO `tbl_car_settings` VALUES (1,'token',NULL,'{\"status\":\"success\",\"data\":{\"token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJpYXQiOjE2Njg2Nzk4ODEsImp0aSI6InNlTUhtZThcL0tHSjQzUnhqaFVObUhFRmdnd1wvMHR4SlArRGQ4OWtoR1hoYz0iLCJpc3MiOiJzYXZhYXJpIiwibmJmIjoxNjY4Njc5ODgxLCJleHAiOjE2Njg2ODEzODEsImRhdGEiOnsiYXBpS2V5IjoiMjM0OWY3OTlhNGY3ZWI5MGU3MGY3MDdjN2M4OWZkOWViMzE1ZGI4ZDlmNzJkNDZlMWFhNmEwNGZkMzkwYmUwNSIsImFwcElkIjoiNjFkZmFiYjIyNGExN2Y0NTc0Y2JiZGFhZWQ3MGEwZmIifX0.yeV3X0KiEhLqOymxRKlUfOI2J0UYMhvr0qqkJ7-nJMrm94EKr86Pb_cYLfE4YM1pCzD4UqAcz1UbOEk55qQo3Q\",\"date\":\"03:41:21pm\",\"time_zone\":\"Asia\\/Calcutta\"}}'),(2,'tripType',NULL,'{\"status\":\"success\",\"data\":{\"local\":\"Local\",\"outstation\":\"Outstation\",\"airport\":\"Airport\"}}'),(3,'subTripType','local','{\"status\":\"success\",\"data\":{\"880\":\"8 Hour \\/ 80Km\",\"12120\":\"12 Hour \\/ 120Km\"}}'),(4,'subTripType','outstation','{\"status\":\"success\",\"data\":{\"roundtrip\":\"Round Trip\",\"oneway\":\"One Way\"}}'),(5,'subTripType','airport','{\"status\":\"success\",\"data\":{\"PICK_AIRPORT\":\"Pick up from Airport\",\"DROP_AIRPORT\":\"Drop To Airport\"}}'),(6,'sourceCity','local','{\"status\":\"success\",\"data\":[{\"cityId\":2402,\"cityName\":\"A.Vellalapatti, Tamil Nadu\"},{\"cityId\":1816,\"cityName\":\"Abhanpur, Chhattisgarh\"},{\"cityId\":1178,\"cityName\":\"Abohar, Punjab\"},{\"cityId\":2297,\"cityName\":\"Abu Road, Rajasthan\"},{\"cityId\":1724,\"cityName\":\"Achara, Maharashtra\"},{\"cityId\":1920,\"cityName\":\"Achipatti, Tamil Nadu\"},{\"cityId\":1940,\"cityName\":\"Achrol, Rajasthan\"},{\"cityId\":891,\"cityName\":\"Adalaj, Gujarat\"},{\"cityId\":2919,\"cityName\":\"Adampur, Punjab\"},{\"cityId\":1513,\"cityName\":\"Addanki, Andhra Pradesh\"},{\"cityId\":1546,\"cityName\":\"Adichunchanagiri, Karnataka\"},{\"cityId\":242,\"cityName\":\"Adilabad, Telangana\"},{\"cityId\":707,\"cityName\":\"Adoni, Andhra Pradesh\"},{\"cityId\":2442,\"cityName\":\"Adoor, Kerala\"},{\"cityId\":2263,\"cityName\":\"Adra, West Bengal\"},{\"cityId\":1237,\"cityName\":\"Aduthurai, Tamil Nadu\"},{\"cityId\":2944,\"cityName\":\"Agar, Madhya Pradesh\"},{\"cityId\":50,\"cityName\":\"Agartala, Tripura\"},{\"cityId\":2807,\"cityName\":\"Agonda Beach, Goa\"},{\"cityId\":126,\"cityName\":\"Agra, Uttar Pradesh\"},{\"cityId\":2791,\"cityName\":\"Agumbe, Karnataka\"},{\"cityId\":2723,\"cityName\":\"Ahiwara, Chhattisgarh\"},{\"cityId\":48,\"cityName\":\"Ahmedabad, Gujarat\"},{\"cityId\":449,\"cityName\":\"Ahmedgarh, Punjab\"},{\"cityId\":366,\"cityName\":\"Ahmednagar, Maharashtra\"},{\"cityId\":1504,\"cityName\":\"Ahobilam, Andhra Pradesh\"},{\"cityId\":2169,\"cityName\":\"Aihole, Karnataka\"},{\"cityId\":2603,\"cityName\":\"Aizawl, Mizoram\"},{\"cityId\":1826,\"cityName\":\"Ajitgarh, Rajasthan\"},{\"cityId\":24,\"cityName\":\"Ajmer, Rajasthan\"},{\"cityId\":2724,\"cityName\":\"Akaltara, Chhattisgarh\"},{\"cityId\":1344,\"cityName\":\"Akbarpur, Uttar Pradesh\"},{\"cityId\":1989,\"cityName\":\"Akilpur, Bihar\"},{\"cityId\":1632,\"cityName\":\"Akividu, Andhra Pradesh\"},{\"cityId\":1091,\"cityName\":\"Akkalkot, Maharashtra\"},{\"cityId\":1592,\"cityName\":\"Akluj, Maharashtra\"},{\"cityId\":101,\"cityName\":\"Akola, Maharashtra\"},{\"cityId\":1783,\"cityName\":\"Akole, Maharashtra\"},{\"cityId\":1092,\"cityName\":\"Alandi, Maharashtra\"},{\"cityId\":238,\"cityName\":\"Alappuzha, Kerala\"},{\"cityId\":2873,\"cityName\":\"Alathur, Tamil Nadu\"},{\"cityId\":1653,\"cityName\":\"Alephata, Maharashtra\"},{\"cityId\":334,\"cityName\":\"Alibag, Maharashtra\"},{\"cityId\":2589,\"cityName\":\"Alipore, West Bengal\"},{\"cityId\":1422,\"cityName\":\"Alipurduar, West Bengal\"},{\"cityId\":2673,\"cityName\":\"Alirajpur, Madhya Pradesh\"},{\"cityId\":2058,\"cityName\":\"Aliyar, Tamil Nadu\"},{\"cityId\":1700,\"cityName\":\"Allagadda, Andhra Pradesh\"},{\"cityId\":154,\"cityName\":\"Allahabad, Uttar Pradesh\"},{\"cityId\":706,\"cityName\":\"Almora, Uttarakhand\"},{\"cityId\":612,\"cityName\":\"Aluva, Kerala\"},{\"cityId\":209,\"cityName\":\"Alwar, Rajasthan\"},{\"cityId\":1837,\"cityName\":\"Alwarthirunagari, Tamil Nadu\"},{\"cityId\":781,\"cityName\":\"Amadalavalasa, Andhra Pradesh\"},{\"cityId\":782,\"cityName\":\"Amalapuram, Andhra Pradesh\"},{\"cityId\":1093,\"cityName\":\"Amalner, Maharashtra\"},{\"cityId\":1046,\"cityName\":\"Amanganj, Madhya Pradesh\"},{\"cityId\":1626,\"cityName\":\"Amarapuram, Andhra Pradesh\"},{\"cityId\":162,\"cityName\":\"Amaravati, Andhra Pradesh\"},{\"cityId\":2258,\"cityName\":\"Amarkantak, Madhya Pradesh\"},{\"cityId\":1881,\"cityName\":\"Amarpur, Bihar\"},{\"cityId\":2725,\"cityName\":\"Ambagarh Chowki, Chhattisgarh\"},{\"cityId\":1047,\"cityName\":\"Ambah, Madhya Pradesh\"},{\"cityId\":473,\"cityName\":\"Ambaji, Gujarat\"},{\"cityId\":1520,\"cityName\":\"Ambajogai, Maharashtra\"},{\"cityId\":419,\"cityName\":\"Ambala, Haryana\"},{\"cityId\":1238,\"cityName\":\"Ambasamudram, Tamil Nadu\"},{\"cityId\":1441,\"cityName\":\"Ambattur, Tamil Nadu\"},{\"cityId\":2555,\"cityName\":\"Ambedkar Nagar, Uttar Pradesh\"},{\"cityId\":1094,\"cityName\":\"Ambejogai, Maharashtra\"},{\"cityId\":1442,\"cityName\":\"Ambernath, Maharashtra\"},{\"cityId\":722,\"cityName\":\"Ambikapur, Chhattisgarh\"},{\"cityId\":1239,\"cityName\":\"Ambur, Tamil Nadu\"},{\"cityId\":1689,\"cityName\":\"Amer, Rajasthan\"},{\"cityId\":1345,\"cityName\":\"Amethi, Uttar Pradesh\"},{\"cityId\":2006,\"cityName\":\"Amlai, Madhya Pradesh\"},{\"cityId\":421,\"cityName\":\"Amravati, Maharashtra\"},{\"cityId\":474,\"cityName\":\"Amreli, Gujarat\"},{\"cityId\":84,\"cityName\":\"Amritsar, Punjab\"},{\"cityId\":614,\"cityName\":\"Amroha, Uttar Pradesh\"},{\"cityId\":1926,\"cityName\":\"Anaikatti, Tamil Nadu\"},{\"cityId\":708,\"cityName\":\"Anakapalle, Andhra Pradesh\"},{\"cityId\":167,\"cityName\":\"Anand, Gujarat\"},{\"cityId\":583,\"cityName\":\"Anandapur, Odisha\"},{\"cityId\":318,\"cityName\":\"Anantapur, Andhra Pradesh\"},{\"cityId\":2499,\"cityName\":\"Anantnag, Jammu and Kashmir\"},{\"cityId\":2330,\"cityName\":\"Anaparthi, Andhra Pradesh\"},{\"cityId\":2492,\"cityName\":\"Andal, West Bengal\"},{\"cityId\":2069,\"cityName\":\"Andimadam, Tamil Nadu\"},{\"cityId\":2357,\"cityName\":\"Andipatti Jakkampatti, Tamil Nadu\"},{\"cityId\":963,\"cityName\":\"Anekal, Karnataka\"},{\"cityId\":2183,\"cityName\":\"Angadipuram, Kerala\"},{\"cityId\":595,\"cityName\":\"Angul, Odisha\"},{\"cityId\":2865,\"cityName\":\"Anida, Gujarat\"},{\"cityId\":2564,\"cityName\":\"Anjar, Gujarat\"},{\"cityId\":771,\"cityName\":\"Anjora, Chhattisgarh\"},{\"cityId\":2809,\"cityName\":\"Anjuna Beach, Goa\"},{\"cityId\":137,\"cityName\":\"Ankleshwar, Gujarat\"},{\"cityId\":964,\"cityName\":\"Ankola, Karnataka\"},{\"cityId\":2219,\"cityName\":\"Annavaram, Andhra Pradesh\"},{\"cityId\":1921,\"cityName\":\"Annur, Tamil Nadu\"},{\"cityId\":1346,\"cityName\":\"Anpara, Uttar Pradesh\"},{\"cityId\":2255,\"cityName\":\"Anuppur, Madhya Pradesh\"},{\"cityId\":1347,\"cityName\":\"Aonla, Uttar Pradesh\"},{\"cityId\":1240,\"cityName\":\"Arachalur, Tamil Nadu\"},{\"cityId\":615,\"cityName\":\"Arakkonam, Tamil Nadu\"},{\"cityId\":462,\"cityName\":\"Araku, Andhra Pradesh\"},{\"cityId\":513,\"cityName\":\"Arambag, West Bengal\"},{\"cityId\":1437,\"cityName\":\"Arambagh, West Bengal\"},{\"cityId\":2808,\"cityName\":\"Arambol Beach, Goa\"},{\"cityId\":2726,\"cityName\":\"Arang, Chhattisgarh\"},{\"cityId\":1242,\"cityName\":\"Arani, Tamil Nadu\"},{\"cityId\":2888,\"cityName\":\"Aranthangi, Tamil Nadu\"},{\"cityId\":2478,\"cityName\":\"Araria, Bihar\"},{\"cityId\":1020,\"cityName\":\"Arasikere, Karnataka\"},{\"cityId\":1243,\"cityName\":\"Arcot, Tamil Nadu\"},{\"cityId\":2510,\"cityName\":\"Areraj, Bihar\"},{\"cityId\":2857,\"cityName\":\"Ari Sumairpur, Uttar Pradesh\"},{\"cityId\":2879,\"cityName\":\"Arimakulapalli, Andhra Pradesh\"},{\"cityId\":1244,\"cityName\":\"Ariyalur, Tamil Nadu\"},{\"cityId\":965,\"cityName\":\"Arkalgud, Karnataka\"},{\"cityId\":2904,\"cityName\":\"Arki, Himachal Pradesh\"},{\"cityId\":1708,\"cityName\":\"Armoor, Telangana\"},{\"cityId\":2825,\"cityName\":\"Arossim Beach, Goa\"},{\"cityId\":2826,\"cityName\":\"Arpora, Goa\"},{\"cityId\":2117,\"cityName\":\"Arrah, Bihar\"},{\"cityId\":2790,\"cityName\":\"Arsikere, Karnataka\"},{\"cityId\":1949,\"cityName\":\"Arthunkal, Kerala\"},{\"cityId\":1245,\"cityName\":\"Aruppukkottai, Tamil Nadu\"},{\"cityId\":2325,\"cityName\":\"Arvi, Maharashtra\"},{\"cityId\":2541,\"cityName\":\"Arwal, Bihar\"},{\"cityId\":1985,\"cityName\":\"Asangaon, Maharashtra\"},{\"cityId\":277,\"cityName\":\"Asansol, West Bengal\"},{\"cityId\":582,\"cityName\":\"Ashok Nagar, Madhya Pradesh\"},{\"cityId\":2321,\"cityName\":\"Ashta, Maharashtra\"},{\"cityId\":2389,\"cityName\":\"Ashtamudi, Kerala\"},{\"cityId\":1775,\"cityName\":\"Ashti, Maharashtra\"},{\"cityId\":2812,\"cityName\":\"Ashwem Beach, Goa\"},{\"cityId\":2524,\"cityName\":\"Asthua, Bihar\"},{\"cityId\":2241,\"cityName\":\"Atchutapuram, Andhra Pradesh\"},{\"cityId\":1900,\"cityName\":\"Athagad, Odisha\"},{\"cityId\":2799,\"cityName\":\"Athani, Karnataka\"},{\"cityId\":1696,\"cityName\":\"Atmakur, Andhra Pradesh\"},{\"cityId\":2304,\"cityName\":\"Atpadi, Maharashtra\"},{\"cityId\":1348,\"cityName\":\"Atraulia, Uttar Pradesh\"},{\"cityId\":2234,\"cityName\":\"Attili Road, Andhra Pradesh\"},{\"cityId\":1246,\"cityName\":\"Attur, Tamil Nadu\"},{\"cityId\":2116,\"cityName\":\"Auli, Uttarakhand\"},{\"cityId\":2505,\"cityName\":\"Auraiya, Uttar Pradesh\"},{\"cityId\":1886,\"cityName\":\"Aurangabad, Bihar\"},{\"cityId\":288,\"cityName\":\"Aurangabad, Maharashtra\"},{\"cityId\":2361,\"cityName\":\"Auroville, Tamil Nadu\"},{\"cityId\":2335,\"cityName\":\"Ausa, Maharashtra\"},{\"cityId\":1445,\"cityName\":\"Avadi, Tamil Nadu\"},{\"cityId\":1730,\"cityName\":\"Avinashi, Tamil Nadu\"},{\"cityId\":1349,\"cityName\":\"Awagarh, Uttar Pradesh\"},{\"cityId\":171,\"cityName\":\"Ayodhya, Uttar Pradesh\"},{\"cityId\":1247,\"cityName\":\"Ayyampettai, Tamil Nadu\"},{\"cityId\":1801,\"cityName\":\"Azadpur, Delhi\"},{\"cityId\":1350,\"cityName\":\"Azamgarh, Uttar Pradesh\"},{\"cityId\":776,\"cityName\":\"Bacheli, Chhattisgarh\"},{\"cityId\":2147,\"cityName\":\"Badami, Karnataka\"},{\"cityId\":2946,\"cityName\":\"Badarwas, Madhya Pradesh\"},{\"cityId\":616,\"cityName\":\"Baddi, Himachal Pradesh\"},{\"cityId\":2727,\"cityName\":\"Bade Bacheli, Chhattisgarh\"},{\"cityId\":1979,\"cityName\":\"Badlapur, Maharashtra\"},{\"cityId\":2538,\"cityName\":\"Badnawar, Madhya Pradesh\"},{\"cityId\":1446,\"cityName\":\"Badrinath, Uttarakhand\"},{\"cityId\":1749,\"cityName\":\"Badvel, Andhra Pradesh\"},{\"cityId\":2816,\"cityName\":\"Baga Beach, Goa\"},{\"cityId\":2553,\"cityName\":\"Bagaha, Bihar\"},{\"cityId\":733,\"cityName\":\"Bagalkot, Karnataka\"},{\"cityId\":2728,\"cityName\":\"Bagbahara, Chhattisgarh\"},{\"cityId\":966,\"cityName\":\"Bagepalli, Karnataka\"},{\"cityId\":1408,\"cityName\":\"Bageshwar, Uttarakhand\"},{\"cityId\":1351,\"cityName\":\"Baghpat, Uttar Pradesh\"},{\"cityId\":514,\"cityName\":\"Bagnan, West Bengal\"},{\"cityId\":1944,\"cityName\":\"Bagru, Rajasthan\"},{\"cityId\":923,\"cityName\":\"Bahadurgarh, Haryana\"},{\"cityId\":2126,\"cityName\":\"Baharagora Block, Jharkhand\"},{\"cityId\":2633,\"cityName\":\"Bahjoi, Uttar Pradesh\"},{\"cityId\":563,\"cityName\":\"Bahraich, Uttar Pradesh\"},{\"cityId\":1844,\"cityName\":\"Baidyabati, West Bengal\"},{\"cityId\":2670,\"cityName\":\"Baidyanath dham, Jharkhand\"},{\"cityId\":2704,\"cityName\":\"Baijnath, Himachal Pradesh\"},{\"cityId\":1515,\"cityName\":\"Baijro, Uttarakhand\"},{\"cityId\":2729,\"cityName\":\"Baikunthpur, Chhattisgarh\"},{\"cityId\":2199,\"cityName\":\"Bailhongal Rural, Karnataka\"},{\"cityId\":2931,\"cityName\":\"Baindur, Karnataka\"},{\"cityId\":2489,\"cityName\":\"Bairgania, Bihar\"},{\"cityId\":2513,\"cityName\":\"Bakhtiyarpur, Bihar\"},{\"cityId\":538,\"cityName\":\"Bakkhali, West Bengal\"},{\"cityId\":739,\"cityName\":\"Balaghat, Madhya Pradesh\"},{\"cityId\":754,\"cityName\":\"Balangir, Odisha\"},{\"cityId\":83,\"cityName\":\"Balasore, Odisha\"},{\"cityId\":2776,\"cityName\":\"Balehonnur, Karnataka\"},{\"cityId\":922,\"cityName\":\"Ballabhgarh, Haryana\"},{\"cityId\":2302,\"cityName\":\"Ballarpur, Maharashtra\"},{\"cityId\":1821,\"cityName\":\"Ballekere, Karnataka\"},{\"cityId\":1352,\"cityName\":\"Ballia, Uttar Pradesh\"},{\"cityId\":2730,\"cityName\":\"Balod, Chhattisgarh\"},{\"cityId\":2732,\"cityName\":\"Baloda Bazar, Chhattisgarh\"},{\"cityId\":2731,\"cityName\":\"Baloda, Chhattisgarh\"},{\"cityId\":1188,\"cityName\":\"Balotra, Rajasthan\"},{\"cityId\":2340,\"cityName\":\"Balrampur, Uttar Pradesh\"},{\"cityId\":584,\"cityName\":\"Balugaon, Odisha\"},{\"cityId\":597,\"cityName\":\"Balukhand, Odisha\"},{\"cityId\":1423,\"cityName\":\"Balurghat, West Bengal\"},{\"cityId\":1960,\"cityName\":\"Bamangachi, West Bengal\"},{\"cityId\":2821,\"cityName\":\"Bambolim Beach, Goa\"},{\"cityId\":1859,\"cityName\":\"Banaganapalli, Andhra Pradesh\"},{\"cityId\":1189,\"cityName\":\"Banasthali, Rajasthan\"},{\"cityId\":1409,\"cityName\":\"Banbasa, Uttarakhand\"},{\"cityId\":1353,\"cityName\":\"Banda, Uttar Pradesh\"},{\"cityId\":557,\"cityName\":\"Bandel, West Bengal\"},{\"cityId\":2432,\"cityName\":\"Bandhavgarh National Park, Madhya Pradesh\"},{\"cityId\":2289,\"cityName\":\"Bandhavgarh, Madhya Pradesh\"},{\"cityId\":1190,\"cityName\":\"Bandikui, Rajasthan\"},{\"cityId\":617,\"cityName\":\"Bandipur, Karnataka\"},{\"cityId\":1802,\"cityName\":\"Baner, Maharashtra\"},{\"cityId\":377,\"cityName\":\"Bangalore, Karnataka\"},{\"cityId\":840,\"cityName\":\"Banganapalle, Andhra Pradesh\"},{\"cityId\":515,\"cityName\":\"Bangaon, West Bengal\"},{\"cityId\":967,\"cityName\":\"Bangarapet, Karnataka\"},{\"cityId\":1354,\"cityName\":\"Bangarmau, Uttar Pradesh\"},{\"cityId\":2224,\"cityName\":\"Bangarupalem, Andhra Pradesh\"},{\"cityId\":2925,\"cityName\":\"Banjar, Himachal Pradesh\"},{\"cityId\":2519,\"cityName\":\"Banka, Bihar\"},{\"cityId\":1768,\"cityName\":\"Bankhandi, Himachal Pradesh\"},{\"cityId\":1907,\"cityName\":\"Banki, Odisha\"},{\"cityId\":516,\"cityName\":\"Bankura, West Bengal\"},{\"cityId\":1355,\"cityName\":\"Bansi, Uttar Pradesh\"},{\"cityId\":1191,\"cityName\":\"Banswara, Rajasthan\"},{\"cityId\":968,\"cityName\":\"Bantval, Karnataka\"},{\"cityId\":2176,\"cityName\":\"Bantwal, Karnataka\"},{\"cityId\":1915,\"cityName\":\"Banur, Punjab\"},{\"cityId\":783,\"cityName\":\"Bapatla, Andhra Pradesh\"},{\"cityId\":1356,\"cityName\":\"Barabanki, Uttar Pradesh\"},{\"cityId\":1956,\"cityName\":\"Barackpore, West Bengal\"},{\"cityId\":2609,\"cityName\":\"Barakar, West Bengal\"},{\"cityId\":1095,\"cityName\":\"Baramati, Maharashtra\"},{\"cityId\":1192,\"cityName\":\"Baran, Rajasthan\"},{\"cityId\":1903,\"cityName\":\"Baranga, Odisha\"},{\"cityId\":1438,\"cityName\":\"Barasat, West Bengal\"},{\"cityId\":1575,\"cityName\":\"Barauni, Bihar\"},{\"cityId\":618,\"cityName\":\"Baraut, Uttar Pradesh\"},{\"cityId\":2565,\"cityName\":\"Barbigha, Bihar\"},{\"cityId\":585,\"cityName\":\"Barbil, Odisha\"},{\"cityId\":1448,\"cityName\":\"Bardez Beach, Goa\"},{\"cityId\":46,\"cityName\":\"Bardoli, Gujarat\"},{\"cityId\":204,\"cityName\":\"Bareilly, Uttar Pradesh\"},{\"cityId\":1892,\"cityName\":\"Bareja, Gujarat\"},{\"cityId\":613,\"cityName\":\"Bareli, Madhya Pradesh\"},{\"cityId\":755,\"cityName\":\"Bargarh, Odisha\"},{\"cityId\":1248,\"cityName\":\"Bargur, Tamil Nadu\"},{\"cityId\":2537,\"cityName\":\"Barh, Bihar\"},{\"cityId\":1357,\"cityName\":\"Barhalganj, Uttar Pradesh\"},{\"cityId\":1702,\"cityName\":\"Barhni, Uttar Pradesh\"},{\"cityId\":2175,\"cityName\":\"Baripada, Odisha\"},{\"cityId\":1193,\"cityName\":\"Barmer, Rajasthan\"},{\"cityId\":2686,\"cityName\":\"Barnala, Punjab\"},{\"cityId\":2453,\"cityName\":\"Barobisha, West Bengal\"},{\"cityId\":1912,\"cityName\":\"Barotiwala, Himachal Pradesh\"},{\"cityId\":2025,\"cityName\":\"Barpeta, Assam\"},{\"cityId\":1439,\"cityName\":\"Barrackpore, West Bengal\"},{\"cityId\":2301,\"cityName\":\"Barshi, Maharashtra\"},{\"cityId\":1963,\"cityName\":\"Baruipur, West Bengal\"},{\"cityId\":1049,\"cityName\":\"Barwani, Madhya Pradesh\"},{\"cityId\":506,\"cityName\":\"Basar, Telangana\"},{\"cityId\":969,\"cityName\":\"Basavakalyan, Karnataka\"},{\"cityId\":2798,\"cityName\":\"Basavana Bagewadi, Karnataka\"},{\"cityId\":517,\"cityName\":\"Basirhat, West Bengal\"},{\"cityId\":1800,\"cityName\":\"Basmat, Maharashtra\"},{\"cityId\":2733,\"cityName\":\"Basna, Chhattisgarh\"},{\"cityId\":2950,\"cityName\":\"Basoda, Madhya Pradesh\"},{\"cityId\":2646,\"cityName\":\"Basopatti, Bihar\"},{\"cityId\":1782,\"cityName\":\"Bassi, Rajasthan\"},{\"cityId\":2918,\"cityName\":\"Bastar, Chhattisgarh\"},{\"cityId\":1358,\"cityName\":\"Basti, Uttar Pradesh\"},{\"cityId\":456,\"cityName\":\"batala, Punjab\"},{\"cityId\":443,\"cityName\":\"Bathinda, Punjab\"},{\"cityId\":1249,\"cityName\":\"Batlagundu, Tamil Nadu\"},{\"cityId\":1898,\"cityName\":\"Bavla, Gujarat\"},{\"cityId\":2265,\"cityName\":\"Bawali, West Bengal\"},{\"cityId\":2649,\"cityName\":\"Bawangaja, Madhya Pradesh\"},{\"cityId\":2895,\"cityName\":\"Bayana, Rajasthan\"},{\"cityId\":1410,\"cityName\":\"Bazpur, Uttarakhand\"},{\"cityId\":2872,\"cityName\":\"Beas, Punjab\"},{\"cityId\":1194,\"cityName\":\"Beawar, Rajasthan\"},{\"cityId\":2536,\"cityName\":\"Becharaji, Gujarat\"},{\"cityId\":764,\"cityName\":\"Beed, Maharashtra\"},{\"cityId\":599,\"cityName\":\"Beena, Madhya Pradesh\"},{\"cityId\":845,\"cityName\":\"Begusarai, Bihar\"},{\"cityId\":235,\"cityName\":\"Behror, Rajasthan\"},{\"cityId\":2192,\"cityName\":\"Bekal, Kerala\"},{\"cityId\":560,\"cityName\":\"Belda, West Bengal\"},{\"cityId\":2286,\"cityName\":\"Beldanga, West Bengal\"},{\"cityId\":128,\"cityName\":\"Belgaum, Karnataka\"},{\"cityId\":2483,\"cityName\":\"Belha, Uttar Pradesh\"},{\"cityId\":784,\"cityName\":\"Bellampalle, Andhra Pradesh\"},{\"cityId\":208,\"cityName\":\"Bellary, Karnataka\"},{\"cityId\":1793,\"cityName\":\"Belthangady, Karnataka\"},{\"cityId\":2525,\"cityName\":\"Belthara, Uttar Pradesh\"},{\"cityId\":1961,\"cityName\":\"Belur, Karnataka\"},{\"cityId\":2734,\"cityName\":\"Bemetara, Chhattisgarh\"},{\"cityId\":2805,\"cityName\":\"Benaulim Beach, Goa\"},{\"cityId\":1508,\"cityName\":\"Berhampore, West Bengal\"},{\"cityId\":86,\"cityName\":\"Berhampur, Odisha\"},{\"cityId\":785,\"cityName\":\"Bestawaripeta, Andhra Pradesh\"},{\"cityId\":2820,\"cityName\":\"Betalbatim Beach, Goa\"},{\"cityId\":786,\"cityName\":\"Bethamcherla, Telangana\"},{\"cityId\":2288,\"cityName\":\"Bethuadahari, West Bengal\"},{\"cityId\":846,\"cityName\":\"Bettiah, Bihar\"},{\"cityId\":2815,\"cityName\":\"Betul Beach, Goa\"},{\"cityId\":569,\"cityName\":\"Betul, Madhya Pradesh\"},{\"cityId\":882,\"cityName\":\"Bhabua, Bihar\"},{\"cityId\":893,\"cityName\":\"Bhachau, Gujarat\"},{\"cityId\":1359,\"cityName\":\"Bhadohi, Uttar Pradesh\"},{\"cityId\":787,\"cityName\":\"Bhadrachalam, Telangana\"},{\"cityId\":1170,\"cityName\":\"Bhadrak, Odisha\"},{\"cityId\":1861,\"cityName\":\"Bhadravathi, Karnataka\"},{\"cityId\":734,\"cityName\":\"Bhadravati, Karnataka\"},{\"cityId\":847,\"cityName\":\"Bhagalpur, Bihar\"},{\"cityId\":788,\"cityName\":\"Bhainsa, Telangana\"},{\"cityId\":970,\"cityName\":\"Bhalki, Karnataka\"},{\"cityId\":2574,\"cityName\":\"Bhalukpong, Arunachal Pradesh\"},{\"cityId\":740,\"cityName\":\"Bhandara, Maharashtra\"},{\"cityId\":2420,\"cityName\":\"Bhandardara, Maharashtra\"},{\"cityId\":1171,\"cityName\":\"Bhanjanagar, Odisha\"},{\"cityId\":2671,\"cityName\":\"Bhanvad, Gujarat\"},{\"cityId\":229,\"cityName\":\"Bharatpur, Rajasthan\"},{\"cityId\":1987,\"cityName\":\"Bharpura, Bihar\"},{\"cityId\":2852,\"cityName\":\"Bharthana, Uttar Pradesh\"},{\"cityId\":475,\"cityName\":\"Bharuch, Gujarat\"},{\"cityId\":2735,\"cityName\":\"Bhatapara, Chhattisgarh\"},{\"cityId\":2736,\"cityName\":\"Bhatgaon, Chhattisgarh\"},{\"cityId\":134,\"cityName\":\"Bhatkal, Karnataka\"},{\"cityId\":2906,\"cityName\":\"Bhatni Bazar, Uttar Pradesh\"},{\"cityId\":2233,\"cityName\":\"Bhattiprolu, Andhra Pradesh\"},{\"cityId\":1250,\"cityName\":\"Bhavani, Tamil Nadu\"},{\"cityId\":365,\"cityName\":\"Bhavnagar, Gujarat\"},{\"cityId\":756,\"cityName\":\"Bhawanipatna, Odisha\"},{\"cityId\":2632,\"cityName\":\"Bhedaghat, Madhya Pradesh\"},{\"cityId\":2373,\"cityName\":\"Bhigwan, Maharashtra\"},{\"cityId\":1617,\"cityName\":\"Bhilad, Gujarat\"},{\"cityId\":442,\"cityName\":\"Bhilai, Chhattisgarh\"},{\"cityId\":100,\"cityName\":\"Bhilwara, Rajasthan\"},{\"cityId\":2413,\"cityName\":\"Bhimashankar, Maharashtra\"},{\"cityId\":461,\"cityName\":\"Bhimavaram, Andhra Pradesh\"},{\"cityId\":109,\"cityName\":\"Bhimtal, Uttarakhand\"},{\"cityId\":1050,\"cityName\":\"Bhind, Madhya Pradesh\"},{\"cityId\":1195,\"cityName\":\"Bhinmal, Rajasthan\"},{\"cityId\":1880,\"cityName\":\"Bhittamore, Bihar\"},{\"cityId\":444,\"cityName\":\"Bhiwadi, Rajasthan\"},{\"cityId\":741,\"cityName\":\"Bhiwandi, Maharashtra\"},{\"cityId\":619,\"cityName\":\"Bhiwani, Haryana\"},{\"cityId\":2118,\"cityName\":\"Bhojpur, Bihar\"},{\"cityId\":789,\"cityName\":\"Bhongir, Telangana\"},{\"cityId\":1878,\"cityName\":\"Bhoodan Pochampally, Telangana\"},{\"cityId\":219,\"cityName\":\"Bhopal, Madhya Pradesh\"},{\"cityId\":777,\"cityName\":\"Bhopalpatnam, Chhattisgarh\"},{\"cityId\":2303,\"cityName\":\"Bhor, Maharashtra\"},{\"cityId\":586,\"cityName\":\"Bhuban, Odisha\"},{\"cityId\":297,\"cityName\":\"Bhubaneswar, Odisha\"},{\"cityId\":2378,\"cityName\":\"Bhuntar, Himachal Pradesh\"},{\"cityId\":1096,\"cityName\":\"Bhusawal, Maharashtra\"},{\"cityId\":2939,\"cityName\":\"Biaora, Madhya Pradesh\"},{\"cityId\":2209,\"cityName\":\"Bibinagar, Telangana\"},{\"cityId\":1867,\"cityName\":\"Bidadi, Karnataka\"},{\"cityId\":620,\"cityName\":\"Bidar, Karnataka\"},{\"cityId\":2456,\"cityName\":\"Bidhannagar, West Bengal\"},{\"cityId\":621,\"cityName\":\"Bihar Sharif, Bihar\"},{\"cityId\":2511,\"cityName\":\"Bihpur, Bihar\"},{\"cityId\":1990,\"cityName\":\"Bihta, Bihar\"},{\"cityId\":1651,\"cityName\":\"Bijainagar, Rajasthan\"},{\"cityId\":284,\"cityName\":\"Bijapur, Karnataka\"},{\"cityId\":622,\"cityName\":\"Bijnor, Uttar Pradesh\"},{\"cityId\":183,\"cityName\":\"Bikaner, Rajasthan\"},{\"cityId\":2606,\"cityName\":\"Bikram, Bihar\"},{\"cityId\":848,\"cityName\":\"Bikramganj, Bihar\"},{\"cityId\":1196,\"cityName\":\"Bilara, Rajasthan\"},{\"cityId\":417,\"cityName\":\"Bilaspur, Chhattisgarh\"},{\"cityId\":2737,\"cityName\":\"Bilha, Chhattisgarh\"},{\"cityId\":894,\"cityName\":\"Bilimora, Gujarat\"},{\"cityId\":1452,\"cityName\":\"Bina, Madhya Pradesh\"},{\"cityId\":2623,\"cityName\":\"Bindki, Uttar Pradesh\"},{\"cityId\":2467,\"cityName\":\"Bindu, West Bengal\"},{\"cityId\":2695,\"cityName\":\"Binsar, Uttarakhand\"},{\"cityId\":2527,\"cityName\":\"Bir, Himachal Pradesh\"},{\"cityId\":2490,\"cityName\":\"Biraul, Bihar\"},{\"cityId\":2738,\"cityName\":\"Birgaon, Chhattisgarh\"},{\"cityId\":1684,\"cityName\":\"Bironkhal, Uttarakhand\"},{\"cityId\":2452,\"cityName\":\"Birpara, West Bengal\"},{\"cityId\":849,\"cityName\":\"Birpur, Bihar\"},{\"cityId\":971,\"cityName\":\"Birur, Karnataka\"},{\"cityId\":2864,\"cityName\":\"Bisalpur, Uttar Pradesh\"},{\"cityId\":1360,\"cityName\":\"Bisauli, Uttar Pradesh\"},{\"cityId\":553,\"cityName\":\"Bishnupur, West Bengal\"},{\"cityId\":2775,\"cityName\":\"Bishrampur, Chhattisgarh\"},{\"cityId\":2602,\"cityName\":\"Biswanath Chariali, Assam\"},{\"cityId\":2721,\"cityName\":\"Bitha, Bihar\"},{\"cityId\":790,\"cityName\":\"Bobbili, Andhra Pradesh\"},{\"cityId\":791,\"cityName\":\"Bodhan, Telangana\"},{\"cityId\":1251,\"cityName\":\"Bodinayakanur, Tamil Nadu\"},{\"cityId\":2739,\"cityName\":\"Bodri, Chhattisgarh\"},{\"cityId\":2235,\"cityName\":\"Boduppal, Telangana\"},{\"cityId\":2813,\"cityName\":\"Bogmalo Beach, Goa\"},{\"cityId\":1097,\"cityName\":\"Boisar, Maharashtra\"},{\"cityId\":2581,\"cityName\":\"Bokakhat, Assam\"},{\"cityId\":2125,\"cityName\":\"Bokaro Steel City, Jharkhand\"},{\"cityId\":1453,\"cityName\":\"Bokaro, Jharkhand\"},{\"cityId\":518,\"cityName\":\"Bolpur, West Bengal\"},{\"cityId\":2588,\"cityName\":\"Bomdila, Arunachal Pradesh\"},{\"cityId\":2026,\"cityName\":\"Bongaigaon, Assam\"},{\"cityId\":1573,\"cityName\":\"Bongaon, West Bengal\"},{\"cityId\":1922,\"cityName\":\"Booluvampatti, Tamil Nadu\"},{\"cityId\":1773,\"cityName\":\"Bopal, Gujarat\"},{\"cityId\":1761,\"cityName\":\"Borli, Maharashtra\"},{\"cityId\":2023,\"cityName\":\"Borra Caves, Andhra Pradesh\"},{\"cityId\":476,\"cityName\":\"Borsad, Gujarat\"},{\"cityId\":477,\"cityName\":\"Botad, Gujarat\"},{\"cityId\":2277,\"cityName\":\"Bounsi, Bihar\"},{\"cityId\":1098,\"cityName\":\"Brahmapuri, Maharashtra\"},{\"cityId\":1550,\"cityName\":\"Brahmavar, Karnataka\"},{\"cityId\":2359,\"cityName\":\"Buchireddypalem, Andhra Pradesh\"},{\"cityId\":623,\"cityName\":\"Budaun, Uttar Pradesh\"},{\"cityId\":2530,\"cityName\":\"Budge Budge, West Bengal\"},{\"cityId\":1690,\"cityName\":\"Budhni, Madhya Pradesh\"},{\"cityId\":2908,\"cityName\":\"Buhana, Rajasthan\"},{\"cityId\":624,\"cityName\":\"Bulandshahr, Uttar Pradesh\"},{\"cityId\":1099,\"cityName\":\"Buldana, Maharashtra\"},{\"cityId\":1650,\"cityName\":\"Buldhana, Maharashtra\"},{\"cityId\":184,\"cityName\":\"Bundi, Rajasthan\"},{\"cityId\":539,\"cityName\":\"Burdwan, West Bengal\"},{\"cityId\":1051,\"cityName\":\"Burhanpur, Madhya Pradesh\"},{\"cityId\":2717,\"cityName\":\"Burla, Odisha\"},{\"cityId\":972,\"cityName\":\"Byadgi, Karnataka\"},{\"cityId\":2196,\"cityName\":\"Bylakuppe, Karnataka\"},{\"cityId\":2806,\"cityName\":\"Calangute Beach, Goa\"},{\"cityId\":218,\"cityName\":\"Calicut, Kerala\"},{\"cityId\":2610,\"cityName\":\"Canacona Beach, Goa\"},{\"cityId\":2839,\"cityName\":\"Canaguinim Beach, Goa\"},{\"cityId\":2828,\"cityName\":\"Canasaulim Beach, Goa\"},{\"cityId\":2320,\"cityName\":\"Candolim Beach, Goa\"},{\"cityId\":2840,\"cityName\":\"Carmona Beach, Goa\"},{\"cityId\":2810,\"cityName\":\"Cavelossim Beach, Goa\"},{\"cityId\":2678,\"cityName\":\"Chabua, Assam\"},{\"cityId\":947,\"cityName\":\"Chaibasa, Jharkhand\"},{\"cityId\":1100,\"cityName\":\"Chakan, Maharashtra\"},{\"cityId\":519,\"cityName\":\"Chakdaha, West Bengal\"},{\"cityId\":2662,\"cityName\":\"Chakghat, Madhya Pradesh\"},{\"cityId\":948,\"cityName\":\"Chakradharpur, Jharkhand\"},{\"cityId\":2105,\"cityName\":\"Chakrata, Uttarakhand\"},{\"cityId\":1939,\"cityName\":\"Chaksu, Rajasthan\"},{\"cityId\":2674,\"cityName\":\"Chakulia, Jharkhand\"},{\"cityId\":1087,\"cityName\":\"Chalisgaon, Maharashtra\"},{\"cityId\":973,\"cityName\":\"Challakere, Karnataka\"},{\"cityId\":2012,\"cityName\":\"Chalsa, West Bengal\"},{\"cityId\":974,\"cityName\":\"Chamarajanagar, Karnataka\"},{\"cityId\":2406,\"cityName\":\"Chamba, Himachal Pradesh\"},{\"cityId\":2100,\"cityName\":\"Chamoli, Uttarakhand\"},{\"cityId\":723,\"cityName\":\"Champa, Chhattisgarh\"},{\"cityId\":2522,\"cityName\":\"Champaran, Bihar\"},{\"cityId\":2701,\"cityName\":\"Champawat, Uttarakhand\"},{\"cityId\":895,\"cityName\":\"Chanasma, Gujarat\"},{\"cityId\":550,\"cityName\":\"Chandan Nagar, West Bengal\"},{\"cityId\":1361,\"cityName\":\"Chandauli, Uttar Pradesh\"},{\"cityId\":625,\"cityName\":\"Chandausi, Uttar Pradesh\"},{\"cityId\":1052,\"cityName\":\"Chanderi, Madhya Pradesh\"},{\"cityId\":1770,\"cityName\":\"Chandgad, Maharashtra\"},{\"cityId\":2512,\"cityName\":\"Chandi, Bihar\"},{\"cityId\":422,\"cityName\":\"Chandigarh, Chandigarh\"},{\"cityId\":598,\"cityName\":\"Chandikhol, Odisha\"},{\"cityId\":2269,\"cityName\":\"Chandipur, Odisha\"},{\"cityId\":1606,\"cityName\":\"Chandod, Gujarat\"},{\"cityId\":2229,\"cityName\":\"Chandole, Andhra Pradesh\"},{\"cityId\":626,\"cityName\":\"Chandpur, Uttar Pradesh\"},{\"cityId\":1958,\"cityName\":\"Chandpur, West Bengal\"},{\"cityId\":2710,\"cityName\":\"Chandrabadani Devi, Uttarakhand\"},{\"cityId\":1640,\"cityName\":\"Chandragiri, Andhra Pradesh\"},{\"cityId\":326,\"cityName\":\"Chandrapur, Maharashtra\"},{\"cityId\":2640,\"cityName\":\"Chandubi Lake, Assam\"},{\"cityId\":1854,\"cityName\":\"Chanere, Maharashtra\"},{\"cityId\":1454,\"cityName\":\"Changanacherry, Kerala\"},{\"cityId\":2020,\"cityName\":\"Changrabandha, West Bengal\"},{\"cityId\":2159,\"cityName\":\"Channapatna, Karnataka\"},{\"cityId\":2146,\"cityName\":\"Channarayapatna, Karnataka\"},{\"cityId\":2628,\"cityName\":\"Chanod, Gujarat\"},{\"cityId\":2827,\"cityName\":\"Chapora Beach, Goa\"},{\"cityId\":851,\"cityName\":\"Chapra, Bihar\"},{\"cityId\":774,\"cityName\":\"Charama, Chhattisgarh\"},{\"cityId\":2740,\"cityName\":\"Charcha, Chhattisgarh\"},{\"cityId\":1904,\"cityName\":\"Charibatia, Odisha\"},{\"cityId\":1932,\"cityName\":\"Charkhi dadri, Haryana\"},{\"cityId\":949,\"cityName\":\"Chatra, Jharkhand\"},{\"cityId\":2700,\"cityName\":\"Chaukhutiya, Uttarakhand\"},{\"cityId\":1823,\"cityName\":\"Chaumahla, Rajasthan\"},{\"cityId\":2306,\"cityName\":\"Chaurai, Madhya Pradesh\"},{\"cityId\":1727,\"cityName\":\"Cheemalapadu, Andhra Pradesh\"},{\"cityId\":1683,\"cityName\":\"Cheepurupalli, Andhra Pradesh\"},{\"cityId\":2648,\"cityName\":\"Chenari Chhotki, Bihar\"},{\"cityId\":627,\"cityName\":\"Chengalpattu, Tamil Nadu\"},{\"cityId\":1023,\"cityName\":\"Chengannur, Kerala\"},{\"cityId\":81,\"cityName\":\"Chennai, Tamil Nadu\"},{\"cityId\":2360,\"cityName\":\"Chennuru I, Andhra Pradesh\"},{\"cityId\":1825,\"cityName\":\"Chennuru, Andhra Pradesh\"},{\"cityId\":2679,\"cityName\":\"Cheog, Himachal Pradesh\"},{\"cityId\":1950,\"cityName\":\"Cherai, Kerala\"},{\"cityId\":1847,\"cityName\":\"Cheriyal, Telangana\"},{\"cityId\":2034,\"cityName\":\"Cherrapunjee, Meghalaya\"},{\"cityId\":2392,\"cityName\":\"Cherthala, Kerala\"},{\"cityId\":2082,\"cityName\":\"Cheyyar, Tamil Nadu\"},{\"cityId\":1846,\"cityName\":\"Cheyyur, Tamil Nadu\"},{\"cityId\":1931,\"cityName\":\"Chhainsa, Haryana\"},{\"cityId\":883,\"cityName\":\"Chhapra, Bihar\"},{\"cityId\":1896,\"cityName\":\"Chharodi, Gujarat\"},{\"cityId\":2576,\"cityName\":\"Chhatarpur, Madhya Pradesh\"},{\"cityId\":570,\"cityName\":\"Chhindwara, Madhya Pradesh\"},{\"cityId\":2741,\"cityName\":\"Chhuikhadan, Chhattisgarh\"},{\"cityId\":778,\"cityName\":\"Chichola, Chhattisgarh\"},{\"cityId\":200,\"cityName\":\"Chidambaram, Tamil Nadu\"},{\"cityId\":2870,\"cityName\":\"Chikhli, Gujarat\"},{\"cityId\":2239,\"cityName\":\"Chikka Tirupathi, Karnataka\"},{\"cityId\":628,\"cityName\":\"Chikkaballapur, Karnataka\"},{\"cityId\":394,\"cityName\":\"Chikmagalur, Karnataka\"},{\"cityId\":2909,\"cityName\":\"Chikodi, Karnataka\"},{\"cityId\":709,\"cityName\":\"Chilakaluripet, Andhra Pradesh\"},{\"cityId\":593,\"cityName\":\"Chilika Lake, Odisha\"},{\"cityId\":2403,\"cityName\":\"Chilkur Balaji Temple, Telangana\"},{\"cityId\":896,\"cityName\":\"Chiloda(Naroda), Gujarat\"},{\"cityId\":772,\"cityName\":\"Chilpi, Chhattisgarh\"},{\"cityId\":2002,\"cityName\":\"Chimbali, Maharashtra\"},{\"cityId\":1101,\"cityName\":\"Chinchani, Maharashtra\"},{\"cityId\":1252,\"cityName\":\"Chinnamanur, Tamil Nadu\"},{\"cityId\":2355,\"cityName\":\"Chinnar, Kerala\"},{\"cityId\":1253,\"cityName\":\"Chinnasalem, Tamil Nadu\"},{\"cityId\":2270,\"cityName\":\"Chinsurah, West Bengal\"},{\"cityId\":975,\"cityName\":\"Chintamani, Karnataka\"},{\"cityId\":2688,\"cityName\":\"Chintpurni, Himachal Pradesh\"},{\"cityId\":1102,\"cityName\":\"Chiplun, Maharashtra\"},{\"cityId\":710,\"cityName\":\"Chirala, Andhra Pradesh\"},{\"cityId\":629,\"cityName\":\"Chirawa, Rajasthan\"},{\"cityId\":950,\"cityName\":\"Chirkunda, Jharkhand\"},{\"cityId\":2742,\"cityName\":\"Chirmiri, Chhattisgarh\"},{\"cityId\":2283,\"cityName\":\"Chitra, Jharkhand\"},{\"cityId\":735,\"cityName\":\"Chitradurga, Karnataka\"},{\"cityId\":2667,\"cityName\":\"Chitrakoot Dham, Uttar Pradesh\"},{\"cityId\":2150,\"cityName\":\"Chitrakoot, Madhya Pradesh\"},{\"cityId\":520,\"cityName\":\"Chittaranjan, West Bengal\"},{\"cityId\":630,\"cityName\":\"Chittoor, Andhra Pradesh\"},{\"cityId\":314,\"cityName\":\"Chittorgarh, Rajasthan\"},{\"cityId\":1945,\"cityName\":\"Chokhi Dhani, Rajasthan\"},{\"cityId\":2024,\"cityName\":\"Chompi, Andhra Pradesh\"},{\"cityId\":1943,\"cityName\":\"Chomu, Rajasthan\"},{\"cityId\":2616,\"cityName\":\"Chopan, Uttar Pradesh\"},{\"cityId\":1103,\"cityName\":\"Chopda, Maharashtra\"},{\"cityId\":2112,\"cityName\":\"Chopta, Uttarakhand\"},{\"cityId\":2891,\"cityName\":\"Chotila, Gujarat\"},{\"cityId\":792,\"cityName\":\"Choutuppal, Telangana\"},{\"cityId\":2608,\"cityName\":\"Chunar, Uttar Pradesh\"},{\"cityId\":51,\"cityName\":\"Churu, Rajasthan\"},{\"cityId\":244,\"cityName\":\"Coimbatore, Tamil Nadu\"},{\"cityId\":2831,\"cityName\":\"Cola Beach, Goa\"},{\"cityId\":2629,\"cityName\":\"Colonelganj, Uttar Pradesh\"},{\"cityId\":2800,\"cityName\":\"Colva Beach, Goa\"},{\"cityId\":521,\"cityName\":\"Contai, West Bengal\"},{\"cityId\":2011,\"cityName\":\"Cooch Behar, West Bengal\"},{\"cityId\":410,\"cityName\":\"Coonoor, Tamil Nadu\"},{\"cityId\":441,\"cityName\":\"Coorg, Karnataka\"},{\"cityId\":2050,\"cityName\":\"Courtallam, Tamil Nadu\"},{\"cityId\":631,\"cityName\":\"Cuddalore, Tamil Nadu\"},{\"cityId\":2848,\"cityName\":\"Cumbum, Andhra Pradesh\"},{\"cityId\":887,\"cityName\":\"Cuncolim, Goa\"},{\"cityId\":2333,\"cityName\":\"Curti, Goa\"},{\"cityId\":8,\"cityName\":\"Cuttack, Odisha\"},{\"cityId\":1648,\"cityName\":\"Dabaspete, Karnataka\"},{\"cityId\":897,\"cityName\":\"Dabhoi, Gujarat\"},{\"cityId\":2833,\"cityName\":\"Dabolim Beach, Goa\"},{\"cityId\":2843,\"cityName\":\"Dabolim, Goa\"},{\"cityId\":2892,\"cityName\":\"Dabra, Madhya Pradesh\"},{\"cityId\":1585,\"cityName\":\"Dachepalle, Andhra Pradesh\"},{\"cityId\":1104,\"cityName\":\"Dahanu, Maharashtra\"},{\"cityId\":1897,\"cityName\":\"Dahegam, Gujarat\"},{\"cityId\":502,\"cityName\":\"Dahej, Gujarat\"},{\"cityId\":2374,\"cityName\":\"Dahisar, Maharashtra\"},{\"cityId\":496,\"cityName\":\"Dahod, Gujarat\"},{\"cityId\":478,\"cityName\":\"Dakor, Gujarat\"},{\"cityId\":2140,\"cityName\":\"Dal Lake, Jammu and Kashmir\"},{\"cityId\":2709,\"cityName\":\"Dalauda, Madhya Pradesh\"},{\"cityId\":222,\"cityName\":\"Dalhousie, Himachal Pradesh\"},{\"cityId\":2015,\"cityName\":\"Dalkhola, West Bengal\"},{\"cityId\":2743,\"cityName\":\"Dalli Rajhara, Chhattisgarh\"},{\"cityId\":2520,\"cityName\":\"Dalsinghsarai, Bihar\"},{\"cityId\":951,\"cityName\":\"Daltonganj, Jharkhand\"},{\"cityId\":360,\"cityName\":\"Daman, Daman and Diu\"},{\"cityId\":1053,\"cityName\":\"Damoh, Madhya Pradesh\"},{\"cityId\":1988,\"cityName\":\"Danapur, Bihar\"},{\"cityId\":976,\"cityName\":\"Dandeli, Karnataka\"},{\"cityId\":1957,\"cityName\":\"Dankuni, West Bengal\"},{\"cityId\":724,\"cityName\":\"Dantewada, Chhattisgarh\"},{\"cityId\":1455,\"cityName\":\"Dapoli, Maharashtra\"},{\"cityId\":2154,\"cityName\":\"Daramasthala, Karnataka\"},{\"cityId\":852,\"cityName\":\"Darbhanga, Bihar\"},{\"cityId\":594,\"cityName\":\"Daringbadi, Odisha\"},{\"cityId\":1456,\"cityName\":\"Darjeeling, West Bengal\"},{\"cityId\":1755,\"cityName\":\"Darlaghat, Himachal Pradesh\"},{\"cityId\":2716,\"cityName\":\"Darlipali, Odisha\"},{\"cityId\":1619,\"cityName\":\"Darsi, Andhra Pradesh\"},{\"cityId\":1729,\"cityName\":\"Dasuya, Punjab\"},{\"cityId\":1054,\"cityName\":\"Datia, Madhya Pradesh\"},{\"cityId\":853,\"cityName\":\"Daudnagar, Bihar\"},{\"cityId\":1105,\"cityName\":\"Daund, Maharashtra\"},{\"cityId\":1198,\"cityName\":\"Dausa, Rajasthan\"},{\"cityId\":736,\"cityName\":\"Davanagere, Karnataka\"},{\"cityId\":2027,\"cityName\":\"Dawki, Meghalaya\"},{\"cityId\":2876,\"cityName\":\"Deeg, Rajasthan\"},{\"cityId\":898,\"cityName\":\"Deesa, Gujarat\"},{\"cityId\":2929,\"cityName\":\"Degana, Rajasthan\"},{\"cityId\":899,\"cityName\":\"Dehgam, Gujarat\"},{\"cityId\":2847,\"cityName\":\"Dehra Gopipur, Himachal Pradesh\"},{\"cityId\":5,\"cityName\":\"Dehradun, Uttarakhand\"},{\"cityId\":2551,\"cityName\":\"Dehri, Bihar\"},{\"cityId\":632,\"cityName\":\"Deoband, Uttar Pradesh\"},{\"cityId\":2651,\"cityName\":\"Deogarh, Odisha\"},{\"cityId\":512,\"cityName\":\"Deoghar, Jharkhand\"},{\"cityId\":2422,\"cityName\":\"Deolali Gaon, Maharashtra\"},{\"cityId\":2421,\"cityName\":\"Deolali Pravara, Maharashtra\"},{\"cityId\":511,\"cityName\":\"Deolali, Maharashtra\"},{\"cityId\":779,\"cityName\":\"Deori, Chhattisgarh\"},{\"cityId\":1362,\"cityName\":\"Deoria, Uttar Pradesh\"},{\"cityId\":2685,\"cityName\":\"Deotsidh, Himachal Pradesh\"},{\"cityId\":2666,\"cityName\":\"Depalpura, Madhya Pradesh\"},{\"cityId\":2675,\"cityName\":\"Dergaon, Assam\"},{\"cityId\":1658,\"cityName\":\"Desuri, Rajasthan\"},{\"cityId\":1106,\"cityName\":\"Deulgaon, Maharashtra\"},{\"cityId\":977,\"cityName\":\"Devadurga, Karnataka\"},{\"cityId\":1254,\"cityName\":\"Devakottai, Tamil Nadu\"},{\"cityId\":1604,\"cityName\":\"Devala, Tamil Nadu\"},{\"cityId\":793,\"cityName\":\"Devarakonda, Telangana\"},{\"cityId\":1777,\"cityName\":\"Devgad, Maharashtra\"},{\"cityId\":2924,\"cityName\":\"Devipur, Uttar Pradesh\"},{\"cityId\":2098,\"cityName\":\"Devprayag, Uttarakhand\"},{\"cityId\":1647,\"cityName\":\"Devrukh, Maharashtra\"},{\"cityId\":571,\"cityName\":\"Dewas, Madhya Pradesh\"},{\"cityId\":2256,\"cityName\":\"Dhamdha, Chhattisgarh\"},{\"cityId\":1055,\"cityName\":\"Dhamnod, Madhya Pradesh\"},{\"cityId\":2612,\"cityName\":\"Dhamra, Odisha\"},{\"cityId\":725,\"cityName\":\"Dhamtari, Chhattisgarh\"},{\"cityId\":146,\"cityName\":\"Dhanbad, Jharkhand\"},{\"cityId\":900,\"cityName\":\"Dhandhuka, Gujarat\"},{\"cityId\":1964,\"cityName\":\"Dhaniakhali, West Bengal\"},{\"cityId\":1574,\"cityName\":\"Dhanolti, Uttarakhand\"},{\"cityId\":2250,\"cityName\":\"Dhansura, Gujarat\"},{\"cityId\":1056,\"cityName\":\"Dhar, Madhya Pradesh\"},{\"cityId\":2744,\"cityName\":\"Dharamjaigarh, Chhattisgarh\"},{\"cityId\":193,\"cityName\":\"Dharamshala, Himachal Pradesh\"},{\"cityId\":2059,\"cityName\":\"Dharapuram, Tamil Nadu\"},{\"cityId\":2887,\"cityName\":\"Dharmanagar, Tripura\"},{\"cityId\":634,\"cityName\":\"Dharmapuri, Tamil Nadu\"},{\"cityId\":2846,\"cityName\":\"Dharmasala, Kerala\"},{\"cityId\":1501,\"cityName\":\"Dharmasthala, Karnataka\"},{\"cityId\":794,\"cityName\":\"Dharmavaram, Andhra Pradesh\"},{\"cityId\":924,\"cityName\":\"Dharuhera, Haryana\"},{\"cityId\":611,\"cityName\":\"Dharwad, Karnataka\"},{\"cityId\":1822,\"cityName\":\"Dhasa, Gujarat\"},{\"cityId\":1172,\"cityName\":\"Dhenkanal, Odisha\"},{\"cityId\":2630,\"cityName\":\"Dholera, Gujarat\"},{\"cityId\":479,\"cityName\":\"Dholka, Gujarat\"},{\"cityId\":1457,\"cityName\":\"Dholpur, Rajasthan\"},{\"cityId\":1745,\"cityName\":\"Dhone, Andhra Pradesh\"},{\"cityId\":2570,\"cityName\":\"Dhoraji, Gujarat\"},{\"cityId\":2462,\"cityName\":\"Dhotrey, West Bengal\"},{\"cityId\":480,\"cityName\":\"Dhrangadhra, Gujarat\"},{\"cityId\":901,\"cityName\":\"Dhrol, Gujarat\"},{\"cityId\":2586,\"cityName\":\"Dhubri, Assam\"},{\"cityId\":742,\"cityName\":\"Dhule, Maharashtra\"},{\"cityId\":2949,\"cityName\":\"Dhuma, Madhya Pradesh\"},{\"cityId\":2021,\"cityName\":\"Dhupguri, West Bengal\"},{\"cityId\":522,\"cityName\":\"Diamond Harbour, West Bengal\"},{\"cityId\":2634,\"cityName\":\"Dibiyapur, Uttar Pradesh\"},{\"cityId\":2561,\"cityName\":\"Digboi, Assam\"},{\"cityId\":186,\"cityName\":\"Digha, West Bengal\"},{\"cityId\":854,\"cityName\":\"Dighwara, Bihar\"},{\"cityId\":2217,\"cityName\":\"Dindi, Andhra Pradesh\"},{\"cityId\":1255,\"cityName\":\"Dindigul, Tamil Nadu\"},{\"cityId\":2293,\"cityName\":\"Dindori, Madhya Pradesh\"},{\"cityId\":2916,\"cityName\":\"Diphu, Assam\"},{\"cityId\":2745,\"cityName\":\"Dipka, Chhattisgarh\"},{\"cityId\":2594,\"cityName\":\"Dirang, Meghalaya\"},{\"cityId\":472,\"cityName\":\"Diu, Daman and Diu\"},{\"cityId\":2318,\"cityName\":\"Diveagar Beach, Maharashtra\"},{\"cityId\":1558,\"cityName\":\"Doddaballapura, Karnataka\"},{\"cityId\":2316,\"cityName\":\"Domariyaganj, Uttar Pradesh\"},{\"cityId\":1977,\"cityName\":\"Dombivli, Maharashtra\"},{\"cityId\":561,\"cityName\":\"Domkal, West Bengal\"},{\"cityId\":2801,\"cityName\":\"Dona Paula Beach, Goa\"},{\"cityId\":1691,\"cityName\":\"Dongaon, Maharashtra\"},{\"cityId\":2746,\"cityName\":\"Dongargaon, Chhattisgarh\"},{\"cityId\":2253,\"cityName\":\"Dongargarh, Chhattisgarh\"},{\"cityId\":1984,\"cityName\":\"Dongri, Maharashtra\"},{\"cityId\":1672,\"cityName\":\"Dornakal, Telangana\"},{\"cityId\":2656,\"cityName\":\"Dostpur, Uttar Pradesh\"},{\"cityId\":1425,\"cityName\":\"Dubrajpur, West Bengal\"},{\"cityId\":2128,\"cityName\":\"Dugda, Jharkhand\"},{\"cityId\":2119,\"cityName\":\"Dum Dum, West Bengal\"},{\"cityId\":952,\"cityName\":\"Dumka, Jharkhand\"},{\"cityId\":855,\"cityName\":\"Dumraon, Bihar\"},{\"cityId\":1199,\"cityName\":\"Dungargarh, Rajasthan\"},{\"cityId\":1200,\"cityName\":\"Dungarpur, Rajasthan\"},{\"cityId\":758,\"cityName\":\"Durg, Chhattisgarh\"},{\"cityId\":323,\"cityName\":\"Durgapur, West Bengal\"},{\"cityId\":2875,\"cityName\":\"Durlaga, Odisha\"},{\"cityId\":2230,\"cityName\":\"Dwaraka Tirumala, Andhra Pradesh\"},{\"cityId\":481,\"cityName\":\"Dwarka, Gujarat\"},{\"cityId\":2127,\"cityName\":\"East Singhbhum, Jharkhand\"},{\"cityId\":1256,\"cityName\":\"Edappadi, Tamil Nadu\"},{\"cityId\":523,\"cityName\":\"Egra, West Bengal\"},{\"cityId\":1879,\"cityName\":\"Ekma, Bihar\"},{\"cityId\":1687,\"cityName\":\"Elavur, Tamil Nadu\"},{\"cityId\":2368,\"cityName\":\"Ellora, Maharashtra\"},{\"cityId\":265,\"cityName\":\"Eluru, Andhra Pradesh\"},{\"cityId\":1458,\"cityName\":\"Ernakulam, Kerala\"},{\"cityId\":400,\"cityName\":\"Erode, Tamil Nadu\"},{\"cityId\":635,\"cityName\":\"Etah, Uttar Pradesh\"},{\"cityId\":636,\"cityName\":\"Etawah, Uttar Pradesh\"},{\"cityId\":2861,\"cityName\":\"Ethe, Jharkhand\"},{\"cityId\":1257,\"cityName\":\"Ettayapuram, Tamil Nadu\"},{\"cityId\":2022,\"cityName\":\"Falakata, West Bengal\"},{\"cityId\":2268,\"cityName\":\"Farakka Barrage, West Bengal\"},{\"cityId\":2457,\"cityName\":\"Farakka, West Bengal\"},{\"cityId\":266,\"cityName\":\"Faridabad, Haryana\"},{\"cityId\":1179,\"cityName\":\"Faridkot, Punjab\"},{\"cityId\":1459,\"cityName\":\"Farrukhabad, Uttar Pradesh\"},{\"cityId\":610,\"cityName\":\"Fatehpur Sikri, Uttar Pradesh\"},{\"cityId\":603,\"cityName\":\"Fatehpur, Madhya Pradesh\"},{\"cityId\":1993,\"cityName\":\"Fatwah, Bihar\"},{\"cityId\":1180,\"cityName\":\"Fazilka, Punjab\"},{\"cityId\":1682,\"cityName\":\"Fazilnagar, Uttar Pradesh\"},{\"cityId\":607,\"cityName\":\"Firozabad, Uttar Pradesh\"},{\"cityId\":1181,\"cityName\":\"Firozpur, Punjab\"},{\"cityId\":856,\"cityName\":\"Forbesganj, Bihar\"},{\"cityId\":2017,\"cityName\":\"Fulbari, West Bengal\"},{\"cityId\":2900,\"cityName\":\"Fursungi, Maharashtra\"},{\"cityId\":1022,\"cityName\":\"Gadag, Karnataka\"},{\"cityId\":737,\"cityName\":\"Gadag-Betageri, Karnataka\"},{\"cityId\":2854,\"cityName\":\"Gadarpur, Uttarakhand\"},{\"cityId\":572,\"cityName\":\"Gadarwara, Madhya Pradesh\"},{\"cityId\":1107,\"cityName\":\"Gadchiroli, Maharashtra\"},{\"cityId\":1108,\"cityName\":\"Gadhinglaj, Maharashtra\"},{\"cityId\":795,\"cityName\":\"Gadwal, Telangana\"},{\"cityId\":2106,\"cityName\":\"Gairsain, Uttarakhand\"},{\"cityId\":796,\"cityName\":\"Gajapathinagaram, Andhra Pradesh\"},{\"cityId\":2899,\"cityName\":\"Gajendragad, Karnataka\"},{\"cityId\":79,\"cityName\":\"Gajraula, Uttar Pradesh\"},{\"cityId\":1568,\"cityName\":\"Gajwel, Telangana\"},{\"cityId\":2804,\"cityName\":\"Galgibaga Beach, Goa\"},{\"cityId\":2424,\"cityName\":\"Galiakot, Rajasthan\"},{\"cityId\":2249,\"cityName\":\"Ganagapura, Karnataka\"},{\"cityId\":925,\"cityName\":\"Ganaur, Haryana\"},{\"cityId\":2747,\"cityName\":\"Gandai, Chhattisgarh\"},{\"cityId\":19,\"cityName\":\"Gandhidham, Gujarat\"},{\"cityId\":241,\"cityName\":\"Gandhinagar, Gujarat\"},{\"cityId\":1201,\"cityName\":\"Ganganagar, Rajasthan\"},{\"cityId\":2797,\"cityName\":\"Gangapura, Karnataka\"},{\"cityId\":548,\"cityName\":\"Gangasagar, West Bengal\"},{\"cityId\":738,\"cityName\":\"Gangavathi, Karnataka\"},{\"cityId\":2917,\"cityName\":\"Gangoh, Uttar Pradesh\"},{\"cityId\":1411,\"cityName\":\"Gangotri, Uttarakhand\"},{\"cityId\":2429,\"cityName\":\"Gangtok, Sikkim\"},{\"cityId\":1667,\"cityName\":\"Gannavaram, Andhra Pradesh\"},{\"cityId\":2317,\"cityName\":\"Ganpatipule, Maharashtra\"},{\"cityId\":1363,\"cityName\":\"Garhmukteshwar, Uttar Pradesh\"},{\"cityId\":953,\"cityName\":\"Garhwa, Jharkhand\"},{\"cityId\":1828,\"cityName\":\"Gariyaband, Chhattisgarh\"},{\"cityId\":2703,\"cityName\":\"Gauchar, Uttarakhand\"},{\"cityId\":2748,\"cityName\":\"Gaurella, Chhattisgarh\"},{\"cityId\":978,\"cityName\":\"Gauribidanur, Karnataka\"},{\"cityId\":2503,\"cityName\":\"Gauriphanta, Uttar Pradesh\"},{\"cityId\":568,\"cityName\":\"Gazipur, Uttar Pradesh\"},{\"cityId\":726,\"cityName\":\"Geedam, Chhattisgarh\"},{\"cityId\":2259,\"cityName\":\"Gevra, Chhattisgarh\"},{\"cityId\":2103,\"cityName\":\"Ghansali Road, Uttarakhand\"},{\"cityId\":2749,\"cityName\":\"Gharghoda, Chhattisgarh\"},{\"cityId\":1797,\"cityName\":\"Ghatabillod, Madhya Pradesh\"},{\"cityId\":524,\"cityName\":\"Ghatal, West Bengal\"},{\"cityId\":2093,\"cityName\":\"Ghati Subramanya, Karnataka\"},{\"cityId\":1877,\"cityName\":\"Ghatkesar, Telangana\"},{\"cityId\":954,\"cityName\":\"Ghatshila, Jharkhand\"},{\"cityId\":32,\"cityName\":\"Ghaziabad, Uttar Pradesh\"},{\"cityId\":1364,\"cityName\":\"Ghazipur, Uttar Pradesh\"},{\"cityId\":2309,\"cityName\":\"Gholvad - Bordi Road, Maharashtra\"},{\"cityId\":2845,\"cityName\":\"Ghumarwin, Himachal Pradesh\"},{\"cityId\":1673,\"cityName\":\"Giddalur, Andhra Pradesh\"},{\"cityId\":2698,\"cityName\":\"Giddarbaha, Punjab\"},{\"cityId\":2088,\"cityName\":\"Gingee, Tamil Nadu\"},{\"cityId\":955,\"cityName\":\"Giridih, Jharkhand\"},{\"cityId\":2001,\"cityName\":\"Girinagar, Maharashtra\"},{\"cityId\":2294,\"cityName\":\"Girnar, Gujarat\"},{\"cityId\":2842,\"cityName\":\"Goa Velha, Goa\"},{\"cityId\":234,\"cityName\":\"Goa, Goa\"},{\"cityId\":2028,\"cityName\":\"Goalpara, Assam\"},{\"cityId\":1258,\"cityName\":\"Gobichettipalayam, Tamil Nadu\"},{\"cityId\":1182,\"cityName\":\"Gobindgarh, Punjab\"},{\"cityId\":2750,\"cityName\":\"Gobranawapara, Chhattisgarh\"},{\"cityId\":1685,\"cityName\":\"Godavarikhani, Telangana\"},{\"cityId\":956,\"cityName\":\"Godda, Jharkhand\"},{\"cityId\":482,\"cityName\":\"Godhra, Gujarat\"},{\"cityId\":2273,\"cityName\":\"Godkhali, West Bengal\"},{\"cityId\":2751,\"cityName\":\"Gogaon, Chhattisgarh\"},{\"cityId\":926,\"cityName\":\"Gohana, Haryana\"},{\"cityId\":2494,\"cityName\":\"Gohpur, Assam\"},{\"cityId\":979,\"cityName\":\"Gokak, Karnataka\"},{\"cityId\":1460,\"cityName\":\"Gokarna, Karnataka\"},{\"cityId\":2121,\"cityName\":\"Gokul, Uttar Pradesh\"},{\"cityId\":2597,\"cityName\":\"Gola Bazar, Uttar Pradesh\"},{\"cityId\":2029,\"cityName\":\"Golaghat, Assam\"},{\"cityId\":957,\"cityName\":\"Gomoh, Jharkhand\"},{\"cityId\":27,\"cityName\":\"Gonda, Uttar Pradesh\"},{\"cityId\":483,\"cityName\":\"Gondal, Gujarat\"},{\"cityId\":763,\"cityName\":\"Gondia, Maharashtra\"},{\"cityId\":2934,\"cityName\":\"Gonikopalu, Karnataka\"},{\"cityId\":797,\"cityName\":\"Gooty, Andhra Pradesh\"},{\"cityId\":857,\"cityName\":\"Gopalganj, Bihar\"},{\"cityId\":131,\"cityName\":\"Gopalpur, Odisha\"},{\"cityId\":113,\"cityName\":\"Gorakhpur, Uttar Pradesh\"},{\"cityId\":1694,\"cityName\":\"Gorantla, Andhra Pradesh\"},{\"cityId\":1365,\"cityName\":\"Gosainganj, Uttar Pradesh\"},{\"cityId\":1893,\"cityName\":\"Gota, Gujarat\"},{\"cityId\":1743,\"cityName\":\"Gotan, Rajasthan\"},{\"cityId\":2938,\"cityName\":\"Gotegaon, Madhya Pradesh\"},{\"cityId\":637,\"cityName\":\"Govardhan, Uttar Pradesh\"},{\"cityId\":2110,\"cityName\":\"Greater Noida, Uttar Pradesh\"},{\"cityId\":2168,\"cityName\":\"Gubbi, Karnataka\"},{\"cityId\":1259,\"cityName\":\"Gudalur, Tamil Nadu\"},{\"cityId\":711,\"cityName\":\"Gudivada, Andhra Pradesh\"},{\"cityId\":1260,\"cityName\":\"Gudiyatham, Tamil Nadu\"},{\"cityId\":638,\"cityName\":\"Gudur, Andhra Pradesh\"},{\"cityId\":1638,\"cityName\":\"Guduvanchery, Tamil Nadu\"},{\"cityId\":1110,\"cityName\":\"Guhagar, Maharashtra\"},{\"cityId\":1202,\"cityName\":\"Gulabpura, Rajasthan\"},{\"cityId\":253,\"cityName\":\"Gulbarga, Karnataka\"},{\"cityId\":944,\"cityName\":\"Gulmarg, Jammu and Kashmir\"},{\"cityId\":958,\"cityName\":\"Gumla, Jharkhand\"},{\"cityId\":1261,\"cityName\":\"Gummidipoondi, Tamil Nadu\"},{\"cityId\":2349,\"cityName\":\"Gummudipoondi, Tamil Nadu\"},{\"cityId\":573,\"cityName\":\"Guna, Madhya Pradesh\"},{\"cityId\":980,\"cityName\":\"Gundlupet, Karnataka\"},{\"cityId\":798,\"cityName\":\"Guntakal, Andhra Pradesh\"},{\"cityId\":176,\"cityName\":\"Guntur, Andhra Pradesh\"},{\"cityId\":1752,\"cityName\":\"Gurazala, Andhra Pradesh\"},{\"cityId\":457,\"cityName\":\"Gurdaspur, Punjab\"},{\"cityId\":73,\"cityName\":\"Gurgaon, Haryana\"},{\"cityId\":1024,\"cityName\":\"Guruvayoor, Kerala\"},{\"cityId\":2350,\"cityName\":\"Guruvayur, Kerala\"},{\"cityId\":2696,\"cityName\":\"Gushaini, Himachal Pradesh\"},{\"cityId\":2375,\"cityName\":\"Guwahati Airport, Assam\"},{\"cityId\":163,\"cityName\":\"Guwahati, Assam\"},{\"cityId\":220,\"cityName\":\"Gwalior, Madhya Pradesh\"},{\"cityId\":1366,\"cityName\":\"Gyanpur, Uttar Pradesh\"},{\"cityId\":525,\"cityName\":\"Habra, West Bengal\"},{\"cityId\":1738,\"cityName\":\"Hadapsar, Maharashtra\"},{\"cityId\":2585,\"cityName\":\"Haflong, Assam\"},{\"cityId\":2180,\"cityName\":\"Hagaribommanahalli, Karnataka\"},{\"cityId\":1986,\"cityName\":\"Hajipur, Bihar\"},{\"cityId\":317,\"cityName\":\"Haldia, West Bengal\"},{\"cityId\":2018,\"cityName\":\"Haldibari, West Bengal\"},{\"cityId\":252,\"cityName\":\"Haldwani, Uttarakhand\"},{\"cityId\":2144,\"cityName\":\"Halebeedu, Karnataka\"},{\"cityId\":2188,\"cityName\":\"Haliyal, Karnataka\"},{\"cityId\":902,\"cityName\":\"Halol, Gujarat\"},{\"cityId\":639,\"cityName\":\"Hamirpur, Himachal Pradesh\"},{\"cityId\":759,\"cityName\":\"Hampi, Karnataka\"},{\"cityId\":1533,\"cityName\":\"Hanamkonda, Telangana\"},{\"cityId\":1367,\"cityName\":\"Handia, Uttar Pradesh\"},{\"cityId\":981,\"cityName\":\"Hangal, Karnataka\"},{\"cityId\":640,\"cityName\":\"Hansi, Haryana\"},{\"cityId\":2223,\"cityName\":\"Hanuman Junction, Andhra Pradesh\"},{\"cityId\":641,\"cityName\":\"Hanumangarh, Rajasthan\"},{\"cityId\":2554,\"cityName\":\"Hanumantiya, Madhya Pradesh\"},{\"cityId\":642,\"cityName\":\"Hapur, Uttar Pradesh\"},{\"cityId\":643,\"cityName\":\"Harapanahalli, Karnataka\"},{\"cityId\":574,\"cityName\":\"Harda, Madhya Pradesh\"},{\"cityId\":1368,\"cityName\":\"Hardoi, Uttar Pradesh\"},{\"cityId\":404,\"cityName\":\"Haridwar, Uttarakhand\"},{\"cityId\":982,\"cityName\":\"Harihar, Karnataka\"},{\"cityId\":2264,\"cityName\":\"Haringhata, West Bengal\"},{\"cityId\":1636,\"cityName\":\"Haripad, Kerala\"},{\"cityId\":2613,\"cityName\":\"Harnaut, Bihar\"},{\"cityId\":2502,\"cityName\":\"Harraiya, Uttar Pradesh\"},{\"cityId\":1262,\"cityName\":\"Harur, Tamil Nadu\"},{\"cityId\":2454,\"cityName\":\"Hasimara, West Bengal\"},{\"cityId\":375,\"cityName\":\"Hassan, Karnataka\"},{\"cityId\":644,\"cityName\":\"Hathras, Uttar Pradesh\"},{\"cityId\":983,\"cityName\":\"Haveri, Karnataka\"},{\"cityId\":2543,\"cityName\":\"Hazaribag, Jharkhand\"},{\"cityId\":1552,\"cityName\":\"Hazaribagh, Jharkhand\"},{\"cityId\":1561,\"cityName\":\"Hazira, Gujarat\"},{\"cityId\":2722,\"cityName\":\"Hilsa, Bihar\"},{\"cityId\":484,\"cityName\":\"Himmatnagar, Gujarat\"},{\"cityId\":1203,\"cityName\":\"Hindaun, Rajasthan\"},{\"cityId\":600,\"cityName\":\"Hindol, Odisha\"},{\"cityId\":645,\"cityName\":\"Hindupur, Andhra Pradesh\"},{\"cityId\":743,\"cityName\":\"Hingoli, Maharashtra\"},{\"cityId\":1596,\"cityName\":\"Hinjawadi, Maharashtra\"},{\"cityId\":984,\"cityName\":\"Hiriyur, Karnataka\"},{\"cityId\":646,\"cityName\":\"Hisar, Haryana\"},{\"cityId\":858,\"cityName\":\"HisUA, Bihar\"},{\"cityId\":2409,\"cityName\":\"Hogenakkal, Tamil Nadu\"},{\"cityId\":2572,\"cityName\":\"Hojai, Assam\"},{\"cityId\":1563,\"cityName\":\"Holenarasipur, Karnataka\"},{\"cityId\":1602,\"cityName\":\"Honnavar, Karnataka\"},{\"cityId\":2008,\"cityName\":\"Hooghly, West Bengal\"},{\"cityId\":2177,\"cityName\":\"Hornadu, Karnataka\"},{\"cityId\":1639,\"cityName\":\"Hosadurga, Karnataka\"},{\"cityId\":1754,\"cityName\":\"Hosahalli, Karnataka\"},{\"cityId\":2213,\"cityName\":\"Hosanagara, Karnataka\"},{\"cityId\":770,\"cityName\":\"Hosapete, Karnataka\"},{\"cityId\":575,\"cityName\":\"Hoshangabad, Madhya Pradesh\"},{\"cityId\":454,\"cityName\":\"Hoshiarpur, Punjab\"},{\"cityId\":1866,\"cityName\":\"Hoskote, Karnataka\"},{\"cityId\":1263,\"cityName\":\"Hosur, Tamil Nadu\"},{\"cityId\":1461,\"cityName\":\"Howrah, West Bengal\"},{\"cityId\":2568,\"cityName\":\"Hozai Gaon, Assam\"},{\"cityId\":329,\"cityName\":\"Hubli, Karnataka\"},{\"cityId\":1805,\"cityName\":\"Hukkeri, Karnataka\"},{\"cityId\":2152,\"cityName\":\"Huliyar, Karnataka\"},{\"cityId\":1543,\"cityName\":\"Humnabad, Karnataka\"},{\"cityId\":2795,\"cityName\":\"Hungund, Karnataka\"},{\"cityId\":1871,\"cityName\":\"Hunsur, Karnataka\"},{\"cityId\":1719,\"cityName\":\"Huzurabad, Telangana\"},{\"cityId\":223,\"cityName\":\"Hyderabad, Telangana\"},{\"cityId\":1111,\"cityName\":\"Ichalkaranji, Maharashtra\"},{\"cityId\":799,\"cityName\":\"Ichchapuram, Andhra Pradesh\"},{\"cityId\":1835,\"cityName\":\"Ichhapur, Gujarat\"},{\"cityId\":2296,\"cityName\":\"Idar, Gujarat\"},{\"cityId\":1025,\"cityName\":\"Idukki, Kerala\"},{\"cityId\":1112,\"cityName\":\"Igatpuri, Maharashtra\"},{\"cityId\":1369,\"cityName\":\"Iglas, Uttar Pradesh\"},{\"cityId\":1264,\"cityName\":\"Ilayangudi, Tamil Nadu\"},{\"cityId\":986,\"cityName\":\"Ilkal, Karnataka\"},{\"cityId\":2412,\"cityName\":\"Imagica, Maharashtra\"},{\"cityId\":2595,\"cityName\":\"Imphal, Manipur\"},{\"cityId\":41,\"cityName\":\"Indore, Madhya Pradesh\"},{\"cityId\":1739,\"cityName\":\"Inkollu, Andhra Pradesh\"},{\"cityId\":2206,\"cityName\":\"Irinjalakuda, Kerala\"},{\"cityId\":1551,\"cityName\":\"Iritty, Kerala\"},{\"cityId\":1809,\"cityName\":\"Islampur, West Bengal\"},{\"cityId\":2284,\"cityName\":\"Itachuna, West Bengal\"},{\"cityId\":2007,\"cityName\":\"Itanagar, Arunachal Pradesh\"},{\"cityId\":142,\"cityName\":\"Itarsi, Madhya Pradesh\"},{\"cityId\":1769,\"cityName\":\"Itawa, Rajasthan\"},{\"cityId\":1851,\"cityName\":\"Itimha, Bihar\"},{\"cityId\":1852,\"cityName\":\"Itkori, Jharkhand\"},{\"cityId\":129,\"cityName\":\"Jabalpur, Madhya Pradesh\"},{\"cityId\":1518,\"cityName\":\"Jadcherla, Telangana\"},{\"cityId\":647,\"cityName\":\"Jagadhri, Haryana\"},{\"cityId\":2644,\"cityName\":\"Jagatsinghpur, Odisha\"},{\"cityId\":2508,\"cityName\":\"Jagdishpur, Bihar\"},{\"cityId\":1618,\"cityName\":\"Jaggayyapet, Andhra Pradesh\"},{\"cityId\":2611,\"cityName\":\"Jagiroad, Assam\"},{\"cityId\":450,\"cityName\":\"Jagraon, Punjab\"},{\"cityId\":2860,\"cityName\":\"Jagtial, Andhra Pradesh\"},{\"cityId\":2669,\"cityName\":\"Jahanabad, Bihar\"},{\"cityId\":2437,\"cityName\":\"Jaigaon, West Bengal\"},{\"cityId\":773,\"cityName\":\"Jaijaipur, Chhattisgarh\"},{\"cityId\":1885,\"cityName\":\"Jainagar, Bihar\"},{\"cityId\":330,\"cityName\":\"Jaipur, Rajasthan\"},{\"cityId\":2539,\"cityName\":\"Jais, Uttar Pradesh\"},{\"cityId\":152,\"cityName\":\"Jaisalmer, Rajasthan\"},{\"cityId\":1057,\"cityName\":\"Jaisinghnagar, Madhya Pradesh\"},{\"cityId\":1204,\"cityName\":\"Jaitaran, Rajasthan\"},{\"cityId\":1370,\"cityName\":\"Jaithara, Uttar Pradesh\"},{\"cityId\":1173,\"cityName\":\"Jajapur, Odisha\"},{\"cityId\":592,\"cityName\":\"Jajpur, Odisha\"},{\"cityId\":2635,\"cityName\":\"Jalalabad, Punjab\"},{\"cityId\":160,\"cityName\":\"Jalandhar, Punjab\"},{\"cityId\":2341,\"cityName\":\"Jalaun, Uttar Pradesh\"},{\"cityId\":2013,\"cityName\":\"Jaldapara, West Bengal\"},{\"cityId\":1113,\"cityName\":\"Jalgaon, Maharashtra\"},{\"cityId\":382,\"cityName\":\"Jalna, Maharashtra\"},{\"cityId\":1462,\"cityName\":\"Jalore, Rajasthan\"},{\"cityId\":1426,\"cityName\":\"Jalpaiguri, West Bengal\"},{\"cityId\":859,\"cityName\":\"Jamalpur, Bihar\"},{\"cityId\":903,\"cityName\":\"Jambusar, Gujarat\"},{\"cityId\":904,\"cityName\":\"Jamjodhpur, Gujarat\"},{\"cityId\":987,\"cityName\":\"Jamkhandi, Karnataka\"},{\"cityId\":800,\"cityName\":\"Jammalamadugu, Andhra Pradesh\"},{\"cityId\":1780,\"cityName\":\"Jammikunta, Telangana\"},{\"cityId\":104,\"cityName\":\"Jammu, Jammu and Kashmir\"},{\"cityId\":72,\"cityName\":\"Jamnagar, Gujarat\"},{\"cityId\":1786,\"cityName\":\"Jamner, Maharashtra\"},{\"cityId\":178,\"cityName\":\"Jamshedpur, Jharkhand\"},{\"cityId\":960,\"cityName\":\"Jamtara, Jharkhand\"},{\"cityId\":2131,\"cityName\":\"Jamua, Jharkhand\"},{\"cityId\":860,\"cityName\":\"Jamui, Bihar\"},{\"cityId\":2477,\"cityName\":\"Janakpur, Bihar\"},{\"cityId\":801,\"cityName\":\"Jangaon, Telangana\"},{\"cityId\":1688,\"cityName\":\"Jangareddigudem, Andhra Pradesh\"},{\"cityId\":2274,\"cityName\":\"Jangipur, West Bengal\"},{\"cityId\":1992,\"cityName\":\"Janipur, Bihar\"},{\"cityId\":2942,\"cityName\":\"Jaora, Madhya Pradesh\"},{\"cityId\":2752,\"cityName\":\"Jashpur Nagar, Chhattisgarh\"},{\"cityId\":2580,\"cityName\":\"Jasidih, Jharkhand\"},{\"cityId\":1566,\"cityName\":\"Jasol, Rajasthan\"},{\"cityId\":2491,\"cityName\":\"Jatahi, Bihar\"},{\"cityId\":1680,\"cityName\":\"Jath, Maharashtra\"},{\"cityId\":1888,\"cityName\":\"Jatni, Odisha\"},{\"cityId\":1371,\"cityName\":\"Jaunpur, Uttar Pradesh\"},{\"cityId\":1824,\"cityName\":\"Javagal, Karnataka\"},{\"cityId\":933,\"cityName\":\"Jawalamukhi, Himachal Pradesh\"},{\"cityId\":1706,\"cityName\":\"Jayal, Rajasthan\"},{\"cityId\":1265,\"cityName\":\"Jayankondam, Tamil Nadu\"},{\"cityId\":555,\"cityName\":\"Jayrambati, West Bengal\"},{\"cityId\":1114,\"cityName\":\"Jaysingpur, Maharashtra\"},{\"cityId\":861,\"cityName\":\"Jehanabad, Bihar\"},{\"cityId\":2323,\"cityName\":\"Jejuri, Maharashtra\"},{\"cityId\":2914,\"cityName\":\"Jetpur, Gujarat\"},{\"cityId\":2590,\"cityName\":\"Jeypore, Odisha\"},{\"cityId\":2290,\"cityName\":\"Jhabua, Madhya Pradesh\"},{\"cityId\":2753,\"cityName\":\"Jhagrakhand, Chhattisgarh\"},{\"cityId\":648,\"cityName\":\"Jhajjar, Haryana\"},{\"cityId\":1206,\"cityName\":\"Jhalawar, Rajasthan\"},{\"cityId\":2466,\"cityName\":\"Jhalong, West Bengal\"},{\"cityId\":2474,\"cityName\":\"Jhandi, West Bengal\"},{\"cityId\":862,\"cityName\":\"Jhanjharpur, Bihar\"},{\"cityId\":337,\"cityName\":\"Jhansi, Uttar Pradesh\"},{\"cityId\":526,\"cityName\":\"Jhargram, West Bengal\"},{\"cityId\":1372,\"cityName\":\"Jhinjhak, Uttar Pradesh\"},{\"cityId\":2130,\"cityName\":\"Jhumri Tilaiya, Jharkhand\"},{\"cityId\":389,\"cityName\":\"Jhunjhunu, Rajasthan\"},{\"cityId\":1207,\"cityName\":\"Jhunjhunun, Rajasthan\"},{\"cityId\":2379,\"cityName\":\"Jibhi, Himachal Pradesh\"},{\"cityId\":649,\"cityName\":\"Jim Corbett National Park, Uttarakhand\"},{\"cityId\":650,\"cityName\":\"Jind, Haryana\"},{\"cityId\":2526,\"cityName\":\"Jiyanpur, Uttar Pradesh\"},{\"cityId\":1946,\"cityName\":\"Jobner, Rajasthan\"},{\"cityId\":180,\"cityName\":\"Jodhpur, Rajasthan\"},{\"cityId\":1832,\"cityName\":\"Jodiya, Gujarat\"},{\"cityId\":2930,\"cityName\":\"Jog Falls, Karnataka\"},{\"cityId\":863,\"cityName\":\"Jogabani, Bihar\"},{\"cityId\":2583,\"cityName\":\"Jogbani, Bihar\"},{\"cityId\":2097,\"cityName\":\"Jolly Grant Airport, Uttarakhand\"},{\"cityId\":2470,\"cityName\":\"Jorethang, Sikkim\"},{\"cityId\":842,\"cityName\":\"Jorhat, Assam\"},{\"cityId\":2620,\"cityName\":\"Jowai, Meghalaya\"},{\"cityId\":2450,\"cityName\":\"Joya, Uttar Pradesh\"},{\"cityId\":934,\"cityName\":\"Jubbal, Himachal Pradesh\"},{\"cityId\":1933,\"cityName\":\"Julana, Haryana\"},{\"cityId\":485,\"cityName\":\"Junagadh, Gujarat\"},{\"cityId\":1115,\"cityName\":\"Junnar, Maharashtra\"},{\"cityId\":651,\"cityName\":\"Jwalapur, Uttarakhand\"},{\"cityId\":2172,\"cityName\":\"Kabini, Karnataka\"},{\"cityId\":2777,\"cityName\":\"Kadalur, Tamil Nadu\"},{\"cityId\":721,\"cityName\":\"Kadapa, Andhra Pradesh\"},{\"cityId\":1266,\"cityName\":\"Kadayanallur, Tamil Nadu\"},{\"cityId\":486,\"cityName\":\"Kadi, Gujarat\"},{\"cityId\":802,\"cityName\":\"Kadiri, Andhra Pradesh\"},{\"cityId\":1834,\"cityName\":\"Kadiyapulanka, Andhra Pradesh\"},{\"cityId\":2157,\"cityName\":\"Kadri, Karnataka\"},{\"cityId\":1753,\"cityName\":\"Kadthal, Telangana\"},{\"cityId\":988,\"cityName\":\"Kadur, Karnataka\"},{\"cityId\":1947,\"cityName\":\"Kaduthuruthy, Kerala\"},{\"cityId\":803,\"cityName\":\"Kagaznagar, Telangana\"},{\"cityId\":2582,\"cityName\":\"Kahalgaon, Bihar\"},{\"cityId\":1654,\"cityName\":\"Kaikaluru, Andhra Pradesh\"},{\"cityId\":2339,\"cityName\":\"Kaimganj, Uttar Pradesh\"},{\"cityId\":652,\"cityName\":\"Kaithal, Haryana\"},{\"cityId\":1758,\"cityName\":\"Kaiwara, Karnataka\"},{\"cityId\":1655,\"cityName\":\"Kajgaon, Maharashtra\"},{\"cityId\":2627,\"cityName\":\"Kakatpur, Odisha\"},{\"cityId\":549,\"cityName\":\"Kakdwip, West Bengal\"},{\"cityId\":325,\"cityName\":\"Kakinada, Andhra Pradesh\"},{\"cityId\":1955,\"cityName\":\"Kakkanad, Kerala\"},{\"cityId\":1938,\"cityName\":\"Kaladera, Rajasthan\"},{\"cityId\":2682,\"cityName\":\"Kalagarh, Uttar Pradesh\"},{\"cityId\":762,\"cityName\":\"Kalahandi, Odisha\"},{\"cityId\":2194,\"cityName\":\"Kalakada, Andhra Pradesh\"},{\"cityId\":2706,\"cityName\":\"Kalameshwar, Maharashtra\"},{\"cityId\":2933,\"cityName\":\"Kalasa, Karnataka\"},{\"cityId\":1862,\"cityName\":\"Kalasapadu, Andhra Pradesh\"},{\"cityId\":1720,\"cityName\":\"Kaleshwaram, Telangana\"},{\"cityId\":2207,\"cityName\":\"Kaligiri, Andhra Pradesh\"},{\"cityId\":1701,\"cityName\":\"Kalikiri, Andhra Pradesh\"},{\"cityId\":1428,\"cityName\":\"Kalimpong, West Bengal\"},{\"cityId\":2275,\"cityName\":\"Kalinagar, West Bengal\"},{\"cityId\":760,\"cityName\":\"Kalipatnam, Andhra Pradesh\"},{\"cityId\":2458,\"cityName\":\"Kaliyaganj, West Bengal\"},{\"cityId\":427,\"cityName\":\"Kalka, Haryana\"},{\"cityId\":2858,\"cityName\":\"Kallakkurichi, Tamil Nadu\"},{\"cityId\":1528,\"cityName\":\"Kallakurichi, Tamil Nadu\"},{\"cityId\":2075,\"cityName\":\"Kallanai, Tamil Nadu\"},{\"cityId\":2279,\"cityName\":\"Kalna, West Bengal\"},{\"cityId\":905,\"cityName\":\"Kalol, Gujarat\"},{\"cityId\":1553,\"cityName\":\"Kalpakkam, Tamil Nadu\"},{\"cityId\":2439,\"cityName\":\"Kalpetta, Kerala\"},{\"cityId\":605,\"cityName\":\"Kalpi, Uttar Pradesh\"},{\"cityId\":2214,\"cityName\":\"Kaluvaya, Andhra Pradesh\"},{\"cityId\":1978,\"cityName\":\"Kalyan, Maharashtra\"},{\"cityId\":804,\"cityName\":\"Kalyandurg, Andhra Pradesh\"},{\"cityId\":551,\"cityName\":\"Kalyani, West Bengal\"},{\"cityId\":2778,\"cityName\":\"Kamalapuram, Andhra Pradesh\"},{\"cityId\":1373,\"cityName\":\"Kamalganj, Uttar Pradesh\"},{\"cityId\":2174,\"cityName\":\"Kamalpur, West Bengal\"},{\"cityId\":465,\"cityName\":\"Kamareddy, Telangana\"},{\"cityId\":2547,\"cityName\":\"Kamarpukur, West Bengal\"},{\"cityId\":2189,\"cityName\":\"Kambainallur, Tamil Nadu\"},{\"cityId\":2202,\"cityName\":\"Kampli, Karnataka\"},{\"cityId\":1580,\"cityName\":\"Kamshet, Maharashtra\"},{\"cityId\":1968,\"cityName\":\"Kamuthi, Tamil Nadu\"},{\"cityId\":2055,\"cityName\":\"Kanadukathan, Tamil Nadu\"},{\"cityId\":989,\"cityName\":\"Kanakapura, Karnataka\"},{\"cityId\":2035,\"cityName\":\"Kanatal, Uttarakhand\"},{\"cityId\":2664,\"cityName\":\"Kanchanjuri, Assam\"},{\"cityId\":1659,\"cityName\":\"Kanchikacherla, Andhra Pradesh\"},{\"cityId\":224,\"cityName\":\"Kanchipuram, Tamil Nadu\"},{\"cityId\":1613,\"cityName\":\"Kandaghat, Himachal Pradesh\"},{\"cityId\":2563,\"cityName\":\"Kandi, West Bengal\"},{\"cityId\":2216,\"cityName\":\"Kandukur, Andhra Pradesh\"},{\"cityId\":2915,\"cityName\":\"Kangayam, Tamil Nadu\"},{\"cityId\":1927,\"cityName\":\"Kangayampalayam, Tamil Nadu\"},{\"cityId\":2060,\"cityName\":\"Kangeyam, Tamil Nadu\"},{\"cityId\":935,\"cityName\":\"Kangra, Himachal Pradesh\"},{\"cityId\":359,\"cityName\":\"Kanha, Madhya Pradesh\"},{\"cityId\":1026,\"cityName\":\"Kanhangad, Kerala\"},{\"cityId\":1511,\"cityName\":\"Kanigiri, Andhra Pradesh\"},{\"cityId\":1535,\"cityName\":\"Kanipakam, Andhra Pradesh\"},{\"cityId\":1665,\"cityName\":\"Kanji, Tamil Nadu\"},{\"cityId\":2380,\"cityName\":\"Kanjirappally, Kerala\"},{\"cityId\":1570,\"cityName\":\"Kankavali, Maharashtra\"},{\"cityId\":1116,\"cityName\":\"Kankavli, Maharashtra\"},{\"cityId\":728,\"cityName\":\"Kanker, Chhattisgarh\"},{\"cityId\":2278,\"cityName\":\"Kankinara, West Bengal\"},{\"cityId\":2885,\"cityName\":\"Kankroli, Rajasthan\"},{\"cityId\":2185,\"cityName\":\"Kannankurichi, Tamil Nadu\"},{\"cityId\":1374,\"cityName\":\"Kannauj, Uttar Pradesh\"},{\"cityId\":576,\"cityName\":\"Kannod, Madhya Pradesh\"},{\"cityId\":1027,\"cityName\":\"Kannur, Kerala\"},{\"cityId\":212,\"cityName\":\"Kanpur, Uttar Pradesh\"},{\"cityId\":445,\"cityName\":\"Kanyakumari, Tamil Nadu\"},{\"cityId\":455,\"cityName\":\"Kapurthala, Punjab\"},{\"cityId\":497,\"cityName\":\"Karad, Maharashtra\"},{\"cityId\":1177,\"cityName\":\"Karaikal, Puducherry\"},{\"cityId\":1268,\"cityName\":\"Karaikkudi, Tamil Nadu\"},{\"cityId\":1463,\"cityName\":\"Karaikudi, Tamil Nadu\"},{\"cityId\":1925,\"cityName\":\"Karamadai, Tamil Nadu\"},{\"cityId\":1208,\"cityName\":\"Karauli, Rajasthan\"},{\"cityId\":2319,\"cityName\":\"Karde, Maharashtra\"},{\"cityId\":2139,\"cityName\":\"Kargil, Jammu and Kashmir\"},{\"cityId\":2898,\"cityName\":\"Karimganj, Assam\"},{\"cityId\":221,\"cityName\":\"Karimnagar, Telangana\"},{\"cityId\":527,\"cityName\":\"Karimpur, West Bengal\"},{\"cityId\":1117,\"cityName\":\"Karjat, Maharashtra\"},{\"cityId\":1021,\"cityName\":\"Karkala, Karnataka\"},{\"cityId\":1118,\"cityName\":\"Karmala, Maharashtra\"},{\"cityId\":88,\"cityName\":\"Karnal, Haryana\"},{\"cityId\":2101,\"cityName\":\"Karnaprayag, Uttarakhand\"},{\"cityId\":1894,\"cityName\":\"Karoli, Gujarat\"},{\"cityId\":1269,\"cityName\":\"Karumathampatti, Tamil Nadu\"},{\"cityId\":2787,\"cityName\":\"Karunagappally, Kerala\"},{\"cityId\":1270,\"cityName\":\"Karur, Tamil Nadu\"},{\"cityId\":2091,\"cityName\":\"Karwar, Karnataka\"},{\"cityId\":2484,\"cityName\":\"Karwi, Uttar Pradesh\"},{\"cityId\":1733,\"cityName\":\"Kasara, Maharashtra\"},{\"cityId\":1464,\"cityName\":\"Kasaragod, Kerala\"},{\"cityId\":653,\"cityName\":\"Kasganj, Uttar Pradesh\"},{\"cityId\":1465,\"cityName\":\"Kashid, Maharashtra\"},{\"cityId\":654,\"cityName\":\"Kashipur, Uttarakhand\"},{\"cityId\":458,\"cityName\":\"Kasol, Himachal Pradesh\"},{\"cityId\":2657,\"cityName\":\"Kasrawad, Madhya Pradesh\"},{\"cityId\":2948,\"cityName\":\"Katangi, Madhya Pradesh\"},{\"cityId\":2754,\"cityName\":\"Katghora, Chhattisgarh\"},{\"cityId\":435,\"cityName\":\"Kathgodam, Uttarakhand\"},{\"cityId\":945,\"cityName\":\"Kathua, Jammu and Kashmir\"},{\"cityId\":864,\"cityName\":\"Katihar, Bihar\"},{\"cityId\":1086,\"cityName\":\"Katni, Madhya Pradesh\"},{\"cityId\":1119,\"cityName\":\"Katol, Maharashtra\"},{\"cityId\":2516,\"cityName\":\"Katoria, Bihar\"},{\"cityId\":1521,\"cityName\":\"Katpadi, Tamil Nadu\"},{\"cityId\":105,\"cityName\":\"Katra, Jammu and Kashmir\"},{\"cityId\":1705,\"cityName\":\"Katraj, Maharashtra\"},{\"cityId\":2134,\"cityName\":\"Katras, Jharkhand\"},{\"cityId\":2557,\"cityName\":\"Katrisarai, Bihar\"},{\"cityId\":528,\"cityName\":\"Katwa, West Bengal\"},{\"cityId\":2521,\"cityName\":\"Kauakole, Bihar\"},{\"cityId\":2693,\"cityName\":\"Kausani, Uttarakhand\"},{\"cityId\":2631,\"cityName\":\"Kaushambi, Uttar Pradesh\"},{\"cityId\":712,\"cityName\":\"Kavali, Andhra Pradesh\"},{\"cityId\":1841,\"cityName\":\"Kavas, Gujarat\"},{\"cityId\":1271,\"cityName\":\"Kaveripakkam, Tamil Nadu\"},{\"cityId\":2391,\"cityName\":\"Kaviyoor, Kerala\"},{\"cityId\":884,\"cityName\":\"Kawardha, Chhattisgarh\"},{\"cityId\":1029,\"cityName\":\"Kayamkulam, Kerala\"},{\"cityId\":2907,\"cityName\":\"Kaza, Himachal Pradesh\"},{\"cityId\":1539,\"cityName\":\"Kazipet, Telangana\"},{\"cityId\":2030,\"cityName\":\"Kaziranga, Assam\"},{\"cityId\":1414,\"cityName\":\"Kedarnath, Uttarakhand\"},{\"cityId\":1209,\"cityName\":\"Kekri, Rajasthan\"},{\"cityId\":1731,\"cityName\":\"Kelambakkam, Tamil Nadu\"},{\"cityId\":2331,\"cityName\":\"Kelshi, Maharashtra\"},{\"cityId\":2715,\"cityName\":\"Kenadhipa, Odisha\"},{\"cityId\":588,\"cityName\":\"Kendrapara, Odisha\"},{\"cityId\":2659,\"cityName\":\"Kenjakura, West Bengal\"},{\"cityId\":1466,\"cityName\":\"Keonjhar, Odisha\"},{\"cityId\":2282,\"cityName\":\"Keredari, Jharkhand\"},{\"cityId\":2951,\"cityName\":\"Keshkal, Chhattisgarh\"},{\"cityId\":906,\"cityName\":\"Keshod, Gujarat\"},{\"cityId\":2005,\"cityName\":\"Kesnand, Maharashtra\"},{\"cityId\":2867,\"cityName\":\"Kevadia, Gujarat\"},{\"cityId\":907,\"cityName\":\"Kevadiya, Gujarat\"},{\"cityId\":1375,\"cityName\":\"Khaga, Uttar Pradesh\"},{\"cityId\":865,\"cityName\":\"Khagaria, Bihar\"},{\"cityId\":1376,\"cityName\":\"Khair, Uttar Pradesh\"},{\"cityId\":2643,\"cityName\":\"Khairagarh, Chhattisgarh\"},{\"cityId\":2851,\"cityName\":\"Khairthal, Rajasthan\"},{\"cityId\":2654,\"cityName\":\"Khajauli, Bihar\"},{\"cityId\":2690,\"cityName\":\"Khajjiar, Himachal Pradesh\"},{\"cityId\":2486,\"cityName\":\"Khakhaicha, Uttar Pradesh\"},{\"cityId\":1377,\"cityName\":\"Khalilabad, Uttar Pradesh\"},{\"cityId\":1909,\"cityName\":\"Khamanon, Punjab\"},{\"cityId\":2638,\"cityName\":\"Khambhalia, Gujarat\"},{\"cityId\":487,\"cityName\":\"Khambhat, Gujarat\"},{\"cityId\":1120,\"cityName\":\"Khamgaon, Maharashtra\"},{\"cityId\":2755,\"cityName\":\"Khamhariya, Chhattisgarh\"},{\"cityId\":460,\"cityName\":\"Khammam, Telangana\"},{\"cityId\":103,\"cityName\":\"Khandwa, Madhya Pradesh\"},{\"cityId\":447,\"cityName\":\"Khanna, Punjab\"},{\"cityId\":201,\"cityName\":\"Kharagpur, West Bengal\"},{\"cityId\":655,\"cityName\":\"Kharar, Punjab\"},{\"cityId\":1058,\"cityName\":\"Khargone, Madhya Pradesh\"},{\"cityId\":1962,\"cityName\":\"Kharibari, West Bengal\"},{\"cityId\":2756,\"cityName\":\"Kharod, Chhattisgarh\"},{\"cityId\":2260,\"cityName\":\"Kharsia, Chhattisgarh\"},{\"cityId\":1378,\"cityName\":\"Khatauli, Uttar Pradesh\"},{\"cityId\":656,\"cityName\":\"Khatima, Uttarakhand\"},{\"cityId\":1717,\"cityName\":\"Khatu, Rajasthan\"},{\"cityId\":1121,\"cityName\":\"Khed, Maharashtra\"},{\"cityId\":2922,\"cityName\":\"Kheda, Gujarat\"},{\"cityId\":2894,\"cityName\":\"Khedbrahma, Gujarat\"},{\"cityId\":1935,\"cityName\":\"Khekra, Uttar Pradesh\"},{\"cityId\":2923,\"cityName\":\"Kherwara, Rajasthan\"},{\"cityId\":1210,\"cityName\":\"Khetri, Rajasthan\"},{\"cityId\":2658,\"cityName\":\"Khilchipur, Madhya Pradesh\"},{\"cityId\":2719,\"cityName\":\"Khinda, Odisha\"},{\"cityId\":2757,\"cityName\":\"Khongapani, Chhattisgarh\"},{\"cityId\":1122,\"cityName\":\"Khopoli, Maharashtra\"},{\"cityId\":1763,\"cityName\":\"Khudana, Haryana\"},{\"cityId\":2531,\"cityName\":\"Khunti, Jharkhand\"},{\"cityId\":1059,\"cityName\":\"Khurai, Madhya Pradesh\"},{\"cityId\":1468,\"cityName\":\"Khurda, Odisha\"},{\"cityId\":1379,\"cityName\":\"Khurja, Uttar Pradesh\"},{\"cityId\":1924,\"cityName\":\"Kinathukadavu, Tamil Nadu\"},{\"cityId\":2370,\"cityName\":\"Kinhavali, Maharashtra\"},{\"cityId\":2758,\"cityName\":\"Kirandul, Chhattisgarh\"},{\"cityId\":866,\"cityName\":\"Kishanganj, Bihar\"},{\"cityId\":657,\"cityName\":\"Kishangarh, Rajasthan\"},{\"cityId\":2720,\"cityName\":\"Kishunganj, Madhya Pradesh\"},{\"cityId\":320,\"cityName\":\"Kochi, Kerala\"},{\"cityId\":1707,\"cityName\":\"Kodad, Telangana\"},{\"cityId\":356,\"cityName\":\"Kodaikanal, Tamil Nadu\"},{\"cityId\":1853,\"cityName\":\"Kodakara, Kerala\"},{\"cityId\":2351,\"cityName\":\"Kodanad, Kerala\"},{\"cityId\":1695,\"cityName\":\"Kodangal, Telangana\"},{\"cityId\":1657,\"cityName\":\"Koderma, Jharkhand\"},{\"cityId\":1272,\"cityName\":\"Kodumudi, Tamil Nadu\"},{\"cityId\":2193,\"cityName\":\"Kodungallur, Kerala\"},{\"cityId\":1742,\"cityName\":\"Koduru, Andhra Pradesh\"},{\"cityId\":2591,\"cityName\":\"Kohima, Nagaland\"},{\"cityId\":2417,\"cityName\":\"Kolad, Maharashtra\"},{\"cityId\":529,\"cityName\":\"Kolaghat, West Bengal\"},{\"cityId\":2092,\"cityName\":\"Kolar Gold Fields, Karnataka\"},{\"cityId\":89,\"cityName\":\"Kolar, Karnataka\"},{\"cityId\":40,\"cityName\":\"Kolhapur, Maharashtra\"},{\"cityId\":36,\"cityName\":\"Kolkata, West Bengal\"},{\"cityId\":1030,\"cityName\":\"Kollam, Kerala\"},{\"cityId\":990,\"cityName\":\"Kollegal, Karnataka\"},{\"cityId\":2066,\"cityName\":\"Kollidam, Tamil Nadu\"},{\"cityId\":2215,\"cityName\":\"Kollur, Karnataka\"},{\"cityId\":2077,\"cityName\":\"Komarapalayam, Tamil Nadu\"},{\"cityId\":2310,\"cityName\":\"Kompally, Telangana\"},{\"cityId\":2399,\"cityName\":\"Komuravelli, Telangana\"},{\"cityId\":271,\"cityName\":\"Konark, Odisha\"},{\"cityId\":729,\"cityName\":\"Kondagaon, Chhattisgarh\"},{\"cityId\":1579,\"cityName\":\"Kondagattu, Telangana\"},{\"cityId\":2385,\"cityName\":\"Konni, Kerala\"},{\"cityId\":2364,\"cityName\":\"Kookal, Tamil Nadu\"},{\"cityId\":1123,\"cityName\":\"Kopargaon, Maharashtra\"},{\"cityId\":991,\"cityName\":\"Koppa, Karnataka\"},{\"cityId\":992,\"cityName\":\"Koppal, Karnataka\"},{\"cityId\":1380,\"cityName\":\"Koraon, Uttar Pradesh\"},{\"cityId\":1174,\"cityName\":\"Koraput, Odisha\"},{\"cityId\":2155,\"cityName\":\"Koratagere, Karnataka\"},{\"cityId\":730,\"cityName\":\"Korba, Chhattisgarh\"},{\"cityId\":1726,\"cityName\":\"Koregaon, Maharashtra\"},{\"cityId\":2850,\"cityName\":\"Kosi Kalan, Uttar Pradesh\"},{\"cityId\":2859,\"cityName\":\"Kot Kapura, Punjab\"},{\"cityId\":232,\"cityName\":\"Kota, Rajasthan\"},{\"cityId\":2354,\"cityName\":\"Kotagiri, Tamil Nadu\"},{\"cityId\":658,\"cityName\":\"Kotdwar, Uttarakhand\"},{\"cityId\":805,\"cityName\":\"Kothagudem, Telangana\"},{\"cityId\":2677,\"cityName\":\"Kothiya, Bihar\"},{\"cityId\":2410,\"cityName\":\"Kotilingeshwara Temple, Karnataka\"},{\"cityId\":1060,\"cityName\":\"Kotma, Madhya Pradesh\"},{\"cityId\":659,\"cityName\":\"Kotputli, Rajasthan\"},{\"cityId\":1549,\"cityName\":\"Kottarakkara, Kerala\"},{\"cityId\":1031,\"cityName\":\"Kottayam, Kerala\"},{\"cityId\":562,\"cityName\":\"Kotulpur, West Bengal\"},{\"cityId\":2085,\"cityName\":\"Kovalam, Kerala\"},{\"cityId\":1273,\"cityName\":\"Kovilpatti, Tamil Nadu\"},{\"cityId\":806,\"cityName\":\"Kovvur, Andhra Pradesh\"},{\"cityId\":2004,\"cityName\":\"Koyali, Maharashtra\"},{\"cityId\":2445,\"cityName\":\"Koyilandy, Kerala\"},{\"cityId\":2381,\"cityName\":\"Kozhencherry, Kerala\"},{\"cityId\":661,\"cityName\":\"Krishnagiri, Tamil Nadu\"},{\"cityId\":530,\"cityName\":\"Krishnanagar, West Bengal\"},{\"cityId\":2145,\"cityName\":\"Krishnarajpet, Karnataka\"},{\"cityId\":2187,\"cityName\":\"Krishnarayapuram, Tamil Nadu\"},{\"cityId\":2220,\"cityName\":\"Kuchipudi, Andhra Pradesh\"},{\"cityId\":2578,\"cityName\":\"Kudal, Maharashtra\"},{\"cityId\":1560,\"cityName\":\"Kudgi, Karnataka\"},{\"cityId\":993,\"cityName\":\"Kudligi, Karnataka\"},{\"cityId\":662,\"cityName\":\"Kufri, Himachal Pradesh\"},{\"cityId\":2095,\"cityName\":\"Kukke Subramanya, Karnataka\"},{\"cityId\":1061,\"cityName\":\"Kukshi, Madhya Pradesh\"},{\"cityId\":1817,\"cityName\":\"Kulasekharam, Tamil Nadu\"},{\"cityId\":2039,\"cityName\":\"Kulasekharapatnam, Tamil Nadu\"},{\"cityId\":1274,\"cityName\":\"Kulithalai, Tamil Nadu\"},{\"cityId\":228,\"cityName\":\"Kullu, Himachal Pradesh\"},{\"cityId\":2712,\"cityName\":\"Kulti, West Bengal\"},{\"cityId\":2393,\"cityName\":\"Kumarakom, Kerala\"},{\"cityId\":383,\"cityName\":\"Kumbakonam, Tamil Nadu\"},{\"cityId\":1836,\"cityName\":\"Kumbanad, Kerala\"},{\"cityId\":1470,\"cityName\":\"Kumily, Kerala\"},{\"cityId\":994,\"cityName\":\"Kumta, Karnataka\"},{\"cityId\":1381,\"cityName\":\"Kunda, Uttar Pradesh\"},{\"cityId\":1471,\"cityName\":\"Kundapur, Karnataka\"},{\"cityId\":1540,\"cityName\":\"Kundli, Haryana\"},{\"cityId\":1869,\"cityName\":\"Kunigal, Karnataka\"},{\"cityId\":1608,\"cityName\":\"Kunkuri, Chhattisgarh\"},{\"cityId\":807,\"cityName\":\"Kuppam, Andhra Pradesh\"},{\"cityId\":1916,\"cityName\":\"Kurali, Punjab\"},{\"cityId\":368,\"cityName\":\"Kurnool, Andhra Pradesh\"},{\"cityId\":1429,\"cityName\":\"Kurseong, West Bengal\"},{\"cityId\":2759,\"cityName\":\"Kurud, Chhattisgarh\"},{\"cityId\":663,\"cityName\":\"Kurukshetra, Haryana\"},{\"cityId\":2868,\"cityName\":\"Kushalgarh, Rajasthan\"},{\"cityId\":664,\"cityName\":\"Kushalnagar, Karnataka\"},{\"cityId\":1382,\"cityName\":\"Kushinagar, Uttar Pradesh\"},{\"cityId\":996,\"cityName\":\"Kushtagi, Karnataka\"},{\"cityId\":2779,\"cityName\":\"Kuttippuram, Kerala\"},{\"cityId\":2036,\"cityName\":\"Kuzhithurai, Tamil Nadu\"},{\"cityId\":2617,\"cityName\":\"Lachen, Sikkim\"},{\"cityId\":2621,\"cityName\":\"Lachung, Sikkim\"},{\"cityId\":1601,\"cityName\":\"Ladnun, Rajasthan\"},{\"cityId\":2884,\"cityName\":\"Laharpur, Uttar Pradesh\"},{\"cityId\":1882,\"cityName\":\"Laheriasarai, Bihar\"},{\"cityId\":1858,\"cityName\":\"Lakhanpur, Punjab\"},{\"cityId\":1211,\"cityName\":\"Lakheri, Rajasthan\"},{\"cityId\":2122,\"cityName\":\"Lakhimpur, Uttar Pradesh\"},{\"cityId\":867,\"cityName\":\"Lakhisarai, Bihar\"},{\"cityId\":2647,\"cityName\":\"Lakhnadon, Madhya Pradesh\"},{\"cityId\":2533,\"cityName\":\"Lalganj, Uttar Pradesh\"},{\"cityId\":2893,\"cityName\":\"Lalgarh Jattan, Rajasthan\"},{\"cityId\":2281,\"cityName\":\"Lalgarh, West Bengal\"},{\"cityId\":1383,\"cityName\":\"Lalitpur, Uttar Pradesh\"},{\"cityId\":2556,\"cityName\":\"Lalkuan, Uttarakhand\"},{\"cityId\":1913,\"cityName\":\"Lalru, Punjab\"},{\"cityId\":1212,\"cityName\":\"Lalsot, Rajasthan\"},{\"cityId\":2459,\"cityName\":\"Lamahatta, West Bengal\"},{\"cityId\":2096,\"cityName\":\"Lambasingi, Andhra Pradesh\"},{\"cityId\":2343,\"cityName\":\"Lambhua, Uttar Pradesh\"},{\"cityId\":2115,\"cityName\":\"Landour, Uttarakhand\"},{\"cityId\":1124,\"cityName\":\"Lanja, Maharashtra\"},{\"cityId\":1842,\"cityName\":\"Lankapalli, Andhra Pradesh\"},{\"cityId\":665,\"cityName\":\"Lansdowne, Uttarakhand\"},{\"cityId\":2718,\"cityName\":\"Lapanga, Odisha\"},{\"cityId\":2436,\"cityName\":\"Lataguri, West Bengal\"},{\"cityId\":2540,\"cityName\":\"Latehar, Jharkhand\"},{\"cityId\":744,\"cityName\":\"Latur, Maharashtra\"},{\"cityId\":1736,\"cityName\":\"Lava, West Bengal\"},{\"cityId\":1997,\"cityName\":\"Lavale, Maharashtra\"},{\"cityId\":503,\"cityName\":\"Lavasa, Maharashtra\"},{\"cityId\":1502,\"cityName\":\"Laxmangarh, Rajasthan\"},{\"cityId\":1183,\"cityName\":\"Lehragaga, Punjab\"},{\"cityId\":1692,\"cityName\":\"Liluah, West Bengal\"},{\"cityId\":997,\"cityName\":\"Lingsugur, Karnataka\"},{\"cityId\":1415,\"cityName\":\"Lohaghat, Uttarakhand\"},{\"cityId\":2132,\"cityName\":\"Lohardaga, Jharkhand\"},{\"cityId\":2691,\"cityName\":\"Lohari, Haryana\"},{\"cityId\":2871,\"cityName\":\"Loharu, Haryana\"},{\"cityId\":2472,\"cityName\":\"Lolegaon, West Bengal\"},{\"cityId\":508,\"cityName\":\"Lonand, Maharashtra\"},{\"cityId\":1510,\"cityName\":\"Lonere, Maharashtra\"},{\"cityId\":2334,\"cityName\":\"Loni, Maharashtra\"},{\"cityId\":1998,\"cityName\":\"Lonikand, Maharashtra\"},{\"cityId\":2760,\"cityName\":\"Lormi, Chhattisgarh\"},{\"cityId\":2,\"cityName\":\"Lucknow, Uttar Pradesh\"},{\"cityId\":339,\"cityName\":\"Ludhiana, Punjab\"},{\"cityId\":2577,\"cityName\":\"Lumding, Assam\"},{\"cityId\":908,\"cityName\":\"Lunawada, Gujarat\"},{\"cityId\":808,\"cityName\":\"Macherla, Andhra Pradesh\"},{\"cityId\":713,\"cityName\":\"Machilipatnam, Andhra Pradesh\"},{\"cityId\":2164,\"cityName\":\"Madakasira, Andhra Pradesh\"},{\"cityId\":714,\"cityName\":\"Madanapalle, Andhra Pradesh\"},{\"cityId\":2170,\"cityName\":\"Maddur, Karnataka\"},{\"cityId\":868,\"cityName\":\"Madhepura, Bihar\"},{\"cityId\":1704,\"cityName\":\"Madhira, Telangana\"},{\"cityId\":2342,\"cityName\":\"Madhuban, Uttar Pradesh\"},{\"cityId\":869,\"cityName\":\"Madhubani, Bihar\"},{\"cityId\":2156,\"cityName\":\"Madhugiri, Karnataka\"},{\"cityId\":2129,\"cityName\":\"Madhupur, Jharkhand\"},{\"cityId\":1884,\"cityName\":\"Madhwapur, Bihar\"},{\"cityId\":1965,\"cityName\":\"Madhyamgram, West Bengal\"},{\"cityId\":63,\"cityName\":\"Madurai, Tamil Nadu\"},{\"cityId\":1565,\"cityName\":\"Madurantakam, Tamil Nadu\"},{\"cityId\":2347,\"cityName\":\"Maduranthakam, Tamil Nadu\"},{\"cityId\":1868,\"cityName\":\"Magadi, Karnataka\"},{\"cityId\":59,\"cityName\":\"Mahabaleshwar, Maharashtra\"},{\"cityId\":115,\"cityName\":\"Mahabalipuram, Tamil Nadu\"},{\"cityId\":1746,\"cityName\":\"Mahabubabad, Telangana\"},{\"cityId\":1125,\"cityName\":\"Mahad, Maharashtra\"},{\"cityId\":1976,\"cityName\":\"Mahapoli, Maharashtra\"},{\"cityId\":2545,\"cityName\":\"Maharajganj, Uttar Pradesh\"},{\"cityId\":885,\"cityName\":\"Mahasamund, Chhattisgarh\"},{\"cityId\":466,\"cityName\":\"Mahbubnagar, Telangana\"},{\"cityId\":667,\"cityName\":\"Mahendragarh, Haryana\"},{\"cityId\":602,\"cityName\":\"Maheshwar, Madhya Pradesh\"},{\"cityId\":2639,\"cityName\":\"Mahishadal, West Bengal\"},{\"cityId\":1384,\"cityName\":\"Mahoba, Uttar Pradesh\"},{\"cityId\":2874,\"cityName\":\"Mahudha, Gujarat\"},{\"cityId\":1994,\"cityName\":\"Mahuli, Bihar\"},{\"cityId\":1610,\"cityName\":\"Mahurgad, Maharashtra\"},{\"cityId\":909,\"cityName\":\"Mahuva, Gujarat\"},{\"cityId\":1062,\"cityName\":\"Maihar, Madhya Pradesh\"},{\"cityId\":1385,\"cityName\":\"Mailani, Uttar Pradesh\"},{\"cityId\":668,\"cityName\":\"Mainpuri, Uttar Pradesh\"},{\"cityId\":870,\"cityName\":\"Mairwa, Bihar\"},{\"cityId\":1472,\"cityName\":\"Maithon, Jharkhand\"},{\"cityId\":2890,\"cityName\":\"Majhola, Uttar Pradesh\"},{\"cityId\":2819,\"cityName\":\"Majorda Beach, Goa\"},{\"cityId\":1213,\"cityName\":\"Makrana, Rajasthan\"},{\"cityId\":1063,\"cityName\":\"Maksi, Madhya Pradesh\"},{\"cityId\":2014,\"cityName\":\"Mal bazar, West Bengal\"},{\"cityId\":1033,\"cityName\":\"Malappuram, Kerala\"},{\"cityId\":2954,\"cityName\":\"Malavli, Maharashtra\"},{\"cityId\":540,\"cityName\":\"Malda, West Bengal\"},{\"cityId\":2161,\"cityName\":\"Male mahadeshwara hills, Karnataka\"},{\"cityId\":745,\"cityName\":\"Malegaon, Maharashtra\"},{\"cityId\":448,\"cityName\":\"Malerkotla, Punjab\"},{\"cityId\":2501,\"cityName\":\"Malihabad, Uttar Pradesh\"},{\"cityId\":2236,\"cityName\":\"Malikipuram, Andhra Pradesh\"},{\"cityId\":1126,\"cityName\":\"Malkapur, Maharashtra\"},{\"cityId\":1649,\"cityName\":\"Malkhed, Karnataka\"},{\"cityId\":2856,\"cityName\":\"Malliakkarai, Tamil Nadu\"},{\"cityId\":669,\"cityName\":\"Mallital, Uttarakhand\"},{\"cityId\":2186,\"cityName\":\"Malur, Karnataka\"},{\"cityId\":1473,\"cityName\":\"Malvan, Maharashtra\"},{\"cityId\":301,\"cityName\":\"Manali, Himachal Pradesh\"},{\"cityId\":1275,\"cityName\":\"Manamadurai, Tamil Nadu\"},{\"cityId\":2448,\"cityName\":\"Mananthavady, Kerala\"},{\"cityId\":2046,\"cityName\":\"Manapad, Tamil Nadu\"},{\"cityId\":2074,\"cityName\":\"Manapparai, Tamil Nadu\"},{\"cityId\":1064,\"cityName\":\"Manasa, Madhya Pradesh\"},{\"cityId\":2544,\"cityName\":\"Manawar, Madhya Pradesh\"},{\"cityId\":1127,\"cityName\":\"Manchar, Maharashtra\"},{\"cityId\":2244,\"cityName\":\"Mancherial, Telangana\"},{\"cityId\":2396,\"cityName\":\"Mancode, Kerala\"},{\"cityId\":1644,\"cityName\":\"Mandangad, Maharashtra\"},{\"cityId\":2243,\"cityName\":\"Mandapeta, Andhra Pradesh\"},{\"cityId\":1827,\"cityName\":\"Mandar, Rajasthan\"},{\"cityId\":541,\"cityName\":\"Mandarmani, West Bengal\"},{\"cityId\":1214,\"cityName\":\"Mandawa, Rajasthan\"},{\"cityId\":2869,\"cityName\":\"Mandi Dabwali, Haryana\"},{\"cityId\":190,\"cityName\":\"Mandi, Himachal Pradesh\"},{\"cityId\":2291,\"cityName\":\"Mandideep, Madhya Pradesh\"},{\"cityId\":1065,\"cityName\":\"Mandla, Madhya Pradesh\"},{\"cityId\":2818,\"cityName\":\"Mandrem Beach, Goa\"},{\"cityId\":1066,\"cityName\":\"Mandsaur, Madhya Pradesh\"},{\"cityId\":601,\"cityName\":\"Mandu, Madhya Pradesh\"},{\"cityId\":910,\"cityName\":\"Mandvi, Gujarat\"},{\"cityId\":670,\"cityName\":\"Mandya, Karnataka\"},{\"cityId\":2461,\"cityName\":\"Mane Bhanjang, West Bengal\"},{\"cityId\":1474,\"cityName\":\"Manesar, Haryana\"},{\"cityId\":1627,\"cityName\":\"Mangadu, Tamil Nadu\"},{\"cityId\":2237,\"cityName\":\"Mangalagiri, Andhra Pradesh\"},{\"cityId\":1918,\"cityName\":\"Mangalam, Tamil Nadu\"},{\"cityId\":2496,\"cityName\":\"Mangaldoi, Assam\"},{\"cityId\":191,\"cityName\":\"Mangalore, Karnataka\"},{\"cityId\":1599,\"cityName\":\"Mangaon, Maharashtra\"},{\"cityId\":2481,\"cityName\":\"Mangawan, Madhya Pradesh\"},{\"cityId\":2668,\"cityName\":\"Mangrol, Gujarat\"},{\"cityId\":2681,\"cityName\":\"Manikaran, Himachal Pradesh\"},{\"cityId\":1475,\"cityName\":\"Manipal, Karnataka\"},{\"cityId\":1386,\"cityName\":\"Mankapur, Uttar Pradesh\"},{\"cityId\":746,\"cityName\":\"Manmad, Maharashtra\"},{\"cityId\":1276,\"cityName\":\"Mannargudi, Tamil Nadu\"},{\"cityId\":2315,\"cityName\":\"Manor, Maharashtra\"},{\"cityId\":1820,\"cityName\":\"Manthani, Telangana\"},{\"cityId\":766,\"cityName\":\"Mantralayam, Andhra Pradesh\"},{\"cityId\":2238,\"cityName\":\"Manvi, Karnataka\"},{\"cityId\":2830,\"cityName\":\"Mapusaes Beach, Goa\"},{\"cityId\":1277,\"cityName\":\"Marakkanam, Tamil Nadu\"},{\"cityId\":2780,\"cityName\":\"Marandahalli, Tamil Nadu\"},{\"cityId\":2390,\"cityName\":\"Mararikulam, Kerala\"},{\"cityId\":2212,\"cityName\":\"Maravanthe beach, Karnataka\"},{\"cityId\":888,\"cityName\":\"Margao, Goa\"},{\"cityId\":1996,\"cityName\":\"Markal, Maharashtra\"},{\"cityId\":809,\"cityName\":\"Markapur, Andhra Pradesh\"},{\"cityId\":1590,\"cityName\":\"Markapuram, Andhra Pradesh\"},{\"cityId\":1476,\"cityName\":\"Marmagoa, Goa\"},{\"cityId\":1751,\"cityName\":\"Marthandam, Tamil Nadu\"},{\"cityId\":1734,\"cityName\":\"Martur, Andhra Pradesh\"},{\"cityId\":2599,\"cityName\":\"Masaurhi, Bihar\"},{\"cityId\":671,\"cityName\":\"Mashobra, Himachal Pradesh\"},{\"cityId\":2190,\"cityName\":\"Masinagudi, Tamil Nadu\"},{\"cityId\":2178,\"cityName\":\"Maski, Karnataka\"},{\"cityId\":2515,\"cityName\":\"Masrakh, Bihar\"},{\"cityId\":1895,\"cityName\":\"Matar, Gujarat\"},{\"cityId\":2369,\"cityName\":\"Matheran, Maharashtra\"},{\"cityId\":384,\"cityName\":\"Mathura, Uttar Pradesh\"},{\"cityId\":1971,\"cityName\":\"Mattuthavani, Tamil Nadu\"},{\"cityId\":2479,\"cityName\":\"Mau, Uttar Pradesh\"},{\"cityId\":1387,\"cityName\":\"Maudaha, Uttar Pradesh\"},{\"cityId\":1388,\"cityName\":\"Mauranipur, Uttar Pradesh\"},{\"cityId\":2384,\"cityName\":\"Mavelikkara, Kerala\"},{\"cityId\":2897,\"cityName\":\"Mavli, Rajasthan\"},{\"cityId\":2299,\"cityName\":\"Mawlynnong, Meghalaya\"},{\"cityId\":547,\"cityName\":\"Mayapur, West Bengal\"},{\"cityId\":1278,\"cityName\":\"Mayiladuthurai, Tamil Nadu\"},{\"cityId\":2451,\"cityName\":\"Maynaguri, West Bengal\"},{\"cityId\":2641,\"cityName\":\"McCluskieganj, Jharkhand\"},{\"cityId\":2377,\"cityName\":\"McLeod Ganj, Himachal Pradesh\"},{\"cityId\":672,\"cityName\":\"Medak, Telangana\"},{\"cityId\":1548,\"cityName\":\"Medchal, Telangana\"},{\"cityId\":2240,\"cityName\":\"Medigadda, Telangana\"},{\"cityId\":531,\"cityName\":\"Medinipur, West Bengal\"},{\"cityId\":1889,\"cityName\":\"Medra, Gujarat\"},{\"cityId\":15,\"cityName\":\"Meerut, Uttar Pradesh\"},{\"cityId\":1725,\"cityName\":\"Meham, Haryana\"},{\"cityId\":2697,\"cityName\":\"Mehandipur, Rajasthan\"},{\"cityId\":1129,\"cityName\":\"Mehkar, Maharashtra\"},{\"cityId\":2761,\"cityName\":\"Mehmand, Chhattisgarh\"},{\"cityId\":2509,\"cityName\":\"Mehnar, Bihar\"},{\"cityId\":2637,\"cityName\":\"Mehrauna, Uttar Pradesh\"},{\"cityId\":237,\"cityName\":\"Mehsana, Gujarat\"},{\"cityId\":1765,\"cityName\":\"Meja, Uttar Pradesh\"},{\"cityId\":1507,\"cityName\":\"Melmaruvathur, Tamil Nadu\"},{\"cityId\":1873,\"cityName\":\"Melukote, Karnataka\"},{\"cityId\":1279,\"cityName\":\"Melur, Tamil Nadu\"},{\"cityId\":1280,\"cityName\":\"Melvisharam, Tamil Nadu\"},{\"cityId\":1430,\"cityName\":\"Memari, West Bengal\"},{\"cityId\":1740,\"cityName\":\"Metpally, Telangana\"},{\"cityId\":1281,\"cityName\":\"Mettupalayam, Tamil Nadu\"},{\"cityId\":1282,\"cityName\":\"Mettur, Tamil Nadu\"},{\"cityId\":1807,\"cityName\":\"Mhasala, Maharashtra\"},{\"cityId\":1130,\"cityName\":\"Mhaswad, Maharashtra\"},{\"cityId\":1762,\"cityName\":\"Mhow, Madhya Pradesh\"},{\"cityId\":1283,\"cityName\":\"Minjur, Tamil Nadu\"},{\"cityId\":1983,\"cityName\":\"Mira bhayandar, Maharashtra\"},{\"cityId\":1090,\"cityName\":\"Miraj, Maharashtra\"},{\"cityId\":2841,\"cityName\":\"Miramar Beach, Goa\"},{\"cityId\":2645,\"cityName\":\"Mirganj, Bihar\"},{\"cityId\":2010,\"cityName\":\"Mirik, West Bengal\"},{\"cityId\":810,\"cityName\":\"Miryalaguda, Telangana\"},{\"cityId\":161,\"cityName\":\"Mirzapur, Uttar Pradesh\"},{\"cityId\":2824,\"cityName\":\"Mobor Beach, Goa\"},{\"cityId\":488,\"cityName\":\"Modasa, Gujarat\"},{\"cityId\":1929,\"cityName\":\"Modinagar, Uttar Pradesh\"},{\"cityId\":501,\"cityName\":\"Moga, Punjab\"},{\"cityId\":504,\"cityName\":\"Mohali, Punjab\"},{\"cityId\":1389,\"cityName\":\"Mohammadabad, Uttar Pradesh\"},{\"cityId\":2615,\"cityName\":\"Mohania, Bihar\"},{\"cityId\":2019,\"cityName\":\"Moinaguri, Assam\"},{\"cityId\":2514,\"cityName\":\"Mokama, Bihar\"},{\"cityId\":1506,\"cityName\":\"Moodbidri, Karnataka\"},{\"cityId\":2231,\"cityName\":\"Mopidevi, Andhra Pradesh\"},{\"cityId\":49,\"cityName\":\"Moradabad, Uttar Pradesh\"},{\"cityId\":2587,\"cityName\":\"Moranhat, Assam\"},{\"cityId\":509,\"cityName\":\"Morbi, Gujarat\"},{\"cityId\":1067,\"cityName\":\"Morena, Madhya Pradesh\"},{\"cityId\":1612,\"cityName\":\"Morigaon, Assam\"},{\"cityId\":1914,\"cityName\":\"Morinda, Punjab\"},{\"cityId\":2802,\"cityName\":\"Morjim Beach, Goa\"},{\"cityId\":2837,\"cityName\":\"Mormugao Beach, Goa\"},{\"cityId\":1917,\"cityName\":\"Morni Hills, Haryana\"},{\"cityId\":2124,\"cityName\":\"Motiganj, Odisha\"},{\"cityId\":871,\"cityName\":\"Motihari, Bihar\"},{\"cityId\":2619,\"cityName\":\"Motipur, Bihar\"},{\"cityId\":246,\"cityName\":\"Mount Abu, Rajasthan\"},{\"cityId\":2936,\"cityName\":\"Mudbidri, Karnataka\"},{\"cityId\":998,\"cityName\":\"Mudhol, Karnataka\"},{\"cityId\":2167,\"cityName\":\"Mudigere, Karnataka\"},{\"cityId\":2882,\"cityName\":\"Mughal Sarai, Uttar Pradesh\"},{\"cityId\":1390,\"cityName\":\"Mughalsarai, Uttar Pradesh\"},{\"cityId\":2683,\"cityName\":\"Mukerian, Punjab\"},{\"cityId\":2444,\"cityName\":\"Mukkam, Kerala\"},{\"cityId\":1477,\"cityName\":\"Mukteshwar, Uttarakhand\"},{\"cityId\":1184,\"cityName\":\"Muktsar, Punjab\"},{\"cityId\":2622,\"cityName\":\"Mukutmanipur, West Bengal\"},{\"cityId\":999,\"cityName\":\"Mulbagal, Karnataka\"},{\"cityId\":1000,\"cityName\":\"Mulki, Karnataka\"},{\"cityId\":2311,\"cityName\":\"Mulshi, Maharashtra\"},{\"cityId\":1068,\"cityName\":\"Multai, Madhya Pradesh\"},{\"cityId\":114,\"cityName\":\"Mumbai, Maharashtra\"},{\"cityId\":1676,\"cityName\":\"Mundakayam, Kerala\"},{\"cityId\":1581,\"cityName\":\"Mundawar, Rajasthan\"},{\"cityId\":1001,\"cityName\":\"Mundgod, Karnataka\"},{\"cityId\":489,\"cityName\":\"Mundra, Gujarat\"},{\"cityId\":731,\"cityName\":\"Mungeli, Chhattisgarh\"},{\"cityId\":872,\"cityName\":\"Munger, Bihar\"},{\"cityId\":2485,\"cityName\":\"Mungra Badshahpur, Uttar Pradesh\"},{\"cityId\":136,\"cityName\":\"Munnar, Kerala\"},{\"cityId\":2711,\"cityName\":\"Munsiari, Uttarakhand\"},{\"cityId\":1936,\"cityName\":\"Muradnagar, Uttar Pradesh\"},{\"cityId\":1131,\"cityName\":\"Murbad, Maharashtra\"},{\"cityId\":1431,\"cityName\":\"Murshidabad, West Bengal\"},{\"cityId\":1530,\"cityName\":\"Murthal, Haryana\"},{\"cityId\":2464,\"cityName\":\"Murti, West Bengal\"},{\"cityId\":1132,\"cityName\":\"Murtijapur, Maharashtra\"},{\"cityId\":1133,\"cityName\":\"Murud, Maharashtra\"},{\"cityId\":1863,\"cityName\":\"Murudeshwar, Karnataka\"},{\"cityId\":1134,\"cityName\":\"Murum, Maharashtra\"},{\"cityId\":1284,\"cityName\":\"Musiri, Tamil Nadu\"},{\"cityId\":112,\"cityName\":\"Mussoorie, Uttarakhand\"},{\"cityId\":1715,\"cityName\":\"Muthanga, Kerala\"},{\"cityId\":1839,\"cityName\":\"Muthukulathur, Tamil Nadu\"},{\"cityId\":1034,\"cityName\":\"Muvattupuzha, Kerala\"},{\"cityId\":374,\"cityName\":\"Muzaffarnagar, Uttar Pradesh\"},{\"cityId\":270,\"cityName\":\"Muzaffarpur, Bihar\"},{\"cityId\":1609,\"cityName\":\"Mydukur, Andhra Pradesh\"},{\"cityId\":203,\"cityName\":\"Mysore, Karnataka\"},{\"cityId\":532,\"cityName\":\"Nabadwip, West Bengal\"},{\"cityId\":1185,\"cityName\":\"Nabha, Punjab\"},{\"cityId\":2443,\"cityName\":\"Nadapuram, Kerala\"},{\"cityId\":2276,\"cityName\":\"Nadia, West Bengal\"},{\"cityId\":490,\"cityName\":\"Nadiad, Gujarat\"},{\"cityId\":2197,\"cityName\":\"Nagamangala, Karnataka\"},{\"cityId\":2031,\"cityName\":\"Nagaon, Assam\"},{\"cityId\":1285,\"cityName\":\"Nagapattinam, Tamil Nadu\"},{\"cityId\":2935,\"cityName\":\"Nagarahole, Karnataka\"},{\"cityId\":2362,\"cityName\":\"Nagari, Andhra Pradesh\"},{\"cityId\":2400,\"cityName\":\"Nagarjuna Sagar Dam, Telangana\"},{\"cityId\":2120,\"cityName\":\"Nagarnausa, Bihar\"},{\"cityId\":2889,\"cityName\":\"Nagarsul, Maharashtra\"},{\"cityId\":239,\"cityName\":\"Nagaur, Rajasthan\"},{\"cityId\":1069,\"cityName\":\"Nagda, Madhya Pradesh\"},{\"cityId\":99,\"cityName\":\"Nagercoil, Tamil Nadu\"},{\"cityId\":673,\"cityName\":\"Nagina, Uttar Pradesh\"},{\"cityId\":1747,\"cityName\":\"Nagole, Telangana\"},{\"cityId\":1478,\"cityName\":\"Nagothane, Maharashtra\"},{\"cityId\":35,\"cityName\":\"Nagpur, Maharashtra\"},{\"cityId\":2430,\"cityName\":\"Naharlagun, Arunachal Pradesh\"},{\"cityId\":1614,\"cityName\":\"Naidupeta, Andhra Pradesh\"},{\"cityId\":1479,\"cityName\":\"Naihati, West Bengal\"},{\"cityId\":2762,\"cityName\":\"Naila Janjgir, Chhattisgarh\"},{\"cityId\":591,\"cityName\":\"Naimisharanya, Uttar Pradesh\"},{\"cityId\":43,\"cityName\":\"Nainital, Uttarakhand\"},{\"cityId\":2940,\"cityName\":\"Nainpur, Madhya Pradesh\"},{\"cityId\":2905,\"cityName\":\"Nakashipara, West Bengal\"},{\"cityId\":453,\"cityName\":\"Nakodar, Punjab\"},{\"cityId\":936,\"cityName\":\"Nalagarh, Himachal Pradesh\"},{\"cityId\":2542,\"cityName\":\"Nalanda, Bihar\"},{\"cityId\":1135,\"cityName\":\"Nalasopara, Maharashtra\"},{\"cityId\":2497,\"cityName\":\"Nalbari, Assam\"},{\"cityId\":467,\"cityName\":\"Nalgonda, Telangana\"},{\"cityId\":2579,\"cityName\":\"Nalhati, West Bengal\"},{\"cityId\":2552,\"cityName\":\"Nalkheda, Madhya Pradesh\"},{\"cityId\":1623,\"cityName\":\"Nalsarovar, Gujarat\"},{\"cityId\":1286,\"cityName\":\"Namakkal, Tamil Nadu\"},{\"cityId\":2468,\"cityName\":\"Namchi, Sikkim\"},{\"cityId\":556,\"cityName\":\"Namkhana, West Bengal\"},{\"cityId\":2618,\"cityName\":\"Namsai, Arunachal Pradesh\"},{\"cityId\":385,\"cityName\":\"Nanded, Maharashtra\"},{\"cityId\":439,\"cityName\":\"Nandi Hills, Karnataka\"},{\"cityId\":1512,\"cityName\":\"Nandigama, Andhra Pradesh\"},{\"cityId\":498,\"cityName\":\"Nandurbar, Maharashtra\"},{\"cityId\":715,\"cityName\":\"Nandyal, Andhra Pradesh\"},{\"cityId\":1838,\"cityName\":\"Nandyala, Andhra Pradesh\"},{\"cityId\":1186,\"cityName\":\"Nangal, Punjab\"},{\"cityId\":2049,\"cityName\":\"Nanguneri, Tamil Nadu\"},{\"cityId\":1002,\"cityName\":\"Nanjangud, Karnataka\"},{\"cityId\":1391,\"cityName\":\"Nanpara, Uttar Pradesh\"},{\"cityId\":927,\"cityName\":\"Naraingarh(MC), Haryana\"},{\"cityId\":1603,\"cityName\":\"Narasannapeta, Andhra Pradesh\"},{\"cityId\":716,\"cityName\":\"Narasaraopet, Andhra Pradesh\"},{\"cityId\":1003,\"cityName\":\"Narasimharajapura, Karnataka\"},{\"cityId\":1967,\"cityName\":\"Narasingam, Tamil Nadu\"},{\"cityId\":1503,\"cityName\":\"Narayangaon, Maharashtra\"},{\"cityId\":2687,\"cityName\":\"Narkanda, Himachal Pradesh\"},{\"cityId\":2567,\"cityName\":\"Narkatiaganj, Bihar\"},{\"cityId\":676,\"cityName\":\"Narnaul, Haryana\"},{\"cityId\":1681,\"cityName\":\"Narora, Uttar Pradesh\"},{\"cityId\":2248,\"cityName\":\"Narsampet, Telangana\"},{\"cityId\":2221,\"cityName\":\"Narsapur, Telangana\"},{\"cityId\":2534,\"cityName\":\"Narsinghgarh, Madhya Pradesh\"},{\"cityId\":364,\"cityName\":\"Narsinghpur, Madhya Pradesh\"},{\"cityId\":811,\"cityName\":\"Narsipatnam, Andhra Pradesh\"},{\"cityId\":928,\"cityName\":\"Narwana, Haryana\"},{\"cityId\":2878,\"cityName\":\"Nasaratgarh, Madhya Pradesh\"},{\"cityId\":294,\"cityName\":\"Nashik, Maharashtra\"},{\"cityId\":1215,\"cityName\":\"Nasirabad, Rajasthan\"},{\"cityId\":91,\"cityName\":\"Nathdwara, Rajasthan\"},{\"cityId\":2363,\"cityName\":\"Natrampalli, Tamil Nadu\"},{\"cityId\":2048,\"cityName\":\"Nattam, Tamil Nadu\"},{\"cityId\":1741,\"cityName\":\"Naugarh, Uttar Pradesh\"},{\"cityId\":2789,\"cityName\":\"Naukuchiatal, Uttarakhand\"},{\"cityId\":1392,\"cityName\":\"Nautanwa, Uttar Pradesh\"},{\"cityId\":1855,\"cityName\":\"Navalur, Tamil Nadu\"},{\"cityId\":1641,\"cityName\":\"Navapur, Maharashtra\"},{\"cityId\":1980,\"cityName\":\"Navghar, Maharashtra\"},{\"cityId\":747,\"cityName\":\"Navi Mumbai, Maharashtra\"},{\"cityId\":233,\"cityName\":\"Navsari, Gujarat\"},{\"cityId\":1216,\"cityName\":\"Nawa, Rajasthan\"},{\"cityId\":873,\"cityName\":\"Nawada, Bihar\"},{\"cityId\":677,\"cityName\":\"Nawalgarh, Rajasthan\"},{\"cityId\":2853,\"cityName\":\"Nawanshahr, Punjab\"},{\"cityId\":2763,\"cityName\":\"Naya Baradwar, Chhattisgarh\"},{\"cityId\":589,\"cityName\":\"Nayagarh, Odisha\"},{\"cityId\":2849,\"cityName\":\"Nedumbassery, Kerala\"},{\"cityId\":2043,\"cityName\":\"Needamangalam, Tamil Nadu\"},{\"cityId\":678,\"cityName\":\"Neem ka thana, Rajasthan\"},{\"cityId\":679,\"cityName\":\"Neemrana, Rajasthan\"},{\"cityId\":1070,\"cityName\":\"Neemuch, Madhya Pradesh\"},{\"cityId\":1004,\"cityName\":\"Nelamangala, Karnataka\"},{\"cityId\":264,\"cityName\":\"Nellore, Andhra Pradesh\"},{\"cityId\":2781,\"cityName\":\"Nellyadi, Karnataka\"},{\"cityId\":2179,\"cityName\":\"Nemili, Tamil Nadu\"},{\"cityId\":2210,\"cityName\":\"Nenmara, Kerala\"},{\"cityId\":1136,\"cityName\":\"Neral, Maharashtra\"},{\"cityId\":2433,\"cityName\":\"Netarhat, Jharkhand\"},{\"cityId\":145,\"cityName\":\"New Delhi, Delhi\"},{\"cityId\":2546,\"cityName\":\"New Jalpaiguri, West Bengal\"},{\"cityId\":2902,\"cityName\":\"Neyveli T.S, Tamil Nadu\"},{\"cityId\":1288,\"cityName\":\"Neyveli, Tamil Nadu\"},{\"cityId\":812,\"cityName\":\"Nidadavole, Andhra Pradesh\"},{\"cityId\":1969,\"cityName\":\"Nilaiyur, Tamil Nadu\"},{\"cityId\":2041,\"cityName\":\"Nilakottai, Tamil Nadu\"},{\"cityId\":1519,\"cityName\":\"Nilambur, Kerala\"},{\"cityId\":2387,\"cityName\":\"Nilamel, Kerala\"},{\"cityId\":1137,\"cityName\":\"Nilanga, Maharashtra\"},{\"cityId\":1669,\"cityName\":\"Nileshwar, Kerala\"},{\"cityId\":1902,\"cityName\":\"Nimapada, Odisha\"},{\"cityId\":1217,\"cityName\":\"Nimbahera, Rajasthan\"},{\"cityId\":2090,\"cityName\":\"Nipani, Karnataka\"},{\"cityId\":2184,\"cityName\":\"Nippani, Karnataka\"},{\"cityId\":813,\"cityName\":\"Nirmal, Telangana\"},{\"cityId\":2135,\"cityName\":\"Nirsa, Jharkhand\"},{\"cityId\":2141,\"cityName\":\"Nishat Bagh, Jammu and Kashmir\"},{\"cityId\":177,\"cityName\":\"Nizamabad, Telangana\"},{\"cityId\":348,\"cityName\":\"Noida, Uttar Pradesh\"},{\"cityId\":1393,\"cityName\":\"Noorpur, Uttar Pradesh\"},{\"cityId\":2903,\"cityName\":\"North Lakhimpur, Assam\"},{\"cityId\":2394,\"cityName\":\"North Paravur, Kerala\"},{\"cityId\":2584,\"cityName\":\"Numaligarh, Assam\"},{\"cityId\":937,\"cityName\":\"Nurpur, Himachal Pradesh\"},{\"cityId\":2246,\"cityName\":\"Nuzividu, Andhra Pradesh\"},{\"cityId\":814,\"cityName\":\"Nuzvid, Andhra Pradesh\"},{\"cityId\":2383,\"cityName\":\"Oachira, Kerala\"},{\"cityId\":1394,\"cityName\":\"Obra, Uttar Pradesh\"},{\"cityId\":1289,\"cityName\":\"Oddanchatram, Tamil Nadu\"},{\"cityId\":1660,\"cityName\":\"Ojhar, Maharashtra\"},{\"cityId\":2928,\"cityName\":\"Okha, Gujarat\"},{\"cityId\":2332,\"cityName\":\"Omerga, Maharashtra\"},{\"cityId\":577,\"cityName\":\"Omkareshwar, Madhya Pradesh\"},{\"cityId\":717,\"cityName\":\"Ongole, Andhra Pradesh\"},{\"cityId\":425,\"cityName\":\"Ooty, Tamil Nadu\"},{\"cityId\":1556,\"cityName\":\"Oragadam, Tamil Nadu\"},{\"cityId\":604,\"cityName\":\"Orai, Uttar Pradesh\"},{\"cityId\":2498,\"cityName\":\"Orchha, Madhya Pradesh\"},{\"cityId\":2405,\"cityName\":\"Osian, Rajasthan\"},{\"cityId\":748,\"cityName\":\"Osmanabad, Maharashtra\"},{\"cityId\":2047,\"cityName\":\"Ottapidaram, Tamil Nadu\"},{\"cityId\":1035,\"cityName\":\"Ottappalam, Kerala\"},{\"cityId\":1678,\"cityName\":\"Otur, Maharashtra\"},{\"cityId\":1138,\"cityName\":\"Ozar, Maharashtra\"},{\"cityId\":2104,\"cityName\":\"Pabau, Uttarakhand\"},{\"cityId\":1139,\"cityName\":\"Pachora, Maharashtra\"},{\"cityId\":1941,\"cityName\":\"Padampura, Rajasthan\"},{\"cityId\":2844,\"cityName\":\"Padla, Haryana\"},{\"cityId\":1290,\"cityName\":\"Padmanabhapuram, Tamil Nadu\"},{\"cityId\":1395,\"cityName\":\"Padrauna, Uttar Pradesh\"},{\"cityId\":2137,\"cityName\":\"Pahalgam, Jammu and Kashmir\"},{\"cityId\":1981,\"cityName\":\"Paigaon, Maharashtra\"},{\"cityId\":1140,\"cityName\":\"Paithan, Maharashtra\"},{\"cityId\":1633,\"cityName\":\"Pakala, Andhra Pradesh\"},{\"cityId\":2262,\"cityName\":\"Pakur, Jharkhand\"},{\"cityId\":381,\"cityName\":\"Palakkad, Kerala\"},{\"cityId\":761,\"cityName\":\"Palakollu, Andhra Pradesh\"},{\"cityId\":1537,\"cityName\":\"Palamaner, Andhra Pradesh\"},{\"cityId\":174,\"cityName\":\"Palampur, Himachal Pradesh\"},{\"cityId\":1291,\"cityName\":\"Palani, Tamil Nadu\"},{\"cityId\":491,\"cityName\":\"Palanpur, Gujarat\"},{\"cityId\":2245,\"cityName\":\"Palasa Kasibugga, Andhra Pradesh\"},{\"cityId\":1781,\"cityName\":\"Palasa, Andhra Pradesh\"},{\"cityId\":2225,\"cityName\":\"Palasamudram, Andhra Pradesh\"},{\"cityId\":1141,\"cityName\":\"Palghar, Maharashtra\"},{\"cityId\":2151,\"cityName\":\"Pali, Rajasthan\"},{\"cityId\":2337,\"cityName\":\"Palia Kalan, Uttar Pradesh\"},{\"cityId\":492,\"cityName\":\"Palitana, Gujarat\"},{\"cityId\":1292,\"cityName\":\"Palladam, Tamil Nadu\"},{\"cityId\":1293,\"cityName\":\"Pallipattu, Tamil Nadu\"},{\"cityId\":2314,\"cityName\":\"Palolem Beach, Goa\"},{\"cityId\":1629,\"cityName\":\"Palus, Maharashtra\"},{\"cityId\":1748,\"cityName\":\"Palvancha, Telangana\"},{\"cityId\":929,\"cityName\":\"Palwal, Haryana\"},{\"cityId\":2388,\"cityName\":\"Pamba, Kerala\"},{\"cityId\":1829,\"cityName\":\"Pamidi, Andhra Pradesh\"},{\"cityId\":816,\"cityName\":\"Pamur, Andhra Pradesh\"},{\"cityId\":1735,\"cityName\":\"Panagarh, West Bengal\"},{\"cityId\":889,\"cityName\":\"Panaji, Goa\"},{\"cityId\":2287,\"cityName\":\"Panchet, Jharkhand\"},{\"cityId\":302,\"cityName\":\"Panchgani, Maharashtra\"},{\"cityId\":1635,\"cityName\":\"Pandalam, Kerala\"},{\"cityId\":2764,\"cityName\":\"Pandariya, Chhattisgarh\"},{\"cityId\":1872,\"cityName\":\"Pandavapura, Karnataka\"},{\"cityId\":1142,\"cityName\":\"Pandharpur, Maharashtra\"},{\"cityId\":393,\"cityName\":\"Panipat, Haryana\"},{\"cityId\":2016,\"cityName\":\"Panitanki, West Bengal\"},{\"cityId\":2480,\"cityName\":\"Panna, Madhya Pradesh\"},{\"cityId\":1294,\"cityName\":\"Panruti, Tamil Nadu\"},{\"cityId\":1890,\"cityName\":\"Pansar, Gujarat\"},{\"cityId\":2913,\"cityName\":\"Panskura, West Bengal\"},{\"cityId\":680,\"cityName\":\"Pantnagar, Uttarakhand\"},{\"cityId\":1143,\"cityName\":\"Panvel, Maharashtra\"},{\"cityId\":2114,\"cityName\":\"Paonta Sahib, Himachal Pradesh\"},{\"cityId\":938,\"cityName\":\"Paonta, Himachal Pradesh\"},{\"cityId\":1295,\"cityName\":\"Papanasam, Tamil Nadu\"},{\"cityId\":590,\"cityName\":\"Paradeep, Odisha\"},{\"cityId\":1296,\"cityName\":\"Paramakudi, Tamil Nadu\"},{\"cityId\":2862,\"cityName\":\"Parasia, West Bengal\"},{\"cityId\":2133,\"cityName\":\"Parasnath, Jharkhand\"},{\"cityId\":1796,\"cityName\":\"Paratwada, Maharashtra\"},{\"cityId\":1975,\"cityName\":\"Paravai, Tamil Nadu\"},{\"cityId\":749,\"cityName\":\"Parbhani, Maharashtra\"},{\"cityId\":1856,\"cityName\":\"Parchoor, Andhra Pradesh\"},{\"cityId\":1666,\"cityName\":\"Parkal, Telangana\"},{\"cityId\":750,\"cityName\":\"Parli, Maharashtra\"},{\"cityId\":2312,\"cityName\":\"Parner, Maharashtra\"},{\"cityId\":817,\"cityName\":\"Parvathipuram, Andhra Pradesh\"},{\"cityId\":2953,\"cityName\":\"Parwani, Jharkhand\"},{\"cityId\":939,\"cityName\":\"Parwanoo, Himachal Pradesh\"},{\"cityId\":2937,\"cityName\":\"Patalpani Waterfall, Madhya Pradesh\"},{\"cityId\":409,\"cityName\":\"Patan, Gujarat\"},{\"cityId\":1631,\"cityName\":\"Patancheru, Telangana\"},{\"cityId\":1928,\"cityName\":\"Pataudi, Haryana\"},{\"cityId\":2765,\"cityName\":\"Pathalgaon, Chhattisgarh\"},{\"cityId\":2208,\"cityName\":\"Pathanamthitta, Kerala\"},{\"cityId\":2441,\"cityName\":\"Pathanapuram, Kerala\"},{\"cityId\":395,\"cityName\":\"Pathankot, Punjab\"},{\"cityId\":2247,\"cityName\":\"Pathapatnam, Andhra Pradesh\"},{\"cityId\":2285,\"cityName\":\"Pathar Pratima, West Bengal\"},{\"cityId\":156,\"cityName\":\"Patiala, Punjab\"},{\"cityId\":401,\"cityName\":\"Patna, Bihar\"},{\"cityId\":2142,\"cityName\":\"Patnitop, Jammu and Kashmir\"},{\"cityId\":2598,\"cityName\":\"Patratu, Jharkhand\"},{\"cityId\":1953,\"cityName\":\"Pattanakkad, Kerala\"},{\"cityId\":2062,\"cityName\":\"Pattukkottai, Tamil Nadu\"},{\"cityId\":1005,\"cityName\":\"Pavagada, Karnataka\"},{\"cityId\":2493,\"cityName\":\"Pavapuri, Bihar\"},{\"cityId\":2947,\"cityName\":\"Pawal, Punjab\"},{\"cityId\":1628,\"cityName\":\"Pawapuri, Bihar\"},{\"cityId\":2372,\"cityName\":\"Pawna Lake, Maharashtra\"},{\"cityId\":1036,\"cityName\":\"Payyannur, Kerala\"},{\"cityId\":2440,\"cityName\":\"Payyanur, Kerala\"},{\"cityId\":2446,\"cityName\":\"Payyoli, Kerala\"},{\"cityId\":1789,\"cityName\":\"Pedanandipadu, Andhra Pradesh\"},{\"cityId\":1615,\"cityName\":\"Peddapalli, Telangana\"},{\"cityId\":2476,\"cityName\":\"Pedong, West Bengal\"},{\"cityId\":2435,\"cityName\":\"Pelling, Sikkim\"},{\"cityId\":2371,\"cityName\":\"Pen, Maharashtra\"},{\"cityId\":2136,\"cityName\":\"Pench National Park, Madhya Pradesh\"},{\"cityId\":886,\"cityName\":\"Pendra, Chhattisgarh\"},{\"cityId\":1607,\"cityName\":\"Penugonda, Andhra Pradesh\"},{\"cityId\":2782,\"cityName\":\"Penukonda, Andhra Pradesh\"},{\"cityId\":1297,\"cityName\":\"Perambalur, Tamil Nadu\"},{\"cityId\":1298,\"cityName\":\"Peravurani, Tamil Nadu\"},{\"cityId\":1299,\"cityName\":\"Periyakulam, Tamil Nadu\"},{\"cityId\":1554,\"cityName\":\"Periyapalayam, Tamil Nadu\"},{\"cityId\":1645,\"cityName\":\"Periyapatna, Karnataka\"},{\"cityId\":2356,\"cityName\":\"Pernambut, Tamil Nadu\"},{\"cityId\":2838,\"cityName\":\"Pernem Beach, Goa\"},{\"cityId\":1037,\"cityName\":\"Perumbavoor, Kerala\"},{\"cityId\":1300,\"cityName\":\"Perundurai, Tamil Nadu\"},{\"cityId\":2352,\"cityName\":\"Perungalathur, Tamil Nadu\"},{\"cityId\":1071,\"cityName\":\"Petlawad, Madhya Pradesh\"},{\"cityId\":2267,\"cityName\":\"Petrapole, West Bengal\"},{\"cityId\":452,\"cityName\":\"Phagwara, Punjab\"},{\"cityId\":1218,\"cityName\":\"Phalodi, Rajasthan\"},{\"cityId\":1144,\"cityName\":\"Phaltan, Maharashtra\"},{\"cityId\":2702,\"cityName\":\"Phaphund, Uttar Pradesh\"},{\"cityId\":451,\"cityName\":\"Phillaur, Punjab\"},{\"cityId\":1219,\"cityName\":\"Phulera, Rajasthan\"},{\"cityId\":2921,\"cityName\":\"Phulparas, Bihar\"},{\"cityId\":1991,\"cityName\":\"Phulwari sharif, Bihar\"},{\"cityId\":2081,\"cityName\":\"Pichavaram, Tamil Nadu\"},{\"cityId\":1630,\"cityName\":\"Piduguralla, Andhra Pradesh\"},{\"cityId\":606,\"cityName\":\"Pilani, Rajasthan\"},{\"cityId\":1522,\"cityName\":\"Pileru, Andhra Pradesh\"},{\"cityId\":681,\"cityName\":\"Pilibhit, Uttar Pradesh\"},{\"cityId\":2056,\"cityName\":\"Pillayarpatti, Tamil Nadu\"},{\"cityId\":2663,\"cityName\":\"Pindwara, Rajasthan\"},{\"cityId\":930,\"cityName\":\"Pinjore, Haryana\"},{\"cityId\":2549,\"cityName\":\"Pipariya, Madhya Pradesh\"},{\"cityId\":1906,\"cityName\":\"Pipili, Odisha\"},{\"cityId\":2000,\"cityName\":\"Pirangut, Maharashtra\"},{\"cityId\":1951,\"cityName\":\"Piravom, Kerala\"},{\"cityId\":2559,\"cityName\":\"Piro, Bihar\"},{\"cityId\":1072,\"cityName\":\"Pithampur, Madhya Pradesh\"},{\"cityId\":818,\"cityName\":\"Pithapuram, Andhra Pradesh\"},{\"cityId\":1811,\"cityName\":\"Podalakur, Andhra Pradesh\"},{\"cityId\":1973,\"cityName\":\"Podumbu, Tamil Nadu\"},{\"cityId\":2614,\"cityName\":\"Poicha, Gujarat\"},{\"cityId\":1220,\"cityName\":\"Pokaran, Rajasthan\"},{\"cityId\":2624,\"cityName\":\"Pokhara, Bihar\"},{\"cityId\":2676,\"cityName\":\"Pokhram North, Bihar\"},{\"cityId\":2227,\"cityName\":\"Polaki, Andhra Pradesh\"},{\"cityId\":1301,\"cityName\":\"Pollachi, Tamil Nadu\"},{\"cityId\":2181,\"cityName\":\"Pollibetta, Karnataka\"},{\"cityId\":2425,\"cityName\":\"Polo Forest, Gujarat\"},{\"cityId\":1302,\"cityName\":\"Polur, Tamil Nadu\"},{\"cityId\":890,\"cityName\":\"Ponda, Goa\"},{\"cityId\":53,\"cityName\":\"Pondicherry, Puducherry\"},{\"cityId\":2783,\"cityName\":\"Ponnamaravathi, Tamil Nadu\"},{\"cityId\":2201,\"cityName\":\"Ponnani, Kerala\"},{\"cityId\":2226,\"cityName\":\"Ponnur, Andhra Pradesh\"},{\"cityId\":1954,\"cityName\":\"Poochakkal, Kerala\"},{\"cityId\":2067,\"cityName\":\"Poompuhar, Tamil Nadu\"},{\"cityId\":1642,\"cityName\":\"Poonamallee, Tamil Nadu\"},{\"cityId\":98,\"cityName\":\"Porbandar, Gujarat\"},{\"cityId\":1505,\"cityName\":\"Porumamilla, Andhra Pradesh\"},{\"cityId\":1481,\"cityName\":\"Pragpur, Himachal Pradesh\"},{\"cityId\":1482,\"cityName\":\"Prakasam, Andhra Pradesh\"},{\"cityId\":1221,\"cityName\":\"Pratapgarh, Rajasthan\"},{\"cityId\":2242,\"cityName\":\"Prathipadu, Andhra Pradesh\"},{\"cityId\":718,\"cityName\":\"Proddatur, Andhra Pradesh\"},{\"cityId\":1303,\"cityName\":\"Pudukkottai, Tamil Nadu\"},{\"cityId\":2345,\"cityName\":\"Pugalur, Tamil Nadu\"},{\"cityId\":1396,\"cityName\":\"Pukhrayan, Uttar Pradesh\"},{\"cityId\":1145,\"cityName\":\"Pulgaon, Maharashtra\"},{\"cityId\":1875,\"cityName\":\"Pulicat, Tamil Nadu\"},{\"cityId\":1716,\"cityName\":\"Pulivendula, Andhra Pradesh\"},{\"cityId\":1304,\"cityName\":\"Puliyankudi, Tamil Nadu\"},{\"cityId\":1974,\"cityName\":\"Puliyur, Tamil Nadu\"},{\"cityId\":1038,\"cityName\":\"Punalur, Kerala\"},{\"cityId\":261,\"cityName\":\"Pune, Maharashtra\"},{\"cityId\":819,\"cityName\":\"Punganur, Andhra Pradesh\"},{\"cityId\":1930,\"cityName\":\"Punhana, Haryana\"},{\"cityId\":2506,\"cityName\":\"Puranpur, Uttar Pradesh\"},{\"cityId\":67,\"cityName\":\"Puri, Odisha\"},{\"cityId\":874,\"cityName\":\"Purnia, Bihar\"},{\"cityId\":93,\"cityName\":\"Purulia, West Bengal\"},{\"cityId\":2507,\"cityName\":\"Pusa, Bihar\"},{\"cityId\":1146,\"cityName\":\"Pusad, Maharashtra\"},{\"cityId\":274,\"cityName\":\"Pushkar, Rajasthan\"},{\"cityId\":349,\"cityName\":\"Puttaparthi, Andhra Pradesh\"},{\"cityId\":2449,\"cityName\":\"Puttur, Karnataka\"},{\"cityId\":2829,\"cityName\":\"Querim Beach, Goa\"},{\"cityId\":2295,\"cityName\":\"Radhanpur, Gujarat\"},{\"cityId\":564,\"cityName\":\"Rae Bareli, Uttar Pradesh\"},{\"cityId\":2280,\"cityName\":\"Raghunathganj, West Bengal\"},{\"cityId\":2636,\"cityName\":\"Raghunathpur, West Bengal\"},{\"cityId\":2329,\"cityName\":\"Rahuri, Maharashtra\"},{\"cityId\":542,\"cityName\":\"Raichak, West Bengal\"},{\"cityId\":310,\"cityName\":\"Raichur, Karnataka\"},{\"cityId\":1485,\"cityName\":\"Raigad, Maharashtra\"},{\"cityId\":533,\"cityName\":\"Raiganj, West Bengal\"},{\"cityId\":285,\"cityName\":\"Raigarh, Chhattisgarh\"},{\"cityId\":412,\"cityName\":\"Raipur, Chhattisgarh\"},{\"cityId\":1073,\"cityName\":\"Raisen, Madhya Pradesh\"},{\"cityId\":1222,\"cityName\":\"Raisinghnagar, Rajasthan\"},{\"cityId\":269,\"cityName\":\"Rajahmundry, Andhra Pradesh\"},{\"cityId\":2692,\"cityName\":\"Rajaldesar, Rajasthan\"},{\"cityId\":820,\"cityName\":\"Rajam, Andhra Pradesh\"},{\"cityId\":841,\"cityName\":\"Rajampet, Andhra Pradesh\"},{\"cityId\":1865,\"cityName\":\"Rajanukunte, Karnataka\"},{\"cityId\":1305,\"cityName\":\"Rajapalayam, Tamil Nadu\"},{\"cityId\":1814,\"cityName\":\"Rajasingamangalam, Tamil Nadu\"},{\"cityId\":2575,\"cityName\":\"Rajdhanwar, Jharkhand\"},{\"cityId\":1790,\"cityName\":\"Rajendragram, Madhya Pradesh\"},{\"cityId\":1864,\"cityName\":\"Rajendrapur, West Bengal\"},{\"cityId\":2111,\"cityName\":\"Rajesultanpur, Uttar Pradesh\"},{\"cityId\":2766,\"cityName\":\"Rajgamar, Chhattisgarh\"},{\"cityId\":596,\"cityName\":\"Rajgarh, Madhya Pradesh\"},{\"cityId\":2107,\"cityName\":\"Rajghat, Uttar Pradesh\"},{\"cityId\":875,\"cityName\":\"Rajgir, Bihar\"},{\"cityId\":90,\"cityName\":\"Rajkot, Gujarat\"},{\"cityId\":732,\"cityName\":\"Rajnandgaon, Chhattisgarh\"},{\"cityId\":493,\"cityName\":\"Rajpipla, Gujarat\"},{\"cityId\":2672,\"cityName\":\"Rajpur, Madhya Pradesh\"},{\"cityId\":272,\"cityName\":\"Rajpura, Punjab\"},{\"cityId\":2535,\"cityName\":\"Rajrappa, Jharkhand\"},{\"cityId\":1223,\"cityName\":\"Rajsamand, Rajasthan\"},{\"cityId\":911,\"cityName\":\"Rajula, Gujarat\"},{\"cityId\":1804,\"cityName\":\"Ralegaon, Maharashtra\"},{\"cityId\":2707,\"cityName\":\"Ramachandrapuram, Andhra Pradesh\"},{\"cityId\":821,\"cityName\":\"Ramagundam, Telangana\"},{\"cityId\":1670,\"cityName\":\"Ramakuppam, Andhra Pradesh\"},{\"cityId\":1757,\"cityName\":\"Ramanagara, Karnataka\"},{\"cityId\":2195,\"cityName\":\"Ramanathapura, Karnataka\"},{\"cityId\":1306,\"cityName\":\"Ramanathapuram, Tamil Nadu\"},{\"cityId\":2767,\"cityName\":\"Ramanujganj, Chhattisgarh\"},{\"cityId\":1830,\"cityName\":\"Ramayampet, Telangana\"},{\"cityId\":1803,\"cityName\":\"Rambilli, Andhra Pradesh\"},{\"cityId\":2680,\"cityName\":\"Ramdevra, Rajasthan\"},{\"cityId\":289,\"cityName\":\"Rameshwaram, Tamil Nadu\"},{\"cityId\":2504,\"cityName\":\"Ramgarh, Jharkhand\"},{\"cityId\":436,\"cityName\":\"Ramnagar, Uttarakhand\"},{\"cityId\":507,\"cityName\":\"Ramoji Film City, Telangana\"},{\"cityId\":2694,\"cityName\":\"Rampur Bushahr, Himachal Pradesh\"},{\"cityId\":379,\"cityName\":\"Rampur, Uttar Pradesh\"},{\"cityId\":2689,\"cityName\":\"Rampura Phul, Punjab\"},{\"cityId\":1432,\"cityName\":\"Rampurhat, West Bengal\"},{\"cityId\":2419,\"cityName\":\"Ramtek, Maharashtra\"},{\"cityId\":534,\"cityName\":\"Ranaghat, West Bengal\"},{\"cityId\":2684,\"cityName\":\"Ranakpur, Rajasthan\"},{\"cityId\":405,\"cityName\":\"Ranchi, Jharkhand\"},{\"cityId\":1589,\"cityName\":\"Ranebennur, Karnataka\"},{\"cityId\":369,\"cityName\":\"Ranga Reddy, Telangana\"},{\"cityId\":2600,\"cityName\":\"Rangia, Assam\"},{\"cityId\":2469,\"cityName\":\"Rangpo, Sikkim\"},{\"cityId\":554,\"cityName\":\"Raniganj, West Bengal\"},{\"cityId\":256,\"cityName\":\"Ranikhet, Uttarakhand\"},{\"cityId\":1486,\"cityName\":\"Ranipet, Tamil Nadu\"},{\"cityId\":1516,\"cityName\":\"Ranjangaon, Maharashtra\"},{\"cityId\":1594,\"cityName\":\"Ranni, Kerala\"},{\"cityId\":2376,\"cityName\":\"Ranthambore, Rajasthan\"},{\"cityId\":912,\"cityName\":\"Rapar, Gujarat\"},{\"cityId\":1307,\"cityName\":\"Rasipuram, Tamil Nadu\"},{\"cityId\":2336,\"cityName\":\"Rasra, Uttar Pradesh\"},{\"cityId\":2768,\"cityName\":\"Ratanpur, Chhattisgarh\"},{\"cityId\":2550,\"cityName\":\"Rath, Uttar Pradesh\"},{\"cityId\":578,\"cityName\":\"Ratlam, Madhya Pradesh\"},{\"cityId\":1887,\"cityName\":\"Ratnagiri, Maharashtra\"},{\"cityId\":2438,\"cityName\":\"Ravangla, Sikkim\"},{\"cityId\":1542,\"cityName\":\"Ravulapalem, Andhra Pradesh\"},{\"cityId\":1224,\"cityName\":\"Rawatbhata, Rajasthan\"},{\"cityId\":1225,\"cityName\":\"Rawatsar, Rajasthan\"},{\"cityId\":2252,\"cityName\":\"Raxaul, Bihar\"},{\"cityId\":823,\"cityName\":\"Rayachoti, Andhra Pradesh\"},{\"cityId\":2158,\"cityName\":\"Rayadurgam, Andhra Pradesh\"},{\"cityId\":2228,\"cityName\":\"Rayagada, Odisha\"},{\"cityId\":1732,\"cityName\":\"Razole, Andhra Pradesh\"},{\"cityId\":1226,\"cityName\":\"Reengus, Rajasthan\"},{\"cityId\":824,\"cityName\":\"Renigunta, Andhra Pradesh\"},{\"cityId\":1397,\"cityName\":\"Renukoot, Uttar Pradesh\"},{\"cityId\":825,\"cityName\":\"Repalle, Andhra Pradesh\"},{\"cityId\":1624,\"cityName\":\"Revdanda, Maharashtra\"},{\"cityId\":1074,\"cityName\":\"Rewa, Madhya Pradesh\"},{\"cityId\":124,\"cityName\":\"Rewari, Haryana\"},{\"cityId\":2566,\"cityName\":\"Rihand Nagar, Uttar Pradesh\"},{\"cityId\":2463,\"cityName\":\"Rimbik, West Bengal\"},{\"cityId\":1625,\"cityName\":\"Rishabhdev, Rajasthan\"},{\"cityId\":23,\"cityName\":\"Rishikesh, Uttarakhand\"},{\"cityId\":2473,\"cityName\":\"Rishop, West Bengal\"},{\"cityId\":1147,\"cityName\":\"Risod, Maharashtra\"},{\"cityId\":1398,\"cityName\":\"Robertsganj, Uttar Pradesh\"},{\"cityId\":768,\"cityName\":\"Robertsonpet, Karnataka\"},{\"cityId\":1756,\"cityName\":\"Roha, Maharashtra\"},{\"cityId\":1611,\"cityName\":\"Rohini, Delhi\"},{\"cityId\":940,\"cityName\":\"Rohru, Himachal Pradesh\"},{\"cityId\":305,\"cityName\":\"Rohtak, Haryana\"},{\"cityId\":2880,\"cityName\":\"Rohtas, Bihar\"},{\"cityId\":2569,\"cityName\":\"Roing, Arunachal Pradesh\"},{\"cityId\":181,\"cityName\":\"Roorkee, Uttarakhand\"},{\"cityId\":1908,\"cityName\":\"Ropar, Punjab\"},{\"cityId\":2518,\"cityName\":\"Rosera, Bihar\"},{\"cityId\":2113,\"cityName\":\"Rudraprayag, Uttarakhand\"},{\"cityId\":306,\"cityName\":\"Rudrapur, Uttarakhand\"},{\"cityId\":1937,\"cityName\":\"Rundal, Rajasthan\"},{\"cityId\":1711,\"cityName\":\"Rupaidiha, Uttar Pradesh\"},{\"cityId\":1187,\"cityName\":\"Rupnagar, Punjab\"},{\"cityId\":2261,\"cityName\":\"Rupnarayanpur, West Bengal\"},{\"cityId\":1995,\"cityName\":\"Sabalpur, Bihar\"},{\"cityId\":1536,\"cityName\":\"Sabarimala, Kerala\"},{\"cityId\":2881,\"cityName\":\"Sadabad, Uttar Pradesh\"},{\"cityId\":682,\"cityName\":\"Sadasivpet, Telangana\"},{\"cityId\":1557,\"cityName\":\"Sadulpur, Rajasthan\"},{\"cityId\":189,\"cityName\":\"Sagar, Madhya Pradesh\"},{\"cityId\":2655,\"cityName\":\"Sagbara, Gujarat\"},{\"cityId\":1227,\"cityName\":\"Sagwara, Rajasthan\"},{\"cityId\":1766,\"cityName\":\"Sahajanpur, Uttar Pradesh\"},{\"cityId\":1399,\"cityName\":\"Sahanpur, Uttar Pradesh\"},{\"cityId\":94,\"cityName\":\"Saharanpur, Uttar Pradesh\"},{\"cityId\":876,\"cityName\":\"Saharsa, Bihar\"},{\"cityId\":1524,\"cityName\":\"Sahibabad, Uttar Pradesh\"},{\"cityId\":961,\"cityName\":\"Sahibganj, Jharkhand\"},{\"cityId\":2607,\"cityName\":\"Saidpur, Uttar Pradesh\"},{\"cityId\":1433,\"cityName\":\"Sainthia, West Bengal\"},{\"cityId\":1901,\"cityName\":\"Sakhigopal, Odisha\"},{\"cityId\":1006,\"cityName\":\"Sakleshpur, Karnataka\"},{\"cityId\":2571,\"cityName\":\"Sakri, Bihar\"},{\"cityId\":2769,\"cityName\":\"Sakti, Chhattisgarh\"},{\"cityId\":2404,\"cityName\":\"Salasar, Rajasthan\"},{\"cityId\":2832,\"cityName\":\"Salcete Beach, Goa\"},{\"cityId\":231,\"cityName\":\"Salem, Tamil Nadu\"},{\"cityId\":2109,\"cityName\":\"Salempur Road, Uttar Pradesh\"},{\"cityId\":1899,\"cityName\":\"Salipur, Odisha\"},{\"cityId\":2532,\"cityName\":\"Salkanpur, Madhya Pradesh\"},{\"cityId\":2912,\"cityName\":\"Salouni, Himachal Pradesh\"},{\"cityId\":1228,\"cityName\":\"Salumbar, Rajasthan\"},{\"cityId\":826,\"cityName\":\"Salur, Andhra Pradesh\"},{\"cityId\":827,\"cityName\":\"Samalkot, Andhra Pradesh\"},{\"cityId\":2222,\"cityName\":\"Samarlakota, Andhra Pradesh\"},{\"cityId\":877,\"cityName\":\"Samastipur, Bihar\"},{\"cityId\":2204,\"cityName\":\"Samayapuram, Tamil Nadu\"},{\"cityId\":397,\"cityName\":\"Sambalpur, Odisha\"},{\"cityId\":1400,\"cityName\":\"Sambhal, Uttar Pradesh\"},{\"cityId\":2952,\"cityName\":\"Samsing, West Bengal\"},{\"cityId\":494,\"cityName\":\"Sanand, Gujarat\"},{\"cityId\":1075,\"cityName\":\"Sanawad, Madhya Pradesh\"},{\"cityId\":1229,\"cityName\":\"Sanchore, Rajasthan\"},{\"cityId\":2272,\"cityName\":\"Sanctoria, West Bengal\"},{\"cityId\":1007,\"cityName\":\"Sandur, Karnataka\"},{\"cityId\":2307,\"cityName\":\"Sangameshwar, Maharashtra\"},{\"cityId\":1148,\"cityName\":\"Sangamner, Maharashtra\"},{\"cityId\":1942,\"cityName\":\"Sanganer, Rajasthan\"},{\"cityId\":468,\"cityName\":\"Sangareddy, Telangana\"},{\"cityId\":151,\"cityName\":\"Sangli, Maharashtra\"},{\"cityId\":1149,\"cityName\":\"Sangole, Maharashtra\"},{\"cityId\":684,\"cityName\":\"Sangrur, Punjab\"},{\"cityId\":2326,\"cityName\":\"Sanjan, Gujarat\"},{\"cityId\":1308,\"cityName\":\"Sankarankoil, Tamil Nadu\"},{\"cityId\":2037,\"cityName\":\"Sankarankovil, Tamil Nadu\"},{\"cityId\":2089,\"cityName\":\"Sankarapuram, Tamil Nadu\"},{\"cityId\":1309,\"cityName\":\"Sankari, Tamil Nadu\"},{\"cityId\":1008,\"cityName\":\"Sankeshwar, Karnataka\"},{\"cityId\":2173,\"cityName\":\"Sankri, Uttarakhand\"},{\"cityId\":2927,\"cityName\":\"Santer, Madhya Pradesh\"},{\"cityId\":2548,\"cityName\":\"Santiniketan, West Bengal\"},{\"cityId\":1434,\"cityName\":\"Santipur, West Bengal\"},{\"cityId\":1487,\"cityName\":\"Sapotra, Rajasthan\"},{\"cityId\":143,\"cityName\":\"Saputara, Gujarat\"},{\"cityId\":2661,\"cityName\":\"Saraikela, Jharkhand\"},{\"cityId\":2257,\"cityName\":\"Saraipali, Chhattisgarh\"},{\"cityId\":2770,\"cityName\":\"Sarangarh, Chhattisgarh\"},{\"cityId\":2426,\"cityName\":\"Sarangpur, Gujarat\"},{\"cityId\":2434,\"cityName\":\"Sardar Sarovar Dam, Gujarat\"},{\"cityId\":1230,\"cityName\":\"Sardarshahar, Rajasthan\"},{\"cityId\":941,\"cityName\":\"Sarkaghat, Himachal Pradesh\"},{\"cityId\":2866,\"cityName\":\"Sarkar Nattamangalam, Tamil Nadu\"},{\"cityId\":2604,\"cityName\":\"Sarnath, Uttar Pradesh\"},{\"cityId\":1076,\"cityName\":\"Sarni, Madhya Pradesh\"},{\"cityId\":2427,\"cityName\":\"Sasan Gir, Gujarat\"},{\"cityId\":878,\"cityName\":\"Sasaram, Bihar\"},{\"cityId\":1569,\"cityName\":\"Saswad, Maharashtra\"},{\"cityId\":362,\"cityName\":\"Satara, Maharashtra\"},{\"cityId\":1810,\"cityName\":\"Sathamba, Gujarat\"},{\"cityId\":1559,\"cityName\":\"Sathupally, Telangana\"},{\"cityId\":1310,\"cityName\":\"Sathyamangalam, Tamil Nadu\"},{\"cityId\":1605,\"cityName\":\"Sathyavedu, Andhra Pradesh\"},{\"cityId\":2009,\"cityName\":\"Satna, Madhya Pradesh\"},{\"cityId\":828,\"cityName\":\"Sattenapalle, Andhra Pradesh\"},{\"cityId\":2040,\"cityName\":\"Sattur, Tamil Nadu\"},{\"cityId\":1587,\"cityName\":\"Saundatti, Karnataka\"},{\"cityId\":2328,\"cityName\":\"Sausar, Madhya Pradesh\"},{\"cityId\":2653,\"cityName\":\"Savarkundla, Gujarat\"},{\"cityId\":197,\"cityName\":\"Sawai Madhopur, Rajasthan\"},{\"cityId\":1150,\"cityName\":\"Sawantwadi, Maharashtra\"},{\"cityId\":1009,\"cityName\":\"Sedam, Karnataka\"},{\"cityId\":579,\"cityName\":\"Sehore, Madhya Pradesh\"},{\"cityId\":1759,\"cityName\":\"Selaiyur, Tamil Nadu\"},{\"cityId\":1668,\"cityName\":\"Selakui, Uttarakhand\"},{\"cityId\":1857,\"cityName\":\"Selu, Maharashtra\"},{\"cityId\":2665,\"cityName\":\"Semariya, Madhya Pradesh\"},{\"cityId\":1813,\"cityName\":\"Sendhwah, Madhya Pradesh\"},{\"cityId\":2941,\"cityName\":\"Seoni, Madhya Pradesh\"},{\"cityId\":2625,\"cityName\":\"Serampore, West Bengal\"},{\"cityId\":2834,\"cityName\":\"Sernabatim Beach, Goa\"},{\"cityId\":1311,\"cityName\":\"Sethiathoppu, Tamil Nadu\"},{\"cityId\":510,\"cityName\":\"Shadnagar, Telangana\"},{\"cityId\":1577,\"cityName\":\"Shahada, Maharashtra\"},{\"cityId\":2796,\"cityName\":\"Shahapur, Karnataka\"},{\"cityId\":1077,\"cityName\":\"Shahdol, Madhya Pradesh\"},{\"cityId\":1401,\"cityName\":\"Shahganj, Uttar Pradesh\"},{\"cityId\":565,\"cityName\":\"Shahjahanpur, Uttar Pradesh\"},{\"cityId\":2523,\"cityName\":\"Shahpur, Bihar\"},{\"cityId\":580,\"cityName\":\"Shajapur, Madhya Pradesh\"},{\"cityId\":2573,\"cityName\":\"Shaktinagar, Uttar Pradesh\"},{\"cityId\":685,\"cityName\":\"Shamli, Uttar Pradesh\"},{\"cityId\":2418,\"cityName\":\"Shani Shingnapur, Maharashtra\"},{\"cityId\":1402,\"cityName\":\"Shankargarh, Uttar Pradesh\"},{\"cityId\":1656,\"cityName\":\"Shankarpally, Telangana\"},{\"cityId\":2428,\"cityName\":\"Shankheshwar, Gujarat\"},{\"cityId\":1891,\"cityName\":\"Shantigram, Gujarat\"},{\"cityId\":543,\"cityName\":\"Shantiniketan, West Bengal\"},{\"cityId\":1151,\"cityName\":\"Shegaon, Maharashtra\"},{\"cityId\":2560,\"cityName\":\"Sheikhpura, Bihar\"},{\"cityId\":1312,\"cityName\":\"Shenkottai, Tamil Nadu\"},{\"cityId\":2488,\"cityName\":\"Sheohar, Bihar\"},{\"cityId\":1078,\"cityName\":\"Sheopur, Madhya Pradesh\"},{\"cityId\":2886,\"cityName\":\"Sherghati, Bihar\"},{\"cityId\":1798,\"cityName\":\"Shihor, Gujarat\"},{\"cityId\":2932,\"cityName\":\"Shikaripur, Karnataka\"},{\"cityId\":686,\"cityName\":\"Shikohabad, Uttar Pradesh\"},{\"cityId\":1168,\"cityName\":\"Shillong, Meghalaya\"},{\"cityId\":175,\"cityName\":\"Shimla, Himachal Pradesh\"},{\"cityId\":17,\"cityName\":\"Shimoga, Karnataka\"},{\"cityId\":1709,\"cityName\":\"Shirali, Karnataka\"},{\"cityId\":111,\"cityName\":\"Shirdi, Maharashtra\"},{\"cityId\":1779,\"cityName\":\"Shirpur, Maharashtra\"},{\"cityId\":1152,\"cityName\":\"Shirur, Maharashtra\"},{\"cityId\":499,\"cityName\":\"Shirwal, Maharashtra\"},{\"cityId\":2143,\"cityName\":\"Shiv Khori, Jammu and Kashmir\"},{\"cityId\":2171,\"cityName\":\"Shivanasamudra, Karnataka\"},{\"cityId\":2500,\"cityName\":\"Shivpuri, Madhya Pradesh\"},{\"cityId\":2771,\"cityName\":\"Shivrinarayan, Chhattisgarh\"},{\"cityId\":2211,\"cityName\":\"Sholinghur, Tamil Nadu\"},{\"cityId\":1737,\"cityName\":\"Shoolagiri, Tamil Nadu\"},{\"cityId\":1039,\"cityName\":\"Shoranur, Kerala\"},{\"cityId\":1488,\"cityName\":\"Shravanabelagola, Karnataka\"},{\"cityId\":1153,\"cityName\":\"Shrigonda, Maharashtra\"},{\"cityId\":1154,\"cityName\":\"Shrirampur, Maharashtra\"},{\"cityId\":1155,\"cityName\":\"Shrivardhan, Maharashtra\"},{\"cityId\":1079,\"cityName\":\"Shujalpur, Madhya Pradesh\"},{\"cityId\":2596,\"cityName\":\"Shyamnagar, West Bengal\"},{\"cityId\":2465,\"cityName\":\"Shyamsing, West Bengal\"},{\"cityId\":2558,\"cityName\":\"Sibsagar, Assam\"},{\"cityId\":1010,\"cityName\":\"Siddapur, Karnataka\"},{\"cityId\":1718,\"cityName\":\"Siddharthnagar, Uttar Pradesh\"},{\"cityId\":1583,\"cityName\":\"Siddhpur, Gujarat\"},{\"cityId\":469,\"cityName\":\"Siddipet, Telangana\"},{\"cityId\":1080,\"cityName\":\"Sidhi, Madhya Pradesh\"},{\"cityId\":2943,\"cityName\":\"Sihora, Madhya Pradesh\"},{\"cityId\":1403,\"cityName\":\"Sikandrabad, Uttar Pradesh\"},{\"cityId\":22,\"cityName\":\"Sikar, Rajasthan\"},{\"cityId\":1966,\"cityName\":\"Silaiman, Tamil Nadu\"},{\"cityId\":843,\"cityName\":\"Silchar, Assam\"},{\"cityId\":380,\"cityName\":\"Siliguri, West Bengal\"},{\"cityId\":2475,\"cityName\":\"Sillery Gaon, West Bengal\"},{\"cityId\":2415,\"cityName\":\"Silvassa, Dadra and Nagar Haveli\"},{\"cityId\":962,\"cityName\":\"Simdega, Jharkhand\"},{\"cityId\":2772,\"cityName\":\"Simga, Chhattisgarh\"},{\"cityId\":1523,\"cityName\":\"Simrahi, Bihar\"},{\"cityId\":1791,\"cityName\":\"Sindhanur, Karnataka\"},{\"cityId\":1490,\"cityName\":\"Sindhudurg, Maharashtra\"},{\"cityId\":1600,\"cityName\":\"Sindri, Jharkhand\"},{\"cityId\":2784,\"cityName\":\"Singampuneri, Tamil Nadu\"},{\"cityId\":829,\"cityName\":\"Singarayakonda, Andhra Pradesh\"},{\"cityId\":1584,\"cityName\":\"Singhana, Rajasthan\"},{\"cityId\":1081,\"cityName\":\"Singrauli, Madhya Pradesh\"},{\"cityId\":2471,\"cityName\":\"Singtam, Sikkim\"},{\"cityId\":1959,\"cityName\":\"Singur, West Bengal\"},{\"cityId\":2423,\"cityName\":\"Sinhagad, Maharashtra\"},{\"cityId\":1156,\"cityName\":\"Sinnar, Maharashtra\"},{\"cityId\":2811,\"cityName\":\"Sinquerim Beach, Goa\"},{\"cityId\":2835,\"cityName\":\"Siolim Beach, Goa\"},{\"cityId\":2153,\"cityName\":\"Sira, Karnataka\"},{\"cityId\":830,\"cityName\":\"Sircilla, Telangana\"},{\"cityId\":2836,\"cityName\":\"Siridao Beach, Goa\"},{\"cityId\":1818,\"cityName\":\"Siripuram, Andhra Pradesh\"},{\"cityId\":1313,\"cityName\":\"Sirkali, Tamil Nadu\"},{\"cityId\":1713,\"cityName\":\"Sirkazhi, Tamil Nadu\"},{\"cityId\":1231,\"cityName\":\"Sirohi, Rajasthan\"},{\"cityId\":687,\"cityName\":\"Sirsa, Haryana\"},{\"cityId\":1404,\"cityName\":\"Sirsaganj, Uttar Pradesh\"},{\"cityId\":1011,\"cityName\":\"Sirsi, Karnataka\"},{\"cityId\":1012,\"cityName\":\"Siruguppa, Karnataka\"},{\"cityId\":1314,\"cityName\":\"Sirumugai, Tamil Nadu\"},{\"cityId\":879,\"cityName\":\"Sitamarhi, Bihar\"},{\"cityId\":566,\"cityName\":\"Sitapur, Uttar Pradesh\"},{\"cityId\":1418,\"cityName\":\"Sitarganj, Uttarakhand\"},{\"cityId\":1315,\"cityName\":\"Sivaganga, Tamil Nadu\"},{\"cityId\":1316,\"cityName\":\"Sivakasi, Tamil Nadu\"},{\"cityId\":2926,\"cityName\":\"Sivasagar, Assam\"},{\"cityId\":688,\"cityName\":\"Siwan, Bihar\"},{\"cityId\":2292,\"cityName\":\"Sohagpur, Madhya Pradesh\"},{\"cityId\":1232,\"cityName\":\"Sojat, Rajasthan\"},{\"cityId\":47,\"cityName\":\"Solan, Himachal Pradesh\"},{\"cityId\":205,\"cityName\":\"Solapur, Maharashtra\"},{\"cityId\":2714,\"cityName\":\"Soldia, Odisha\"},{\"cityId\":1923,\"cityName\":\"Somanur, Tamil Nadu\"},{\"cityId\":505,\"cityName\":\"Somnath, Gujarat\"},{\"cityId\":831,\"cityName\":\"Sompeta, Telangana\"},{\"cityId\":1562,\"cityName\":\"Somwarpet, Karnataka\"},{\"cityId\":2601,\"cityName\":\"Sonamarg, Jammu and Kashmir\"},{\"cityId\":2605,\"cityName\":\"Sonapur, Assam\"},{\"cityId\":1686,\"cityName\":\"Sonauli, Bihar\"},{\"cityId\":1555,\"cityName\":\"Sonbhadra, Uttar Pradesh\"},{\"cityId\":913,\"cityName\":\"Songadh, Gujarat\"},{\"cityId\":689,\"cityName\":\"Sonipat, Haryana\"},{\"cityId\":1491,\"cityName\":\"Sonmarg, Jammu and Kashmir\"},{\"cityId\":1013,\"cityName\":\"Sorab, Karnataka\"},{\"cityId\":2793,\"cityName\":\"Soraba, Karnataka\"},{\"cityId\":1860,\"cityName\":\"Soraon, Uttar Pradesh\"},{\"cityId\":1175,\"cityName\":\"Soro, Odisha\"},{\"cityId\":1492,\"cityName\":\"Sravasti, Uttar Pradesh\"},{\"cityId\":690,\"cityName\":\"Sri Ganganagar, Rajasthan\"},{\"cityId\":1514,\"cityName\":\"Sriharikota, Andhra Pradesh\"},{\"cityId\":463,\"cityName\":\"Srikakulam, Andhra Pradesh\"},{\"cityId\":691,\"cityName\":\"Srikalahasti, Andhra Pradesh\"},{\"cityId\":1317,\"cityName\":\"Srimushnam, Tamil Nadu\"},{\"cityId\":2099,\"cityName\":\"Srinagar (Garhwal), Uttarakhand\"},{\"cityId\":354,\"cityName\":\"Srinagar, Jammu and Kashmir\"},{\"cityId\":2160,\"cityName\":\"Sringeri, Karnataka\"},{\"cityId\":692,\"cityName\":\"Sriperumbudur, Tamil Nadu\"},{\"cityId\":1527,\"cityName\":\"Srirangam, Tamil Nadu\"},{\"cityId\":1870,\"cityName\":\"Srirangapatna, Karnataka\"},{\"cityId\":459,\"cityName\":\"Srisailam, Andhra Pradesh\"},{\"cityId\":2051,\"cityName\":\"Srivaikuntam, Tamil Nadu\"},{\"cityId\":1318,\"cityName\":\"Srivilliputhur, Tamil Nadu\"},{\"cityId\":2482,\"cityName\":\"Sujanganj, Uttar Pradesh\"},{\"cityId\":693,\"cityName\":\"Sujangarh, Rajasthan\"},{\"cityId\":1812,\"cityName\":\"Sujanpur, Himachal Pradesh\"},{\"cityId\":2182,\"cityName\":\"Sullia, Karnataka\"},{\"cityId\":1544,\"cityName\":\"Sullurupeta, Andhra Pradesh\"},{\"cityId\":2447,\"cityName\":\"Sultan Bathery, Kerala\"},{\"cityId\":880,\"cityName\":\"Sultanganj, Bihar\"},{\"cityId\":2149,\"cityName\":\"Sultanpur, Uttar Pradesh\"},{\"cityId\":1919,\"cityName\":\"Sulur, Tamil Nadu\"},{\"cityId\":1176,\"cityName\":\"Sunabeda, Odisha\"},{\"cityId\":2855,\"cityName\":\"Sunam, Punjab\"},{\"cityId\":2108,\"cityName\":\"Sunauli, Uttar Pradesh\"},{\"cityId\":2883,\"cityName\":\"Sunder Nagar, Himachal Pradesh\"},{\"cityId\":544,\"cityName\":\"Sunderban, West Bengal\"},{\"cityId\":2652,\"cityName\":\"Sunderbani, Jammu and Kashmir\"},{\"cityId\":2699,\"cityName\":\"Sundergarh, Punjab\"},{\"cityId\":1661,\"cityName\":\"Sundernagar, Himachal Pradesh\"},{\"cityId\":1703,\"cityName\":\"Sunguvarchatram, Tamil Nadu\"},{\"cityId\":2785,\"cityName\":\"Suntikoppa, Karnataka\"},{\"cityId\":881,\"cityName\":\"Supaul, Bihar\"},{\"cityId\":169,\"cityName\":\"Surat, Gujarat\"},{\"cityId\":1234,\"cityName\":\"Suratgarh, Rajasthan\"},{\"cityId\":1493,\"cityName\":\"Surathkal, Karnataka\"},{\"cityId\":217,\"cityName\":\"Surendranagar, Gujarat\"},{\"cityId\":1435,\"cityName\":\"Suri, West Bengal\"},{\"cityId\":2642,\"cityName\":\"Suriyawa, Uttar Pradesh\"},{\"cityId\":470,\"cityName\":\"Suryapet, Telangana\"},{\"cityId\":2063,\"cityName\":\"Swamimalai, Tamil Nadu\"},{\"cityId\":1576,\"cityName\":\"Tada, Andhra Pradesh\"},{\"cityId\":719,\"cityName\":\"Tadepalligudem, Andhra Pradesh\"},{\"cityId\":765,\"cityName\":\"Tadipatri, Andhra Pradesh\"},{\"cityId\":2416,\"cityName\":\"Tadoba Lake, Maharashtra\"},{\"cityId\":2305,\"cityName\":\"Tadoba Road, Maharashtra\"},{\"cityId\":545,\"cityName\":\"Tajpur, West Bengal\"},{\"cityId\":2773,\"cityName\":\"Takhatpur, Chhattisgarh\"},{\"cityId\":535,\"cityName\":\"Taki, West Bengal\"},{\"cityId\":2166,\"cityName\":\"Tala Kaveri, Karnataka\"},{\"cityId\":914,\"cityName\":\"Talaja, Gujarat\"},{\"cityId\":2592,\"cityName\":\"Talala, Gujarat\"},{\"cityId\":2123,\"cityName\":\"Talcher, Odisha\"},{\"cityId\":2365,\"cityName\":\"Talegaon Dabhade, Maharashtra\"},{\"cityId\":1040,\"cityName\":\"Taliparamba, Kerala\"},{\"cityId\":1646,\"cityName\":\"Taloja, Maharashtra\"},{\"cityId\":1674,\"cityName\":\"Tambaram, Tamil Nadu\"},{\"cityId\":536,\"cityName\":\"Tamluk, West Bengal\"},{\"cityId\":1419,\"cityName\":\"Tanakpur, Uttarakhand\"},{\"cityId\":1405,\"cityName\":\"Tanda, Uttar Pradesh\"},{\"cityId\":832,\"cityName\":\"Tandur, Telangana\"},{\"cityId\":257,\"cityName\":\"Tanuku, Andhra Pradesh\"},{\"cityId\":2863,\"cityName\":\"Tarabganj, Uttar Pradesh\"},{\"cityId\":537,\"cityName\":\"Tarakeswar, West Bengal\"},{\"cityId\":1235,\"cityName\":\"Taranagar, Rajasthan\"},{\"cityId\":546,\"cityName\":\"Tarapith, West Bengal\"},{\"cityId\":2517,\"cityName\":\"Tarapur, Maharashtra\"},{\"cityId\":2163,\"cityName\":\"Tarikere, Karnataka\"},{\"cityId\":2327,\"cityName\":\"Tarkarli Beach, Maharashtra\"},{\"cityId\":2896,\"cityName\":\"Tarn Taran Sahib, Punjab\"},{\"cityId\":1157,\"cityName\":\"Tasgaon, Maharashtra\"},{\"cityId\":2431,\"cityName\":\"Tawang, Arunachal Pradesh\"},{\"cityId\":1420,\"cityName\":\"Tehri, Uttarakhand\"},{\"cityId\":1082,\"cityName\":\"Tekanpur, Madhya Pradesh\"},{\"cityId\":1883,\"cityName\":\"Tekari, Bihar\"},{\"cityId\":1616,\"cityName\":\"Tekkali, Andhra Pradesh\"},{\"cityId\":2322,\"cityName\":\"Tembhurni, Maharashtra\"},{\"cityId\":720,\"cityName\":\"Tenali, Andhra Pradesh\"},{\"cityId\":1319,\"cityName\":\"Tenkasi, Tamil Nadu\"},{\"cityId\":1910,\"cityName\":\"Tepla, Haryana\"},{\"cityId\":1320,\"cityName\":\"Thakkolam, Tamil Nadu\"},{\"cityId\":1494,\"cityName\":\"Thalassery, Kerala\"},{\"cityId\":1721,\"cityName\":\"Thamballapalle, Andhra Pradesh\"},{\"cityId\":141,\"cityName\":\"Thane, Maharashtra\"},{\"cityId\":694,\"cityName\":\"Thanesar, Haryana\"},{\"cityId\":352,\"cityName\":\"Thanjavur, Tamil Nadu\"},{\"cityId\":915,\"cityName\":\"Tharad, Gujarat\"},{\"cityId\":2044,\"cityName\":\"Tharangambadi, Tamil Nadu\"},{\"cityId\":2358,\"cityName\":\"Thekkady, Kerala\"},{\"cityId\":1597,\"cityName\":\"Theni, Tamil Nadu\"},{\"cityId\":942,\"cityName\":\"Theog, Himachal Pradesh\"},{\"cityId\":1784,\"cityName\":\"Thirthahalli, Karnataka\"},{\"cityId\":2065,\"cityName\":\"Thirukkuvalai, Tamil Nadu\"},{\"cityId\":2087,\"cityName\":\"thirukoilure, Tamil Nadu\"},{\"cityId\":2070,\"cityName\":\"Thirumanur, Tamil Nadu\"},{\"cityId\":1321,\"cityName\":\"Thirunageswaram, Tamil Nadu\"},{\"cityId\":2353,\"cityName\":\"Thirunindravur, Tamil Nadu\"},{\"cityId\":1795,\"cityName\":\"Thirupattur, Tamil Nadu\"},{\"cityId\":1531,\"cityName\":\"Thiruthani, Tamil Nadu\"},{\"cityId\":2061,\"cityName\":\"Thiruthuraipoondi, Tamil Nadu\"},{\"cityId\":2076,\"cityName\":\"Thiruttani, Tamil Nadu\"},{\"cityId\":1041,\"cityName\":\"Thiruvalla, Kerala\"},{\"cityId\":1874,\"cityName\":\"Thiruvallur, Tamil Nadu\"},{\"cityId\":25,\"cityName\":\"Thiruvananthapuram, Kerala\"},{\"cityId\":1322,\"cityName\":\"Thiruvarur, Tamil Nadu\"},{\"cityId\":2064,\"cityName\":\"Thiruvidaimarudur, Tamil Nadu\"},{\"cityId\":1323,\"cityName\":\"Thisayanvilai, Tamil Nadu\"},{\"cityId\":1572,\"cityName\":\"Thivim, Goa\"},{\"cityId\":1042,\"cityName\":\"Thodupuzha, Kerala\"},{\"cityId\":1564,\"cityName\":\"Thorrur, Telangana\"},{\"cityId\":2073,\"cityName\":\"Thottiyam, Tamil Nadu\"},{\"cityId\":1043,\"cityName\":\"Thrissur, Kerala\"},{\"cityId\":1324,\"cityName\":\"Thuraiyur, Tamil Nadu\"},{\"cityId\":2346,\"cityName\":\"Thuvakudi, Tamil Nadu\"},{\"cityId\":1972,\"cityName\":\"Thuvariman, Tamil Nadu\"},{\"cityId\":1934,\"cityName\":\"Tijara, Rajasthan\"},{\"cityId\":1083,\"cityName\":\"Tikamgarh, Madhya Pradesh\"},{\"cityId\":2254,\"cityName\":\"Tilda Newra, Chhattisgarh\"},{\"cityId\":775,\"cityName\":\"Tilda, Chhattisgarh\"},{\"cityId\":2910,\"cityName\":\"Tilhar, Uttar Pradesh\"},{\"cityId\":2460,\"cityName\":\"Tinchuley, West Bengal\"},{\"cityId\":1325,\"cityName\":\"Tindivanam, Tamil Nadu\"},{\"cityId\":1014,\"cityName\":\"Tiptur, Karnataka\"},{\"cityId\":2038,\"cityName\":\"Tiruchendur, Tamil Nadu\"},{\"cityId\":1326,\"cityName\":\"Tiruchengode, Tamil Nadu\"},{\"cityId\":2203,\"cityName\":\"Tiruchirapalli Rock Fort, Tamil Nadu\"},{\"cityId\":2084,\"cityName\":\"Tirukalukundram, Tamil Nadu\"},{\"cityId\":2397,\"cityName\":\"Tirumala, Andhra Pradesh\"},{\"cityId\":2054,\"cityName\":\"Tirumangalam, Tamil Nadu\"},{\"cityId\":95,\"cityName\":\"Tirunelveli, Tamil Nadu\"},{\"cityId\":2198,\"cityName\":\"Tirupathur, Tamil Nadu\"},{\"cityId\":4,\"cityName\":\"Tirupati, Andhra Pradesh\"},{\"cityId\":1571,\"cityName\":\"Tirupattur, Tamil Nadu\"},{\"cityId\":227,\"cityName\":\"Tirupur, Tamil Nadu\"},{\"cityId\":1044,\"cityName\":\"Tirur, Kerala\"},{\"cityId\":1328,\"cityName\":\"Tiruttani, Tamil Nadu\"},{\"cityId\":1538,\"cityName\":\"Tiruvallur, Tamil Nadu\"},{\"cityId\":695,\"cityName\":\"Tiruvannamalai, Tamil Nadu\"},{\"cityId\":1598,\"cityName\":\"Tiruvuru, Andhra Pradesh\"},{\"cityId\":1849,\"cityName\":\"Titilagarh, Odisha\"},{\"cityId\":757,\"cityName\":\"Titlagarh, Odisha\"},{\"cityId\":2080,\"cityName\":\"Tittagudi, Tamil Nadu\"},{\"cityId\":1534,\"cityName\":\"Titwala, Maharashtra\"},{\"cityId\":931,\"cityName\":\"Tohana, Haryana\"},{\"cityId\":696,\"cityName\":\"Tonk, Rajasthan\"},{\"cityId\":2057,\"cityName\":\"Topslip, Tamil Nadu\"},{\"cityId\":1509,\"cityName\":\"Toranagallu, Karnataka\"},{\"cityId\":932,\"cityName\":\"Tosham, Haryana\"},{\"cityId\":2266,\"cityName\":\"Tribeni, West Bengal\"},{\"cityId\":248,\"cityName\":\"Trichy, Tamil Nadu\"},{\"cityId\":426,\"cityName\":\"Trimbakeshwar, Maharashtra\"},{\"cityId\":2455,\"cityName\":\"Tufanganj, West Bengal\"},{\"cityId\":751,\"cityName\":\"Tuljapur, Maharashtra\"},{\"cityId\":2338,\"cityName\":\"Tulsipur, Uttar Pradesh\"},{\"cityId\":697,\"cityName\":\"Tumakuru, Karnataka\"},{\"cityId\":608,\"cityName\":\"Tundla, Uttar Pradesh\"},{\"cityId\":2366,\"cityName\":\"Tungi, Maharashtra\"},{\"cityId\":2708,\"cityName\":\"Tungnath, Uttarakhand\"},{\"cityId\":833,\"cityName\":\"Tuni, Andhra Pradesh\"},{\"cityId\":2032,\"cityName\":\"Tura, Meghalaya\"},{\"cityId\":2165,\"cityName\":\"Turuvekere, Karnataka\"},{\"cityId\":1496,\"cityName\":\"Tuticorin, Tamil Nadu\"},{\"cityId\":286,\"cityName\":\"Udaipur, Rajasthan\"},{\"cityId\":1084,\"cityName\":\"Udaipura, Madhya Pradesh\"},{\"cityId\":1236,\"cityName\":\"Udaipurwati, Rajasthan\"},{\"cityId\":1329,\"cityName\":\"Udangudi, Tamil Nadu\"},{\"cityId\":1845,\"cityName\":\"Udayagiri, Andhra Pradesh\"},{\"cityId\":752,\"cityName\":\"Udgir, Maharashtra\"},{\"cityId\":946,\"cityName\":\"Udhampur, Jammu and Kashmir\"},{\"cityId\":1330,\"cityName\":\"Udumalaipettai, Tamil Nadu\"},{\"cityId\":1622,\"cityName\":\"Udumalpet, Tamil Nadu\"},{\"cityId\":80,\"cityName\":\"Udupi, Karnataka\"},{\"cityId\":2094,\"cityName\":\"Ujire, Karnataka\"},{\"cityId\":165,\"cityName\":\"Ujjain, Madhya Pradesh\"},{\"cityId\":1586,\"cityName\":\"Ujjaini, Madhya Pradesh\"},{\"cityId\":1831,\"cityName\":\"Ujjani, Karnataka\"},{\"cityId\":2298,\"cityName\":\"Ukai, Gujarat\"},{\"cityId\":2271,\"cityName\":\"Ukhra, West Bengal\"},{\"cityId\":1497,\"cityName\":\"Ulhasnagar, Maharashtra\"},{\"cityId\":2792,\"cityName\":\"Ullal, Karnataka\"},{\"cityId\":1498,\"cityName\":\"Uluberia, West Bengal\"},{\"cityId\":1331,\"cityName\":\"Ulundurpettai, Tamil Nadu\"},{\"cityId\":2300,\"cityName\":\"Umargam, Gujarat\"},{\"cityId\":2945,\"cityName\":\"Umaria, Madhya Pradesh\"},{\"cityId\":916,\"cityName\":\"Umbergaon, Gujarat\"},{\"cityId\":2367,\"cityName\":\"Umred, Maharashtra\"},{\"cityId\":2626,\"cityName\":\"Umreth, Gujarat\"},{\"cityId\":340,\"cityName\":\"Una, Himachal Pradesh\"},{\"cityId\":1406,\"cityName\":\"Unchahar, Uttar Pradesh\"},{\"cityId\":495,\"cityName\":\"Unjha, Gujarat\"},{\"cityId\":1407,\"cityName\":\"Unnao, Uttar Pradesh\"},{\"cityId\":2408,\"cityName\":\"Unnatnagar, Gujarat\"},{\"cityId\":917,\"cityName\":\"Upleta, Gujarat\"},{\"cityId\":1158,\"cityName\":\"Uran, Maharashtra\"},{\"cityId\":2218,\"cityName\":\"Uravakonda, Andhra Pradesh\"},{\"cityId\":1999,\"cityName\":\"Urawade, Maharashtra\"},{\"cityId\":2774,\"cityName\":\"Urla, Chhattisgarh\"},{\"cityId\":2052,\"cityName\":\"Usilampatti, Tamil Nadu\"},{\"cityId\":2348,\"cityName\":\"Uthangal, Tamil Nadu\"},{\"cityId\":1332,\"cityName\":\"Uthangarai, Tamil Nadu\"},{\"cityId\":2083,\"cityName\":\"Uthiramerur, Tamil Nadu\"},{\"cityId\":2078,\"cityName\":\"Uthukuli, Tamil Nadu\"},{\"cityId\":2823,\"cityName\":\"Utordaes Beach, Goa\"},{\"cityId\":1421,\"cityName\":\"Uttarkashi, Uttarakhand\"},{\"cityId\":1045,\"cityName\":\"Vadakara, Kerala\"},{\"cityId\":2395,\"cityName\":\"Vadakkencherry, Kerala\"},{\"cityId\":1333,\"cityName\":\"Vadalur, Tamil Nadu\"},{\"cityId\":1547,\"cityName\":\"Vadinar, Gujarat\"},{\"cityId\":2053,\"cityName\":\"Vadipatti, Tamil Nadu\"},{\"cityId\":18,\"cityName\":\"Vadodara, Gujarat\"},{\"cityId\":1750,\"cityName\":\"Vaduj, Maharashtra\"},{\"cityId\":2382,\"cityName\":\"Vagamon, Kerala\"},{\"cityId\":2803,\"cityName\":\"Vagator Beach, Goa\"},{\"cityId\":1850,\"cityName\":\"Vaibhavwadi, Maharashtra\"},{\"cityId\":1159,\"cityName\":\"Vaijapur, Maharashtra\"},{\"cityId\":1948,\"cityName\":\"Vaikom, Kerala\"},{\"cityId\":2068,\"cityName\":\"Vaitheeswarankoil, Tamil Nadu\"},{\"cityId\":2901,\"cityName\":\"Vallichira, Kerala\"},{\"cityId\":1808,\"cityName\":\"Vallioor, Tamil Nadu\"},{\"cityId\":2042,\"cityName\":\"Valparai, Tamil Nadu\"},{\"cityId\":144,\"cityName\":\"Valsad, Gujarat\"},{\"cityId\":1806,\"cityName\":\"Vandalur, Tamil Nadu\"},{\"cityId\":1760,\"cityName\":\"Vangani, Maharashtra\"},{\"cityId\":1334,\"cityName\":\"Vaniyambadi, Tamil Nadu\"},{\"cityId\":311,\"cityName\":\"Vapi, Gujarat\"},{\"cityId\":371,\"cityName\":\"Varanasi, Uttar Pradesh\"},{\"cityId\":1815,\"cityName\":\"Varangaon, Maharashtra\"},{\"cityId\":2817,\"cityName\":\"Varca Beach, Goa\"},{\"cityId\":1970,\"cityName\":\"Varichiyur, Tamil Nadu\"},{\"cityId\":2386,\"cityName\":\"Varkala, Kerala\"},{\"cityId\":1160,\"cityName\":\"Vasai, Maharashtra\"},{\"cityId\":1982,\"cityName\":\"Vasai-Virar, Maharashtra\"},{\"cityId\":2398,\"cityName\":\"Vasco da Gama, Goa\"},{\"cityId\":1952,\"cityName\":\"Vayalar, Kerala\"},{\"cityId\":1335,\"cityName\":\"Vedaranyam, Tamil Nadu\"},{\"cityId\":1336,\"cityName\":\"Vedasandur, Tamil Nadu\"},{\"cityId\":699,\"cityName\":\"Velankanni, Tamil Nadu\"},{\"cityId\":1337,\"cityName\":\"Vellakoil, Tamil Nadu\"},{\"cityId\":345,\"cityName\":\"Vellore, Tamil Nadu\"},{\"cityId\":2814,\"cityName\":\"Velsao Beach, Goa\"},{\"cityId\":1840,\"cityName\":\"Vempalli, Andhra Pradesh\"},{\"cityId\":1578,\"cityName\":\"Vemulawada, Telangana\"},{\"cityId\":1161,\"cityName\":\"Vengurla, Maharashtra\"},{\"cityId\":834,\"cityName\":\"Venkatagiri, Andhra Pradesh\"},{\"cityId\":1712,\"cityName\":\"Venkatagirikota, Andhra Pradesh\"},{\"cityId\":2786,\"cityName\":\"Veparala, Andhra Pradesh\"},{\"cityId\":1776,\"cityName\":\"Veppampattu, Tamil Nadu\"},{\"cityId\":2071,\"cityName\":\"Veppanthattai, Tamil Nadu\"},{\"cityId\":2072,\"cityName\":\"Veppur, Tamil Nadu\"},{\"cityId\":1338,\"cityName\":\"Vettavalam, Tamil Nadu\"},{\"cityId\":581,\"cityName\":\"Vidisha, Madhya Pradesh\"},{\"cityId\":918,\"cityName\":\"Vijapur, Gujarat\"},{\"cityId\":312,\"cityName\":\"Vijayawada, Andhra Pradesh\"},{\"cityId\":2313,\"cityName\":\"Vikarabad, Telangana\"},{\"cityId\":700,\"cityName\":\"Vikasnagar, Uttarakhand\"},{\"cityId\":1339,\"cityName\":\"Vilathikulam, Tamil Nadu\"},{\"cityId\":701,\"cityName\":\"Villupuram, Tamil Nadu\"},{\"cityId\":1340,\"cityName\":\"Viluppuram, Tamil Nadu\"},{\"cityId\":1799,\"cityName\":\"Vindhyachal, Uttar Pradesh\"},{\"cityId\":835,\"cityName\":\"Vinukonda, Andhra Pradesh\"},{\"cityId\":919,\"cityName\":\"Viramgam, Gujarat\"},{\"cityId\":1162,\"cityName\":\"Virar, Maharashtra\"},{\"cityId\":2660,\"cityName\":\"Virpur, Gujarat\"},{\"cityId\":1341,\"cityName\":\"Virudhachalam, Tamil Nadu\"},{\"cityId\":1342,\"cityName\":\"Virudhunagar, Tamil Nadu\"},{\"cityId\":157,\"cityName\":\"Visakhapatnam, Andhra Pradesh\"},{\"cityId\":920,\"cityName\":\"Visnagar, Gujarat\"},{\"cityId\":1163,\"cityName\":\"Vita, Maharashtra\"},{\"cityId\":836,\"cityName\":\"Vizianagaram, Andhra Pradesh\"},{\"cityId\":1593,\"cityName\":\"Vuyyuru, Andhra Pradesh\"},{\"cityId\":2324,\"cityName\":\"Vyara, Gujarat\"},{\"cityId\":2191,\"cityName\":\"Vythiri, Kerala\"},{\"cityId\":1517,\"cityName\":\"Wada, Maharashtra\"},{\"cityId\":1017,\"cityName\":\"Wadi, Karnataka\"},{\"cityId\":1778,\"cityName\":\"Wadsa, Maharashtra\"},{\"cityId\":2003,\"cityName\":\"Wagholi, Maharashtra\"},{\"cityId\":500,\"cityName\":\"Wai, Maharashtra\"},{\"cityId\":1697,\"cityName\":\"Waidhan, Madhya Pradesh\"},{\"cityId\":1764,\"cityName\":\"Wakad, Maharashtra\"},{\"cityId\":703,\"cityName\":\"Walajapet, Tamil Nadu\"},{\"cityId\":837,\"cityName\":\"Wanaparthy, Telangana\"},{\"cityId\":921,\"cityName\":\"Wankaner, Gujarat\"},{\"cityId\":213,\"cityName\":\"Warangal, Telangana\"},{\"cityId\":1085,\"cityName\":\"Waraseoni, Madhya Pradesh\"},{\"cityId\":753,\"cityName\":\"Wardha, Maharashtra\"},{\"cityId\":2650,\"cityName\":\"Warisaliganj, Bihar\"},{\"cityId\":1164,\"cityName\":\"Warora, Maharashtra\"},{\"cityId\":1165,\"cityName\":\"Warud, Maharashtra\"},{\"cityId\":1166,\"cityName\":\"Washim, Maharashtra\"},{\"cityId\":2344,\"cityName\":\"Watrap, Tamil Nadu\"},{\"cityId\":1499,\"cityName\":\"Wayanad, Kerala\"},{\"cityId\":1529,\"cityName\":\"Wellington, Tamil Nadu\"},{\"cityId\":2411,\"cityName\":\"Wonderla Amusement Park (Bangalore), Karnataka\"},{\"cityId\":2401,\"cityName\":\"Wonderla Amusement Park, Telangana\"},{\"cityId\":1876,\"cityName\":\"Yadagirigutta, Telangana\"},{\"cityId\":1018,\"cityName\":\"Yadgir, Karnataka\"},{\"cityId\":2407,\"cityName\":\"Yamuna Nagar, Haryana\"},{\"cityId\":704,\"cityName\":\"Yamunanagar, Haryana\"},{\"cityId\":1167,\"cityName\":\"Yavatmal, Maharashtra\"},{\"cityId\":2911,\"cityName\":\"Yawal, Maharashtra\"},{\"cityId\":2200,\"cityName\":\"Yelagiri, Tamil Nadu\"},{\"cityId\":2794,\"cityName\":\"Yelburga, Karnataka\"},{\"cityId\":2232,\"cityName\":\"Yellandu, Telangana\"},{\"cityId\":1019,\"cityName\":\"Yellapur, Karnataka\"},{\"cityId\":838,\"cityName\":\"Yemmiganur, Andhra Pradesh\"},{\"cityId\":1728,\"cityName\":\"Yeola, Maharashtra\"},{\"cityId\":2086,\"cityName\":\"Yercaud, Tamil Nadu\"},{\"cityId\":839,\"cityName\":\"Yerraguntla, Andhra Pradesh\"},{\"cityId\":471,\"cityName\":\"Zahirabad, Telangana\"},{\"cityId\":2487,\"cityName\":\"Zamania, Uttar Pradesh\"},{\"cityId\":2920,\"cityName\":\"Zawar, Rajasthan\"},{\"cityId\":705,\"cityName\":\"Zirakpur, Punjab\"},{\"cityId\":2562,\"cityName\":\"Zuluk, Sikkim\"},{\"cityId\":1246,\"cityName\":\"Aathur, Attur\",\"aid\":\"419\",\"org\":\"Attur\",\"is_airport\":\"0\"},{\"cityId\":704,\"cityName\":\"Abdullahpur, Yamunanagar\",\"aid\":\"198\",\"org\":\"Yamunanagar\",\"is_airport\":\"0\"},{\"cityId\":2442,\"cityName\":\"Adur, Adoor\",\"aid\":\"761\",\"org\":\"Adoor\",\"is_airport\":\"0\"},{\"cityId\":50,\"cityName\":\"Agartala Airport, Agartala\",\"aid\":\"3\",\"org\":\"Agartala\",\"is_airport\":\"1\"},{\"cityId\":2807,\"cityName\":\"Agonda, Agonda Beach\",\"aid\":\"816\",\"org\":\"Agonda Beach\",\"is_airport\":\"0\"},{\"cityId\":126,\"cityName\":\"Agra Airport, Agra\",\"aid\":\"4\",\"org\":\"Agra\",\"is_airport\":\"1\"},{\"cityId\":48,\"cityName\":\"Ahmedabad Airport, Ahmedabad\",\"aid\":\"5\",\"org\":\"Ahmedabad\",\"is_airport\":\"1\"},{\"cityId\":101,\"cityName\":\"Akola Airport, Akola\",\"aid\":\"55\",\"org\":\"Akola\",\"is_airport\":\"1\"},{\"cityId\":334,\"cityName\":\"Alibaug, Alibag\",\"aid\":\"432\",\"org\":\"Alibag\",\"is_airport\":\"0\"},{\"cityId\":154,\"cityName\":\"Allahabad Airport, Allahabad\",\"aid\":\"6\",\"org\":\"Allahabad\",\"is_airport\":\"1\"},{\"cityId\":238,\"cityName\":\"Alleppey, Alappuzha\",\"aid\":\"433\",\"org\":\"Alappuzha\",\"is_airport\":\"0\"},{\"cityId\":2,\"cityName\":\"Amausi Airport, Lucknow\",\"aid\":\"150\",\"org\":\"Lucknow\",\"is_airport\":\"1\"},{\"cityId\":1689,\"cityName\":\"Amber, Amer\",\"aid\":\"429\",\"org\":\"Amer\",\"is_airport\":\"0\"},{\"cityId\":48,\"cityName\":\"Amdavad Airport, Ahmedabad\",\"aid\":\"177\",\"org\":\"Ahmedabad\",\"is_airport\":\"1\"},{\"cityId\":84,\"cityName\":\"Amritsar Airport, Amritsar\",\"aid\":\"7\",\"org\":\"Amritsar\",\"is_airport\":\"1\"},{\"cityId\":318,\"cityName\":\"Anantapuramu, Anantapur\",\"aid\":\"426\",\"org\":\"Anantapur\",\"is_airport\":\"0\"},{\"cityId\":318,\"cityName\":\"Ananthapuramu, Anantapur\",\"aid\":\"774\",\"org\":\"Anantapur\",\"is_airport\":\"0\"},{\"cityId\":2809,\"cityName\":\"Anjuna, Anjuna Beach\",\"aid\":\"818\",\"org\":\"Anjuna Beach\",\"is_airport\":\"0\"},{\"cityId\":965,\"cityName\":\"Arakalagudu, Arkalgud\",\"aid\":\"422\",\"org\":\"Arkalgud\",\"is_airport\":\"0\"},{\"cityId\":2808,\"cityName\":\"Arambol, Arambol Beach\",\"aid\":\"817\",\"org\":\"Arambol Beach\",\"is_airport\":\"0\"},{\"cityId\":615,\"cityName\":\"Arkonam, Arakkonam\",\"aid\":\"424\",\"org\":\"Arakkonam\",\"is_airport\":\"0\"},{\"cityId\":1242,\"cityName\":\"Arni, Arani\",\"aid\":\"423\",\"org\":\"Arani\",\"is_airport\":\"0\"},{\"cityId\":2825,\"cityName\":\"Arossim, Arossim Beach\",\"aid\":\"833\",\"org\":\"Arossim Beach\",\"is_airport\":\"0\"},{\"cityId\":1245,\"cityName\":\"Aruppukottai, Aruppukkottai\",\"aid\":\"421\",\"org\":\"Aruppukkottai\",\"is_airport\":\"0\"},{\"cityId\":582,\"cityName\":\"Ashoknagar, Ashok Nagar\",\"aid\":\"420\",\"org\":\"Ashok Nagar\",\"is_airport\":\"0\"},{\"cityId\":2812,\"cityName\":\"Ashvem Beach, Ashwem Beach\",\"aid\":\"791\",\"org\":\"Ashwem Beach\",\"is_airport\":\"0\"},{\"cityId\":2812,\"cityName\":\"Ashwem, Ashwem Beach\",\"aid\":\"821\",\"org\":\"Ashwem Beach\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Attibele, Bangalore\",\"aid\":\"859\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":288,\"cityName\":\"Aurangabad Airport, Aurangabad\",\"aid\":\"8\",\"org\":\"Aurangabad\",\"is_airport\":\"1\"},{\"cityId\":1045,\"cityName\":\"Badagara, Vadakara\",\"aid\":\"438\",\"org\":\"Vadakara\",\"is_airport\":\"0\"},{\"cityId\":145,\"cityName\":\"Badarpur, New Delhi\",\"aid\":\"857\",\"org\":\"New Delhi\",\"is_airport\":\"0\"},{\"cityId\":2816,\"cityName\":\"Baga, Baga Beach\",\"aid\":\"825\",\"org\":\"Baga Beach\",\"is_airport\":\"0\"},{\"cityId\":380,\"cityName\":\"Bagdogra, Siliguri\",\"aid\":\"765\",\"org\":\"Siliguri\",\"is_airport\":\"0\"},{\"cityId\":191,\"cityName\":\"Bajpe Airport, Mangalore\",\"aid\":\"154\",\"org\":\"Mangalore\",\"is_airport\":\"1\"},{\"cityId\":2513,\"cityName\":\"Bakhtiarpur, Bakhtiyarpur\",\"aid\":\"786\",\"org\":\"Bakhtiyarpur\",\"is_airport\":\"0\"},{\"cityId\":83,\"cityName\":\"Baleshwar, Balasore\",\"aid\":\"416\",\"org\":\"Balasore\",\"is_airport\":\"0\"},{\"cityId\":208,\"cityName\":\"Ballari, Bellary\",\"aid\":\"405\",\"org\":\"Bellary\",\"is_airport\":\"0\"},{\"cityId\":1423,\"cityName\":\"Balurghat Airport, Balurghat\",\"aid\":\"56\",\"org\":\"Balurghat\",\"is_airport\":\"1\"},{\"cityId\":2821,\"cityName\":\"Bambolim, Bambolim Beach\",\"aid\":\"830\",\"org\":\"Bambolim Beach\",\"is_airport\":\"0\"},{\"cityId\":154,\"cityName\":\"Bamrauli Airport, Allahabad\",\"aid\":\"102\",\"org\":\"Allahabad\",\"is_airport\":\"1\"},{\"cityId\":1859,\"cityName\":\"Banagana Palli, Banaganapalli\",\"aid\":\"461\",\"org\":\"Banaganapalli\",\"is_airport\":\"0\"},{\"cityId\":840,\"cityName\":\"Banagana Palli, Banganapalle\",\"aid\":\"413\",\"org\":\"Banganapalle\",\"is_airport\":\"0\"},{\"cityId\":371,\"cityName\":\"Banaras Airport, Varanasi\",\"aid\":\"195\",\"org\":\"Varanasi\",\"is_airport\":\"1\"},{\"cityId\":371,\"cityName\":\"Banaras, Varanasi\",\"aid\":\"206\",\"org\":\"Varanasi\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Bandra, Mumbai\",\"aid\":\"861\",\"org\":\"Mumbai\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Bangalore Airport, Bangalore\",\"aid\":\"10\",\"org\":\"Bangalore\",\"is_airport\":\"1\"},{\"cityId\":377,\"cityName\":\"Bangalore Rural, Bangalore\",\"aid\":\"794\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":1859,\"cityName\":\"Banganapalle, Banaganapalli\",\"aid\":\"415\",\"org\":\"Banaganapalli\",\"is_airport\":\"0\"},{\"cityId\":1180,\"cityName\":\"Bangla, Fazilka\",\"aid\":\"371\",\"org\":\"Fazilka\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Banjara Hills, Hyderabad\",\"aid\":\"719\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":1448,\"cityName\":\"Bardez, Bardez Beach\",\"aid\":\"411\",\"org\":\"Bardez Beach\",\"is_airport\":\"0\"},{\"cityId\":539,\"cityName\":\"Bardhaman, Burdwan\",\"aid\":\"395\",\"org\":\"Burdwan\",\"is_airport\":\"0\"},{\"cityId\":613,\"cityName\":\"Bareli Airport, Bareli\",\"aid\":\"57\",\"org\":\"Bareli\",\"is_airport\":\"1\"},{\"cityId\":18,\"cityName\":\"Baroda Airport, Vadodara\",\"aid\":\"194\",\"org\":\"Vadodara\",\"is_airport\":\"1\"},{\"cityId\":18,\"cityName\":\"Baroda, Vadodara\",\"aid\":\"208\",\"org\":\"Vadodara\",\"is_airport\":\"0\"},{\"cityId\":1439,\"cityName\":\"Barrackpur, Barrackpore\",\"aid\":\"410\",\"org\":\"Barrackpore\",\"is_airport\":\"0\"},{\"cityId\":506,\"cityName\":\"Basara, Basar\",\"aid\":\"409\",\"org\":\"Basar\",\"is_airport\":\"0\"},{\"cityId\":969,\"cityName\":\"Basavakalyana, Basavakalyan\",\"aid\":\"408\",\"org\":\"Basavakalyan\",\"is_airport\":\"0\"},{\"cityId\":2483,\"cityName\":\"Bela Pratapgarh, Belha\",\"aid\":\"779\",\"org\":\"Belha\",\"is_airport\":\"0\"},{\"cityId\":128,\"cityName\":\"Belagavi, Belgaum\",\"aid\":\"406\",\"org\":\"Belgaum\",\"is_airport\":\"0\"},{\"cityId\":128,\"cityName\":\"Belgaum Airport, Belgaum\",\"aid\":\"11\",\"org\":\"Belgaum\",\"is_airport\":\"1\"},{\"cityId\":128,\"cityName\":\"Belgavi, Belgaum\",\"aid\":\"789\",\"org\":\"Belgaum\",\"is_airport\":\"0\"},{\"cityId\":208,\"cityName\":\"Bellary Airport, Bellary\",\"aid\":\"58\",\"org\":\"Bellary\",\"is_airport\":\"1\"},{\"cityId\":371,\"cityName\":\"Benares, Varanasi\",\"aid\":\"437\",\"org\":\"Varanasi\",\"is_airport\":\"0\"},{\"cityId\":2805,\"cityName\":\"Benaulim, Benaulim Beach\",\"aid\":\"814\",\"org\":\"Benaulim Beach\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Bengaluru Airport, Bangalore\",\"aid\":\"179\",\"org\":\"Bangalore\",\"is_airport\":\"1\"},{\"cityId\":377,\"cityName\":\"Bengaluru, Bangalore\",\"aid\":\"414\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":2820,\"cityName\":\"Betalbatim, Betalbatim Beach\",\"aid\":\"829\",\"org\":\"Betalbatim Beach\",\"is_airport\":\"0\"},{\"cityId\":2815,\"cityName\":\"Betul, Betul Beach\",\"aid\":\"824\",\"org\":\"Betul Beach\",\"is_airport\":\"0\"},{\"cityId\":312,\"cityName\":\"Bezawada, Vijayawada\",\"aid\":\"203\",\"org\":\"Vijayawada\",\"is_airport\":\"0\"},{\"cityId\":734,\"cityName\":\"Bhadravathi, Bhadravati\",\"aid\":\"401\",\"org\":\"Bhadravati\",\"is_airport\":\"0\"},{\"cityId\":1861,\"cityName\":\"Bhadravati, Bhadravathi\",\"aid\":\"402\",\"org\":\"Bhadravathi\",\"is_airport\":\"0\"},{\"cityId\":365,\"cityName\":\"Bhavnagar Airport, Bhavnagar\",\"aid\":\"59\",\"org\":\"Bhavnagar\",\"is_airport\":\"1\"},{\"cityId\":219,\"cityName\":\"Bhopal Airport, Bhopal\",\"aid\":\"12\",\"org\":\"Bhopal\",\"is_airport\":\"1\"},{\"cityId\":297,\"cityName\":\"Bhubaneshwar, Bhubaneswar\",\"aid\":\"398\",\"org\":\"Bhubaneswar\",\"is_airport\":\"0\"},{\"cityId\":789,\"cityName\":\"Bhuvanagiri, Bhongir\",\"aid\":\"399\",\"org\":\"Bhongir\",\"is_airport\":\"0\"},{\"cityId\":297,\"cityName\":\"Biju Patnaik Airport, Bhubaneswar\",\"aid\":\"110\",\"org\":\"Bhubaneswar\",\"is_airport\":\"1\"},{\"cityId\":183,\"cityName\":\"Bikaner Airport, Bikaner\",\"aid\":\"60\",\"org\":\"Bikaner\",\"is_airport\":\"1\"},{\"cityId\":417,\"cityName\":\"Bilaspur Airport, Bilaspur\",\"aid\":\"61\",\"org\":\"Bilaspur\",\"is_airport\":\"1\"},{\"cityId\":1452,\"cityName\":\"Bina Etawa, Bina\",\"aid\":\"772\",\"org\":\"Bina\",\"is_airport\":\"0\"},{\"cityId\":599,\"cityName\":\"Bina, Beena\",\"aid\":\"407\",\"org\":\"Beena\",\"is_airport\":\"0\"},{\"cityId\":405,\"cityName\":\"Birsa Munda Airport, Ranchi\",\"aid\":\"164\",\"org\":\"Ranchi\",\"is_airport\":\"1\"},{\"cityId\":2813,\"cityName\":\"Bogmalo, Bogmalo Beach\",\"aid\":\"822\",\"org\":\"Bogmalo Beach\",\"is_airport\":\"0\"},{\"cityId\":754,\"cityName\":\"Bolangir, Balangir\",\"aid\":\"417\",\"org\":\"Balangir\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Bombay Airport, Mumbai\",\"aid\":\"188\",\"org\":\"Mumbai\",\"is_airport\":\"1\"},{\"cityId\":2375,\"cityName\":\"Borjhar Airport, Guwahati Airport\",\"aid\":\"747\",\"org\":\"Guwahati Airport\",\"is_airport\":\"0\"},{\"cityId\":967,\"cityName\":\"Bowringpet, Bangarapet\",\"aid\":\"412\",\"org\":\"Bangarapet\",\"is_airport\":\"0\"},{\"cityId\":86,\"cityName\":\"Brahmapur, Berhampur\",\"aid\":\"403\",\"org\":\"Berhampur\",\"is_airport\":\"0\"},{\"cityId\":475,\"cityName\":\"Broach, Bharuch\",\"aid\":\"400\",\"org\":\"Bharuch\",\"is_airport\":\"0\"},{\"cityId\":1690,\"cityName\":\"Budhani, Budhni\",\"aid\":\"460\",\"org\":\"Budhni\",\"is_airport\":\"0\"},{\"cityId\":1690,\"cityName\":\"Budni, Budhni\",\"aid\":\"396\",\"org\":\"Budhni\",\"is_airport\":\"0\"},{\"cityId\":144,\"cityName\":\"Bulsar, Valsad\",\"aid\":\"207\",\"org\":\"Valsad\",\"is_airport\":\"0\"},{\"cityId\":2931,\"cityName\":\"Byndoor, Baindur\",\"aid\":\"850\",\"org\":\"Baindur\",\"is_airport\":\"0\"},{\"cityId\":2806,\"cityName\":\"Calangute, Calangute Beach\",\"aid\":\"815\",\"org\":\"Calangute Beach\",\"is_airport\":\"0\"},{\"cityId\":36,\"cityName\":\"Calcutta Airport, Kolkata\",\"aid\":\"186\",\"org\":\"Kolkata\",\"is_airport\":\"1\"},{\"cityId\":36,\"cityName\":\"Calcutta, Kolkata\",\"aid\":\"332\",\"org\":\"Kolkata\",\"is_airport\":\"0\"},{\"cityId\":218,\"cityName\":\"Calicut Airport, Calicut\",\"aid\":\"62\",\"org\":\"Calicut\",\"is_airport\":\"1\"},{\"cityId\":2610,\"cityName\":\"Canacona, Canacona Beach\",\"aid\":\"807\",\"org\":\"Canacona Beach\",\"is_airport\":\"0\"},{\"cityId\":2839,\"cityName\":\"Canaguinim, Canaguinim Beach\",\"aid\":\"847\",\"org\":\"Canaguinim Beach\",\"is_airport\":\"0\"},{\"cityId\":2828,\"cityName\":\"Canasaulim, Canasaulim Beach\",\"aid\":\"835\",\"org\":\"Canasaulim Beach\",\"is_airport\":\"0\"},{\"cityId\":2320,\"cityName\":\"Candolim, Candolim Beach\",\"aid\":\"805\",\"org\":\"Candolim Beach\",\"is_airport\":\"0\"},{\"cityId\":2840,\"cityName\":\"Carmona, Carmona Beach\",\"aid\":\"848\",\"org\":\"Carmona Beach\",\"is_airport\":\"0\"},{\"cityId\":2810,\"cityName\":\"Cavelossim, Cavelossim Beach\",\"aid\":\"819\",\"org\":\"Cavelossim Beach\",\"is_airport\":\"0\"},{\"cityId\":747,\"cityName\":\"CBD Belapur, Navi Mumbai\",\"aid\":\"854\",\"org\":\"Navi Mumbai\",\"is_airport\":\"0\"},{\"cityId\":550,\"cityName\":\"Chandannagar, Chandan Nagar\",\"aid\":\"393\",\"org\":\"Chandan Nagar\",\"is_airport\":\"0\"},{\"cityId\":422,\"cityName\":\"Chandigarh Airport, Chandigarh\",\"aid\":\"15\",\"org\":\"Chandigarh\",\"is_airport\":\"1\"},{\"cityId\":2512,\"cityName\":\"Chandika, Chandi\",\"aid\":\"785\",\"org\":\"Chandi\",\"is_airport\":\"0\"},{\"cityId\":1454,\"cityName\":\"Changanassery, Changanacherry\",\"aid\":\"392\",\"org\":\"Changanacherry\",\"is_airport\":\"0\"},{\"cityId\":2827,\"cityName\":\"Chapora, Chapora Beach\",\"aid\":\"834\",\"org\":\"Chapora Beach\",\"is_airport\":\"0\"},{\"cityId\":2034,\"cityName\":\"Charrapunji, Cherrapunjee\",\"aid\":\"735\",\"org\":\"Cherrapunjee\",\"is_airport\":\"0\"},{\"cityId\":2,\"cityName\":\"Chaudhary Charan Singh International Airport, Lucknow\",\"aid\":\"151\",\"org\":\"Lucknow\",\"is_airport\":\"1\"},{\"cityId\":81,\"cityName\":\"Chennai Airport, Chennai\",\"aid\":\"37\",\"org\":\"Chennai\",\"is_airport\":\"1\"},{\"cityId\":81,\"cityName\":\"Chennai International Airport, Chennai\",\"aid\":\"153\",\"org\":\"Chennai\",\"is_airport\":\"1\"},{\"cityId\":1825,\"cityName\":\"Chennur, Chennuru\",\"aid\":\"389\",\"org\":\"Chennuru\",\"is_airport\":\"0\"},{\"cityId\":1847,\"cityName\":\"Cherial, Cheriyal\",\"aid\":\"388\",\"org\":\"Cheriyal\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Chhatrapati Shivaji Maharaj International Airport, Mumbai\",\"aid\":\"112\",\"org\":\"Mumbai\",\"is_airport\":\"1\"},{\"cityId\":288,\"cityName\":\"Chikkalthana Airport, Aurangabad\",\"aid\":\"105\",\"org\":\"Aurangabad\",\"is_airport\":\"1\"},{\"cityId\":394,\"cityName\":\"Chikkamagaluru, Chikmagalur\",\"aid\":\"387\",\"org\":\"Chikmagalur\",\"is_airport\":\"0\"},{\"cityId\":627,\"cityName\":\"Chingleput, Chengalpattu\",\"aid\":\"391\",\"org\":\"Chengalpattu\",\"is_airport\":\"0\"},{\"cityId\":314,\"cityName\":\"Chittaurgarh, Chittorgarh\",\"aid\":\"386\",\"org\":\"Chittorgarh\",\"is_airport\":\"0\"},{\"cityId\":325,\"cityName\":\"Cocanada, Kakinada\",\"aid\":\"341\",\"org\":\"Kakinada\",\"is_airport\":\"0\"},{\"cityId\":320,\"cityName\":\"Cochin Airport, Kochi\",\"aid\":\"185\",\"org\":\"Kochi\",\"is_airport\":\"1\"},{\"cityId\":320,\"cityName\":\"Cochin International Airport, Kochi\",\"aid\":\"145\",\"org\":\"Kochi\",\"is_airport\":\"1\"},{\"cityId\":320,\"cityName\":\"Cochin, Kochi\",\"aid\":\"333\",\"org\":\"Kochi\",\"is_airport\":\"0\"},{\"cityId\":244,\"cityName\":\"Coimbatore Airport, Coimbatore\",\"aid\":\"16\",\"org\":\"Coimbatore\",\"is_airport\":\"1\"},{\"cityId\":2831,\"cityName\":\"Cola, Cola Beach\",\"aid\":\"838\",\"org\":\"Cola Beach\",\"is_airport\":\"0\"},{\"cityId\":2800,\"cityName\":\"Colva, Colva Beach\",\"aid\":\"809\",\"org\":\"Colva Beach\",\"is_airport\":\"0\"},{\"cityId\":383,\"cityName\":\"Combaconum, Kumbakonam\",\"aid\":\"452\",\"org\":\"Kumbakonam\",\"is_airport\":\"0\"},{\"cityId\":383,\"cityName\":\"Coombaconum, Kumbakonam\",\"aid\":\"329\",\"org\":\"Kumbakonam\",\"is_airport\":\"0\"},{\"cityId\":325,\"cityName\":\"Coringa, Kakinada\",\"aid\":\"454\",\"org\":\"Kakinada\",\"is_airport\":\"0\"},{\"cityId\":244,\"cityName\":\"Covai, Coimbatore\",\"aid\":\"459\",\"org\":\"Coimbatore\",\"is_airport\":\"0\"},{\"cityId\":721,\"cityName\":\"Cuddapah, Kadapa\",\"aid\":\"342\",\"org\":\"Kadapa\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Cyberabad, Hyderabad\",\"aid\":\"455\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":286,\"cityName\":\"Dabok Airport, Udaipur\",\"aid\":\"174\",\"org\":\"Udaipur\",\"is_airport\":\"1\"},{\"cityId\":234,\"cityName\":\"Dabolim Airport, Goa\",\"aid\":\"130\",\"org\":\"Goa\",\"is_airport\":\"1\"},{\"cityId\":2833,\"cityName\":\"Dabolim, Dabolim Beach\",\"aid\":\"840\",\"org\":\"Dabolim Beach\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Dadar, Mumbai\",\"aid\":\"768\",\"org\":\"Mumbai\",\"is_airport\":\"0\"},{\"cityId\":360,\"cityName\":\"Daman Airport, Daman\",\"aid\":\"63\",\"org\":\"Daman\",\"is_airport\":\"1\"},{\"cityId\":1456,\"cityName\":\"Darjeeling Airport, Darjeeling\",\"aid\":\"64\",\"org\":\"Darjeeling\",\"is_airport\":\"1\"},{\"cityId\":1456,\"cityName\":\"Darjiling, Darjeeling\",\"aid\":\"381\",\"org\":\"Darjeeling\",\"is_airport\":\"0\"},{\"cityId\":1729,\"cityName\":\"Dasua, Dasuya\",\"aid\":\"380\",\"org\":\"Dasuya\",\"is_airport\":\"0\"},{\"cityId\":2027,\"cityName\":\"Dauki, Dawki\",\"aid\":\"732\",\"org\":\"Dawki\",\"is_airport\":\"0\"},{\"cityId\":736,\"cityName\":\"Davangere, Davanagere\",\"aid\":\"379\",\"org\":\"Davanagere\",\"is_airport\":\"0\"},{\"cityId\":2097,\"cityName\":\"Dehradun Airport, Jolly Grant Airport\",\"aid\":\"740\",\"org\":\"Jolly Grant Airport\",\"is_airport\":\"0\"},{\"cityId\":5,\"cityName\":\"Dehradun Railway station, Dehradun\",\"aid\":\"546\",\"org\":\"Dehradun\",\"is_airport\":\"0\"},{\"cityId\":145,\"cityName\":\"Delhi Airport, New Delhi\",\"aid\":\"120\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":145,\"cityName\":\"Delhi, New Delhi\",\"aid\":\"289\",\"org\":\"New Delhi\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Devanahalli, Bangalore\",\"aid\":\"711\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":41,\"cityName\":\"Devi Ahilya Bai Holkar airport, Indore\",\"aid\":\"138\",\"org\":\"Indore\",\"is_airport\":\"1\"},{\"cityId\":511,\"cityName\":\"Devlali, Deolali\",\"aid\":\"378\",\"org\":\"Deolali\",\"is_airport\":\"0\"},{\"cityId\":1574,\"cityName\":\"Dhanaulti, Dhanolti\",\"aid\":\"377\",\"org\":\"Dhanolti\",\"is_airport\":\"0\"},{\"cityId\":146,\"cityName\":\"Dhanbad Airport, Dhanbad\",\"aid\":\"65\",\"org\":\"Dhanbad\",\"is_airport\":\"1\"},{\"cityId\":193,\"cityName\":\"Dharamsala, Dharamshala\",\"aid\":\"376\",\"org\":\"Dharamshala\",\"is_airport\":\"0\"},{\"cityId\":611,\"cityName\":\"Dharawada, Dharwad\",\"aid\":\"375\",\"org\":\"Dharwad\",\"is_airport\":\"0\"},{\"cityId\":663,\"cityName\":\"Dharmakshetra, Kurukshetra\",\"aid\":\"326\",\"org\":\"Kurukshetra\",\"is_airport\":\"0\"},{\"cityId\":2318,\"cityName\":\"Diveagar, Diveagar Beach\",\"aid\":\"804\",\"org\":\"Diveagar Beach\",\"is_airport\":\"0\"},{\"cityId\":1648,\"cityName\":\"Dobbaspet, Dabaspete\",\"aid\":\"383\",\"org\":\"Dabaspete\",\"is_airport\":\"0\"},{\"cityId\":2801,\"cityName\":\"Dona Paula, Dona Paula Beach\",\"aid\":\"810\",\"org\":\"Dona Paula Beach\",\"is_airport\":\"0\"},{\"cityId\":1762,\"cityName\":\"Dr. Ambedkar Nagar, Mhow\",\"aid\":\"302\",\"org\":\"Mhow\",\"is_airport\":\"0\"},{\"cityId\":35,\"cityName\":\"Dr. Babasaheb Ambedkar International Airport, Nagpur\",\"aid\":\"157\",\"org\":\"Nagpur\",\"is_airport\":\"1\"},{\"cityId\":1745,\"cityName\":\"Dronachalam, Dhone\",\"aid\":\"374\",\"org\":\"Dhone\",\"is_airport\":\"0\"},{\"cityId\":36,\"cityName\":\"Dum dum Airport, Kolkata\",\"aid\":\"116\",\"org\":\"Kolkata\",\"is_airport\":\"1\"},{\"cityId\":2119,\"cityName\":\"Dumdum, Dum Dum\",\"aid\":\"742\",\"org\":\"Dum Dum\",\"is_airport\":\"0\"},{\"cityId\":481,\"cityName\":\"Dwarika, Dwarka\",\"aid\":\"372\",\"org\":\"Dwarka\",\"is_airport\":\"0\"},{\"cityId\":171,\"cityName\":\"Faizabad, Ayodhya\",\"aid\":\"764\",\"org\":\"Ayodhya\",\"is_airport\":\"0\"},{\"cityId\":1181,\"cityName\":\"Ferozepur, Firozpur\",\"aid\":\"369\",\"org\":\"Firozpur\",\"is_airport\":\"0\"},{\"cityId\":890,\"cityName\":\"Fonda, Ponda\",\"aid\":\"269\",\"org\":\"Ponda\",\"is_airport\":\"0\"},{\"cityId\":320,\"cityName\":\"Fort Kochi, Kochi\",\"aid\":\"749\",\"org\":\"Kochi\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Gachibowli, Hyderabad\",\"aid\":\"717\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":1568,\"cityName\":\"Gajwel Pragnapur, Gajwel\",\"aid\":\"368\",\"org\":\"Gajwel\",\"is_airport\":\"0\"},{\"cityId\":2804,\"cityName\":\"Galgibaga, Galgibaga Beach\",\"aid\":\"813\",\"org\":\"Galgibaga Beach\",\"is_airport\":\"0\"},{\"cityId\":2424,\"cityName\":\"Galiyakot, Galiakot\",\"aid\":\"757\",\"org\":\"Galiakot\",\"is_airport\":\"0\"},{\"cityId\":2950,\"cityName\":\"Ganj Basoda, Basoda\",\"aid\":\"856\",\"org\":\"Basoda\",\"is_airport\":\"0\"},{\"cityId\":312,\"cityName\":\"Gannavaram, Vijayawada\",\"aid\":\"739\",\"org\":\"Vijayawada\",\"is_airport\":\"0\"},{\"cityId\":1363,\"cityName\":\"Garhmukhteshwar, Garhmukteshwar\",\"aid\":\"367\",\"org\":\"Garhmukteshwar\",\"is_airport\":\"0\"},{\"cityId\":1828,\"cityName\":\"Gariaband, Gariyaband\",\"aid\":\"366\",\"org\":\"Gariyaband\",\"is_airport\":\"0\"},{\"cityId\":954,\"cityName\":\"Ghatsila, Ghatshila\",\"aid\":\"363\",\"org\":\"Ghatshila\",\"is_airport\":\"0\"},{\"cityId\":568,\"cityName\":\"Ghauspur, Gazipur\",\"aid\":\"457\",\"org\":\"Gazipur\",\"is_airport\":\"0\"},{\"cityId\":568,\"cityName\":\"Ghazipore, Gazipur\",\"aid\":\"364\",\"org\":\"Gazipur\",\"is_airport\":\"0\"},{\"cityId\":568,\"cityName\":\"Ghazipur, Gazipur\",\"aid\":\"469\",\"org\":\"Gazipur\",\"is_airport\":\"0\"},{\"cityId\":2427,\"cityName\":\"Gir National Park\\u00a0, Sasan Gir\",\"aid\":\"758\",\"org\":\"Sasan Gir\",\"is_airport\":\"0\"},{\"cityId\":875,\"cityName\":\"Girivraj, Rajgir\",\"aid\":\"262\",\"org\":\"Rajgir\",\"is_airport\":\"0\"},{\"cityId\":2843,\"cityName\":\"Goa Airport, Dabolim\",\"aid\":\"860\",\"org\":\"Dabolim\",\"is_airport\":\"0\"},{\"cityId\":234,\"cityName\":\"Goa Airport, Goa\",\"aid\":\"22\",\"org\":\"Goa\",\"is_airport\":\"1\"},{\"cityId\":763,\"cityName\":\"Gondiya, Gondia\",\"aid\":\"362\",\"org\":\"Gondia\",\"is_airport\":\"0\"},{\"cityId\":113,\"cityName\":\"Gorakhpur Airport, Gorakhpur\",\"aid\":\"23\",\"org\":\"Gorakhpur\",\"is_airport\":\"1\"},{\"cityId\":72,\"cityName\":\"Govardhanpur Airport, Jamnagar\",\"aid\":\"141\",\"org\":\"Jamnagar\",\"is_airport\":\"1\"},{\"cityId\":1446,\"cityName\":\"Govindghat, Badrinath\",\"aid\":\"866\",\"org\":\"Badrinath\",\"is_airport\":\"0\"},{\"cityId\":1638,\"cityName\":\"Guduvancheri, Guduvanchery\",\"aid\":\"361\",\"org\":\"Guduvanchery\",\"is_airport\":\"0\"},{\"cityId\":573,\"cityName\":\"Guna Airport, Guna\",\"aid\":\"66\",\"org\":\"Guna\",\"is_airport\":\"1\"},{\"cityId\":980,\"cityName\":\"Gundlupete, Gundlupet\",\"aid\":\"359\",\"org\":\"Gundlupet\",\"is_airport\":\"0\"},{\"cityId\":1414,\"cityName\":\"Guptkashi, Kedarnath\",\"aid\":\"863\",\"org\":\"Kedarnath\",\"is_airport\":\"0\"},{\"cityId\":73,\"cityName\":\"Gurgaon Airport, Gurgaon\",\"aid\":\"67\",\"org\":\"Gurgaon\",\"is_airport\":\"1\"},{\"cityId\":73,\"cityName\":\"Gurugram, Gurgaon\",\"aid\":\"358\",\"org\":\"Gurgaon\",\"is_airport\":\"0\"},{\"cityId\":1024,\"cityName\":\"Guruvayur, Guruvayoor\",\"aid\":\"357\",\"org\":\"Guruvayoor\",\"is_airport\":\"0\"},{\"cityId\":220,\"cityName\":\"Gwalior Airport, Gwalior\",\"aid\":\"25\",\"org\":\"Gwalior\",\"is_airport\":\"1\"},{\"cityId\":759,\"cityName\":\"Hampe, Hampi\",\"aid\":\"356\",\"org\":\"Hampi\",\"is_airport\":\"0\"},{\"cityId\":981,\"cityName\":\"Hanagal, Hangal\",\"aid\":\"355\",\"org\":\"Hangal\",\"is_airport\":\"0\"},{\"cityId\":981,\"cityName\":\"Hanungal, Hangal\",\"aid\":\"456\",\"org\":\"Hangal\",\"is_airport\":\"0\"},{\"cityId\":404,\"cityName\":\"Hardwar, Haridwar\",\"aid\":\"354\",\"org\":\"Haridwar\",\"is_airport\":\"0\"},{\"cityId\":484,\"cityName\":\"Himatnagar, Himmatnagar\",\"aid\":\"353\",\"org\":\"Himmatnagar\",\"is_airport\":\"0\"},{\"cityId\":1602,\"cityName\":\"Honavar, Honnavar\",\"aid\":\"352\",\"org\":\"Honnavar\",\"is_airport\":\"0\"},{\"cityId\":2177,\"cityName\":\"Horanadu, Hornadu\",\"aid\":\"746\",\"org\":\"Hornadu\",\"is_airport\":\"0\"},{\"cityId\":770,\"cityName\":\"Hospet, Hosapete\",\"aid\":\"351\",\"org\":\"Hosapete\",\"is_airport\":\"0\"},{\"cityId\":329,\"cityName\":\"Hubballi Airport, Hubli\",\"aid\":\"135\",\"org\":\"Hubli\",\"is_airport\":\"1\"},{\"cityId\":329,\"cityName\":\"Hubballi, Hubli\",\"aid\":\"349\",\"org\":\"Hubli\",\"is_airport\":\"0\"},{\"cityId\":329,\"cityName\":\"Hubli Airport, Hubli\",\"aid\":\"26\",\"org\":\"Hubli\",\"is_airport\":\"1\"},{\"cityId\":981,\"cityName\":\"Hungul, Hangal\",\"aid\":\"468\",\"org\":\"Hangal\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Hyderabad Airport, Hyderabad\",\"aid\":\"27\",\"org\":\"Hyderabad\",\"is_airport\":\"1\"},{\"cityId\":223,\"cityName\":\"IBS Campus, Hyderabad\",\"aid\":\"725\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":145,\"cityName\":\"IGI Airport, New Delhi\",\"aid\":\"122\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":145,\"cityName\":\"Indira Gandhi International Airport, New Delhi\",\"aid\":\"121\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":41,\"cityName\":\"Indore Airport, Indore\",\"aid\":\"28\",\"org\":\"Indore\",\"is_airport\":\"1\"},{\"cityId\":129,\"cityName\":\"Jabalpur Airport, Jabalpur\",\"aid\":\"29\",\"org\":\"Jabalpur\",\"is_airport\":\"1\"},{\"cityId\":330,\"cityName\":\"Jaipur Airport, Jaipur\",\"aid\":\"30\",\"org\":\"Jaipur\",\"is_airport\":\"1\"},{\"cityId\":152,\"cityName\":\"Jaisalmer Airport, Jaisalmer\",\"aid\":\"69\",\"org\":\"Jaisalmer\",\"is_airport\":\"1\"},{\"cityId\":104,\"cityName\":\"Jammu Airport, Jammu\",\"aid\":\"70\",\"org\":\"Jammu\",\"is_airport\":\"1\"},{\"cityId\":72,\"cityName\":\"Jamnagar Airport, Jamnagar\",\"aid\":\"31\",\"org\":\"Jamnagar\",\"is_airport\":\"1\"},{\"cityId\":178,\"cityName\":\"Jamshedpur Airport, Jamshedpur\",\"aid\":\"32\",\"org\":\"Jamshedpur\",\"is_airport\":\"1\"},{\"cityId\":2097,\"cityName\":\"Jauligrant, Jolly Grant Airport\",\"aid\":\"741\",\"org\":\"Jolly Grant Airport\",\"is_airport\":\"0\"},{\"cityId\":1824,\"cityName\":\"Javagallu, Javagal\",\"aid\":\"346\",\"org\":\"Javagal\",\"is_airport\":\"0\"},{\"cityId\":401,\"cityName\":\"Jay Prakash Narayan International Airport, Patna\",\"aid\":\"159\",\"org\":\"Patna\",\"is_airport\":\"1\"},{\"cityId\":377,\"cityName\":\"Jigani, Bangalore\",\"aid\":\"712\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":180,\"cityName\":\"Jodhpur Airport, Jodhpur\",\"aid\":\"71\",\"org\":\"Jodhpur\",\"is_airport\":\"1\"},{\"cityId\":1832,\"cityName\":\"Jodia, Jodiya\",\"aid\":\"344\",\"org\":\"Jodiya\",\"is_airport\":\"0\"},{\"cityId\":555,\"cityName\":\"Joyrambati, Jayrambati\",\"aid\":\"345\",\"org\":\"Jayrambati\",\"is_airport\":\"0\"},{\"cityId\":175,\"cityName\":\"Jubbarhatti, Shimla\",\"aid\":\"793\",\"org\":\"Shimla\",\"is_airport\":\"0\"},{\"cityId\":1464,\"cityName\":\"Kaasrodu, Kasaragod\",\"aid\":\"744\",\"org\":\"Kasaragod\",\"is_airport\":\"0\"},{\"cityId\":2172,\"cityName\":\"Kabini Reservoir, Kabini\",\"aid\":\"867\",\"org\":\"Kabini\",\"is_airport\":\"0\"},{\"cityId\":721,\"cityName\":\"Kadapa Airport, Kadapa\",\"aid\":\"17\",\"org\":\"Kadapa\",\"is_airport\":\"1\"},{\"cityId\":253,\"cityName\":\"Kalaburagi, Gulbarga\",\"aid\":\"360\",\"org\":\"Gulbarga\",\"is_airport\":\"0\"},{\"cityId\":747,\"cityName\":\"Kamothe, Navi Mumbai\",\"aid\":\"853\",\"org\":\"Navi Mumbai\",\"is_airport\":\"0\"},{\"cityId\":224,\"cityName\":\"Kancheepuram, Kanchipuram\",\"aid\":\"340\",\"org\":\"Kanchipuram\",\"is_airport\":\"0\"},{\"cityId\":224,\"cityName\":\"Kanchi, Kanchipuram\",\"aid\":\"453\",\"org\":\"Kanchipuram\",\"is_airport\":\"0\"},{\"cityId\":1026,\"cityName\":\"Kanjangad, Kanhangad\",\"aid\":\"339\",\"org\":\"Kanhangad\",\"is_airport\":\"0\"},{\"cityId\":212,\"cityName\":\"Kanpur Airport, Kanpur\",\"aid\":\"72\",\"org\":\"Kanpur\",\"is_airport\":\"1\"},{\"cityId\":1268,\"cityName\":\"Karaikudi, Karaikkudi\",\"aid\":\"338\",\"org\":\"Karaikkudi\",\"is_airport\":\"0\"},{\"cityId\":1464,\"cityName\":\"Kasargod, Kasaragod\",\"aid\":\"745\",\"org\":\"Kasaragod\",\"is_airport\":\"0\"},{\"cityId\":371,\"cityName\":\"Kashi, Varanasi\",\"aid\":\"464\",\"org\":\"Varanasi\",\"is_airport\":\"0\"},{\"cityId\":2030,\"cityName\":\"Kaziranga National Park, Kaziranga\",\"aid\":\"733\",\"org\":\"Kaziranga\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Kempegowda International Airport, Bangalore\",\"aid\":\"2\",\"org\":\"Bangalore\",\"is_airport\":\"1\"},{\"cityId\":487,\"cityName\":\"Khambat, Khambhat\",\"aid\":\"336\",\"org\":\"Khambhat\",\"is_airport\":\"0\"},{\"cityId\":460,\"cityName\":\"Khammamett, Khammam\",\"aid\":\"335\",\"org\":\"Khammam\",\"is_airport\":\"0\"},{\"cityId\":747,\"cityName\":\"Kharghar, Navi Mumbai\",\"aid\":\"770\",\"org\":\"Navi Mumbai\",\"is_airport\":\"0\"},{\"cityId\":126,\"cityName\":\"Kheria Airport, Agra\",\"aid\":\"99\",\"org\":\"Agra\",\"is_airport\":\"1\"},{\"cityId\":1468,\"cityName\":\"Khordha, Khurda\",\"aid\":\"334\",\"org\":\"Khurda\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"KIAL, Bangalore\",\"aid\":\"107\",\"org\":\"Bangalore\",\"is_airport\":\"1\"},{\"cityId\":657,\"cityName\":\"Kishangarh Airport, Kishangarh\",\"aid\":\"796\",\"org\":\"Kishangarh\",\"is_airport\":\"0\"},{\"cityId\":320,\"cityName\":\"Kochi Airport, Kochi\",\"aid\":\"184\",\"org\":\"Kochi\",\"is_airport\":\"1\"},{\"cityId\":441,\"cityName\":\"Kodagu, Coorg\",\"aid\":\"470\",\"org\":\"Coorg\",\"is_airport\":\"0\"},{\"cityId\":40,\"cityName\":\"Kolhapur Airport, Kolhapur\",\"aid\":\"73\",\"org\":\"Kolhapur\",\"is_airport\":\"1\"},{\"cityId\":36,\"cityName\":\"Kolkata Airport, Kolkata\",\"aid\":\"14\",\"org\":\"Kolkata\",\"is_airport\":\"1\"},{\"cityId\":2399,\"cityName\":\"komuravelle, Komuravelli\",\"aid\":\"753\",\"org\":\"Komuravelli\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Kondapur, Hyderabad\",\"aid\":\"716\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":992,\"cityName\":\"Koppala, Koppal\",\"aid\":\"331\",\"org\":\"Koppal\",\"is_airport\":\"0\"},{\"cityId\":232,\"cityName\":\"Kota Airport, Kota\",\"aid\":\"74\",\"org\":\"Kota\",\"is_airport\":\"1\"},{\"cityId\":232,\"cityName\":\"Kotah, Kota\",\"aid\":\"330\",\"org\":\"Kota\",\"is_airport\":\"0\"},{\"cityId\":658,\"cityName\":\"Kotdwara, Kotdwar\",\"aid\":\"737\",\"org\":\"Kotdwar\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Kothaguda, Hyderabad\",\"aid\":\"721\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":261,\"cityName\":\"Kothrud, Pune\",\"aid\":\"862\",\"org\":\"Pune\",\"is_airport\":\"0\"},{\"cityId\":244,\"cityName\":\"Kovai Airport, Coimbatore\",\"aid\":\"181\",\"org\":\"Coimbatore\",\"is_airport\":\"1\"},{\"cityId\":244,\"cityName\":\"Kovai, Coimbatore\",\"aid\":\"385\",\"org\":\"Coimbatore\",\"is_airport\":\"0\"},{\"cityId\":218,\"cityName\":\"Kozhikode, Calicut\",\"aid\":\"394\",\"org\":\"Calicut\",\"is_airport\":\"0\"},{\"cityId\":312,\"cityName\":\"Krishna, Vijayawada\",\"aid\":\"790\",\"org\":\"Vijayawada\",\"is_airport\":\"0\"},{\"cityId\":203,\"cityName\":\"Krishnarajanagara, Mysore\",\"aid\":\"713\",\"org\":\"Mysore\",\"is_airport\":\"0\"},{\"cityId\":377,\"cityName\":\"Krishnarajapura, Bangalore\",\"aid\":\"858\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Kukatpally, Hyderabad\",\"aid\":\"714\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":1470,\"cityName\":\"Kumaly, Kumily\",\"aid\":\"328\",\"org\":\"Kumily\",\"is_airport\":\"0\"},{\"cityId\":843,\"cityName\":\"Kumbhirgram Airport, Silchar\",\"aid\":\"167\",\"org\":\"Silchar\",\"is_airport\":\"1\"},{\"cityId\":843,\"cityName\":\"Kumbhirgram, Silchar\",\"aid\":\"799\",\"org\":\"Silchar\",\"is_airport\":\"0\"},{\"cityId\":1471,\"cityName\":\"Kundapura, Kundapur\",\"aid\":\"327\",\"org\":\"Kundapur\",\"is_airport\":\"0\"},{\"cityId\":1183,\"cityName\":\"Kushok Bakula Rimpochee Airport, Lehragaga\",\"aid\":\"149\",\"org\":\"Lehragaga\",\"is_airport\":\"1\"},{\"cityId\":1601,\"cityName\":\"Ladnu, Ladnun\",\"aid\":\"324\",\"org\":\"Ladnun\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Lakdi ka Pul, Hyderabad\",\"aid\":\"722\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":2122,\"cityName\":\"Lakhimpur Kheri, Lakhimpur\",\"aid\":\"797\",\"org\":\"Lakhimpur\",\"is_airport\":\"0\"},{\"cityId\":371,\"cityName\":\"Lal Bahadur Shastri International Airport, Varanasi\",\"aid\":\"176\",\"org\":\"Varanasi\",\"is_airport\":\"1\"},{\"cityId\":1183,\"cityName\":\"Leh Airport, Lehragaga\",\"aid\":\"148\",\"org\":\"Lehragaga\",\"is_airport\":\"1\"},{\"cityId\":1692,\"cityName\":\"Lillooah, Liluah\",\"aid\":\"323\",\"org\":\"Liluah\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Lingampally, Hyderabad\",\"aid\":\"720\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":261,\"cityName\":\"Lohegaon Airport, Pune\",\"aid\":\"160\",\"org\":\"Pune\",\"is_airport\":\"1\"},{\"cityId\":2375,\"cityName\":\"Lokpriya Gopinath Bordoloi International Airport, Guwahati Airport\",\"aid\":\"748\",\"org\":\"Guwahati Airport\",\"is_airport\":\"0\"},{\"cityId\":2,\"cityName\":\"Lucknow Airport, Lucknow\",\"aid\":\"35\",\"org\":\"Lucknow\",\"is_airport\":\"1\"},{\"cityId\":339,\"cityName\":\"Ludhiana Airport, Ludhiana\",\"aid\":\"36\",\"org\":\"Ludhiana\",\"is_airport\":\"1\"},{\"cityId\":908,\"cityName\":\"Lunavada, Lunawada\",\"aid\":\"321\",\"org\":\"Lunawada\",\"is_airport\":\"0\"},{\"cityId\":888,\"cityName\":\"Madgao, Margao\",\"aid\":\"309\",\"org\":\"Margao\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Madhapur, Hyderabad\",\"aid\":\"718\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":269,\"cityName\":\"Madhurapudi, Rajahmundry\",\"aid\":\"798\",\"org\":\"Rajahmundry\",\"is_airport\":\"0\"},{\"cityId\":441,\"cityName\":\"Madikeri, Coorg\",\"aid\":\"384\",\"org\":\"Coorg\",\"is_airport\":\"0\"},{\"cityId\":81,\"cityName\":\"Madras Airport, Chennai\",\"aid\":\"180\",\"org\":\"Chennai\",\"is_airport\":\"1\"},{\"cityId\":81,\"cityName\":\"Madras, Chennai\",\"aid\":\"390\",\"org\":\"Chennai\",\"is_airport\":\"0\"},{\"cityId\":63,\"cityName\":\"Madurai Airport, Madurai\",\"aid\":\"75\",\"org\":\"Madurai\",\"is_airport\":\"1\"},{\"cityId\":63,\"cityName\":\"Madurai North, Madurai\",\"aid\":\"800\",\"org\":\"Madurai\",\"is_airport\":\"0\"},{\"cityId\":466,\"cityName\":\"Mahabubnagar, Mahbubnagar\",\"aid\":\"318\",\"org\":\"Mahbubnagar\",\"is_airport\":\"0\"},{\"cityId\":50,\"cityName\":\"Maharaja Bir Bikram Airport, Agartala\",\"aid\":\"98\",\"org\":\"Agartala\",\"is_airport\":\"1\"},{\"cityId\":286,\"cityName\":\"Maharana Pratap Airport, Udaipur\",\"aid\":\"175\",\"org\":\"Udaipur\",\"is_airport\":\"1\"},{\"cityId\":1546,\"cityName\":\"Mahasamsthana Math, Adichunchanagiri\",\"aid\":\"434\",\"org\":\"Adichunchanagiri\",\"is_airport\":\"0\"},{\"cityId\":113,\"cityName\":\"Mahayogi Gorakhnath Airport, Gorakhpur\",\"aid\":\"131\",\"org\":\"Gorakhpur\",\"is_airport\":\"1\"},{\"cityId\":237,\"cityName\":\"Mahesana, Mehsana\",\"aid\":\"304\",\"org\":\"Mehsana\",\"is_airport\":\"0\"},{\"cityId\":1610,\"cityName\":\"Mahur, Mahurgad\",\"aid\":\"317\",\"org\":\"Mahurgad\",\"is_airport\":\"0\"},{\"cityId\":2819,\"cityName\":\"Majorda, Majorda Beach\",\"aid\":\"828\",\"org\":\"Majorda Beach\",\"is_airport\":\"0\"},{\"cityId\":1033,\"cityName\":\"Malapuram, Malappuram\",\"aid\":\"316\",\"org\":\"Malappuram\",\"is_airport\":\"0\"},{\"cityId\":540,\"cityName\":\"Malda Airport, Malda\",\"aid\":\"76\",\"org\":\"Malda\",\"is_airport\":\"1\"},{\"cityId\":540,\"cityName\":\"Maldah, Malda\",\"aid\":\"315\",\"org\":\"Malda\",\"is_airport\":\"0\"},{\"cityId\":540,\"cityName\":\"Maldaha, Malda\",\"aid\":\"450\",\"org\":\"Malda\",\"is_airport\":\"0\"},{\"cityId\":1649,\"cityName\":\"Malkheda, Malkhed\",\"aid\":\"314\",\"org\":\"Malkhed\",\"is_airport\":\"0\"},{\"cityId\":1473,\"cityName\":\"Malwan, Malvan\",\"aid\":\"313\",\"org\":\"Malvan\",\"is_airport\":\"0\"},{\"cityId\":115,\"cityName\":\"Mamallapuram, Mahabalipuram\",\"aid\":\"319\",\"org\":\"Mahabalipuram\",\"is_airport\":\"0\"},{\"cityId\":203,\"cityName\":\"Mandakalli Airport, Mysore\",\"aid\":\"156\",\"org\":\"Mysore\",\"is_airport\":\"1\"},{\"cityId\":601,\"cityName\":\"Mandav, Mandu\",\"aid\":\"311\",\"org\":\"Mandu\",\"is_airport\":\"0\"},{\"cityId\":601,\"cityName\":\"Mandavgad, Mandu\",\"aid\":\"449\",\"org\":\"Mandu\",\"is_airport\":\"0\"},{\"cityId\":2818,\"cityName\":\"Mandrem, Mandrem Beach\",\"aid\":\"827\",\"org\":\"Mandrem Beach\",\"is_airport\":\"0\"},{\"cityId\":1066,\"cityName\":\"Mandsour, Mandsaur\",\"aid\":\"312\",\"org\":\"Mandsaur\",\"is_airport\":\"0\"},{\"cityId\":2496,\"cityName\":\"Mangaldai, Mangaldoi\",\"aid\":\"782\",\"org\":\"Mangaldoi\",\"is_airport\":\"0\"},{\"cityId\":191,\"cityName\":\"Mangalore Airport, Mangalore\",\"aid\":\"38\",\"org\":\"Mangalore\",\"is_airport\":\"1\"},{\"cityId\":191,\"cityName\":\"Mangaluru International Airport, Mangalore\",\"aid\":\"155\",\"org\":\"Mangalore\",\"is_airport\":\"1\"},{\"cityId\":191,\"cityName\":\"Mangaluru, Mangalore\",\"aid\":\"310\",\"org\":\"Mangalore\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Maniconda, Hyderabad\",\"aid\":\"726\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Manikonda, Hyderabad\",\"aid\":\"724\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":2830,\"cityName\":\"Mapusaes, Mapusaes Beach\",\"aid\":\"837\",\"org\":\"Mapusaes Beach\",\"is_airport\":\"0\"},{\"cityId\":2212,\"cityName\":\"Maravanthe, Maravanthe beach\",\"aid\":\"802\",\"org\":\"Maravanthe beach\",\"is_airport\":\"0\"},{\"cityId\":713,\"cityName\":\"Masulipatnam, Machilipatnam\",\"aid\":\"320\",\"org\":\"Machilipatnam\",\"is_airport\":\"0\"},{\"cityId\":2479,\"cityName\":\"Maunath Bhanjan, Mau\",\"aid\":\"784\",\"org\":\"Mau\",\"is_airport\":\"0\"},{\"cityId\":951,\"cityName\":\"Medininagar, Daltonganj\",\"aid\":\"382\",\"org\":\"Daltonganj\",\"is_airport\":\"0\"},{\"cityId\":1130,\"cityName\":\"Mhasvad, Mhaswad\",\"aid\":\"303\",\"org\":\"Mhaswad\",\"is_airport\":\"0\"},{\"cityId\":531,\"cityName\":\"Midnapore, Medinipur\",\"aid\":\"305\",\"org\":\"Medinipur\",\"is_airport\":\"0\"},{\"cityId\":2841,\"cityName\":\"Miramar, Miramar Beach\",\"aid\":\"849\",\"org\":\"Miramar Beach\",\"is_airport\":\"0\"},{\"cityId\":547,\"cityName\":\"Miyapur, Mayapur\",\"aid\":\"306\",\"org\":\"Mayapur\",\"is_airport\":\"0\"},{\"cityId\":2824,\"cityName\":\"Mobor, Mobor Beach\",\"aid\":\"832\",\"org\":\"Mobor Beach\",\"is_airport\":\"0\"},{\"cityId\":2485,\"cityName\":\"Mogra Badshahpur, Mungra Badshahpur\",\"aid\":\"780\",\"org\":\"Mungra Badshahpur\",\"is_airport\":\"0\"},{\"cityId\":2936,\"cityName\":\"Moodabidri, Mudbidri\",\"aid\":\"852\",\"org\":\"Mudbidri\",\"is_airport\":\"0\"},{\"cityId\":2802,\"cityName\":\"Morjim, Morjim Beach\",\"aid\":\"811\",\"org\":\"Morjim Beach\",\"is_airport\":\"0\"},{\"cityId\":1476,\"cityName\":\"Mormugao, Marmagoa\",\"aid\":\"308\",\"org\":\"Marmagoa\",\"is_airport\":\"0\"},{\"cityId\":2837,\"cityName\":\"Mormugao, Mormugao Beach\",\"aid\":\"844\",\"org\":\"Mormugao Beach\",\"is_airport\":\"0\"},{\"cityId\":509,\"cityName\":\"Morvi, Morbi\",\"aid\":\"300\",\"org\":\"Morbi\",\"is_airport\":\"0\"},{\"cityId\":1839,\"cityName\":\"Mudukulathur, Muthukulathur\",\"aid\":\"297\",\"org\":\"Muthukulathur\",\"is_airport\":\"0\"},{\"cityId\":998,\"cityName\":\"Muduoolalu, Mudhol\",\"aid\":\"299\",\"org\":\"Mudhol\",\"is_airport\":\"0\"},{\"cityId\":999,\"cityName\":\"Mulabaagilu, Mulbagal\",\"aid\":\"298\",\"org\":\"Mulbagal\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Mulund, Mumbai\",\"aid\":\"771\",\"org\":\"Mumbai\",\"is_airport\":\"0\"},{\"cityId\":114,\"cityName\":\"Mumbai Airport, Mumbai\",\"aid\":\"13\",\"org\":\"Mumbai\",\"is_airport\":\"1\"},{\"cityId\":114,\"cityName\":\"Mumbai, Maharashtra - Domestic T1, Mumbai\",\"aid\":\"114\",\"org\":\"Mumbai\",\"is_airport\":\"1\"},{\"cityId\":114,\"cityName\":\"Mumbai, Maharashtra - International T2, Mumbai\",\"aid\":\"113\",\"org\":\"Mumbai\",\"is_airport\":\"1\"},{\"cityId\":141,\"cityName\":\"Mumbra, Thane\",\"aid\":\"767\",\"org\":\"Thane\",\"is_airport\":\"0\"},{\"cityId\":374,\"cityName\":\"Muzaffarnagar Airport, Muzaffarnagar\",\"aid\":\"77\",\"org\":\"Muzaffarnagar\",\"is_airport\":\"1\"},{\"cityId\":270,\"cityName\":\"Muzaffarpur Airport, Muzaffarpur\",\"aid\":\"78\",\"org\":\"Muzaffarpur\",\"is_airport\":\"1\"},{\"cityId\":203,\"cityName\":\"Mysore Airport, Mysore\",\"aid\":\"39\",\"org\":\"Mysore\",\"is_airport\":\"1\"},{\"cityId\":203,\"cityName\":\"Mysuru Airport, Mysore\",\"aid\":\"189\",\"org\":\"Mysore\",\"is_airport\":\"1\"},{\"cityId\":203,\"cityName\":\"Mysuru, Mysore\",\"aid\":\"296\",\"org\":\"Mysore\",\"is_airport\":\"0\"},{\"cityId\":35,\"cityName\":\"Nagpur Airport, Nagpur\",\"aid\":\"40\",\"org\":\"Nagpur\",\"is_airport\":\"1\"},{\"cityId\":385,\"cityName\":\"Nanded Airport, Nanded\",\"aid\":\"41\",\"org\":\"Nanded\",\"is_airport\":\"1\"},{\"cityId\":439,\"cityName\":\"Nandidurg, Nandi Hills\",\"aid\":\"295\",\"org\":\"Nandi Hills\",\"is_airport\":\"0\"},{\"cityId\":1433,\"cityName\":\"Nandipur, Sainthia\",\"aid\":\"252\",\"org\":\"Sainthia\",\"is_airport\":\"0\"},{\"cityId\":1002,\"cityName\":\"Nanjanagudu, Nanjangud\",\"aid\":\"294\",\"org\":\"Nanjangud\",\"is_airport\":\"0\"},{\"cityId\":927,\"cityName\":\"Narayangarh, Naraingarh(MC)\",\"aid\":\"293\",\"org\":\"Naraingarh(MC)\",\"is_airport\":\"0\"},{\"cityId\":575,\"cityName\":\"Narmadapuram, Hoshangabad\",\"aid\":\"350\",\"org\":\"Hoshangabad\",\"is_airport\":\"0\"},{\"cityId\":294,\"cityName\":\"Nasik Airport, Nashik\",\"aid\":\"79\",\"org\":\"Nashik\",\"is_airport\":\"1\"},{\"cityId\":294,\"cityName\":\"Nasik, Nashik\",\"aid\":\"292\",\"org\":\"Nashik\",\"is_airport\":\"0\"},{\"cityId\":95,\"cityName\":\"Nellai, Tirunelveli\",\"aid\":\"221\",\"org\":\"Tirunelveli\",\"is_airport\":\"0\"},{\"cityId\":747,\"cityName\":\"Nerul, Navi Mumbai\",\"aid\":\"775\",\"org\":\"Navi Mumbai\",\"is_airport\":\"0\"},{\"cityId\":36,\"cityName\":\"Netaji Subhas Chandra Bose International Airport, Kolkata\",\"aid\":\"115\",\"org\":\"Kolkata\",\"is_airport\":\"1\"},{\"cityId\":145,\"cityName\":\"New Delhi - T1 Terminal, New Delhi\",\"aid\":\"125\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":145,\"cityName\":\"New Delhi - T2 Terminal, New Delhi\",\"aid\":\"124\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":145,\"cityName\":\"New Delhi - T3 Terminal, New Delhi\",\"aid\":\"123\",\"org\":\"New Delhi\",\"is_airport\":\"1\"},{\"cityId\":186,\"cityName\":\"New Digha, Digha\",\"aid\":\"373\",\"org\":\"Digha\",\"is_airport\":\"0\"},{\"cityId\":1669,\"cityName\":\"Nileshwaram, Nileshwar\",\"aid\":\"288\",\"org\":\"Nileshwar\",\"is_airport\":\"0\"},{\"cityId\":1070,\"cityName\":\"Nimach, Neemuch\",\"aid\":\"290\",\"org\":\"Neemuch\",\"is_airport\":\"0\"},{\"cityId\":2141,\"cityName\":\"Nishat Garden, Nishat Bagh\",\"aid\":\"743\",\"org\":\"Nishat Bagh\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Nizampet, Hyderabad\",\"aid\":\"738\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":2031,\"cityName\":\"Nowgong, Nagaon\",\"aid\":\"734\",\"org\":\"Nagaon\",\"is_airport\":\"0\"},{\"cityId\":2383,\"cityName\":\"Ochira, Oachira\",\"aid\":\"751\",\"org\":\"Oachira\",\"is_airport\":\"0\"},{\"cityId\":80,\"cityName\":\"Odipu, Udupi\",\"aid\":\"212\",\"org\":\"Udupi\",\"is_airport\":\"0\"},{\"cityId\":421,\"cityName\":\"Oomrawutty, Amravati\",\"aid\":\"428\",\"org\":\"Amravati\",\"is_airport\":\"0\"},{\"cityId\":425,\"cityName\":\"Ootacamund, Ooty\",\"aid\":\"448\",\"org\":\"Ooty\",\"is_airport\":\"0\"},{\"cityId\":2405,\"cityName\":\"Osiyan, Osian\",\"aid\":\"755\",\"org\":\"Osian\",\"is_airport\":\"0\"},{\"cityId\":748,\"cityName\":\"Osmanabad Airport, Osmanabad\",\"aid\":\"80\",\"org\":\"Osmanabad\",\"is_airport\":\"1\"},{\"cityId\":1035,\"cityName\":\"Ottapalam, Ottappalam\",\"aid\":\"286\",\"org\":\"Ottappalam\",\"is_airport\":\"0\"},{\"cityId\":302,\"cityName\":\"Paachgani, Panchgani\",\"aid\":\"281\",\"org\":\"Panchgani\",\"is_airport\":\"0\"},{\"cityId\":761,\"cityName\":\"Palacole, Palakollu\",\"aid\":\"777\",\"org\":\"Palakollu\",\"is_airport\":\"0\"},{\"cityId\":1537,\"cityName\":\"Palamaneru, Palamaner\",\"aid\":\"283\",\"org\":\"Palamaner\",\"is_airport\":\"0\"},{\"cityId\":381,\"cityName\":\"Palghat, Palakkad\",\"aid\":\"284\",\"org\":\"Palakkad\",\"is_airport\":\"0\"},{\"cityId\":2314,\"cityName\":\"Palolem, Palolem Beach\",\"aid\":\"803\",\"org\":\"Palolem Beach\",\"is_airport\":\"0\"},{\"cityId\":1796,\"cityName\":\"Paltanwada, Paratwada\",\"aid\":\"279\",\"org\":\"Paratwada\",\"is_airport\":\"0\"},{\"cityId\":422,\"cityName\":\"Panchkula, Chandigarh\",\"aid\":\"754\",\"org\":\"Chandigarh\",\"is_airport\":\"0\"},{\"cityId\":126,\"cityName\":\"Pandit Deen Dayal Upadhyaya Airport, Agra\",\"aid\":\"100\",\"org\":\"Agra\",\"is_airport\":\"1\"},{\"cityId\":889,\"cityName\":\"Panjim, Panaji\",\"aid\":\"282\",\"org\":\"Panaji\",\"is_airport\":\"0\"},{\"cityId\":680,\"cityName\":\"Pantnagar Airport, Pantnagar\",\"aid\":\"81\",\"org\":\"Pantnagar\",\"is_airport\":\"1\"},{\"cityId\":590,\"cityName\":\"Paradip, Paradeep\",\"aid\":\"280\",\"org\":\"Paradeep\",\"is_airport\":\"0\"},{\"cityId\":590,\"cityName\":\"Paradweep, Paradeep\",\"aid\":\"447\",\"org\":\"Paradeep\",\"is_airport\":\"0\"},{\"cityId\":1666,\"cityName\":\"Parakala, Parkal\",\"aid\":\"276\",\"org\":\"Parkal\",\"is_airport\":\"0\"},{\"cityId\":1856,\"cityName\":\"Parchur, Parchoor\",\"aid\":\"277\",\"org\":\"Parchoor\",\"is_airport\":\"0\"},{\"cityId\":1856,\"cityName\":\"Parchuru, Parchoor\",\"aid\":\"446\",\"org\":\"Parchoor\",\"is_airport\":\"0\"},{\"cityId\":939,\"cityName\":\"Parwanu, Parwanoo\",\"aid\":\"275\",\"org\":\"Parwanoo\",\"is_airport\":\"0\"},{\"cityId\":395,\"cityName\":\"Pathankot Airport, Pathankot\",\"aid\":\"82\",\"org\":\"Pathankot\",\"is_airport\":\"1\"},{\"cityId\":401,\"cityName\":\"Patna Airport, Patna\",\"aid\":\"42\",\"org\":\"Patna\",\"is_airport\":\"1\"},{\"cityId\":2493,\"cityName\":\"Pawa, Pavapuri\",\"aid\":\"781\",\"org\":\"Pavapuri\",\"is_airport\":\"0\"},{\"cityId\":1628,\"cityName\":\"Pawa, Pawapuri\",\"aid\":\"274\",\"org\":\"Pawapuri\",\"is_airport\":\"0\"},{\"cityId\":1682,\"cityName\":\"Pawanagar, Fazilnagar\",\"aid\":\"370\",\"org\":\"Fazilnagar\",\"is_airport\":\"0\"},{\"cityId\":1036,\"cityName\":\"Payyanur, Payyannur\",\"aid\":\"762\",\"org\":\"Payyannur\",\"is_airport\":\"0\"},{\"cityId\":1341,\"cityName\":\"Pazhamalaim, Virudhachalam\",\"aid\":\"200\",\"org\":\"Virudhachalam\",\"is_airport\":\"0\"},{\"cityId\":244,\"cityName\":\"Peelamedu Airport, Coimbatore\",\"aid\":\"118\",\"org\":\"Coimbatore\",\"is_airport\":\"1\"},{\"cityId\":818,\"cityName\":\"Peetika Puram, Pithapuram\",\"aid\":\"271\",\"org\":\"Pithapuram\",\"is_airport\":\"0\"},{\"cityId\":1242,\"cityName\":\"Periya Arani, Arani\",\"aid\":\"462\",\"org\":\"Arani\",\"is_airport\":\"0\"},{\"cityId\":2838,\"cityName\":\"Pernem, Pernem Beach\",\"aid\":\"846\",\"org\":\"Pernem Beach\",\"is_airport\":\"0\"},{\"cityId\":1414,\"cityName\":\"Phata, Kedarnath\",\"aid\":\"864\",\"org\":\"Kedarnath\",\"is_airport\":\"0\"},{\"cityId\":261,\"cityName\":\"Pimpri-Chinchwad, Pune\",\"aid\":\"471\",\"org\":\"Pune\",\"is_airport\":\"0\"},{\"cityId\":1645,\"cityName\":\"Piriyapatna, Periyapatna\",\"aid\":\"272\",\"org\":\"Periyapatna\",\"is_airport\":\"0\"},{\"cityId\":1811,\"cityName\":\"Podhalakur, Podalakur\",\"aid\":\"270\",\"org\":\"Podalakur\",\"is_airport\":\"0\"},{\"cityId\":53,\"cityName\":\"Pondicherry Airport, Pondicherry\",\"aid\":\"83\",\"org\":\"Pondicherry\",\"is_airport\":\"1\"},{\"cityId\":261,\"cityName\":\"Poona Airport, Pune\",\"aid\":\"190\",\"org\":\"Pune\",\"is_airport\":\"1\"},{\"cityId\":261,\"cityName\":\"Poona, Pune\",\"aid\":\"266\",\"org\":\"Pune\",\"is_airport\":\"0\"},{\"cityId\":1642,\"cityName\":\"Poovirundhavalli, Poonamallee\",\"aid\":\"267\",\"org\":\"Poonamallee\",\"is_airport\":\"0\"},{\"cityId\":98,\"cityName\":\"Porbandar Airport, Porbandar\",\"aid\":\"84\",\"org\":\"Porbandar\",\"is_airport\":\"1\"},{\"cityId\":749,\"cityName\":\"Prabhavatinagar, Parbhani\",\"aid\":\"278\",\"org\":\"Parbhani\",\"is_airport\":\"0\"},{\"cityId\":2483,\"cityName\":\"Pratapgarh, Belha\",\"aid\":\"778\",\"org\":\"Belha\",\"is_airport\":\"0\"},{\"cityId\":154,\"cityName\":\"Prayagraj Airport, Allahabad\",\"aid\":\"178\",\"org\":\"Allahabad\",\"is_airport\":\"1\"},{\"cityId\":154,\"cityName\":\"Prayagraj, Allahabad\",\"aid\":\"431\",\"org\":\"Allahabad\",\"is_airport\":\"0\"},{\"cityId\":53,\"cityName\":\"Puducherry, Pondicherry\",\"aid\":\"268\",\"org\":\"Pondicherry\",\"is_airport\":\"0\"},{\"cityId\":261,\"cityName\":\"Pune Airport, Pune\",\"aid\":\"43\",\"org\":\"Pune\",\"is_airport\":\"1\"},{\"cityId\":261,\"cityName\":\"Pune International Airport, Pune\",\"aid\":\"161\",\"org\":\"Pune\",\"is_airport\":\"1\"},{\"cityId\":874,\"cityName\":\"Purnea, Purnia\",\"aid\":\"265\",\"org\":\"Purnia\",\"is_airport\":\"0\"},{\"cityId\":349,\"cityName\":\"Puttaparthi Airport, Puttaparthi\",\"aid\":\"44\",\"org\":\"Puttaparthi\",\"is_airport\":\"1\"},{\"cityId\":2829,\"cityName\":\"Querim, Querim Beach\",\"aid\":\"836\",\"org\":\"Querim Beach\",\"is_airport\":\"0\"},{\"cityId\":823,\"cityName\":\"Rachaveedu, Rayachoti\",\"aid\":\"466\",\"org\":\"Rayachoti\",\"is_airport\":\"0\"},{\"cityId\":564,\"cityName\":\"Raebareli, Rae Bareli\",\"aid\":\"445\",\"org\":\"Rae Bareli\",\"is_airport\":\"0\"},{\"cityId\":564,\"cityName\":\"Raibareilly, Rae Bareli\",\"aid\":\"264\",\"org\":\"Rae Bareli\",\"is_airport\":\"0\"},{\"cityId\":310,\"cityName\":\"Raichore, Raichur\",\"aid\":\"263\",\"org\":\"Raichur\",\"is_airport\":\"0\"},{\"cityId\":412,\"cityName\":\"Raipur Airport, Raipur\",\"aid\":\"45\",\"org\":\"Raipur\",\"is_airport\":\"1\"},{\"cityId\":84,\"cityName\":\"Raja Sansi Airport, Amritsar\",\"aid\":\"103\",\"org\":\"Amritsar\",\"is_airport\":\"1\"},{\"cityId\":219,\"cityName\":\"Rajabhoj International Airport, Bhopal\",\"aid\":\"109\",\"org\":\"Bhopal\",\"is_airport\":\"1\"},{\"cityId\":269,\"cityName\":\"Rajahmundry Airport, Rajahmundry\",\"aid\":\"85\",\"org\":\"Rajahmundry\",\"is_airport\":\"1\"},{\"cityId\":269,\"cityName\":\"Rajamahendravaram, Rajahmundry\",\"aid\":\"792\",\"org\":\"Rajahmundry\",\"is_airport\":\"0\"},{\"cityId\":823,\"cityName\":\"Rajaveedu, Rayachoti\",\"aid\":\"443\",\"org\":\"Rayachoti\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Rajiv Gandhi International Airport, Hyderabad\",\"aid\":\"137\",\"org\":\"Hyderabad\",\"is_airport\":\"1\"},{\"cityId\":90,\"cityName\":\"Rajkot Airport, Rajkot\",\"aid\":\"86\",\"org\":\"Rajkot\",\"is_airport\":\"1\"},{\"cityId\":220,\"cityName\":\"Rajmata Vijaya Raje Scindia Air Terminal, Gwalior\",\"aid\":\"134\",\"org\":\"Gwalior\",\"is_airport\":\"1\"},{\"cityId\":1732,\"cityName\":\"Rajolu, Razole\",\"aid\":\"256\",\"org\":\"Razole\",\"is_airport\":\"0\"},{\"cityId\":84,\"cityName\":\"Ramdaspur, Amritsar\",\"aid\":\"427\",\"org\":\"Amritsar\",\"is_airport\":\"0\"},{\"cityId\":289,\"cityName\":\"Ramesvaram, Rameshwaram\",\"aid\":\"444\",\"org\":\"Rameshwaram\",\"is_airport\":\"0\"},{\"cityId\":289,\"cityName\":\"Rameswaram, Rameshwaram\",\"aid\":\"260\",\"org\":\"Rameshwaram\",\"is_airport\":\"0\"},{\"cityId\":1306,\"cityName\":\"Ramnad, Ramanathapuram\",\"aid\":\"261\",\"org\":\"Ramanathapuram\",\"is_airport\":\"0\"},{\"cityId\":405,\"cityName\":\"Ranchi Airport, Ranchi\",\"aid\":\"46\",\"org\":\"Ranchi\",\"is_airport\":\"1\"},{\"cityId\":129,\"cityName\":\"Rani Durgawati International Airport, Jabalpur\",\"aid\":\"139\",\"org\":\"Jabalpur\",\"is_airport\":\"1\"},{\"cityId\":1594,\"cityName\":\"Ranny, Ranni\",\"aid\":\"259\",\"org\":\"Ranni\",\"is_airport\":\"0\"},{\"cityId\":578,\"cityName\":\"Ratnapuri, Ratlam\",\"aid\":\"258\",\"org\":\"Ratlam\",\"is_airport\":\"0\"},{\"cityId\":2438,\"cityName\":\"Ravongla, Ravangla\",\"aid\":\"760\",\"org\":\"Ravangla\",\"is_airport\":\"0\"},{\"cityId\":2438,\"cityName\":\"Rawangla, Ravangla\",\"aid\":\"759\",\"org\":\"Ravangla\",\"is_airport\":\"0\"},{\"cityId\":823,\"cityName\":\"Rayachoty, Rayachoti\",\"aid\":\"257\",\"org\":\"Rayachoti\",\"is_airport\":\"0\"},{\"cityId\":4,\"cityName\":\"Renigunta Airport, Tirupati\",\"aid\":\"173\",\"org\":\"Tirupati\",\"is_airport\":\"1\"},{\"cityId\":1625,\"cityName\":\"Rikhabdeo, Rishabhdev\",\"aid\":\"255\",\"org\":\"Rishabhdev\",\"is_airport\":\"0\"},{\"cityId\":842,\"cityName\":\"Rowriah Airport, Jorhat\",\"aid\":\"144\",\"org\":\"Jorhat\",\"is_airport\":\"1\"},{\"cityId\":878,\"cityName\":\"Sahasram, Sasaram\",\"aid\":\"246\",\"org\":\"Sasaram\",\"is_airport\":\"0\"},{\"cityId\":961,\"cityName\":\"Sahebganj, Sahibganj\",\"aid\":\"253\",\"org\":\"Sahibganj\",\"is_airport\":\"0\"},{\"cityId\":504,\"cityName\":\"Sahibzada Ajit Singh Nagar, Mohali\",\"aid\":\"301\",\"org\":\"Mohali\",\"is_airport\":\"0\"},{\"cityId\":339,\"cityName\":\"Sahnewal Airport, Ludhiana\",\"aid\":\"152\",\"org\":\"Ludhiana\",\"is_airport\":\"1\"},{\"cityId\":1857,\"cityName\":\"Sailu, Selu\",\"aid\":\"242\",\"org\":\"Selu\",\"is_airport\":\"0\"},{\"cityId\":1006,\"cityName\":\"Sakleshapura, Sakleshpur\",\"aid\":\"442\",\"org\":\"Sakleshpur\",\"is_airport\":\"0\"},{\"cityId\":1006,\"cityName\":\"Sakleshpura, Sakleshpur\",\"aid\":\"251\",\"org\":\"Sakleshpur\",\"is_airport\":\"0\"},{\"cityId\":2832,\"cityName\":\"Salcete, Salcete Beach\",\"aid\":\"839\",\"org\":\"Salcete Beach\",\"is_airport\":\"0\"},{\"cityId\":231,\"cityName\":\"Salem Airport, Salem\",\"aid\":\"88\",\"org\":\"Salem\",\"is_airport\":\"1\"},{\"cityId\":826,\"cityName\":\"Saluru, Salur\",\"aid\":\"250\",\"org\":\"Salur\",\"is_airport\":\"0\"},{\"cityId\":128,\"cityName\":\"Sambra, Belgaum\",\"aid\":\"795\",\"org\":\"Belgaum\",\"is_airport\":\"0\"},{\"cityId\":128,\"cityName\":\"Sambre Airport, Belgaum\",\"aid\":\"108\",\"org\":\"Belgaum\",\"is_airport\":\"1\"},{\"cityId\":1007,\"cityName\":\"Sanduru, Sandur\",\"aid\":\"249\",\"org\":\"Sandur\",\"is_airport\":\"0\"},{\"cityId\":330,\"cityName\":\"Sanganeer Airport, Jaipur\",\"aid\":\"140\",\"org\":\"Jaipur\",\"is_airport\":\"1\"},{\"cityId\":1149,\"cityName\":\"Sangola, Sangole\",\"aid\":\"248\",\"org\":\"Sangole\",\"is_airport\":\"0\"},{\"cityId\":1309,\"cityName\":\"Sankagiri, Sankari\",\"aid\":\"247\",\"org\":\"Sankari\",\"is_airport\":\"0\"},{\"cityId\":48,\"cityName\":\"Sardar Vallabhbhai Patel International Airport, Ahmedabad\",\"aid\":\"101\",\"org\":\"Ahmedabad\",\"is_airport\":\"1\"},{\"cityId\":1559,\"cityName\":\"Sathupalli, Sathupally\",\"aid\":\"245\",\"org\":\"Sathupally\",\"is_airport\":\"0\"},{\"cityId\":1587,\"cityName\":\"Savadatti, Saundatti\",\"aid\":\"244\",\"org\":\"Saundatti\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Secunderabad Airport, Hyderabad\",\"aid\":\"183\",\"org\":\"Hyderabad\",\"is_airport\":\"1\"},{\"cityId\":223,\"cityName\":\"Secunderabad, Hyderabad\",\"aid\":\"348\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":1312,\"cityName\":\"Sengottai, Shenkottai\",\"aid\":\"239\",\"org\":\"Shenkottai\",\"is_airport\":\"0\"},{\"cityId\":1009,\"cityName\":\"Seram, Sedam\",\"aid\":\"243\",\"org\":\"Sedam\",\"is_airport\":\"0\"},{\"cityId\":2834,\"cityName\":\"Sernabatim, Sernabatim Beach\",\"aid\":\"841\",\"org\":\"Sernabatim Beach\",\"is_airport\":\"0\"},{\"cityId\":422,\"cityName\":\"Shaheed Bhagat Singh International Airport, Chandigarh\",\"aid\":\"117\",\"org\":\"Chandigarh\",\"is_airport\":\"1\"},{\"cityId\":223,\"cityName\":\"Shamshabad Airport, Hyderabad\",\"aid\":\"136\",\"org\":\"Hyderabad\",\"is_airport\":\"1\"},{\"cityId\":223,\"cityName\":\"Shamshabad, Hyderabad\",\"aid\":\"723\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":1656,\"cityName\":\"Shankarpalli, Shankarpally\",\"aid\":\"240\",\"org\":\"Shankarpally\",\"is_airport\":\"0\"},{\"cityId\":354,\"cityName\":\"Sheikh Ul-Alam International Airport, Srinagar\",\"aid\":\"168\",\"org\":\"Srinagar\",\"is_airport\":\"1\"},{\"cityId\":2932,\"cityName\":\"Shikaripura, Shikaripur\",\"aid\":\"851\",\"org\":\"Shikaripur\",\"is_airport\":\"0\"},{\"cityId\":1168,\"cityName\":\"Shillong International Airport, Shillong\",\"aid\":\"165\",\"org\":\"Shillong\",\"is_airport\":\"1\"},{\"cityId\":175,\"cityName\":\"Shimla Airport, Shimla\",\"aid\":\"48\",\"org\":\"Shimla\",\"is_airport\":\"1\"},{\"cityId\":111,\"cityName\":\"Shirdi Airport, Shirdi\",\"aid\":\"47\",\"org\":\"Shirdi\",\"is_airport\":\"1\"},{\"cityId\":17,\"cityName\":\"Shivamogga, Shimoga\",\"aid\":\"238\",\"org\":\"Shimoga\",\"is_airport\":\"0\"},{\"cityId\":205,\"cityName\":\"Sholapur, Solapur\",\"aid\":\"235\",\"org\":\"Solapur\",\"is_airport\":\"0\"},{\"cityId\":385,\"cityName\":\"Shri Guru Gobind Singh Ji Airport, Nanded\",\"aid\":\"158\",\"org\":\"Nanded\",\"is_airport\":\"1\"},{\"cityId\":1870,\"cityName\":\"Shrirangapattana, Srirangapatna\",\"aid\":\"855\",\"org\":\"Srirangapatna\",\"is_airport\":\"0\"},{\"cityId\":1155,\"cityName\":\"Shriwardhan, Shrivardhan\",\"aid\":\"237\",\"org\":\"Shrivardhan\",\"is_airport\":\"0\"},{\"cityId\":1741,\"cityName\":\"Sidddharthnagar, Naugarh\",\"aid\":\"291\",\"org\":\"Naugarh\",\"is_airport\":\"0\"},{\"cityId\":1583,\"cityName\":\"Sidhpur, Siddhpur\",\"aid\":\"236\",\"org\":\"Siddhpur\",\"is_airport\":\"0\"},{\"cityId\":50,\"cityName\":\"Singerbhil Airport, Agartala\",\"aid\":\"97\",\"org\":\"Agartala\",\"is_airport\":\"1\"},{\"cityId\":2811,\"cityName\":\"Sinquerim, Sinquerim Beach\",\"aid\":\"820\",\"org\":\"Sinquerim Beach\",\"is_airport\":\"0\"},{\"cityId\":2835,\"cityName\":\"Siolim, Siolim Beach\",\"aid\":\"842\",\"org\":\"Siolim Beach\",\"is_airport\":\"0\"},{\"cityId\":2836,\"cityName\":\"Siridao, Siridao Beach\",\"aid\":\"843\",\"org\":\"Siridao Beach\",\"is_airport\":\"0\"},{\"cityId\":2034,\"cityName\":\"Sohra, Cherrapunjee\",\"aid\":\"736\",\"org\":\"Cherrapunjee\",\"is_airport\":\"0\"},{\"cityId\":1421,\"cityName\":\"Somya Kashi, Uttarkashi\",\"aid\":\"728\",\"org\":\"Uttarkashi\",\"is_airport\":\"0\"},{\"cityId\":1491,\"cityName\":\"Sonamarg, Sonmarg\",\"aid\":\"787\",\"org\":\"Sonmarg\",\"is_airport\":\"0\"},{\"cityId\":178,\"cityName\":\"Sonari Airport, Jamshedpur\",\"aid\":\"142\",\"org\":\"Jamshedpur\",\"is_airport\":\"1\"},{\"cityId\":1398,\"cityName\":\"Sonbhadra City, Robertsganj\",\"aid\":\"254\",\"org\":\"Robertsganj\",\"is_airport\":\"0\"},{\"cityId\":1555,\"cityName\":\"Sonebhadra, Sonbhadra\",\"aid\":\"233\",\"org\":\"Sonbhadra\",\"is_airport\":\"0\"},{\"cityId\":1414,\"cityName\":\"Sonprayag, Kedarnath\",\"aid\":\"865\",\"org\":\"Kedarnath\",\"is_airport\":\"0\"},{\"cityId\":84,\"cityName\":\"Sri Guru Ram Dass Jee International Airport, Amritsar\",\"aid\":\"104\",\"org\":\"Amritsar\",\"is_airport\":\"1\"},{\"cityId\":349,\"cityName\":\"Sri Satya Sai Airport, Puttaparthi\",\"aid\":\"162\",\"org\":\"Puttaparthi\",\"is_airport\":\"1\"},{\"cityId\":354,\"cityName\":\"Srinagar Airport, Srinagar\",\"aid\":\"49\",\"org\":\"Srinagar\",\"is_airport\":\"1\"},{\"cityId\":1812,\"cityName\":\"Sujanpur Tira, Sujanpur\",\"aid\":\"441\",\"org\":\"Sujanpur\",\"is_airport\":\"0\"},{\"cityId\":169,\"cityName\":\"Surat Airport, Surat\",\"aid\":\"89\",\"org\":\"Surat\",\"is_airport\":\"1\"},{\"cityId\":412,\"cityName\":\"Swami Vivekananda Airport, Raipur\",\"aid\":\"163\",\"org\":\"Raipur\",\"is_airport\":\"1\"},{\"cityId\":765,\"cityName\":\"Tadpatri, Tadipatri\",\"aid\":\"230\",\"org\":\"Tadipatri\",\"is_airport\":\"0\"},{\"cityId\":352,\"cityName\":\"Tanjore, Thanjavur\",\"aid\":\"227\",\"org\":\"Thanjavur\",\"is_airport\":\"0\"},{\"cityId\":2327,\"cityName\":\"Tarkarli, Tarkarli Beach\",\"aid\":\"806\",\"org\":\"Tarkarli Beach\",\"is_airport\":\"0\"},{\"cityId\":537,\"cityName\":\"Tarokeshshor, Tarakeswar\",\"aid\":\"229\",\"org\":\"Tarakeswar\",\"is_airport\":\"0\"},{\"cityId\":178,\"cityName\":\"Tatanagar, Jamshedpur\",\"aid\":\"347\",\"org\":\"Jamshedpur\",\"is_airport\":\"0\"},{\"cityId\":1494,\"cityName\":\"Tellicherry, Thalassery\",\"aid\":\"228\",\"org\":\"Thalassery\",\"is_airport\":\"0\"},{\"cityId\":352,\"cityName\":\"Thanjavur Airport, Thanjavur\",\"aid\":\"90\",\"org\":\"Thanjavur\",\"is_airport\":\"1\"},{\"cityId\":915,\"cityName\":\"Thirpur, Tharad\",\"aid\":\"226\",\"org\":\"Tharad\",\"is_airport\":\"0\"},{\"cityId\":1730,\"cityName\":\"Thirupukkoliyur, Avinashi\",\"aid\":\"418\",\"org\":\"Avinashi\",\"is_airport\":\"0\"},{\"cityId\":25,\"cityName\":\"Thiruvananthapuram Airport, Thiruvananthapuram\",\"aid\":\"50\",\"org\":\"Thiruvananthapuram\",\"is_airport\":\"1\"},{\"cityId\":25,\"cityName\":\"Thiruvananthapuram International Airport, Thiruvananthapuram\",\"aid\":\"170\",\"org\":\"Thiruvananthapuram\",\"is_airport\":\"1\"},{\"cityId\":695,\"cityName\":\"Thiruvannamalai, Tiruvannamalai\",\"aid\":\"727\",\"org\":\"Tiruvannamalai\",\"is_airport\":\"0\"},{\"cityId\":1318,\"cityName\":\"Thiruvilliputhur, Srivilliputhur\",\"aid\":\"232\",\"org\":\"Srivilliputhur\",\"is_airport\":\"0\"},{\"cityId\":1496,\"cityName\":\"Thoothukudi, Tuticorin\",\"aid\":\"215\",\"org\":\"Tuticorin\",\"is_airport\":\"0\"},{\"cityId\":1812,\"cityName\":\"Tira Sujanpur, Sujanpur\",\"aid\":\"231\",\"org\":\"Sujanpur\",\"is_airport\":\"0\"},{\"cityId\":248,\"cityName\":\"Tiruchi, Trichy\",\"aid\":\"440\",\"org\":\"Trichy\",\"is_airport\":\"0\"},{\"cityId\":248,\"cityName\":\"Tiruchirappalli, Trichy\",\"aid\":\"218\",\"org\":\"Trichy\",\"is_airport\":\"0\"},{\"cityId\":4,\"cityName\":\"Tirumala Airport, Tirupati\",\"aid\":\"192\",\"org\":\"Tirupati\",\"is_airport\":\"1\"},{\"cityId\":4,\"cityName\":\"Tirupati Airport, Tirupati\",\"aid\":\"52\",\"org\":\"Tirupati\",\"is_airport\":\"1\"},{\"cityId\":227,\"cityName\":\"Tiruppur Airport, Tirupur\",\"aid\":\"193\",\"org\":\"Tirupur\",\"is_airport\":\"1\"},{\"cityId\":227,\"cityName\":\"Tiruppur, Tirupur\",\"aid\":\"220\",\"org\":\"Tirupur\",\"is_airport\":\"0\"},{\"cityId\":227,\"cityName\":\"Tirupur Airport, Tirupur\",\"aid\":\"91\",\"org\":\"Tirupur\",\"is_airport\":\"1\"},{\"cityId\":1041,\"cityName\":\"Tiruvalla, Thiruvalla\",\"aid\":\"225\",\"org\":\"Thiruvalla\",\"is_airport\":\"0\"},{\"cityId\":1322,\"cityName\":\"Tiruvarur, Thiruvarur\",\"aid\":\"223\",\"org\":\"Thiruvarur\",\"is_airport\":\"0\"},{\"cityId\":1509,\"cityName\":\"Torangal, Toranagallu\",\"aid\":\"219\",\"org\":\"Toranagallu\",\"is_airport\":\"0\"},{\"cityId\":248,\"cityName\":\"Trichinopoly, Trichy\",\"aid\":\"465\",\"org\":\"Trichy\",\"is_airport\":\"0\"},{\"cityId\":1043,\"cityName\":\"Trichur, Thrissur\",\"aid\":\"222\",\"org\":\"Thrissur\",\"is_airport\":\"0\"},{\"cityId\":248,\"cityName\":\"Trichy Airport, Trichy\",\"aid\":\"92\",\"org\":\"Trichy\",\"is_airport\":\"1\"},{\"cityId\":426,\"cityName\":\"Trimbak, Trimbakeshwar\",\"aid\":\"217\",\"org\":\"Trimbakeshwar\",\"is_airport\":\"0\"},{\"cityId\":25,\"cityName\":\"Trivandrum Airport, Thiruvananthapuram\",\"aid\":\"191\",\"org\":\"Thiruvananthapuram\",\"is_airport\":\"1\"},{\"cityId\":25,\"cityName\":\"Trivandrum International Airport, Thiruvananthapuram\",\"aid\":\"171\",\"org\":\"Thiruvananthapuram\",\"is_airport\":\"1\"},{\"cityId\":25,\"cityName\":\"Trivandrum, Thiruvananthapuram\",\"aid\":\"224\",\"org\":\"Thiruvananthapuram\",\"is_airport\":\"0\"},{\"cityId\":697,\"cityName\":\"Tumkur, Tumakuru\",\"aid\":\"216\",\"org\":\"Tumakuru\",\"is_airport\":\"0\"},{\"cityId\":425,\"cityName\":\"Udagamandalam, Ooty\",\"aid\":\"287\",\"org\":\"Ooty\",\"is_airport\":\"0\"},{\"cityId\":286,\"cityName\":\"Udaipur Airport, Udaipur\",\"aid\":\"53\",\"org\":\"Udaipur\",\"is_airport\":\"1\"},{\"cityId\":425,\"cityName\":\"Udhagai, Ooty\",\"aid\":\"467\",\"org\":\"Ooty\",\"is_airport\":\"0\"},{\"cityId\":425,\"cityName\":\"Udhagamandalam, Ooty\",\"aid\":\"766\",\"org\":\"Ooty\",\"is_airport\":\"0\"},{\"cityId\":1330,\"cityName\":\"Udumalai, Udumalaipettai\",\"aid\":\"214\",\"org\":\"Udumalaipettai\",\"is_airport\":\"0\"},{\"cityId\":1622,\"cityName\":\"Udumalai, Udumalpet\",\"aid\":\"439\",\"org\":\"Udumalpet\",\"is_airport\":\"0\"},{\"cityId\":1622,\"cityName\":\"Udumalaipettai, Udumalpet\",\"aid\":\"213\",\"org\":\"Udumalpet\",\"is_airport\":\"0\"},{\"cityId\":1331,\"cityName\":\"Ulundurpet, Ulundurpettai\",\"aid\":\"210\",\"org\":\"Ulundurpettai\",\"is_airport\":\"0\"},{\"cityId\":2408,\"cityName\":\"Una, Unnatnagar\",\"aid\":\"756\",\"org\":\"Unnatnagar\",\"is_airport\":\"0\"},{\"cityId\":223,\"cityName\":\"Uppal, Hyderabad\",\"aid\":\"715\",\"org\":\"Hyderabad\",\"is_airport\":\"0\"},{\"cityId\":2498,\"cityName\":\"Urchha, Orchha\",\"aid\":\"783\",\"org\":\"Orchha\",\"is_airport\":\"0\"},{\"cityId\":2823,\"cityName\":\"Utordaes, Utordaes Beach\",\"aid\":\"831\",\"org\":\"Utordaes Beach\",\"is_airport\":\"0\"},{\"cityId\":80,\"cityName\":\"Uttara Kannada, Udupi\",\"aid\":\"801\",\"org\":\"Udupi\",\"is_airport\":\"0\"},{\"cityId\":18,\"cityName\":\"Vadodara Airport, Vadodara\",\"aid\":\"93\",\"org\":\"Vadodara\",\"is_airport\":\"1\"},{\"cityId\":2803,\"cityName\":\"Vagator, Vagator Beach\",\"aid\":\"812\",\"org\":\"Vagator Beach\",\"is_airport\":\"0\"},{\"cityId\":105,\"cityName\":\"Vaishno Devi, Katra\",\"aid\":\"337\",\"org\":\"Katra\",\"is_airport\":\"0\"},{\"cityId\":371,\"cityName\":\"Varanasi Airport, Varanasi\",\"aid\":\"54\",\"org\":\"Varanasi\",\"is_airport\":\"1\"},{\"cityId\":2817,\"cityName\":\"Varca, Varca Beach\",\"aid\":\"826\",\"org\":\"Varca Beach\",\"is_airport\":\"0\"},{\"cityId\":2386,\"cityName\":\"Varkala Beach, Varkala\",\"aid\":\"752\",\"org\":\"Varkala\",\"is_airport\":\"0\"},{\"cityId\":1607,\"cityName\":\"VasaviPenugonda, Penugonda\",\"aid\":\"273\",\"org\":\"Penugonda\",\"is_airport\":\"0\"},{\"cityId\":747,\"cityName\":\"Vashi, Navi Mumbai\",\"aid\":\"769\",\"org\":\"Navi Mumbai\",\"is_airport\":\"0\"},{\"cityId\":1045,\"cityName\":\"Vatakara, Vadakara\",\"aid\":\"209\",\"org\":\"Vadakara\",\"is_airport\":\"0\"},{\"cityId\":1335,\"cityName\":\"Vedaraniam, Vedaranyam\",\"aid\":\"205\",\"org\":\"Vedaranyam\",\"is_airport\":\"0\"},{\"cityId\":1335,\"cityName\":\"Vedaranniyam, Vedaranyam\",\"aid\":\"436\",\"org\":\"Vedaranyam\",\"is_airport\":\"0\"},{\"cityId\":2814,\"cityName\":\"Velsao, Velsao Beach\",\"aid\":\"823\",\"org\":\"Velsao Beach\",\"is_airport\":\"0\"},{\"cityId\":1793,\"cityName\":\"Veluthangady, Belthangady\",\"aid\":\"404\",\"org\":\"Belthangady\",\"is_airport\":\"0\"},{\"cityId\":1840,\"cityName\":\"Vempalle, Vempalli\",\"aid\":\"204\",\"org\":\"Vempalli\",\"is_airport\":\"0\"},{\"cityId\":505,\"cityName\":\"Veraval, Somnath\",\"aid\":\"234\",\"org\":\"Somnath\",\"is_airport\":\"0\"},{\"cityId\":284,\"cityName\":\"Vijayapura, Bijapur\",\"aid\":\"397\",\"org\":\"Bijapur\",\"is_airport\":\"0\"},{\"cityId\":312,\"cityName\":\"Vijayawada Airport, Vijayawada\",\"aid\":\"94\",\"org\":\"Vijayawada\",\"is_airport\":\"1\"},{\"cityId\":441,\"cityName\":\"virajpet, Coorg\",\"aid\":\"458\",\"org\":\"Coorg\",\"is_airport\":\"0\"},{\"cityId\":157,\"cityName\":\"Visakha, Visakhapatnam\",\"aid\":\"435\",\"org\":\"Visakhapatnam\",\"is_airport\":\"0\"},{\"cityId\":157,\"cityName\":\"Visakhapatnam Airport, Visakhapatnam\",\"aid\":\"95\",\"org\":\"Visakhapatnam\",\"is_airport\":\"1\"},{\"cityId\":157,\"cityName\":\"Vishakapatnam Airport, Visakhapatnam\",\"aid\":\"196\",\"org\":\"Visakhapatnam\",\"is_airport\":\"1\"},{\"cityId\":157,\"cityName\":\"Vizag, Visakhapatnam\",\"aid\":\"199\",\"org\":\"Visakhapatnam\",\"is_airport\":\"0\"},{\"cityId\":701,\"cityName\":\"Vizhuppuram, Villupuram\",\"aid\":\"202\",\"org\":\"Villupuram\",\"is_airport\":\"0\"},{\"cityId\":1340,\"cityName\":\"Vizhuppuram, Viluppuram\",\"aid\":\"201\",\"org\":\"Viluppuram\",\"is_airport\":\"0\"},{\"cityId\":1341,\"cityName\":\"Vriddhachalam, Virudhachalam\",\"aid\":\"773\",\"org\":\"Virudhachalam\",\"is_airport\":\"0\"},{\"cityId\":384,\"cityName\":\"Vrindavan, Mathura\",\"aid\":\"307\",\"org\":\"Mathura\",\"is_airport\":\"0\"},{\"cityId\":2382,\"cityName\":\"Wagamon, Vagamon\",\"aid\":\"750\",\"org\":\"Vagamon\",\"is_airport\":\"0\"},{\"cityId\":157,\"cityName\":\"Waltair, Visakhapatnam\",\"aid\":\"463\",\"org\":\"Visakhapatnam\",\"is_airport\":\"0\"},{\"cityId\":213,\"cityName\":\"Warangal Airport, Warangal\",\"aid\":\"96\",\"org\":\"Warangal\",\"is_airport\":\"1\"},{\"cityId\":377,\"cityName\":\"Yelahanka, Bangalore\",\"aid\":\"776\",\"org\":\"Bangalore\",\"is_airport\":\"0\"},{\"cityId\":471,\"cityName\":\"Zaheerabad, Zahirabad\",\"aid\":\"197\",\"org\":\"Zahirabad\",\"is_airport\":\"0\"}]}');
/*!40000 ALTER TABLE `tbl_car_settings` 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=10 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 ('8AFE28CB06EC4D7BB4783AB2FF8D6F44','uzmYwOgreqjpJNR35ylYETeyRYGrzslqC/d9ngMTG/s=','d8272a83be9f8459e778e9f75716f81dbea71b4b6767abf1a39d7c443826e64faec4d1ab6cf36933a39d672cd29aa0414d17cce819531820185bc0d99c40944ff9016823aff81c7a88a16a94feeecb4800b34e8ed2f736b209b2ecc08c5d31d6c79611ca21d64e8d40a27a5c47c958ad8ef503a1f1da0fabd7916181eaada9df99b43bda2003eee01cee9d60e1b9e2ef3ef6034ff77a7c2f4a63518ac07b1be73606506b823783c85869e84992204943685dc0e23ca8f69e24837d90bba9e347637b5922c9a20b106d370917bfbfffaf44dafeefe99003139c97d0fe407bc9df3a1131ab5e4e4b7ce442bb17c47d77e3aed0b792b7e0421da23a998d063a0f02',1,'8432894B905B42EABBED9B23526E0342','0'),('12299922C28B4FF0A97C41C5FB3E9147','k6VdgMFSJUQz8LpSKZkqMl4QIQhbrQl/8rlKzfJ35hI=','2ef65ae9bdebb7eb4dc4adb9f7d91c27a934c915b1c655ea334f3e0e2afbf6c7eabc1e6caee7e5b4979d4f656bb57636e6d748fab3508ee5612b29f9f2cfee3817bbe9311dad6050075c1af5060a8abbf19682975898a5a9ce66be19c1a05bd072d4199a95b4bf3e8009ee257ac77a8cc65cc11f58e63f578ac9a78054106dcb813d28f0c9b4a94a0732a2a369ca1283688a267069edbcef2c53f53fb3276b9835483f0fe600b4a9ea722e2173c5e1d2ac2a73ea12482aa82e329a040782c2246655680843456ac6bd9c890746215b3f4777c698a27d41c80cbcf40ea9472dcd7787a376676be1eea65ee7e041919fb6a41f3edca40b185453ff95c2e6e7e05511a97edfdd370f435eb9951ac313d6a7',2,'27FAAF9E23724B5DAED99FD844CFB11C','0'),('12299922C28B4FF0A97C41C5FB3E9147','hWq5tQ7c//UG9Wd5N/fHtXMvDAGeqV+yP7C+1ggu1v4=','2ef65ae9bdebb7eb4dc4adb9f7d91c27a934c915b1c655ea334f3e0e2afbf6c7eabc1e6caee7e5b4979d4f656bb57636e6d748fab3508ee5612b29f9f2cfee3817bbe9311dad6050075c1af5060a8abbf19682975898a5a9ce66be19c1a05bd072d4199a95b4bf3e8009ee257ac77a8cc65cc11f58e63f578ac9a78054106dcb813d28f0c9b4a94a0732a2a369ca1283688a267069edbcef2c53f53fb3276b9835483f0fe600b4a9ea722e2173c5e1d2ac2a73ea12482aa82e329a040782c2246655680843456ac6bd9c890746215b3f4777c698a27d41c80cbcf40ea9472dcd7787a376676be1eea65ee7e041919fb6a41f3edca40b185453ff95c2e6e7e05511a97edfdd370f435eb9951ac313d6a7',3,'581276CA8E4349818C32440B1BA62CA3','0'),('8369B7E9B29349F28268F93ED1134E5B','1Aj+d2w8YiYsacAUDlVZEbkep8YxQEDstIqCj4Pa6R8=','12c3393fd525f438d1c22c1e0b8792a866a5c3753d9875b997e9ecc5d6c11b459ca03c31158a1f09a28d98644b3ea15cb5041aff0fd3254a319874cf2a3dd1f2b046f5d6a7a2452a619834628c66b7f642f7f91a8caa49d58b6202b63e0a91db34a248cd4615b0c30bb5684b27bf8cd82e9b65a3ddea1307492ceffabb3596ebe740fb331e848a09ee45f473eea6f1edf839d188bac738edb17a3f746e70f998841b7947573a1d7d3426e82d8fc6d744158d0bff9a3a7641a6e62c7e37bb80a284c070ed0a394cd6c593bc407141f18fb4725496dd9d5a8144cd7b933179147426bb9c151b6dbb34df35c25a685dcc03d3ca22c8e2ba08b7e0a5583b293de1ade4e70c216c5c8a0b78ad7c82e1a8123c',4,'3B796987F03E489F91F1160B5DD9D0CB','0'),('CA521494CB524DC5A7A0AB441AF09750','TUCQ6sHr8dVBCo0x9RPLvcfkFW3LjsKO/GaEMY8gLPo=','c80e83160b7e4b32f3e0e1cecd69d61ad36d56378142a91b10ae8351952cdac265a0db9e849c7a517c22141cfc7c0452632b53dd4e1c96e320414137967a21cf54df1326e53323e452e74757ff4f72cd274bedf04d9cef32e94c1dc300fc681f54280fba4d5c66c49e93631e6b742b9330ac7a7550910d280f1ded0ae27583dc8b1fd4231c7c6fec3ba05e1a943ac555a92a09efc289c1f413e5c16d4fb1843f25a253b6842709d9118238a21291f57d02a6733eb3d5aad7ae733d0dc84d48183c7f30ad2a8dcd72c3a01cb73fdf4aab847ea48c8901754c52b092a5d0b2b98631721ae82a0ea06cb6b3289931110791118dd16c0a71e7f3a1f95d669befb0f4f192d75ceb41d8286d1e86ec230393be',5,'AB63DF32A9284D1D92694F43EB0ECC0A','0'),('931A248DF0A541C39C3AB1764B08FA7E','lRVNXEWjAlsT1PKpDUiDNfCU24vV9+qXGbjRkFnU14Y=','d8272a83be9f8459e778e9f75716f81dbea71b4b6767abf1a39d7c443826e64faec4d1ab6cf36933a39d672cd29aa0414d17cce819531820185bc0d99c40944ff9016823aff81c7a88a16a94feeecb4800b34e8ed2f736b209b2ecc08c5d31d6c79611ca21d64e8d40a27a5c47c958ad0528da7a58161f3ffbab8a47eac7086f2738b1167f81c75048d84f494a70df01d01458fb8e5aafd2552526ec74240e2a788468ff94efcdfa4b2c13ad448f79c3d24e6c2367c2622f7c4a76fbcd232a51a9538de76a7564e47549510c75b0afbc5fa010440631f16b04513b51588a7c2becfcb72cf6c4ca0d907000bee7aa13f6d770ec750dab9fdb55972003f0591813',6,'1A03F75070EE4C30B867215E5B2057D7','0'),('1566D36AFCFD49D29016FE23567CDC0E','citwxlQZdJH8TLzGM6euYBBv7rdW0jso5I+cKf+6fYc=','ce7a90e7f37aaafe592334f5f6521c2be40b6d90c3968026827fd3e42d4af2936fe322500f6f0f5090f9cda462734e29ca50d56c2ca0d3817e15d0d2b185b95cf50ac498c3c9ee1924fe2acef706e2fdd027dd311b32b3c90c383f21d4bb0623e7e873f84073d990610d0ecce560a68993f28428487b9afb56ea289a1924e4d16766d3823faa25e332719925d28e5259f021082f12045df7ba7b5035a5d24254bd526316d60654d2ee4061ce9d8bfcc4042ba294c15bca4dc4accfe47c5a301d320a4d1cfaa5a2d0319df4c924aec27b473db8a616f615c1128c256e7b0085f6e25cef0f52dbedfd28ac10a5773694580b0e5d5b99633e358075ab5a0593f84cb0cb5ea627e2b5844b2d922043218761',7,'24C7B3C43CFE44B6BA9FAB96A51ABD91','0'),('91E164A3FA8344E5BF29AE7EE4E1D427','hLMDVNwpDHpEIekMY3X1vuxcE3d+q1YSYkpP6k9jvnk=','d168c046939eb24d5f91c06d960138c1282302eaf92d1a18599c6b76e672aeebad8326ba0af3660945631bcd57d09b7bf68161d9ada6a54e5e2bb528eb462ff1b23b20627aa30d036e52a6d54aa846ac977340773d6a7e1229a704f2a7cb90b74b3bbc0d489ea78b5be68673ba0fba57a534de97ddd1d016c1c9bc673d665f8c35fb808cde07be1d5be9747ee62ef9fa20c0645c9f7a8367a7a9df5e05b0267634d1608704afab8f331bdcd417b1e7a6de7e0db8445d1384c72dcd6fb5d3da70d539fc8aea5a6f983214ed99ad47607ad3c8773a3611762f94246ad2259cafba540ef7e9ab81c831aa798e6e113b9f6635a7bd3aa4b3c43bc90331f75a71882b5c98471a15487db4744709264dfe93b9',8,'A4F28A7FB70E440EA24DDD8DD7831C39','0'),('C4F0732834344FE2BFE3958851B32815','UznbwjAmTuGn4VjdKzlmh3/l6cq+r7cbJ4XnbtPgKlA=','2ef174e265d73adb15a98975e10060c43dab50a95d2a684d5347b29e4605f2bb0018b183c737163e0820695972b72a34856086387cba4af4a7760e2360ce5b58b6190892c0a861892b90719d257f9f2b81831cc9ffc73b13cca6d4d6593e074ffd6ab00eeb5f4d131c89c0af523012caf998ceb006d4cc0831af5fc453328e661675a8499a6da193bbe0999f012080bc38f4d342c497442bf5f5e7b167eee162892d165871acec9a16b1647bb725e231ffc26d172323b57ea3d54767269387ab6ef24a18351146a774652c45db57fac3010f925c4174a84480058385aa72a7b8f0194ef5f333029642de48a3c03e3e4e028450522a74f459725a669d0db79bb241d34cec1d8459086801f39b5d37ea8d',9,'BFC7A69E7A4F4EA29662D22EB32A7E56','0');
/*!40000 ALTER TABLE `tbl_cashfee_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_chatgpt_enquiry`
--

DROP TABLE IF EXISTS `tbl_chatgpt_enquiry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_chatgpt_enquiry` (
  `lead_id` int NOT NULL AUTO_INCREMENT,
  `gtxLeadId` int DEFAULT NULL,
  `salutation` int NOT NULL,
  `fname` varchar(40) DEFAULT NULL,
  `lname` varchar(20) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  `mobile` bigint DEFAULT NULL,
  `countryCode` varchar(15) NOT NULL,
  `otp` varchar(11) DEFAULT NULL,
  `location` varchar(30) NOT NULL,
  `travel_date` varchar(15) NOT NULL,
  `no_of_nights` int NOT NULL,
  `vacation_purpose` varchar(25) NOT NULL,
  `vacation_type` varchar(25) NOT NULL,
  `lead_request` text NOT NULL,
  `lead_response` text,
  `remark` text,
  `create_date` varchar(20) NOT NULL,
  PRIMARY KEY (`lead_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_chatgpt_enquiry`
--

LOCK TABLES `tbl_chatgpt_enquiry` WRITE;
/*!40000 ALTER TABLE `tbl_chatgpt_enquiry` DISABLE KEYS */;
INSERT INTO `tbl_chatgpt_enquiry` VALUES (1,838557,1,'Neeraj','Kumar','neeraj@gmail.com',7455987808,'+91','7169','Noida','20/12/2023',2,'Honeymoon','Relaxing','Build a Plan For Noida on 20/12/2023 for 2 Nights For Honeymoon For Relaxing','Here is a plan for a 2-night honeymoon trip to Noida on 20/12/2023 focused on relaxation:\n\nDay 1:\n1. Arrive in Noida: Arrive at the Noida station or Indira Gandhi International Airport in Delhi.\n2. Check-in at a luxury hotel: Book a romantic suite in one of the top-rated hotels in Noida, such as Radisson Blu or Jaypee Greens Golf and Spa Resort.\n\nDay 2:\n1. Morning spa session: Start the day with a relaxing spa treatment at the hotel. Enjoy a couples\' massage or any other rejuvenating therapies available.\n2. Visit the Botanical Garden: Head over to the expansive Botanical Garden in Noida to spend a peaceful morning surrounded by beautiful flowers and greenery.\n3. Lunch at a rooftop restaurant: Enjoy a romantic lunch at one of the rooftop restaurants in Noida, such as SkyHouse or Imperfecto Ruin Pub.\n4. Boat ride at Okhla Bird Sanctuary: Experience tranquility by taking a boat ride at Okhla Bird Sanctuary. Explore the diverse bird species and wildlife habitats in the sanctuary.\n5. Evening leisure: Spend the evening strolling around the Great India Place Mall or DLF Mall of India. Enjoy shopping, dining, and catching a movie together.\n6. Candlelit dinner: Have a romantic candlelit dinner at an upscale restaurant like LIT Ultra Bar and Brewery or Time Machine. Indulge in delicious food and enjoy a cozy atmosphere.\n\nDay 3:\n1. Sunrise yoga: Start the day with a calming yoga session. Many hotels offer yoga classes or have dedicated yoga instructors.\n2. Visit India Gate: Take a short trip to Delhi and visit India Gate, a national monument and popular romantic spot. Enjoy a leisurely walk around the area.\n3. Lunch at Lodhi Gardens: Have a picnic lunch at the picturesque Lodhi Gardens, another beautiful green space in Delhi known for its historical architecture and serene atmosphere.\n4. Relax at the hotel: After returning to Noida, spend the afternoon relaxing at the hotel. Enjoy the amenities, lounge by the pool, or simply unwind in your suite.\n5. Dinner at a rooftop restaurant: End your trip with a romantic dinner at a rooftop restaurant, such as SkyHouse or Mosaic-Air Bar. Enjoy stunning views of the cityscape while savoring a delicious meal.\n\nNote: Please check the COVID-19 guidelines and restrictions before planning your trip and make sure to follow all safety protocols during your stay.','test Query ','2023-11-29-11-56-00'),(2,838572,1,'Neeraj','kumar','neeraj@gmail.com',7455987808,'+91','5243','Manali','21/12/2023',1,'Honeymoon','Relaxing','Build a Plan For Manali on 21/12/2023 for 1 Nights For Honeymoon For Relaxing','Sure! Here\'s a plan for your one-night honeymoon in Manali on 21/12/2023 for a relaxing experience:\n\nDay 1:\n- Arrive at Kullu-Manali Airport or Manali Bus Station.\n- Transfer to your selected honeymoon accommodation.\n- Take some time to relax and settle in.\n- In the afternoon, visit the Solang Valley. Enjoy the breathtaking views of snow-capped mountains, go for a cable car ride, or indulge in adventure sports like paragliding or skiing (subject to weather conditions and availability).\n- Return to your accommodation and savor a romantic candlelight dinner specially arranged for you. Take the opportunity to spend quality time together.\n\nDay 2:\n- Wake up early and witness the mesmerizing sunrise from your accommodation.\n- After breakfast, head to the Hadimba Devi Temple, a popular tourist spot known for its peaceful surroundings and beautiful architecture.\n- Explore the nearby Van Vihar Park, perfect for a leisurely stroll and enjoying the scenic beauty.\n- Visit the Mall Road, the main shopping street in Manali. Explore the shops and indulge in some local shopping, including handicrafts and traditional garments.\n- In the afternoon, visit the Manali Sanctuary to experience wildlife and nature up close. Go for a short nature walk or take a guided tour of the sanctuary.\n- Before leaving Manali, you can enjoy a relaxing spa or massage session in one of the many wellness centers in the town.\n- Depart from Manali with beautiful memories of your honeymoon.\n\nPlease note that this plan can be customized according to your preferences and the actual availability of attractions and activities during your visit.','No. of Pax 2 ','2023-11-29-12-06-33'),(3,838579,1,'Vikas','Kumar','vikas@gmail.com',7455987808,'+91','6582','Manali','22/12/2023',1,'Honeymoon','Relaxing','Build a Plan For Manali on 22/12/2023 for 1 Nights For Honeymoon For Relaxing','Sure! Here\'s a plan for your one-night honeymoon trip to Manali on December 22, 2023, focused on relaxation:\n\nDay 1:\n1. Arrival in Manali:\n   - Arrive at Kullu Manali Airport or Manali Bus Stand.\n   - Take a pre-booked taxi to your hotel in Manali.\n   - Check-in and freshen up.\n\n2. Afternoon:\n   - Enjoy a leisurely lunch at a local restaurant.\n   - Explore the local markets and indulge in some shopping for souvenirs or traditional Himachali handicrafts.\n\n3. Evening:\n   - Visit the Manali Sanctuary for a peaceful nature walk.\n   - Take a stroll along the Mall Road to revel in the charming atmosphere of the town.\n   - Enjoy a romantic dinner at a restaurant overlooking the beautiful mountain views.\n\n4. Night:\n   - Return to your hotel and unwind.\n   - Take advantage of any relaxation or spa services provided by the hotel.\n   - Spend some quality time together in the coziness of your room.\n\nDay 2:\n1. Morning:\n   - Have a lazy morning and enjoy a delicious breakfast at your hotel.\n   - If you\'re up for some adventure, you can opt for a short trek to nearby viewpoints like Jogini Falls or Solang Valley.\n\n2. Afternoon:\n   - Check out of your hotel and head to the nearby hot springs of Vashisht.\n   - Take a relaxing dip in the healing waters and enjoy the serene surroundings.\n\n3. Evening:\n   - Enjoy a final lunch at a popular local restaurant, savoring the local cuisine.\n   - Soak in the stunning sunset views at the Hadimba Temple.\n\n4. Departure:\n   - After a fulfilling day, it\'s time to bid adieu to Manali.\n   - Arrange for a taxi to take you back to the airport or bus stand for your onward journey.\n\nNote:\n- Make sure to book your accommodations and transportation in advance to ensure availability.\n- Check the weather forecast for Manali during your travel dates and pack accordingly.\n- Always carry a valid ID proof and other necessary travel documents.\n- Follow local guidelines and respect the environment and local culture.\n\nEnjoy your honeymoon trip to Manali!','Test query by mobile','2023-11-29-12-10-23'),(4,838582,1,'Gaurav','Kumar','gaurav@catpl.co.in',9811192312,'+91','7781','europe','12/12/2023',4,'Honeymoon','Relaxing','Build a Plan For europe on 12/12/2023 for 4 Nights For Honeymoon For Relaxing','Sure! Here\'s a suggested plan for a relaxing honeymoon in Europe, starting on December 12, 2023, for 4 nights:\n\nDay 1: Arrival in Barcelona, Spain\n- Fly into Barcelona, a vibrant city known for its stunning architecture and lively atmosphere.\n- Check into a luxury hotel in the city center.\n- Spend the day exploring the city\'s beautiful streets, indulging in some local cuisine, and getting settled into your honeymoon.\n\nDay 2: Barcelona, Spain\n- Start the day with a leisurely breakfast at a charming local cafe.\n- Visit some of Barcelona\'s top attractions, such as the Sagrada Familia, Park Güell, and Casa Batlló. Consider pre-booking skip-the-line tickets to save time.\n- Enjoy a romantic evening stroll along the beachfront promenade or indulge in a couple\'s spa treatment at one of Barcelona\'s renowned wellness centers.\n\nDay 3: Santorini, Greece\n- Fly to Santorini, one of Greece\'s most picturesque islands.\n- Check into an intimate and luxurious hotel with a stunning view of the caldera.\n- Relax and enjoy the island\'s serene atmosphere. Take a walk along the cliffside paths of Oia or embark on a private boat tour to explore the island\'s breathtaking beaches and hidden coves.\n\nDay 4: Santorini, Greece\n- Spend the day unwinding on the island. Lounge by the pool, enjoy a couples massage, or simply bask in the beauty of the Aegean Sea.\n- In the evening, indulge in a candlelit dinner overlooking the sunset. Santorini is famous for its romantic sunsets, so find a cozy spot in Oia or Fira to watch the sky transform with hues of orange and pink.\n\nDay 5: Departure\n- After breakfast, check out of your hotel and bid farewell to Santorini.\n- Depending on your flight schedule, you may have some time to explore a bit more of the island or do some last-minute souvenir shopping.\n- Fly back to your home country, taking with you wonderful memories of your relaxing honeymoon in Europe.\n\nNote: This itinerary is just a suggestion and can be customized based on your preferences and interests. Make sure to also check the latest travel guidelines and restrictions for each destination before planning your trip.',NULL,'2023-11-29-12-13-00'),(5,838673,1,'Neeraj','Kumar','neeraj@gmail.com',7455987808,'+91','4553','Noida','11/12/2023',2,'Family','With Activities','Build a Plan For Noida on 11/12/2023 for 2 Nights For Family For With Activities','Sure! Here\'s a suggested plan for your family trip to Noida on 11/12/2023 for 2 nights:\n\nDay 1: Arrival and Exploring Noida\n- Morning: Arrive in Noida and check into your hotel.\n- Afternoon: Visit Worlds of Wonder, a renowned amusement park in Noida. Enjoy thrilling rides, water slides, go-karting, and other attractions.\n- Evening: Explore the DLF Mall of India, one of the largest malls in India. You can shop, dine, watch a movie, or play indoor games at the mall\'s entertainment zone.\n\nDay 2: Sightseeing in Noida\n- Morning: Visit the Okhla Bird Sanctuary, a natural habitat for various bird species. Enjoy a nature walk and bird-watching experience.\n- Afternoon: Explore the Akshardham Temple, a magnificent Hindu temple known for its stunning architecture and exhibits. Spend some time admiring the beauty, peace, and spiritual atmosphere.\n- Evening: Head to The Great India Place, another popular mall in Noida. Enjoy shopping, food, and entertainment options. You can also visit the \"Big Fat Lulu\'s\" play area for kids.\n\nDay 3: Departure\n- Morning: Check out of your hotel and bid farewell to Noida.\n- If time permits, you can visit the KidZania Noida, an interactive indoor theme park where children can learn through role-playing activities.\n- Afternoon: Depart from Noida and head back to your respective destination.\n\nOptional activities:\n- If you\'re interested in outdoor activities, you can consider visiting Buddh International Circuit, the Formula 1 racing track in Greater Noida.\n- Visit Sector 18 Market, a popular shopping destination in Noida, famous for its street shopping experiences.\n- If your family enjoys golfing, you can book a session at Jaypee Greens Golf and Spa Resort, which is known for its beautiful golf course.\n\nPlease note that the availability of certain activities and attractions may depend on specific dates, so it\'s always a good idea to check in advance and make reservations if required. Also, adjust the plan according to your family\'s preferences and interests.',NULL,'2023-11-29-13-11-19'),(6,838712,1,'Gaurav','Kumar','gaurav@catpl.co.in',9811192312,'+91','2627','Goa','11/12/2023',4,'With Small Kids','Relaxing','Build a Plan For Goa on 11/12/2023 for 4 Nights For With Small Kids For Relaxing','Sure! Here\'s a plan for your trip to Goa on November 12th, 2023, for 4 nights with small kids, focusing on relaxation:\n\nDay 1: Arrival in Goa\n- Arrive at Goa International Airport and transfer to your pre-booked hotel.\n- Get settled and let the kids rest after the journey.\n- Take a leisurely walk on the nearby beach while enjoying the sunset.\n- Have an early dinner at a beachside shack or at the hotel.\n\nDay 2: Beach Day\n- Start the day with a relaxed breakfast at the hotel.\n- Head to a family-friendly beach like Baga Beach or Calangute Beach.\n- Enjoy swimming, building sandcastles, and playing beach games with your kids.\n- Have a picnic lunch on the beach, packed with kid-friendly snacks and drinks.\n- Spend the evening strolling along the beach and exploring the local markets.\n\nDay 3: Water Parks and Recreation\n- Visit a water park like Splashdown Waterpark or Froggyland Water World.\n- Enjoy the various water slides, lazy rivers, and pools suitable for kids.\n- Have lunch at the water park or nearby restaurants offering kid-friendly meals.\n- In the afternoon, visit a recreational center like Snow Park, offering indoor activities like snowboarding and snowball fights.\n- Return to the hotel and have a relaxed evening, perhaps with a family movie night.\n\nDay 4: Nature and Wildlife\n- Explore the natural beauty of Goa by visiting the Bondla Wildlife Sanctuary.\n- Take a guided nature walk with the kids to spot different species of animals and birds.\n- Visit the Deer Safari and let your kids enjoy feeding them.\n- Have a picnic lunch at the sanctuary.\n- Afterward, visit the nearby Butterfly Conservatory to learn about the colorful winged creatures.\n- Return to the hotel and spend the evening relaxing by the pool or beach.\n\nDay 5: Departure\n- Enjoy a leisurely breakfast at the hotel.\n- Depending on your departure time, you can either spend the morning relaxing at the hotel or take a short trip to see the iconic Dudhsagar Falls.\n- Check-out from the hotel and transfer to Goa International Airport for your departure.\n\nRemember to keep the schedule flexible and adjust it as per your children\'s needs. Also, ensure to pack sunscreen, hats, and other essentials for sun protection. Enjoy your trip and have a relaxing time in Goa!',NULL,'2023-11-29-13-40-25'),(7,839280,1,'Gaurav','Kumar','gaurav@catpl.co.in',9811192312,'+91','6116','mumbai','18/12/2023',4,'Honeymoon','Relaxing','Build a Plan For mumbai on 18/12/2023 for 4 Nights For Honeymoon For Relaxing','Day 1: Arrival in Mumbai\n- Arrive at Mumbai International Airport\n- Transfer to your chosen hotel/resort\n- Rest and relax after your journey\n\nDay 2: Explore South Mumbai\n- Start your day with a soothing breakfast at the hotel\n- Visit iconic landmarks like the Gateway of India, Taj Mahal Palace, and Marine Drive\n- Take a leisurely walk along the stunning promenade and enjoy the sea breeze\n- Indulge in a romantic dinner at one of the popular beachside restaurants\n\nDay 3: Relaxing Beach Day\n- After breakfast, head to Juhu Beach, one of Mumbai\'s most popular beaches\n- Spend the day relaxing on the beach, sunbathing, and enjoying beach activities\n- Explore nearby attractions like the ISKCON Temple and Prithvi Theatre\n- Enjoy a candlelit dinner at a beachfront restaurant\n\nDay 4: Day Trip to Elephanta Caves and Kanheri Caves\n- Embark on a day trip to Elephanta Island to explore the ancient Elephanta Caves, a UNESCO World Heritage Site\n- Marvel at the intricately carved sculptures and architecture\n- Afterward, visit the Kanheri Caves, located inside Sanjay Gandhi National Park\n- Enjoy a peaceful picnic amidst nature or take a nature walk within the park\n- Return to your hotel for a relaxed evening\n\nDay 5: Shopping and Departure\n- Explore Mumbai\'s vibrant markets for some souvenir shopping\n- Visit Colaba Causeway, Fashion Street, and Crawford Market for a wide range of shopping options\n- Enjoy a farewell lunch at a famous local restaurant\n- Depart from Mumbai International Airport, carrying beautiful memories of your honeymoon\n\nPlease note that this itinerary can be customized based on your preferences and the availability of attractions. Don\'t forget to check local guidelines and restrictions regarding COVID-19 during your travel dates.',NULL,'2023-11-29-20-50-29'),(8,839327,1,'vicky','Patel','vishvabandhu.patel@gmail.com',8128369979,'+91','9492','gujarat','30/11/2023',5,'Family','With Activities','Build a Plan For gujarat on 30/11/2023 for 5 Nights For Family For With Activities','Sure! Here\'s a plan for your trip to Gujarat from November 30th, 2023, for 5 nights with family and various activities:\n\nDay 1: Arrival in Ahmedabad\n- Arrive at Ahmedabad airport and transfer to your hotel.\n- Explore the Sabarmati Ashram, the former residence of Mahatma Gandhi.\n- Visit the Calico Museum of Textiles to learn about the region\'s textiles and craftsmanship.\n- Enjoy a traditional Gujarati dinner at a local restaurant.\n\nDay 2: Ahmedabad City Tour\n- Begin your day with a visit to the magnificent Jama Masjid, one of the largest mosques in India.\n- Explore the bustling Manek Chowk market and enjoy local street food.\n- Visit the iconic Sidi Saiyyed Mosque, famous for its exquisite stone lattice work.\n- Discover the historic Bhadra Fort and climb to the top for panoramic views of the city.\n- In the evening, take a stroll along the Sabarmati Riverfront and enjoy the beautiful sunset.\n\nDay 3: Rann of Kutch Excursion\n- Take a day trip to the mesmerizing Rann of Kutch, famous for its white salt desert.\n- Witness the breathtaking expanse of the Rann during sunset and stay for a traditional cultural program.\n- Enjoy local delicacies like Dhabeli and Kutchi Dabeli.\n\nDay 4: Vadodara Exploration\n- Travel to Vadodara (formerly Baroda) and visit the Laxmi Vilas Palace, the residence of the Gaekwad dynasty.\n- Explore the fascinating Maharaja Fateh Singh Museum, which houses an impressive collection of art.\n- Visit Kirti Mandir, a memorial dedicated to Mahatma Gandhi and his wife Kasturba.\n- Enjoy an evening walk in Sayaji Garden and relax amidst lush greenery.\n\nDay 5: Wildlife Safari in Gir National Park\n- Embark on an early morning trip to Gir National Park, known for being the last refuge of the Asiatic lions.\n- Enjoy a wildlife safari and spot various wildlife species, including lions, leopards, and deer.\n- In the afternoon, visit the Gir Interpretation Zone to learn more about the park\'s flora and fauna.\n\nDay 6: Departure\n- Check out from your hotel and proceed to the airport for your departure from Ahmedabad.\n\nImportant tips:\n- Make sure to check the weather conditions and pack accordingly.\n- Book accommodation and tickets for tourist attractions in advance.\n- Hire a reputable local guide for a more immersive experience.\n- Respect the local culture and customs, especially at religious sites.\n\nHave a memorable trip to Gujarat with your family!','2','2023-11-29-21-42-41'),(9,842407,1,'Atmaj','W','atmajw1@gmail.com',7566821253,'+91','8733','Goa','29/12/2023',3,'Family','With Activities','Build a Plan For Goa on 29/12/2023 for 3 Nights For Family For With Activities','Sure! Here\'s a plan for a 3-night family vacation in Goa on 29/12/2023:\n\nDay 1: Arrival and Beach Time\n- Arrive in Goa and check into your preferred accommodation.\n- Relax and unwind at one of the beautiful beaches like Baga, Calangute, or Anjuna.\n- Enjoy water sports activities such as jet skiing, parasailing, or banana boat rides.\n- Explore the vibrant beach shacks and try some local Goan cuisine for dinner.\n\nDay 2: Sightseeing in North Goa\n- Start the day by visiting the magnificent Fort Aguada, which offers panoramic views of the Arabian Sea.\n- Visit the famous Chapora Fort, known for its picturesque surroundings and prominence in Bollywood movies.\n- Explore the lively and colorful Anjuna Flea Market, where you can find trendy clothing, accessories, and souvenirs.\n- Spend the evening at the bustling Baga Beach, known for its nightlife and beachside restaurants.\n\nDay 3: Cultural Exploration and Leisure\n- Begin the day with a visit to the beautiful Shri Manguesh Temple, a prominent Hindu temple dedicated to Lord Shiva.\n- Head to Old Goa to explore its historical landmarks, including the Basilica of Bom Jesus and Se Cathedral, both UNESCO World Heritage Sites.\n- Take a leisurely walk along the Fontainhas neighborhood in Panjim, known for its colorful Portuguese-style houses and charming streets.\n- Enjoy a relaxing river cruise on the Mandovi River in the evening, with live music and traditional Goan dance performances.\n\nDay 4: Adventure and Departure\n- Start the day with an early morning visit to the Dudhsagar Waterfalls, one of the tallest waterfalls in India.\n- Enjoy a thrilling jeep safari or trek to reach the waterfall and immerse yourself in the natural beauty.\n- Return to your accommodation, check out, and depart for your onward journey.\n\nOptional: If you have more time, you can extend your stay and explore South Goa, which offers serene beaches like Palolem and Agonda, as well as the beautiful Cabo de Rama Fort and the Netravali Wildlife Sanctuary.\n\nRemember to check the availability and timings of the activities and attractions beforehand and make all necessary bookings in advance. Enjoy your family vacation in Goa!',NULL,'2023-12-02-14-31-18'),(10,842417,1,'Anil','J','jaiswal.abj@gmail.com',9752051511,'+91','5515','Dubai','20/12/2023',5,'Weekend','Relaxing','Build a Plan For Dubai on 20/12/2023 for 5 Nights For Weekend For Relaxing','Sure! Here\'s a plan for a relaxing weekend trip to Dubai from 20/12/2023 for 5 nights:\n\nDay 1:\n- Arrive in Dubai and check in to your hotel in a relaxed and comfortable area like Jumeirah Beach or Dubai Marina.\n- Spend the day unwinding at the hotel, taking advantage of the leisure facilities, such as the pool or spa.\n- In the evening, head out to explore the vibrant Dubai Marina Walk. Enjoy a leisurely stroll along the waterfront and dine at one of the many restaurants offering a variety of cuisines.\n\nDay 2:\n- Start the day with a visit to the Dubai Miracle Garden. This stunning garden is home to millions of flowers arranged in various creative displays, providing a peaceful and serene environment.\n- In the afternoon, visit Jumeirah Beach Park for some relaxation by the beach. You can soak up the sun, swim in the crystal-clear waters, or simply enjoy a picnic on the grassy areas.\n- In the evening, head to Souk Madinat Jumeirah, a traditional Arabian market offering a wide range of shops, restaurants, and entertainment options. Take a leisurely walk around the market and enjoy the beautiful views of the Burj Al Arab.\n\nDay 3:\n- Take a day trip to the Dubai Desert Conservation Reserve. Experience the tranquility of the desert with activities like dune bashing, camel riding, and sandboarding. You can also enjoy a delicious dinner under the stars during a desert safari.\n- Return to your hotel for a good night\'s sleep and rest.\n\nDay 4:\n- Explore the iconic Palm Jumeirah, an artificial island known for its luxury resorts and stunning views. Relax on one of the pristine beaches or indulge in a spa treatment at one of the world-class resorts.\n- In the evening, visit the Dubai Opera to enjoy a soothing musical performance or a classical concert.\n\nDay 5:\n- Start your day with a visit to the Dubai Mall, one of the largest shopping malls in the world. You can enjoy some retail therapy or simply explore the mall\'s various entertainment options, such as the Dubai Aquarium and Underwater Zoo.\n- In the evening, embark on a relaxing Dhow Dinner Cruise along Dubai Creek. Enjoy a sumptuous dinner while cruising on a traditional Arabian boat, taking in the beautiful skyline of Dubai.\n\nDay 6:\n- Check out from your hotel and depart from Dubai, taking with you memories of a relaxing and rejuvenating weekend getaway.\n\nPlease note that this plan can be customized based on your preferences and any specific attractions or activities you might want to include in your trip.',NULL,'2023-12-02-14-35-19'),(11,843395,1,'Mayuri','Jagtap','jagtapanita14@gmail.com',8888441495,'+91','8780','Bali','01/01/2024',10,'Honeymoon','With Activities','Build a Plan For Bali on 01/01/2024 for 10 Nights For Honeymoon For With Activities','Sure! Here\'s a plan for your honeymoon in Bali from January 1, 2024, to January 11, 2024, with a mix of activities:\n\nDay 1-3: Arrival in Bali and Explore Ubud\n- Arrive in Bali and check into your hotel in Ubud.\n- Spend the first day relaxing and acclimating to the new environment.\n- On the second day, explore Ubud\'s attractions such as the Ubud Monkey Forest, traditional markets, and the Tegalalang Rice Terraces.\n- Enjoy a romantic dinner in one of the local restaurants.\n\nDay 4-6: Beautiful Beaches in Uluwatu\n- Head to Uluwatu and check into a beachfront resort.\n- Spend a day exploring the stunning beaches like Padang Padang Beach, Dreamland Beach, and Suluban Beach. You can try surfing or simply relax by the ocean.\n- Visit the iconic Uluwatu Temple and catch the famous Kecak Dance performance during sunset.\n- Consider a romantic beachside dinner with views of the Indian Ocean.\n\nDay 7-8: Romantic Escape to Gili Islands\n- Take a speedboat to the Gili Islands (Gili Trawangan, Gili Meno, or Gili Air).\n- Enjoy snorkeling or diving in the crystal-clear waters, exploring the incredible marine life and coral reefs.\n- Relax on pristine beaches, and watch the sunset.\n- On the second day, take a bike ride around the island, indulge in a couple\'s spa treatment, or opt for a private boat tour around the nearby islands.\n\nDay 9-10: Seminyak and Sunset in Tanah Lot\n- Travel to Seminyak and check into a luxury villa or resort.\n- Spend the day exploring Seminyak\'s trendy shops, spas, and world-class restaurants.\n- Enjoy a romantic sunset cocktail at one of the famous beach clubs like Ku De Ta or Potato Head Beach Club.\n- On the final day, visit Tanah Lot Temple and witness the exquisite sunset over the sea.\n- Have a romantic dinner at one of the beachfront restaurants.\n\nDay 11: Departure\n- Enjoy your last morning in Bali, perhaps with a leisurely breakfast by the pool.\n- Check out from your hotel.\n- Transfer to the airport for your departure.\n\nPlease note that this plan is flexible, and you can customize it based on your preferences and the availability of activities during your travel dates.','2','2023-12-03-17-14-17'),(12,845766,1,'hemant','pandya','hemant@hellogtx.com',9009986024,'+91','4292','dubai','30/12/2023',4,'Honeymoon','Relaxing','Build a Plan For dubai on 30/12/2023 for 4 Nights For Honeymoon For Relaxing','Sure! Here\'s a suggested plan for 4 nights in Dubai for a relaxing honeymoon:\n\nDay 1:\n- Arrive in Dubai and check into your hotel.\n- Spend the day at leisure, relaxing and exploring the hotel\'s amenities.\n- In the evening, enjoy a romantic dinner at one of Dubai\'s top restaurants, such as Pierchic or Thiptara.\n\nDay 2:\n- Start your day with a relaxing spa treatment at one of Dubai\'s luxury spas, such as the Talise Ottoman Spa or the One&Only Spa.\n- Afterward, take a leisurely stroll along the beautiful Dubai Marina promenade and explore the nearby JBR beach.\n- In the evening, enjoy a sunset cruise along Dubai\'s coastline, offering stunning views of the city\'s iconic landmarks.\n\nDay 3:\n- Embark on a day trip to the nearby desert for a peaceful and serene experience in the sand dunes.\n- Enjoy activities like dune bashing, camel riding, and sandboarding.\n- In the evening, indulge in a romantic dinner under the starry sky at a Bedouin-style desert camp, complete with traditional performances.\n\nDay 4:\n- Spend the day exploring the Palm Jumeirah, an iconic man-made island in Dubai.\n- Relax at one of the Palm\'s luxurious beach clubs, such as Nikki Beach or Azure Beach.\n- In the evening, visit the Palm Atlantis and explore its aquarium, dine at one of its many restaurants, or catch a show at the Aquaventure Waterpark.\n\nDay 5:\n- On your last day, relax by the pool or beach at your hotel and enjoy your final moments in Dubai.\n- You can also take some time to visit a local souk or do some shopping at popular malls like Dubai Mall or Mall of the Emirates.\n- In the evening, say farewell to Dubai with a romantic dinner overlooking the city\'s skyline at a rooftop restaurant such as Atmosphere or Neos.\n\nRemember to check with the latest travel advisory and guidelines for Dubai in December 2023, and make sure to book accommodations and activities in advance to secure availability.',NULL,'2023-12-05-18-05-21'),(13,845811,1,'test','test','test@hmail.com',7455987808,'+91','4970','noida','07/01/2024',2,'Honeymoon','With Activities','Build a Plan For noida on 07/01/2024 for 2 Nights For Honeymoon For With Activities','Sure! Here\'s a plan for your honeymoon in Noida on 07/01/2024 for 2 nights with activities:\n\nDay 1:\n1. Arrival in Noida: Reach Noida and check into a romantic hotel or resort.\n2. Explore the Local Cuisine: Enjoy a romantic lunch at a local restaurant, trying some of the famous street food and traditional dishes of Noida.\n3. Botanical Garden: Visit the beautiful Botanical Garden, known for its lush greenery, colourful flowers, and serene atmosphere. Take a leisurely stroll with your partner and capture memorable moments.\n4. Evening Walk in Noida Golf Course: Take a romantic evening walk at the Noida Golf Course, surrounded by scenic landscapes. Enjoy the peaceful ambiance and spend some quality time together.\n5. Candlelight Dinner: End the day with a romantic candlelight dinner at a rooftop restaurant, appreciating the city views and relishing delicious food.\n\nDay 2:\n1. Sector 18 Market: Start the day with a visit to the vibrant Sector 18 market, known for its shopping and entertainment options. Explore the shops, indulge in some retail therapy, and enjoy a cup of coffee at a cozy café.\n2. Movie Date at DLF Mall of India: Enjoy a romantic movie date at the DLF Mall of India, one of the largest malls in India. Catch a Hollywood or Bollywood movie at the multiplex and make memories.\n3. Visit Worlds of Wonder: Head to the Worlds of Wonder amusement park for a fun-filled day. Enjoy thrilling rides, water slides, and various entertainment options. Experience adventure together and have a great time.\n4. Fine Dining Experience: Treat yourselves to a luxurious fine dining experience at a renowned restaurant, enjoying delectable cuisine and a relaxing atmosphere.\n5. Spa and Wellness: Indulge in a couple\'s spa session to relax and rejuvenate. Pamper yourselves with massages, facials, and other wellness treatments to unwind from the day.\n\nDay 3:\n1. Visit Akshardham Temple: Start the day with a visit to the beautiful Akshardham Temple, known for its stunning architecture and peaceful surroundings. Seek blessings and spend some peaceful moments together.\n2. Leisure Activities: Explore more of Noida by engaging in activities like boating at Okhla Bird Sanctuary, visiting Surajkund Lake, or taking a nature walk in the nearby parks.\n3. Romantic Dinner: Before departing, have a final romantic dinner at a restaurant of your choice, savoring the flavors of Noida.\n4. Departure: Check out from the hotel and bid farewell to Noida with beautiful memories.\n\nNote: Make sure to check the availability and timings of the activities and attractions mentioned beforehand and plan accordingly.',NULL,'2023-12-05-18-44-43'),(14,848028,1,'test','test','test@gmail.com',7455987808,'+91','9651','noida','15/12/2023',1,'Family','With Activities','Build a day wise travel itinerary for noida for 15/12/2023 for 1 Nights For Family For With Activities','Sure! Here\'s a day-wise travel itinerary for Noida on 15/12/2023 for 1 night, suitable for a family with activities:\n\nDay 1:\nMorning:\n- Arrive in Noida and check into your hotel.\n- Have a hearty breakfast at the hotel.\n\nAfter breakfast, you have two options for activities:\n\nOption 1: Explore the Cultural Side\n- Visit the Akshardham Temple, a stunning Hindu temple known for its intricate architecture and peaceful ambiance.\n- Spend time exploring the beautiful gardens, sculptures, and exhibitions within the temple complex.\n- Enjoy the musical fountain show at Akshardham in the evening.\n\nOption 2: Experience Thrilling Rides\n- Visit the Worlds of Wonder amusement park for a day filled with fun and excitement.\n- Enjoy various thrilling rides, water slides, and other attractions suitable for all ages.\n- Indulge in delicious snacks and meals available within the park.\n\nEvening:\n- After returning from your chosen activity, take some time to relax at the hotel.\n- Have dinner at a local restaurant or at your hotel if available.\n- If you\'re interested, take a leisurely stroll in the nearby markets for some shopping or souvenirs.\n\nNight:\n- Return to your hotel for a good night\'s sleep.\n\nDay 2:\nMorning:\n- Wake up early and have breakfast at the hotel.\n- Check-out from your hotel.\n\nAfter breakfast, you have two options for activities:\n\nOption 1: Explore Wildlife\n- Visit the Okhla Bird Sanctuary, a haven for birdwatchers and nature enthusiasts.\n- Take a guided tour to spot various bird species and enjoy the serene surroundings.\n- Capture beautiful pictures and cherish nature\'s beauty.\n\nOption 2: Retail Therapy\n- Explore the Great India Place mall and enjoy a day of shopping.\n- Browse through a wide range of local and international brands, electronics, and fashion items.\n- Take a break to enjoy some delicious food at one of the many food outlets in the mall.\n\nAfternoon:\n- Have lunch at a local restaurant near your chosen activity location.\n\nEvening:\n- Depending on the time of your onward journey, you can either continue exploring the city or head back to your hometown.\n\nThis itinerary provides a mix of cultural, adventurous, and leisure activities in Noida suitable for a family trip. Feel free to customize it based on your preferences and the timings of your travel.',NULL,'2023-12-07-15-17-52'),(15,854153,1,'Gaurav','Kumar','gaurav@catpl.co.in',9811192312,'+91','6176','dubai','29/12/2023',4,'Family','Relaxing','Build a day wise travel itinerary for dubai for 29/12/2023 for 4 Nights For Family For Relaxing','Day 1: Arrival and Dubai Marina Evening Walk\n- Arrive in Dubai and check-in at your hotel.\n- In the evening, head to Dubai Marina, a vibrant waterfront district with stunning skyline views.\n- Enjoy a leisurely walk along the marina promenade, where you can see luxurious yachts and enjoy the lively atmosphere.\n- Indulge in a delicious dinner at one of the many waterfront restaurants.\n\nDay 2: Jumeirah Beach and Souk Madinat Jumeirah\n- Start your day with a visit to Jumeirah Beach, a beautiful stretch of sand along the Arabian Gulf. Relax, swim, or sunbathe.\n- Visit Souk Madinat Jumeirah, a traditional Arabian market with winding alleys, shops, and restaurants.\n- Explore the souk\'s various stalls, where you can find traditional crafts, jewelry, and souvenirs.\n- Have dinner at one of the waterfront restaurants with stunning views of the Burj Al Arab, a luxurious 7-star hotel.\n\nDay 3: Dubai Mall and Burj Khalifa\n- Spend the day at Dubai Mall, one of the largest malls in the world.\n- Explore the mall\'s vast range of shops, from high-end brands to local boutiques.\n- Visit the Dubai Aquarium and Underwater Zoo, located inside the mall.\n- In the evening, head to the Burj Khalifa, the tallest building in the world, and enjoy panoramic views of Dubai from the observation deck.\n- Optional: Watch the mesmerizing Dubai Fountain show at the base of the Burj Khalifa.\n\nDay 4: Desert Safari and Arabian Night Experience\n- Embark on a thrilling desert safari experience. Enjoy dune bashing, camel riding, sandboarding, and a traditional Bedouin-style BBQ dinner under the stars.\n- Experience traditional Arabian entertainment such as belly dancing and Tanoura dance performances.\n- Optional: Try henna painting, get a falconry demonstration, or take a camel ride.\n\nDay 5: Dubai Frame and Departure\n- Visit the Dubai Frame, an architectural landmark offering views of both old and new Dubai.\n- Take an elevator to the top and enjoy breathtaking panoramic views of the city.\n- Optional: Visit the nearby Dubai Garden Glow, an interactive light and art show.\n- Afterward, check-out from your hotel and proceed to the airport for departure.\n\nPlease note that this itinerary is a suggestion and can be customized according to your preferences and the operating hours of attractions.',NULL,'2023-12-13-19-35-02'),(16,855138,1,'hemant','pandya','hemant.mk.pandya@gmail.com',9009986024,'+91','4733','kerala','30/12/2023',3,'Family','Relaxing','Build a day wise travel itinerary for kerala for 30/12/2023 for 3 Nights For Family For Relaxing','Day 1: Arrive in Cochin\n\n- Arrive at Cochin International Airport\n- Transfer to your hotel or homestay\n- Spend the afternoon exploring Fort Kochi and its famous Chinese fishing nets\n- Enjoy a beautiful sunset at the Fort Kochi beach\n- In the evening, indulge in traditional Kerala cuisine at a local restaurant\n\nDay 2: Munnar Sightseeing\n\n- After breakfast, proceed towards Munnar, a beautiful hill station known for its tea plantations and stunning landscapes. The journey takes approximately 4-5 hours.\n- Check-in to your hotel and take some rest.\n- In the afternoon, visit the Mattupetty Dam and enjoy a boat ride on the serene lake.\n- Next, explore the Echo Point, where you can hear your voice reverberate through the mountains.\n- End the day with a visit to the Tea Museum, where you can learn about the tea-making process and sample different varieties of tea.\n\nDay 3: Backwaters Experience in Alleppey\n\n- After breakfast, check out from your hotel in Munnar and proceed towards Alleppey, famous for its backwaters.\n- Check-in to a houseboat and spend the day cruising through the tranquil backwaters.\n- Enjoy lunch and dinner on the houseboat, prepared with fresh local ingredients.\n- Take in the scenic beauty of the backwaters, with coconut trees lining the shores and traditional villages dotting the landscape.\n- Relax on the houseboat and enjoy a peaceful night\'s sleep on the backwaters.\n\nDay 4: Departure\n\n- Wake up to the sound of birds chirping and have breakfast on the houseboat.\n- Disembark from the houseboat and proceed to Cochin.\n- If time permits, visit the historic Mattancherry Palace and the Jewish Synagogue in the Jew Town area of Fort Kochi.\n- In the evening, transfer to Cochin International Airport for your onward journey.\n\nNote: This itinerary is based on a relaxing family vacation. If you have specific preferences or interests, feel free to let me know, and I can customize the itinerary for you.',NULL,'2023-12-14-19-58-04'),(17,859638,1,'Neeraj','Kumar','neeraj@catpl.co.in',7455987808,'+91','8327','Dubai','29/12/2023',2,'Honeymoon','With Activities','Build a day wise travel itinerary for Dubai for 29/12/2023 for 2 Nights For Honeymoon For With Activities','Day 1: Arrival in Dubai and Desert Safari\n\n- Morning: Arrive in Dubai and check into your hotel. Freshen up and grab some breakfast to kick start your day.\n\n- Afternoon: Begin your honeymoon adventure with a thrilling desert safari. Enjoy dune bashing, camel riding, and sandboarding. Immerse yourself in the mesmerizing sunset over the dunes.\n\n- Evening: Indulge in a romantic dinner under the stars at a traditional Bedouin camp. Experience live entertainment, including traditional dance performances and a belly dance show. End the evening with a henna tattoo and shisha.\n\nDay 2: Explore Dubai City\n\n- Morning: Start your day by visiting the iconic Burj Khalifa. Take an elevator ride to the observation deck on the 124th floor and have a bird\'s eye view of Dubai city.\n\n- Afternoon: Head to Dubai Mall, the largest shopping mall in the world. Explore the countless shops, boutiques, and designer stores. Don\'t miss the Dubai Aquarium and Underwater Zoo for a unique marine experience.\n\n- Evening: Enjoy a romantic dinner cruise along Dubai Marina. Cruise on a traditional dhow boat and admire the stunning skyline of Dubai while enjoying a sumptuous dinner.\n\nDay 3: Departure\n\n- Morning: After breakfast, check out of your hotel. If time permits, you can visit the Palm Jumeirah, a man-made island in the shape of a palm tree, and relax at one of the luxurious beach resorts.\n\n- Afternoon: Depending on your flight departure time, you can spend the afternoon exploring the traditional markets at Gold Souk and Spice Souk in Deira. Shop for unique souvenirs and immerse yourself in the local culture.\n\n- Evening: Depart from Dubai with beautiful memories of your honeymoon.\n\nNote: This itinerary includes popular activities and attractions in Dubai. However, it\'s always good to check the availability and make necessary reservations in advance to ensure a seamless experience.',NULL,'2023-12-19-13-29-16'),(18,860728,1,'atmaj','wadnerkar','atmajw1@gmail.com',7566821253,'+91','8196','Goa','29/12/2023',5,'Family','Relaxing','Build a day wise travel itinerary for Goa for 29/12/2023 for 5 Nights For Family For Relaxing','Day 1: Arrival in Goa\n- Arrive at Goa International Airport/Railway Station.\n- Transfer to your hotel or resort.\n- Rest and relax after the journey.\n- Explore the resort and enjoy the amenities.\n- Have an early dinner at a nearby restaurant.\n- Retire for the night.\n\nDay 2: Beach Day\n- Start the day with a leisurely breakfast at the hotel.\n- Visit Calangute Beach, one of the most popular and vibrant beaches in Goa.\n- Relax on the beach, sunbathe, and take a dip in the Arabian Sea.\n- Enjoy beachside activities like water sports, beach volleyball, and Frisbee.\n- Have lunch at a beachfront shack or restaurant.\n- Spend the evening exploring the local markets and shops at Calangute.\n- Enjoy a delicious seafood dinner at a beachside restaurant.\n- Return to the hotel and unwind.\n\nDay 3: Cultural Exploration\n- After breakfast, visit Old Goa, a UNESCO World Heritage Site.\n- Explore the majestic churches, such as the Basilica of Bom Jesus and Se Cathedral.\n- Visit the Archaeological Museum of Goa to learn about the history and culture of the region.\n- Have lunch at a traditional Goan restaurant, trying local delicacies like Goan fish curry.\n- In the afternoon, visit the vibrant Latin Quarter of Fontainhas in Panjim.\n- Explore the colorful streets, admire the Portuguese-style houses, and visit art galleries.\n- Return to the hotel for dinner and relaxation.\n\nDay 4: Backwater Cruise\n- After breakfast, embark on a scenic backwater cruise along the Mandovi River.\n- Enjoy the tranquility of the backwaters, lush greenery, and glimpses of rural Goa.\n- Visit the Divar Island or Chorao Island, known for their serene atmosphere and bird sanctuaries.\n- Have a picnic lunch amid nature or enjoy a traditional Goan lunch on the boat.\n- Return to the hotel in the afternoon.\n- Spend the rest of the day at leisure, either by the pool or exploring the nearby area.\n- Enjoy dinner at a local restaurant.\n- Retire for the night.\n\nDay 5: Dudhsagar Waterfalls\n- Wake up early and have breakfast.\n- Take a full-day excursion to the famous Dudhsagar Waterfalls.\n- Enjoy a scenic drive through the countryside and reach the waterfall location.\n- Witness the mesmerizing view of the cascading waterfalls amidst lush greenery.\n- Take a dip in the natural pool formed by the waterfall and relax in the surroundings.\n- Pack a picnic lunch or have lunch at a local restaurant near the waterfalls.\n- Return to the hotel in the afternoon.\n- Spend the evening at leisure, shopping for souvenirs or enjoying a spa session.\n- Have dinner at a beachside restaurant and enjoy the last evening in Goa.\n\nDay 6: Departure\n- After breakfast, check out from the hotel.\n- Transfer to Goa International Airport/Railway Station for your onward journey.\n\nNote: The itinerary can be customized according to your preferences and the availability of attractions or activities.',NULL,'2023-12-20-13-05-16'),(19,862099,1,'hemant','p','hemant.mk.pandya@gmail.com',9009986024,'+91','1924','kerala','29/01/2024',5,'Family','With Activities','Build a day wise travel itinerary for kerala for 29/01/2024 for 5 Nights For Family For With Activities','Day 1: Arrival in Kochi\n- Arrive at Cochin International Airport\n- Transfer to your hotel in Kochi\n- Explore the local markets and Fort Kochi area\n- Visit St. Francis Church, Santa Cruz Basilica, and the Chinese Fishing Nets\n- Enjoy a traditional Kathakali dance performance in the evening\n\nDay 2: Kochi to Munnar\n- After breakfast, proceed to Munnar (approx. 4 hours drive)\n- On the way, visit the Cheeyappara Waterfalls and Valara Waterfalls\n- Check-in to your hotel in Munnar and relax\n- In the evening, visit the local tea plantations and tea museum\n- Enjoy a peaceful walk through the beautiful landscape of Munnar\n\nDay 3: Munnar Sightseeing\n- After breakfast, embark on a full-day sightseeing tour of Munnar\n- Visit Mattupetty Dam, Echo Point, and Kundala Lake\n- Explore the Eravikulam National Park (home to endangered Nilgiri Tahr)\n- Enjoy a boating experience at Kundala Lake or paddle boating at Mattupetty Dam\n- Return to your hotel and relax\n\nDay 4: Munnar to Thekkady\n- After breakfast, drive to Thekkady (approx. 3 hours drive)\n- Check-in to your hotel in Thekkady and freshen up\n- Visit the Periyar Wildlife Sanctuary and enjoy a boat ride on Periyar Lake\n- Explore the spice plantations and learn about various spices grown in Kerala\n- Optional: Attend a traditional Kalaripayattu martial arts performance\n\nDay 5: Thekkady to Alleppey\n- After breakfast, drive to Alleppey (approx. 4 hours drive)\n- Check-in to your houseboat and cruise through the backwaters of Alleppey\n- Enjoy the scenic beauty of the backwaters, paddy fields, and coconut trees\n- Relish delicious Kerala-style meals prepared by the houseboat crew\n- Overnight stay in the houseboat\n\nDay 6: Departure from Kochi\n- After breakfast on the houseboat, disembark and proceed to Kochi\n- Visit the famous Jew Town and Paradesi Synagogue in Mattancherry\n- Explore the Dutch Palace (also known as the Mattancherry Palace)\n- Shop for souvenirs and local handicrafts in Kochi\n- Proceed to Cochin International Airport for departure\n\nNote: The itinerary can be customized as per your preferences and the availability of time.',NULL,'2023-12-21-15-48-25'),(20,863184,1,'hemant','pandya','hemant.mk.pandya@gmail.com',9009986024,'+91','9049','kerala','21/01/2024',4,'Friends','Relaxing','Build a day wise travel itinerary for kerala for 21/01/2024 for 4 Nights For Friends For Relaxing','Day 1: Arrival in Kochi and Transfer to Munnar\n- Arrive at Kochi International Airport and meet your driver.\n- Proceed towards Munnar, a picturesque hill station known for its tea plantations and scenic beauty.\n- Check-in at your hotel in Munnar and relax.\n- In the evening, take a leisurely stroll around the beautiful tea gardens.\n- Enjoy a peaceful dinner at a local restaurant.\n- Overnight stay in Munnar.\n\nDay 2: Exploring Munnar\n- After breakfast, embark on a full-day sightseeing tour of Munnar.\n- Visit popular attractions like Mattupetty Dam, Echo Point, and Tata Tea Museum.\n- Enjoy the breathtaking views of the surrounding hills and valleys.\n- In the afternoon, indulge in some adventure activities like trekking or boating.\n- Return to the hotel in the evening and relax.\n- Have dinner at a local restaurant and spend the night in Munnar.\n\nDay 3: Transfer to Alleppey and Houseboat Stay\n- After breakfast, check out from the hotel and proceed towards Alleppey, also known as the Venice of the East.\n- Arrive in Alleppey and board a traditional houseboat for a relaxing cruise through the backwaters.\n- Enjoy the serene surroundings, picturesque landscapes, and delicious Kerala cuisine prepared on board.\n- Spend the day cruising through the backwaters, watching the local life and enjoying the tranquility.\n- In the evening, anchor the houseboat and spend the night on board.\n\nDay 4: Relaxing at Alleppey\n- Wake up to the picturesque views of the backwaters and have a delicious breakfast on the houseboat.\n- Spend the day at leisure, enjoying the peace and tranquility of the backwaters.\n- Opt for a village walk or simply relax on the deck, enjoying the scenic beauty.\n- In the evening, witness a mesmerizing sunset over the backwaters.\n- Enjoy a candlelight dinner on the houseboat, savoring the flavors of Kerala cuisine.\n- Overnight stay on the houseboat.\n\nDay 5: Departure from Kochi\n- After breakfast, check out from the houseboat and proceed towards Kochi.\n- You can spend the day exploring the historical sites and attractions of Kochi, such as Fort Kochi, Jewish Synagogue, and Chinese Fishing Nets.\n- In the evening, visit the bustling markets of Kochi for some shopping.\n- Finally, you will be dropped off at Kochi International Airport for your onward journey.\n\nPlease note that this itinerary is just a suggestion and can be customized according to your preferences and the availability of time.','2','2023-12-22-18-15-25'),(21,867907,1,'hemant','pandya','hemant.mk.pandya@gmail.com',9009986024,'+91','0632','kerala','09/01/2024',7,'With Small Kids','With Activities','Build a day wise travel itinerary for kerala for 09/01/2024 for 7 Nights For With Small Kids For With Activities','Day 1: Arrival in Kochi\n- Arrive at Kochi International Airport\n- Transfer to your hotel and check-in\n- Take a leisurely walk along the Fort Kochi Beach\n- Visit St. Francis Church, Santa Cruz Basilica, and the Chinese Fishing Nets\n- Enjoy a traditional Kathakali dance performance in the evening\n\nDay 2: Explore Kochi\n- Have breakfast at your hotel\n- Visit the Mattancherry Palace, also known as the Dutch Palace\n- Explore the Jewish Synagogue and Jew Town in Mattancherry\n- Take a boat ride to visit the Bolgatty Palace\n- Enjoy a sunset cruise on the backwaters of Kochi\n- Taste the local delicacies at a traditional seafood restaurant\n\nDay 3: Munnar\n- Check-out from your hotel in Kochi after breakfast\n- Drive to Munnar, which is approximately a 4-hour journey\n- Visit the Tea Museum and learn about the tea-making process\n- Explore the beautiful tea gardens and enjoy the panoramic view of Munnar\n- Visit the Echo Point and the Mattupetty Dam\n- Check-in at your hotel in Munnar and relax for the evening\n\nDay 4: Munnar\n- Have breakfast at your hotel\n- Visit the Eravikulam National Park, famous for the endangered Nilgiri Tahr\n- Enjoy a fun-filled day at the Fun Forest Adventure Park, with activities like zip-lining, rock climbing, and trekking\n- Visit the Top Station to enjoy the breathtaking view of the Western Ghats\n- Return to your hotel and relax for the evening\n\nDay 5: Thekkady\n- Check-out from your hotel in Munnar after breakfast\n- Drive to Thekkady, which is approximately a 3-hour journey\n- Visit the Periyar Wildlife Sanctuary and enjoy a boat ride on Periyar Lake\n- Explore the spice plantations in Thekkady\n- Enjoy a Kathakali or Kalaripayattu performance in the evening\n- Check-in at your hotel in Thekkady and relax for the evening\n\nDay 6: Alleppey (Houseboat)\n- Check-out from your hotel in Thekkady after breakfast\n- Drive to Alleppey, which is approximately a 3-hour journey\n- Board a traditional houseboat and embark on a backwater cruise\n- Enjoy the scenic beauty of the backwaters, paddy fields, and coconut groves\n- Indulge in a delicious lunch prepared on board\n- Spend the night on the houseboat, enjoying the tranquility of the backwaters\n\nDay 7: Kovalam\n- Disembark from the houseboat after breakfast\n- Drive to Kovalam, which is approximately a 3.5-hour journey\n- Check-in at your hotel in Kovalam and relax for a while\n- Spend the day at the beautiful Kovalam Beach, playing in the sand and enjoying the waves\n- Visit the Lighthouse Beach and the Hawa Beach\n- Enjoy a traditional Ayurvedic massage for relaxation\n- Watch the sunset at the Vizhinjam Lighthouse\n- Return to your hotel and relax for the evening\n\nDay 8: Departure\n- Check-out from your hotel after breakfast\n- Transfer to Trivandrum International Airport for your departure flight\n\nNote: The activities mentioned above are suitable for small kids, but please ensure their safety, comfort, and age-appropriate participation.',NULL,'2023-12-27-19-51-01'),(22,875304,1,'Gaurav','Kumar','gaurav@catpl.co.in',9811192312,'+91','1030','gujarat','25/01/2024',5,'Family','With Activities','Build a day wise travel itinerary for gujarat for 25/01/2024 for 5 Nights For Family For With Activities','',NULL,'2024-01-04-11-59-50'),(23,911053,1,'yogesh','pandey','yogeepandey@gmail.com',9907708208,'+91','2388','singapore','23/02/2024',4,'Family','Relaxing','Build a day wise travel itinerary for singapore for 23/02/2024 for 4 Nights For Family For Relaxing','',NULL,'2024-02-07-20-36-26'),(24,911054,1,'atmaj','w','atmajw1@gmail.com',7566821253,'+91','5888','Goa','28/02/2024',3,'Family','Relaxing','Build a day wise travel itinerary for Goa for 28/02/2024 for 3 Nights For Family For Relaxing','',NULL,'2024-02-07-20-38-47');
/*!40000 ALTER TABLE `tbl_chatgpt_enquiry` 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 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 */;
/*!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(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`common_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 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,'','','','1','Ktas: Best Travel Deals','','','','','','','0','');
/*!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=66 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,'India','india','India',101,'',0,'2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,'  ',NULL,NULL,'[{\"question\":\"What is the capital city of India? ...\",\"answer\":\"New Delhi Capital city of India\"}]',NULL,NULL,'','','','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(2,'United Arab Emirates','united-arab-emirates','United Arab Emirates',228,'',0,'2022-02-16 13:31:33','2022-02-16 13:31:33','1','0',NULL,'  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'','','','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(3,'Switzerland','switzerland','Switzerland',210,'',0,'2022-02-16 13:34:08','2022-02-16 13:34:08','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,'Italy','italy','Italy',107,'',0,'2022-02-16 13:34:08','2022-02-16 13:34:08','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,'France','france','France',76,'76_1651559123.jpg',0,'2022-02-16 13:34:08','2022-02-16 13:34:08','1','0',NULL,' ',NULL,NULL,NULL,NULL,NULL,'','','','','','76_1651559123.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'UNITED KINGDOM','united-kingdom','UNITED KINGDOM',469,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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,1),(7,'Spain','spain','Spain',199,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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),(8,'Netherlands','netherlands','Netherlands',154,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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,'Hungary','hungary','Hungary',99,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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),(10,'Greece','greece','Greece',86,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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),(11,'Germany','germany','Germany',83,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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,'Czech Republic','czech-republic','Czech Republic',58,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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,'Croatia','croatia','Croatia',55,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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),(14,'Belgium','belgium','Belgium',21,'',0,'2022-02-28 20:24:45','2022-02-28 20:24: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),(15,'Austria','austria','Austria',14,'14_1673528775.jpg',0,'2022-02-28 20:24:45','2022-02-28 20:24:45','1','0',NULL,'   ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'','','','','','14_1673528775.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(16,'Maldives','maldives','Maldives',133,'',0,'2022-03-03 17:53:19','2022-03-03 17:53:19','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,'Russia','russia','Russia',507,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(18,'Turkey','turkey','Turkey',222,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(19,'Sri Lanka','sri-lanka','Sri Lanka',200,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(20,'Singapore','singapore','Singapore',190,'',0,'2022-03-09 16:57:23','2022-03-09 16:57:23','1','0',NULL,'       ',NULL,NULL,'[{\"question\":\"weqw\",\"answer\":\"qweqwe\"}]',NULL,NULL,'','','','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(21,'Oman','oman','Oman',165,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(22,'Kenya','kenya','Kenya',113,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(23,'Egypt','egypt','Egypt',65,'',0,'2022-03-09 16:57:23','2022-03-09 16:57:23','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),(24,'Brazil','brazil','Brazil',30,'',0,'2022-03-09 16:57:23','2022-03-09 16:57: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),(25,'Nepal','nepal','Nepal',153,'',0,'2022-05-03 12:00:52','2022-05-03 12: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),(26,'Thailand','thailand','Thailand',215,'',0,'2022-07-08 12:02:06','2022-07-08 12:02:06','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),(27,'Malaysia','malaysia','Malaysia',132,'',0,'2022-10-13 11:20:17','2022-10-13 11:20:17','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),(28,'Indonesia','indonesia','Indonesia',102,'',0,'2022-10-13 11:20:17','2022-10-13 11:20:17','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),(29,'USA','usa','USA',231,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(30,'Serbia','serbia','Serbia',468,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(31,'MONTENEGRO','montenegro','MONTENEGRO',466,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(32,'Vietnam','vietnam','Vietnam',236,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(33,'Uzbekistan','uzbekistan','Uzbekistan',232,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(34,'Ukraine','ukraine','Ukraine',227,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(35,'Tanzania','tanzania','Tanzania',214,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(36,'Sweden','sweden','Sweden',209,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(37,'South Korea','south-korea','South Korea',197,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(38,'South Africa','south-africa','South Africa',195,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(39,'Slovenia','slovenia','Slovenia',192,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(40,'Slovakia','slovakia','Slovakia',191,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(41,'Saudi Arabia','saudi-arabia','Saudi Arabia',186,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(42,'Russian Federation','russian-federation','Russian Federation',181,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(43,'Norway','norway','Norway',164,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(44,'New Zealand','new-zealand','New Zealand',157,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(45,'Myanmar','myanmar','Myanmar',150,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(46,'Monaco','monaco','Monaco',145,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(47,'Malta','malta','Malta',135,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(48,'Macedonia','macedonia','Macedonia',129,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(49,'Kyrgyzstan','kyrgyzstan','Kyrgyzstan',117,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(50,'Ireland','ireland','Ireland',105,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(51,'Iceland','iceland','Iceland',100,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(52,'Finland','finland','Finland',75,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(53,'Ethiopia','ethiopia','Ethiopia',70,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(54,'Djibouti','djibouti','Djibouti',60,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(55,'Denmark','denmark','Denmark',59,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(56,'Cambodia','cambodia','Cambodia',37,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(57,'Bulgaria','bulgaria','Bulgaria',34,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(58,'Bosnia and Herzegowina','bosnia-and-herzegowina','Bosnia and Herzegowina',27,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(59,'Bangladesh','bangladesh','Bangladesh',18,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(60,'Bahrain','bahrain','Bahrain',17,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(61,'Azerbaijan','azerbaijan','Azerbaijan',15,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(62,'Australia','australia','Australia',13,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,'   ',NULL,NULL,'[{\"question\":\"fadfadfaf\",\"answer\":\"australia\"}]',NULL,NULL,'','','','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(63,'Angola','angola','Angola',6,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(64,'Albania','albania','Albania',2,'',0,'2022-12-14 19:50:11','2022-12-14 19:50:11','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),(65,'Mauritius','mauritius','Mauritius',139,'',0,'2023-06-02 14:00:25','2023-06-02 14:00: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);
/*!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=30 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,441548,59951,0,0,'nehakumari@catpl.co.in','3',0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,NULL,'0','0','1900-01-01','1900-01-01',NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'BCDPV9945B','2023-07-07','0','1','364b0-61986-a9abe-32e95',NULL,'2022-12-22 11:46:14','2023-07-07 10:39:16','0',NULL,NULL),(2,305130,36973,0,0,'nehakumari@catpl.co.in','3',0,'0','89239636227','neha','kannojia','',0,36973,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-04','0','1','cd454-4d62d-fe77d-726d1',NULL,'2023-01-04 17:01:22','2023-01-04 17:01:22','0',NULL,NULL),(3,306254,36973,0,0,'rah2510@gmail.com','1',0,'0','9820805828','Rahim','Bhimani','',0,36973,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-05','0','1','a2421-c665f-6681d-47978',NULL,'2023-01-05 20:03:11','2023-01-05 20:03:11','0',NULL,NULL),(4,461280,36973,0,0,'jitendra@catpl.co.in','1',0,'0','9958049006','Jitendra','Singh','',0,36973,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-08','0','1','7c469-dd375-c0cfb-612e3',NULL,'2023-01-08 12:16:54','2023-01-08 12:16:54','0',NULL,NULL),(5,317316,36973,0,0,'nehakumai@catpl.co.in','3',0,'0','8923963627','neha','kannojia','',0,36973,'1985-01-25','HVHFU558768GHF','IN','2025-01-23','2018-01-23',NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-17','0','1','25c83-8b1b1-36e51-082d8',NULL,'2023-01-17 10:58:53','2023-01-17 10:58:53','0',NULL,NULL),(6,324821,36973,0,0,'S@GMAIL.COM','3',0,'0','7011874684','neha','kannojia','',0,36973,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-30','0','1','b271a-2dd20-1f1dd-4a4d4',NULL,'2023-01-30 16:11:06','2023-01-30 16:11:06','0',NULL,NULL),(7,393832,59951,0,0,'jkalpnil@gmail.com','1',0,NULL,'9691680017','Kalpnil','Jaiswal','e5a497274be740b149c4eed4cf9e1f02',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),(8,394046,59951,0,0,'atmajw1@gmail.com','1',0,'0','7566821253','Atmaj','Wadnerkar','',0,59951,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-09','1','1','45226-604f7-661b9-23fc5',NULL,'2023-05-09 12:28:21','2023-05-09 12:28:21','0',NULL,NULL),(9,439879,59951,0,0,'sibo.sarso@gmail.com','1',0,'Other','8447455883','MD','SABIR','',0,59951,NULL,'0','0','1900-01-01','1900-01-01',NULL,'','','',1,0,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DFYPS7819B','2023-07-03','0','1','cfc78-43bbb-03f0f-29b20',NULL,'2023-07-03 13:07:53','2023-07-03 13:07:53','0',NULL,NULL),(10,440227,59951,0,0,'pratiksha@catpl.co.in','1',0,NULL,'1234567899','pratiksha','shukla','827ccb0eea8a706c4c34a16891f84e7b',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),(11,440664,59951,0,0,'akkids.ak32@gmail.com','1',0,NULL,'7009078210','Anuj ','Kumar','dfa3df8dc3faa37ca67f935728576060',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),(12,440865,59951,0,0,'beinganuj3010@gmail.com','1',0,NULL,'967136573','Anuj','kumar','dfa3df8dc3faa37ca67f935728576060',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),(13,440906,59951,0,0,'anuj23.323@gmail.com','1',0,NULL,'7009078','Anuj','kumar','dfa3df8dc3faa37ca67f935728576060',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),(14,440914,59951,0,0,'anuj343@gmail.com','1',0,NULL,'67856456','anuj','kumar','dfa3df8dc3faa37ca67f935728576060',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),(15,440985,59951,0,0,'anuj23@gmail.com','1',0,'0','9671365732','Anuj','kumar','',0,59951,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-05','0','1',NULL,NULL,NULL,'2023-07-05 17:38:56','0',NULL,NULL),(16,440991,59951,0,0,'anuj2@gmail.com','1',0,NULL,'656564','Anuj','kumar','c8837b23ff8aaa8a2dde915473ce0991',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),(17,441252,59951,0,0,'anuj45@GMAIL.COM','1',0,NULL,'0','anuj','kumar','ef5888435e8da27a980dcde30f93c5f6',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),(18,441275,59951,0,0,'pratiksha24@catpl.co.in','1',0,NULL,'0','neha','kannojia','e10adc3949ba59abbe56e057f20f883e',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),(19,441304,59951,0,0,'abhimanyu@catpl.co.in','1',0,NULL,'8923963627','abhimanyu','singh','cfd9f1b9f9d118886d1628f59b5dc519',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),(20,441321,59951,0,0,'ckd@gmail.com','1',0,NULL,'0','czXc','xcZXc','e10adc3949ba59abbe56e057f20f883e',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),(21,441341,59951,0,0,'cb@gmail.com','1',0,NULL,'123456','dfg','xdvxcv','e10adc3949ba59abbe56e057f20f883e',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),(22,441427,59951,0,0,'anu23@gmail.com','1',0,NULL,'0','Anuj','kumar','dfa3df8dc3faa37ca67f935728576060',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),(23,441572,59951,0,0,'jyoti453we@catpl.co.in','1',0,NULL,'0','rty','mhgt','e80b5017098950fc58aad83c8c14978e',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,442021,59951,0,0,'premkumar.v3@hdfcbank.com','1',0,'0','9940131091','pk','kumar','',0,59951,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-06','0','1','16b6d-11bc4-ba3d4-43d29',NULL,'2023-07-06 13:29:20','2023-07-06 13:29:20','0',NULL,NULL),(25,442105,59951,0,0,'nehakumari7867@catpl.co.in','1',0,NULL,'765645','neha','kannojia','c4ca4238a0b923820dcc509a6f75849b',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),(26,442106,59951,0,0,'jsdhjdsjfhs@gmail.com','1',0,NULL,'8347586738','fajfaj','shfjksdhfjsd','c4ca4238a0b923820dcc509a6f75849b',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),(27,460515,59951,0,0,'anuj23.ak@gmail.com','1',0,NULL,'9671365732','Anuj','kumar','4077b5d331380e1ebcd507a41d066bb3',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),(28,441548,59951,59951,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','tinku','singh','',0,59951,'1996-11-27','FVYU98576JDGHJ','IN','2024-11-07','2023-11-16',NULL,'Indore','Indore','12706',1,0,'101',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-11-01','0','1','a9a87-24c3d-55151-bbd50',NULL,'2023-09-28 11:12:58','2023-11-01 15:20:56','0',NULL,NULL),(29,0,92553,59951,0,'anuj@catpl.co.in','1',0,'0','7009078210','Anuj','kumar','',0,92553,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-29','0','1','ff4f7-0204d-78403-d861a',NULL,'2023-09-29 11:39:19','2023-09-29 11:39:19','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',
  `passengerage` varchar(150) DEFAULT NULL,
  PRIMARY KEY (`CustomerMemberSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=45 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 (1,1,0,36973,0,'nehakumari@catpl.co.in','3',0,'1','8923963627','neha','kannojia','',0,36973,NULL,'DTTY67578GHUIU','IN','2025-01-20','2018-01-20','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-11','0','1','9b9c9-e1883-8a159-48bfe',NULL,'2023-01-04 10:56:41','2023-01-11 16:54:05','0',NULL),(2,3,0,36973,0,'rah2510@gmail.com','1',0,'1','9820805828','Rahim','Bhimani','',0,36973,'1982-01-14','N00712345','IN','2027-01-01','2018-01-02','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-06','0','1','96eb1-3a104-7da46-97211',NULL,'2023-01-06 15:03:50','2023-01-06 15:03:50','0',NULL),(3,3,306254,36973,0,'rah2510@gmail.com','1',0,'Other','9820805828','RAHIM','BHIMANI','',0,36973,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'',NULL,'','AGFPB8770P',NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-07','0','1','2ac45-59c9b-32aac-678ad',NULL,'2023-01-07 09:29:26','2023-01-07 09:29:26','0',NULL),(4,3,0,36973,0,'rah2510@gmail.com','1',0,'9','9820805828','SONOIA','BHIMANI','',0,36973,NULL,NULL,NULL,NULL,NULL,'Not Required','Not Required','Not Required',1,0,'Not Required',NULL,'Not Required','AGFPB8770P',NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-07','0','1','2ac45-59c9b-32aac-678ad',NULL,'2023-01-07 09:29:26','2023-01-07 09:29:26','0',NULL),(5,3,0,36973,0,'rah2510@gmail.com','1',0,'1','9820805828','Rahim','Bhimani','',0,36973,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-07','0','1','2c6f9-6ca16-209fc-1101b',NULL,'2023-01-07 15:53:56','2023-01-07 15:53:56','0',NULL),(6,3,0,36973,0,'rah2510@gmail.com','1',0,'1','9820805828','Rahim','Bhimani','',0,36973,'1950-01-11','N0070002','IN','2026-01-16','2016-01-06','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-09','0','1','30800-3c8f2-d0004-f1cc8',NULL,'2023-01-09 23:25:46','2023-01-09 23:25:46','0',NULL),(7,1,314869,36973,0,'nehakumari@catpl.co.in','3',0,'Other','8923963627','NEHA','KANNOJIA','',0,36973,NULL,'0','0','1900-01-01','1900-01-01','','','',1,0,'',NULL,'','BCDPV9945B',NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-17','0','1','28d98-c35ec-1aa3d-f625e',NULL,'2023-01-12 18:45:39','2023-01-12 18:45:39','0',NULL),(8,1,0,36973,0,'nehakumari@catpl.co.in','3',0,'1','8923963627','nehu                                              ','Singh','',0,36973,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-13','0','1','d2ffc-d01fc-51e4e-14e6c',NULL,'2023-01-12 18:55:55','2023-01-13 15:52:53','0',NULL),(9,4,0,36973,0,'jitendra@catpl.co.in','1',0,'1','9958049006','Jitendra Kumar ','Singh ','',0,36973,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-30','0','1','5530d-15b95-a2a7b-dcd33',NULL,'2023-01-30 17:22:30','2023-01-30 17:22:30','0',NULL),(10,4,0,36973,0,'jitendra@catpl.co.in','1',0,'1','9958049006','Jitendra','Singh','',0,36973,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-31','0','1','2986c-5fc03-1f8d4-31515',NULL,'2023-01-31 14:55:27','2023-01-31 14:55:27','0',NULL),(11,1,0,59951,0,'nehakumari@catpl.co.in','3',0,'1','8923963627','neha','kannojia','',0,59951,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-28','0','1','7fd83-07be1-28c2e-f3793',NULL,'2023-04-28 16:40:58','2023-04-28 16:40:58','0',NULL),(12,8,394046,59951,0,'atmajw1@gmail.com','1',0,'Other','7566821253','ATMAJ','W','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','','','',1,0,'',NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-09','0','1','40b74-17b6e-4d2c1-4f0b0',NULL,'2023-05-09 12:40:42','2023-05-09 12:40:42','0',NULL),(13,8,0,59951,0,'atmajw1@gmail.com','1',0,'9','7566821253','AT','Q','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','Not Required','Not Required','Not Required',1,0,'Not Required',NULL,'Not Required','',NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-09','0','1','40b74-17b6e-4d2c1-4f0b0',NULL,'2023-05-09 12:40:42','2023-05-09 12:40:42','0',NULL),(14,8,394046,59951,0,'atmajw1@gmail.com','1',0,'Other','7566821253','ATMAJ','W','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','','','',1,0,'',NULL,'','AACCG7285M',NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-20','0','1','31f38-e7dfb-f0ff1-4fcb4',NULL,'2023-05-20 12:07:53','2023-05-20 12:07:53','0',NULL),(15,8,0,59951,0,'atmajw1@gmail.com','1',0,'9','7566821253','AAAAA','BBBBBB','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','Not Required','Not Required','Not Required',1,0,'Not Required',NULL,'Not Required','AACCG7285N',NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-20','0','1','31f38-e7dfb-f0ff1-4fcb4',NULL,'2023-05-20 12:07:53','2023-05-20 12:07:53','0',NULL),(16,1,0,59951,0,'nehakumari@catpl.co.in','3',0,'9','8923963627','CHINKI','SINGH','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','Not Required','Not Required','Not Required',1,0,'Not Required',NULL,'Not Required','BCDPV9945B',NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-03','0','1','b8ed7-a2457-3ed80-ac18b',NULL,'2023-07-03 11:46:11','2023-07-03 11:46:11','0',NULL),(17,1,383250,59951,0,'nehakumari@catpl.co.in','3',0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,NULL,'0','0','1900-01-01','1900-01-01','','','',1,0,'',NULL,'','BCDPV9945B',NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-03','0','1','3cf41-36a5f-840c4-d66df',NULL,'2023-07-03 12:27:26','2023-07-03 12:27:26','0',NULL),(18,1,0,59951,0,'nehakumari@catpl.co.in','3',0,'0','8923963627','nti','singh','',0,59951,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-06','0','1','7a76b-f87b2-8e650-86a43',NULL,'2023-07-06 18:14:29','2023-07-06 18:14:29','0',NULL),(19,27,0,59951,0,'anuj23.ak@gmail.com','1',0,'1','9671365732','Anuj','kumar','',0,59951,NULL,NULL,NULL,NULL,NULL,'Delhi','Delhi','7701',1,0,'101',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-02','0','1','99e64-9e2cc-52702-1fee3',NULL,'2023-08-02 15:59:33','2023-08-02 15:59:33','0',NULL),(20,4,0,59951,0,'jitendra@catpl.co.in','1',0,'1','9958049006','Jitendra Kumar ','Singh','',0,59951,NULL,NULL,NULL,NULL,NULL,'Delhi','Delhi','7701',1,0,'101',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-03','0','1','d0db9-e6697-20868-d2944',NULL,'2023-08-03 16:11:37','2023-08-03 16:11:37','0',NULL),(22,8,0,59951,0,'atmajw1@gmail.com','1',0,'1','7566821253','Atmaj','Wa','',0,59951,'1976-09-15','ugyvygvygvgyvgy','IN','2025-09-15','2015-09-16','Delhi','Delhi','7701',1,0,'101',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-13','0','1','c2010-c50f3-2c19a-785de',NULL,'2023-09-13 11:24:31','2023-09-13 11:24:31','0',NULL),(23,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','tinku','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','c0978-f2273-8d1c2-8e692',NULL,'2023-09-28 11:18:29','2023-09-28 11:18:29','0',NULL),(24,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','riya','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','c0978-f2273-8d1c2-8e692',NULL,'2023-09-28 11:18:29','2023-09-28 11:18:29','0',NULL),(25,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','rinki','singh','',0,92553,'2022-09-01',NULL,NULL,NULL,NULL,'','','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','c0978-f2273-8d1c2-8e692',NULL,'2023-09-28 11:18:29','2023-09-28 11:18:29','0',NULL),(26,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','rahul','kumar','',0,92553,'1995-09-27','GFYJ87568JHGS','IN','2024-09-09','2022-09-09','','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','e8fc7-d23fa-4d8b0-1b19f',NULL,'2023-09-28 11:41:23','2023-09-28 11:41:23','0',NULL),(27,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','NEHA','kannojia','',0,92553,'2015-09-11','GHFV46783JHEBF','IN','2034-10-10','2022-09-07','','','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','e8fc7-d23fa-4d8b0-1b19f',NULL,'2023-09-28 11:41:23','2023-09-28 11:41:23','0',NULL),(28,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','RIYA','singh','',0,92553,'2022-09-01','DFHF658HJFGJER','IN','2024-09-10','2022-09-03','','','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','e8fc7-d23fa-4d8b0-1b19f',NULL,'2023-09-28 11:41:23','2023-09-28 11:41:23','0',NULL),(29,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','sumit','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','a745b-19a97-5982c-4d0ca',NULL,'2023-09-28 13:21:24','2023-09-28 13:21:24','0',NULL),(30,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'0','8923963627','rahul','kumar','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','a745b-19a97-5982c-4d0ca',NULL,'2023-09-28 13:21:24','2023-09-28 13:21:24','0',NULL),(31,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','inidhi','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','a745b-19a97-5982c-4d0ca',NULL,'2023-09-28 13:21:24','2023-09-28 13:21:24','0',NULL),(32,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','niya','kannojia','',0,92553,'2022-09-01',NULL,NULL,NULL,NULL,'','','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-28','0','1','a745b-19a97-5982c-4d0ca',NULL,'2023-09-28 13:21:24','2023-09-28 13:21:24','0',NULL),(33,29,0,92553,59951,'anuj@catpl.co.in','2',0,'9','7009078210','Chinki','sharma','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-29','0','1','ff4f7-0204d-78403-d861a',NULL,'2023-09-29 11:39:19','2023-09-29 11:39:19','0',NULL),(34,29,0,92553,59951,'anuj@catpl.co.in','1',0,'9','7009078210','Ankit','dhiman','',0,92553,'2023-08-23',NULL,NULL,NULL,NULL,'','','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-29','0','1','ff4f7-0204d-78403-d861a',NULL,'2023-09-29 11:39:19','2023-09-29 11:39:19','0',NULL),(35,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','Jitendra Kumar','Singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-29','0','1','21683-ae861-fa5d7-b4a7f',NULL,'2023-09-29 14:51:41','2023-09-29 14:51:41','0',NULL),(36,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','rahul','singh','',0,92553,'1986-10-27','DFG75398DYGH','IN','2024-10-11','2022-10-10','','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-03','0','1','ee552-f1874-d5c63-3dd3d',NULL,'2023-10-03 11:25:43','2023-10-03 11:25:43','0',NULL),(37,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'0','8923963627','tinku','singh','',0,92553,'1985-10-08','FDE8759HGKBG','IN','2024-10-08','2022-10-05','','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-03','0','1','ee552-f1874-d5c63-3dd3d',NULL,'2023-10-03 11:25:43','2023-10-03 11:25:43','0',NULL),(38,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','riya','singh','',0,92553,'2022-10-01','HFYGU5Y983DFHGBK','IN','2024-10-16','2022-10-06','','','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-03','0','1','ee552-f1874-d5c63-3dd3d',NULL,'2023-10-03 11:25:43','2023-10-03 11:25:43','0',NULL),(39,28,0,92553,59951,'nehakumari@catpl.co.in','3',0,'9','8923963627','niya','sharma','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-05','0','1','21753-55081-f8f47-15b56',NULL,'2023-10-05 17:07:44','2023-10-05 17:07:44','0',NULL),(40,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','rahul','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-05','0','1','7fb7a-d1508-fe065-9376c',NULL,'2023-10-05 17:16:19','2023-10-05 17:16:19','0',NULL),(41,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','nikku','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-05','0','1','337f6-ee737-59ee9-1e7ef',NULL,'2023-10-05 17:37:05','2023-10-05 17:37:05','0',NULL),(42,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','prince','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-13','0','1','13ebb-04493-e1ab0-7334a',NULL,'2023-10-13 10:47:29','2023-10-13 10:47:29','0',NULL),(43,28,0,92553,59951,'nehakumari@catpl.co.in','1',0,'9','8923963627','rahul','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-10-16','0','1','9bebc-33c34-537c2-5c43b',NULL,'2023-10-16 15:41:12','2023-10-16 15:41:12','0',NULL);
/*!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 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 */;
/*!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 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 */;
/*!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=43 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 (37,'Jammu(IXJ)','{\"AirportCode\":\"IXJ\",\"CityID\":13021,\"ContSysId\":101,\"ICAO\":\"IXJ\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Jammu\",\"ContName\":\"India\",\"label\":\"Jammu, IN - Satwari Arpt (IXJ), India\",\"value\":\"Jammu, IN - Satwari Arpt (IXJ), India\"}',4,1,0,'1'),(40,'Amritsar(ATQ)','{\"AirportCode\":\"ATQ\",\"CityID\":974,\"ContSysId\":101,\"ICAO\":\"ATQ\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Amritsar\",\"ContName\":\"India\",\"label\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"value\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\"}',300,1,0,'1'),(42,'Bengaluru(BLR)','{\"AirportCode\":\"BLR\",\"CityID\":0,\"ContSysId\":0,\"ICAO\":\"BLR\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Bengaluru\",\"ContName\":\"India\",\"label\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"value\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"}',10,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 CHARACTER SET latin1 COLLATE latin1_swedish_ci 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 DEFAULT '0',
  `YQTax` float NOT NULL DEFAULT '0',
  `OtherCharges` float NOT NULL DEFAULT '0',
  `Discount` float NOT NULL DEFAULT '0',
  `ServiceFee` float NOT NULL DEFAULT '0',
  `OfferedFare` double NOT NULL DEFAULT '0',
  `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=121 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,36973,0,0,NULL,'2023-01-17',NULL,NULL,'I5-821','AirAsia India','1',1,'364b0-61986-a9abe-32e95','75','22:35:00','03:30:00',0,'EC',295,'4h 55m',6000,7701,'MAA','DEL','1 Stop(s)',1,1,4165,'22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2129,2203,0,823,0,400,4165,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS106400424519\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-01-17T22:35\",\"LocalFromTime\":\"2023-01-17 22:35\",\"FromUTCTime\":\"2023-01-17T22:35\",\"LocalToTime\":\"2023-01-18 03:30\",\"ToUTCTime\":\"2023-01-18T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 17 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4332,\"PublishedFareTxt\":\"4,332\",\"ApiResultIndex\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.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\":2129,\"Tax\":2203,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4332,\"PublishedFare\":4165,\"OfferedFare\":3247,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16940974903833\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2203,\"BaseFareCal\":3387.03,\"BaseFare\":2129,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":108,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4165,\"CostToCustomer\":4165,\"BaseFareCal\":3387.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3387.03,\"intOfferedFare\":3247,\"intPublishFare\":4332,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"614\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-01-17T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-01-17T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"615\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-01-18T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"364b0-61986-a9abe-32e95\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2022-12-22T11:46:18.869\",\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106400424519\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-01-17T22:35\",\"LocalFromTime\":\"2023-01-17 22:35\",\"FromUTCTime\":\"2023-01-17T22:35\",\"LocalToTime\":\"2023-01-18 03:30\",\"ToUTCTime\":\"2023-01-18T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 17 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4332,\"ApiResultIndex\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"364b0-61986-a9abe-32e95\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2022-12-22T11:46:18.869\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2129,\"Tax\":2203,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4332,\"PublishedFare\":4165,\"OfferedFare\":3247,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2203,\"BaseFareCal\":3387.03,\"BaseFare\":2129,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":108,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"614\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-01-17T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-01-17T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"615\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-01-18T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"localFromDateTime\":\"2023-01-17 22:35\",\"localToDateTime\":\"2023-01-18 03:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2022-12-22 06:16:14','2022-12-22 06:16:14',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),(2,0,1,36973,0,0,NULL,'2023-02-07',NULL,NULL,'AI-995','Air India','',1,'489ba-76f3e-3c265-04634','0','20:15:00','22:45:00',0,'S',0,'4h 0m',7701,8219,'DEL','DXB','Non-stop',1,1,29326,'15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/AI.gif','INR',22000,7089.4,0,4144,0,30,29326,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-01-04 05:17:27','2023-01-04 05:17:27',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),(3,2,1,36973,0,0,NULL,'2023-02-07',NULL,NULL,'AI-996','Air India','',1,'489ba-76f3e-3c265-04634','0','00:05:00','04:45:00',0,'S',0,'3h 10m',8219,7701,'DXB','DEL','Non-stop',1,1,29326,'15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/AI.gif','INR',22000,7089.4,0,4144,0,30,29326,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-01-04 05:17:27','2023-01-04 05:17:27',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),(4,0,1,36973,0,0,NULL,'2023-02-14',NULL,NULL,'6E-605','IndiGo','1',1,'9b9c9-e1883-8a159-48bfe','0','12:50:00','12:05:00',0,'J',0,'21h 45m',6000,2266,'MAA','BKK','1 Stop(s)',1,1,21540,'5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',15726,5577.4,0,3546,0,30,21540,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-01-04 05:26:42','2023-01-04 05:26:42',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),(5,4,1,36973,0,0,NULL,'2023-02-14',NULL,NULL,'6E-76','IndiGo','1',1,'9b9c9-e1883-8a159-48bfe','0','13:05:00','07:55:00',0,'J',0,'20h 20m',2266,6000,'BKK','MAA','1 Stop(s)',1,1,21540,'5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',15726,5577.4,0,3546,0,30,21540,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-01-04 05:26:42','2023-01-04 05:26:42',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),(6,0,1,36973,0,0,NULL,'2023-02-06',NULL,NULL,'I5-740','AirAsia India','1',1,'88723-7ff49-83ecf-f2c74','75','08:10:00','10:40:00',0,'EC',150,'2h 30m',7701,2262,'DEL','BLR','Non-stop',1,1,2923,'22-6197459724_0DELBLRI5740_87684987804868',1,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',1000,2090,0,764,0,400,2923,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 10:40\",\"ToUTCTime\":\"2023-02-06T10:40\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3090,\"PublishedFareTxt\":\"3,090\",\"ApiResultIndex\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1000,\"Tax\":2090,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3090,\"PublishedFare\":2923,\"OfferedFare\":2005,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6197459724_0DELBLRI5740_87728756088818\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2090,\"BaseFareCal\":2145.03,\"BaseFare\":1000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":2923,\"CostToCustomer\":2923,\"BaseFareCal\":2145.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":2145.03,\"intOfferedFare\":2005,\"intPublishFare\":3090,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"887\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 10:40\",\"ToUTCTime\":\"2023-02-06T10:40\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6440,\"ApiResultIndex\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":4440,\"YQTax\":0,\"OtherCharges\":1788,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":6440,\"PublishedFare\":6106,\"OfferedFare\":4270,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4440,\"BaseFareCal\":4550.06,\"BaseFare\":2000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":108,\"MFT\":144,\"OT\":1788,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"887\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"888\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"localFromDateTime\":\"2023-02-06 08:10\",\"localToDateTime\":\"2023-02-06 10:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 05:40:11','2023-01-04 05:40: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),(7,6,1,36973,0,0,NULL,'2023-02-09',NULL,NULL,'I5-722','AirAsia India','1',1,'88723-7ff49-83ecf-f2c74','75','00:40:00','03:30:00',0,'EC',170,'2h 50m',7701,2262,'BLR','DEL','Non-stop',1,1,3183,'22-6197459724_0BLRDELI5722_87684987553983',2,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',1000,2350,0,1024,0,400,3183,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-722\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-09T00:40\",\"LocalFromTime\":\"2023-02-09 00:40\",\"FromUTCTime\":\"2023-02-09T00:40\",\"LocalToTime\":\"2023-02-09 03:30\",\"ToUTCTime\":\"2023-02-09T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3350,\"PublishedFareTxt\":\"3,350\",\"ApiResultIndex\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1000,\"Tax\":2350,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3350,\"PublishedFare\":3183,\"OfferedFare\":2265,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6197459724_1BLRDELI5722_87728763656578\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2350,\"BaseFareCal\":2405.03,\"BaseFare\":1000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3183,\"CostToCustomer\":3183,\"BaseFareCal\":2405.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":2405.03,\"intOfferedFare\":2265,\"intPublishFare\":3350,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"888\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"strTraceId\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 05:40:11','2023-01-04 05:40: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),(8,0,1,36973,0,0,NULL,'2023-02-06',NULL,NULL,'I5-740','AirAsia India','1',1,'51fdd-4ee45-47e41-dae05','75','08:10:00','17:15:00',0,'EC',545,'9h 5m',7701,6000,'DEL','MAA','1 Stop(s)',1,1,3973,'22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2140,0,764,0,400,3973,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS106800434199\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 17:15\",\"ToUTCTime\":\"2023-02-06T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7993975787018\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"451\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-06T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-06T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"51fdd-4ee45-47e41-dae05\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T15:13:23.909\",\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106800434199\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 17:15\",\"ToUTCTime\":\"2023-02-06T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"ApiResultIndex\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"51fdd-4ee45-47e41-dae05\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T15:13:23.909\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"451\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-06T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-06T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"localFromDateTime\":\"2023-02-06 08:10\",\"localToDateTime\":\"2023-02-06 17:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 09:44:17','2023-01-04 09:44:17',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),(9,0,1,36973,0,0,NULL,'2023-02-14',NULL,NULL,'6E-605','IndiGo','1',1,'031f0-2d6e2-eb439-d8c98','267','12:50:00','13:55:00',0,'M',65,'1h 5m',6000,2262,'MAA','BLR','Non-stop',1,1,2821,'5-8398023143_1MAABLR6E605_12218753457322',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',906,2200,0,878,0,400,2821,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS104600434387\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-14 13:55\",\"ToUTCTime\":\"2023-02-14T13:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3106,\"PublishedFareTxt\":\"3,106\",\"ApiResultIndex\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-BLR\":{\"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\":{\"ARF\":100,\"CRFT\":9,\"CRF\":50,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__ Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 1,750 __nls__ Before 72 hrs Rs 1,500\",\"fcs\":{\"ACFT\":87.5,\"CCFT\":9,\"ACF\":1750,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":906,\"Tax\":2200,\"YQTax\":0,\"OtherCharges\":878,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3106,\"PublishedFare\":2821,\"OfferedFare\":2021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8398023143_0MAABLR6E605_12436400723490\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2200,\"BaseFareCal\":2143.03,\"BaseFare\":906,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":878,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2821,\"CostToCustomer\":2821,\"BaseFareCal\":2143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2143.03,\"intOfferedFare\":2021,\"intPublishFare\":3106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"291\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"031f0-2d6e2-eb439-d8c98\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-04T16:27:26.334\",\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104600434387\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-14 13:55\",\"ToUTCTime\":\"2023-02-14T13:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3106,\"ApiResultIndex\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"031f0-2d6e2-eb439-d8c98\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-04T16:27:26.334\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":906,\"Tax\":2200,\"YQTax\":0,\"OtherCharges\":878,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3106,\"PublishedFare\":2821,\"OfferedFare\":2021,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2200,\"BaseFareCal\":2143.03,\"BaseFare\":906,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":878,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"291\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"localFromDateTime\":\"2023-02-14 12:50\",\"localToDateTime\":\"2023-02-14 13:55\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 10:58:49','2023-01-04 10:58:49',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),(10,0,2,36973,0,0,NULL,'2023-02-06',NULL,NULL,'I5-821','AirAsia India','1',1,'cd454-4d62d-fe77d-726d1','75','22:35:00','03:30:00',0,'EC',295,'4h 55m',6000,7701,'MAA','DEL','1 Stop(s)',1,1,4030,'22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718',1,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2197,0,823,0,400,4030,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-06T22:35\",\"LocalFromTime\":\"2023-02-06 22:35\",\"FromUTCTime\":\"2023-02-06T22:35\",\"LocalToTime\":\"2023-02-07 03:30\",\"ToUTCTime\":\"2023-02-07T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4197,\"PublishedFareTxt\":\"4,197\",\"ApiResultIndex\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2197,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4197,\"PublishedFare\":4030,\"OfferedFare\":3112,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14390299038936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2197,\"BaseFareCal\":3252.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4030,\"CostToCustomer\":4030,\"BaseFareCal\":3252.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3252.03,\"intOfferedFare\":3112,\"intPublishFare\":4197,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"544\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-06T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"545\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-07T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-07T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-08 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-06T22:35\",\"LocalFromTime\":\"2023-02-06 22:35\",\"FromUTCTime\":\"2023-02-06T22:35\",\"LocalToTime\":\"2023-02-07 03:30\",\"ToUTCTime\":\"2023-02-07T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8337,\"ApiResultIndex\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":4337,\"YQTax\":0,\"OtherCharges\":1587,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":206,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8337,\"PublishedFare\":8003,\"OfferedFare\":6167,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4337,\"BaseFareCal\":6447.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":206,\"MFT\":144,\"OT\":1587,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"544\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-06T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"545\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-07T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-07T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"546\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-08T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"547\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-08T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"localFromDateTime\":\"2023-02-06 22:35\",\"localToDateTime\":\"2023-02-07 03:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 11:31:22','2023-01-04 11:31: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',NULL),(11,10,2,36973,0,0,NULL,'2023-02-08',NULL,NULL,'I5-740','AirAsia India','1',1,'cd454-4d62d-fe77d-726d1','75','08:10:00','17:15:00',0,'EC',545,'9h 5m',6000,7701,'DEL','MAA','1 Stop(s)',1,1,3973,'22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339',2,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2140,0,764,0,400,3973,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-08T08:10\",\"LocalFromTime\":\"2023-02-08 08:10\",\"FromUTCTime\":\"2023-02-08T08:10\",\"LocalToTime\":\"2023-02-08 17:15\",\"ToUTCTime\":\"2023-02-08T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1356633556_1DELBLRI5740BLRMAAI52461_14390301899334\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"546\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-08T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"547\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-08T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"strTraceId\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-08 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 11:31:22','2023-01-04 11:31: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',NULL),(12,0,1,36973,0,0,NULL,'2023-02-07',NULL,NULL,'I5-821','AirAsia India','1',1,'ed824-c8e52-dc430-d10aa','75','22:35:00','03:30:00',0,'EC',295,'4h 55m',6000,7701,'MAA','DEL','1 Stop(s)',1,1,4030,'22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690',1,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2197,0,823,0,400,4030,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-07T22:35\",\"LocalFromTime\":\"2023-02-07 22:35\",\"FromUTCTime\":\"2023-02-07T22:35\",\"LocalToTime\":\"2023-02-08 03:30\",\"ToUTCTime\":\"2023-02-08T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4197,\"PublishedFareTxt\":\"4,197\",\"ApiResultIndex\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2197,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4197,\"PublishedFare\":4030,\"OfferedFare\":3112,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14889614287537\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2197,\"BaseFareCal\":3252.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4030,\"CostToCustomer\":4030,\"BaseFareCal\":3252.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3252.03,\"intOfferedFare\":3112,\"intPublishFare\":4197,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"70\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"71\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-08T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-07T22:35\",\"LocalFromTime\":\"2023-02-07 22:35\",\"FromUTCTime\":\"2023-02-07T22:35\",\"LocalToTime\":\"2023-02-08 03:30\",\"ToUTCTime\":\"2023-02-08T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8337,\"ApiResultIndex\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":4337,\"YQTax\":0,\"OtherCharges\":1587,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":206,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8337,\"PublishedFare\":8003,\"OfferedFare\":6167,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4337,\"BaseFareCal\":6447.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":206,\"MFT\":144,\"OT\":1587,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"70\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"71\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-08T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"72\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T12:25\",\"SegFlightNumber\":\"I5-1529\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":230,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"73\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-10T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-10T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"localFromDateTime\":\"2023-02-07 22:35\",\"localToDateTime\":\"2023-02-08 03:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 11:37:50','2023-01-04 11:37: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),(13,12,1,36973,0,0,NULL,'2023-02-10',NULL,NULL,'I5-1529','AirAsia India','1',1,'ed824-c8e52-dc430-d10aa','75','09:35:00','17:15:00',0,'EC',460,'7h 40m',6000,7701,'DEL','MAA','1 Stop(s)',1,1,3973,'22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604',2,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2140,0,764,0,400,3973,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-1529\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-10T09:35\",\"LocalFromTime\":\"2023-02-10 09:35\",\"FromUTCTime\":\"2023-02-10T09:35\",\"LocalToTime\":\"2023-02-10 17:15\",\"ToUTCTime\":\"2023-02-10T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-3225367417_1DELBLRI51529BLRMAAI52461_14889616086742\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"72\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T12:25\",\"SegFlightNumber\":\"I5-1529\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":230,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"73\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-10T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-10T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"strTraceId\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-04 11:37:50','2023-01-04 11:37: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),(14,0,3,36973,0,0,NULL,'2023-01-11',NULL,NULL,'6E-2398','IndiGo','1',1,'a2421-c665f-6681d-47978','267','07:00:00','09:15:00',0,'T',135,'2h 15m',18676,7701,'BOM','DEL','Non-stop',1,1,5519,'5-2553746032_12BOMDEL6E2398_15025436541540',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',3570,2234,0,778,0,400,5519,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS103800436096\",\"FlightNumber\":\"6E-2398\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-01-11T07:00\",\"LocalFromTime\":\"2023-01-11 07:00\",\"FromUTCTime\":\"2023-01-11T07:00\",\"LocalToTime\":\"2023-01-11 09:15\",\"ToUTCTime\":\"2023-01-11T09:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 11 Jan\",\"ArrivalDateTxt\":\"Wed, 11 Jan\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5804,\"PublishedFareTxt\":\"5,804\",\"ApiResultIndex\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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\":3570,\"Tax\":2234,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":184,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5804,\"PublishedFare\":5519,\"OfferedFare\":4719,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2553746032_0BOMDEL6E2398_15061741158258\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2234,\"BaseFareCal\":4841.03,\"BaseFare\":3570,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":184,\"MFT\":72,\"OT\":778,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5519,\"CostToCustomer\":5519,\"BaseFareCal\":4841.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4841.03,\"intOfferedFare\":4719,\"intPublishFare\":5804,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"431\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-11T09:15\",\"SegFlightNumber\":\"6E-2398\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a2421-c665f-6681d-47978\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-05T20:03:44.661\",\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-11 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\":\"TJS103800436096\",\"FlightNumber\":\"6E-2398\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-01-11T07:00\",\"LocalFromTime\":\"2023-01-11 07:00\",\"FromUTCTime\":\"2023-01-11T07:00\",\"LocalToTime\":\"2023-01-11 09:15\",\"ToUTCTime\":\"2023-01-11T09:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 11 Jan\",\"ArrivalDateTxt\":\"Wed, 11 Jan\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5804,\"ApiResultIndex\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"a2421-c665f-6681d-47978\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-05T20:03:44.661\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3570,\"Tax\":2234,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":184,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5804,\"PublishedFare\":5519,\"OfferedFare\":4719,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2234,\"BaseFareCal\":4841.03,\"BaseFare\":3570,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":184,\"MFT\":72,\"OT\":778,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"431\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-11T09:15\",\"SegFlightNumber\":\"6E-2398\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"localFromDateTime\":\"2023-01-11 07:00\",\"localToDateTime\":\"2023-01-11 09:15\",\"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','27.106.30.70','2023-01-05 14:33:11','2023-01-05 14:33: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),(15,0,3,36973,0,0,NULL,'2023-01-06',NULL,NULL,'SG-13','SpiceJet','1',1,'96eb1-3a104-7da46-97211','463','23:05:00','00:55:00',0,'RS',200,'1h 50m',18676,8219,'BOM','DXB','Non-stop',1,1,17209.7,'4-6421084093_0BOMDXBSG13_83451945919602',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',13750,3341.7,0,1830,0,15,17209.7,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS112000436820\",\"FlightNumber\":\"SG-13\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-01-06T23:05\",\"LocalFromTime\":\"2023-01-06 23:05\",\"FromUTCTime\":\"2023-01-06T23:05\",\"LocalToTime\":\"2023-01-07 00:55\",\"ToUTCTime\":\"2023-01-07T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Sat, 07 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":17091.7,\"PublishedFareTxt\":\"17,092\",\"ApiResultIndex\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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\":{\"CRFT\":9,\"ARF\":4000,\"ARFT\":200,\"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\":{\"CCF\":50,\"ACFT\":250,\"ACF\":5000,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13750,\"Tax\":3341.7,\"YQTax\":0,\"OtherCharges\":1830,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":694,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":17091.7,\"PublishedFare\":17209.7,\"OfferedFare\":16291.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6421084093_0BOMDXBSG13_83465957421038\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3341.7,\"BaseFareCal\":16431.73,\"BaseFare\":13750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":694,\"MFT\":2.7,\"OT\":1830,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":17209.7,\"CostToCustomer\":17209.7,\"BaseFareCal\":16431.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":16431.73,\"intOfferedFare\":16291.7,\"intPublishFare\":17091.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"165\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-07T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"96eb1-3a104-7da46-97211\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-06T15:03:48.878\",\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS112000436820\",\"FlightNumber\":\"SG-13\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-01-06T23:05\",\"LocalFromTime\":\"2023-01-06 23:05\",\"FromUTCTime\":\"2023-01-06T23:05\",\"LocalToTime\":\"2023-01-07 00:55\",\"ToUTCTime\":\"2023-01-07T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Sat, 07 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":17091.7,\"ApiResultIndex\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"96eb1-3a104-7da46-97211\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-06T15:03:48.878\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13750,\"Tax\":3341.7,\"YQTax\":0,\"OtherCharges\":1830,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":694,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":17091.7,\"PublishedFare\":17209.7,\"OfferedFare\":16291.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3341.7,\"BaseFareCal\":16431.73,\"BaseFare\":13750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":694,\"MFT\":2.7,\"OT\":1830,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"165\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-07T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"localFromDateTime\":\"2023-01-06 23:05\",\"localToDateTime\":\"2023-01-07 00:55\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.184.200.253','2023-01-06 09:33:50','2023-01-06 09:33: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),(16,0,3,36973,0,0,NULL,'2023-01-18','BKRS101000437540','TJS101000437540','I5-678','AirAsia India','1',0,'2c6f9-6ca16-209fc-1101b','75','15:25:00','23:10:00',0,'BT',465,'7h 45m',18676,7701,'BOM','DEL','1 Stop(s)',1,1,4348,'22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2480,2153,0,753,0,400,4348,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101000437540\",\"bookingId_TJ\":\"TJS101000437540\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-01-18T15:25\",\"LocalFromTime\":\"2023-01-18 15:25\",\"FromUTCTime\":\"2023-01-18T15:25\",\"LocalToTime\":\"2023-01-18 23:10\",\"ToUTCTime\":\"2023-01-18T23:10\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":465,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4633,\"PublishedFareTxt\":\"4,633\",\"ApiResultIndex\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2480,\"Tax\":2153,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4633,\"PublishedFare\":4348,\"OfferedFare\":3548,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85650426825478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2153,\"BaseFareCal\":3670.03,\"BaseFare\":2480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":128,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4348,\"CostToCustomer\":4348,\"BaseFareCal\":3670.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3670.03,\"intOfferedFare\":3548,\"intPublishFare\":4633,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-01-18T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-18T15:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":290,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"121\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T23:10\",\"SegFlightNumber\":\"I5-830\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-01-18T22:15\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2c6f9-6ca16-209fc-1101b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-07T15:54:45.349\",\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-18 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\":\"BKRS101000437540\",\"bookingId_TJ\":\"TJS101000437540\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-01-18T15:25\",\"LocalFromTime\":\"2023-01-18 15:25\",\"FromUTCTime\":\"2023-01-18T15:25\",\"LocalToTime\":\"2023-01-18 23:10\",\"ToUTCTime\":\"2023-01-18T23:10\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":465,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4633,\"ApiResultIndex\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"2c6f9-6ca16-209fc-1101b\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-07T15:54:45.349\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2480,\"Tax\":2153,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4633,\"PublishedFare\":4348,\"OfferedFare\":3548,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2153,\"BaseFareCal\":3670.03,\"BaseFare\":2480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":128,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-01-18T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-18T15:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":290,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"121\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T23:10\",\"SegFlightNumber\":\"I5-830\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-01-18T22:15\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"localFromDateTime\":\"2023-01-18 15:25\",\"localToDateTime\":\"2023-01-18 23:10\",\"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.184.189.129','2023-01-07 10:23:56','2023-01-07 10:23: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),(17,0,4,36973,0,0,NULL,'2023-01-20','BKRS101000437787','TJS101000437787','I5-548','AirAsia India','1',0,'7c469-dd375-c0cfb-612e3','75','08:10:00','12:40:00',0,'BT',270,'4h 30m',7701,14323,'DEL','CCU','1 Stop(s)',1,1,5493,'22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',3560,2218,0,764,0,400,5493,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101000437787\",\"bookingId_TJ\":\"TJS101000437787\",\"FlightNumber\":\"I5-548\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-01-20T08:10\",\"LocalFromTime\":\"2023-01-20 08:10\",\"FromUTCTime\":\"2023-01-20T08:10\",\"LocalToTime\":\"2023-01-20 12:40\",\"ToUTCTime\":\"2023-01-20T12:40\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":90,\"LAYOVERDuration\":\"1h 30m\",\"FlyingMinutes\":270,\"DepartureDateTxt\":\"Fri, 20 Jan\",\"ArrivalDateTxt\":\"Fri, 20 Jan\",\"FlightDuration\":\"4h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"PublishedFareTxt\":\"5,778\",\"ApiResultIndex\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159013887285722\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5493,\"CostToCustomer\":5493,\"BaseFareCal\":4815.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4815.03,\"intOfferedFare\":4693,\"intPublishFare\":5778,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"192\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-01-20T09:20\",\"SegFlightNumber\":\"I5-548\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-20T08:10\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":70,\"GroundTime\":90,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"1h 30m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-01-20T12:40\",\"SegFlightNumber\":\"I5-319\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-01-20T10:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7c469-dd375-c0cfb-612e3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-08T12:17:28.809\",\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-20 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\":\"BKRS101000437787\",\"bookingId_TJ\":\"TJS101000437787\",\"FlightNumber\":\"I5-548\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-01-20T08:10\",\"LocalFromTime\":\"2023-01-20 08:10\",\"FromUTCTime\":\"2023-01-20T08:10\",\"LocalToTime\":\"2023-01-20 12:40\",\"ToUTCTime\":\"2023-01-20T12:40\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":90,\"LAYOVERDuration\":\"1h 30m\",\"FlyingMinutes\":270,\"DepartureDateTxt\":\"Fri, 20 Jan\",\"ArrivalDateTxt\":\"Fri, 20 Jan\",\"FlightDuration\":\"4h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"ApiResultIndex\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"7c469-dd375-c0cfb-612e3\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-08T12:17:28.809\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"192\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-01-20T09:20\",\"SegFlightNumber\":\"I5-548\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-20T08:10\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":70,\"GroundTime\":90,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"1h 30m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-01-20T12:40\",\"SegFlightNumber\":\"I5-319\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-01-20T10:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"localFromDateTime\":\"2023-01-20 08:10\",\"localToDateTime\":\"2023-01-20 12:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.233.71.178','2023-01-08 06:46:54','2023-01-08 06:46:54',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,1,36973,0,550283,'R4HL5S','2023-02-14','BKRS100700438316','TJS100700438316','G8-323','Go First','1',1,'178fe-fb376-15935-e97b4','240','18:20:00','20:35:00',0,'GS',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',1,1,4188,'1-1335130501_4DELBOMG8323_250217708257523',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/G8.gif','INR',1420,2935,750,799,0,400,4188,0,0,0,140.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS100700438316\",\"bookingId_TJ\":\"TJS100700438316\",\"FlightNumber\":\"G8-323\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2023-02-14T18:20\",\"LocalFromTime\":\"2023-02-14 18:20\",\"FromUTCTime\":\"2023-02-14T18:20\",\"LocalToTime\":\"2023-02-14 20:35\",\"ToUTCTime\":\"2023-02-14T20:35\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":158,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4355,\"PublishedFareTxt\":\"4,355\",\"ApiResultIndex\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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,\"CRF\":50,\"CRFT\":9,\"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)\",\"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\":1420,\"Tax\":2935,\"YQTax\":750,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4355,\"PublishedFare\":4188,\"OfferedFare\":3270,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-1335130501_0DELBOMG8323_250224844407761\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2935,\"BaseFareCal\":3410.03,\"BaseFare\":1420,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":114,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4188,\"CostToCustomer\":4188,\"BaseFareCal\":3410.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3410.03,\"intOfferedFare\":3270,\"intPublishFare\":4355,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"247\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T20:35\",\"SegFlightNumber\":\"G8-323\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-14T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":158,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"178fe-fb376-15935-e97b4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-09T13:37:39.767\",\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 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\":\"BKRS100700438316\",\"bookingId_TJ\":\"TJS100700438316\",\"FlightNumber\":\"G8-323\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2023-02-14T18:20\",\"LocalFromTime\":\"2023-02-14 18:20\",\"FromUTCTime\":\"2023-02-14T18:20\",\"LocalToTime\":\"2023-02-14 20:35\",\"ToUTCTime\":\"2023-02-14T20:35\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":158,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4355,\"ApiResultIndex\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"178fe-fb376-15935-e97b4\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-09T13:37:39.767\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1420,\"Tax\":2935,\"YQTax\":750,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4355,\"PublishedFare\":4188,\"OfferedFare\":3270,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2935,\"BaseFareCal\":3410.03,\"BaseFare\":1420,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":114,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"247\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T20:35\",\"SegFlightNumber\":\"G8-323\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-14T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":158,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"localFromDateTime\":\"2023-02-14 18:20\",\"localToDateTime\":\"2023-02-14 20:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS100700438316\",\"amount\":3555,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-09T13:39:59.374\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103585\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"323\",\"eT\":\"32N\"},\"stops\":0,\"duration\":135,\"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 1\"},\"dt\":\"2023-02-14T18:20\",\"at\":\"2023-02-14T20:35\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"R4HL5S\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":1420,\"TF\":4355,\"NCM\":285,\"IGST\":72,\"NF\":3270,\"TAF\":2935},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"OT\":799,\"YQ\":750,\"MF\":400,\"AGST\":114,\"MFT\":72,\"MU\":800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"550282\",\"TPSysId\":\"550283\",\"VersionId\":[\"144963\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"43963\",\"FareBreakdownid\":[\"368136\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315476','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-09 08:06:56','2023-01-09 08:06:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000313',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(19,0,3,36973,0,0,NULL,'2023-01-24','BKRS110100438627','TJS110100438627','UK-201','Vistara','',1,'30800-3c8f2-d0004-f1cc8','539','16:25:00','18:15:00',0,'V',200,'1h 50m',18676,8219,'BOM','DXB','Non-stop',1,1,12800.7,'12-15-2-10-8385384078_25BOMDXBUK201_285493566869303',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',8985,3697.7,0,2346,0,15,12800.7,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS110100438627\",\"bookingId_TJ\":\"TJS110100438627\",\"FlightNumber\":\"UK-201\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2023-01-24T16:25\",\"LocalFromTime\":\"2023-01-24 16:25\",\"FromUTCTime\":\"2023-01-24T16:25\",\"LocalToTime\":\"2023-01-24 18:15\",\"ToUTCTime\":\"2023-01-24T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Tue, 24 Jan\",\"ArrivalDateTxt\":\"Tue, 24 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":12682.7,\"PublishedFareTxt\":\"12,683\",\"ApiResultIndex\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DXB\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8985,\"Tax\":3697.7,\"YQTax\":0,\"OtherCharges\":2346,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":454,\"CarrierMiscFee\":80,\"MUFee\":800,\"intPublishedFare\":12682.7,\"PublishedFare\":12800.7,\"OfferedFare\":11882.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-8385384078_0BOMDXBUK201_285520327840941\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":\"1\",\"TaxIN\":3697.7,\"BaseFareCal\":12022.73,\"BaseFare\":8985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":454,\"MFT\":2.7,\"OT\":2346,\"MU\":800,\"YR\":80,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":12800.7,\"CostToCustomer\":12800.7,\"BaseFareCal\":12022.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":12022.73,\"intOfferedFare\":11882.7,\"intPublishFare\":12682.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"868\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-24T18:15\",\"SegFlightNumber\":\"UK-201\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-24T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"30800-3c8f2-d0004-f1cc8\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-09T23:25:55.250\",\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS110100438627\",\"bookingId_TJ\":\"TJS110100438627\",\"FlightNumber\":\"UK-201\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2023-01-24T16:25\",\"LocalFromTime\":\"2023-01-24 16:25\",\"FromUTCTime\":\"2023-01-24T16:25\",\"LocalToTime\":\"2023-01-24 18:15\",\"ToUTCTime\":\"2023-01-24T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Tue, 24 Jan\",\"ArrivalDateTxt\":\"Tue, 24 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":12682.7,\"ApiResultIndex\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"30800-3c8f2-d0004-f1cc8\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-09T23:25:55.250\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8985,\"Tax\":3697.7,\"YQTax\":0,\"OtherCharges\":2346,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":454,\"CarrierMiscFee\":80,\"MUFee\":800,\"intPublishedFare\":12682.7,\"PublishedFare\":12800.7,\"OfferedFare\":11882.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3697.7,\"BaseFareCal\":12022.73,\"BaseFare\":8985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":454,\"MFT\":2.7,\"OT\":2346,\"MU\":800,\"YR\":80,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"868\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-24T18:15\",\"SegFlightNumber\":\"UK-201\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-24T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"localFromDateTime\":\"2023-01-24 16:25\",\"localToDateTime\":\"2023-01-24 18:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}',NULL,NULL,1,0,'11000000315718','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','27.106.30.70','2023-01-09 17:55:46','2023-01-09 17:55:46',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,1,36973,0,551252,'P4JUKG-P4JUKG','2023-02-02','BKRS108000438725','TJS108000438725','I5-192','AirAsia India','1',0,'6e2ed-4b8ff-efce0-0e23e','75','10:00:00','16:30:00',0,'BT',390,'6h 30m',7701,14323,'DEL','CCU','1 Stop(s)',1,1,5493,'22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',3560,2218,0,764,0,400,5493,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS108000438725\",\"bookingId_TJ\":\"TJS108000438725\",\"FlightNumber\":\"I5-192\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:00\",\"ArrivalTime\":\"16:30\",\"TravelDate\":\"2023-02-02T10:00\",\"LocalFromTime\":\"2023-02-02 10:00\",\"FromUTCTime\":\"2023-02-02T10:00\",\"LocalToTime\":\"2023-02-02 16:30\",\"ToUTCTime\":\"2023-02-02T16:30\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Surat\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Thu, 02 Feb\",\"ArrivalDateTxt\":\"Thu, 02 Feb\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"PublishedFareTxt\":\"5,778\",\"ApiResultIndex\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-6827534393_0DELSTVI5192STVCCUI5195_327348960168857\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5493,\"CostToCustomer\":5493,\"BaseFareCal\":4815.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4815.03,\"intOfferedFare\":4693,\"intPublishFare\":5778,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"952\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Surat Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Surat\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"STV\",\"destinationArrTime\":\"2023-02-02T13:00\",\"SegFlightNumber\":\"I5-192\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-02T10:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":105,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Surat\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"953\",\"originAirportName\":\"Surat Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Surat\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-02T16:30\",\"SegFlightNumber\":\"I5-195\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"STV\",\"originDepTime\":\"2023-02-02T14:45\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"16:30\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"MOCB\",\"Price\":500,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"GNCB\",\"Price\":500,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6e2ed-4b8ff-efce0-0e23e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-10T11:03:03.882\",\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-02 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\":\"BKRS108000438725\",\"bookingId_TJ\":\"TJS108000438725\",\"FlightNumber\":\"I5-192\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:00\",\"ArrivalTime\":\"16:30\",\"TravelDate\":\"2023-02-02T10:00\",\"LocalFromTime\":\"2023-02-02 10:00\",\"FromUTCTime\":\"2023-02-02T10:00\",\"LocalToTime\":\"2023-02-02 16:30\",\"ToUTCTime\":\"2023-02-02T16:30\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Surat\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Thu, 02 Feb\",\"ArrivalDateTxt\":\"Thu, 02 Feb\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"ApiResultIndex\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"6e2ed-4b8ff-efce0-0e23e\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-10T11:03:03.882\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"952\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Surat Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Surat\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"STV\",\"destinationArrTime\":\"2023-02-02T13:00\",\"SegFlightNumber\":\"I5-192\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-02T10:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":105,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Surat\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"953\",\"originAirportName\":\"Surat Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Surat\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-02T16:30\",\"SegFlightNumber\":\"I5-195\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"STV\",\"originDepTime\":\"2023-02-02T14:45\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"16:30\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"localFromDateTime\":\"2023-02-02 10:00\",\"localToDateTime\":\"2023-02-02 16:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS108000438725\",\"amount\":4978,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T11:08:55.405\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103686\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"192\",\"eT\":\"320\"},\"stops\":0,\"duration\":180,\"cT\":105,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"STV\",\"name\":\"Surat Airport\",\"cityCode\":\"STV\",\"city\":\"Surat\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-02T10:00\",\"at\":\"2023-02-02T13:00\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103687\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"195\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"STV\",\"name\":\"Surat Airport\",\"cityCode\":\"STV\",\"city\":\"Surat\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-02T14:45\",\"at\":\"2023-02-02T16:30\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-STV\":\"P4JUKG\",\"STV-CCU\":\"P4JUKG\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3560,\"TF\":5778,\"NCM\":285,\"IGST\":72,\"NF\":4693,\"TAF\":2218},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"OT\":764,\"MF\":400,\"AGST\":182,\"MFT\":72,\"MU\":800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551251\",\"TPSysId\":\"551252\",\"VersionId\":[\"145423\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44077\",\"FareBreakdownid\":[\"368208\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315791','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-10 05:32:32','2023-01-10 05:32:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000002',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(21,0,1,36973,0,551260,'TESTPNR','2023-02-08','BKRS105600438729','TJS105600438729','6E-6034','IndiGo','1',1,'50c72-84a80-90171-904ea','267','05:00:00','06:35:00',0,'R',95,'1h 35m',7701,296,'DEL','AMD','Non-stop',1,1,4000,'5-4888798274_0DELAMD6E6034_327530526622078',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2001,2166,0,789,0,400,4000,0,0,0,140.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS105600438729\",\"bookingId_TJ\":\"TJS105600438729\",\"FlightNumber\":\"6E-6034\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2023-02-08T05:00\",\"LocalFromTime\":\"2023-02-08 05:00\",\"FromUTCTime\":\"2023-02-08T05:00\",\"LocalToTime\":\"2023-02-08 06:35\",\"ToUTCTime\":\"2023-02-08T06:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4167,\"PublishedFareTxt\":\"4,167\",\"ApiResultIndex\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-AMD\":{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"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,\"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\":2001,\"Tax\":2166,\"YQTax\":0,\"OtherCharges\":789,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4167,\"PublishedFare\":4000,\"OfferedFare\":3082,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4888798274_0DELAMD6E6034_327549120829357\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2166,\"BaseFareCal\":3222.03,\"BaseFare\":2001,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":105,\"MFT\":72,\"OT\":789,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4000,\"CostToCustomer\":4000,\"BaseFareCal\":3222.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3222.03,\"intOfferedFare\":3082,\"intPublishFare\":4167,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"980\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-08T06:35\",\"SegFlightNumber\":\"6E-6034\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T05:00\",\"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\":\"05:00\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"50c72-84a80-90171-904ea\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:06:24.043\",\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 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\":\"BKRS105600438729\",\"bookingId_TJ\":\"TJS105600438729\",\"FlightNumber\":\"6E-6034\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2023-02-08T05:00\",\"LocalFromTime\":\"2023-02-08 05:00\",\"FromUTCTime\":\"2023-02-08T05:00\",\"LocalToTime\":\"2023-02-08 06:35\",\"ToUTCTime\":\"2023-02-08T06:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4167,\"ApiResultIndex\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"50c72-84a80-90171-904ea\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:06:24.043\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2001,\"Tax\":2166,\"YQTax\":0,\"OtherCharges\":789,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4167,\"PublishedFare\":4000,\"OfferedFare\":3082,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2166,\"BaseFareCal\":3222.03,\"BaseFare\":2001,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":105,\"MFT\":72,\"OT\":789,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"980\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-08T06:35\",\"SegFlightNumber\":\"6E-6034\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T05:00\",\"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\":\"05:00\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"localFromDateTime\":\"2023-02-08 05:00\",\"localToDateTime\":\"2023-02-08 06:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS105600438729\",\"amount\":3367,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T11:08:16.073\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103685\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6034\",\"eT\":\"321\"},\"stops\":0,\"duration\":95,\"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\":\"2023-02-08T05:00\",\"at\":\"2023-02-08T06:35\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":2001,\"TF\":4167,\"NCM\":285,\"IGST\":72,\"NF\":3082,\"TAF\":2166},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"OT\":789,\"YQ\":0,\"MF\":400,\"AGST\":105,\"MFT\":72,\"MU\":800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551259\",\"TPSysId\":\"551260\",\"VersionId\":[\"145425\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44078\",\"FareBreakdownid\":[\"368209\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315789','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-10 05:35:40','2023-01-10 05:35:40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000001',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(22,0,1,36973,0,551286,'TESTPNR-TESTPNR','2023-02-09','BKRS102600438749','TJS102600438749','6E-244','IndiGo','1',1,'4d360-202c1-27000-1e57c','267','04:00:00','10:05:00',0,'R',365,'6h 5m',6000,16028,'MAA','LKO','1 Stop(s)',1,1,5771,'5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',3553,2385,0,928,0,400,5771,0,0,0,140.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102600438749\",\"bookingId_TJ\":\"TJS102600438749\",\"FlightNumber\":\"6E-244\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"10:05\",\"TravelDate\":\"2023-02-09T04:00\",\"LocalFromTime\":\"2023-02-09 04:00\",\"FromUTCTime\":\"2023-02-09T04:00\",\"LocalToTime\":\"2023-02-09 10:05\",\"ToUTCTime\":\"2023-02-09T10:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5938,\"PublishedFareTxt\":\"5,938\",\"ApiResultIndex\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"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,\"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\":3553,\"Tax\":2385,\"YQTax\":0,\"OtherCharges\":928,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5938,\"PublishedFare\":5771,\"OfferedFare\":4853,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5438493363_0MAAAMD6E244AMDLKO6E6244_328237993019438\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2385,\"BaseFareCal\":4993.03,\"BaseFare\":3553,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":928,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5771,\"CostToCustomer\":5771,\"BaseFareCal\":4993.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4993.03,\"intOfferedFare\":4853,\"intPublishFare\":5938,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"156\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-09T06:20\",\"SegFlightNumber\":\"6E-244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-09T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":120,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"157\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-02-09T10:05\",\"SegFlightNumber\":\"6E-6244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-09T08:20\",\"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\":\"08:20\",\"strArrivalDtTime\":\"10:05\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d360-202c1-27000-1e57c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:17:52.914\",\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102600438749\",\"bookingId_TJ\":\"TJS102600438749\",\"FlightNumber\":\"6E-244\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"10:05\",\"TravelDate\":\"2023-02-09T04:00\",\"LocalFromTime\":\"2023-02-09 04:00\",\"FromUTCTime\":\"2023-02-09T04:00\",\"LocalToTime\":\"2023-02-09 10:05\",\"ToUTCTime\":\"2023-02-09T10:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5938,\"ApiResultIndex\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"4d360-202c1-27000-1e57c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:17:52.914\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3553,\"Tax\":2385,\"YQTax\":0,\"OtherCharges\":928,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5938,\"PublishedFare\":5771,\"OfferedFare\":4853,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2385,\"BaseFareCal\":4993.03,\"BaseFare\":3553,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":928,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"156\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-09T06:20\",\"SegFlightNumber\":\"6E-244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-09T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":120,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"157\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-02-09T10:05\",\"SegFlightNumber\":\"6E-6244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-09T08:20\",\"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\":\"08:20\",\"strArrivalDtTime\":\"10:05\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"localFromDateTime\":\"2023-02-09 04:00\",\"localToDateTime\":\"2023-02-09 10:05\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102600438749\",\"amount\":5138,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T11:19:04.171\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103694\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"244\",\"eT\":\"321\"},\"stops\":0,\"duration\":140,\"cT\":120,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"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\":\"2023-02-09T04:00\",\"at\":\"2023-02-09T06:20\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103695\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6244\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"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\":\"2023-02-09T08:20\",\"at\":\"2023-02-09T10:05\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"MAA-AMD\":\"TESTPNR\",\"AMD-LKO\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3553,\"TF\":5938,\"NCM\":285,\"IGST\":72,\"NF\":4853,\"TAF\":2385},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"OT\":928,\"YQ\":0,\"MF\":400,\"AGST\":185,\"MFT\":72,\"MU\":800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551285\",\"TPSysId\":\"551286\",\"VersionId\":[\"145433\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44080\",\"FareBreakdownid\":[\"368212\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315800','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-10 05:47:02','2023-01-10 05:47:02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000003',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(23,0,1,36973,0,551308,'TESTPNR-TESTPNR','2023-02-15','BKRS118100438772',NULL,'SG-5','SpiceJet','1',1,'14cf4-a0a97-3147a-84c91','0','19:25:00','22:05:00',0,'CP',0,'4h 10m',7701,8219,'DEL','DXB','Non-stop',1,1,24766.4,'4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',18406,6360.4,0,4193,0,30,24766.4,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS118100438772\",\"bookingId_TJ\":\"TJS118100438772\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:25\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-15T19:25\",\"LocalFromTime\":\"2023-02-15 19:25\",\"FromUTCTime\":\"2023-02-15T19:25\",\"LocalToTime\":\"2023-02-15 22:05\",\"ToUTCTime\":\"2023-02-15T22:05\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":{\"ACF\":5000,\"CCF\":50,\"ACFT\":250,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18406,\"Tax\":6360.4,\"YQTax\":0,\"OtherCharges\":4193,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":532,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24766.4,\"PublishedFare\":24766.4,\"OfferedFare\":21999.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4628192957_1DXBDELSG6_328750255821061\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":\"1\",\"TaxIN\":6360.4,\"BaseFareCal\":23410.46,\"BaseFare\":18406,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":532,\"MFT\":5.4,\"OT\":4193,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-15T22:05\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T19:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"19:25\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB05\",\"Price\":3500,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB10\",\"Price\":7000,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNSW\",\"Price\":445,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"FPML\",\"Price\":445,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFCM\",\"Price\":495,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGML\",\"Price\":545,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"CHML\",\"Price\":545,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVML\",\"Price\":595,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNML\",\"Price\":595,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFVG\",\"Price\":595,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DBML\",\"Price\":595,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VCC2\",\"Price\":645,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC6\",\"Price\":645,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC5\",\"Price\":645,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC4\",\"Price\":645,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC2\",\"Price\":645,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC1\",\"Price\":645,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCNS\",\"Price\":645,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFNV\",\"Price\":645,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DNVL\",\"Price\":645,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-15 12:00\",\"localToDateTime\":\"2023-02-18 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS118100438772\",\"bookingId_TJ\":\"TJS118100438772\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:25\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-15T19:25\",\"LocalFromTime\":\"2023-02-15 19:25\",\"FromUTCTime\":\"2023-02-15T19:25\",\"LocalToTime\":\"2023-02-15 22:05\",\"ToUTCTime\":\"2023-02-15T22:05\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":24766.4,\"ApiResultIndex\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":{\"ACF\":5000,\"CCF\":50,\"ACFT\":250,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18406,\"Tax\":6360.4,\"YQTax\":0,\"OtherCharges\":4193,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":532,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24766.4,\"PublishedFare\":24766.4,\"OfferedFare\":21999.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4628192957_1DXBDELSG6_328750255821061\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":\"1\",\"TaxIN\":6360.4,\"BaseFareCal\":23410.46,\"BaseFare\":18406,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":532,\"MFT\":5.4,\"OT\":4193,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-15T22:05\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T19:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"19:25\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"384\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-18T15:45\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-18T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"localFromDateTime\":\"2023-02-15 19:25\",\"localToDateTime\":\"2023-02-15 22:05\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. You have an existing booking under the cart ID TJS118100438772. Please, check your cart.\",\"details\":\"TJS118100438772\"}]}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551307\",\"TPSysId\":\"551308\",\"VersionId\":[\"145441\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44084\",\"FareBreakdownid\":[\"368216\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315807','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 05:57:01','2023-01-10 05:57:01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000004',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(24,23,1,36973,0,551308,NULL,'2023-02-15',NULL,NULL,'SG-6','SpiceJet','1',1,'14cf4-a0a97-3147a-84c91','0','11:10:00','15:45:00',0,'CP',0,'3h 5m',8219,7701,'DXB','DEL','Non-stop',1,1,24767,'4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',18406,6360.4,0,4193,0,30,24767,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. You have an existing booking under the cart ID TJS118100438772. Please, check your cart.\",\"details\":\"TJS118100438772\"}]}',NULL,1,0,'11000000315807','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 05:57:01','2023-01-10 05:57:01',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,1,36973,0,551334,'TESTPNR-TESTPNR','2023-02-07','BKRS111300438798',NULL,'6E-65','IndiGo','1',1,'85ad4-bfe5a-534ed-18f80','0','06:10:00','09:15:00',0,'J',0,'4h 35m',6000,8219,'MAA','DXB','Non-stop',1,1,25075.4,'5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',18315,6524.4,0,4346,0,30,25075.4,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS111300438798\",\"bookingId_TJ\":\"TJS111300438798\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-02-07T06:10\",\"LocalFromTime\":\"2023-02-07 06:10\",\"FromUTCTime\":\"2023-02-07T06:10\",\"LocalToTime\":\"2023-02-07 09:15\",\"ToUTCTime\":\"2023-02-07T09:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"ARF\":5000,\"CRF\":50,\"CRFT\":9,\"ARFT\":250}}},\"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\":{\"ACF\":6500,\"CCF\":50,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18315,\"Tax\":6524.4,\"YQTax\":0,\"OtherCharges\":4346,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":543,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24839.4,\"PublishedFare\":25075.4,\"OfferedFare\":21275.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1333304429_1DXBMAA6E66_329164594399379\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":6524.4,\"BaseFareCal\":23519.46,\"BaseFare\":18315,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":543,\"MFT\":5.4,\"OT\":4346,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"912\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T09:15\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS111300438798\",\"bookingId_TJ\":\"TJS111300438798\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-02-07T06:10\",\"LocalFromTime\":\"2023-02-07 06:10\",\"FromUTCTime\":\"2023-02-07T06:10\",\"LocalToTime\":\"2023-02-07 09:15\",\"ToUTCTime\":\"2023-02-07T09:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":25075.4,\"ApiResultIndex\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"ARF\":5000,\"CRF\":50,\"CRFT\":9,\"ARFT\":250}}},\"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\":{\"ACF\":6500,\"CCF\":50,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18315,\"Tax\":6524.4,\"YQTax\":0,\"OtherCharges\":4346,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":543,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24839.4,\"PublishedFare\":25075.4,\"OfferedFare\":21275.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1333304429_1DXBMAA6E66_329164594399379\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":6524.4,\"BaseFareCal\":23519.46,\"BaseFare\":18315,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":543,\"MFT\":5.4,\"OT\":4346,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"912\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T09:15\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"913\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-11T01:25\",\"SegFlightNumber\":\"6E-66\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-10T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"localFromDateTime\":\"2023-02-07 06:10\",\"localToDateTime\":\"2023-02-07 09:15\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS111300438798\",\"amount\":23239.4,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T11:34:45.996\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103718\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"65\",\"eT\":\"320\"},\"stops\":0,\"duration\":275,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 4\"},\"aa\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-07T06:10\",\"at\":\"2023-02-07T09:15\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"103719\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"66\",\"eT\":\"320\"},\"stops\":0,\"duration\":235,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-02-10T20:00\",\"at\":\"2023-02-11T01:25\",\"iand\":true,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"MAA-DXB\":\"TESTPNR\",\"DXB-MAA\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1957-01-24\",\"pNum\":\"DTTY67578GHUIU\",\"eD\":\"2025-01-20\",\"pNat\":\"IN\",\"pid\":\"2018-01-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":18315,\"TF\":24839.4,\"IGST\":5.4,\"NF\":23239.4,\"TAF\":6524.4},\"afC\":{\"TAF\":{\"OT\":4346,\"YQ\":0,\"MF\":30,\"AGST\":543,\"MFT\":5.4,\"MU\":1600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551333\",\"TPSysId\":\"551334\",\"VersionId\":[\"145446\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44085\",\"FareBreakdownid\":[\"368217\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315811','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 06:02:32','2023-01-10 06:02:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000005',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(26,25,1,36973,0,0,NULL,'2023-02-07',NULL,NULL,'6E-66','IndiGo','1',1,'85ad4-bfe5a-534ed-18f80','0','20:00:00','01:25:00',0,'J',0,'3h 55m',8219,6000,'DXB','MAA','Non-stop',1,1,25076,'5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',18315,6524.4,0,4346,0,30,25076,0,0,1555.93,280.07,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,1,0,'11000000315811','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 06:02:32','2023-01-10 06:02: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),(27,0,1,36973,0,551689,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2023-02-14','BKRS111000439047',NULL,'6E-5323','IndiGo','1',1,'b514c-6ee16-ef2b3-e9b87','0','08:30:00','20:25:00',0,'J',0,'13h 25m',2262,8219,'BLR','DXB','1 Stop(s)',1,1,24026.4,'5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',16149,7641.4,0,5508,0,30,24026.4,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-5323\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2023-02-14T08:30\",\"LocalFromTime\":\"2023-02-14 08:30\",\"FromUTCTime\":\"2023-02-14T08:30\",\"LocalToTime\":\"2023-02-14 20:25\",\"ToUTCTime\":\"2023-02-14T20:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":805,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16149,\"Tax\":7641.4,\"YQTax\":0,\"OtherCharges\":5508,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":23790.4,\"PublishedFare\":24026.4,\"OfferedFare\":18943.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3580098682_1DXBCOK6E68COKBLR6E472_3135470103233\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":7641.4,\"BaseFareCal\":22470.46,\"BaseFare\":16149,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":498,\"MFT\":5.4,\"OT\":5508,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"487\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T10:15\",\"SegFlightNumber\":\"6E-5323\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-14T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-14T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-21 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-5323\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2023-02-14T08:30\",\"LocalFromTime\":\"2023-02-14 08:30\",\"FromUTCTime\":\"2023-02-14T08:30\",\"LocalToTime\":\"2023-02-14 20:25\",\"ToUTCTime\":\"2023-02-14T20:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":805,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":24026.4,\"ApiResultIndex\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16149,\"Tax\":7641.4,\"YQTax\":0,\"OtherCharges\":5508,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":23790.4,\"PublishedFare\":24026.4,\"OfferedFare\":18943.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3580098682_1DXBCOK6E68COKBLR6E472_3135470103233\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":7641.4,\"BaseFareCal\":22470.46,\"BaseFare\":16149,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":498,\"MFT\":5.4,\"OT\":5508,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"487\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T10:15\",\"SegFlightNumber\":\"6E-5323\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-14T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-14T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"489\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-02-21T17:35\",\"SegFlightNumber\":\"6E-68\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-21T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"490\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-21T23:10\",\"SegFlightNumber\":\"6E-472\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-02-21T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"localFromDateTime\":\"2023-02-14 08:30\",\"localToDateTime\":\"2023-02-14 20:25\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS111000439047\",\"amount\":22190.4,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T13:57:29.515\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103786\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5323\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"cT\":500,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-14T08:30\",\"at\":\"2023-02-14T10:15\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103787\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-14T18:35\",\"at\":\"2023-02-14T20:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"103788\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"68\",\"eT\":\"320\"},\"stops\":0,\"duration\":235,\"cT\":260,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-02-21T12:10\",\"at\":\"2023-02-21T17:35\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"103789\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"472\",\"eT\":\"321\"},\"stops\":0,\"duration\":75,\"da\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"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\":\"2023-02-21T21:55\",\"at\":\"2023-02-21T23:10\",\"iand\":false,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-COK\":\"TESTPNR\",\"COK-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1957-01-24\",\"pNum\":\"DTTY67578GHUIU\",\"eD\":\"2025-01-20\",\"pNat\":\"IN\",\"pid\":\"2018-01-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":5.4,\"TAF\":7641.4,\"BF\":16149,\"NF\":22190.4,\"TF\":23790.4},\"afC\":{\"TAF\":{\"OT\":5508,\"YQ\":0,\"MF\":30,\"MU\":1600,\"MFT\":5.4,\"AGST\":498}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551688\",\"TPSysId\":\"551689\",\"VersionId\":[\"145588\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44123\",\"FareBreakdownid\":[\"368250\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315935','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 08:25:32','2023-01-10 08:25:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000006',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(28,27,1,36973,0,551689,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2023-02-14','BKRS111000439047',NULL,'6E-68','IndiGo','1',1,'b514c-6ee16-ef2b3-e9b87','0','12:10:00','23:10:00',0,'J',0,'9h 30m',8219,2262,'DXB','BLR','1 Stop(s)',1,1,0,'5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',0,0,0,0,0,0,0,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-68\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:10\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-02-21T12:10\",\"LocalFromTime\":\"2023-02-21 12:10\",\"FromUTCTime\":\"2023-02-21T12:10\",\"LocalToTime\":\"2023-02-21 23:10\",\"ToUTCTime\":\"2023-02-21T23:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":570,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"11h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"489\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-02-21T17:35\",\"SegFlightNumber\":\"6E-68\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-21T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"490\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-21T23:10\",\"SegFlightNumber\":\"6E-472\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-02-21T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPA\",\"Price\":5183,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPB\",\"Price\":7888,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPC\",\"Price\":10141,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPD\",\"Price\":20283,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-21 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS111000439047\",\"amount\":22190.4,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T13:57:29.515\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103786\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5323\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"cT\":500,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-14T08:30\",\"at\":\"2023-02-14T10:15\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103787\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-14T18:35\",\"at\":\"2023-02-14T20:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"103788\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"68\",\"eT\":\"320\"},\"stops\":0,\"duration\":235,\"cT\":260,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-02-21T12:10\",\"at\":\"2023-02-21T17:35\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"103789\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"472\",\"eT\":\"321\"},\"stops\":0,\"duration\":75,\"da\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"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\":\"2023-02-21T21:55\",\"at\":\"2023-02-21T23:10\",\"iand\":false,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-COK\":\"TESTPNR\",\"COK-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1957-01-24\",\"pNum\":\"DTTY67578GHUIU\",\"eD\":\"2025-01-20\",\"pNat\":\"IN\",\"pid\":\"2018-01-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":5.4,\"TAF\":7641.4,\"BF\":16149,\"NF\":22190.4,\"TF\":23790.4},\"afC\":{\"TAF\":{\"OT\":5508,\"YQ\":0,\"MF\":30,\"MU\":1600,\"MFT\":5.4,\"AGST\":498}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551688\",\"TPSysId\":\"551689\",\"VersionId\":[\"145588\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44123\",\"FareBreakdownid\":[\"368250\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000315935','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 08:25:32','2023-01-10 08:25:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000006',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(29,0,1,36973,0,551893,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2023-02-08','BKRS115800439213',NULL,'6E-966','IndiGo','1',1,'b8a69-c0527-729b9-0f781','0','05:40:00','01:55:00',0,'J',0,'18h 45m',296,2266,'AMD','BKK','1 Stop(s)',1,1,25830.4,'5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',20400,5430.4,0,3292,0,30,25830.4,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-966\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2023-02-08T05:40\",\"LocalFromTime\":\"2023-02-08 05:40\",\"FromUTCTime\":\"2023-02-08T05:40\",\"LocalToTime\":\"2023-02-09 01:55\",\"ToUTCTime\":\"2023-02-09T01:55\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":815,\"LAYOVERDuration\":\"13h 35m\",\"FlyingMinutes\":1125,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"20h 15m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20400,\"Tax\":5430.4,\"YQTax\":0,\"OtherCharges\":3292,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":503,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":25830.4,\"PublishedFare\":25830.4,\"OfferedFare\":25431.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2886871119_1BKKDEL6E86DELAMD6E2033_9634326559962\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":5430.4,\"BaseFareCal\":24474.46,\"BaseFare\":20400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":503,\"MFT\":5.4,\"OT\":3292,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"539\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-08T08:10\",\"SegFlightNumber\":\"6E-966\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-08T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":815,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"13h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"540\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-09T01:55\",\"SegFlightNumber\":\"6E-77\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-08T21:45\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:45\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"2023-02-15 12:00\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-966\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2023-02-08T05:40\",\"LocalFromTime\":\"2023-02-08 05:40\",\"FromUTCTime\":\"2023-02-08T05:40\",\"LocalToTime\":\"2023-02-09 01:55\",\"ToUTCTime\":\"2023-02-09T01:55\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":815,\"LAYOVERDuration\":\"13h 35m\",\"FlyingMinutes\":1125,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"20h 15m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":25830.4,\"ApiResultIndex\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20400,\"Tax\":5430.4,\"YQTax\":0,\"OtherCharges\":3292,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":503,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":25830.4,\"PublishedFare\":25830.4,\"OfferedFare\":25431.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2886871119_1BKKDEL6E86DELAMD6E2033_9634326559962\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":5430.4,\"BaseFareCal\":24474.46,\"BaseFare\":20400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":503,\"MFT\":5.4,\"OT\":3292,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"539\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-08T08:10\",\"SegFlightNumber\":\"6E-966\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-08T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":815,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"13h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"540\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-09T01:55\",\"SegFlightNumber\":\"6E-77\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-08T21:45\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:45\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"541\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-15T20:20\",\"SegFlightNumber\":\"6E-86\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-15T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":270,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"542\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-16T01:25\",\"SegFlightNumber\":\"6E-2033\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"localFromDateTime\":\"2023-02-08 05:40\",\"localToDateTime\":\"2023-02-09 01:55\",\"strSourceAirportCode\":\"BKK\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS115800439213\",\"amount\":24230.4,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T15:46:13.766\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103858\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"966\",\"eT\":\"320\"},\"stops\":0,\"duration\":150,\"cT\":815,\"da\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-08T05:40\",\"at\":\"2023-02-08T08:10\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103859\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"77\",\"eT\":\"320\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BKK\",\"name\":\"Suvarnabhumi Intl Arpt\",\"cityCode\":\"BKK\",\"city\":\"Bangkok\",\"country\":\"Thailand\",\"countryCode\":\"TH\"},\"dt\":\"2023-02-08T21:45\",\"at\":\"2023-02-09T01:55\",\"iand\":true,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"103860\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"86\",\"eT\":\"321\"},\"stops\":0,\"duration\":270,\"cT\":200,\"da\":{\"code\":\"BKK\",\"name\":\"Suvarnabhumi Intl Arpt\",\"cityCode\":\"BKK\",\"city\":\"Bangkok\",\"country\":\"Thailand\",\"countryCode\":\"TH\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-02-15T17:20\",\"at\":\"2023-02-15T20:20\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"103861\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2033\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-15T23:40\",\"at\":\"2023-02-16T01:25\",\"iand\":true,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"AMD-CCU\":\"TESTPNR\",\"CCU-BKK\":\"TESTPNR\",\"BKK-DEL\":\"TESTPNR\",\"DEL-AMD\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1957-01-24\",\"pNum\":\"DTTY67578GHUIU\",\"eD\":\"2025-01-20\",\"pNat\":\"IN\",\"pid\":\"2018-01-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":5.4,\"TAF\":5430.4,\"BF\":20400,\"NF\":24230.4,\"TF\":25830.4},\"afC\":{\"TAF\":{\"OT\":3292,\"YQ\":0,\"MF\":30,\"MU\":1600,\"MFT\":5.4,\"AGST\":503}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551892\",\"TPSysId\":\"551893\",\"VersionId\":[\"145676\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44138\",\"FareBreakdownid\":[\"368261\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000316010','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 10:14:09','2023-01-10 10:14:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(30,29,1,36973,0,551893,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2023-02-08','BKRS115800439213',NULL,'6E-86','IndiGo','1',1,'b8a69-c0527-729b9-0f781','0','17:20:00','01:25:00',0,'J',0,'9h 35m',2266,296,'BKK','AMD','1 Stop(s)',1,1,0,'5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386',2,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',0,0,0,0,0,0,0,0,0,1355.93,244.07,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-86\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"01:25\",\"TravelDate\":\"2023-02-15T17:20\",\"LocalFromTime\":\"2023-02-15 17:20\",\"FromUTCTime\":\"2023-02-15T17:20\",\"LocalToTime\":\"2023-02-16 01:25\",\"ToUTCTime\":\"2023-02-16T01:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":200,\"LAYOVERDuration\":\"3h 20m\",\"FlyingMinutes\":575,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"8h 5m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"BKK\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"541\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-15T20:20\",\"SegFlightNumber\":\"6E-86\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-15T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":270,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"542\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-16T01:25\",\"SegFlightNumber\":\"6E-2033\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPA\",\"Price\":3895,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPB\",\"Price\":7789,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPC\",\"Price\":11684,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPD\",\"Price\":23368,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"2023-02-15 12:00\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS115800439213\",\"amount\":24230.4,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-10T15:46:13.766\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"103858\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"966\",\"eT\":\"320\"},\"stops\":0,\"duration\":150,\"cT\":815,\"da\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-08T05:40\",\"at\":\"2023-02-08T08:10\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"103859\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"77\",\"eT\":\"320\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BKK\",\"name\":\"Suvarnabhumi Intl Arpt\",\"cityCode\":\"BKK\",\"city\":\"Bangkok\",\"country\":\"Thailand\",\"countryCode\":\"TH\"},\"dt\":\"2023-02-08T21:45\",\"at\":\"2023-02-09T01:55\",\"iand\":true,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"103860\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"86\",\"eT\":\"321\"},\"stops\":0,\"duration\":270,\"cT\":200,\"da\":{\"code\":\"BKK\",\"name\":\"Suvarnabhumi Intl Arpt\",\"cityCode\":\"BKK\",\"city\":\"Bangkok\",\"country\":\"Thailand\",\"countryCode\":\"TH\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-02-15T17:20\",\"at\":\"2023-02-15T20:20\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"103861\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2033\",\"eT\":\"320\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-15T23:40\",\"at\":\"2023-02-16T01:25\",\"iand\":true,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"AMD-CCU\":\"TESTPNR\",\"CCU-BKK\":\"TESTPNR\",\"BKK-DEL\":\"TESTPNR\",\"DEL-AMD\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1957-01-24\",\"pNum\":\"DTTY67578GHUIU\",\"eD\":\"2025-01-20\",\"pNat\":\"IN\",\"pid\":\"2018-01-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":5.4,\"TAF\":5430.4,\"BF\":20400,\"NF\":24230.4,\"TF\":25830.4},\"afC\":{\"TAF\":{\"OT\":3292,\"YQ\":0,\"MF\":30,\"MU\":1600,\"MFT\":5.4,\"AGST\":503}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551892\",\"TPSysId\":\"551893\",\"VersionId\":[\"145676\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44138\",\"FareBreakdownid\":[\"368261\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000316010','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0',NULL,'2023-01-10 10:14:09','2023-01-10 10:14:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(31,0,1,36973,0,0,NULL,'2023-02-09','BKRS105600440557','TJS105600440557','G8-404','Go First','1',1,'28827-8469d-0ac5d-4aa0f','240','10:20:00','15:30:00',0,'GS',310,'5h 10m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4534,'1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/G8.gif','INR',2500,2201,0,799,0,400,4534,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105600440557\",\"bookingId_TJ\":\"TJS105600440557\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4701,\"PublishedFareTxt\":\"4,701\",\"ApiResultIndex\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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)\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2201,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4701,\"PublishedFare\":4534,\"OfferedFare\":3616,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4303221503_0DELVNSG8404VNSBOMG8350_3683170733298\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2201,\"BaseFareCal\":3756.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4534,\"CostToCustomer\":4534,\"BaseFareCal\":3756.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3756.03,\"intOfferedFare\":3616,\"intPublishFare\":4701,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"592\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"593\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"28827-8469d-0ac5d-4aa0f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-11T16:54:31.090\",\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-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\":\"BKRS105600440557\",\"bookingId_TJ\":\"TJS105600440557\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4701,\"ApiResultIndex\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"28827-8469d-0ac5d-4aa0f\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-11T16:54:31.090\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2201,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4701,\"PublishedFare\":4534,\"OfferedFare\":3616,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2201,\"BaseFareCal\":3756.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"592\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"593\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"localFromDateTime\":\"2023-02-09 10:20\",\"localToDateTime\":\"2023-02-09 15:30\",\"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','2023-01-11 11:24:06','2023-01-11 11:24: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),(32,0,1,36973,0,0,NULL,'2023-02-09','BKRS103900442507','TJS103900442507','6E-6923','IndiGo','1',1,'28d98-c35ec-1aa3d-f625e','267','05:15:00','06:25:00',0,'S',70,'1h 10m',2262,12538,'BLR','HYD','Non-stop',1,1,3595,'5-2701544862_0BLRHYD6E6923_20471577987325',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',1480,2400,0,1049,0,400,3595,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS103900442507\",\"bookingId_TJ\":\"TJS103900442507\",\"FlightNumber\":\"6E-6923\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:15\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2023-02-09T05:15\",\"LocalFromTime\":\"2023-02-09 05:15\",\"FromUTCTime\":\"2023-02-09T05:15\",\"LocalToTime\":\"2023-02-09 06:25\",\"ToUTCTime\":\"2023-02-09T06:25\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":12538,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3880,\"PublishedFareTxt\":\"3,880\",\"ApiResultIndex\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-HYD\":{\"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,\"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 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\":1480,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1049,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3880,\"PublishedFare\":3595,\"OfferedFare\":2795,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2701544862_0BLRHYD6E6923_20498446763381\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2400,\"BaseFareCal\":2917.03,\"BaseFare\":1480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":79,\"MFT\":72,\"OT\":1049,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3595,\"CostToCustomer\":3595,\"BaseFareCal\":2917.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2917.03,\"intOfferedFare\":2795,\"intPublishFare\":3880,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"549\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-02-09T06:25\",\"SegFlightNumber\":\"6E-6923\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"S\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T05:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:15\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"28d98-c35ec-1aa3d-f625e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-12T18:45:54.378\",\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"HYD\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":12538,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103900442507\",\"bookingId_TJ\":\"TJS103900442507\",\"FlightNumber\":\"6E-6923\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:15\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2023-02-09T05:15\",\"LocalFromTime\":\"2023-02-09 05:15\",\"FromUTCTime\":\"2023-02-09T05:15\",\"LocalToTime\":\"2023-02-09 06:25\",\"ToUTCTime\":\"2023-02-09T06:25\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":12538,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3880,\"ApiResultIndex\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"28d98-c35ec-1aa3d-f625e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-12T18:45:54.378\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1480,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1049,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3880,\"PublishedFare\":3595,\"OfferedFare\":2795,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2400,\"BaseFareCal\":2917.03,\"BaseFare\":1480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":79,\"MFT\":72,\"OT\":1049,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"549\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-02-09T06:25\",\"SegFlightNumber\":\"6E-6923\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"S\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T05:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:15\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"localFromDateTime\":\"2023-02-09 05:15\",\"localToDateTime\":\"2023-02-09 06:25\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"HYD\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":12538,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-12 13:15:39','2023-01-12 13:15: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),(33,0,1,36973,0,554928,'H5ITNP-H5ITNP','2023-02-09','BKRS108800442518','TJS108800442518','G8-404','Go First','1',1,'d2ffc-d01fc-51e4e-14e6c','240','10:20:00','15:30:00',0,'BC',310,'5h 10m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,27445,'1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/G8.gif','INR',24437,3293,0,799,0,400,27445,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS108800442518\",\"bookingId_TJ\":\"TJS108800442518\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":66,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":27730,\"PublishedFareTxt\":\"27,730\",\"ApiResultIndex\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"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,\"ARF\":100,\"ARFT\":5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACFT\":87.5,\"ACF\":1750,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27445,\"OfferedFare\":26645,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3280553912_0DELVNSG8404VNSBOMG8350_21068988525945\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"BaseFareCal\":26767.03,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":27445,\"CostToCustomer\":27445,\"BaseFareCal\":26767.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":26767.03,\"intOfferedFare\":26645,\"intPublishFare\":27730,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"438\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d2ffc-d01fc-51e4e-14e6c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-12T18:55:24.919\",\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-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\":\"BKRS108800442518\",\"bookingId_TJ\":\"TJS108800442518\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":66,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":27730,\"ApiResultIndex\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"d2ffc-d01fc-51e4e-14e6c\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-12T18:55:24.919\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27445,\"OfferedFare\":26645,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"BaseFareCal\":26767.03,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"438\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"localFromDateTime\":\"2023-02-09 10:20\",\"localToDateTime\":\"2023-02-09 15:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS108800442518\",\"amount\":26930,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-12T19:00:05.477\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"104491\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"404\",\"eT\":\"32N\"},\"stops\":0,\"duration\":80,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-09T10:20\",\"at\":\"2023-02-09T11:40\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"104492\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"350\",\"eT\":\"32N\"},\"stops\":0,\"duration\":135,\"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\":\"2023-02-09T13:15\",\"at\":\"2023-02-09T15:30\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-VNS\":\"H5ITNP\",\"VNS-BOM\":\"H5ITNP\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"nehu\",\"lN\":\"Singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":24437,\"TAF\":3293,\"NCM\":285,\"NF\":26645,\"IGST\":72,\"TF\":27730},\"afC\":{\"TAF\":{\"MF\":400,\"OT\":799,\"MFT\":72,\"YQ\":0,\"AGST\":1222,\"MU\":800},\"NCM\":{\"OT\":300,\"TDS\":-15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"554927\",\"TPSysId\":\"554928\",\"VersionId\":[\"146904\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44409\",\"FareBreakdownid\":[\"368446\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000317430','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-12 13:25:55','2023-01-12 13:25:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000008',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(36,0,1,36973,0,555658,'TESTPNR-TESTPNR','2023-02-13','BKRS106900443130','TJS106900443130','SG-2909','SpiceJet','1',1,'35748-ec348-4bf25-156a4','463','20:25:00','22:00:00',0,'DD',95,'1h 35m',2262,0,'BLR','GOI','Non-stop',1,1,3731,'4-8976154047_0BLRGOISG2909_96507058909892',1,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',1560,2456,0,1098,0,400,3731,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2909\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-02-13T20:25\",\"LocalFromTime\":\"2023-02-13 20:25\",\"FromUTCTime\":\"2023-02-13T20:25\",\"LocalToTime\":\"2023-02-13 22:00\",\"ToUTCTime\":\"2023-02-13T22:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4016,\"PublishedFareTxt\":\"4,016\",\"ApiResultIndex\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-GOI\":{\"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,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 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\":1560,\"Tax\":2456,\"YQTax\":0,\"OtherCharges\":1098,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":86,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4016,\"PublishedFare\":3731,\"OfferedFare\":2931,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8976154047_0BLRGOISG2909_96531332619395\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2456,\"BaseFareCal\":3053.03,\"BaseFare\":1560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":86,\"MFT\":72,\"OT\":1098,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3731,\"CostToCustomer\":3731,\"BaseFareCal\":3053.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3053.03,\"intOfferedFare\":2931,\"intPublishFare\":4016,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"954\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-13T22:00\",\"SegFlightNumber\":\"SG-2909\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-13 12:00\",\"localToDateTime\":\"2023-02-16 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2909\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-02-13T20:25\",\"LocalFromTime\":\"2023-02-13 20:25\",\"FromUTCTime\":\"2023-02-13T20:25\",\"LocalToTime\":\"2023-02-13 22:00\",\"ToUTCTime\":\"2023-02-13T22:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8018,\"ApiResultIndex\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3078,\"Tax\":4940,\"YQTax\":0,\"OtherCharges\":2226,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8018,\"PublishedFare\":7448,\"OfferedFare\":5848,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4940,\"BaseFareCal\":6092.06,\"BaseFare\":3078,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":170,\"MFT\":144,\"OT\":2226,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-13T22:00\",\"SegFlightNumber\":\"SG-2909\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"955\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-16T23:50\",\"SegFlightNumber\":\"SG-2910\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-16T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"23:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"localFromDateTime\":\"2023-02-13 20:25\",\"localToDateTime\":\"2023-02-13 22:00\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS106900443130\",\"amount\":6418,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-13T15:55:25.592\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"104591\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"2909\",\"eT\":\"DH8\"},\"stops\":0,\"duration\":95,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOI\",\"name\":\"Dabolim Arpt\",\"cityCode\":\"GOI\",\"city\":\"Goa In\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-13T20:25\",\"at\":\"2023-02-13T22:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"104592\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"2910\",\"eT\":\"DH8\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"GOI\",\"name\":\"Dabolim Arpt\",\"cityCode\":\"GOI\",\"city\":\"Goa In\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-16T22:20\",\"at\":\"2023-02-16T23:50\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-GOI\":\"TESTPNR\",\"GOI-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"nehu\",\"lN\":\"Singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3078,\"TAF\":4940,\"NCM\":570,\"NF\":5848,\"IGST\":144,\"TF\":8018},\"afC\":{\"TAF\":{\"MF\":800,\"OT\":2226,\"MFT\":144,\"YQ\":0,\"AGST\":170,\"MU\":1600},\"NCM\":{\"OT\":600,\"TDS\":-30}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"555657\",\"TPSysId\":\"555658\",\"VersionId\":[\"147179\",\"147180\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44489\",\"FareBreakdownid\":[\"368500\",\"368501\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000317906','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-13 10:22:53','2023-01-13 10:22:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000009',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(37,36,1,36973,0,555658,'TESTPNR-TESTPNR','2023-02-16','BKRS106900443130','TJS106900443130','SG-2910','SpiceJet','1',1,'35748-ec348-4bf25-156a4','463','22:20:00','23:50:00',0,'DD',90,'1h 30m',2262,0,'GOI','BLR','Non-stop',1,1,3717,'4-8976154047_0GOIBLRSG2910_96507057765775',2,2,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',1518,2484,0,1128,0,400,3717,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2910\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:20\",\"ArrivalTime\":\"23:50\",\"TravelDate\":\"2023-02-16T22:20\",\"LocalFromTime\":\"2023-02-16 22:20\",\"FromUTCTime\":\"2023-02-16T22:20\",\"LocalToTime\":\"2023-02-16 23:50\",\"ToUTCTime\":\"2023-02-16T23:50\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":13,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4002,\"PublishedFareTxt\":\"4,002\",\"ApiResultIndex\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-GOI\":{\"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,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 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\":1518,\"Tax\":2484,\"YQTax\":0,\"OtherCharges\":1128,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":84,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4002,\"PublishedFare\":3717,\"OfferedFare\":2917,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8976154047_1GOIBLRSG2910_96531333633841\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2484,\"BaseFareCal\":3039.03,\"BaseFare\":1518,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":84,\"MFT\":72,\"OT\":1128,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3717,\"CostToCustomer\":3717,\"BaseFareCal\":3039.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3039.03,\"intOfferedFare\":2917,\"intPublishFare\":4002,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"955\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-16T23:50\",\"SegFlightNumber\":\"SG-2910\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-16T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"23:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGSW\",\"Price\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"FPML\",\"Price\":395,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVSW\",\"Price\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFCM\",\"Price\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"CHML\",\"Price\":495,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"strTraceId\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-13 12:00\",\"localToDateTime\":\"2023-02-16 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS106900443130\",\"amount\":6418,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-13T15:55:25.592\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"104591\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"2909\",\"eT\":\"DH8\"},\"stops\":0,\"duration\":95,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOI\",\"name\":\"Dabolim Arpt\",\"cityCode\":\"GOI\",\"city\":\"Goa In\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-02-13T20:25\",\"at\":\"2023-02-13T22:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"104592\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"2910\",\"eT\":\"DH8\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"GOI\",\"name\":\"Dabolim Arpt\",\"cityCode\":\"GOI\",\"city\":\"Goa In\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-16T22:20\",\"at\":\"2023-02-16T23:50\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-GOI\":\"TESTPNR\",\"GOI-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"nehu\",\"lN\":\"Singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3078,\"TAF\":4940,\"NCM\":570,\"NF\":5848,\"IGST\":144,\"TF\":8018},\"afC\":{\"TAF\":{\"MF\":800,\"OT\":2226,\"MFT\":144,\"YQ\":0,\"AGST\":170,\"MU\":1600},\"NCM\":{\"OT\":600,\"TDS\":-30}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"555657\",\"TPSysId\":\"555658\",\"VersionId\":[\"147179\",\"147180\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44489\",\"FareBreakdownid\":[\"368500\",\"368501\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000317906','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-13 10:22:53','2023-01-13 10:22:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000009',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(38,0,5,36973,0,558778,'XC86UG-XC86UG','2023-02-08','BKRS115500445251','TJS115500445251','SG-8701','SpiceJet','1',1,'25c83-8b1b1-36e51-082d8','463','07:20:00','00:55:00',0,'RS',1145,'17h 35m',7701,8219,'DEL','DXB','1 Stop(s)',1,1,7371.7,'4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735',1,1,1,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',5400,1853.7,0,762,0,15,7371.7,0,0,0,140.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS115500445251\",\"bookingId_TJ\":\"TJS115500445251\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-02-08T07:20\",\"LocalFromTime\":\"2023-02-08 07:20\",\"FromUTCTime\":\"2023-02-08T07:20\",\"LocalToTime\":\"2023-02-09 00:55\",\"ToUTCTime\":\"2023-02-09T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":810,\"LAYOVERDuration\":\"13h 30m\",\"FlyingMinutes\":1145,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"17h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7253.7,\"PublishedFareTxt\":\"7,254\",\"ApiResultIndex\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":5400,\"Tax\":1853.7,\"YQTax\":0,\"OtherCharges\":762,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":7253.7,\"PublishedFare\":7371.7,\"OfferedFare\":6453.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7005404189_0DELBOMSG8701BOMDXBSG13_56414759441775\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1853.7,\"BaseFareCal\":6593.73,\"BaseFare\":5400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":274,\"MFT\":2.7,\"OT\":762,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":7371.7,\"CostToCustomer\":7371.7,\"BaseFareCal\":6593.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":6593.73,\"intOfferedFare\":6453.7,\"intPublishFare\":7253.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"784\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-08T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":810,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"13h 30m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"785\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-09T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-08T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VGSW\",\"Price\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NVSW\",\"Price\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"LCNS\",\"Price\":545,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25c83-8b1b1-36e51-082d8\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-17T10:58:47.678\",\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS115500445251\",\"bookingId_TJ\":\"TJS115500445251\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-02-08T07:20\",\"LocalFromTime\":\"2023-02-08 07:20\",\"FromUTCTime\":\"2023-02-08T07:20\",\"LocalToTime\":\"2023-02-09 00:55\",\"ToUTCTime\":\"2023-02-09T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":810,\"LAYOVERDuration\":\"13h 30m\",\"FlyingMinutes\":1145,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"17h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7253.7,\"ApiResultIndex\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"25c83-8b1b1-36e51-082d8\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-17T10:58:47.678\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5400,\"Tax\":1853.7,\"YQTax\":0,\"OtherCharges\":762,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":7253.7,\"PublishedFare\":7371.7,\"OfferedFare\":6453.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1853.7,\"BaseFareCal\":6593.73,\"BaseFare\":5400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":274,\"MFT\":2.7,\"OT\":762,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"784\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-08T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":810,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"13h 30m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"785\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-09T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-08T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"localFromDateTime\":\"2023-02-08 07:20\",\"localToDateTime\":\"2023-02-09 00:55\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS115500445251\",\"amount\":6453.7,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-17T11:01:07.481\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"104990\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8701\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":135,\"cT\":810,\"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\":\"2023-02-08T07:20\",\"at\":\"2023-02-08T09:35\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"104991\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"13\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-08T23:05\",\"at\":\"2023-02-09T00:55\",\"iand\":true,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"XC86UG\",\"BOM-DXB\":\"XC86UG\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1985-01-25\",\"pNum\":\"HVHFU558768GHF\",\"eD\":\"2025-01-23\",\"pNat\":\"IN\",\"pid\":\"2018-01-23\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":2.7,\"TAF\":1853.7,\"BF\":5400,\"TF\":7253.7,\"NF\":6453.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":800,\"OT\":762,\"MFT\":2.7,\"AGST\":274,\"YQ\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"558777\",\"TPSysId\":\"558778\",\"VersionId\":[\"148799\"],\"CustomerSysId\":\"317316\",\"TrxId\":\"44797\",\"FareBreakdownid\":[\"368728\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000318699','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-17 05:28:53','2023-01-17 05:28:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000010',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(39,0,6,36973,0,573671,'V4EJ2L-V4EJ2L','2023-02-23','BKRS106800455684','TJS106800455684','SG-8103','SpiceJet','1',1,'b271a-2dd20-1f1dd-4a4d4','463','18:50:00','21:30:00',0,'SS',160,'2h 40m',6000,7701,'DEL','MAA','Non-stop',1,1,2557,'4-8467617033_1DELMAASG8103_2221196429157',1,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',999,1843,0,518,0,400,2557,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8103\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-02-23T18:50\",\"LocalFromTime\":\"2023-02-23 18:50\",\"FromUTCTime\":\"2023-02-23T18:50\",\"LocalToTime\":\"2023-02-23 21:30\",\"ToUTCTime\":\"2023-02-23T21:30\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Thu, 23 Feb\",\"ArrivalDateTxt\":\"Thu, 23 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2842,\"PublishedFareTxt\":\"2,842\",\"ApiResultIndex\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"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,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"MAA-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\":{\"ARFT\":150,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1843,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":53,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2842,\"PublishedFare\":2557,\"OfferedFare\":1757,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8467617033_0DELMAASG8103_2258498300862\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1843,\"BaseFareCal\":1879.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":53,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2557,\"CostToCustomer\":2557,\"BaseFareCal\":1879.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1879.03,\"intOfferedFare\":1757,\"intPublishFare\":2842,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"483\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-23T21:30\",\"SegFlightNumber\":\"SG-8103\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-23T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"MAA\",\"DEL\"],\"strDestinationAirportCode\":[\"DEL\",\"MAA\"],\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8103\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-02-23T18:50\",\"LocalFromTime\":\"2023-02-23 18:50\",\"FromUTCTime\":\"2023-02-23T18:50\",\"LocalToTime\":\"2023-02-23 21:30\",\"ToUTCTime\":\"2023-02-23T21:30\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Thu, 23 Feb\",\"ArrivalDateTxt\":\"Thu, 23 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5648,\"ApiResultIndex\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1998,\"Tax\":3650,\"YQTax\":0,\"OtherCharges\":999,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":107,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":5648,\"PublishedFare\":5078,\"OfferedFare\":3478,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3650,\"BaseFareCal\":3722.06,\"BaseFare\":1998,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":107,\"MFT\":144,\"OT\":999,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"483\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-23T21:30\",\"SegFlightNumber\":\"SG-8103\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-23T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"484\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-16T12:40\",\"SegFlightNumber\":\"SG-8208\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-16T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"localFromDateTime\":\"2023-02-23 18:50\",\"localToDateTime\":\"2023-02-23 21:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS106800455684\",\"amount\":4048,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+917011874684\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-30T16:13:45.653\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"107203\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8103\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-23T18:50\",\"at\":\"2023-02-23T21:30\",\"iand\":false,\"isRs\":true,\"sN\":0}]},{\"sI\":[{\"id\":\"107204\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8208\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"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 3\"},\"dt\":\"2023-02-16T09:20\",\"at\":\"2023-02-16T12:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-MAA\":\"V4EJ2L\",\"MAA-DEL\":\"V4EJ2L\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":5648,\"BF\":1998,\"NCM\":570,\"NF\":3478,\"TAF\":3650,\"IGST\":144},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"MFT\":144,\"OT\":999,\"MU\":1600,\"YQ\":0,\"MF\":800,\"AGST\":107}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"573670\",\"TPSysId\":\"573671\",\"VersionId\":[\"155582\",\"155583\"],\"CustomerSysId\":\"324821\",\"TrxId\":\"46327\",\"FareBreakdownid\":[\"369855\",\"369856\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000324067','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-30 10:41:06','2023-01-30 10:41:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000011',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(40,39,6,36973,0,573671,'V4EJ2L-V4EJ2L','2023-02-16','BKRS106800455684','TJS106800455684','SG-8208','SpiceJet','1',1,'b271a-2dd20-1f1dd-4a4d4','463','09:20:00','12:40:00',0,'SS',200,'3h 20m',7701,6000,'MAA','DEL','Non-stop',1,1,2521,'4-8467617033_0MAADELSG8208_2221196689701',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',999,1807,0,481,0,400,2521,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8208\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-02-16T09:20\",\"LocalFromTime\":\"2023-02-16 09:20\",\"FromUTCTime\":\"2023-02-16T09:20\",\"LocalToTime\":\"2023-02-16 12:40\",\"ToUTCTime\":\"2023-02-16T12:40\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2806,\"PublishedFareTxt\":\"2,806\",\"ApiResultIndex\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"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,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"MAA-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\":{\"ARFT\":150,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1807,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2806,\"PublishedFare\":2521,\"OfferedFare\":1721,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8467617033_1MAADELSG8208_2258506799281\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1807,\"BaseFareCal\":1843.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":481,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2521,\"CostToCustomer\":2521,\"BaseFareCal\":1843.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1843.03,\"intOfferedFare\":1721,\"intPublishFare\":2806,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"484\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-16T12:40\",\"SegFlightNumber\":\"SG-8208\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-16T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"strTraceId\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"MAA\",\"DEL\"],\"strDestinationAirportCode\":[\"DEL\",\"MAA\"],\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS106800455684\",\"amount\":4048,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+917011874684\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-30T16:13:45.653\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"107203\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8103\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-02-23T18:50\",\"at\":\"2023-02-23T21:30\",\"iand\":false,\"isRs\":true,\"sN\":0}]},{\"sI\":[{\"id\":\"107204\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8208\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"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 3\"},\"dt\":\"2023-02-16T09:20\",\"at\":\"2023-02-16T12:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-MAA\":\"V4EJ2L\",\"MAA-DEL\":\"V4EJ2L\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":5648,\"BF\":1998,\"NCM\":570,\"NF\":3478,\"TAF\":3650,\"IGST\":144},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"MFT\":144,\"OT\":999,\"MU\":1600,\"YQ\":0,\"MF\":800,\"AGST\":107}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"573670\",\"TPSysId\":\"573671\",\"VersionId\":[\"155582\",\"155583\"],\"CustomerSysId\":\"324821\",\"TrxId\":\"46327\",\"FareBreakdownid\":[\"369855\",\"369856\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000324067','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-30 10:41:06','2023-01-30 10:41:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000011',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(41,0,4,36973,0,0,NULL,'2023-02-01','BKRS103300455797','TJS103300455797','SG-8263','SpiceJet','1',1,'5530d-15b95-a2a7b-dcd33','463','05:45:00','07:45:00',0,'RS',120,'2h 0m',7701,14323,'DEL','CCU','Non-stop',1,1,5180,'4-0884717675_0DELCCUSG8263_2229359634731',1,1,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,1963,0,518,0,400,5180,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS103300455797\",\"bookingId_TJ\":\"TJS103300455797\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"07:45\",\"TravelDate\":\"2023-02-01T05:45\",\"LocalFromTime\":\"2023-02-01 05:45\",\"FromUTCTime\":\"2023-02-01T05:45\",\"LocalToTime\":\"2023-02-01 07:45\",\"ToUTCTime\":\"2023-02-01T07:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 01 Feb\",\"ArrivalDateTxt\":\"Wed, 01 Feb\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"PublishedFareTxt\":\"5,347\",\"ApiResultIndex\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"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-96 hrs Rs 3,500 __nls__ Before 96 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\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0884717675_0DELCCUSG8263_2408232818501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5180,\"CostToCustomer\":5180,\"BaseFareCal\":4402.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4402.03,\"intOfferedFare\":4262,\"intPublishFare\":5347,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"643\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-01T07:45\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-01T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"07:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T17:20:47.159\",\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-01 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\":\"BKRS103300455797\",\"bookingId_TJ\":\"TJS103300455797\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"07:45\",\"TravelDate\":\"2023-02-01T05:45\",\"LocalFromTime\":\"2023-02-01 05:45\",\"FromUTCTime\":\"2023-02-01T05:45\",\"LocalToTime\":\"2023-02-01 07:45\",\"ToUTCTime\":\"2023-02-01T07:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 01 Feb\",\"ArrivalDateTxt\":\"Wed, 01 Feb\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"ApiResultIndex\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T17:20:47.159\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"643\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-01T07:45\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-01T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"07:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"localFromDateTime\":\"2023-02-01 05:45\",\"localToDateTime\":\"2023-02-01 07:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','106.207.51.71','2023-01-30 11:52:30','2023-01-30 11:52:30',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),(42,0,4,36973,0,0,NULL,'2023-02-10','BKRS100300456406','TJS100300456406','SG-8253','SpiceJet','1',1,'2986c-5fc03-1f8d4-31515','463','19:55:00','21:40:00',0,'RS',105,'1h 45m',7701,14323,'DEL','CCU','Non-stop',1,1,5180,'15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641',1,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,1963,0,518,0,400,5180,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8253\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2023-02-10T19:55\",\"LocalFromTime\":\"2023-02-10 19:55\",\"FromUTCTime\":\"2023-02-10T19:55\",\"LocalToTime\":\"2023-02-10 21:40\",\"ToUTCTime\":\"2023-02-10T21:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"PublishedFareTxt\":\"5,347\",\"ApiResultIndex\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_0DELCCUSG8253_28141905351600\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5180,\"CostToCustomer\":5180,\"BaseFareCal\":4402.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4402.03,\"intOfferedFare\":4262,\"intPublishFare\":5347,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"60\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-10T21:40\",\"SegFlightNumber\":\"SG-8253\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8253\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2023-02-10T19:55\",\"LocalFromTime\":\"2023-02-10 19:55\",\"FromUTCTime\":\"2023-02-10T19:55\",\"LocalToTime\":\"2023-02-10 21:40\",\"ToUTCTime\":\"2023-02-10T21:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":22351,\"ApiResultIndex\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13193,\"Tax\":9158,\"YQTax\":0,\"OtherCharges\":3216,\"Discount\":0,\"ServiceFee\":1600,\"ManagementFeeTax\":288,\"AirlineGSTComponent\":684,\"CarrierMiscFee\":170,\"MUFee\":3200,\"intPublishedFare\":22351,\"PublishedFare\":21565,\"OfferedFare\":18011,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":3011.88,\"GSTOnMarkUp\":542.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":300,\"AddiTaxOnMarkup\":54,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":9158,\"BaseFareCal\":18553.12,\"BaseFare\":13193,\"CommissionEarned\":1140,\"TDS\":-60,\"MF\":1600,\"YQ\":0,\"AGST\":684,\"MFT\":288,\"OT\":3216,\"MU\":3200,\"YR\":170,\"AddiTaxOnMarkup\":54,\"AddiMarkup\":300,\"FixedMarkUp\":3011.88,\"GSTOnMarkUp\":542.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"60\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-10T21:40\",\"SegFlightNumber\":\"SG-8253\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"776\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-11T08:45\",\"SegFlightNumber\":\"SG-8130\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-11T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":210,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-11T14:50\",\"SegFlightNumber\":\"SG-8722\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-11T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"282\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-12T05:35\",\"SegFlightNumber\":\"AI-894\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-12T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"05:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"56\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T22:15\",\"SegFlightNumber\":\"SG-535\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"localFromDateTime\":\"2023-02-10 19:55\",\"localToDateTime\":\"2023-02-10 21:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-31 09:25:27','2023-01-31 09:25:27',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),(43,42,4,36973,0,0,NULL,'2023-02-11','BKRS100300456406','TJS100300456406','SG-8130','SpiceJet','1',1,'2986c-5fc03-1f8d4-31515','463','06:20:00','14:50:00',0,'RS',510,'8h 30m',14323,0,'CCU','GOI','1 Stop(s)',1,1,6169,'15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3780,2556,0,1088,0,400,6169,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8130\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-02-11T06:20\",\"LocalFromTime\":\"2023-02-11 06:20\",\"FromUTCTime\":\"2023-02-11T06:20\",\"LocalToTime\":\"2023-02-11 14:50\",\"ToUTCTime\":\"2023-02-11T14:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":510,\"DepartureDateTxt\":\"Sat, 11 Feb\",\"ArrivalDateTxt\":\"Sat, 11 Feb\",\"FlightDuration\":\"8h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6336,\"PublishedFareTxt\":\"6,336\",\"ApiResultIndex\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3780,\"Tax\":2556,\"YQTax\":0,\"OtherCharges\":1088,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":6336,\"PublishedFare\":6169,\"OfferedFare\":5251,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_1CCUDELSG8130DELGOISG8722_28141907311840\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2556,\"BaseFareCal\":5391.03,\"BaseFare\":3780,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":196,\"MFT\":72,\"OT\":1088,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":6169,\"CostToCustomer\":6169,\"BaseFareCal\":5391.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":5391.03,\"intOfferedFare\":5251,\"intPublishFare\":6336,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"776\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-11T08:45\",\"SegFlightNumber\":\"SG-8130\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-11T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":210,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-11T14:50\",\"SegFlightNumber\":\"SG-8722\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-11T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCNS\",\"Price\":545,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-31 09:25:27','2023-01-31 09:25:27',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),(44,43,4,36973,0,0,NULL,'2023-02-12','BKRS100300456406','TJS100300456406','AI-894','Air India','',1,'2986c-5fc03-1f8d4-31515','42','04:20:00','05:35:00',0,'G',75,'1h 15m',0,2262,'GOI','BLR','Non-stop',1,1,5969,'15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/AI.gif','INR',3530,2606,0,979,0,400,5969,0,0,0,140.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"AI-894\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:20\",\"ArrivalTime\":\"05:35\",\"TravelDate\":\"2023-02-12T04:20\",\"LocalFromTime\":\"2023-02-12 04:20\",\"FromUTCTime\":\"2023-02-12T04:20\",\"LocalToTime\":\"2023-02-12 05:35\",\"ToUTCTime\":\"2023-02-12T05:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 12 Feb\",\"ArrivalDateTxt\":\"Sun, 12 Feb\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6136,\"PublishedFareTxt\":\"6,136\",\"ApiResultIndex\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3530,\"Tax\":2606,\"YQTax\":0,\"OtherCharges\":979,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":170,\"MUFee\":800,\"intPublishedFare\":6136,\"PublishedFare\":5969,\"OfferedFare\":5051,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_2GOIBLRAI894_28141912350073\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2606,\"BaseFareCal\":5191.03,\"BaseFare\":3530,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":979,\"MU\":800,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5969,\"CostToCustomer\":5969,\"BaseFareCal\":5191.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":5191.03,\"intOfferedFare\":5051,\"intPublishFare\":6136,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"282\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-12T05:35\",\"SegFlightNumber\":\"AI-894\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-12T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"05:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-31 09:25:27','2023-01-31 09:25:27',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),(45,44,4,36973,0,0,NULL,'2023-02-13','BKRS100300456406','TJS100300456406','SG-535','SpiceJet','1',1,'2986c-5fc03-1f8d4-31515','463','19:30:00','22:15:00',0,'SS',165,'2h 45m',2262,7701,'BLR','DEL','Non-stop',1,1,4247,'15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',2499,2033,0,631,0,400,4247,0,0,0,122.03,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-535\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-02-13T19:30\",\"LocalFromTime\":\"2023-02-13 19:30\",\"FromUTCTime\":\"2023-02-13T19:30\",\"LocalToTime\":\"2023-02-13 22:15\",\"ToUTCTime\":\"2023-02-13T22:15\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4532,\"PublishedFareTxt\":\"4,532\",\"ApiResultIndex\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":2499,\"Tax\":2033,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4532,\"PublishedFare\":4247,\"OfferedFare\":3447,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_3BLRDELSG535_28141917339970\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2033,\"BaseFareCal\":3569.03,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4247,\"CostToCustomer\":4247,\"BaseFareCal\":3569.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3569.03,\"intOfferedFare\":3447,\"intPublishFare\":4532,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"56\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T22:15\",\"SegFlightNumber\":\"SG-535\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-01-31 09:25:27','2023-01-31 09:25:27',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),(46,0,1,36973,0,575041,NULL,'2023-02-17','BKRS105400456468','TJS105400456468','I5-611','AirAsia India','1',1,'77f60-2dfe9-eebe9-34c1b','75','08:25:00','11:15:00',0,'EC',170,'2h 50m',14323,2262,'BLR','CCU','Non-stop',1,1,4490,'22-4131912441_0BLRCCUI5611_616471067287',1,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2657,0,1287,0,400,4490,0,0,0,140.03,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-611\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2023-02-17T08:25\",\"LocalFromTime\":\"2023-02-17 08:25\",\"FromUTCTime\":\"2023-02-17T08:25\",\"LocalToTime\":\"2023-02-17 11:15\",\"ToUTCTime\":\"2023-02-17T11:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Fri, 17 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4657,\"PublishedFareTxt\":\"4,657\",\"ApiResultIndex\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 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\":2000,\"Tax\":2657,\"YQTax\":0,\"OtherCharges\":1287,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":98,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4657,\"PublishedFare\":4490,\"OfferedFare\":3572,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-4131912441_0BLRCCUI5611_658391183117\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":9057,\"oldFare\":8959,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2657,\"BaseFareCal\":3712.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":98,\"MFT\":72,\"OT\":1287,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4490,\"CostToCustomer\":4490,\"BaseFareCal\":3712.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3712.03,\"intOfferedFare\":3572,\"intPublishFare\":4657,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"996\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-17T11:15\",\"SegFlightNumber\":\"I5-611\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-17T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"FTCB\",\"Price\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"MOCB\",\"Price\":500,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"GNCB\",\"Price\":500,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"CCU\",\"BLR\"],\"strDestinationAirportCode\":[\"BLR\",\"CCU\"],\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-611\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2023-02-17T08:25\",\"LocalFromTime\":\"2023-02-17 08:25\",\"FromUTCTime\":\"2023-02-17T08:25\",\"LocalToTime\":\"2023-02-17 11:15\",\"ToUTCTime\":\"2023-02-17T11:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Fri, 17 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9057,\"ApiResultIndex\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":5057,\"YQTax\":0,\"OtherCharges\":2311,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":202,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":9057,\"PublishedFare\":8723,\"OfferedFare\":6887,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":5057,\"BaseFareCal\":7167.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":202,\"MFT\":144,\"OT\":2311,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"996\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-17T11:15\",\"SegFlightNumber\":\"I5-611\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-17T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"997\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T17:20\",\"SegFlightNumber\":\"I5-588\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-07T14:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"localFromDateTime\":\"2023-02-17 08:25\",\"localToDateTime\":\"2023-02-17 11:15\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','null',NULL,1,0,'11000000324636','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-31 10:16:33','2023-01-31 10:16:33',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,46,1,36973,0,575041,NULL,'2023-02-07','BKRS105400456468','TJS105400456468','I5-588','AirAsia India','1',1,'77f60-2dfe9-eebe9-34c1b','75','14:45:00','17:20:00',0,'EC',155,'2h 35m',2262,14323,'CCU','BLR','Non-stop',1,1,4233,'22-4131912441_0CCUBLRI5588_616471342254',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/I5.gif','INR',2000,2400,0,1024,0,400,4233,0,0,0,140.03,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-588\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"14:45\",\"ArrivalTime\":\"17:20\",\"TravelDate\":\"2023-02-07T14:45\",\"LocalFromTime\":\"2023-02-07 14:45\",\"FromUTCTime\":\"2023-02-07T14:45\",\"LocalToTime\":\"2023-02-07 17:20\",\"ToUTCTime\":\"2023-02-07T17:20\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4400,\"PublishedFareTxt\":\"4,400\",\"ApiResultIndex\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 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\":2000,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4400,\"PublishedFare\":4233,\"OfferedFare\":3315,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-4131912441_1CCUBLRI5588_658445052580\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2400,\"BaseFareCal\":3455.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4233,\"CostToCustomer\":4233,\"BaseFareCal\":3455.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3455.03,\"intOfferedFare\":3315,\"intPublishFare\":4400,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"997\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T17:20\",\"SegFlightNumber\":\"I5-588\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-07T14:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"FTCB\",\"Price\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"strTraceId\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"CCU\",\"BLR\"],\"strDestinationAirportCode\":[\"BLR\",\"CCU\"],\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','null',NULL,1,0,'11000000324636','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-31 10:16:33','2023-01-31 10:16:33',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),(48,0,1,36973,0,575129,'ABB7YT-ABB7YT','2023-02-21','BKRS102900456544','TJS102900456544','SG-8152','SpiceJet','1',1,'f9469-908d4-21bb2-6acf9','463','07:10:00','09:30:00',0,'XA',140,'2h 20m',7701,18676,'BOM','DEL','Non-stop',1,1,4821,'4-0227200140_0BOMDELSG8152_1743416278236',1,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3100,2006,0,572,0,400,4821,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-02-21T07:10\",\"LocalFromTime\":\"2023-02-21 07:10\",\"FromUTCTime\":\"2023-02-21T07:10\",\"LocalToTime\":\"2023-02-21 09:30\",\"ToUTCTime\":\"2023-02-21T09:30\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5106,\"PublishedFareTxt\":\"5,106\",\"ApiResultIndex\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":2006,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":162,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5106,\"PublishedFare\":4821,\"OfferedFare\":4021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0227200140_0BOMDELSG8152_1758852378233\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2006,\"BaseFareCal\":4143.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":162,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4821,\"CostToCustomer\":4821,\"BaseFareCal\":4143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4143.03,\"intOfferedFare\":4021,\"intPublishFare\":5106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-21T09:30\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-21T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"BOM\"],\"strDestinationAirportCode\":[\"BOM\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-02-21T07:10\",\"LocalFromTime\":\"2023-02-21 07:10\",\"FromUTCTime\":\"2023-02-21T07:10\",\"LocalToTime\":\"2023-02-21 09:30\",\"ToUTCTime\":\"2023-02-21T09:30\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10155,\"ApiResultIndex\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6200,\"Tax\":3955,\"YQTax\":0,\"OtherCharges\":1090,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":321,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":10155,\"PublishedFare\":9585,\"OfferedFare\":7985,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3955,\"BaseFareCal\":8229.06,\"BaseFare\":6200,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":321,\"MFT\":144,\"OT\":1090,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-21T09:30\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-21T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"955\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T22:05\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"localFromDateTime\":\"2023-02-21 07:10\",\"localToDateTime\":\"2023-02-21 09:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102900456544\",\"amount\":8555,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-31T16:24:37.425\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"107450\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8152\",\"eT\":\"737\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"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\":\"2023-02-21T07:10\",\"at\":\"2023-02-21T09:30\",\"iand\":false,\"isRs\":true,\"sN\":0}]},{\"sI\":[{\"id\":\"107451\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8169\",\"eT\":\"737\"},\"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\":\"2023-02-09T20:00\",\"at\":\"2023-02-09T22:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"ABB7YT\",\"DEL-BOM\":\"ABB7YT\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":144,\"NCM\":570,\"TAF\":3955,\"NF\":7985,\"BF\":6200,\"TF\":10155},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"MFT\":144,\"OT\":1090,\"AGST\":321,\"YQ\":0,\"MF\":800,\"MU\":1600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"575128\",\"TPSysId\":\"575129\",\"VersionId\":[\"156218\",\"156219\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"46473\",\"FareBreakdownid\":[\"369946\",\"369947\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000324676','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-31 10:51:39','2023-01-31 10:51:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000012',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(49,48,1,36973,0,575129,'ABB7YT-ABB7YT','2023-02-09','BKRS102900456544','TJS102900456544','SG-8169','SpiceJet','1',1,'f9469-908d4-21bb2-6acf9','463','20:00:00','22:05:00',0,'XA',125,'2h 5m',18676,7701,'DEL','BOM','Non-stop',1,1,4764,'4-0227200140_2DELBOMSG8169_1743416531944',2,3,0,'https://uamongus.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3100,1949,0,518,0,400,4764,0,0,0,122.03,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8169\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-09T20:00\",\"LocalFromTime\":\"2023-02-09 20:00\",\"FromUTCTime\":\"2023-02-09T20:00\",\"LocalToTime\":\"2023-02-09 22:05\",\"ToUTCTime\":\"2023-02-09T22:05\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5049,\"PublishedFareTxt\":\"5,049\",\"ApiResultIndex\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":1949,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5049,\"PublishedFare\":4764,\"OfferedFare\":3964,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0227200140_1DELBOMSG8169_1758853999580\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1949,\"BaseFareCal\":4086.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4764,\"CostToCustomer\":4764,\"BaseFareCal\":4086.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4086.03,\"intOfferedFare\":3964,\"intPublishFare\":5049,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"955\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T22:05\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"strTraceId\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"BOM\"],\"strDestinationAirportCode\":[\"BOM\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS102900456544\",\"amount\":8555,\"markup\":1600,\"deliveryInfo\":{\"emails\":[\"uamongus1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-31T16:24:37.425\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"107450\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8152\",\"eT\":\"737\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"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\":\"2023-02-21T07:10\",\"at\":\"2023-02-21T09:30\",\"iand\":false,\"isRs\":true,\"sN\":0}]},{\"sI\":[{\"id\":\"107451\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8169\",\"eT\":\"737\"},\"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\":\"2023-02-09T20:00\",\"at\":\"2023-02-09T22:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"ABB7YT\",\"DEL-BOM\":\"ABB7YT\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":144,\"NCM\":570,\"TAF\":3955,\"NF\":7985,\"BF\":6200,\"TF\":10155},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"MFT\":144,\"OT\":1090,\"AGST\":321,\"YQ\":0,\"MF\":800,\"MU\":1600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"575128\",\"TPSysId\":\"575129\",\"VersionId\":[\"156218\",\"156219\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"46473\",\"FareBreakdownid\":[\"369946\",\"369947\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000324676','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-01-31 10:51:39','2023-01-31 10:51:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-01-000012',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(50,0,1,59951,0,0,NULL,'2023-05-11','BKRS105500547534','TJS105500547534','SG-161','SpiceJet','1',1,'e5eec-82301-a5136-576b7','463','14:30:00','00:40:00',0,'RS',610,'10h 10m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,6559,'4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5450,1394,0,648,0,400,6559,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105500547534\",\"bookingId_TJ\":\"TJS105500547534\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-05-11T14:30\",\"LocalFromTime\":\"2023-05-11 14:30\",\"FromUTCTime\":\"2023-05-11T14:30\",\"LocalToTime\":\"2023-05-12 00:40\",\"ToUTCTime\":\"2023-05-12T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8673120993_0IXJDELSG161DELBLRSG8143_97470974640024\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"507\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-11T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-11T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"508\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-11T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e5eec-82301-a5136-576b7\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-28T15:45:50.016\",\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-11 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105500547534\",\"bookingId_TJ\":\"TJS105500547534\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-05-11T14:30\",\"LocalFromTime\":\"2023-05-11 14:30\",\"FromUTCTime\":\"2023-05-11T14:30\",\"LocalToTime\":\"2023-05-12 00:40\",\"ToUTCTime\":\"2023-05-12T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"ApiResultIndex\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"e5eec-82301-a5136-576b7\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-28T15:45:50.016\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"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\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"507\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-11T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-11T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"508\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-11T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"localFromDateTime\":\"2023-05-11 14:30\",\"localToDateTime\":\"2023-05-12 00:40\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,2,0,'11000000361822','','TRANSACTION IS CANCELLED BY USER ON PAYMENT PAGE.',NULL,NULL,'0','180.151.10.154','2023-04-28 10:15:03','2023-04-28 10:15:03',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,1,59951,0,0,NULL,'2023-05-04','BKRS103500547672','TJS103500547672','UK-612','Vistara','',1,'7fd83-07be1-28c2e-f3793','539','13:55:00','14:50:00',0,'E',2935,'48h 55m',13021,974,'IXJ','ATQ','2 Stop(s)',1,1,21316,'NA',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/UK.gif','INR',19085,2516,0,743,0,400,21316,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS103500547672\",\"bookingId_TJ\":\"TJS103500547672\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-05-04T13:55\",\"LocalFromTime\":\"2023-05-04 13:55\",\"FromUTCTime\":\"2023-05-04T13:55\",\"LocalToTime\":\"2023-05-06 14:50\",\"ToUTCTime\":\"2023-05-06T14:50\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":2720,\"LAYOVERDuration\":\"45h 20m\",\"FlyingMinutes\":2935,\"DepartureDateTxt\":\"Thu, 04 May\",\"ArrivalDateTxt\":\"Sat, 06 May\",\"FlightDuration\":\"48h 55m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":21601,\"PublishedFareTxt\":\"21,601\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARF\":3920,\"ARFT\":196,\"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,\"CCF\":50,\"ACF\":3920,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19085,\"Tax\":2516,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":971,\"CarrierMiscFee\":330,\"MUFee\":0,\"intPublishedFare\":21601,\"PublishedFare\":21316,\"OfferedFare\":21316,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7316990278_0IXJSXRUK612SXRDELUK644DELATQUK691_100548605279691\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2516,\"BaseFareCal\":21316,\"BaseFare\":19085,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":971,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":330,\"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 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":21316,\"CostToCustomer\":21316,\"BaseFareCal\":21316,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":21316,\"intOfferedFare\":21316,\"intPublishFare\":21601,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"332\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-05-04T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-04T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":1380,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"333\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-05T15:20\",\"SegFlightNumber\":\"UK-644\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-05-05T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":1340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"22h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-05-06T14:50\",\"SegFlightNumber\":\"UK-691\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-06T13:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:40\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7fd83-07be1-28c2e-f3793\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-28T16:37:07.645\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103500547672\",\"bookingId_TJ\":\"TJS103500547672\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-05-04T13:55\",\"LocalFromTime\":\"2023-05-04 13:55\",\"FromUTCTime\":\"2023-05-04T13:55\",\"LocalToTime\":\"2023-05-06 14:50\",\"ToUTCTime\":\"2023-05-06T14:50\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":2720,\"LAYOVERDuration\":\"45h 20m\",\"FlyingMinutes\":2935,\"DepartureDateTxt\":\"Thu, 04 May\",\"ArrivalDateTxt\":\"Sat, 06 May\",\"FlightDuration\":\"48h 55m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":21601,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"7fd83-07be1-28c2e-f3793\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-28T16:37:07.645\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19085,\"Tax\":2516,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":971,\"CarrierMiscFee\":330,\"MUFee\":0,\"intPublishedFare\":21601,\"PublishedFare\":21316,\"OfferedFare\":21316,\"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\":\"1\",\"TaxIN\":2516,\"BaseFareCal\":21316,\"BaseFare\":19085,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":971,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":330,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"332\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-05-04T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-04T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":1380,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"333\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-05T15:20\",\"SegFlightNumber\":\"UK-644\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-05-05T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":1340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"22h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-05-06T14:50\",\"SegFlightNumber\":\"UK-691\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-06T13:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:40\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-05-04 13:55\",\"localToDateTime\":\"2023-05-06 14:50\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-04-28 11:10:58','2023-04-28 11:10:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'618900',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(52,0,1,59951,0,0,NULL,'2023-05-10','BKRS100400547693','TJS100400547693','AI-542','Air India','',1,'ab854-94b2b-1e18e-38e5c','42','15:00:00','17:00:00',0,'G',120,'2h 0m',2262,7701,'BLR','DEL','Non-stop',1,1,3187,'19-18-11-1067366758_0BLRDELAI542_101184451193233',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',2700,772,0,300,0,400,3187,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100400547693\",\"bookingId_TJ\":\"TJS100400547693\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-05-10T15:00\",\"LocalFromTime\":\"2023-05-10 15:00\",\"FromUTCTime\":\"2023-05-10T15:00\",\"LocalToTime\":\"2023-05-10 17:00\",\"ToUTCTime\":\"2023-05-10T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 10 May\",\"ArrivalDateTxt\":\"Wed, 10 May\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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,\"CCF\":50,\"ACF\":3000,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-1067366758_0BLRDELAI542_101221511359433\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"46\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-10T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-10T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ab854-94b2b-1e18e-38e5c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:48:20.546\",\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-10 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\":\"BKRS100400547693\",\"bookingId_TJ\":\"TJS100400547693\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-05-10T15:00\",\"LocalFromTime\":\"2023-05-10 15:00\",\"FromUTCTime\":\"2023-05-10T15:00\",\"LocalToTime\":\"2023-05-10 17:00\",\"ToUTCTime\":\"2023-05-10T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 10 May\",\"ArrivalDateTxt\":\"Wed, 10 May\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"ApiResultIndex\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"ab854-94b2b-1e18e-38e5c\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:48:20.546\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"46\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-10T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-10T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"localFromDateTime\":\"2023-05-10 15:00\",\"localToDateTime\":\"2023-05-10 17:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,2,0,'11000000361850','','TRANSACTION IS CANCELLED BY USER ON PAYMENT PAGE.',NULL,NULL,'0','180.151.10.154','2023-04-28 11:18:08','2023-04-28 11:18:08',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),(54,0,1,59951,0,0,NULL,'2023-05-17','BKRS100800547700','TJS100800547700','QP-1105','AkasaAir','1',0,'d254f-b09b8-fcb1a-1316b','821','13:50:00','21:30:00',0,'CP',460,'7h 40m',18676,6000,'BOM','MAA','1 Stop(s)',1,1,3630,'NA',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/noimage.png','INR',2532,1383,0,779,0,400,3630,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100800547700\",\"bookingId_TJ\":\"TJS100800547700\",\"FlightNumber\":\"QP-1105\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-05-17T13:50\",\"LocalFromTime\":\"2023-05-17 13:50\",\"FromUTCTime\":\"2023-05-17T13:50\",\"LocalToTime\":\"2023-05-17 21:30\",\"ToUTCTime\":\"2023-05-17T21:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":300,\"LAYOVERDuration\":\"5h 0m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Wed, 17 May\",\"ArrivalDateTxt\":\"Wed, 17 May\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":50,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3915,\"PublishedFareTxt\":\"3,915\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-MAA\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"CRF\":50}}},\"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,\"CCF\":50,\"ACF\":3500,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2532,\"Tax\":1383,\"YQTax\":0,\"OtherCharges\":779,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3915,\"PublishedFare\":3630,\"OfferedFare\":3630,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-2786994719_0BOMBLRQP1105BLRMAAQP1214_101557000947370\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":3915,\"oldFare\":3304,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1383,\"BaseFareCal\":3630,\"BaseFare\":2532,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":132,\"MFT\":72,\"OT\":779,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3630,\"CostToCustomer\":3630,\"BaseFareCal\":3630,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3630,\"intOfferedFare\":3630,\"intPublishFare\":3915,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"673\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-17T15:30\",\"SegFlightNumber\":\"QP-1105\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-17T13:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":300,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"13:50\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"5h 0m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"674\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-05-17T21:30\",\"SegFlightNumber\":\"QP-1214\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-17T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d254f-b09b8-fcb1a-1316b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:53:55.995\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100800547700\",\"bookingId_TJ\":\"TJS100800547700\",\"FlightNumber\":\"QP-1105\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-05-17T13:50\",\"LocalFromTime\":\"2023-05-17 13:50\",\"FromUTCTime\":\"2023-05-17T13:50\",\"LocalToTime\":\"2023-05-17 21:30\",\"ToUTCTime\":\"2023-05-17T21:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":300,\"LAYOVERDuration\":\"5h 0m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Wed, 17 May\",\"ArrivalDateTxt\":\"Wed, 17 May\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":50,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3915,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"d254f-b09b8-fcb1a-1316b\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:53:55.995\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2532,\"Tax\":1383,\"YQTax\":0,\"OtherCharges\":779,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3915,\"PublishedFare\":3630,\"OfferedFare\":3630,\"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\":\"1\",\"TaxIN\":1383,\"BaseFareCal\":3630,\"BaseFare\":2532,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":132,\"MFT\":72,\"OT\":779,\"MU\":0,\"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\":\"673\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-17T15:30\",\"SegFlightNumber\":\"QP-1105\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-17T13:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":300,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"13:50\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"5h 0m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"674\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-05-17T21:30\",\"SegFlightNumber\":\"QP-1214\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-17T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-05-17 13:50\",\"localToDateTime\":\"2023-05-17 21:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-04-28 11:23:01','2023-04-28 11:23:01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'236305',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(56,0,1,59951,0,0,NULL,'2023-06-07','BKRS102300548712','TJS102300548712','AI-821','Air India','',1,'42c74-5c72f-c66bb-88231','42','12:50:00','20:15:00',0,'V',445,'7h 25m',13021,2262,'IXJ','BLR','2 Stop(s)',1,1,11976,'15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',10250,2011,0,743,0,400,11976,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS102300548712\",\"bookingId_TJ\":\"TJS102300548712\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 20:15\",\"ToUTCTime\":\"2023-06-07T20:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":445,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"PublishedFareTxt\":\"12,261\",\"ApiResultIndex\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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\":{\"CCFT\":9,\"ACFT\":150,\"ACF\":3000,\"CCF\":50}}},\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-3496138330_0IXJSXRAI821SXRDELAI821DELBLRAI807_99863117113258\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11976,\"CostToCustomer\":11976,\"BaseFareCal\":11976,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11976,\"intOfferedFare\":11976,\"intPublishFare\":12261,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"932\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"933\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T20:15\",\"SegFlightNumber\":\"AI-807\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"42c74-5c72f-c66bb-88231\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-01T10:32:55.165\",\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102300548712\",\"bookingId_TJ\":\"TJS102300548712\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 20:15\",\"ToUTCTime\":\"2023-06-07T20:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":445,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"ApiResultIndex\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"42c74-5c72f-c66bb-88231\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-01T10:32:55.165\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"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\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"932\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"933\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T20:15\",\"SegFlightNumber\":\"AI-807\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"localFromDateTime\":\"2023-06-07 12:50\",\"localToDateTime\":\"2023-06-07 20:15\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'11000000362238','','TRANSACTION IS TIMEDOUT.',NULL,NULL,'0','180.151.10.154','2023-05-01 05:01:58','2023-05-01 05:01:58',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,1,59951,0,682404,'TESTPNR-TESTPNR-TESTPNR','2023-06-07','BKRS103000550376','TJS103000550376','AI-821','Air India','',1,'1bd18-bef72-47d7c-5c513','42','12:50:00','22:35:00',0,'V',585,'9h 45m',13021,2262,'IXJ','BLR','2 Stop(s)',1,1,11976,'15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',10250,2011,0,743,0,400,11976,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS103000550376\",\"bookingId_TJ\":\"TJS103000550376\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 22:35\",\"ToUTCTime\":\"2023-06-07T22:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":235,\"LAYOVERDuration\":\"3h 55m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"9h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"PublishedFareTxt\":\"12,261\",\"ApiResultIndex\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2382297116_0IXJSXRAI821SXRDELAI821DELBLRAI512_35479124024471\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11976,\"CostToCustomer\":11976,\"BaseFareCal\":11976,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11976,\"intOfferedFare\":11976,\"intPublishFare\":12261,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"283\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"284\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"285\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1bd18-bef72-47d7c-5c513\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-02T16:58:58.173\",\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103000550376\",\"bookingId_TJ\":\"TJS103000550376\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 22:35\",\"ToUTCTime\":\"2023-06-07T22:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":235,\"LAYOVERDuration\":\"3h 55m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"9h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"ApiResultIndex\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"1bd18-bef72-47d7c-5c513\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-02T16:58:58.173\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"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\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"284\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"285\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"localFromDateTime\":\"2023-06-07 12:50\",\"localToDateTime\":\"2023-06-07 22:35\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS103000550376\",\"amount\":12261,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-02T17:00:38.727\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126877\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"821\",\"eT\":\"32A\"},\"stops\":0,\"duration\":50,\"cT\":35,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"SXR\",\"name\":\"Srinagar Arpt\",\"cityCode\":\"SXR\",\"city\":\"Srinagar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-07T12:50\",\"at\":\"2023-06-07T13:40\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"126878\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"821\",\"eT\":\"32A\"},\"stops\":0,\"duration\":100,\"cT\":200,\"da\":{\"code\":\"SXR\",\"name\":\"Srinagar Arpt\",\"cityCode\":\"SXR\",\"city\":\"Srinagar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T14:15\",\"at\":\"2023-06-07T15:55\",\"iand\":false,\"isRs\":false,\"sN\":1},{\"id\":\"126879\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"512\",\"eT\":\"319\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T19:15\",\"at\":\"2023-06-07T22:35\",\"iand\":false,\"isRs\":false,\"sN\":2}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-SXR\":\"TESTPNR\",\"SXR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ticketNumberDetails\":{\"IXJ-SXR\":\"1111111111111\",\"SXR-DEL\":\"1111111111111\",\"DEL-BLR\":\"1111111111111\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":12261,\"NF\":11976,\"NCM\":285,\"IGST\":72,\"BF\":10250,\"TAF\":2011},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YR\":270,\"AGST\":526,\"MF\":400,\"MFT\":72,\"OT\":743}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"682403\",\"TPSysId\":\"682404\",\"VersionId\":[\"199711\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56062\",\"FareBreakdownid\":[\"376486\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000362686','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-02 11:28:09','2023-05-02 11:28:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000001',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(59,0,1,59951,0,0,NULL,'2023-06-08','BKRS101800550496','TJS101800550496','AI-543','Air India','',1,'de15a-67270-87b9b-8c058','42','12:15:00','15:25:00',0,'G',190,'3h 10m',7701,2262,'DEL','BLR','Non-stop',1,1,3487,'NA',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',3000,772,0,300,0,400,3487,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101800550496\",\"bookingId_TJ\":\"TJS101800550496\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-08T12:15\",\"LocalFromTime\":\"2023-06-08 12:15\",\"FromUTCTime\":\"2023-06-08T12:15\",\"LocalToTime\":\"2023-06-08 15:25\",\"ToUTCTime\":\"2023-06-08T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 08 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-4225376816_0DELBLRAI543_42292774550206\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"418\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-08T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"de15a-67270-87b9b-8c058\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-02T18:52:31.825\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101800550496\",\"bookingId_TJ\":\"TJS101800550496\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-08T12:15\",\"LocalFromTime\":\"2023-06-08 12:15\",\"FromUTCTime\":\"2023-06-08T12:15\",\"LocalToTime\":\"2023-06-08 15:25\",\"ToUTCTime\":\"2023-06-08T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 08 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"de15a-67270-87b9b-8c058\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-02T18:52:31.825\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"418\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-08T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-06-08 12:15\",\"localToDateTime\":\"2023-06-08 15:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-02 13:22:06','2023-05-02 13:22:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'104908',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(60,0,1,59951,0,682993,'QY1TNZ-QY1TNZ','2023-06-06','BKRS108200550751','TJS108200550751','SG-161','SpiceJet','1',1,'26107-57af6-b1f19-e5a47','463','14:30:00','00:40:00',0,'RS',610,'10h 10m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,6559,'4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5450,1394,0,648,0,400,6559,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS108200550751\",\"bookingId_TJ\":\"TJS108200550751\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4971229566_0IXJDELSG161DELBLRSG8143_100427323149339\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"496\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"497\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"26107-57af6-b1f19-e5a47\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:01:26.373\",\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS108200550751\",\"bookingId_TJ\":\"TJS108200550751\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"ApiResultIndex\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"26107-57af6-b1f19-e5a47\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:01:26.373\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"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\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"496\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"497\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"localFromDateTime\":\"2023-06-06 14:30\",\"localToDateTime\":\"2023-06-07 00:40\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS108200550751\",\"amount\":6844,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:04:01.973\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126941\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"cT\":355,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-06-06T14:30\",\"at\":\"2023-06-06T16:00\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"126942\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8143\",\"eT\":\"737\"},\"stops\":0,\"duration\":165,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-06T21:55\",\"at\":\"2023-06-07T00:40\",\"iand\":true,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"QY1TNZ\",\"DEL-BLR\":\"QY1TNZ\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":6844,\"NF\":6559,\"NCM\":285,\"IGST\":72,\"BF\":5450,\"TAF\":1394},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YQ\":0,\"AGST\":274,\"MF\":400,\"MFT\":72,\"OT\":648}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"682992\",\"TPSysId\":\"682993\",\"VersionId\":[\"199839\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56101\",\"FareBreakdownid\":[\"376508\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000362816','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-03 05:30:46','2023-05-03 05:30:46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000002',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(61,0,1,59951,0,683009,NULL,'2023-06-06','BKRS100900550762','TJS100900550762','SG-161','SpiceJet','1',1,'eb263-64cd5-38e2e-a6ba0','463','14:30:00','00:40:00',0,'RS',610,'10h 10m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,6559,'4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337',1,2,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5450,1394,0,648,0,400,6559,0,0,0,0,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3251679453_0IXJDELSG161DELBLRSG8143_100800088532041\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"416\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"417\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"2023-06-09 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12853.7,\"ApiResultIndex\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10885,\"Tax\":1968.7,\"YQTax\":0,\"OtherCharges\":929,\"Discount\":0,\"ServiceFee\":415,\"ManagementFeeTax\":74.7,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12853.7,\"PublishedFare\":12568.7,\"OfferedFare\":12568.7,\"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\":\"1\",\"TaxIN\":1968.7,\"BaseFareCal\":12568.7,\"BaseFare\":10885,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":415,\"YQ\":0,\"AGST\":550,\"MFT\":74.7,\"OT\":929,\"MU\":0,\"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\":\"416\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"417\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"418\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-10T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"419\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-10T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"localFromDateTime\":\"2023-06-06 14:30\",\"localToDateTime\":\"2023-06-07 00:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. This is a duplicate booking of TJS108200550751\",\"details\":\"TJS108200550751\"}]}',NULL,1,0,'11000000362818','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-03 05:36:51','2023-05-03 05:36: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),(62,61,1,59951,0,683009,NULL,'2023-06-09','BKRS100900550762','TJS100900550762','SG-198','SpiceJet','1',1,'eb263-64cd5-38e2e-a6ba0','463','21:55:00','10:45:00',0,'RS',770,'12h 50m',13021,2262,'BLR','IXJ','1 Stop(s)',1,1,6009.7,'4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300',2,2,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5435,574.7,0,281,0,15,6009.7,0,0,0,0,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-09T21:55\",\"LocalFromTime\":\"2023-06-09 21:55\",\"FromUTCTime\":\"2023-06-09T21:55\",\"LocalToTime\":\"2023-06-10 10:45\",\"ToUTCTime\":\"2023-06-10T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Sat, 10 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6009.7,\"PublishedFareTxt\":\"6,010\",\"ApiResultIndex\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":574.7,\"YQTax\":0,\"OtherCharges\":281,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6009.7,\"PublishedFare\":6009.7,\"OfferedFare\":6009.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100800090358134\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":574.7,\"BaseFareCal\":6009.7,\"BaseFare\":5435,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":276,\"MFT\":2.7,\"OT\":281,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6009.7,\"CostToCustomer\":6009.7,\"BaseFareCal\":6009.7,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6009.7,\"intOfferedFare\":6009.7,\"intPublishFare\":6009.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"418\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-10T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"419\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-10T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"strTraceId\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"2023-06-09 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. This is a duplicate booking of TJS108200550751\",\"details\":\"TJS108200550751\"}]}',NULL,1,0,'11000000362818','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-03 05:36:51','2023-05-03 05:36: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),(63,0,1,59951,0,683028,'TESTPNR-TESTPNR','2023-06-07','BKRS104100550781','TJS104100550781','AI-542','Air India','',1,'38239-bd8e0-8a2bb-f289f','42','15:00:00','17:00:00',0,'G',120,'2h 0m',2262,7701,'BLR','DEL','Non-stop',1,1,3187,'19-18-11-8432191504_0BLRDELAI542_101517167513055',1,2,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',2700,772,0,300,0,400,3187,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-06-07T15:00\",\"LocalFromTime\":\"2023-06-07 15:00\",\"FromUTCTime\":\"2023-06-07T15:00\",\"LocalToTime\":\"2023-06-07 17:00\",\"ToUTCTime\":\"2023-06-07T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}},\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-8432191504_0BLRDELAI542_101558598020960\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"323\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-07T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"2023-06-10 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-06-07T15:00\",\"LocalFromTime\":\"2023-06-07 15:00\",\"FromUTCTime\":\"2023-06-07T15:00\",\"LocalToTime\":\"2023-06-07 17:00\",\"ToUTCTime\":\"2023-06-07T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7244,\"ApiResultIndex\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5700,\"Tax\":1544,\"YQTax\":0,\"OtherCharges\":600,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7244,\"PublishedFare\":6674,\"OfferedFare\":6674,\"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\":\"1\",\"TaxIN\":1544,\"BaseFareCal\":6674,\"BaseFare\":5700,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":0,\"MFT\":144,\"OT\":600,\"MU\":0,\"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\":\"323\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-07T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"403\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-10T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"localFromDateTime\":\"2023-06-07 15:00\",\"localToDateTime\":\"2023-06-07 17:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS104100550781\",\"amount\":7244,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:21:32.742\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126951\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"542\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-07T15:00\",\"at\":\"2023-06-07T17:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"126952\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"543\"},\"stops\":0,\"duration\":190,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-10T12:15\",\"at\":\"2023-06-10T15:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":7244,\"NF\":6674,\"NCM\":570,\"IGST\":144,\"BF\":5700,\"TAF\":1544},\"afC\":{\"NCM\":{\"TDS\":-30,\"OT\":600},\"TAF\":{\"MF\":800,\"MFT\":144,\"OT\":600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"683027\",\"TPSysId\":\"683028\",\"VersionId\":[\"199850\",\"199851\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56103\",\"FareBreakdownid\":[\"376511\",\"376512\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000362822','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-03 05:49:22','2023-05-03 05:49:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000003',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(64,63,1,59951,0,683028,'TESTPNR-TESTPNR','2023-06-10','BKRS104100550781','TJS104100550781','AI-543','Air India','',1,'38239-bd8e0-8a2bb-f289f','42','12:15:00','15:25:00',0,'G',190,'3h 10m',2262,7701,'DEL','BLR','Non-stop',1,1,3487,'19-18-11-8432191504_0DELBLRAI543_101517167202489',2,2,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',3000,772,0,300,0,400,3487,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-10T12:15\",\"LocalFromTime\":\"2023-06-10 12:15\",\"FromUTCTime\":\"2023-06-10T12:15\",\"LocalToTime\":\"2023-06-10 15:25\",\"ToUTCTime\":\"2023-06-10T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Sat, 10 Jun\",\"ArrivalDateTxt\":\"Sat, 10 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}},\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-8432191504_1DELBLRAI543_101558599030866\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"403\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-10T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"strTraceId\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"2023-06-10 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS104100550781\",\"amount\":7244,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:21:32.742\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126951\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"542\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-07T15:00\",\"at\":\"2023-06-07T17:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"126952\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"543\"},\"stops\":0,\"duration\":190,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-10T12:15\",\"at\":\"2023-06-10T15:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":7244,\"NF\":6674,\"NCM\":570,\"IGST\":144,\"BF\":5700,\"TAF\":1544},\"afC\":{\"NCM\":{\"TDS\":-30,\"OT\":600},\"TAF\":{\"MF\":800,\"MFT\":144,\"OT\":600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"683027\",\"TPSysId\":\"683028\",\"VersionId\":[\"199850\",\"199851\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56103\",\"FareBreakdownid\":[\"376511\",\"376512\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000362822','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-03 05:49:22','2023-05-03 05:49:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000003',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(65,0,1,59951,0,0,NULL,'2023-06-02','BKRS105600550795','TJS105600550795','SG-161','SpiceJet','1',1,'4d4a8-bd7fc-821b5-b355c','463','14:30:00','00:40:00',0,'RS',610,'10h 10m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,6559,'NA',1,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5450,1394,0,648,0,400,6559,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-02T14:30\",\"LocalFromTime\":\"2023-06-02 14:30\",\"FromUTCTime\":\"2023-06-02T14:30\",\"LocalToTime\":\"2023-06-03 00:40\",\"ToUTCTime\":\"2023-06-03T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Fri, 02 Jun\",\"ArrivalDateTxt\":\"Sat, 03 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_0IXJDELSG161DELBLRSG8143_102528889993879\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"465\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-02T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-02T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"466\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-03T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-02T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-02T14:30\",\"LocalFromTime\":\"2023-06-02 14:30\",\"FromUTCTime\":\"2023-06-02T14:30\",\"LocalToTime\":\"2023-06-03 00:40\",\"ToUTCTime\":\"2023-06-03T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Fri, 02 Jun\",\"ArrivalDateTxt\":\"Sat, 03 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":15946,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":12165,\"Tax\":3781,\"YQTax\":0,\"OtherCharges\":1747,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":618,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15946,\"PublishedFare\":15091,\"OfferedFare\":15091,\"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\":\"1\",\"TaxIN\":3781,\"BaseFareCal\":15091,\"BaseFare\":12165,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":618,\"MFT\":216,\"OT\":1747,\"MU\":0,\"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\":\"465\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-02T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-02T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"466\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-03T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-02T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"529\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T08:45\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-07T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-06-02 14:30\",\"localToDateTime\":\"2023-06-03 00:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-03 06:12:34','2023-05-03 06:12:34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'955557',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(66,65,1,59951,0,0,NULL,'2023-06-05','BKRS105600550795','TJS105600550795','SG-8136','SpiceJet','1',1,'4d4a8-bd7fc-821b5-b355c','463','06:10:00','08:45:00',0,'SS',155,'2h 35m',2262,7701,'BLR','DEL','Non-stop',1,1,5318,'NA',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',4280,1323,0,631,0,400,5318,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2023-06-05T06:10\",\"LocalFromTime\":\"2023-06-05 06:10\",\"FromUTCTime\":\"2023-06-05T06:10\",\"LocalToTime\":\"2023-06-05 08:45\",\"ToUTCTime\":\"2023-06-05T08:45\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Mon, 05 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5603,\"PublishedFareTxt\":\"5,603\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4280,\"Tax\":1323,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5603,\"PublishedFare\":5318,\"OfferedFare\":5318,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_1BLRDELSG8136_102528892089251\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1323,\"BaseFareCal\":5318,\"BaseFare\":4280,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":220,\"MFT\":72,\"OT\":631,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5318,\"CostToCustomer\":5318,\"BaseFareCal\":5318,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5318,\"intOfferedFare\":5318,\"intPublishFare\":5603,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"529\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T08:45\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-03 06:12:34','2023-05-03 06:12:34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'955557',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(67,66,1,59951,0,0,NULL,'2023-06-07','BKRS105600550795','TJS105600550795','SG-160','SpiceJet','1',1,'4d4a8-bd7fc-821b5-b355c','463','09:20:00','10:45:00',0,'RS',85,'1h 25m',7701,13021,'DEL','IXJ','Non-stop',1,1,3214,'NA',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',2435,1064,0,468,0,400,3214,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-07T09:20\",\"LocalFromTime\":\"2023-06-07 09:20\",\"FromUTCTime\":\"2023-06-07T09:20\",\"LocalToTime\":\"2023-06-07 10:45\",\"ToUTCTime\":\"2023-06-07T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"PublishedFareTxt\":\"3,499\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_2DELIXJSG160_102528893429111\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-07T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-03 06:12:34','2023-05-03 06:12:34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'955557',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(69,0,1,59951,0,688485,'TESTPNR-TESTPNR','2023-06-05','BKRS102500554143','TJS102500554143','AI-822','Air India','',1,'4ad7b-e4fd2-104ed-81f34','42','15:45:00','15:25:00',0,'Q',1420,'23h 40m',13021,974,'IXJ','ATQ','1 Stop(s)',1,1,10800,'15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',9130,1955,0,743,0,400,10800,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102500554143\",\"bookingId_TJ\":\"TJS102500554143\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"PublishedFareTxt\":\"11,085\",\"ApiResultIndex\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-5115073536_0IXJDELAI822DELATQAI461_103191776760827\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10800,\"CostToCustomer\":10800,\"BaseFareCal\":10800,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10800,\"intOfferedFare\":10800,\"intPublishFare\":11085,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"864\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4ad7b-e4fd2-104ed-81f34\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:46:37.816\",\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102500554143\",\"bookingId_TJ\":\"TJS102500554143\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"ApiResultIndex\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"4ad7b-e4fd2-104ed-81f34\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:46:37.816\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"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\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"864\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"localFromDateTime\":\"2023-06-05 15:45\",\"localToDateTime\":\"2023-06-06 15:25\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102500554143\",\"amount\":11085,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T11:47:49.744\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127946\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"822\",\"eT\":\"32A\"},\"stops\":0,\"duration\":90,\"cT\":1260,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-05T15:45\",\"at\":\"2023-06-05T17:15\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127947\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"461\",\"eT\":\"32N\"},\"stops\":0,\"duration\":70,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-06T14:15\",\"at\":\"2023-06-06T15:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"TESTPNR\",\"DEL-ATQ\":\"TESTPNR\"},\"ticketNumberDetails\":{\"IXJ-DEL\":\"1111111111111\",\"DEL-ATQ\":\"1111111111111\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":11085,\"NF\":10800,\"IGST\":72,\"NCM\":285,\"BF\":9130,\"TAF\":1955},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"MFT\":72,\"AGST\":470,\"OT\":743,\"MF\":400,\"YR\":270}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688484\",\"TPSysId\":\"688485\",\"VersionId\":[\"201637\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56544\",\"FareBreakdownid\":[\"376824\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000365467','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 06:15:43','2023-05-08 06:15:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000004',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(73,0,1,59951,0,0,NULL,'2023-06-05','BKRS101000554177','TJS101000554177','SG-198','SpiceJet','1',1,'11d07-3e72d-ece68-1ec15','463','21:55:00','10:45:00',0,'RS',770,'12h 50m',2262,13021,'BLR','IXJ','1 Stop(s)',1,1,6479,'30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762',1,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5435,1329,0,581,0,400,6479,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-05T21:55\",\"LocalFromTime\":\"2023-06-05 21:55\",\"FromUTCTime\":\"2023-06-05T21:55\",\"LocalToTime\":\"2023-06-06 10:45\",\"ToUTCTime\":\"2023-06-06T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6764,\"PublishedFareTxt\":\"6,764\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":1329,\"YQTax\":0,\"OtherCharges\":581,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6764,\"PublishedFare\":6479,\"OfferedFare\":6479,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_0BLRDELSG198DELIXJSG160_103558417122725\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":23182,\"oldFare\":22333,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1329,\"BaseFareCal\":6479,\"BaseFare\":5435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":276,\"MFT\":72,\"OT\":581,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6479,\"CostToCustomer\":6479,\"BaseFareCal\":6479,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6479,\"intOfferedFare\":6479,\"intPublishFare\":6764,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"381\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-06T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-05T21:55\",\"LocalFromTime\":\"2023-06-05 21:55\",\"FromUTCTime\":\"2023-06-05T21:55\",\"LocalToTime\":\"2023-06-06 10:45\",\"ToUTCTime\":\"2023-06-06T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":23182,\"ApiResultIndex\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":18227,\"Tax\":4955,\"YQTax\":0,\"OtherCharges\":2333,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":936,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":23182,\"PublishedFare\":22327,\"OfferedFare\":22327,\"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\":\"1\",\"TaxIN\":4955,\"BaseFareCal\":22327,\"BaseFare\":18227,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":936,\"MFT\":216,\"OT\":2333,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"381\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-06T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"776\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":285,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"778\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T23:35\",\"SegFlightNumber\":\"AI-540\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"379\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":270,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"4h 30m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-09T13:10\",\"SegFlightNumber\":\"QP-1104\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"13:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"localFromDateTime\":\"2023-06-05 21:55\",\"localToDateTime\":\"2023-06-06 10:45\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-08 06:21:45','2023-05-08 06:21:45',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,73,1,59951,0,0,NULL,'2023-06-07','BKRS101000554177','TJS101000554177','AI-821','Air India','',1,'11d07-3e72d-ece68-1ec15','42','12:50:00','23:35:00',0,'V',645,'10h 45m',13021,6000,'IXJ','MAA','2 Stop(s)',1,1,11840,'30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',10120,2005,0,743,0,400,11840,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 23:35\",\"ToUTCTime\":\"2023-06-07T23:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":320,\"LAYOVERDuration\":\"5h 20m\",\"FlyingMinutes\":645,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12125,\"PublishedFareTxt\":\"12,125\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10120,\"Tax\":2005,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":520,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12125,\"PublishedFare\":11840,\"OfferedFare\":11840,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_1IXJSXRAI821SXRDELAI821DELMAAAI540_103558431703782\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2005,\"BaseFareCal\":11840,\"BaseFare\":10120,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":520,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11840,\"CostToCustomer\":11840,\"BaseFareCal\":11840,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11840,\"intOfferedFare\":11840,\"intPublishFare\":12125,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"776\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":285,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"778\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T23:35\",\"SegFlightNumber\":\"AI-540\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-08 06:21:45','2023-05-08 06:21:45',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,74,1,59951,0,0,NULL,'2023-06-09','BKRS101000554177','TJS101000554177','QP-1801','AkasaAir','1',0,'11d07-3e72d-ece68-1ec15','821','06:00:00','13:10:00',0,'CP',430,'7h 10m',6000,18676,'MAA','BOM','1 Stop(s)',1,1,4008,'30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/noimage.png','INR',2672,1621,0,1009,0,400,4008,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"QP-1801\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"13:10\",\"TravelDate\":\"2023-06-09T06:00\",\"LocalFromTime\":\"2023-06-09 06:00\",\"FromUTCTime\":\"2023-06-09T06:00\",\"LocalToTime\":\"2023-06-09 13:10\",\"ToUTCTime\":\"2023-06-09T13:10\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":270,\"LAYOVERDuration\":\"4h 30m\",\"FlyingMinutes\":430,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Fri, 09 Jun\",\"FlightDuration\":\"7h 10m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4293,\"PublishedFareTxt\":\"4,293\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2672,\"Tax\":1621,\"YQTax\":0,\"OtherCharges\":1009,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":140,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4293,\"PublishedFare\":4008,\"OfferedFare\":4008,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_2MAABLRQP1801BLRBOMQP1104_103558443883168\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1621,\"BaseFareCal\":4008,\"BaseFare\":2672,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":140,\"MFT\":72,\"OT\":1009,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4008,\"CostToCustomer\":4008,\"BaseFareCal\":4008,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4008,\"intOfferedFare\":4008,\"intPublishFare\":4293,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"379\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":270,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"4h 30m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-09T13:10\",\"SegFlightNumber\":\"QP-1104\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"13:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2023-05-08 06:21:45','2023-05-08 06:21:45',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),(79,0,1,59951,0,688608,NULL,'2023-06-05','BKRS100300554234','TJS100300554234','AI-822','Air India','',1,'a4803-39469-8b8ab-e0b87','42','15:45:00','15:25:00',0,'Q',1420,'23h 40m',13021,974,'IXJ','ATQ','1 Stop(s)',1,1,10800,'30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430',1,3,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',9130,1955,0,743,0,400,10800,0,0,0,0,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"PublishedFareTxt\":\"11,085\",\"ApiResultIndex\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_0IXJDELAI822DELATQAI461_105680213262889\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10800,\"CostToCustomer\":10800,\"BaseFareCal\":10800,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10800,\"intOfferedFare\":10800,\"intPublishFare\":11085,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"132\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"133\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":25572,\"ApiResultIndex\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":20248,\"Tax\":5324,\"YQTax\":0,\"OtherCharges\":2600,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":1038,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":25572,\"PublishedFare\":24717,\"OfferedFare\":24717,\"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\":\"1\",\"TaxIN\":5324,\"BaseFareCal\":24717,\"BaseFare\":20248,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":1038,\"MFT\":216,\"OT\":2600,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"132\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"133\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"379\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2023-06-08T01:35\",\"SegFlightNumber\":\"6E-951\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Pune\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"380\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T04:30\",\"SegFlightNumber\":\"6E-338\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2023-06-08T02:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:55\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"233\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-11T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-10T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-11T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-11T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"localFromDateTime\":\"2023-06-05 15:45\",\"localToDateTime\":\"2023-06-06 15:25\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. This is a duplicate booking of TJS102500554143\",\"details\":\"TJS102500554143\"}]}',NULL,1,0,'11000000365504','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 06:57:06','2023-05-08 06:57:06',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),(80,79,1,59951,0,688608,NULL,'2023-06-07','BKRS100300554234','TJS100300554234','6E-951','IndiGo','1',1,'a4803-39469-8b8ab-e0b87','267','23:20:00','04:30:00',0,'R',310,'5h 10m',974,2262,'ATQ','BLR','1 Stop(s)',1,1,7438,'30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',5683,2040,0,1276,0,400,7438,0,0,0,0,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"6E-951\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:20\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2023-06-07T23:20\",\"LocalFromTime\":\"2023-06-07 23:20\",\"FromUTCTime\":\"2023-06-07T23:20\",\"LocalToTime\":\"2023-06-08 04:30\",\"ToUTCTime\":\"2023-06-08T04:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Pune\",\"GroundTime\":80,\"LAYOVERDuration\":\"1h 20m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7723,\"PublishedFareTxt\":\"7,723\",\"ApiResultIndex\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5683,\"Tax\":2040,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":292,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7723,\"PublishedFare\":7438,\"OfferedFare\":7438,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_1ATQPNQ6E951PNQBLR6E338_105680214883852\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2040,\"BaseFareCal\":7438,\"BaseFare\":5683,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":292,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7438,\"CostToCustomer\":7438,\"BaseFareCal\":7438,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7438,\"intOfferedFare\":7438,\"intPublishFare\":7723,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"379\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2023-06-08T01:35\",\"SegFlightNumber\":\"6E-951\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Pune\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"380\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T04:30\",\"SegFlightNumber\":\"6E-338\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2023-06-08T02:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:55\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"VBIR\",\"Price\":400,\"amount\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. This is a duplicate booking of TJS102500554143\",\"details\":\"TJS102500554143\"}]}',NULL,1,0,'11000000365504','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 06:57:06','2023-05-08 06:57:06',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),(81,80,1,59951,0,688608,NULL,'2023-06-10','BKRS100300554234','TJS100300554234','SG-198','SpiceJet','1',1,'a4803-39469-8b8ab-e0b87','463','21:55:00','10:45:00',0,'RS',770,'12h 50m',2262,13021,'BLR','IXJ','1 Stop(s)',1,1,6479,'30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',5435,1329,0,581,0,400,6479,0,0,0,0,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-10T21:55\",\"LocalFromTime\":\"2023-06-10 21:55\",\"FromUTCTime\":\"2023-06-10T21:55\",\"LocalToTime\":\"2023-06-11 10:45\",\"ToUTCTime\":\"2023-06-11T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Sat, 10 Jun\",\"ArrivalDateTxt\":\"Sun, 11 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6764,\"PublishedFareTxt\":\"6,764\",\"ApiResultIndex\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":1329,\"YQTax\":0,\"OtherCharges\":581,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6764,\"PublishedFare\":6479,\"OfferedFare\":6479,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_2BLRDELSG198DELIXJSG160_105680216360767\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1329,\"BaseFareCal\":6479,\"BaseFare\":5435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":276,\"MFT\":72,\"OT\":581,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6479,\"CostToCustomer\":6479,\"BaseFareCal\":6479,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6479,\"intOfferedFare\":6479,\"intPublishFare\":6764,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"233\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-11T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-10T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-11T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-11T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2502\",\"message\":\"Duplicate Booking. This is a duplicate booking of TJS102500554143\",\"details\":\"TJS102500554143\"}]}',NULL,1,0,'11000000365504','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 06:57:06','2023-05-08 06:57:06',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),(82,0,1,59951,0,688631,'TESTPNR-TESTPNR-E5QQ3J-TESTPNR','2023-06-07','BKRS102700554241','TJS102700554241','6E-5182','IndiGo','1',1,'38fc3-cefa5-648e9-2d354','267','05:45:00','13:00:00',0,'T',435,'7h 15m',974,6000,'ATQ','MAA','1 Stop(s)',1,1,8750,'30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696',1,3,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',6933,2102,0,1276,0,400,8750,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-5182\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2023-06-07T05:45\",\"LocalFromTime\":\"2023-06-07 05:45\",\"FromUTCTime\":\"2023-06-07T05:45\",\"LocalToTime\":\"2023-06-07 13:00\",\"ToUTCTime\":\"2023-06-07T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":435,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9035,\"PublishedFareTxt\":\"9,035\",\"ApiResultIndex\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6933,\"Tax\":2102,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":354,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9035,\"PublishedFare\":8750,\"OfferedFare\":8750,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_106033638112478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2102,\"BaseFareCal\":8750,\"BaseFare\":6933,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":354,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8750,\"CostToCustomer\":8750,\"BaseFareCal\":8750,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8750,\"intOfferedFare\":8750,\"intPublishFare\":9035,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"869\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T06:55\",\"SegFlightNumber\":\"6E-5182\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T13:00\",\"SegFlightNumber\":\"6E-6239\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-5182\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2023-06-07T05:45\",\"LocalFromTime\":\"2023-06-07 05:45\",\"FromUTCTime\":\"2023-06-07T05:45\",\"LocalToTime\":\"2023-06-07 13:00\",\"ToUTCTime\":\"2023-06-07T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":435,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":13965,\"ApiResultIndex\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8647,\"Tax\":5318,\"YQTax\":0,\"OtherCharges\":3452,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":450,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13965,\"PublishedFare\":13110,\"OfferedFare\":13110,\"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\":\"1\",\"TaxIN\":5318,\"BaseFareCal\":13110,\"BaseFare\":8647,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":450,\"MFT\":216,\"OT\":3452,\"MU\":0,\"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\":\"869\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T06:55\",\"SegFlightNumber\":\"6E-5182\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T13:00\",\"SegFlightNumber\":\"6E-6239\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"874\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"711\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Goa arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa in\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOX\",\"destinationArrTime\":\"2023-06-12T09:05\",\"SegFlightNumber\":\"6E-6176\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"localFromDateTime\":\"2023-06-07 05:45\",\"localToDateTime\":\"2023-06-07 13:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOX\",\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688630\",\"TPSysId\":\"688631\",\"VersionId\":[\"201689\",\"201690\",\"201691\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56564\",\"FareBreakdownid\":[\"376844\",\"376845\",\"376846\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000365511','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 07:02:58','2023-05-08 07:02:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000005',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(83,82,1,59951,0,688631,'TESTPNR-TESTPNR-E5QQ3J-TESTPNR','2023-06-09','BKRS102700554241','TJS102700554241','QP-1801','AkasaAir','1',0,'38fc3-cefa5-648e9-2d354','821','06:00:00','07:00:00',0,'CP',60,'1h 0m',6000,2262,'MAA','BLR','Non-stop',1,1,2061,'30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/noimage.png','INR',819,1527,0,1009,0,400,2061,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"QP-1801\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:00\",\"TravelDate\":\"2023-06-09T06:00\",\"LocalFromTime\":\"2023-06-09 06:00\",\"FromUTCTime\":\"2023-06-09T06:00\",\"LocalToTime\":\"2023-06-09 07:00\",\"ToUTCTime\":\"2023-06-09T07:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":60,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Fri, 09 Jun\",\"FlightDuration\":\"1h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":2346,\"PublishedFareTxt\":\"2,346\",\"ApiResultIndex\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":819,\"Tax\":1527,\"YQTax\":0,\"OtherCharges\":1009,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":46,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2346,\"PublishedFare\":2061,\"OfferedFare\":2061,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_1MAABLRQP1801_106033644049143\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1527,\"BaseFareCal\":2061,\"BaseFare\":819,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":46,\"MFT\":72,\"OT\":1009,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2061,\"CostToCustomer\":2061,\"BaseFareCal\":2061,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2061,\"intOfferedFare\":2061,\"intPublishFare\":2346,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"874\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688630\",\"TPSysId\":\"688631\",\"VersionId\":[\"201689\",\"201690\",\"201691\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56564\",\"FareBreakdownid\":[\"376844\",\"376845\",\"376846\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000365511','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 07:02:58','2023-05-08 07:02:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000005',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(84,83,1,59951,0,688631,'TESTPNR-TESTPNR-E5QQ3J-TESTPNR','2023-06-12','BKRS102700554241','TJS102700554241','6E-6176','IndiGo','1',1,'38fc3-cefa5-648e9-2d354','267','08:00:00','09:05:00',0,'R',65,'1h 5m',2262,0,'BLR','GOX','Non-stop',1,1,2299,'30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',895,1689,0,1167,0,400,2299,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-6176\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:05\",\"TravelDate\":\"2023-06-12T08:00\",\"LocalFromTime\":\"2023-06-12 08:00\",\"FromUTCTime\":\"2023-06-12T08:00\",\"LocalToTime\":\"2023-06-12 09:05\",\"ToUTCTime\":\"2023-06-12T09:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Mon, 12 Jun\",\"ArrivalDateTxt\":\"Mon, 12 Jun\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOX\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":2584,\"PublishedFareTxt\":\"2,584\",\"ApiResultIndex\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":895,\"Tax\":1689,\"YQTax\":0,\"OtherCharges\":1167,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2584,\"PublishedFare\":2299,\"OfferedFare\":2299,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_2BLRGOX6E6176_106033648787865\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1689,\"BaseFareCal\":2299,\"BaseFare\":895,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":1167,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2299,\"CostToCustomer\":2299,\"BaseFareCal\":2299,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2299,\"intOfferedFare\":2299,\"intPublishFare\":2584,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"711\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Goa arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa in\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOX\",\"destinationArrTime\":\"2023-06-12T09:05\",\"SegFlightNumber\":\"6E-6176\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"VBIR\",\"Price\":400,\"amount\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688630\",\"TPSysId\":\"688631\",\"VersionId\":[\"201689\",\"201690\",\"201691\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56564\",\"FareBreakdownid\":[\"376844\",\"376845\",\"376846\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000365511','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','180.151.10.154','2023-05-08 07:02:58','2023-05-08 07:02:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-000005',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(85,0,8,59951,0,0,NULL,'2023-05-11','BKRS104200555529','TJS104200555529','6E-6916','IndiGo','1',1,'45226-604f7-661b9-23fc5','267','19:20:00','01:00:00',0,'R',340,'5h 40m',12706,2262,'IDR','BLR','1 Stop(s)',1,1,7537,'5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',6000,1822,0,1042,0,400,7537,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS104200555529\",\"bookingId_TJ\":\"TJS104200555529\",\"FlightNumber\":\"6E-6916\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2023-05-11T19:20\",\"LocalFromTime\":\"2023-05-11 19:20\",\"FromUTCTime\":\"2023-05-11T19:20\",\"LocalToTime\":\"2023-05-12 01:00\",\"ToUTCTime\":\"2023-05-12T01:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7822,\"PublishedFareTxt\":\"7,822\",\"ApiResultIndex\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IDR-BLR\":{\"fr\":{\"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,\"ARF\":3000,\"CRFT\":9,\"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}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6000,\"Tax\":1822,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":308,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7822,\"PublishedFare\":7537,\"OfferedFare\":7537,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22540852514143\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1822,\"BaseFareCal\":7537,\"BaseFare\":6000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":308,\"MFT\":72,\"OT\":1042,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7537,\"CostToCustomer\":7537,\"BaseFareCal\":7537,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7537,\"intOfferedFare\":7537,\"intPublishFare\":7822,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"962\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-05-11T20:40\",\"SegFlightNumber\":\"6E-6916\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-05-11T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"963\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T01:00\",\"SegFlightNumber\":\"6E-949\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2023-05-11T23:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:55\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"45226-604f7-661b9-23fc5\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-09T12:27:18.907\",\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-11 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104200555529\",\"bookingId_TJ\":\"TJS104200555529\",\"FlightNumber\":\"6E-6916\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2023-05-11T19:20\",\"LocalFromTime\":\"2023-05-11 19:20\",\"FromUTCTime\":\"2023-05-11T19:20\",\"LocalToTime\":\"2023-05-12 01:00\",\"ToUTCTime\":\"2023-05-12T01:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7822,\"ApiResultIndex\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"45226-604f7-661b9-23fc5\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-09T12:27:18.907\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6000,\"Tax\":1822,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":308,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7822,\"PublishedFare\":7537,\"OfferedFare\":7537,\"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\":\"1\",\"TaxIN\":1822,\"BaseFareCal\":7537,\"BaseFare\":6000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":308,\"MFT\":72,\"OT\":1042,\"MU\":0,\"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\":\"962\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-05-11T20:40\",\"SegFlightNumber\":\"6E-6916\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-05-11T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"963\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T01:00\",\"SegFlightNumber\":\"6E-949\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2023-05-11T23:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:55\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"localFromDateTime\":\"2023-05-11 19:20\",\"localToDateTime\":\"2023-05-12 01:00\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','165.225.120.218','2023-05-09 06:58:21','2023-05-09 06:58: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),(86,0,1,59951,0,752818,'MHBB9B','2023-08-10','BKRS104100612664','TJS104100612664','SG-160','SpiceJet','1',1,'39951-2cea9-d21af-26e1a','463','09:20:00','10:40:00',0,'RS',80,'1h 20m',7701,13021,'DEL','IXJ','Non-stop',1,1,3214,'4-3387911288_0DELIXJSG160_19763608199500',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',2435,1064,0,468,0,400,3214,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS104100612664\",\"bookingId_TJ\":\"TJS104100612664\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-08-10T09:20\",\"LocalFromTime\":\"2023-08-10 09:20\",\"FromUTCTime\":\"2023-08-10T09:20\",\"LocalToTime\":\"2023-08-10 10:40\",\"ToUTCTime\":\"2023-08-10T10:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"PublishedFareTxt\":\"3,499\",\"ApiResultIndex\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3387911288_0DELIXJSG160_19920113651298\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"534\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-10T10:40\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"39951-2cea9-d21af-26e1a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:31:58.158\",\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":13021,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100612664\",\"bookingId_TJ\":\"TJS104100612664\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-08-10T09:20\",\"LocalFromTime\":\"2023-08-10 09:20\",\"FromUTCTime\":\"2023-08-10T09:20\",\"LocalToTime\":\"2023-08-10 10:40\",\"ToUTCTime\":\"2023-08-10T10:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"ApiResultIndex\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"39951-2cea9-d21af-26e1a\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:31:58.158\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"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\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"MU\":0,\"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\":\"534\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-10T10:40\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"localFromDateTime\":\"2023-08-10 09:20\",\"localToDateTime\":\"2023-08-10 10:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":13021,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS104100612664\",\"amount\":3499,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:34:14.637\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138152\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"160\",\"eT\":\"737\"},\"stops\":0,\"duration\":80,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-08-10T09:20\",\"at\":\"2023-08-10T10:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-IXJ\":\"MHBB9B\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":285,\"IGST\":72,\"NF\":3214,\"TAF\":1064,\"TF\":3499,\"BF\":2435},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"MF\":400,\"OT\":468,\"MFT\":72,\"YQ\":0,\"AGST\":124}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752817\",\"TPSysId\":\"752818\",\"VersionId\":[\"225035\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62097\",\"FareBreakdownid\":[\"380659\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000394751','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.245','2023-07-03 06:01:54','2023-07-03 06:01:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-000006',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(87,0,1,59951,0,752882,'B7GCPP-P6Q8WV-P6Q8WV-TESTPNR-TESTPNR','2023-08-06','BKRS106400612738','TJS106400612738','SG-161','SpiceJet','1',1,'b607b-71a2a-44201-066d1','463','14:25:00','15:55:00',0,'RS',90,'1h 30m',13021,7701,'IXJ','DEL','Non-stop',1,1,3409,'30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449',1,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',2450,1244,0,648,0,400,3409,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-08-06T14:25\",\"LocalFromTime\":\"2023-08-06 14:25\",\"FromUTCTime\":\"2023-08-06T14:25\",\"LocalToTime\":\"2023-08-06 15:55\",\"ToUTCTime\":\"2023-08-06T15:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sun, 06 Aug\",\"ArrivalDateTxt\":\"Sun, 06 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3694,\"PublishedFareTxt\":\"3,694\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2450,\"Tax\":1244,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3694,\"PublishedFare\":3409,\"OfferedFare\":3409,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_0IXJDELSG161_21414817497201\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1244,\"BaseFareCal\":3409,\"BaseFare\":2450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3409,\"CostToCustomer\":3409,\"BaseFareCal\":3409,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3409,\"intOfferedFare\":3409,\"intPublishFare\":3694,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"71\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-06T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-06T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-08-06T14:25\",\"LocalFromTime\":\"2023-08-06 14:25\",\"FromUTCTime\":\"2023-08-06T14:25\",\"LocalToTime\":\"2023-08-06 15:55\",\"ToUTCTime\":\"2023-08-06T15:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sun, 06 Aug\",\"ArrivalDateTxt\":\"Sun, 06 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":18934,\"ApiResultIndex\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14453,\"Tax\":4481,\"YQTax\":0,\"OtherCharges\":2333,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":732,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":18934,\"PublishedFare\":18079,\"OfferedFare\":18079,\"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\":\"1\",\"TaxIN\":4481,\"BaseFareCal\":18079,\"BaseFare\":14453,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":732,\"MFT\":216,\"OT\":2333,\"MU\":0,\"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\":\"71\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-06T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-06T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"960\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-08T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"961\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"831\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-11T09:45\",\"SegFlightNumber\":\"6E-122\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":465,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"7h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"832\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-11T18:55\",\"SegFlightNumber\":\"6E-6184\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-11T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"localFromDateTime\":\"2023-08-06 14:25\",\"localToDateTime\":\"2023-08-06 15:55\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752881\",\"TPSysId\":\"752882\",\"VersionId\":[\"225051\",\"225052\",\"225053\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62102\",\"FareBreakdownid\":[\"380663\",\"380664\",\"380665\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000394766','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.245','2023-07-03 06:25:51','2023-07-03 06:25:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL);
INSERT INTO `tbl_flight_booking` VALUES (88,87,1,59951,0,752882,'B7GCPP-P6Q8WV-P6Q8WV-TESTPNR-TESTPNR','2023-08-08','BKRS106400612738','TJS106400612738','SG-8263','SpiceJet','1',1,'b607b-71a2a-44201-066d1','463','07:05:00','08:25:00',0,'SS',1520,'25h 20m',7701,2262,'DEL','BLR','1 Stop(s)',1,1,5206,'30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',4284,1207,0,518,0,400,5206,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2023-08-08T07:05\",\"LocalFromTime\":\"2023-08-08 07:05\",\"FromUTCTime\":\"2023-08-08T07:05\",\"LocalToTime\":\"2023-08-09 08:25\",\"ToUTCTime\":\"2023-08-09T08:25\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":1255,\"LAYOVERDuration\":\"20h 55m\",\"FlyingMinutes\":1520,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"25h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5491,\"PublishedFareTxt\":\"5,491\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4284,\"Tax\":1207,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":217,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5491,\"PublishedFare\":5206,\"OfferedFare\":5206,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_1DELCCUSG8263CCUBLRSG516_21414818960758\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1207,\"BaseFareCal\":5206,\"BaseFare\":4284,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":217,\"MFT\":72,\"OT\":518,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5206,\"CostToCustomer\":5206,\"BaseFareCal\":5206,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5206,\"intOfferedFare\":5206,\"intPublishFare\":5491,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"960\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-08T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"961\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752881\",\"TPSysId\":\"752882\",\"VersionId\":[\"225051\",\"225052\",\"225053\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62102\",\"FareBreakdownid\":[\"380663\",\"380664\",\"380665\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000394766','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.245','2023-07-03 06:25:51','2023-07-03 06:25:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(89,88,1,59951,0,752882,'B7GCPP-P6Q8WV-P6Q8WV-TESTPNR-TESTPNR','2023-08-11','BKRS106400612738','TJS106400612738','6E-122','IndiGo','1',1,'b607b-71a2a-44201-066d1','267','07:00:00','18:55:00',0,'R',715,'11h 55m',2262,13021,'BLR','IXJ','1 Stop(s)',1,1,9464,'30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739',2,3,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',7719,2030,0,1167,0,400,9464,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"6E-122\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-08-11T07:00\",\"LocalFromTime\":\"2023-08-11 07:00\",\"FromUTCTime\":\"2023-08-11T07:00\",\"LocalToTime\":\"2023-08-11 18:55\",\"ToUTCTime\":\"2023-08-11T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":465,\"LAYOVERDuration\":\"7h 45m\",\"FlyingMinutes\":715,\"DepartureDateTxt\":\"Fri, 11 Aug\",\"ArrivalDateTxt\":\"Fri, 11 Aug\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9749,\"PublishedFareTxt\":\"9,749\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7719,\"Tax\":2030,\"YQTax\":0,\"OtherCharges\":1167,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":391,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9749,\"PublishedFare\":9464,\"OfferedFare\":9464,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_2BLRDEL6E122DELIXJ6E6184_21414820995605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2030,\"BaseFareCal\":9464,\"BaseFare\":7719,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":391,\"MFT\":72,\"OT\":1167,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9464,\"CostToCustomer\":9464,\"BaseFareCal\":9464,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9464,\"intOfferedFare\":9464,\"intPublishFare\":9749,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"831\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-11T09:45\",\"SegFlightNumber\":\"6E-122\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":465,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"7h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"832\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-11T18:55\",\"SegFlightNumber\":\"6E-6184\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-11T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752881\",\"TPSysId\":\"752882\",\"VersionId\":[\"225051\",\"225052\",\"225053\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62102\",\"FareBreakdownid\":[\"380663\",\"380664\",\"380665\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000394766','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.245','2023-07-03 06:25:51','2023-07-03 06:25:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(90,0,1,59951,0,756420,'TESTPNR-TESTPNR','2023-08-08','BKRS103300615663','TJS103300615663','6E-6004','IndiGo','1',1,'51801-e5ffc-ce2c6-2326a','267','10:40:00','21:50:00',0,'R',670,'11h 10m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,7879,'5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',5956,2208,0,1433,0,400,7879,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS103300615663\",\"bookingId_TJ\":\"TJS103300615663\",\"FlightNumber\":\"6E-6004\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:50\",\"TravelDate\":\"2023-08-08T10:40\",\"LocalFromTime\":\"2023-08-08 10:40\",\"FromUTCTime\":\"2023-08-08T10:40\",\"LocalToTime\":\"2023-08-08 21:50\",\"ToUTCTime\":\"2023-08-08T21:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"PublishedFareTxt\":\"8,164\",\"ApiResultIndex\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3467534214_0IXJDEL6E6004DELBLR6E6622_38230188270937\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7879,\"CostToCustomer\":7879,\"BaseFareCal\":7879,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7879,\"intOfferedFare\":7879,\"intPublishFare\":8164,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"750\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T12:00\",\"SegFlightNumber\":\"6E-6004\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"751\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T21:50\",\"SegFlightNumber\":\"6E-6622\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:50\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"51801-e5ffc-ce2c6-2326a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-05T17:25:38.242\",\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103300615663\",\"bookingId_TJ\":\"TJS103300615663\",\"FlightNumber\":\"6E-6004\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:50\",\"TravelDate\":\"2023-08-08T10:40\",\"LocalFromTime\":\"2023-08-08 10:40\",\"FromUTCTime\":\"2023-08-08T10:40\",\"LocalToTime\":\"2023-08-08 21:50\",\"ToUTCTime\":\"2023-08-08T21:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"ApiResultIndex\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"51801-e5ffc-ce2c6-2326a\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-05T17:25:38.242\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"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\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"750\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T12:00\",\"SegFlightNumber\":\"6E-6004\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"751\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T21:50\",\"SegFlightNumber\":\"6E-6622\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:50\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"localFromDateTime\":\"2023-08-08 10:40\",\"localToDateTime\":\"2023-08-08 21:50\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS103300615663\",\"amount\":8164,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-05T17:26:55.980\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138912\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6004\",\"eT\":\"320\"},\"stops\":0,\"duration\":80,\"cT\":415,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"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\":\"2023-08-08T10:40\",\"at\":\"2023-08-08T12:00\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138913\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6622\",\"eT\":\"321\"},\"stops\":0,\"duration\":175,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"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\":\"2023-08-08T18:55\",\"at\":\"2023-08-08T21:50\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":2208,\"BF\":5956,\"TF\":8164,\"IGST\":72,\"NCM\":285,\"NF\":7879},\"afC\":{\"TAF\":{\"MFT\":72,\"YQ\":0,\"MF\":400,\"OT\":1433,\"AGST\":303},\"NCM\":{\"TDS\":-15,\"OT\":300}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"756419\",\"TPSysId\":\"756420\",\"VersionId\":[\"226163\"],\"CustomerSysId\":\"441548\",\"TrxId\":\"62374\",\"FareBreakdownid\":[\"380848\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000396098','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.247','2023-07-05 11:54:31','2023-07-05 11:54:31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-07-000008',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(92,0,15,59951,0,0,NULL,'2023-07-06','BKRS104100615703','TJS104100615703','AI-543','Air India','',1,'514c6-1492c-b68fb-70071','42','12:15:00','15:25:00',0,'G',190,'3h 10m',7701,2262,'DEL','BLR','Non-stop',1,1,3487,'19-18-11-3031331401_0DELBLRAI543_39021894279167',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',3000,772,0,300,0,400,3487,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS104100615703\",\"bookingId_TJ\":\"TJS104100615703\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-07-06T12:15\",\"LocalFromTime\":\"2023-07-06 12:15\",\"FromUTCTime\":\"2023-07-06T12:15\",\"LocalToTime\":\"2023-07-06 15:25\",\"ToUTCTime\":\"2023-07-06T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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\":{\"ACF\":3000,\"CCF\":50,\"CCFT\":9,\"ACFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-3031331401_0DELBLRAI543_39056416777159\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"374\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-06T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-06T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"514c6-1492c-b68fb-70071\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-05T17:39:24.471\",\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100615703\",\"bookingId_TJ\":\"TJS104100615703\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-07-06T12:15\",\"LocalFromTime\":\"2023-07-06 12:15\",\"FromUTCTime\":\"2023-07-06T12:15\",\"LocalToTime\":\"2023-07-06 15:25\",\"ToUTCTime\":\"2023-07-06T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"ApiResultIndex\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"514c6-1492c-b68fb-70071\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-05T17:39:24.471\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"374\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-06T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-06T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"localFromDateTime\":\"2023-07-06 12:15\",\"localToDateTime\":\"2023-07-06 15:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'11000000396114','','TRANSACTION IS TIMEDOUT.',NULL,NULL,'0','103.117.14.247','2023-07-05 12:08:56','2023-07-05 12:08: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),(93,0,24,59951,0,0,NULL,'2023-07-07','BKRS109800616264','TJS109800616264','6E-307','IndiGo','1',1,'16b6d-11bc4-ba3d4-43d29','267','12:50:00','18:55:00',0,'R',365,'6h 5m',974,2262,'ATQ','BLR','1 Stop(s)',1,1,8607,'5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',6797,2095,0,1276,0,400,8607,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS109800616264\",\"bookingId_TJ\":\"TJS109800616264\",\"FlightNumber\":\"6E-307\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-07-07T12:50\",\"LocalFromTime\":\"2023-07-07 12:50\",\"FromUTCTime\":\"2023-07-07T12:50\",\"LocalToTime\":\"2023-07-07 18:55\",\"ToUTCTime\":\"2023-07-07T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8892,\"PublishedFareTxt\":\"8,892\",\"ApiResultIndex\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6797,\"Tax\":2095,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":347,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8892,\"PublishedFare\":8607,\"OfferedFare\":8607,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5986422478882\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2095,\"BaseFareCal\":8607,\"BaseFare\":6797,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":347,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8607,\"CostToCustomer\":8607,\"BaseFareCal\":8607,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8607,\"intOfferedFare\":8607,\"intPublishFare\":8892,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"601\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-07-07T14:20\",\"SegFlightNumber\":\"6E-307\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"602\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-07T18:55\",\"SegFlightNumber\":\"6E-435\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-07-07T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"601\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"16b6d-11bc4-ba3d4-43d29\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T13:28:58.431\",\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"ATQ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":974,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS109800616264\",\"bookingId_TJ\":\"TJS109800616264\",\"FlightNumber\":\"6E-307\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-07-07T12:50\",\"LocalFromTime\":\"2023-07-07 12:50\",\"FromUTCTime\":\"2023-07-07T12:50\",\"LocalToTime\":\"2023-07-07 18:55\",\"ToUTCTime\":\"2023-07-07T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8892,\"ApiResultIndex\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"16b6d-11bc4-ba3d4-43d29\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T13:28:58.431\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6797,\"Tax\":2095,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":347,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8892,\"PublishedFare\":8607,\"OfferedFare\":8607,\"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\":\"1\",\"TaxIN\":2095,\"BaseFareCal\":8607,\"BaseFare\":6797,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":347,\"MFT\":72,\"OT\":1276,\"MU\":0,\"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\":\"601\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-07-07T14:20\",\"SegFlightNumber\":\"6E-307\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"602\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-07T18:55\",\"SegFlightNumber\":\"6E-435\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-07-07T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_5978564272894\",\"localFromDateTime\":\"2023-07-07 12:50\",\"localToDateTime\":\"2023-07-07 18:55\",\"strSourceAirportCode\":\"ATQ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":974,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','136.226.252.93','2023-07-06 07:59:20','2023-07-06 07:59:20',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),(94,0,1,59951,0,0,NULL,'2023-08-03','BKRS102100616893','TJS102100616893','AI-822','Air India','',1,'7a76b-f87b2-8e650-86a43','42','15:55:00','22:35:00',0,'W',400,'6h 40m',13021,2262,'IXJ','BLR','1 Stop(s)',2,1,23978,'NA',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',19400,5148,0,2666,0,800,23978,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS102100616893\",\"bookingId_TJ\":\"TJS102100616893\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-08-03T15:55\",\"LocalFromTime\":\"2023-08-03 15:55\",\"FromUTCTime\":\"2023-08-03T15:55\",\"LocalToTime\":\"2023-08-03 22:35\",\"ToUTCTime\":\"2023-08-03T22:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":400,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"6h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":24548,\"PublishedFareTxt\":\"24,548\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19400,\"Tax\":5148,\"YQTax\":0,\"OtherCharges\":2666,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":998,\"CarrierMiscFee\":540,\"MUFee\":0,\"intPublishedFare\":24548,\"PublishedFare\":23978,\"OfferedFare\":23978,\"CommissionEarned\":570,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7660010111_0IXJDELAI822DELBLRAI512_23065882974532\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":570,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5148,\"BaseFareCal\":23978,\"BaseFare\":19400,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":998,\"MFT\":144,\"OT\":2666,\"MU\":0,\"YR\":540,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":23978,\"CostToCustomer\":23978,\"BaseFareCal\":23978,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":23978,\"intOfferedFare\":23978,\"intPublishFare\":24548,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":\"30\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":570,\"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\":\"176\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-03T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-03T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":110,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"177\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-03T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7a76b-f87b2-8e650-86a43\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:13:37.892\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102100616893\",\"bookingId_TJ\":\"TJS102100616893\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-08-03T15:55\",\"LocalFromTime\":\"2023-08-03 15:55\",\"FromUTCTime\":\"2023-08-03T15:55\",\"LocalToTime\":\"2023-08-03 22:35\",\"ToUTCTime\":\"2023-08-03T22:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":400,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"6h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":24548,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"7a76b-f87b2-8e650-86a43\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:13:37.892\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19400,\"Tax\":5148,\"YQTax\":0,\"OtherCharges\":2666,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":998,\"CarrierMiscFee\":540,\"MUFee\":0,\"intPublishedFare\":24548,\"PublishedFare\":23978,\"OfferedFare\":23978,\"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\":5148,\"BaseFareCal\":23978,\"BaseFare\":19400,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":998,\"MFT\":144,\"OT\":2666,\"MU\":0,\"YR\":540,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"176\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-03T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-03T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":110,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"177\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-03T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-08-03 15:55\",\"localToDateTime\":\"2023-08-03 22:35\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.117.14.247','2023-07-06 12:44:29','2023-07-06 12:44:29',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),(95,0,1,59951,0,0,NULL,'2023-08-07','BKRS103900616899','TJS103900616899','AI-822','Air India','',1,'f2941-b062a-d32f5-dc6e8','42','15:55:00','22:25:00',0,'W',390,'6h 30m',13021,974,'IXJ','ATQ','1 Stop(s)',1,1,9500,'15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',7330,2455,0,1333,0,400,9500,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS103900616899\",\"bookingId_TJ\":\"TJS103900616899\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2023-08-07T15:55\",\"LocalFromTime\":\"2023-08-07 15:55\",\"FromUTCTime\":\"2023-08-07T15:55\",\"LocalToTime\":\"2023-08-07 22:25\",\"ToUTCTime\":\"2023-08-07T22:25\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Mon, 07 Aug\",\"ArrivalDateTxt\":\"Mon, 07 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9785,\"PublishedFareTxt\":\"9,785\",\"ApiResultIndex\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7330,\"Tax\":2455,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":9785,\"PublishedFare\":9500,\"OfferedFare\":9500,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7964331244_0IXJDELAI822DELATQAI479_23336634193478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2455,\"BaseFareCal\":9500,\"BaseFare\":7330,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":380,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9500,\"CostToCustomer\":9500,\"BaseFareCal\":9500,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9500,\"intOfferedFare\":9500,\"intPublishFare\":9785,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"559\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-07T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-07T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":210,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"560\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-08-07T22:25\",\"SegFlightNumber\":\"AI-479\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-07T20:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:55\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f2941-b062a-d32f5-dc6e8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:18:08.642\",\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103900616899\",\"bookingId_TJ\":\"TJS103900616899\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2023-08-07T15:55\",\"LocalFromTime\":\"2023-08-07 15:55\",\"FromUTCTime\":\"2023-08-07T15:55\",\"LocalToTime\":\"2023-08-07 22:25\",\"ToUTCTime\":\"2023-08-07T22:25\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Mon, 07 Aug\",\"ArrivalDateTxt\":\"Mon, 07 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9785,\"ApiResultIndex\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"f2941-b062a-d32f5-dc6e8\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:18:08.642\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7330,\"Tax\":2455,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":9785,\"PublishedFare\":9500,\"OfferedFare\":9500,\"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\":\"1\",\"TaxIN\":2455,\"BaseFareCal\":9500,\"BaseFare\":7330,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":380,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"559\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-07T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-07T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":210,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"560\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-08-07T22:25\",\"SegFlightNumber\":\"AI-479\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-07T20:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:55\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"localFromDateTime\":\"2023-08-07 15:55\",\"localToDateTime\":\"2023-08-07 22:25\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.117.14.247','2023-07-06 12:49:50','2023-07-06 12:49: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),(96,0,1,59951,0,0,NULL,'2023-08-08','BKRS100800616911','TJS100800616911','AI-542','Air India','',1,'88e99-7a359-97c4a-a1400','42','15:00:00','17:00:00',0,'G',120,'2h 0m',2262,7701,'BLR','DEL','Non-stop',1,1,3187,'19-18-11-3881992761_0BLRDELAI542_23724143808119',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',2700,772,0,300,0,400,3187,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS100800616911\",\"bookingId_TJ\":\"TJS100800616911\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-08-08T15:00\",\"LocalFromTime\":\"2023-08-08 15:00\",\"FromUTCTime\":\"2023-08-08T15:00\",\"LocalToTime\":\"2023-08-08 17:00\",\"ToUTCTime\":\"2023-08-08T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-3881992761_0BLRDELAI542_23763201472772\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"220\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-08T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88e99-7a359-97c4a-a1400\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-06T18:25:15.211\",\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-08 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\":\"BKRS100800616911\",\"bookingId_TJ\":\"TJS100800616911\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-08-08T15:00\",\"LocalFromTime\":\"2023-08-08 15:00\",\"FromUTCTime\":\"2023-08-08T15:00\",\"LocalToTime\":\"2023-08-08 17:00\",\"ToUTCTime\":\"2023-08-08T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"ApiResultIndex\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"88e99-7a359-97c4a-a1400\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-06T18:25:15.211\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"220\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-08T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"localFromDateTime\":\"2023-08-08 15:00\",\"localToDateTime\":\"2023-08-08 17:00\",\"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','103.117.14.247','2023-07-06 12:54:15','2023-07-06 12:54: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),(97,0,1,59951,0,0,NULL,'2023-08-09','BKRS103000617281','TJS103000617281','6E-2186','IndiGo','1',1,'25b45-bdccb-a3304-a9b30','267','09:40:00','16:10:00',0,'R',390,'6h 30m',13021,2262,'IXJ','BLR','1 Stop(s)',1,1,7879,'5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/6E.gif','INR',5956,2208,0,1433,0,400,7879,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS103000617281\",\"bookingId_TJ\":\"TJS103000617281\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-08-09T09:40\",\"LocalFromTime\":\"2023-08-09 09:40\",\"FromUTCTime\":\"2023-08-09T09:40\",\"LocalToTime\":\"2023-08-09 16:10\",\"ToUTCTime\":\"2023-08-09T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Wed, 09 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"PublishedFareTxt\":\"8,164\",\"ApiResultIndex\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12968139931898\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7879,\"CostToCustomer\":7879,\"BaseFareCal\":7879,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7879,\"intOfferedFare\":7879,\"intPublishFare\":8164,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"646\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-09T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-09T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T16:10\",\"SegFlightNumber\":\"6E-2514\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25b45-bdccb-a3304-a9b30\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:39:30.197\",\"strTraceId\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103000617281\",\"bookingId_TJ\":\"TJS103000617281\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"strTraceId\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-08-09T09:40\",\"LocalFromTime\":\"2023-08-09 09:40\",\"FromUTCTime\":\"2023-08-09T09:40\",\"LocalToTime\":\"2023-08-09 16:10\",\"ToUTCTime\":\"2023-08-09T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Wed, 09 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"ApiResultIndex\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"25b45-bdccb-a3304-a9b30\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:39:30.197\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"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\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"646\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-09T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-09T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T16:10\",\"SegFlightNumber\":\"6E-2514\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_12955400498948\",\"localFromDateTime\":\"2023-08-09 09:40\",\"localToDateTime\":\"2023-08-09 16:10\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.117.14.247','2023-07-07 05:09:16','2023-07-07 05:09:16',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),(98,0,27,59951,0,789482,'TESTPNR','2023-08-03','BKRS104400646590','TJS104400646590','AI-441','Air India','',1,'99e64-9e2cc-52702-1fee3','42','17:15:00','19:30:00',0,'S',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',1,1,4205,'15-2-10-1894062498_63DELBOMAI441_32053864022313',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/AI.gif','INR',3000,1490,0,689,0,400,4205,0,0,0,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"BKRS104400646590\",\"bookingId_TJ\":\"TJS104400646590\",\"FlightNumber\":\"AI-441\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:15\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2023-08-03T17:15\",\"LocalFromTime\":\"2023-08-03 17:15\",\"FromUTCTime\":\"2023-08-03T17:15\",\"LocalToTime\":\"2023-08-03 19:30\",\"ToUTCTime\":\"2023-08-03T19:30\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4490,\"PublishedFareTxt\":\"4,490\",\"ApiResultIndex\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"policyInfo\":\"__nls__Changes permitted 25 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3000,\"policyInfo\":\"__nls__Cancellation permitted 25 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":1490,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":4490,\"PublishedFare\":4205,\"OfferedFare\":4205,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-1894062498_0DELBOMAI441_32068987125363\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1490,\"BaseFareCal\":4205,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4205,\"CostToCustomer\":4205,\"BaseFareCal\":4205,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4205,\"intOfferedFare\":4205,\"intPublishFare\":4490,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"131\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-08-03T19:30\",\"SegFlightNumber\":\"AI-441\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"99e64-9e2cc-52702-1fee3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-08-02T16:00:48.029\",\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-03 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\":\"BKRS104400646590\",\"bookingId_TJ\":\"TJS104400646590\",\"FlightNumber\":\"AI-441\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:15\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2023-08-03T17:15\",\"LocalFromTime\":\"2023-08-03 17:15\",\"FromUTCTime\":\"2023-08-03T17:15\",\"LocalToTime\":\"2023-08-03 19:30\",\"ToUTCTime\":\"2023-08-03T19:30\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4490,\"ApiResultIndex\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"99e64-9e2cc-52702-1fee3\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-08-02T16:00:48.029\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":1490,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":4490,\"PublishedFare\":4205,\"OfferedFare\":4205,\"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\":\"1\",\"TaxIN\":1490,\"BaseFareCal\":4205,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"131\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-08-03T19:30\",\"SegFlightNumber\":\"AI-441\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"localFromDateTime\":\"2023-08-03 17:15\",\"localToDateTime\":\"2023-08-03 19:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS104400646590\",\"amount\":4490,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+919671365732\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-08-02T16:02:08.064\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"144641\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"441\",\"eT\":\"77W\"},\"stops\":0,\"duration\":135,\"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\":\"2023-08-03T17:15\",\"at\":\"2023-08-03T19:30\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"1111111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Anuj\",\"lN\":\"kumar\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":4205,\"IGST\":72,\"TF\":4490,\"NCM\":285,\"TAF\":1490,\"BF\":3000},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"MF\":400,\"YR\":170,\"OT\":689,\"AGST\":159,\"MFT\":72}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"789481\",\"TPSysId\":\"789482\",\"VersionId\":[\"237120\"],\"CustomerSysId\":\"460515\",\"TrxId\":\"64917\",\"FareBreakdownid\":[\"382559\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000410309','','TRANSACTION IS SUCCESSFUL.',NULL,NULL,'0','103.117.14.145','2023-08-02 10:29:33','2023-08-02 10:29:33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-000009',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(99,0,4,59951,0,0,NULL,'2023-08-10','BKRS105700647768','TJS105700647768','SG-8263','SpiceJet','1',1,'d0db9-e6697-20868-d2944','463','07:10:00','09:10:00',0,'DD',120,'2h 0m',7701,14323,'DEL','CCU','Non-stop',1,1,4049,'4-5374095830_2DELCCUSG8263_32918503441526',1,1,0,'https://www.ktas.in/public/upload/AirlineLogo/SG.gif','INR',2849,1485,0,863,0,400,4049,0,0,0,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKRS105700647768\",\"bookingId_TJ\":\"TJS105700647768\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2023-08-10T07:10\",\"LocalFromTime\":\"2023-08-10 07:10\",\"FromUTCTime\":\"2023-08-10T07:10\",\"LocalToTime\":\"2023-08-10 09:10\",\"ToUTCTime\":\"2023-08-10T09:10\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":29,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4334,\"PublishedFareTxt\":\"4,334\",\"ApiResultIndex\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-CCU\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2849,\"Tax\":1485,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4334,\"PublishedFare\":4049,\"OfferedFare\":4049,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5374095830_0DELCCUSG8263_32926781258679\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1485,\"BaseFareCal\":4049,\"BaseFare\":2849,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":150,\"MFT\":72,\"OT\":863,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4049,\"CostToCustomer\":4049,\"BaseFareCal\":4049,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4049,\"intOfferedFare\":4049,\"intPublishFare\":4334,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-10T09:10\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VGSW\",\"Price\":395,\"amount\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"FPML\",\"Price\":395,\"amount\":395,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NVSW\",\"Price\":445,\"amount\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFCM\",\"Price\":445,\"amount\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VGML\",\"Price\":495,\"amount\":495,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"CHML\",\"Price\":495,\"amount\":495,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NVML\",\"Price\":545,\"amount\":545,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"LCVS\",\"Price\":545,\"amount\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"JNML\",\"Price\":545,\"amount\":545,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFVG\",\"Price\":545,\"amount\":545,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"DBML\",\"Price\":545,\"amount\":545,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VCC2\",\"Price\":595,\"amount\":595,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC6\",\"Price\":595,\"amount\":595,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC5\",\"Price\":595,\"amount\":595,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC4\",\"Price\":595,\"amount\":595,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC2\",\"Price\":595,\"amount\":595,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC1\",\"Price\":595,\"amount\":595,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"LCNS\",\"Price\":595,\"amount\":595,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFNV\",\"Price\":595,\"amount\":595,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"DNVL\",\"Price\":595,\"amount\":595,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d0db9-e6697-20868-d2944\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-08-03T16:12:53.839\",\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 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\":\"BKRS105700647768\",\"bookingId_TJ\":\"TJS105700647768\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2023-08-10T07:10\",\"LocalFromTime\":\"2023-08-10 07:10\",\"FromUTCTime\":\"2023-08-10T07:10\",\"LocalToTime\":\"2023-08-10 09:10\",\"ToUTCTime\":\"2023-08-10T09:10\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":29,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4334,\"ApiResultIndex\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"d0db9-e6697-20868-d2944\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-08-03T16:12:53.839\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2849,\"Tax\":1485,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4334,\"PublishedFare\":4049,\"OfferedFare\":4049,\"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\":\"1\",\"TaxIN\":1485,\"BaseFareCal\":4049,\"BaseFare\":2849,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":150,\"MFT\":72,\"OT\":863,\"MU\":0,\"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\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-10T09:10\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"localFromDateTime\":\"2023-08-10 07:10\",\"localToDateTime\":\"2023-08-10 09:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'NA','','UNIDENTIFIED MERCHANT DOMAIN.',NULL,NULL,'0','103.117.14.145','2023-08-03 10:41:38','2023-08-03 10:41: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),(102,0,8,59951,0,0,NULL,'2023-12-25',NULL,NULL,'EY-197','Etihad Airways','',1,'c2010-c50f3-2c19a-785de','0','09:30:00','13:20:00',0,'U',0,'30h 20m',18676,12905,'BOM','IST','1 Stop(s)',1,1,53722,'32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215',1,1,1,'https://www.ktas.in/public/upload/AirlineLogo/EY.gif','INR',27135,28250.6,19906,5961,0,20,53722,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-09-13 05:54:32','2023-09-13 05:54: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),(103,102,8,59951,0,0,NULL,'2023-12-25',NULL,NULL,'EY-197','Etihad Airways','',1,'c2010-c50f3-2c19a-785de','0','07:30:00','12:40:00',0,'U',0,'26h 40m',12905,18676,'IST','BOM','1 Stop(s)',1,1,53722,'32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215',2,1,1,'https://www.ktas.in/public/upload/AirlineLogo/EY.gif','INR',27135,28250.6,19906,5961,0,20,53722,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-09-13 05:54:32','2023-09-13 05:54: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),(104,0,28,92553,0,0,NULL,'2023-10-05','DMCS100400715172','TJS100400715172','SG-327','SpiceJet','1',2,'a9a87-24c3d-55151-bbd50','463','06:10:00','09:20:00',0,'RS',190,'03h 10m',2262,14323,'BLR','CCU','Non-stop',1,1,4006,'4-0556169507_0BLRCCUSG327_32195658756116',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',3030,1261,0,631,0,400,4006,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS100400715172\",\"bookingId_TJ\":\"TJS100400715172\",\"FlightNumber\":\"SG-327\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"a9a87-24c3d-55151-bbd50\",\"apiTraceId\":\"4-0556169507_0BLRCCUSG327_32195658756116\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2023-10-05T06:10\",\"LocalFromTime\":\"2023-10-05 06:10\",\"FromUTCTime\":\"2023-10-05T06:10\",\"LocalToTime\":\"2023-10-05 09:20\",\"ToUTCTime\":\"2023-10-05T09:20\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"03h 10m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,006\",\"ApiResultIndex\":\"4-0556169507_0BLRCCUSG327_32195658756116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3030,\"Tax\":1261,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4291,\"PublishedFare\":4006,\"PublishedFareAgent\":4006,\"OfferedFareAgent\":4006,\"OfferedFare\":4006,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-0556169507_0BLRCCUSG327_32585891256386\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1261,\"TotalBaseFare\":4291,\"BaseFareCal\":4006,\"BaseFare\":3030,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":158,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-CCU\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4006,\"CostToCustomer\":4006,\"BaseFareCal\":4006,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4006,\"intOfferedFare\":4006,\"intPublishFare\":4291,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"701\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-10-05T09:20\",\"SegFlightNumber\":\"SG-327\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-05T06:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":190,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-0556169507_0BLRCCUSG327_32195658756116\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-CCU\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"14323\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-09-28 05:42:58','2023-09-28 05:42:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','tinku singh',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(105,0,28,92553,863606,863607,'W8MUUC','2023-10-10','DMCS100700715182','TJS100700715182','SG-8136','SpiceJet','1',2,'c0978-f2273-8d1c2-8e692','463','02:00:00','04:55:00',0,'SS',175,'03h 55m',2262,7701,'BLR','DEL','Non-stop',3,1,8732.5,'4-4216830804_0BLRDELSG8136_61219546258224',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',6664,2638.5,0,1262,0,875,8732.5,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS100700715182\",\"bookingId_TJ\":\"TJS100700715182\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"apiTraceId\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:55\",\"TravelDate\":\"2023-10-10T02:00\",\"LocalFromTime\":\"2023-10-10 02:00\",\"FromUTCTime\":\"2023-10-10T02:00\",\"LocalToTime\":\"2023-10-10 04:55\",\"ToUTCTime\":\"2023-10-10T04:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 55m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,733\",\"ApiResultIndex\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":6664,\"Tax\":2638.5,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9302.5,\"PublishedFare\":8732.5,\"PublishedFareAgent\":8732.5,\"OfferedFareAgent\":8732.5,\"OfferedFare\":8732.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4216830804_0BLRDELSG8136_32810106665115\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":9302.5,\"oldFare\":9214,\"tripbinfo\":{\"BLR-DEL\":{\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8732.5,\"CostToCustomer\":8732.5,\"BaseFareCal\":8732.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8732.5,\"intOfferedFare\":8732.5,\"intPublishFare\":9302.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T02:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":175,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4216830804_0BLRDELSG8136_61219546258224\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',12,'{\"bookingId\":\"DMCS100700715182\",\"bookingId_TJ\":\"TJS100700715182\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"apiTraceId\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:55\",\"TravelDate\":\"2023-10-10T02:00\",\"LocalFromTime\":\"2023-10-10 02:00\",\"FromUTCTime\":\"2023-10-10T02:00\",\"LocalToTime\":\"2023-10-10 04:55\",\"ToUTCTime\":\"2023-10-10T04:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 55m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,733\",\"ApiResultIndex\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":6664,\"Tax\":2638.5,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9302.5,\"PublishedFare\":8732.5,\"PublishedFareAgent\":8732.5,\"OfferedFareAgent\":8732.5,\"OfferedFare\":8732.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4216830804_0BLRDELSG8136_32810106665115\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":9302.5,\"oldFare\":9214,\"tripbinfo\":{\"BLR-DEL\":{\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8732.5,\"CostToCustomer\":8732.5,\"BaseFareCal\":8732.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8732.5,\"intOfferedFare\":8732.5,\"intPublishFare\":9302.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T02:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":175,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4216830804_0BLRDELSG8136_61219546258224\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS100700715182\",\"amount\":9302.5,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-28T11:20:54.924\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156104\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8136\",\"eT\":\"737\"},\"stops\":0,\"duration\":175,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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 3\"},\"dt\":\"2023-10-10T02:00\",\"at\":\"2023-10-10T04:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"tinku\",\"lN\":\"singh\"},{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"riya\",\"lN\":\"singh\"},{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"rinki\",\"lN\":\"singh\",\"dob\":\"2022-09-01\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":570,\"NF\":8732.5,\"TF\":9302.5,\"BF\":6664,\"TAF\":2638.5,\"IGST\":157.5},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"YQ\":0,\"MFT\":157.5,\"AGST\":344,\"OT\":1262,\"MF\":875}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"863606\",\"TPSysId\":\"863607\",\"VersionId\":[\"263191\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"69946\",\"FareBreakdownid\":[\"385989\",\"385990\",\"385991\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'967FB6DEFE6F4D888A5975B19C4721D0','','',NULL,'967FB6DEFE6F4D888A5975B19C4721D0','0',NULL,'2023-09-28 05:48:29','2023-09-28 05:48:29',NULL,NULL,NULL,NULL,NULL,NULL,'4',NULL,'12','neha kannojia','tinku singh (+2)','2023-09-000010',NULL,NULL,NULL,'SALE','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(106,0,28,92553,0,0,NULL,'2023-10-19','DMCS113400715222','TJS113400715222','SG-11','SpiceJet','1',2,'e8fc7-d23fa-4d8b0-1b19f','463','07:45:00','10:10:00',0,'SS',235,'02h 25m',7701,8219,'DEL','DXB','Non-stop',3,1,6705.5,'4-7218128731_0DELDXBSG11_33821337106407',1,1,1,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',4498,2207.5,0,1704,0,225,6705.5,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS113400715222\",\"bookingId_TJ\":\"TJS113400715222\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"apiTraceId\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-19T07:45\",\"LocalFromTime\":\"2023-10-19 07:45\",\"FromUTCTime\":\"2023-10-19T07:45\",\"LocalToTime\":\"2023-10-19 10:10\",\"ToUTCTime\":\"2023-10-19T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Thu, 19 Oct\",\"ArrivalDateTxt\":\"Thu, 19 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":6705.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-7218128731_0DELDXBSG11_33890093070259\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6705.5,\"CostToAgent\":6705.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":996.5,\"TotalBaseFare\":1995.5,\"BaseFareCal\":1995.5,\"BaseFare\":999,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":56,\"MFT\":13.5,\"OT\":852,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1995.5,\"CostToAgent\":1995.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":996.5,\"TotalBaseFare\":1995.5,\"BaseFareCal\":1995.5,\"BaseFare\":999,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":56,\"MFT\":13.5,\"OT\":852,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1995.5,\"CostToAgent\":1995.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2714.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":6705.5,\"oldFare\":6440,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6705.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"384\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-19T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-19T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-DXB\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-09-28 06:11:23','2023-09-28 06:11:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','rahul kumar (+2)',NULL,NULL,NULL,NULL,'SALE','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(107,0,28,92553,863919,863920,'HTG5KY','2023-10-05','DMCS108900715456','TJS108900715456','IX-1214','AI Express','1',1,'a745b-19a97-5982c-4d0ca','82','00:40:00','08:00:00',0,'BT',440,'07h 20m',7701,2262,'DEL','BLR','1 Stop(s)',4,1,16986,'22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169',1,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/IX.gif','INR',12924,4917,0,2889,0,1200,16986,0,0,0,0,0,0,0,0,9000,1800,0,'{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"IX-1214\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2023-10-05T00:40\",\"LocalFromTime\":\"2023-10-05 00:40\",\"FromUTCTime\":\"2023-10-05T00:40\",\"LocalToTime\":\"2023-10-05 08:00\",\"ToUTCTime\":\"2023-10-05T08:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":440,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"07h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,986\",\"ApiResultIndex\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":12924,\"Tax\":4917,\"YQTax\":0,\"OtherCharges\":2889,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":612,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17841,\"PublishedFare\":16986,\"PublishedFareAgent\":16986,\"OfferedFareAgent\":16986,\"OfferedFare\":16986,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3278,\"TotalBaseFare\":10894,\"BaseFareCal\":10324,\"BaseFare\":7616,\"CommissionEarned\":570,\"TDS\":0,\"MF\":800,\"YQ\":0,\"AGST\":408,\"MFT\":144,\"OT\":1926,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10324,\"CostToAgent\":10324,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1639,\"TotalBaseFare\":5447,\"BaseFareCal\":5162,\"BaseFare\":3808,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":204,\"MFT\":72,\"OT\":963,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5162,\"CostToAgent\":5162,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":34956,\"oldFare\":36456,\"tripbinfo\":{\"DEL-COK\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"COK-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":855,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":16986,\"CostToCustomer\":16986,\"BaseFareCal\":16986,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":16986,\"intOfferedFare\":16986,\"intPublishFare\":17841,\"TripjackMarkup\":0,\"TripjackCommission\":855,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"16\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-10-05T03:10\",\"SegFlightNumber\":\"IX-1214\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-05T00:40\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":150,\"GroundTime\":230,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"17\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-05T08:00\",\"SegFlightNumber\":\"IX-763\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-10-05T07:00\",\"TripIndicator\":2,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":60,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAF\",\"Price\":0,\"Weight\":\"+ 25 Kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAD\",\"Price\":0,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAC\",\"Price\":0,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAB\",\"Price\":0,\"Weight\":\"+ 5 kg Xcess Baggage\"}],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"IX-1214\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2023-10-05T00:40\",\"LocalFromTime\":\"2023-10-05 00:40\",\"FromUTCTime\":\"2023-10-05T00:40\",\"LocalToTime\":\"2023-10-05 08:00\",\"ToUTCTime\":\"2023-10-05T08:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":440,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"07h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,986\",\"ApiResultIndex\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":12924,\"Tax\":4917,\"YQTax\":0,\"OtherCharges\":2889,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":612,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17841,\"PublishedFare\":16986,\"PublishedFareAgent\":16986,\"OfferedFareAgent\":16986,\"OfferedFare\":16986,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3278,\"TotalBaseFare\":10894,\"BaseFareCal\":10324,\"BaseFare\":7616,\"CommissionEarned\":570,\"TDS\":0,\"MF\":800,\"YQ\":0,\"AGST\":408,\"MFT\":144,\"OT\":1926,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10324,\"CostToAgent\":10324,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1639,\"TotalBaseFare\":5447,\"BaseFareCal\":5162,\"BaseFare\":3808,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":204,\"MFT\":72,\"OT\":963,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5162,\"CostToAgent\":5162,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":34956,\"oldFare\":36456,\"tripbinfo\":{\"DEL-COK\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"COK-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":855,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":16986,\"CostToCustomer\":16986,\"BaseFareCal\":16986,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":16986,\"intOfferedFare\":16986,\"intPublishFare\":17841,\"TripjackMarkup\":0,\"TripjackCommission\":855,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"16\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-10-05T03:10\",\"SegFlightNumber\":\"IX-1214\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-05T00:40\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":150,\"GroundTime\":230,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"17\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-05T08:00\",\"SegFlightNumber\":\"IX-763\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-10-05T07:00\",\"TripIndicator\":2,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":60,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAF\",\"Price\":0,\"Weight\":\"+ 25 Kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAD\",\"Price\":0,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAC\",\"Price\":0,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAB\",\"Price\":0,\"Weight\":\"+ 5 kg Xcess Baggage\"}],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS108900715456\",\"amount\":45756,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-28T13:24:05.325\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156168\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"1214\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":150,\"cT\":230,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-05T00:40\",\"at\":\"2023-10-05T03:10\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"156169\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"763\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-05T07:00\",\"at\":\"2023-10-05T08:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"156170\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"407\",\"eT\":\"32N\"},\"stops\":0,\"duration\":145,\"cT\":250,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-10T15:40\",\"at\":\"2023-10-10T18:05\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"156171\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"183\",\"eT\":\"32N\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-10T22:15\",\"at\":\"2023-10-10T23:45\",\"iand\":false,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"sumit\",\"lN\":\"singh\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"kumar\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAC\",\"amount\":4500,\"desc\":\"+ 10 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAC\",\"desc\":\"+ 10 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"inidhi\",\"lN\":\"singh\"},{\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"niya\",\"lN\":\"kannojia\",\"dob\":\"2022-09-01\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":216,\"BF\":26424,\"NCM\":855,\"NF\":44901,\"TF\":45756,\"TAF\":8532,\"SSRP\":10800},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MF\":1200,\"OT\":5874,\"YQ\":0,\"MFT\":216,\"AGST\":1242},\"SSRP\":{\"OT\":10800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"863919\",\"TPSysId\":\"863920\",\"VersionId\":[\"263282\",\"263283\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"69964\",\"FareBreakdownid\":[\"386001\",\"386002\",\"386003\",\"386004\",\"386005\",\"386006\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000439632','F91CF22C9B3340CF9723C87BDADF5823','TRANSACTION IS SUCCESSFUL.','C2A3C4A0659C409C992369216719E45D','62EDE2CF10F54EC3A0D663339A5F62E9','0',NULL,'2023-09-28 07:51:24','2023-09-28 07:51:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','sumit singh (+3)','2023-09-000011',NULL,NULL,NULL,'PROMO','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(108,107,28,92553,863919,863920,'X41GXY','2023-10-10','DMCS108900715456','TJS108900715456','G8-407','Go First','1',1,'a745b-19a97-5982c-4d0ca','240','15:40:00','23:45:00',0,'GS',485,'08h 05m',7701,2262,'BLR','DEL','1 Stop(s)',4,1,17115,'1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929',2,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/G8.gif','INR',13500,3615,0,2985,0,0,17115,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"G8-407\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:40\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-10T15:40\",\"LocalFromTime\":\"2023-10-10 15:40\",\"FromUTCTime\":\"2023-10-10T15:40\",\"LocalToTime\":\"2023-10-10 23:45\",\"ToUTCTime\":\"2023-10-10T23:45\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":485,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"08h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"34,101\",\"ApiResultIndex\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":13500,\"Tax\":3615,\"YQTax\":0,\"OtherCharges\":2985,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":630,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17115,\"PublishedFare\":17115,\"PublishedFareAgent\":17115,\"OfferedFareAgent\":17115,\"OfferedFare\":17115,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2410,\"TotalBaseFare\":10410,\"BaseFareCal\":10410,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":420,\"MFT\":0,\"OT\":1990,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10410,\"CostToAgent\":10410,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1205,\"TotalBaseFare\":5205,\"BaseFareCal\":5205,\"BaseFare\":4000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":210,\"MFT\":0,\"OT\":995,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5205,\"CostToAgent\":5205,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-VNS\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"VNS-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":17115,\"CostToCustomer\":17115,\"BaseFareCal\":17115,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":17115,\"intOfferedFare\":17115,\"intPublishFare\":17115,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"491\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-10-10T18:05\",\"SegFlightNumber\":\"G8-407\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T15:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":250,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":true},{\"segmentid\":\"492\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T23:45\",\"SegFlightNumber\":\"G8-183\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-10-10T22:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"G8-407\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:40\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-10T15:40\",\"LocalFromTime\":\"2023-10-10 15:40\",\"FromUTCTime\":\"2023-10-10T15:40\",\"LocalToTime\":\"2023-10-10 23:45\",\"ToUTCTime\":\"2023-10-10T23:45\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":485,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"08h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"34,101\",\"ApiResultIndex\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":13500,\"Tax\":3615,\"YQTax\":0,\"OtherCharges\":2985,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":630,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17115,\"PublishedFare\":17115,\"PublishedFareAgent\":17115,\"OfferedFareAgent\":17115,\"OfferedFare\":17115,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2410,\"TotalBaseFare\":10410,\"BaseFareCal\":10410,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":420,\"MFT\":0,\"OT\":1990,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10410,\"CostToAgent\":10410,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1205,\"TotalBaseFare\":5205,\"BaseFareCal\":5205,\"BaseFare\":4000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":210,\"MFT\":0,\"OT\":995,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5205,\"CostToAgent\":5205,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-VNS\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"VNS-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":17115,\"CostToCustomer\":17115,\"BaseFareCal\":17115,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":17115,\"intOfferedFare\":17115,\"intPublishFare\":17115,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"491\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-10-10T18:05\",\"SegFlightNumber\":\"G8-407\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T15:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":250,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":true},{\"segmentid\":\"492\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T23:45\",\"SegFlightNumber\":\"G8-183\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-10-10T22:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS108900715456\",\"amount\":45756,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-28T13:24:05.325\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156168\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"1214\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":150,\"cT\":230,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-05T00:40\",\"at\":\"2023-10-05T03:10\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"156169\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"763\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-05T07:00\",\"at\":\"2023-10-05T08:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"156170\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"407\",\"eT\":\"32N\"},\"stops\":0,\"duration\":145,\"cT\":250,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-10T15:40\",\"at\":\"2023-10-10T18:05\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"156171\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"183\",\"eT\":\"32N\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-10T22:15\",\"at\":\"2023-10-10T23:45\",\"iand\":false,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"sumit\",\"lN\":\"singh\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"kumar\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAC\",\"amount\":4500,\"desc\":\"+ 10 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAC\",\"desc\":\"+ 10 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"inidhi\",\"lN\":\"singh\"},{\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"niya\",\"lN\":\"kannojia\",\"dob\":\"2022-09-01\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":216,\"BF\":26424,\"NCM\":855,\"NF\":44901,\"TF\":45756,\"TAF\":8532,\"SSRP\":10800},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MF\":1200,\"OT\":5874,\"YQ\":0,\"MFT\":216,\"AGST\":1242},\"SSRP\":{\"OT\":10800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"863919\",\"TPSysId\":\"863920\",\"VersionId\":[\"263282\",\"263283\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"69964\",\"FareBreakdownid\":[\"386001\",\"386002\",\"386003\",\"386004\",\"386005\",\"386006\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000439632','F91CF22C9B3340CF9723C87BDADF5823','TRANSACTION IS SUCCESSFUL.','C2A3C4A0659C409C992369216719E45D','62EDE2CF10F54EC3A0D663339A5F62E9','0',NULL,'2023-09-28 07:51:24','2023-09-28 07:51:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','sumit singh (+3)','2023-09-000011',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(109,0,29,92553,865173,865174,'U84LXS','2023-09-29','DMCS105600716247','TJS105600716247','SG-534','SpiceJet','1',2,'ff4f7-0204d-78403-d861a','463','21:30:00','00:10:00',0,'RS',160,'03h 40m',7701,2262,'DEL','BLR','Non-stop',3,1,12884.5,'4-2897338973_0DELBLRSG534_1424138439000',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',10836,2618.5,0,1036,0,875,12884.5,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS105600716247\",\"bookingId_TJ\":\"TJS105600716247\",\"FlightNumber\":\"SG-534\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"apiTraceId\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"00:10\",\"TravelDate\":\"2023-09-29T21:30\",\"LocalFromTime\":\"2023-09-29 21:30\",\"FromUTCTime\":\"2023-09-29T21:30\",\"LocalToTime\":\"2023-09-30 00:10\",\"ToUTCTime\":\"2023-09-30T00:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 29 Sep\",\"ArrivalDateTxt\":\"Sat, 30 Sep\",\"FlightDuration\":\"03h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"12,885\",\"ApiResultIndex\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":10836,\"Tax\":2618.5,\"YQTax\":0,\"OtherCharges\":1036,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13454.5,\"PublishedFare\":12884.5,\"PublishedFareAgent\":12884.5,\"OfferedFareAgent\":12884.5,\"OfferedFare\":12884.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-2897338973_0DELBLRSG534_1547737928689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":13454.5,\"oldFare\":13366,\"tripbinfo\":{\"DEL-BLR\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12884.5,\"CostToCustomer\":12884.5,\"BaseFareCal\":12884.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12884.5,\"intOfferedFare\":12884.5,\"intPublishFare\":13454.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"39\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-09-30T00:10\",\"SegFlightNumber\":\"SG-534\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-09-29T21:30\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":160,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"00:10\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"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-2897338973_0DELBLRSG534_1424138439000\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-09-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS105600716247\",\"bookingId_TJ\":\"TJS105600716247\",\"FlightNumber\":\"SG-534\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"apiTraceId\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"00:10\",\"TravelDate\":\"2023-09-29T21:30\",\"LocalFromTime\":\"2023-09-29 21:30\",\"FromUTCTime\":\"2023-09-29T21:30\",\"LocalToTime\":\"2023-09-30 00:10\",\"ToUTCTime\":\"2023-09-30T00:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 29 Sep\",\"ArrivalDateTxt\":\"Sat, 30 Sep\",\"FlightDuration\":\"03h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"12,885\",\"ApiResultIndex\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":10836,\"Tax\":2618.5,\"YQTax\":0,\"OtherCharges\":1036,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13454.5,\"PublishedFare\":12884.5,\"PublishedFareAgent\":12884.5,\"OfferedFareAgent\":12884.5,\"OfferedFare\":12884.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-2897338973_0DELBLRSG534_1547737928689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":13454.5,\"oldFare\":13366,\"tripbinfo\":{\"DEL-BLR\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12884.5,\"CostToCustomer\":12884.5,\"BaseFareCal\":12884.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12884.5,\"intOfferedFare\":12884.5,\"intPublishFare\":13454.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"39\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-09-30T00:10\",\"SegFlightNumber\":\"SG-534\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-09-29T21:30\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":160,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"00:10\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"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-2897338973_0DELBLRSG534_1424138439000\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-09-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS105600716247\",\"amount\":13454.5,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"anuj@catpl.co.in\"],\"contacts\":[\"917009078210\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-29T11:41:40.868\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156306\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"534\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-09-29T21:30\",\"at\":\"2023-09-30T00:10\",\"iand\":true,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Anuj\",\"lN\":\"kumar\"},{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Chinki\",\"lN\":\"sharma\"},{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"Ankit\",\"lN\":\"dhiman\",\"dob\":\"2023-08-23\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":10836,\"NF\":12884.5,\"TAF\":2618.5,\"NCM\":570,\"IGST\":157.5,\"TF\":13454.5},\"afC\":{\"TAF\":{\"OT\":1036,\"YQ\":0,\"AGST\":550,\"MFT\":157.5,\"MF\":875},\"NCM\":{\"OT\":600,\"TDS\":-30}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"865173\",\"TPSysId\":\"865174\",\"VersionId\":[\"263698\"],\"CustomerSysId\":\"500612\",\"TrxId\":\"70053\",\"FareBreakdownid\":[\"386048\",\"386049\",\"386050\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'163102A54DC141D294661480AF9CA11E','','',NULL,'163102A54DC141D294661480AF9CA11E','0',NULL,'2023-09-29 06:09:19','2023-09-29 06:09:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','Anuj kumar (+2)','2023-09-000012',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(110,0,28,92553,0,0,NULL,'2023-10-10','DMCS106500716627','TJS106500716627','AI-439','Air India','',1,'21683-ae861-fa5d7-b4a7f','42','05:50:00','08:50:00',0,'S',180,'03h 00m',7701,6000,'DEL','MAA','Non-stop',1,1,5427,'15-2-10-7440978140_0DELMAAAI439_13192583867352',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/AI.gif','INR',4164,1548,0,689,0,400,5427,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS106500716627\",\"bookingId_TJ\":\"TJS106500716627\",\"FlightNumber\":\"AI-439\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"apiTraceId\":\"15-2-10-7440978140_0DELMAAAI439_13192583867352\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"05:50\",\"ArrivalTime\":\"08:50\",\"TravelDate\":\"2023-10-10T05:50\",\"LocalFromTime\":\"2023-10-10 05:50\",\"FromUTCTime\":\"2023-10-10T05:50\",\"LocalToTime\":\"2023-10-10 08:50\",\"ToUTCTime\":\"2023-10-10T08:50\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 00m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,427\",\"ApiResultIndex\":\"15-2-10-7440978140_0DELMAAAI439_13192583867352\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4164,\"Tax\":1548,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":217,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5712,\"PublishedFare\":5427,\"PublishedFareAgent\":5427,\"OfferedFareAgent\":5427,\"OfferedFare\":5427,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7440978140_0DELMAAAI439_13219548317277\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"S\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1548,\"TotalBaseFare\":5712,\"BaseFareCal\":5427,\"BaseFare\":4164,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":217,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-MAA\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"25 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5427,\"CostToCustomer\":5427,\"BaseFareCal\":5427,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5427,\"intOfferedFare\":5427,\"intPublishFare\":5712,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"390\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-10-10T08:50\",\"SegFlightNumber\":\"AI-439\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-10T05:50\",\"TripIndicator\":1,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":1,\"Duration\":180,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:50\",\"strArrivalDtTime\":\"08:50\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"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-7440978140_0DELMAAAI439_13192583867352\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-MAA\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"policyInfo\":\"__nls__Changes permitted 25 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"policyInfo\":\"__nls__Cancellation permitted 25 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACF\":3000,\"ACFT\":150}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-09-29 09:21:42','2023-09-29 09:21:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','Jitendra Kumar Singh',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(111,0,28,92553,869483,869484,'ABV49A','2023-10-18','DMCS116400718147','TJS116400718147','SG-11','SpiceJet','1',2,'ee552-f1874-d5c63-3dd3d','463','07:45:00','10:10:00',0,'SS',235,'02h 25m',7701,8219,'DEL','DXB','Non-stop',3,1,8205.5,'4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039',1,2,1,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',4498,3707.5,0,1704,0,225,6705.5,1500,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":8205.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_0DELDXBSG11_25786459230908\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1993,\"TotalBaseFare\":3991,\"BaseFareCal\":3991,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":112,\"MFT\":27,\"OT\":1704,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":4991,\"CostToAgent\":3991,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3214.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":16989,\"oldFare\":16458,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false,\"InternationalData\":{\"bookingId\":\"DMCS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16989,\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":0,\"CurrencyRate\":2,\"currencySysId\":2,\"BaseFare\":13494,\"Tax\":10200.5,\"YQTax\":0,\"OtherCharges\":11040,\"Discount\":0,\"ServiceFee\":450,\"ManagementFeeTax\":81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16989,\"PublishedFare\":16989,\"PublishedFareAgent\":19989,\"OfferedFareAgent\":16989,\"OfferedFare\":20567,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":4,\"IsRefundableTxt\":0,\"PriceID\":8,\"IsGSTRequired\":0,\"fareIdentifier\":0,\"SeatAvailable\":2,\"classOfBooking\":0,\"FareClass\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":3000,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":3000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":3000,\"CostToAgentCustomer\":19989,\"CostToAgent\":16989,\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7690,\"TotalBaseFare\":11686,\"BaseFareCal\":11686,\"BaseFare\":3996,\"CommissionEarned\":0,\"TDS\":0,\"MF\":300,\"YQ\":0,\"AGST\":112,\"MFT\":54,\"OT\":7224,\"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,\"AgentMarkUp\":2000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":2000,\"CostToAgentCustomer\":13686,\"CostToAgent\":11686,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":303,\"TotalBaseFare\":5303,\"BaseFareCal\":5303,\"BaseFare\":5000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":27,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":6303,\"CostToAgent\":5303,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"localFromDateTime\":\"2023-10-18 07:45\",\"localToDateTime\":\"2023-10-18 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}',1,'{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":8205.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_0DELDXBSG11_25786459230908\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1993,\"TotalBaseFare\":3991,\"BaseFareCal\":3991,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":112,\"MFT\":27,\"OT\":1704,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":4991,\"CostToAgent\":3991,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3214.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":16989,\"oldFare\":16458,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false,\"InternationalData\":{\"bookingId\":\"DMCS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16989,\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":0,\"CurrencyRate\":2,\"currencySysId\":2,\"BaseFare\":13494,\"Tax\":10200.5,\"YQTax\":0,\"OtherCharges\":11040,\"Discount\":0,\"ServiceFee\":450,\"ManagementFeeTax\":81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16989,\"PublishedFare\":16989,\"PublishedFareAgent\":19989,\"OfferedFareAgent\":16989,\"OfferedFare\":20567,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":4,\"IsRefundableTxt\":0,\"PriceID\":8,\"IsGSTRequired\":0,\"fareIdentifier\":0,\"SeatAvailable\":2,\"classOfBooking\":0,\"FareClass\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":3000,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":3000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":3000,\"CostToAgentCustomer\":19989,\"CostToAgent\":16989,\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7690,\"TotalBaseFare\":11686,\"BaseFareCal\":11686,\"BaseFare\":3996,\"CommissionEarned\":0,\"TDS\":0,\"MF\":300,\"YQ\":0,\"AGST\":112,\"MFT\":54,\"OT\":7224,\"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,\"AgentMarkUp\":2000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":2000,\"CostToAgentCustomer\":13686,\"CostToAgent\":11686,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":303,\"TotalBaseFare\":5303,\"BaseFareCal\":5303,\"BaseFare\":5000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":27,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":6303,\"CostToAgent\":5303,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"localFromDateTime\":\"2023-10-18 07:45\",\"localToDateTime\":\"2023-10-18 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS116400718147\",\"amount\":16989,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-03T11:28:10.447\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156744\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"11\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":235,\"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\":\"2023-10-18T07:45\",\"at\":\"2023-10-18T10:10\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"156745\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"6\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":195,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-10-21T11:10\",\"at\":\"2023-10-21T15:55\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"singh\",\"dob\":\"1986-10-27\",\"pNum\":\"DFG75398DYGH\",\"eD\":\"2024-10-11\",\"pNat\":\"IN\",\"pid\":\"2022-10-10\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"tinku\",\"lN\":\"singh\",\"dob\":\"1985-10-08\",\"pNum\":\"FDE8759HGKBG\",\"eD\":\"2024-10-08\",\"pNat\":\"IN\",\"pid\":\"2022-10-05\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"riya\",\"lN\":\"singh\",\"dob\":\"2022-10-01\",\"pNum\":\"HFYGU5Y983DFHGBK\",\"eD\":\"2024-10-16\",\"pNat\":\"IN\",\"pid\":\"2022-10-06\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":7993,\"IGST\":81,\"TF\":16989,\"NF\":16989,\"BF\":8996},\"afC\":{\"TAF\":{\"OT\":7224,\"AGST\":238,\"MF\":450,\"YQ\":0,\"MFT\":81}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"869483\",\"TPSysId\":\"869484\",\"VersionId\":[\"265317\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70374\",\"FareBreakdownid\":[\"386237\",\"386238\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000441033','1CD1AD5E4D544FA785F5609D947FE31B','TRANSACTION IS SUCCESSFUL.','DC4F08775FD445CEAD9DF51E38DDDE55','36731FF110874EAA825893E066B3CBA1','0',NULL,'2023-10-03 05:55:43','2023-10-03 05:55:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','rahul singh (+2)','2023-10-000013','2023-10-03','noida','rahul singh','SALE','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(112,111,28,92553,869483,869484,'ABV49A','2023-10-21','DMCS116400718147','TJS116400718147','SG-6','SpiceJet','1',2,'ee552-f1874-d5c63-3dd3d','463','11:10:00','15:55:00',0,'SS',195,'05h 45m',7701,8219,'DXB','DEL','Non-stop',3,1,11783.5,'4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039',2,2,1,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',4498,7285.5,0,5520,0,225,10283.5,1500,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-6\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-10-21T11:10\",\"LocalFromTime\":\"2023-10-21 11:10\",\"FromUTCTime\":\"2023-10-21T11:10\",\"LocalToTime\":\"2023-10-21 15:55\",\"ToUTCTime\":\"2023-10-21T15:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Sat, 21 Oct\",\"ArrivalDateTxt\":\"Sat, 21 Oct\",\"FlightDuration\":\"05h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,989\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":5785.5,\"YQTax\":0,\"OtherCharges\":5520,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10283.5,\"PublishedFare\":10283.5,\"PublishedFareAgent\":11783.5,\"OfferedFareAgent\":10283.5,\"OfferedFare\":10283.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_1DXBDELSG6_25786460613814\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5697,\"TotalBaseFare\":7695,\"BaseFareCal\":7695,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":0,\"MFT\":27,\"OT\":5520,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":8695,\"CostToAgent\":7695,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":88.5,\"TotalBaseFare\":2588.5,\"BaseFareCal\":2588.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3088.5,\"CostToAgent\":2588.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10283.5,\"CostToCustomer\":10283.5,\"BaseFareCal\":10283.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10283.5,\"intOfferedFare\":10283.5,\"intPublishFare\":10283.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":[],\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-6\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-10-21T11:10\",\"LocalFromTime\":\"2023-10-21 11:10\",\"FromUTCTime\":\"2023-10-21T11:10\",\"LocalToTime\":\"2023-10-21 15:55\",\"ToUTCTime\":\"2023-10-21T15:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Sat, 21 Oct\",\"ArrivalDateTxt\":\"Sat, 21 Oct\",\"FlightDuration\":\"05h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,989\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":5785.5,\"YQTax\":0,\"OtherCharges\":5520,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10283.5,\"PublishedFare\":10283.5,\"PublishedFareAgent\":11783.5,\"OfferedFareAgent\":10283.5,\"OfferedFare\":10283.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_1DXBDELSG6_25786460613814\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5697,\"TotalBaseFare\":7695,\"BaseFareCal\":7695,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":0,\"MFT\":27,\"OT\":5520,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":8695,\"CostToAgent\":7695,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":88.5,\"TotalBaseFare\":2588.5,\"BaseFareCal\":2588.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3088.5,\"CostToAgent\":2588.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10283.5,\"CostToCustomer\":10283.5,\"BaseFareCal\":10283.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10283.5,\"intOfferedFare\":10283.5,\"intPublishFare\":10283.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":[],\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS116400718147\",\"amount\":16989,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-03T11:28:10.447\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156744\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"11\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":235,\"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\":\"2023-10-18T07:45\",\"at\":\"2023-10-18T10:10\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"156745\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"6\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":195,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-10-21T11:10\",\"at\":\"2023-10-21T15:55\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"singh\",\"dob\":\"1986-10-27\",\"pNum\":\"DFG75398DYGH\",\"eD\":\"2024-10-11\",\"pNat\":\"IN\",\"pid\":\"2022-10-10\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"tinku\",\"lN\":\"singh\",\"dob\":\"1985-10-08\",\"pNum\":\"FDE8759HGKBG\",\"eD\":\"2024-10-08\",\"pNat\":\"IN\",\"pid\":\"2022-10-05\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"riya\",\"lN\":\"singh\",\"dob\":\"2022-10-01\",\"pNum\":\"HFYGU5Y983DFHGBK\",\"eD\":\"2024-10-16\",\"pNat\":\"IN\",\"pid\":\"2022-10-06\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":7993,\"IGST\":81,\"TF\":16989,\"NF\":16989,\"BF\":8996},\"afC\":{\"TAF\":{\"OT\":7224,\"AGST\":238,\"MF\":450,\"YQ\":0,\"MFT\":81}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"869483\",\"TPSysId\":\"869484\",\"VersionId\":[\"265317\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70374\",\"FareBreakdownid\":[\"386237\",\"386238\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000441033','1CD1AD5E4D544FA785F5609D947FE31B','TRANSACTION IS SUCCESSFUL.','DC4F08775FD445CEAD9DF51E38DDDE55','36731FF110874EAA825893E066B3CBA1','0',NULL,'2023-10-03 05:55:43','2023-10-03 05:55:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','rahul singh (+2)','2023-10-000013',NULL,NULL,NULL,'SALE','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(113,0,28,92553,874243,874244,'X75SGA','2023-10-16','DMCS101400721518','TJS101400721518','I5-472','AirAsia India','1',0,'21753-55081-f8f47-15b56','75','02:00:00','04:00:00',0,'BT',120,'02h 00m',2262,18676,'BLR','BOM','Non-stop',1,1,3175,'22-3196554827_0BLRBOMI5472_49147121262790',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/I5.gif','INR',1654,1806,0,1242,0,400,3175,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS101400721518\",\"bookingId_TJ\":\"TJS101400721518\",\"FlightNumber\":\"I5-472\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"apiTraceId\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2023-10-16T02:00\",\"LocalFromTime\":\"2023-10-16 02:00\",\"FromUTCTime\":\"2023-10-16T02:00\",\"LocalToTime\":\"2023-10-16 04:00\",\"ToUTCTime\":\"2023-10-16T04:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 16 Oct\",\"ArrivalDateTxt\":\"Mon, 16 Oct\",\"FlightDuration\":\"02h 00m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,175\",\"ApiResultIndex\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":1654,\"Tax\":1806,\"YQTax\":0,\"OtherCharges\":1242,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3460,\"PublishedFare\":3175,\"PublishedFareAgent\":3175,\"OfferedFareAgent\":3175,\"OfferedFare\":3175,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-3196554827_0BLRBOMI5472_105844133050545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1806,\"TotalBaseFare\":3460,\"BaseFareCal\":3175,\"BaseFare\":1654,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":92,\"MFT\":72,\"OT\":1242,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":[],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3175,\"CostToCustomer\":3175,\"BaseFareCal\":3175,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3175,\"intOfferedFare\":3175,\"intPublishFare\":3460,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"719\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-16T04:00\",\"SegFlightNumber\":\"I5-472\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-16T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":120,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS101400721518\",\"bookingId_TJ\":\"TJS101400721518\",\"FlightNumber\":\"I5-472\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"apiTraceId\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2023-10-16T02:00\",\"LocalFromTime\":\"2023-10-16 02:00\",\"FromUTCTime\":\"2023-10-16T02:00\",\"LocalToTime\":\"2023-10-16 04:00\",\"ToUTCTime\":\"2023-10-16T04:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 16 Oct\",\"ArrivalDateTxt\":\"Mon, 16 Oct\",\"FlightDuration\":\"02h 00m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,175\",\"ApiResultIndex\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":1654,\"Tax\":1806,\"YQTax\":0,\"OtherCharges\":1242,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3460,\"PublishedFare\":3175,\"PublishedFareAgent\":3175,\"OfferedFareAgent\":3175,\"OfferedFare\":3175,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-3196554827_0BLRBOMI5472_105844133050545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1806,\"TotalBaseFare\":3460,\"BaseFareCal\":3175,\"BaseFare\":1654,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":92,\"MFT\":72,\"OT\":1242,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":[],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3175,\"CostToCustomer\":3175,\"BaseFareCal\":3175,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3175,\"intOfferedFare\":3175,\"intPublishFare\":3460,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"719\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-16T04:00\",\"SegFlightNumber\":\"I5-472\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-16T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":120,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS101400721518\",\"amount\":3460,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:09:46.378\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157603\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"472\",\"eT\":\"320\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-10-16T02:00\",\"at\":\"2023-10-16T04:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-BOM\":\"X75SGA\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"niya\",\"lN\":\"sharma\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":3460,\"TAF\":1806,\"NCM\":285,\"NF\":3175,\"BF\":1654,\"IGST\":72},\"afC\":{\"TAF\":{\"MF\":400,\"OT\":1242,\"MFT\":72,\"AGST\":92},\"NCM\":{\"OT\":300,\"TDS\":-15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"874243\",\"TPSysId\":\"874244\",\"VersionId\":[\"266911\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70682\",\"FareBreakdownid\":[\"386503\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'40E6D6F15E664A2C8C294F04C5C0448B','','',NULL,'40E6D6F15E664A2C8C294F04C5C0448B','0',NULL,'2023-10-05 11:37:44','2023-10-05 11:37:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','niya sharma','2023-10-000014',NULL,NULL,NULL,'PROMO','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(114,0,28,92553,874278,874279,'FU4D9V','2023-10-20','DMCS104700721545','TJS104700721545','IX-6304','AI Express','1',1,'7fb7a-d1508-fe065-9376c','82','15:05:00','17:25:00',0,'EC',140,'02h 20m',7701,18676,'DEL','BOM','Non-stop',1,1,2003,'22-5042278025_0DELBOMIX6304_106300207025738',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/IX.gif','INR',899,1389,0,863,0,400,2003,0,0,0,0,0,0,0,0,2250,600,0,'{\"bookingId\":\"DMCS104700721545\",\"bookingId_TJ\":\"TJS104700721545\",\"FlightNumber\":\"IX-6304\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"apiTraceId\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:05\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-10-20T15:05\",\"LocalFromTime\":\"2023-10-20 15:05\",\"FromUTCTime\":\"2023-10-20T15:05\",\"LocalToTime\":\"2023-10-20 17:25\",\"ToUTCTime\":\"2023-10-20T17:25\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 20 Oct\",\"ArrivalDateTxt\":\"Fri, 20 Oct\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,003\",\"ApiResultIndex\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":899,\"Tax\":1389,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2288,\"PublishedFare\":2003,\"PublishedFareAgent\":2003,\"OfferedFareAgent\":2003,\"OfferedFare\":2003,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5042278025_0DELBOMIX6304_49644109988726\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1389,\"TotalBaseFare\":2288,\"BaseFareCal\":2003,\"BaseFare\":899,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2003,\"CostToCustomer\":2003,\"BaseFareCal\":2003,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2003,\"intOfferedFare\":2003,\"intPublishFare\":2288,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"679\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-20T17:25\",\"SegFlightNumber\":\"IX-6304\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-20T15:05\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:05\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS104700721545\",\"bookingId_TJ\":\"TJS104700721545\",\"FlightNumber\":\"IX-6304\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"apiTraceId\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:05\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-10-20T15:05\",\"LocalFromTime\":\"2023-10-20 15:05\",\"FromUTCTime\":\"2023-10-20T15:05\",\"LocalToTime\":\"2023-10-20 17:25\",\"ToUTCTime\":\"2023-10-20T17:25\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 20 Oct\",\"ArrivalDateTxt\":\"Fri, 20 Oct\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,003\",\"ApiResultIndex\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":899,\"Tax\":1389,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2288,\"PublishedFare\":2003,\"PublishedFareAgent\":2003,\"OfferedFareAgent\":2003,\"OfferedFare\":2003,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5042278025_0DELBOMIX6304_49644109988726\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1389,\"TotalBaseFare\":2288,\"BaseFareCal\":2003,\"BaseFare\":899,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2003,\"CostToCustomer\":2003,\"BaseFareCal\":2003,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2003,\"intOfferedFare\":2003,\"intPublishFare\":2288,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"679\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-20T17:25\",\"SegFlightNumber\":\"IX-6304\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-20T15:05\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:05\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS104700721545\",\"amount\":5138,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:18:20.942\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157607\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"6304\",\"eT\":\"738\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-20T15:05\",\"at\":\"2023-10-20T17:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-BOM\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-BOM\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-BOM\":\"FU4D9V\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":5138,\"SSRP\":2850,\"IGST\":72,\"TAF\":1389,\"NCM\":285,\"BF\":899,\"NF\":4853},\"afC\":{\"SSRP\":{\"OT\":2850},\"TAF\":{\"OT\":863,\"MF\":400,\"MFT\":72,\"AGST\":54},\"NCM\":{\"OT\":300,\"TDS\":-15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"874278\",\"TPSysId\":\"874279\",\"VersionId\":[\"266919\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70685\",\"FareBreakdownid\":[\"386506\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'2FD29033615F49CFB67E63619C8266D1','','',NULL,'2FD29033615F49CFB67E63619C8266D1','0',NULL,'2023-10-05 11:46:19','2023-10-05 11:46:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','rahul singh','2023-10-000015',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(115,0,28,92553,874372,874373,'B53DRI','2023-10-22','DMCS106500721594','TJS106500721594','SG-160','SpiceJet','1',2,'337f6-ee737-59ee9-1e7ef','463','09:20:00','10:45:00',0,'RS',85,'01h 25m',7701,13021,'DEL','IXJ','Non-stop',1,1,3214,'4-4145341238_0DELIXJSG160_107518161804559',1,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',2435,1064,0,468,0,400,3214,0,0,0,0,0,0,0,0,100,300,99,'{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-10-22T09:20\",\"LocalFromTime\":\"2023-10-22 09:20\",\"FromUTCTime\":\"2023-10-22T09:20\",\"LocalToTime\":\"2023-10-22 10:45\",\"ToUTCTime\":\"2023-10-22T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 22 Oct\",\"ArrivalDateTxt\":\"Sun, 22 Oct\",\"FlightDuration\":\"01h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,214\",\"ApiResultIndex\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"PublishedFareAgent\":3214,\"OfferedFareAgent\":3214,\"OfferedFare\":3214,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4145341238_0DELIXJSG160_51484912818674\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"TotalBaseFare\":3499,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-10-22T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-22T09:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":85,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0DELIXJSG160_107518161804559\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-10-22T09:20\",\"LocalFromTime\":\"2023-10-22 09:20\",\"FromUTCTime\":\"2023-10-22T09:20\",\"LocalToTime\":\"2023-10-22 10:45\",\"ToUTCTime\":\"2023-10-22T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 22 Oct\",\"ArrivalDateTxt\":\"Sun, 22 Oct\",\"FlightDuration\":\"01h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,214\",\"ApiResultIndex\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"PublishedFareAgent\":3214,\"OfferedFareAgent\":3214,\"OfferedFare\":3214,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4145341238_0DELIXJSG160_51484912818674\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"TotalBaseFare\":3499,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-10-22T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-22T09:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":85,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0DELIXJSG160_107518161804559\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS106500721594\",\"amount\":16033,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:40:19.884\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157621\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"160\",\"eT\":\"737\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-22T09:20\",\"at\":\"2023-10-22T10:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"157622\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2186\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"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 2\"},\"dt\":\"2023-10-25T09:40\",\"at\":\"2023-10-25T11:10\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-IXJ\":{\"code\":\"BOF1\",\"amount\":100,\"desc\":\"Bag Out First with 1 Bag\"},\"IXJ-DEL\":{\"code\":\"XBPB\",\"amount\":4500,\"desc\":\"Excess Baggage - 10 Kg\"}},\"ssrMealInfos\":{\"DEL-IXJ\":{\"code\":\"VCC2\",\"amount\":300,\"desc\":\"Vegetable in Red Thai Curry with Steamed Rice\"},\"IXJ-DEL\":{\"code\":\"TCSW\",\"amount\":400,\"desc\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"}},\"ssrSeatInfos\":{\"DEL-IXJ\":{\"code\":\"2B\",\"amount\":99},\"IXJ-DEL\":{\"code\":\"1C\",\"amount\":1500}},\"pnrDetails\":{\"DEL-IXJ\":\"B53DRI\",\"IXJ-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"nikku\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":15748,\"SSRP\":6899,\"NCM\":285,\"TAF\":2366,\"BF\":6768,\"TF\":16033,\"IGST\":72},\"afC\":{\"SSRP\":{\"OT\":6899},\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"OT\":1551,\"MFT\":72,\"YQ\":0,\"AGST\":343,\"MF\":400}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"874372\",\"TPSysId\":\"874373\",\"VersionId\":[\"266952\",\"266953\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70695\",\"FareBreakdownid\":[\"386519\",\"386520\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000443290','83FB7A2238AC4F7692DA7BE07C69A2FE','TRANSACTION IS SUCCESSFUL.','7DF7F2E28A1B451385DE8F3EFF9B6C76','79DD81EC55204843BB29F15BCD7900D5','0',NULL,'2023-10-05 12:07:05','2023-10-05 12:07:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','nikku singh','2023-10-000016',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(116,115,28,92553,874372,874373,'TESTPNR','2023-10-25','DMCS106500721594','TJS106500721594','6E-2186','IndiGo','1',1,'337f6-ee737-59ee9-1e7ef','267','09:40:00','11:10:00',0,'R',90,'02h 30m',7701,13021,'IXJ','DEL','Non-stop',1,1,5635,'5-4145341238_0IXJDEL6E2186_107518562765745',2,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/6E.gif','INR',4333,1302,0,1083,0,0,5635,0,0,0,0,0,0,0,0,4500,400,1500,'{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2023-10-25T09:40\",\"LocalFromTime\":\"2023-10-25 09:40\",\"FromUTCTime\":\"2023-10-25T09:40\",\"LocalToTime\":\"2023-10-25 11:10\",\"ToUTCTime\":\"2023-10-25T11:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 25 Oct\",\"ArrivalDateTxt\":\"Wed, 25 Oct\",\"FlightDuration\":\"02h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,849\",\"ApiResultIndex\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4333,\"Tax\":1302,\"YQTax\":0,\"OtherCharges\":1083,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":219,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5635,\"PublishedFare\":5635,\"PublishedFareAgent\":5635,\"OfferedFareAgent\":5635,\"OfferedFare\":5635,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4145341238_1IXJDEL6E2186_51484914482209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1302,\"TotalBaseFare\":5635,\"BaseFareCal\":5635,\"BaseFare\":4333,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":219,\"MFT\":0,\"OT\":1083,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"IXJ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5635,\"CostToCustomer\":5635,\"BaseFareCal\":5635,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5635,\"intOfferedFare\":5635,\"intPublishFare\":5635,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"660\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-25T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-10-25T09:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0IXJDEL6E2186_107518562765745\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2023-10-25T09:40\",\"LocalFromTime\":\"2023-10-25 09:40\",\"FromUTCTime\":\"2023-10-25T09:40\",\"LocalToTime\":\"2023-10-25 11:10\",\"ToUTCTime\":\"2023-10-25T11:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 25 Oct\",\"ArrivalDateTxt\":\"Wed, 25 Oct\",\"FlightDuration\":\"02h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,849\",\"ApiResultIndex\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4333,\"Tax\":1302,\"YQTax\":0,\"OtherCharges\":1083,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":219,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5635,\"PublishedFare\":5635,\"PublishedFareAgent\":5635,\"OfferedFareAgent\":5635,\"OfferedFare\":5635,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4145341238_1IXJDEL6E2186_51484914482209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1302,\"TotalBaseFare\":5635,\"BaseFareCal\":5635,\"BaseFare\":4333,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":219,\"MFT\":0,\"OT\":1083,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"IXJ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5635,\"CostToCustomer\":5635,\"BaseFareCal\":5635,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5635,\"intOfferedFare\":5635,\"intPublishFare\":5635,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"660\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-25T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-10-25T09:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0IXJDEL6E2186_107518562765745\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS106500721594\",\"amount\":16033,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:40:19.884\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157621\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"160\",\"eT\":\"737\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-22T09:20\",\"at\":\"2023-10-22T10:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"157622\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2186\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"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 2\"},\"dt\":\"2023-10-25T09:40\",\"at\":\"2023-10-25T11:10\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-IXJ\":{\"code\":\"BOF1\",\"amount\":100,\"desc\":\"Bag Out First with 1 Bag\"},\"IXJ-DEL\":{\"code\":\"XBPB\",\"amount\":4500,\"desc\":\"Excess Baggage - 10 Kg\"}},\"ssrMealInfos\":{\"DEL-IXJ\":{\"code\":\"VCC2\",\"amount\":300,\"desc\":\"Vegetable in Red Thai Curry with Steamed Rice\"},\"IXJ-DEL\":{\"code\":\"TCSW\",\"amount\":400,\"desc\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"}},\"ssrSeatInfos\":{\"DEL-IXJ\":{\"code\":\"2B\",\"amount\":99},\"IXJ-DEL\":{\"code\":\"1C\",\"amount\":1500}},\"pnrDetails\":{\"DEL-IXJ\":\"B53DRI\",\"IXJ-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"nikku\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":15748,\"SSRP\":6899,\"NCM\":285,\"TAF\":2366,\"BF\":6768,\"TF\":16033,\"IGST\":72},\"afC\":{\"SSRP\":{\"OT\":6899},\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"OT\":1551,\"MFT\":72,\"YQ\":0,\"AGST\":343,\"MF\":400}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"874372\",\"TPSysId\":\"874373\",\"VersionId\":[\"266952\",\"266953\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"70695\",\"FareBreakdownid\":[\"386519\",\"386520\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'11000000443290','83FB7A2238AC4F7692DA7BE07C69A2FE','TRANSACTION IS SUCCESSFUL.','7DF7F2E28A1B451385DE8F3EFF9B6C76','79DD81EC55204843BB29F15BCD7900D5','0',NULL,'2023-10-05 12:07:05','2023-10-05 12:07:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','nikku singh','2023-10-000016',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(117,0,28,92553,885674,885675,'C83MHG','2023-10-23','DMCS108900728515','TJS108900728515','G8-717','Go First','1',1,'13ebb-04493-e1ab0-7334a','240','16:45:00','21:10:00',0,'GS',265,'04h 25m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4455,'1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385',1,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/G8.gif','INR',2500,2240,700,898,0,400,4455,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"G8-717\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:45\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-10-23T16:45\",\"LocalFromTime\":\"2023-10-23 16:45\",\"FromUTCTime\":\"2023-10-23T16:45\",\"LocalToTime\":\"2023-10-23 21:10\",\"ToUTCTime\":\"2023-10-23T21:10\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Mon, 23 Oct\",\"ArrivalDateTxt\":\"Mon, 23 Oct\",\"FlightDuration\":\"04h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,455\",\"ApiResultIndex\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2500,\"Tax\":2240,\"YQTax\":700,\"OtherCharges\":898,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4740,\"PublishedFare\":4455,\"PublishedFareAgent\":4455,\"OfferedFareAgent\":4455,\"OfferedFare\":4455,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2240,\"TotalBaseFare\":4740,\"BaseFareCal\":4455,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":700,\"AGST\":170,\"MFT\":72,\"OT\":898,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-AMD\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"AMD-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4455,\"CostToCustomer\":4455,\"BaseFareCal\":4455,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4455,\"intOfferedFare\":4455,\"intPublishFare\":4740,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"326\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-10-23T18:20\",\"SegFlightNumber\":\"G8-717\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-23T16:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":95,\"GroundTime\":95,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"16:45\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"327\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-23T21:10\",\"SegFlightNumber\":\"G8-537\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-10-23T19:55\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":75,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"G8-717\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:45\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-10-23T16:45\",\"LocalFromTime\":\"2023-10-23 16:45\",\"FromUTCTime\":\"2023-10-23T16:45\",\"LocalToTime\":\"2023-10-23 21:10\",\"ToUTCTime\":\"2023-10-23T21:10\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Mon, 23 Oct\",\"ArrivalDateTxt\":\"Mon, 23 Oct\",\"FlightDuration\":\"04h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,455\",\"ApiResultIndex\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2500,\"Tax\":2240,\"YQTax\":700,\"OtherCharges\":898,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4740,\"PublishedFare\":4455,\"PublishedFareAgent\":4455,\"OfferedFareAgent\":4455,\"OfferedFare\":4455,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2240,\"TotalBaseFare\":4740,\"BaseFareCal\":4455,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":700,\"AGST\":170,\"MFT\":72,\"OT\":898,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-AMD\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"AMD-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4455,\"CostToCustomer\":4455,\"BaseFareCal\":4455,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4455,\"intOfferedFare\":4455,\"intPublishFare\":4740,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"326\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-10-23T18:20\",\"SegFlightNumber\":\"G8-717\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-23T16:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":95,\"GroundTime\":95,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"16:45\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"327\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-23T21:10\",\"SegFlightNumber\":\"G8-537\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-10-23T19:55\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":75,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS108900728515\",\"amount\":9272,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-13T10:49:21.842\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"159228\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"717\",\"eT\":\"32N\"},\"stops\":0,\"duration\":95,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-10-23T16:45\",\"at\":\"2023-10-23T18:20\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"159229\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"537\",\"eT\":\"32N\"},\"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 1\"},\"dt\":\"2023-10-23T19:55\",\"at\":\"2023-10-23T21:10\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"159230\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8191\",\"eT\":\"737\"},\"stops\":0,\"duration\":145,\"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 3\"},\"dt\":\"2023-10-26T21:20\",\"at\":\"2023-10-26T23:45\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"C83MHG\",\"AMD-BOM\":\"C83MHG\",\"BOM-DEL\":\"AGCUFR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"prince\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":285,\"TF\":9272,\"BF\":5650,\"IGST\":72,\"NF\":8987,\"TAF\":3622},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YQ\":1600,\"MF\":400,\"MFT\":72,\"OT\":1170,\"AGST\":380}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"885674\",\"TPSysId\":\"885675\",\"VersionId\":[\"270538\",\"270539\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"71512\",\"FareBreakdownid\":[\"386944\",\"386945\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'7CAB77E03003478C9310BF293A4FF581','','',NULL,'7CAB77E03003478C9310BF293A4FF581','0',NULL,'2023-10-13 05:17:29','2023-10-13 05:17:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','prince singh','2023-10-000017',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(118,117,28,92553,885674,885675,'AGCUFR','2023-10-26','DMCS108900728515','TJS108900728515','SG-8191','SpiceJet','1',2,'13ebb-04493-e1ab0-7334a','463','21:20:00','23:45:00',0,'RS',145,'02h 25m',7701,18676,'BOM','DEL','Non-stop',1,1,4532,'4-3983042595_1BOMDELSG8191_15019825117680',2,2,0,'https://b2b.ktas.in/public/upload/AirlineLogo/SG.gif','INR',3150,1382,900,272,0,0,4532,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"SG-8191\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-26T21:20\",\"LocalFromTime\":\"2023-10-26 21:20\",\"FromUTCTime\":\"2023-10-26T21:20\",\"LocalToTime\":\"2023-10-26 23:45\",\"ToUTCTime\":\"2023-10-26T23:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 26 Oct\",\"ArrivalDateTxt\":\"Thu, 26 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,987\",\"ApiResultIndex\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3150,\"Tax\":1382,\"YQTax\":900,\"OtherCharges\":272,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4532,\"PublishedFare\":4532,\"PublishedFareAgent\":4532,\"OfferedFareAgent\":4532,\"OfferedFare\":4532,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"1-3983042595_1BOMDELSG8191_15048389831231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1382,\"TotalBaseFare\":4532,\"BaseFareCal\":4532,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":900,\"AGST\":210,\"MFT\":0,\"OT\":272,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BOM-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4532,\"CostToCustomer\":4532,\"BaseFareCal\":4532,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4532,\"intOfferedFare\":4532,\"intPublishFare\":4532,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"783\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-26T23:45\",\"SegFlightNumber\":\"SG-8191\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-10-26T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-3983042595_1BOMDELSG8191_15019825117680\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',1,'{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"SG-8191\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-26T21:20\",\"LocalFromTime\":\"2023-10-26 21:20\",\"FromUTCTime\":\"2023-10-26T21:20\",\"LocalToTime\":\"2023-10-26 23:45\",\"ToUTCTime\":\"2023-10-26T23:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 26 Oct\",\"ArrivalDateTxt\":\"Thu, 26 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,987\",\"ApiResultIndex\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3150,\"Tax\":1382,\"YQTax\":900,\"OtherCharges\":272,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4532,\"PublishedFare\":4532,\"PublishedFareAgent\":4532,\"OfferedFareAgent\":4532,\"OfferedFare\":4532,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"1-3983042595_1BOMDELSG8191_15048389831231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1382,\"TotalBaseFare\":4532,\"BaseFareCal\":4532,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":900,\"AGST\":210,\"MFT\":0,\"OT\":272,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BOM-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4532,\"CostToCustomer\":4532,\"BaseFareCal\":4532,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4532,\"intOfferedFare\":4532,\"intPublishFare\":4532,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"783\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-26T23:45\",\"SegFlightNumber\":\"SG-8191\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-10-26T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-3983042595_1BOMDELSG8191_15019825117680\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}','{\"order\":{\"bookingId\":\"TJS108900728515\",\"amount\":9272,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-13T10:49:21.842\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"159228\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"717\",\"eT\":\"32N\"},\"stops\":0,\"duration\":95,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-10-23T16:45\",\"at\":\"2023-10-23T18:20\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"159229\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"537\",\"eT\":\"32N\"},\"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 1\"},\"dt\":\"2023-10-23T19:55\",\"at\":\"2023-10-23T21:10\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"159230\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8191\",\"eT\":\"737\"},\"stops\":0,\"duration\":145,\"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 3\"},\"dt\":\"2023-10-26T21:20\",\"at\":\"2023-10-26T23:45\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"C83MHG\",\"AMD-BOM\":\"C83MHG\",\"BOM-DEL\":\"AGCUFR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"prince\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":285,\"TF\":9272,\"BF\":5650,\"IGST\":72,\"NF\":8987,\"TAF\":3622},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YQ\":1600,\"MF\":400,\"MFT\":72,\"OT\":1170,\"AGST\":380}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"885674\",\"TPSysId\":\"885675\",\"VersionId\":[\"270538\",\"270539\"],\"CustomerSysId\":\"494785\",\"TrxId\":\"71512\",\"FareBreakdownid\":[\"386944\",\"386945\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'7CAB77E03003478C9310BF293A4FF581','','',NULL,'7CAB77E03003478C9310BF293A4FF581','0',NULL,'2023-10-13 05:17:29','2023-10-13 05:17:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','prince singh','2023-10-000017',NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(119,0,28,92553,0,0,NULL,'2023-10-19','DMCS106000729932','TJS106000729932','IX-8190','AI Express','1',1,'9bebc-33c34-537c2-5c43b','82','02:00:00','04:45:00',0,'EC',165,'03h 45m',7701,2262,'DEL','BLR','Non-stop',1,1,5722,'22-1717604427_0DELBLRIX8190_62723708079433',1,1,0,'https://b2b.ktas.in/public/upload/AirlineLogo/IX.gif','INR',4442,1565,0,863,0,400,5722,0,0,0,0,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS106000729932\",\"bookingId_TJ\":\"TJS106000729932\",\"FlightNumber\":\"IX-8190\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"9bebc-33c34-537c2-5c43b\",\"apiTraceId\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2023-10-19T02:00\",\"LocalFromTime\":\"2023-10-19 02:00\",\"FromUTCTime\":\"2023-10-19T02:00\",\"LocalToTime\":\"2023-10-19 04:45\",\"ToUTCTime\":\"2023-10-19T04:45\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Thu, 19 Oct\",\"ArrivalDateTxt\":\"Thu, 19 Oct\",\"FlightDuration\":\"03h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,722\",\"ApiResultIndex\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4442,\"Tax\":1565,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":230,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6007,\"PublishedFare\":5722,\"PublishedFareAgent\":5722,\"OfferedFareAgent\":5722,\"OfferedFare\":5722,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1717604427_0DELBLRIX8190_62731458356352\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1565,\"TotalBaseFare\":6007,\"BaseFareCal\":5722,\"BaseFare\":4442,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":230,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5722,\"CostToCustomer\":5722,\"BaseFareCal\":5722,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5722,\"intOfferedFare\":5722,\"intPublishFare\":6007,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"385\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-19T04:45\",\"SegFlightNumber\":\"IX-8190\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-19T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":165,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2023-10-16 10:11:12','2023-10-16 10:11:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'neha kannojia','rahul singh',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,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 CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `BookingId` varchar(200) DEFAULT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `PNR_Number` varchar(200) DEFAULT NULL,
  `TicketId` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `TicketNumber` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci 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',
  `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=129 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,0,1,'364b0-61986-a9abe-32e95',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-12-22',1,'0','1',NULL,NULL,NULL,'0',NULL),(2,0,1,'489ba-76f3e-3c265-04634',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,36973,'1957-01-29','UIYR676786HGH','IN','2025-01-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,'30KG','7Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(3,0,1,'9b9c9-e1883-8a159-48bfe',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,'1958-01-28','DTTY67578GHUIU','IN','2025-01-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,'30 Kg','7 Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(4,0,1,'88723-7ff49-83ecf-f2c74',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(5,0,1,'88723-7ff49-83ecf-f2c74',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',2,'0','1',NULL,NULL,NULL,'0',NULL),(6,0,1,'51fdd-4ee45-47e41-dae05',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(7,0,1,'031f0-2d6e2-eb439-d8c98',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(8,0,2,'cd454-4d62d-fe77d-726d1',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'0','89239636227','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(9,0,2,'cd454-4d62d-fe77d-726d1',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'0','89239636227','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',2,'0','1',NULL,NULL,NULL,'0',NULL),(10,0,1,'ed824-c8e52-dc430-d10aa',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',1,'0','1',NULL,NULL,NULL,'0',NULL),(11,0,1,'ed824-c8e52-dc430-d10aa',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-04',2,'0','1',NULL,NULL,NULL,'0',NULL),(12,0,3,'a2421-c665f-6681d-47978',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'rah2510@gmail.com',1,0,'0','9820805828','Rahim','Bhimani','',0,36973,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,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2023-01-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(13,0,2,'96eb1-3a104-7da46-97211',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'rah2510@gmail.com',1,0,'1','9820805828','Rahim','Bhimani','',0,36973,'1982-01-14','N00712345','IN','2027-01-01',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,'30Kilograms','7 Kg',NULL,NULL,NULL,'2023-01-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(14,0,5,'2c6f9-6ca16-209fc-1101b',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'rah2510@gmail.com',1,0,'1','9820805828','Rahim','Bhimani','',0,36973,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,'','',NULL,NULL,NULL,'2023-01-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(15,0,4,'7c469-dd375-c0cfb-612e3',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'0','9958049006','Jitendra','Singh','',0,36973,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,'','',NULL,NULL,NULL,'2023-01-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(16,0,1,'178fe-fb376-15935-e97b4','BKRS100700438316',NULL,'R4HL5S','R4HL5S','','DEL-BOM',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(17,0,6,'30800-3c8f2-d0004-f1cc8',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'rah2510@gmail.com',1,0,'1','9820805828','Rahim','Bhimani','',0,36973,'1950-01-11','N0070002','IN','2026-01-16',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,'30KG','7Kg',NULL,NULL,NULL,'2023-01-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(18,0,1,'6e2ed-4b8ff-efce0-0e23e','BKRS108000438725',NULL,'P4JUKG-P4JUKG','P4JUKG-P4JUKG','','DEL-STV-STV-CCU',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'','',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(19,0,1,'50c72-84a80-90171-904ea','BKRS105600438729',NULL,'TESTPNR','TESTPNR','','DEL-AMD',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(20,0,1,'4d360-202c1-27000-1e57c','BKRS102600438749',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','MAA-AMD-AMD-LKO',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(21,0,1,'14cf4-a0a97-3147a-84c91','BKRS118100438772',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-DXB',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,'1957-01-24','DTTY67578GHUIU','IN','2025-01-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,'30Kilograms','7 Kg',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(22,0,1,'85ad4-bfe5a-534ed-18f80','BKRS111300438798',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','MAA-DXB',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,'1957-01-24','DTTY67578GHUIU','IN','2025-01-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,'30 Kg','7 Kg',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(23,0,1,'b514c-6ee16-ef2b3-e9b87','BKRS111000439047',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DXB-COK-COK-BLR',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,'1957-01-24','DTTY67578GHUIU','IN','2025-01-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,'30 Kg','7 Kg',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(24,0,1,'b8a69-c0527-729b9-0f781','BKRS115800439213',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BKK-DEL-DEL-AMD',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,'1957-01-24','DTTY67578GHUIU','IN','2025-01-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,'30 Kg','7 Kg',NULL,NULL,NULL,'2023-01-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(25,0,1,'28827-8469d-0ac5d-4aa0f',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-11',1,'0','1',NULL,NULL,NULL,'0',NULL),(26,0,7,'28d98-c35ec-1aa3d-f625e',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,36973,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,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2023-01-12',1,'0','1',NULL,NULL,NULL,'0',NULL),(27,0,8,'d2ffc-d01fc-51e4e-14e6c','BKRS108800442518',NULL,'H5ITNP-H5ITNP','H5ITNP-H5ITNP','','DEL-VNS-VNS-BOM',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','nehu                                              ','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-12',1,'0','1',NULL,NULL,NULL,'0',NULL),(30,0,8,'35748-ec348-4bf25-156a4','BKRS106900443130',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','GOI-BLR',0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','nehu                                              ','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(31,0,8,'35748-ec348-4bf25-156a4',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','nehu                                              ','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-13',2,'0','1',NULL,NULL,NULL,'0',NULL),(32,0,5,'25c83-8b1b1-36e51-082d8','BKRS115500445251',NULL,'XC86UG-XC86UG','XC86UG-XC86UG','','DEL-BOM-BOM-DXB',0,36973,0,'nehakumai@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,36973,'1985-01-25','HVHFU558768GHF','IN','2025-01-23',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,'30Kilograms','7 Kg',NULL,NULL,NULL,'2023-01-17',1,'0','1',NULL,NULL,NULL,'0',NULL),(33,0,6,'b271a-2dd20-1f1dd-4a4d4','BKRS106800455684',NULL,'V4EJ2L-V4EJ2L','V4EJ2L-V4EJ2L','','MAA-DEL',0,36973,0,'S@GMAIL.COM',3,0,'0','7011874684','neha','kannojia','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-30',1,'0','1',NULL,NULL,NULL,'0',NULL),(34,0,6,'b271a-2dd20-1f1dd-4a4d4',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'S@GMAIL.COM',3,0,'0','7011874684','neha','kannojia','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-30',2,'0','1',NULL,NULL,NULL,'0',NULL),(35,0,9,'5530d-15b95-a2a7b-dcd33',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra Kumar ','Singh ','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-30',1,'0','1',NULL,NULL,NULL,'0',NULL),(36,0,10,'2986c-5fc03-1f8d4-31515',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-31',1,'0','1',NULL,NULL,NULL,'0',NULL),(37,0,10,'2986c-5fc03-1f8d4-31515',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(38,0,10,'2986c-5fc03-1f8d4-31515',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra','Singh','',0,36973,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(39,0,10,'2986c-5fc03-1f8d4-31515',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra','Singh','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(40,0,1,'77f60-2dfe9-eebe9-34c1b',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-31',1,'0','1',NULL,NULL,NULL,'0',NULL),(41,0,1,'77f60-2dfe9-eebe9-34c1b',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,36973,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-01-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(42,0,1,'f9469-908d4-21bb2-6acf9','BKRS102900456544',NULL,'ABB7YT-ABB7YT','ABB7YT-ABB7YT','','DEL-BOM',0,36973,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-31',1,'0','1',NULL,NULL,NULL,'0',NULL),(43,0,1,'f9469-908d4-21bb2-6acf9',NULL,NULL,NULL,NULL,NULL,NULL,0,36973,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,36973,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-01-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(44,0,1,'e5eec-82301-a5136-576b7',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-04-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(45,0,11,'7fd83-07be1-28c2e-f3793',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'1','8923963627','neha','kannojia','',0,59951,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,'15 Kilograms','7 Kg',NULL,NULL,NULL,'2023-04-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(46,0,1,'ab854-94b2b-1e18e-38e5c',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-04-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(48,0,1,'d254f-b09b8-fcb1a-1316b',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-04-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(50,0,1,'42c74-5c72f-c66bb-88231',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-01',1,'0','1',NULL,NULL,NULL,'0',NULL),(51,0,1,'1bd18-bef72-47d7c-5c513','BKRS103000550376',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','1111111111111-1111111111111-1111111111111','IXJ-SXR-SXR-DEL-DEL-BLR',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(53,0,1,'de15a-67270-87b9b-8c058',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(54,0,1,'26107-57af6-b1f19-e5a47','BKRS108200550751',NULL,'QY1TNZ-QY1TNZ','QY1TNZ-QY1TNZ','','IXJ-DEL-DEL-BLR',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(55,0,1,'eb263-64cd5-38e2e-a6ba0',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(56,0,1,'eb263-64cd5-38e2e-a6ba0',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(57,0,1,'38239-bd8e0-8a2bb-f289f','BKRS104100550781',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-BLR',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(58,0,1,'38239-bd8e0-8a2bb-f289f',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(59,0,1,'4d4a8-bd7fc-821b5-b355c',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(60,0,1,'4d4a8-bd7fc-821b5-b355c',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(61,0,1,'4d4a8-bd7fc-821b5-b355c',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(63,0,1,'4ad7b-e4fd2-104ed-81f34','BKRS102500554143',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','1111111111111-1111111111111','IXJ-DEL-DEL-ATQ',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(67,0,1,'11d07-3e72d-ece68-1ec15',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(68,0,1,'11d07-3e72d-ece68-1ec15',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(69,0,1,'11d07-3e72d-ece68-1ec15',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(73,0,1,'a4803-39469-8b8ab-e0b87',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(74,0,1,'a4803-39469-8b8ab-e0b87',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(75,0,1,'a4803-39469-8b8ab-e0b87',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(76,0,1,'38fc3-cefa5-648e9-2d354','BKRS102700554241',NULL,'TESTPNR-TESTPNR-E5QQ3J-TESTPNR','TESTPNR-TESTPNR-E5QQ3J-TESTPNR','','BLR-GOX',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(77,0,1,'38fc3-cefa5-648e9-2d354',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(78,0,1,'38fc3-cefa5-648e9-2d354',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-08',2,'0','1',NULL,NULL,NULL,'0',NULL),(79,0,8,'45226-604f7-661b9-23fc5',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'atmajw1@gmail.com',1,0,'0','7566821253','Atmaj','Wadnerkar','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(80,0,1,'39951-2cea9-d21af-26e1a','BKRS104100612664',NULL,'MHBB9B','MHBB9B','','DEL-IXJ',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-07-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(81,0,1,'b607b-71a2a-44201-066d1','BKRS106400612738',NULL,'B7GCPP-P6Q8WV-P6Q8WV-TESTPNR-TESTPNR','B7GCPP-P6Q8WV-P6Q8WV-TESTPNR-TESTPNR','','BLR-DEL-DEL-IXJ',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-07-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(82,0,1,'51801-e5ffc-ce2c6-2326a','BKRS103300615663',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','IXJ-DEL-DEL-BLR',0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(84,0,15,'514c6-1492c-b68fb-70071',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'anuj23@gmail.com',1,0,'0','9671365732','Anuj','kumar','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(85,0,24,'16b6d-11bc4-ba3d4-43d29',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'premkumar.v3@hdfcbank.com',1,0,'0','9940131091','pk','kumar','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(86,0,1,'7a76b-f87b2-8e650-86a43',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(87,0,18,'7a76b-f87b2-8e650-86a43',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','nti','singh','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(88,0,1,'f2941-b062a-d32f5-dc6e8',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(89,0,1,'88e99-7a359-97c4a-a1400',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(90,0,1,'25b45-bdccb-a3304-a9b30',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'nehakumari@catpl.co.in',3,0,'Other','8923963627','NEHA','KANNOJIA','',0,59951,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(91,0,19,'99e64-9e2cc-52702-1fee3','BKRS104400646590',NULL,'TESTPNR','TESTPNR','1111111111111','DEL-BOM',0,59951,0,'anuj23.ak@gmail.com',1,0,'1','9671365732','Anuj','kumar','',0,59951,NULL,NULL,NULL,NULL,NULL,NULL,'Delhi','Delhi','7701',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-08-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(92,0,20,'d0db9-e6697-20868-d2944',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'jitendra@catpl.co.in',1,0,'1','9958049006','Jitendra Kumar ','Singh','',0,59951,NULL,NULL,NULL,NULL,NULL,NULL,'Delhi','Delhi','7701',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-08-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(94,0,22,'c2010-c50f3-2c19a-785de',NULL,NULL,NULL,NULL,NULL,NULL,0,59951,0,'atmajw1@gmail.com',1,0,'1','7566821253','Atmaj','Wa','',0,59951,'1976-09-15','ugyvygvygvgyvgy','IN','2025-09-15','2015-09-16',NULL,'Delhi','Delhi','7701',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2023-09-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(95,104,28,'a9a87-24c3d-55151-bbd50',NULL,NULL,NULL,NULL,NULL,'BLR-CCU',0,92553,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','tinku','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(96,105,23,'c0978-f2273-8d1c2-8e692','DMCS100700715182','TJS100700715182','W8MUUC','W8MUUC','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','tinku','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(97,105,24,'c0978-f2273-8d1c2-8e692','DMCS100700715182','TJS100700715182','W8MUUC','W8MUUC','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','riya','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(98,105,25,'c0978-f2273-8d1c2-8e692','DMCS100700715182','TJS100700715182','W8MUUC','W8MUUC','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rinki','singh','',0,92553,'2022-09-01',NULL,NULL,NULL,NULL,NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0 Kg','0 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(99,106,26,'e8fc7-d23fa-4d8b0-1b19f',NULL,NULL,NULL,NULL,NULL,'DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rahul','kumar','',0,92553,'1995-09-27','GFYJ87568JHGS','IN','2024-09-09','2022-09-09',NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(100,106,27,'e8fc7-d23fa-4d8b0-1b19f',NULL,NULL,NULL,NULL,NULL,'DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','NEHA','kannojia','',0,92553,'2015-09-11','GHFV46783JHEBF','IN','2034-10-10','2022-09-07',NULL,'','','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(101,106,28,'e8fc7-d23fa-4d8b0-1b19f',NULL,NULL,NULL,NULL,NULL,'DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','RIYA','singh','',0,92553,'2022-09-01','DFHF658HJFGJER','IN','2024-09-10','2022-09-03',NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0 Kg','0 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(102,107,29,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','DEL-BLR',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','sumit','singh','',0,92553,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,'','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(103,107,30,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','DEL-BLR',0,92553,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','rahul','kumar','',0,92553,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,'','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(104,107,31,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','DEL-BLR',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','inidhi','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','7 Kg',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(105,107,32,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','DEL-BLR',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','niya','kannojia','',0,92553,'2022-09-01',NULL,NULL,NULL,NULL,NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2023-09-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(106,108,29,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','sumit','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',2,'0','1',NULL,NULL,NULL,'0',NULL),(107,108,30,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','rahul','kumar','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',2,'0','1',NULL,NULL,NULL,'0',NULL),(108,108,31,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','inidhi','singh','',0,92553,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-28',2,'0','1',NULL,NULL,NULL,'0',NULL),(109,108,32,'a745b-19a97-5982c-4d0ca','DMCS108900715456','TJS108900715456','HTG5KY-HTG5KY-X41GXY-X41GXY','HTG5KY-HTG5KY-X41GXY-X41GXY','','BLR-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','niya','kannojia','',0,92553,'2022-09-01',NULL,NULL,NULL,NULL,NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','7 Kg',NULL,NULL,NULL,'2023-09-28',2,'0','1',NULL,NULL,NULL,'0',NULL),(110,109,29,'ff4f7-0204d-78403-d861a','DMCS105600716247','TJS105600716247','U84LXS','U84LXS','','DEL-BLR',0,92553,0,'anuj@catpl.co.in',1,0,'0','7009078210','Anuj','kumar','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(111,109,33,'ff4f7-0204d-78403-d861a','DMCS105600716247','TJS105600716247','U84LXS','U84LXS','','DEL-BLR',0,92553,0,'anuj@catpl.co.in',2,0,'9','7009078210','Chinki','sharma','',0,92553,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-09-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(112,109,34,'ff4f7-0204d-78403-d861a','DMCS105600716247','TJS105600716247','U84LXS','U84LXS','','DEL-BLR',0,92553,0,'anuj@catpl.co.in',1,0,'9','7009078210','Ankit','dhiman','',0,92553,'2023-08-23',NULL,NULL,NULL,NULL,NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0 Kg','0 Kg',NULL,NULL,NULL,'2023-09-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(113,110,35,'21683-ae861-fa5d7-b4a7f',NULL,NULL,NULL,NULL,NULL,'DEL-MAA',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','Jitendra Kumar','Singh','',0,92553,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,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-09-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(114,111,36,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rahul','singh','',0,92553,'1986-10-27','DFG75398DYGH','IN','2024-10-11','2022-10-10',NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(115,111,37,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','tinku','singh','',0,92553,'1985-10-08','FDE8759HGKBG','IN','2024-10-08','2022-10-05',NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(116,111,38,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DEL-DXB',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','riya','singh','',0,92553,'2022-10-01','HFYGU5Y983DFHGBK','IN','2024-10-16','2022-10-06',NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0 Kg','0 Kg',NULL,NULL,NULL,'2023-10-03',1,'0','1',NULL,NULL,NULL,'0',NULL),(117,112,36,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DXB-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rahul','singh','',0,92553,'1986-10-27','DFG75398DYGH','IN','2024-10-11','2022-10-10',NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(118,112,37,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DXB-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','tinku','singh','',0,92553,'1985-10-08','FDE8759HGKBG','IN','2024-10-08','2022-10-05',NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(119,112,38,'ee552-f1874-d5c63-3dd3d','DMCS116400718147','TJS116400718147','ABV49A-ABV49A','ABV49A-ABV49A','','DXB-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','riya','singh','',0,92553,'2022-10-01','HFYGU5Y983DFHGBK','IN','2024-10-16','2022-10-06',NULL,'','','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0 Kg','0 Kg',NULL,NULL,NULL,'2023-10-03',2,'0','1',NULL,NULL,NULL,'0',NULL),(120,113,39,'21753-55081-f8f47-15b56','DMCS101400721518','TJS101400721518','X75SGA','X75SGA','','BLR-BOM',0,92553,0,'nehakumari@catpl.co.in',3,0,'9','8923963627','niya','sharma','',0,92553,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,'','',NULL,NULL,NULL,'2023-10-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(121,114,40,'7fb7a-d1508-fe065-9376c','DMCS104700721545','TJS104700721545','FU4D9V','FU4D9V','','DEL-BOM',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rahul','singh','',0,92553,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,'','7 Kg',NULL,NULL,NULL,'2023-10-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(122,115,41,'337f6-ee737-59ee9-1e7ef','DMCS106500721594','TJS106500721594','B53DRI-TESTPNR','B53DRI-TESTPNR','','DEL-IXJ',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','nikku','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-05',1,'0','1',NULL,NULL,NULL,'0',NULL),(123,116,41,'337f6-ee737-59ee9-1e7ef','DMCS106500721594','TJS106500721594','B53DRI-TESTPNR','B53DRI-TESTPNR','','IXJ-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','nikku','singh','',0,92553,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,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-10-05',2,'0','1',NULL,NULL,NULL,'0',NULL),(124,117,42,'13ebb-04493-e1ab0-7334a','DMCS108900728515','TJS108900728515','C83MHG-C83MHG-AGCUFR','C83MHG-C83MHG-AGCUFR','','DEL-BOM',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','prince','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(125,118,42,'13ebb-04493-e1ab0-7334a','DMCS108900728515','TJS108900728515','C83MHG-C83MHG-AGCUFR','C83MHG-C83MHG-AGCUFR','','BOM-DEL',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','prince','singh','',0,92553,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,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-10-13',2,'0','1',NULL,NULL,NULL,'0',NULL),(126,119,43,'9bebc-33c34-537c2-5c43b',NULL,NULL,NULL,NULL,NULL,'DEL-BLR',0,92553,0,'nehakumari@catpl.co.in',1,0,'9','8923963627','rahul','singh','',0,92553,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,'','7 Kg',NULL,NULL,NULL,'2023-10-16',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 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\":\"Recommended Holiday Packages\",\"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\":\"400\"}','{\"destinationTitle\":\"Hot Destinations this Months\",\"destinationDescription\":\"Explore one of our Handpicked Hot Destinations of the Months to explore best deals on these Destinations.\",\"destinations_check\":\"1\",\"destination_order_byhome\":\"200\"}','{\"domesticTourTitle\":\"Recommended Umrah Packages\",\"domesticTourDescription\":\"Let\\u2019s explore India with us by picking one of the Handpicked Indian Holidays with your loved ones and make your days Ktas.\",\"domestic_check\":\"1\",\"domestic_order_byhome\":\"298\"}','{\"blogTitle\":\"Travelogues\",\"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\":\"799\"}','{\"offersTitle\":\"Offers\",\"offersDescription\":\"\",\"offers_check\":\"1\",\"offers_order_byhome\":\"100\"}','{\"whychooseusTitle\":\"why choose us\",\"whychooseus_check\":\"\",\"whychooseus_order_byhome\":\"800\"}','{\"happycustomerTitle\":\"\",\"happycustomer_check\":\"\",\"happycustomer_order_byhome\":\"\"}','{\"themeTitle\":\"Popular Themes\",\"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\":\"500\"}','{\"testimonialTitle\":\"Testimonials\",\"testimonialDescription\":\"Check out the Kats day\'s experiences of our clients on their experiences when they book with us.\",\"testmonial_check\":\"1\",\"testmonial_order_byhome\":\"599\"}');
/*!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=93 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','1650270559promo_1.jpg',NULL,1,1,1,NULL,1,10949),(4,'best tour','1650270089promo_1.png',NULL,1,1,1,NULL,5,10949),(5,'TOI Article','1650270071promo_1.png',NULL,1,1,1,NULL,2,10949),(6,'Tourism & Hospitality | Post pandemic | Domestic& International',NULL,'https://www.youtube.com/watch?v=TSRwTvKWFTo',2,1,0,NULL,2,NULL),(7,'Noida','1650270046promo_1.png',NULL,1,1,1,NULL,3,10949),(8,'goa','1650269993promo_1.png',NULL,1,1,1,NULL,4,10949),(9,'English News','1650349809promo_1.jpg',NULL,1,1,0,NULL,3,10949),(10,'CBNC Awaaz',NULL,'https://www.youtube.com/watch?v=_kCwsYkMZ-Q&t=3s',2,1,1,NULL,2,10949),(11,'ET Now',NULL,'https://www.youtube.com/watch?v=c4TF2XBTzMo',2,1,0,NULL,2,10949),(12,'CBNC Awaaz',NULL,'https://www.youtube.com/watch?v=IKuo9l6cHmE&t',2,1,1,NULL,2,10949),(13,'CBNC Awaaz',NULL,'https://youtu.be/IKuo9l6cHmE',2,1,1,NULL,NULL,10949),(14,'ET Now',NULL,'https://www.youtube.com/watch?v=qPhnhRgf9tA',2,1,0,NULL,2,10949),(15,'ET Now',NULL,'https://youtu.be/IKuo9l6cHmE',2,1,1,NULL,NULL,10949),(16,'Our CEO as Honouring Guest for Mrs.India','1650366828promo_1.jpeg',NULL,1,1,0,NULL,5,10949),(17,'A wonderful message given by our CEO about nature  ','1650367322promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(18,'Nava rastra A wonderful message given by our CEO about nature','1650368981promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(19,'A wonderful message given by our CEO about Yoga & Fitness in Maharashtra times news','1650369370promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(20,'A wonderful message given by our CEO about nature in maharastr times news','1650369370promo_1.jpeg',NULL,1,1,1,NULL,5,10949),(21,'Panting plants and giving wonderful message by our CEO','1650369459promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(22,'Donating blood is good to health ','1650369830promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(23,'Celebration of yoga in hadapsar','1650370112promo_1.jpeg',NULL,1,1,0,NULL,2,10949),(24,'CNBC awaaz',NULL,'https://www.youtube.com/watch?v=_kCwsYkMZ-Q&t',2,1,1,NULL,2,10949),(25,'CNBC awaaz',NULL,'https://www.youtube.com/watch?v=IKuo9l6cHmE&t',2,1,1,NULL,2,10949),(26,'CNBC awaaz',NULL,'https://www.youtube.com/watch?v=IKuo9l6cHmE&t',2,1,1,NULL,NULL,10949),(27,'customer review ',NULL,'https://www.youtube.com/watch?v=aDd7ZMi8ysM&t',2,1,1,NULL,1,10949),(28,'India Today',NULL,'https://www.youtube.com/watch?v=zkhUGnjBhTM&t',2,1,1,NULL,2,10949),(29,'CNBC awaaz',NULL,'https://www.youtube.com/watch?v=_kCwsYkMZ-Q',2,1,0,NULL,2,10949),(30,'CNBC awaaz',NULL,'https://www.youtube.com/watch?v=IKuo9l6cHmE',2,1,0,NULL,2,10949),(31,'India Today',NULL,'https://www.youtube.com/watch?v=zkhUGnjBhTM',2,1,0,NULL,2,10949),(32,'customer review ',NULL,'https://www.youtube.com/watch?v=17xiJtRUq_k',2,1,0,NULL,3,10949),(33,'Varanasi tour',NULL,'https://www.youtube.com/watch?v=7lDdF_nPF5k',2,1,0,NULL,5,10949),(34,'GNT',NULL,'https://www.youtube.com/watch?v=91Vw03Fr14w',2,1,0,NULL,2,10949),(35,'Lokmat times','1659502645promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(36,'Asian news','1659503813promo_1.png',NULL,1,1,0,NULL,3,10949),(37,'United news of india','1659503972promo_1.png',NULL,1,1,0,NULL,3,10949),(38,'News supply','1659504176promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(39,'Startup story','1659504249promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(40,'Republic news today','1659504447promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(41,'UP 18 news','1659504496promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(42,'City Lights','1659504536promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(43,'Mumbai Times','1659504587promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(44,'Indian businessline','1659508598promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(45,'ET View','1659505545promo_1.png',NULL,1,1,0,NULL,3,10949),(46,'The indian journal','1659505622promo_1.png',NULL,1,1,0,NULL,3,10949),(47,'News Wire India','1659505664promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(48,'The prime india','1659505719promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(49,'Telangana Repotar','1659505779promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(50,'ANI','1659505835promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(51,'The print','1659505889promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(52,'World News Network','1659505941promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(53,'Loss Angles evening despatch','1659506106promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(54,'Latest gold news','1659506141promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(55,'Infocus','1659506191promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(56,'England News portal','1659506233promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(57,'Daily prabhat','1659506281promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(58,'LAOS News.net','1659506337promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(59,'Indian Economic Observer','1659506393promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(60,'Al-Jazeera','1659506430promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(61,'British Columbia Times','1659506496promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(62,'Richmond evening news','1659506564promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(63,'Japan times today','1659506676promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(64,'Indian news network','1659506722promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(65,'Canada , Toronto Times','1659506765promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(66,'Florida ..','1659506794promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(67,'South China Herald ...','1659506830promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(68,'Fainancial telegraph','1659506956promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(69,'Business News','1659507169promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(70,'Londan channel news','1659507225promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(71,'Dubai news repoter','1659507270promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(72,'FRANCE','1659507305promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(73,'SYDNEY EVENING POST','1659508509promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(74,'zee5','1659507407promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(75,'Kolkata news','1659507462promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(76,'Mumbai news','1659507501promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(77,'Indonesia news','1659507545promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(78,'Nepal news','1659507585promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(79,'GUJARAT','1659507675promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(80,'Srilanka news','1659507721promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(81,'cambodian times','1659507780promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(82,'Srilanka Island news','1659507819promo_1.jpeg',NULL,1,1,0,NULL,5,36973),(83,'US world Today','1659507865promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(84,'Hydnews today','1659507905promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(85,'East Cost American News','1659507948promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(86,'Birmingham','1659507997promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(87,'Europian Sun times','1659508039promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(88,'Australia Morning tribune','1659508123promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(89,'Miami news','1659508211promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(90,'New york dispatch','1659508287promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(91,'White house news time','1659508344promo_1.jpeg',NULL,1,1,0,NULL,3,10949),(92,'Washington dc dispatch','1659508386promo_1.jpeg',NULL,1,1,0,NULL,3,10949);
/*!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=18 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,1,36973,'','2023-02-13','2023-02-14','','',NULL,'',NULL,NULL,'171c7-70730-b3e55-638ab',0,NULL,'hsid2477256330-17314849','Hotel Shree Radhe Krishan','hsid2477256330-17314849','',3,'INR',NULL,'A 272, Road No. 3, Mahipalpur','','A 272, Road No. 3, Mahipalpur',NULL,NULL,'A 272, Road No. 3, Mahipalpur','extra service',1,1,1,0,725862,725862,'New Delhi','null',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"214331439_248248520_37316--1\",\"RoomCategory\":\"Same day use(10am to 5pm)\",\"RoomType\":\"Same day use(10am to 5pm)-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1306.72,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1306.72,\"TotalRoomPrice\":1306.72,\"TotalFare\":1306.72,\"TotalBaseFare\":594.92,\"TotalNetFare\":606.72,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"SAC\":43.74,\"SBP\":523.48,\"SGP\":589.46,\"TMF\":43.74,\"SNP\":545.71,\"MF\":10,\"TSF\":65.97,\"TTSF\":65.97,\"SRC\":0,\"MU\":700,\"MFT\":1.8},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":5.46,\"BF\":594.92,\"TAF\":711.8,\"TF\":1306.72,\"NF\":606.72},\"afc\":{\"TAF\":{\"SAC\":43.74,\"SBP\":523.48,\"SGP\":589.46,\"TMF\":43.74,\"SNP\":545.71,\"MF\":10,\"TSF\":65.97,\"TTSF\":65.97,\"SRC\":0,\"MU\":700,\"MFT\":1.8}}}],\"PriceWithMarkup\":1306.72,\"arrMarkUps\":{\"HotelRoomPrice\":1306.72,\"pernightperroomprice\":1306.72,\"RoomPrice\":1306.72,\"withmarkupprice\":1306.72,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"44_1_42131825\",\"RoomTotalPrice\":1306.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2477256330-17314849\",\"HotemName\":\"Hotel Shree Radhe Krishan\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"This hotel offers designated smoking areas.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 11 air-conditioned rooms featuring LED televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms with showers are provided. Conveniences include safes and complimentary bottled water, as well as phones with free local calls.\\\",\\\"onsite_payments\\\":\\\"Visa, Debit cards, Cash, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s 24-hour room service.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"With a stay at Hotel Shree Radhe Krishan in New Delhi, you\'ll be 4.7 mi (7.6 km) from Qutub Minar and 5.4 mi (8.6 km) from DLF Cyber City.  This hotel is 8.4 mi (13.5 km) from Sarojini Nagar Market and 9.6 mi (15.5 km) from Gurudwara Bangla Sahib.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Central Mall - 0.1 km \\/ 0.1 mi  Worldmark - 1.1 km \\/ 0.7 mi  Jawaharlal Nehru University - 3.9 km \\/ 2.4 mi  DLF Promenade Vasant Kunj - 4.1 km \\/ 2.6 mi  Ambience Mall - 4.1 km \\/ 2.6 mi  DLF Emporio Vasant Kunj - 4.2 km \\/ 2.6 mi  Fortis Hospital - 4.9 km \\/ 3 mi  Chhattarpur Temple - 7.4 km \\/ 4.6 mi  Qutub Minar - 7.6 km \\/ 4.7 mi  Ambience Mall - 8 km \\/ 5 mi  DLF Phase II - 8 km \\/ 5 mi  DLF Cyber City - 8.6 km \\/ 5.4 mi  Hauz Khas Complex - 8.7 km \\/ 5.4 mi  R.K. Khanna Tennis Complex - 9.7 km \\/ 6 mi  Dhaula Kuan - 10.8 km \\/ 6.7 mi  The preferred airport for Hotel Shree Radhe Krishan is Indira Gandhi International Airport (DEL) - 5.9 km \\/ 3.6 mi \\\",\\\"headline\\\":\\\"In New Delhi (Mahipalpur)\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/0b837990_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/0b837990_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/83a74ce1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/83a74ce1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/c59454ab_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/c59454ab_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/10df755b_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/10df755b_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/2a369eab_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/2a369eab_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/571b7ef5_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/571b7ef5_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/a3a3ab53_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/a3a3ab53_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/e76c3f8a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/e76c3f8a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cdacd0d6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cdacd0d6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/5594abbc_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/5594abbc_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/4aff9247_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/4aff9247_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/de2283dd_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/de2283dd_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/fc936577_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/fc936577_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9cb2c057_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9cb2c057_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/a6294114_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/a6294114_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/37ba67cc_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/37ba67cc_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/f94ad3c2_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/f94ad3c2_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/dfa095e0_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/dfa095e0_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/7f1ef4b1_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/7f1ef4b1_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9150ee8e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9150ee8e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/5319dc9a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/5319dc9a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/7cbf8014_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/7cbf8014_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/27fdb214_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/27fdb214_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/d4feec46_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/d4feec46_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9d081f77_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9d081f77_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9db05004_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9db05004_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/df82e0df_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/df82e0df_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/791c0c35_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/791c0c35_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cf836e71_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cf836e71_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/e4bd5e2a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/e4bd5e2a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/1e54f97b_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/1e54f97b_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/8e3001e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/8e3001e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/b75af149_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/b75af149_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/61e25c40_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/61e25c40_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/397f8bd6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/397f8bd6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/50569fa9_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/50569fa9_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/ac3ac2f8_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/ac3ac2f8_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cdc15b3c_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/cdc15b3c_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/77bad771_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/77bad771_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/798abaea_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/798abaea_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/600a1aa5_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/600a1aa5_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/b582afe0_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/b582afe0_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/06f92100_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/06f92100_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/0ccff05a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/0ccff05a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/d512af32_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/d512af32_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9be5d4e6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9be5d4e6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/c140afd8_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/c140afd8_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214331439\",\"214229934\",\"214229935\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/74640946_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/74640946_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/8781e0d8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/8781e0d8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/2bfc73b5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/2bfc73b5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/813bab9f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/813bab9f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/f9c1257b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/f9c1257b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9248a447_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/9248a447_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/1986ce94_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/43000000\\/42140000\\/42131900\\/42131825\\/1986ce94_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.128136\",\"lt\":\"28.544868\"},\"HotelAddress\":\"A 272, Road No. 3, Mahipalpur\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Designated smoking areas\",\"Free newspapers in lobby\",\"Wheelchair accessible \\u2013 no\",\"Free self parking\",\"24-hour front desk\",\"Internet\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid2477256330-17314849\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"214331439_248248520_37316--48788660\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-01-04T10:59:55.236\\\",\\\"tdt\\\":\\\"2023-02-10T18:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-02-10T18:00\\\",\\\"tdt\\\":\\\"2023-02-13T12:00\\\",\\\"am\\\":589.46},{\\\"fdt\\\":\\\"2023-02-13T12:00\\\",\\\"tdt\\\":\\\"2023-02-14T23:59\\\",\\\"am\\\":589.46}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-01-04 05:29:44','2023-01-04 05:29:44',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"544883\",\"TPSysId\":\"544884\",\"VersionId\":\"1625976\",\"CustomerSysId\":\"305130\",\"TrxId\":\"43490\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(2,1,36973,'','2023-02-09','2023-02-10','','',NULL,'',NULL,NULL,'057e9-614ad-aa5d6-5b8a9',0,NULL,'hsid8535378612-38712550','Aanya Suites','hsid8535378612-38712550','',3,'INR',NULL,'Campus','','Campus',NULL,NULL,'Campus','extra service',1,1,1,0,725862,725862,'Noida','null',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"232269669_288415336_37316--1\",\"RoomCategory\":\"Superior Room\",\"RoomType\":\"Superior Room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":5760.82,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":5760.82,\"TotalRoomPrice\":5760.82,\"TotalFare\":5760.82,\"TotalBaseFare\":5049.02,\"TotalNetFare\":5060.82,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":46.53,\"BF\":5049.02,\"TAF\":711.8,\"TF\":5760.82,\"NF\":5060.82},\"afc\":{\"TAF\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8}}}],\"PriceWithMarkup\":5760.82,\"arrMarkUps\":{\"HotelRoomPrice\":5760.82,\"pernightperroomprice\":5760.82,\"RoomPrice\":5760.82,\"withmarkupprice\":5760.82,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"44_6_60999869\",\"RoomTotalPrice\":5760.82,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid8535378612-38712550\",\"HotemName\":\"Aanya Suites\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Make use of convenient amenities, which include complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 32 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Visa, Debit cards not accepted, American Express, Cash, Mastercard\\\",\\\"dining\\\":\\\"Enjoy a meal at Restaurant, or stay in and take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Noida, Aanya Suites is within a 10-minute drive of Shipra Mall and Mahagun Metro Mall.  This hotel is 7.5 mi (12.1 km) from Swaminarayan Akshardham Temple and 10.1 mi (16.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Shipra Mall - 2.9 km \\/ 1.8 mi  Mahagun Metro Mall - 4.2 km \\/ 2.6 mi  Max Super Speciality Hospital - 6.7 km \\/ 4.2 mi  Noida Film City - 7.8 km \\/ 4.9 mi  Nodia Golf Course - 8.4 km \\/ 5.2 mi  Atta Market - 8.5 km \\/ 5.3 mi  Worlds of Wonder - 8.7 km \\/ 5.4 mi  KidZania Delhi NCR - 8.9 km \\/ 5.5 mi  Laxmi Nagar - 9.5 km \\/ 5.9 mi  World Square Mall - 10 km \\/ 6.2 mi  ABES Engineering College - 11 km \\/ 6.8 mi  Swaminarayan Akshardham Temple - 12.1 km \\/ 7.5 mi  Amity University - 13.3 km \\/ 8.3 mi  Supreme Court - 13.6 km \\/ 8.4 mi  Institute Of Management Technology - 14.4 km \\/ 8.9 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 38.1 km \\/ 23.7 mi\\\",\\\"headline\\\":\\\"Near Shipra Mall\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.35482\",\"lt\":\"28.62391\"},\"HotelAddress\":\"Campus\",\"HotelCity\":\"Noida\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Disable Friendly\",\"Wheelchair-accessible concierge desk\",\"Luggage storage\",\"Restaurant\",\"Safe deposit box\",\"Wheelchair-accessible path to elevator\",\"24-hour front desk\",\"Wheelchair-accessible registration desk\",\"Breakfast\",\"Internet\",\"Restaurant\",\"Designated smoking areas\",\"Business Center\",\"Parking\",\"Designated smoking areas (fines apply)\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Elevator\",\"Free self parking\",\"Concierge Services\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid8535378612-38712550\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"232269669_288415336_37316--48788660\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-01-04T11:01:39.302\\\",\\\"tdt\\\":\\\"2023-02-06T18:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-02-06T18:00\\\",\\\"tdt\\\":\\\"2023-02-09T12:00\\\",\\\"am\\\":5002.49},{\\\"fdt\\\":\\\"2023-02-09T12:00\\\",\\\"tdt\\\":\\\"2023-02-10T23:59\\\",\\\"am\\\":5002.49}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-01-04 05:31:37','2023-01-04 05:31:37',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"544886\",\"TPSysId\":\"544887\",\"VersionId\":\"1625977\",\"CustomerSysId\":\"305130\",\"TrxId\":\"43491\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(3,3,36973,'','2023-01-17','2023-01-18','','',NULL,'',NULL,NULL,'2ac45-59c9b-32aac-678ad',0,NULL,'hsid2629031787-16345454','Hexa Aifa Stay','hsid2629031787-16345454','',3,'INR',NULL,'Andheri - Ghatkopar Main Road','','Andheri - Ghatkopar Main Road',NULL,NULL,'Andheri - Ghatkopar Main Road','extra service',1,1,2,0,699261,699261,'Mumbai','[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"3\",\"EmailId\":\"rah2510@gmail.com\",\"Salutation\":1,\"Relation\":\"9\",\"Contacts\":\"9820805828\",\"FirstName\":\"SONOIA\",\"LastName\":\"BHIMANI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"panno\":\"AGFPB8770P\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2023-01-07 09:29:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"2ac45-59c9b-32aac-678ad\",\"modified\":\"2023-01-07 09:29:26\",\"created\":\"2023-01-07 09:29:26\",\"CustomerMemberSysId\":\"4\"}]',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"214822528_252198720_37310--1\",\"RoomCategory\":\"Standard Double Room\",\"RoomType\":\"Standard Double Room-1 Queen Bed - Package Deal\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1404.25,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1404.25,\"TotalRoomPrice\":1404.25,\"TotalFare\":1404.25,\"TotalBaseFare\":692.45,\"TotalNetFare\":704.25,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":6.19,\"BF\":692.45,\"TAF\":711.8,\"TF\":1404.25,\"NF\":704.25},\"afc\":{\"TAF\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41}}}],\"PriceWithMarkup\":1404.25,\"arrMarkUps\":{\"HotelRoomPrice\":1404.25,\"pernightperroomprice\":1404.25,\"RoomPrice\":1404.25,\"withmarkupprice\":1404.25,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"44_1_39012806\",\"RoomTotalPrice\":1404.25,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2629031787-16345454\",\"HotemName\":\"Hexa Aifa Stay\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"This hotel offers designated smoking areas.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Debit cards not accepted, Cash\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours).\\\",\\\"business_amenities\\\":\\\"Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Mumbai, Hexa Aifa Stay is within a 5-minute drive of MIDC Industrial Estate and Santacruz Electronic Export Processing Zone.  This hotel is 6 mi (9.6 km) from Juhu Beach and 2.4 mi (3.9 km) from Powai Lake.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Phoenix Market City Mall - 2 km \\/ 1.2 mi  Powai Lake - 3 km \\/ 1.8 mi  MIDC Industrial Estate - 3.1 km \\/ 1.9 mi  Santacruz Electronic Export Processing Zone - 3.3 km \\/ 2 mi  R City Mall - 3.7 km \\/ 2.3 mi  KidZania Mumbai - 4.1 km \\/ 2.6 mi  Indian Institute of Technology Bombay - 4.1 km \\/ 2.6 mi  Hiranandani Business Park - Powai - 4.1 km \\/ 2.6 mi  Sanjay Gandhi National Park - 4.8 km \\/ 3 mi  University of Mumbai - 6.5 km \\/ 4.1 mi  MMRDA Grounds - 7 km \\/ 4.4 mi  U.S. Consulate General - 7.2 km \\/ 4.5 mi  JioGarden - 7.3 km \\/ 4.5 mi  Andheri Sports Complex - 7.3 km \\/ 4.6 mi  Nanavati Super Speciality Hospital - 7.7 km \\/ 4.8 mi  The nearest major airport is Chhatrapati Shivaji International Airport (BOM) - 3.2 km \\/ 2 mi\\\",\\\"headline\\\":\\\"Near Phoenix Market City Mall\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"72.88973\",\"lt\":\"19.102448\"},\"HotelAddress\":\"Andheri - Ghatkopar Main Road\",\"HotelCity\":\"Mumbai\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Free self parking\",\"Designated smoking areas\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid2629031787-16345454\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"214822528_252198720_37310--48788654\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-01-07T09:29:09.943\\\",\\\"tdt\\\":\\\"2023-01-14T18:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-01-14T18:00\\\",\\\"tdt\\\":\\\"2023-01-17T12:00\\\",\\\"am\\\":686.26},{\\\"fdt\\\":\\\"2023-01-17T12:00\\\",\\\"tdt\\\":\\\"2023-01-18T23:59\\\",\\\"am\\\":686.26}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-01-07 03:59:26','2023-01-07 03:59:26',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"548670\",\"TPSysId\":\"548671\",\"VersionId\":\"1637316\",\"CustomerSysId\":\"306254\",\"TrxId\":\"43801\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(4,1,36973,'TJS202100445312','2023-02-14','2023-02-15','TJS202100445312','TJS202100445312','TJS202100445312','PENDING',NULL,NULL,'6909a-88472-ddbf0-bdbb4',0,NULL,'hsid5277852734-16348407','Hotel Lahorimal Deluxe Paharganj','hsid5277852734-16348407','',3,'INR',NULL,'55 Amrit Kaur Market','','55 Amrit Kaur Market',NULL,NULL,'55 Amrit Kaur Market','extra service',1,1,1,0,725862,725862,'New Delhi','null',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"218161164_274223899_37316--1\",\"RoomCategory\":\"Deluxe Room-1 Double Bed - Package Deal\",\"RoomType\":\"Deluxe Room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1488.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1488.53,\"TotalRoomPrice\":1488.53,\"TotalFare\":1488.53,\"TotalBaseFare\":776.73,\"TotalNetFare\":788.53,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":776.73,\"CMU\":0,\"TAF\":711.8,\"TF\":1488.53,\"NF\":788.53},\"afc\":{\"TAF\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}}}],\"PriceWithMarkup\":1488.53,\"arrMarkUps\":{\"HotelRoomPrice\":1488.53,\"pernightperroomprice\":1488.53,\"RoomPrice\":1488.53,\"withmarkupprice\":1488.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"42_6_33934056\",\"RoomTotalPrice\":1488.53,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid5277852734-16348407\",\"HotemName\":\"Hotel Lahorimal Deluxe Paharganj\",\"HotelDescription\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms feature showers with rainfall showerheads. Housekeeping is provided daily, and rollaway\\/extra beds (surcharge) can be requested.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards not accepted, Cash not accepted, Discover, American Express, JCB International, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s 24-hour room service.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a 24-hour front desk and an elevator.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel lahorimal Deluxe Paharganj is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.3 mi (3.7 km) from Chandni Chowk and 3.4 mi (5.4 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.3 km \\/ 0.8 mi  Palika Bazaar - 1.5 km \\/ 0.9 mi  Lady Hardinge Medical College - 1.7 km \\/ 1 mi  Kasturba Gandhi Marg - 1.7 km \\/ 1.1 mi  Gole Market - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Jantar Mantar - 2.1 km \\/ 1.3 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Ajmal Khan Road - 2.5 km \\/ 1.6 mi  Gurudwara Bangla Sahib - 2.6 km \\/ 1.6 mi  Laxminarayan Temple - 2.7 km \\/ 1.7 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.7 km \\/ 2.3 mi  Supreme Court - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.2179\",\"lt\":\"28.6433\"},\"HotelAddress\":\"55 Amrit Kaur Market\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Elevator\",\"Non Smoking\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid5277852734-16348407\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"218161164_274223899_37316--48788660\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-01-17T11:27:08.265\\\",\\\"tdt\\\":\\\"2023-02-11T18:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-02-11T18:00\\\",\\\"tdt\\\":\\\"2023-02-14T12:00\\\",\\\"am\\\":776.73},{\\\"fdt\\\":\\\"2023-02-14T12:00\\\",\\\"tdt\\\":\\\"2023-02-15T23:59\\\",\\\"am\\\":776.73}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS202100445312\",\"amount\":788.53,\"markup\":700.00,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"8923963627\"],\"code\":[\"+91\"]},\"status\":\"PENDING\",\"createdOn\":\"2023-01-17T11:28:45.574\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"Hotel lahorimal Deluxe Paharganj\",\"des\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms feature showers with rainfall showerheads. Housekeeping is provided daily, and rollaway/extra beds (surcharge) can be requested.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards not accepted, Cash not accepted, Discover, American Express, JCB International, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s 24-hour room service.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a 24-hour front desk and an elevator.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel lahorimal Deluxe Paharganj is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.3 mi (3.7 km) from Chandni Chowk and 3.4 mi (5.4 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.3 km / 0.8 mi  Palika Bazaar - 1.5 km / 0.9 mi  Lady Hardinge Medical College - 1.7 km / 1 mi  Kasturba Gandhi Marg - 1.7 km / 1.1 mi  Gole Market - 2 km / 1.2 mi  Jama Masjid - 2 km / 1.2 mi  Jantar Mantar - 2.1 km / 1.3 mi  Chandni Chowk - 2.5 km / 1.5 mi  Ajmal Khan Road - 2.5 km / 1.6 mi  Gurudwara Bangla Sahib - 2.6 km / 1.6 mi  Laxminarayan Temple - 2.7 km / 1.7 mi  Lajpat Rai Market - 2.9 km / 1.8 mi  Red Fort - 3.1 km / 1.9 mi  Parliament of India - 3.7 km / 2.3 mi  Supreme Court - 3.9 km / 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km / 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"77.2179\",\"lt\":\"28.6433\"},\"ad\":{\"adr\":\"55 Amrit Kaur Market\",\"adr2\":\"Opposite Paharganj Railway Station.\",\"postalCode\":\"110055\",\"city\":{\"name\":\"New Delhi\"},\"state\":{\"name\":\"Delhi\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"New Delhi\",\"sn\":\"Delhi\",\"cn\":\"India\"},\"cnt\":{\"ph\":\"91-8700718532\"},\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"Only registered guests are allowed in the guestrooms. \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Rollaway bed fee: INR 500.0 per night             The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"218161164_274223899_37316--1\",\"rc\":\"Deluxe Room-1 Double Bed - Package Deal\",\"rt\":\"Deluxe Room-1 Double Bed - Package Deal\",\"srn\":\"Deluxe, Double\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1488.53,\"tfcs\":{\"BF\":776.73,\"TAF\":711.80,\"CMU\":0.00,\"TF\":1488.53,\"NF\":788.53},\"tafcs\":{\"TAF\":{\"MF\":10.00,\"MU\":700.00,\"SRC\":0.00,\"IGST\":1.80,\"MFT\":1.80,\"SAC\":89.06,\"TSF\":80.28,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}},\"ddt\":\"2023-02-11T18:00\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":776.73,\"NF\":788.53,\"TF\":1488.53,\"CMU\":0.00,\"TAF\":711.80},\"afc\":{\"TAF\":{\"MF\":10.00,\"MU\":700.00,\"SRC\":0.00,\"IGST\":1.80,\"MFT\":1.80,\"SAC\":89.06,\"TSF\":80.28,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}}}],\"checkInDate\":\"2023-02-14\",\"checkOutDate\":\"2023-02-15\",\"ti\":[{\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"iopr\":false,\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free WiFi\"]}]},\"rsta\":\"P\"}],\"tp\":788.53,\"cnp\":{\"id\":\"218161164_274223899_37316--48788660\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-17T11:27:08.265\",\"tdt\":\"2023-02-11T18:00\",\"am\":0.00},{\"fdt\":\"2023-02-11T18:00\",\"tdt\":\"2023-02-14T12:00\",\"am\":776.73},{\"fdt\":\"2023-02-14T12:00\",\"tdt\":\"2023-02-15T23:59\",\"am\":776.73}],\"cpb\":48},\"ddt\":\"2023-02-11T18:00\",\"inst\":[],\"oai\":{\"sid\":\"42\"},\"iopr\":false,\"ispr\":true}],\"uid\":\"16348407\"},\"query\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"nationality\":\"106\"},\"searchPreferences\":{\"currency\":\"INR\"},\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200}}','','',NULL,'0','2023-01-17 05:57:16','2023-01-17 05:57:16',1,'TRANSACTION IS SUCCESSFUL.','E3443768CC284B538300DD4CE884737C','11000000318715',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"558850\",\"TPSysId\":\"558851\",\"VersionId\":\"1663731\",\"CustomerSysId\":\"305130\",\"TrxId\":\"44806\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(6,1,36973,'TJS209000445805','2023-02-14','2023-02-15','TJS209000445805','TJS209000445805','TJS209000445805','SUCCESS',NULL,NULL,'5f56c-0e1ab-39f6d-249de',0,NULL,'hsid1429248367-4686348348','THE HOSTELLER AGRA','hsid1429248367-4686348348','',3,'INR','http://tms.tripjack.com/cpfv3/images/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==','Paktola','','Paktola',NULL,NULL,'Paktola','extra service',1,1,1,0,740325,740325,'AGRA','null',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )_1_0\",\"RoomCategory\":\"1 Person in 6-Bed Dormitory - Mixed\",\"RoomType\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1119.3,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1119.3,\"TotalRoomPrice\":1119.3,\"TotalFare\":1119.3,\"TotalBaseFare\":407.5,\"TotalNetFare\":419.3,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TAF\":711.8,\"BF\":407.5,\"TF\":1119.3,\"NF\":419.3},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10}}}],\"PriceWithMarkup\":1119.3,\"arrMarkUps\":{\"HotelRoomPrice\":1119.3,\"pernightperroomprice\":1119.3,\"RoomPrice\":1119.3,\"withmarkupprice\":1119.3,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"5_1_63c67861ead551f6b2d1e19b\",\"RoomTotalPrice\":1119.3,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid1429248367-4686348348\",\"HotemName\":\"THE HOSTELLER AGRA\",\"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\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\",\"url\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05028\",\"lt\":\"27.1670742\"},\"HotelAddress\":\"Paktola\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid1429248367-4686348348\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"5_1_63c67861ead551f6b2d1e19b\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-01-17T15:59:28.622\\\",\\\"tdt\\\":\\\"2023-02-03T18:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-02-03T18:00\\\",\\\"tdt\\\":\\\"2023-02-14T12:00\\\",\\\"am\\\":407.50},{\\\"fdt\\\":\\\"2023-02-14T12:00\\\",\\\"tdt\\\":\\\"2023-02-15T23:59\\\",\\\"am\\\":407.50}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS209000445805\",\"amount\":419.30,\"markup\":700.00,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"8923963627\"],\"code\":[\"+91\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-01-17T16:01:44.888\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"THE HOSTELLER AGRA\",\"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>\",\"rt\":3,\"gl\":{\"ln\":\"78.05028\",\"lt\":\"27.1670742\"},\"ad\":{\"adr\":\"Paktola\",\"city\":{\"name\":\"AGRA\"},\"state\":{},\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"ops\":[{\"ris\":[{\"id\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )_1_0\",\"rc\":\"1 Person in 6-Bed Dormitory - Mixed\",\"rt\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1119.30,\"tfcs\":{\"TAF\":711.80,\"BF\":407.50,\"TF\":1119.30,\"NF\":419.30},\"tafcs\":{\"TAF\":{\"MFT\":1.80,\"IGST\":1.80,\"MU\":700.00,\"SGP\":407.50,\"SBP\":407.50,\"MF\":10.00,\"SNP\":407.50}},\"ddt\":\"2023-02-03T18:00\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":407.50,\"NF\":419.30,\"TF\":1119.30,\"TAF\":711.80},\"afc\":{\"TAF\":{\"MFT\":1.80,\"IGST\":1.80,\"MU\":700.00,\"SGP\":407.50,\"SBP\":407.50,\"MF\":10.00,\"SNP\":407.50}}}],\"checkInDate\":\"2023-02-14\",\"checkOutDate\":\"2023-02-15\",\"ti\":[{\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"iopr\":false,\"rsta\":\"S\"}],\"tp\":419.30,\"cnp\":{\"id\":\"5_1_63c67861ead551f6b2d1e19b\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-17T15:59:28.622\",\"tdt\":\"2023-02-03T18:00\",\"am\":0.00},{\"fdt\":\"2023-02-03T18:00\",\"tdt\":\"2023-02-14T12:00\",\"am\":407.50},{\"fdt\":\"2023-02-14T12:00\",\"tdt\":\"2023-02-15T23:59\",\"am\":407.50}],\"cpb\":24},\"ddt\":\"2023-02-03T18:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Child and extra bed policy :  Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.Children -year(s) must use an extra bed.Guests over  years old are considered as an adults.Extra beds are depend on the room you choose,please check the individual room policy for more details.\"}],\"oai\":{\"sid\":\"5\"},\"iopr\":false}]},\"query\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"nationality\":\"106\"},\"searchPreferences\":{\"currency\":\"INR\"},\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200}}','','',NULL,'0','2023-01-17 10:29:20','2023-01-17 10:29:20',1,'TRANSACTION IS SUCCESSFUL.','423A118FB93448D889ED6EFA95F8753B','11000000318986',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"559585\",\"TPSysId\":\"559586\",\"VersionId\":\"1704452\",\"CustomerSysId\":\"305130\",\"TrxId\":\"44862\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(8,1,59951,'','2023-05-11','2023-05-12','','',NULL,'',NULL,NULL,'4b8f1-5fb4f-33b4a-b7a8b',0,NULL,'hsid5556847538-41415276','Goroomgo Viren Plaza Agra','hsid5556847538-41415276','',3,'INR',NULL,'1st Floor Maa Vaishno Complex, Near','','1st Floor Maa Vaishno Complex, Near',NULL,NULL,'1st Floor Maa Vaishno Complex, Near','extra service',1,1,1,0,740325,740325,'Agra','null',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"316254491_385690002_37321--1\",\"RoomCategory\":\"Standard Double Room-1 King Bed - Package Deal\",\"RoomType\":\"Standard Double Room-1 King Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":510.51,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":510.51,\"TotalRoomPrice\":510.51,\"TotalFare\":510.51,\"TotalBaseFare\":498.71,\"TotalNetFare\":510.51,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":498.71,\"TAF\":11.8,\"TF\":510.51,\"NF\":510.51},\"afc\":{\"TAF\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10}}}],\"PriceWithMarkup\":510.51,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":510.51,\"pernightperroomprice\":510.51,\"RoomPrice\":510.51,\"withmarkupprice\":510.51,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"42_5_76021512\",\"RoomTotalPrice\":510.51,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid5556847538-41415276\",\"HotemName\":\"Goroomgo Viren Plaza Agra\",\"HotelDescription\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Stay in one of 40 guestrooms featuring LCD televisions. Your memory foam bed comes with down comforters and Egyptian cotton sheets. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms feature showers with rainfall showerheads and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards, Discover, American Express, Cash, JCB International, Mastercard, UnionPay\\\",\\\"dining\\\":\\\"Continental breakfasts are available daily from 6:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Agra, Goroomgo Viren Plaza Agra is within a 15-minute drive of Agra Marble Emporium and Sadar Bazar.  This hotel is 4.1 mi (6.5 km) from Taj Mahal and 1.6 mi (2.6 km) from Jama Masjid.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Agra Marble Emporium - 2.4 km \\/ 1.5 mi  Jama Masjid - 2.6 km \\/ 1.6 mi  Sadar Bazar - 2.6 km \\/ 1.6 mi  Kinari Bazar - 2.8 km \\/ 1.7 mi  Mankameshwar Temple - 3.1 km \\/ 1.9 mi  Agra Fort - 3.2 km \\/ 2 mi  St. John\'s College - 4.2 km \\/ 2.6 mi  Mosque and the Jawab - 4.6 km \\/ 2.9 mi  Taj Mahal - 5 km \\/ 3.1 mi  Itmad-ud-Daulah\'s Tomb - 5.5 km \\/ 3.4 mi  Chini ka Rauza - 6.8 km \\/ 4.2 mi  Ram Bagh - 7.1 km \\/ 4.4 mi  Soami Bagh Temple - 7.4 km \\/ 4.6 mi  Tomb of Akbar the Great - 10.2 km \\/ 6.3 mi  Mariam\'s Tomb - 10.9 km \\/ 6.8 mi  The nearest major airport is Agra (AGR-Kheria) - 4 km \\/ 2.5 mi\\\",\\\"headline\\\":\\\"Near Agra Marble Emporium\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.00173\",\"lt\":\"27.16699\"},\"HotelAddress\":\"1st Floor Maa Vaishno Complex, Near\",\"HotelCity\":\"Agra\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Disable Friendly\",\"Luggage storage\",\"Safe deposit box\",\"24-hour front desk\",\"Breakfast\",\"Well-lit path to entrance\",\"Non Smoking\",\"Stair-free path to entrance\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Free self parking\",\"Concierge Services\"]}}',NULL,NULL,NULL,'','',NULL,'0','2023-04-28 10:23:40','2023-04-28 10:23:40',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,1,59951,'','2023-06-06','2023-07-04','','',NULL,'',NULL,NULL,'2e860-409ee-63f5b-31575',0,NULL,'hsid0905554104-39647921','Hotel Taj Plaza','hsid0905554104-39647921','',3,'INR',NULL,'Taj Mahal East Gate, Near Hotel Oberoi','','Taj Mahal East Gate, Near Hotel Oberoi',NULL,NULL,'Taj Mahal East Gate, Near Hotel Oberoi','extra service',28,1,1,0,740325,740325,'Agra','null',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"379840_389374418_37316--1\",\"RoomCategory\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"RoomType\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":635.8535714285715,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":635.8535714285715,\"TotalRoomPrice\":17803.9,\"TotalFare\":17803.9,\"TotalBaseFare\":17473.5,\"TotalNetFare\":17803.9,\"TotalTaxFare\":330.4,\"TaxFareBreakup\":{\"SNP\":16321.86,\"MF\":280,\"MFT\":50.4,\"TTSF\":1975.68,\"SGP\":17473.5,\"TMF\":1151.64,\"SAC\":1151.64,\"SBP\":15497.82,\"TSF\":1975.68,\"SRC\":0},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":2,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":3,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":4,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":5,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":6,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":7,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":8,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":9,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":10,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":11,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":12,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":13,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":14,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":15,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":16,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":17,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":18,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":19,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":20,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":21,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":22,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":23,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":24,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":25,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":26,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":27,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":28,\"fc\":{\"CMU\":0,\"BF\":623.88,\"TAF\":11.8,\"TF\":635.68,\"NF\":635.68},\"afc\":{\"TAF\":{\"SNP\":582.75,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":623.88,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.32,\"TSF\":70.56,\"SRC\":0}}}],\"PriceWithMarkup\":635.8535714285715,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":17803.9,\"pernightperroomprice\":635.8535714285715,\"RoomPrice\":635.8535714285715,\"withmarkupprice\":635.8535714285715,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":28,\"markup__\":\".00\"}}],\"RoomId\":\"42_52_2641882\",\"RoomTotalPrice\":17803.9,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid0905554104-39647921\",\"HotemName\":\"Hotel Taj Plaza\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Treat yourself with massages, body treatments, and facials. This Victorian hotel also features complimentary wireless Internet access, concierge services, and free babysitting. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. Digital television is provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers.\\\",\\\"onsite_payments\\\":\\\"Visa, Mastercard\\\",\\\"dining\\\":\\\"Grab a bite at MAGIC OF SPICE, one of the hotel\'s 2 restaurants, or stay in and take advantage of the 24-hour room service. Snacks are also available at the coffee shop\\/cafe. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 6 AM to 11 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary wired Internet access, a business center, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available 24 hours), and free self parking is available onsite.\\\",\\\"location\\\":\\\"With a stay at Hotel Taj Plaza in Agra, you\'ll be 0.7 mi (1.1 km) from Taj Mahal and 2.3 mi (3.7 km) from Agra Fort.  This family-friendly hotel is 2.9 mi (4.6 km) from Jama Masjid and 3.3 mi (5.3 km) from Kinari Bazar.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Mosque and the Jawab - 1 km \\/ 0.6 mi  Taj Mahal - 1.3 km \\/ 0.8 mi  Agra Fort - 2.9 km \\/ 1.8 mi  Jama Masjid - 4.1 km \\/ 2.6 mi  Mankameshwar Temple - 4.2 km \\/ 2.6 mi  Kinari Bazar - 4.3 km \\/ 2.7 mi  Agra Marble Emporium - 4.5 km \\/ 2.8 mi  Itmad-ud-Daulah\'s Tomb - 6.8 km \\/ 4.2 mi  St. John\'s College - 7.3 km \\/ 4.5 mi  Sadar Bazar - 7.7 km \\/ 4.8 mi  Chini ka Rauza - 8.1 km \\/ 5 mi  Soami Bagh Temple - 10.4 km \\/ 6.5 mi  Tomb of Akbar the Great - 14.8 km \\/ 9.2 mi  Mariam\'s Tomb - 15.6 km \\/ 9.7 mi  Guru ka Tal - 20.3 km \\/ 12.6 mi  The preferred airport for Hotel Taj Plaza is Agra (AGR-Kheria) - 12.1 km \\/ 7.5 mi \\\",\\\"headline\\\":\\\"Near Mosque and the Jawab\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi\",\"HotelCity\":\"Agra\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Shopping on site\",\"Parking\",\"Banquet\",\"Proposal\\/romance packages available\",\"Childcare Service\",\"Number of meeting rooms - 1\",\"Internet\",\"Television\",\"Internet\",\"Lounge\",\"Spa\",\"Designated smoking areas\",\"Garden\",\"Parking\",\"Wedding services\",\"Tours\\/ticket assistance\",\"Accessible bathroom\",\"Area shuttle (surcharge)\",\"RoofTopTerrace\",\"Airport Shuttle\",\"Restaurant\",\"Luggage storage\",\"Business Center\",\"24-hour front desk\",\"Breakfast\",\"Library\",\"Free train station pickup\",\"Restaurant\",\"Barbeque\",\"Coffee\\/tea in common areas\",\"Number of coffee shops\\/cafes - 1\",\"Laundry Services\",\"Free self parking\",\"Business Center\",\"Terrace\",\"ATM\",\"Disable Friendly\",\"Swimming Pool\",\"Bicycle rentals on site\",\"Concierge Services\"]}}',NULL,NULL,NULL,'','',NULL,'0','2023-05-01 10:11:19','2023-05-01 10:11:19',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,8,59951,'','2023-05-17','2023-05-18','','',NULL,'',NULL,NULL,'40b74-17b6e-4d2c1-4f0b0',0,NULL,'hsid9355384104-15649515','YELLOW HOUSE','hsid9355384104-15649515','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=','House 510, Vagator Beach ','','House 510, Vagator Beach ',NULL,NULL,'House 510, Vagator Beach ','extra service',1,1,2,0,699356,699356,'GOA','[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"8\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":1,\"Relation\":\"9\",\"Contacts\":\"7566821253\",\"FirstName\":\"AT\",\"LastName\":\"Q\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"panno\":\"\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2023-05-09 12:40:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNation\":0,\"PassportNo\":0,\"PassportExpiry\":\"1900-01-01\",\"passporIssue\":\"1900-01-01\",\"apiTraceId\":\"40b74-17b6e-4d2c1-4f0b0\",\"modified\":\"2023-05-09 12:40:42\",\"created\":\"2023-05-09 12:40:42\",\"CustomerMemberSysId\":\"13\"}]',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"DOUBLE DELUXE ROOM ONLY   _2_0\",\"RoomCategory\":\"DOUBLE DELUXE\",\"RoomType\":\"DOUBLE DELUXE ROOM ONLY   \",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1175.63,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1175.63,\"TotalRoomPrice\":1175.63,\"TotalFare\":1175.63,\"TotalBaseFare\":1163.83,\"TotalNetFare\":1175.63,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":1175.63,\"BF\":1163.83,\"NF\":1175.63,\"TAF\":11.8},\"afc\":{\"TAF\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83}}}],\"PriceWithMarkup\":1175.63,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1175.63,\"pernightperroomprice\":1175.63,\"RoomPrice\":1175.63,\"withmarkupprice\":1175.63,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"12_0_6459f078ead55185df1194d1\",\"RoomTotalPrice\":1175.63,\"iopr\":false,\"ipr\":false,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":false,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid9355384104-15649515\",\"HotemName\":\"YELLOW HOUSE\",\"HotelDescription\":\"When you stay at Yellow House in Vagator, youll be on the beach, within a 15-minute drive of Vagator Beach and Anjuna Beach.  This beach hotel is 5 mi (8.1 km) from Baga Beach and 5.7 mi (9.2 km) from Calangute Beach.\\nTake in the views from a rooftop terrace and a garden and make use of amenities such as complimentary wireless Internet access. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\nFeatured amenities include luggage storage and laundry facilities. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a train station pick-up service.\\nEnjoy a meal at the restaurant or snacks in the hotels coffee shop\\/caf\\u00e9. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 8:00 AM to 1:00 PM for a fee.\\nMake yourself at home in one of the 10 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms with showers are provided. Conveniences include desks and ceiling fans, and housekeeping is provided on request.\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"73.735275\",\"lt\":\"15.601622\"},\"HotelAddress\":\"House 510, Vagator Beach \",\"HotelCity\":\"GOA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"hotel\",\"Check-in hour\",\"Check-out hour\",\"YES Wi-fi\",\"Airport Shuttle\",\"Laundry service\",\"Garden\",\"Luggage room\",\"Caf\\u00e9\",\"Bar\",\"Restaurant\",\"Meeting room\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid9355384104-15649515\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"12_0_6459f078ead55185df1194d1\\\",\\\"ifra\\\":true,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-05-09T12:35:36.289\\\",\\\"tdt\\\":\\\"2023-05-11T17:00\\\",\\\"am\\\":0.00},{\\\"fdt\\\":\\\"2023-05-11T17:00\\\",\\\"tdt\\\":\\\"2023-05-17T12:00\\\",\\\"am\\\":1162.96},{\\\"fdt\\\":\\\"2023-05-17T12:00\\\",\\\"tdt\\\":\\\"2023-05-18T23:59\\\",\\\"am\\\":1163.83}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-05-09 07:10:42','2023-05-09 07:10:42',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"690331\",\"TPSysId\":\"690332\",\"VersionId\":\"2081983\",\"CustomerSysId\":\"394046\",\"TrxId\":\"56657\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(12,8,59951,'','2023-05-23','2023-05-24','','',NULL,'',NULL,NULL,'31f38-e7dfb-f0ff1-4fcb4',0,NULL,'hsid3069559942-39699029','OCEANIC PEARL BEACH GUEST HOUSE','hsid3069559942-39699029','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=','Holiday Street House no E-1/248 A Gauravaddo next to little italy road ','','Holiday Street House no E-1/248 A Gauravaddo next to little italy road ',NULL,NULL,'Holiday Street House no E-1/248 A Gauravaddo next to little italy road ','extra service',1,1,2,0,699356,699356,'GOA','[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"8\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":1,\"Relation\":\"9\",\"Contacts\":\"7566821253\",\"FirstName\":\"AAAAA\",\"LastName\":\"BBBBBB\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"panno\":\"AACCG7285N\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2023-05-20 12:07:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNation\":0,\"PassportNo\":0,\"PassportExpiry\":\"1900-01-01\",\"passporIssue\":\"1900-01-01\",\"apiTraceId\":\"31f38-e7dfb-f0ff1-4fcb4\",\"modified\":\"2023-05-20 12:07:53\",\"created\":\"2023-05-20 12:07:53\",\"CustomerMemberSysId\":\"15\"}]',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"FullBed Standard Room(Room Only)(1 Double Bed)_2_0\",\"RoomCategory\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"RoomType\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1424.07,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1424.07,\"TotalRoomPrice\":1424.07,\"TotalFare\":1424.07,\"TotalBaseFare\":1412.27,\"TotalNetFare\":1424.07,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":1424.07,\"TAF\":11.8,\"NF\":1424.07,\"BF\":1412.27},\"afc\":{\"TAF\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8}}}],\"PriceWithMarkup\":1424.07,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1424.07,\"pernightperroomprice\":1424.07,\"RoomPrice\":1424.07,\"withmarkupprice\":1424.07,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"13_0_64686a8fe9d551f624ca5f37\",\"RoomTotalPrice\":1424.07,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid3069559942-39699029\",\"HotemName\":\"OCEANIC PEARL BEACH GUEST HOUSE\",\"HotelDescription\":\"\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"73.761375\",\"lt\":\"15.533253\"},\"HotelAddress\":\"Holiday Street House no E-1\\/248 A Gauravaddo next to little italy road \",\"HotelCity\":\"GOA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid3069559942-39699029\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"13_0_64686a8fe9d551f624ca5f37\\\",\\\"ifra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-05-20T12:07:28.875\\\",\\\"tdt\\\":\\\"2023-05-23T12:00\\\",\\\"am\\\":1412.27},{\\\"fdt\\\":\\\"2023-05-23T12:00\\\",\\\"tdt\\\":\\\"2023-05-24T23:59\\\",\\\"am\\\":1412.27}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-05-20 06:37:54','2023-05-20 06:37:54',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"704013\",\"TPSysId\":\"704014\",\"VersionId\":\"2123000\",\"CustomerSysId\":\"394046\",\"TrxId\":\"57731\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(13,1,59951,'TJS200800612702','2023-07-12','2023-07-13','TJS200800612702','TJS200800612702','TJS200800612702','',NULL,NULL,'b8ed7-a2457-3ed80-ac18b',0,NULL,'hsid2776296318-39647921','HOTEL TAJ PLAZA','hsid2776296318-39647921','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=','Taj Mahal East Gate, Near Hotel Oberoi ','','Taj Mahal East Gate, Near Hotel Oberoi ',NULL,NULL,'Taj Mahal East Gate, Near Hotel Oberoi ','extra service',1,1,2,0,740325,740325,'AGRA','[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":3,\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"CHINKI\",\"LastName\":\"SINGH\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"panno\":\"BCDPV9945B\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2023-07-03 11:46:11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNation\":0,\"PassportNo\":0,\"PassportExpiry\":\"1900-01-01\",\"passporIssue\":\"1900-01-01\",\"apiTraceId\":\"b8ed7-a2457-3ed80-ac18b\",\"modified\":\"2023-07-03 11:46:11\",\"created\":\"2023-07-03 11:46:11\",\"CustomerMemberSysId\":\"16\"}]',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])_2_0\",\"RoomCategory\":\"Standard Room with Wi-Fi -[Non Refundables]\",\"RoomType\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":432.6,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":432.6,\"TotalRoomPrice\":432.6,\"TotalFare\":432.6,\"TotalBaseFare\":420.8,\"TotalNetFare\":432.6,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":432.6,\"BF\":420.8,\"NF\":432.6,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10}}}],\"PriceWithMarkup\":432.6,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":432.6,\"pernightperroomprice\":432.6,\"RoomPrice\":432.6,\"withmarkupprice\":432.6,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"16_0_64a2667ae9d5514a9f5b1e33\",\"RoomTotalPrice\":432.6,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2776296318-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid2776296318-39647921\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"16_0_64a2667ae9d5514a9f5b1e33\\\",\\\"ifra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-07-03T11:46:25.382\\\",\\\"tdt\\\":\\\"2023-07-12T12:00\\\",\\\"am\\\":420.80},{\\\"fdt\\\":\\\"2023-07-12T12:00\\\",\\\"tdt\\\":\\\"2023-07-13T23:59\\\",\\\"am\\\":420.80}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-07-03 06:16:12','2023-07-03 06:16:12',1,'TRANSACTION IS SUCCESSFUL.','3F587AED1F7D46F1B0ECBA3B3FF2C7FE','11000000394756',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752857\",\"TPSysId\":\"752858\",\"VersionId\":\"2299512\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62100\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(14,17,59951,'TJS208800612827','2023-08-07','2023-08-08','TJS208800612827','TJS208800612827','TJS208800612827','',NULL,NULL,'3cf41-36a5f-840c4-d66df',0,NULL,'hsid8374820137-39647921','HOTEL TAJ PLAZA','hsid8374820137-39647921','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=','Taj Mahal East Gate, Near Hotel Oberoi ','','Taj Mahal East Gate, Near Hotel Oberoi ',NULL,NULL,'Taj Mahal East Gate, Near Hotel Oberoi ','extra service',1,1,1,0,740325,740325,'AGRA','null',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a2712ce9d55130165b1e28\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid8374820137-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid8374820137-39647921\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"24_0_64a2712ce9d55130165b1e28\\\",\\\"ifra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-07-03T12:27:47.125\\\",\\\"tdt\\\":\\\"2023-08-07T12:00\\\",\\\"am\\\":738.92},{\\\"fdt\\\":\\\"2023-08-07T12:00\\\",\\\"tdt\\\":\\\"2023-08-08T23:59\\\",\\\"am\\\":738.92}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-07-03 06:57:27','2023-07-03 06:57:27',1,'TRANSACTION IS SUCCESSFUL.','C06691A6CB4C41569364F2C8A76C7429','11000000394803',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752962\",\"TPSysId\":\"752963\",\"VersionId\":\"2299841\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62107\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(15,9,59951,'TJS205400612932','2023-08-20','2023-08-21','TJS205400612932','TJS205400612932','TJS205400612932','SUCCESS',NULL,NULL,'cfc78-43bbb-03f0f-29b20',0,NULL,'hsid6373173319-39647921','HOTEL TAJ PLAZA','hsid6373173319-39647921','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=','Taj Mahal East Gate, Near Hotel Oberoi ','','Taj Mahal East Gate, Near Hotel Oberoi ',NULL,NULL,'Taj Mahal East Gate, Near Hotel Oberoi ','extra service',1,1,1,0,740325,740325,'AGRA','null',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a27a26ead551882cba4833\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid6373173319-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"Perfect for any occasion  the Taj Plaza Hotel  provides amazing service and an ideal location  all at a great price\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Coffee\\/tea in lobby\",\"No elevators\",\"Noise-free rooms not guaranteed\",\"Television in lobby\",\"Carte Blanche\",\"Diners Club\",\"Discover\",\"Visa\",\"American Express\",\"Free self parking\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid6373173319-39647921\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"24_0_64a27a26ead551882cba4833\\\",\\\"ifra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-07-03T13:07:06.478\\\",\\\"tdt\\\":\\\"2023-08-20T12:00\\\",\\\"am\\\":738.92},{\\\"fdt\\\":\\\"2023-08-20T12:00\\\",\\\"tdt\\\":\\\"2023-08-21T23:59\\\",\\\"am\\\":738.92}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS205400612932\",\"amount\":750.72,\"markup\":0.00,\"deliveryInfo\":{\"emails\":[\"sibo.sarso@gmail.com\"],\"contacts\":[\"8447455883\"],\"code\":[\"+91\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T13:09:41.934\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"Hotel Taj Plaza\",\"des\":\"Perfect for any occasion  the Taj Plaza Hotel  provides amazing service and an ideal location  all at a great price\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate, Shilpgram \'VIP\' Road.\",\"city\":{\"name\":\"AGRA\"},\"state\":{},\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"cnt\":{},\"ops\":[{\"ris\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"rc\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"rt\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":750.72,\"tfcs\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.80},\"tafcs\":{\"TAF\":{\"IGST\":1.80,\"MFT\":1.80,\"SBP\":738.92,\"SGP\":738.92,\"MF\":10.00,\"SNP\":738.92}},\"ddt\":\"2023-07-03T13:07:06.478\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":738.92,\"NF\":750.72,\"TF\":750.72,\"TAF\":11.80},\"afc\":{\"TAF\":{\"IGST\":1.80,\"MFT\":1.80,\"SBP\":738.92,\"SGP\":738.92,\"MF\":10.00,\"SNP\":738.92}}}],\"checkInDate\":\"2023-08-20\",\"checkOutDate\":\"2023-08-21\",\"ti\":[{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"md\",\"lN\":\"sabir\"}],\"iopr\":false,\"rsta\":\"S\"}],\"tp\":750.72,\"cnp\":{\"id\":\"24_0_64a27a26ead551882cba4833\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-07-03T13:07:06.478\",\"tdt\":\"2023-08-20T12:00\",\"am\":738.92},{\"fdt\":\"2023-08-20T12:00\",\"tdt\":\"2023-08-21T23:59\",\"am\":738.92}],\"cpb\":24},\"ddt\":\"2023-07-03T13:07:06.478\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Twin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PMTwin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PM\"}],\"oai\":{\"sid\":\"24\"},\"iopr\":false,\"ipr\":true,\"ipm\":false}],\"uid\":\"39647921\"},\"query\":{\"checkinDate\":\"2023-08-20\",\"checkoutDate\":\"2023-08-21\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"India\",\"nationality\":\"106\"},\"searchPreferences\":{\"currency\":\"INR\"},\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200}}','','',NULL,'0','2023-07-03 07:37:54','2023-07-03 07:37:54',1,'TRANSACTION IS SUCCESSFUL.','75B15B9B3EF24AF6AE3652DC5534230D','11000000394853',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753114\",\"TPSysId\":\"753115\",\"VersionId\":\"2300231\",\"CustomerSysId\":\"439879\",\"TrxId\":\"62118\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(16,1,59951,'','2023-08-07','2023-08-08','','',NULL,'',NULL,NULL,'b47e1-4dc95-6b349-4095c',0,NULL,'hsid4063373440-39647921','HOTEL TAJ PLAZA','hsid4063373440-39647921','',3,'INR','http://tms.tripjack.com//cpfv3/images/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=','Taj Mahal East Gate, Near Hotel Oberoi ','','Taj Mahal East Gate, Near Hotel Oberoi ',NULL,NULL,'Taj Mahal East Gate, Near Hotel Oberoi ','extra service',1,1,1,0,740325,740325,'AGRA','null',0,NULL,NULL,NULL,0,0,0.00,0.00,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a27cf4e9d551a99f5b1e48\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid4063373440-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid4063373440-39647921\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"24_0_64a27cf4e9d551a99f5b1e48\\\",\\\"ifra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-07-03T13:18:11.979\\\",\\\"tdt\\\":\\\"2023-08-07T12:00\\\",\\\"am\\\":738.92},{\\\"fdt\\\":\\\"2023-08-07T12:00\\\",\\\"tdt\\\":\\\"2023-08-08T23:59\\\",\\\"am\\\":738.92}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,NULL,'','',NULL,'0','2023-07-03 07:47:24','2023-07-03 07:47:24',1,'TRANSACTION IS SUCCESSFUL.','F1D5CB329055462F9420168FC16E2FD3','11000000394865',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753153\",\"TPSysId\":\"753154\",\"VersionId\":\"2300367\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62121\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}'),(17,1,59951,'TJS205100612965','2023-08-08','2023-08-09','TJS205100612965','TJS205100612965','TJS205100612965','PENDING',NULL,NULL,'17e47-90bee-2e132-102d7',0,NULL,'hsid2826267883-15329627','Hotel Parkway Deluxe','hsid2826267883-15329627','',3,'INR',NULL,'8591, Main Qutab Road, Pahar Ganj','','8591, Main Qutab Road, Pahar Ganj',NULL,NULL,'8591, Main Qutab Road, Pahar Ganj','extra service',1,1,1,0,725862,725862,'New Delhi','null',0,NULL,NULL,NULL,0,0,0.00,0.00,1,0,'{\"0\":{\"Rooms\":[{\"id\":\"202447440_212439952_37310--1\",\"RoomCategory\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"RoomType\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1426.36,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1426.36,\"TotalRoomPrice\":1426.36,\"TotalFare\":1426.36,\"TotalBaseFare\":1414.56,\"TotalNetFare\":1426.36,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":1414.56,\"CMU\":0,\"TAF\":11.8,\"TF\":1426.36,\"NF\":1426.36},\"afc\":{\"TAF\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10}}}],\"PriceWithMarkup\":1426.36,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1426.36,\"pernightperroomprice\":1426.36,\"RoomPrice\":1426.36,\"withmarkupprice\":1426.36,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"42_3_22417644\",\"RoomTotalPrice\":1426.36,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2826267883-15329627\",\"HotemName\":\"Hotel Parkway Deluxe\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"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 desks and complimentary newspapers, and housekeeping is provided daily.\\\",\\\"onsite_payments\\\":\\\"Visa, Diners Club, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel Parkway Deluxe is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.1 mi (3.4 km) from Chandni Chowk and 3.3 mi (5.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.5 km \\/ 0.9 mi  Palika Bazaar - 1.7 km \\/ 1.1 mi  Lady Hardinge Medical College - 1.9 km \\/ 1.2 mi  Kasturba Gandhi Marg - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Gole Market - 2.2 km \\/ 1.4 mi  Jantar Mantar - 2.4 km \\/ 1.5 mi  Ajmal Khan Road - 2.4 km \\/ 1.5 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Gurudwara Bangla Sahib - 2.9 km \\/ 1.8 mi  Laxminarayan Temple - 2.9 km \\/ 1.8 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.8 km \\/ 2.4 mi  Sir Ganga Ram Hospital - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.21792\",\"lt\":\"28.645334\"},\"HotelAddress\":\"8591, Main Qutab Road, Pahar Ganj\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Gift shops or newsstand\",\"Laundry Services\",\"Safe deposit box\",\"Number of meeting rooms - 1\",\"Internet\",\"Braille or raised signage\",\"In-room accessibility\",\"Parking\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"RoofTopTerrace\",\"Luggage storage\",\"Porter\\/bellhop\",\"Multilingual\",\"Business Center\",\"24-hour front desk\",\"Water dispenser\",\"Breakfast\",\"Safe-deposit box at front desk\",\"Non Smoking\",\"Laundry Services\",\"Free self parking\",\"Computer station\",\"Terrace\",\"Concierge Services\"]},\"cancellationPolicy\":\"{\\\"id\\\":\\\"hsid2826267883-15329627\\\",\\\"cancellationPolicy\\\":{\\\"id\\\":\\\"202447440_212439952_37310--48788654\\\",\\\"ifra\\\":true,\\\"inra\\\":false,\\\"pd\\\":[{\\\"fdt\\\":\\\"2023-07-03T13:22:16.414\\\",\\\"tdt\\\":\\\"2023-08-05T18:00\\\",\\\"am\\\":0.00,\\\"pp\\\":0.00},{\\\"fdt\\\":\\\"2023-08-05T18:00\\\",\\\"tdt\\\":\\\"2023-08-08T00:00\\\",\\\"am\\\":1414.56,\\\"rn\\\":1},{\\\"fdt\\\":\\\"2023-08-08T00:00\\\",\\\"tdt\\\":\\\"2023-08-09T23:59\\\",\\\"am\\\":1414.56}]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}\"}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS205100612965\",\"amount\":1426.36,\"markup\":0.00,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"8923963627\"],\"code\":[\"+91\"]},\"status\":\"PENDING\",\"createdOn\":\"2023-07-03T13:23:27.310\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"Hotel Parkway Deluxe\",\"des\":\"{\\\"amenities\\\":\\\"Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"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 desks and complimentary newspapers, and housekeeping is provided daily.\\\",\\\"onsite_payments\\\":\\\"Visa, Diners Club, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning/laundry services. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel Parkway Deluxe is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.1 mi (3.4 km) from Chandni Chowk and 3.3 mi (5.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.5 km / 0.9 mi  Palika Bazaar - 1.7 km / 1.1 mi  Lady Hardinge Medical College - 1.9 km / 1.2 mi  Kasturba Gandhi Marg - 2 km / 1.2 mi  Jama Masjid - 2 km / 1.2 mi  Gole Market - 2.2 km / 1.4 mi  Jantar Mantar - 2.4 km / 1.5 mi  Ajmal Khan Road - 2.4 km / 1.5 mi  Chandni Chowk - 2.5 km / 1.5 mi  Gurudwara Bangla Sahib - 2.9 km / 1.8 mi  Laxminarayan Temple - 2.9 km / 1.8 mi  Lajpat Rai Market - 2.9 km / 1.8 mi  Red Fort - 3.1 km / 1.9 mi  Parliament of India - 3.8 km / 2.4 mi  Sir Ganga Ram Hospital - 3.9 km / 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km / 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"77.21792\",\"lt\":\"28.645334\"},\"ad\":{\"adr\":\"8591, Main Qutab Road, Pahar Ganj\",\"adr2\":\"Near New Delhi Railway Station\",\"postalCode\":\"110055\",\"city\":{\"name\":\"New Delhi\"},\"state\":{\"name\":\"Delhi N.C.R.\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"New Delhi\",\"sn\":\"Delhi N.C.R.\",\"cn\":\"India\"},\"cnt\":{\"ph\":\"91-11-23532323\"},\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"Social distancing measures are in place. \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Fee for continental breakfast: INR 120.00 for adults and INR 120 for children (approximately)                                The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"202447440_212439952_37310--1\",\"rc\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"rt\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1426.36,\"tfcs\":{\"TF\":1426.36,\"BF\":1414.56,\"NF\":1426.36,\"TAF\":11.80,\"CMU\":0.00},\"tafcs\":{\"TAF\":{\"TSF\":151.27,\"IGST\":1.80,\"TTSF\":151.27,\"MFT\":1.80,\"TMF\":136.75,\"SRC\":0.00,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"MF\":10.00,\"SNP\":1277.81}},\"ddt\":\"2023-08-05T18:00\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":1414.56,\"NF\":1426.36,\"TF\":1426.36,\"CMU\":0.00,\"TAF\":11.80},\"afc\":{\"TAF\":{\"TSF\":151.27,\"IGST\":1.80,\"TTSF\":151.27,\"MFT\":1.80,\"TMF\":136.75,\"SRC\":0.00,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"MF\":10.00,\"SNP\":1277.81}}}],\"checkInDate\":\"2023-08-08\",\"checkOutDate\":\"2023-08-09\",\"ti\":[{\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"iopr\":false,\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\",\"Free WiFi\"]}]},\"rsta\":\"P\"}],\"tp\":1426.36,\"cnp\":{\"id\":\"202447440_212439952_37310--48788654\",\"ifra\":true,\"inra\":false,\"pd\":[{\"fdt\":\"2023-07-03T13:22:16.414\",\"tdt\":\"2023-08-05T18:00\",\"am\":0.00,\"pp\":0.00},{\"fdt\":\"2023-08-05T18:00\",\"tdt\":\"2023-08-08T00:00\",\"am\":1414.56,\"rn\":1},{\"fdt\":\"2023-08-08T00:00\",\"tdt\":\"2023-08-09T23:59\",\"am\":1414.56}],\"cpb\":48},\"ddt\":\"2023-08-05T18:00\",\"inst\":[],\"oai\":{\"sid\":\"42\"},\"iopr\":false,\"ispr\":true,\"ipr\":true,\"ipm\":false}],\"uid\":\"15329627\"},\"query\":{\"checkinDate\":\"2023-08-08\",\"checkoutDate\":\"2023-08-09\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"countryName\":\"India\",\"nationality\":\"106\"},\"searchPreferences\":{\"currency\":\"INR\"},\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200}}','','',NULL,'0','2023-07-03 07:51:20','2023-07-03 07:51:20',1,'TRANSACTION IS SUCCESSFUL.','46222640DEA840BBA8C41CAD1643683D','11000000394868',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753172\",\"TPSysId\":\"753173\",\"VersionId\":\"2300388\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62123\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"}');
/*!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 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 */;
/*!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 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 */;
/*!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=33 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','BKRS100700438316',0,0,'2023-01-09 08:08:48','2023-01-09 08:08:48'),(2,'INV-000002','BKRS110100438627',0,0,'2023-01-09 17:57:53','2023-01-09 17:57:53'),(3,'INV-000003','BKRS105600438729',0,0,'2023-01-10 05:37:06','2023-01-10 05:37:06'),(4,'INV-000004','BKRS108000438725',0,0,'2023-01-10 05:37:46','2023-01-10 05:37:46'),(5,'INV-000005','BKRS102600438749',0,0,'2023-01-10 05:47:55','2023-01-10 05:47:55'),(6,'INV-000006','BKRS118100438772',0,0,'2023-01-10 05:58:22','2023-01-10 05:58:22'),(7,'INV-000007','BKRS111300438798',0,0,'2023-01-10 06:03:35','2023-01-10 06:03:35'),(8,'INV-000008','BKRS111000439047',0,0,'2023-01-10 08:26:20','2023-01-10 08:26:20'),(9,'INV-000009','BKRS115800439213',0,0,'2023-01-10 10:15:04','2023-01-10 10:15:04'),(10,'INV-000010','BKRS108800442518',0,0,'2023-01-12 13:28:55','2023-01-12 13:28:55'),(11,'INV-000011','BKRS106900443130',0,0,'2023-01-13 10:24:13','2023-01-13 10:24:13'),(12,'INV-000012','BKRS115500445251',0,0,'2023-01-17 05:29:54','2023-01-17 05:29:54'),(13,'INV-000013','TJS202100445312',0,0,'2023-01-17 05:57:42','2023-01-17 05:57:42'),(14,'INV-000014','TJS209000445805',0,0,'2023-01-17 10:30:41','2023-01-17 10:30:41'),(15,'INV-000015','BKRS106800455684',0,0,'2023-01-30 10:42:29','2023-01-30 10:42:29'),(16,'INV-000016','BKRS105400456468',0,0,'2023-01-31 10:18:47','2023-01-31 10:18:47'),(17,'INV-000017','BKRS102900456544',0,0,'2023-01-31 10:53:25','2023-01-31 10:53:25'),(18,'INV-000018','BKRS103000550376',0,0,'2023-05-02 11:29:17','2023-05-02 11:29:17'),(19,'INV-000019','BKRS108200550751',0,0,'2023-05-03 05:32:40','2023-05-03 05:32:40'),(20,'INV-000020','BKRS100900550762',0,0,'2023-05-03 05:37:47','2023-05-03 05:37:47'),(21,'INV-000021','BKRS104100550781',0,0,'2023-05-03 05:50:11','2023-05-03 05:50:11'),(22,'INV-000022','BKRS102500554143',0,0,'2023-05-08 06:16:25','2023-05-08 06:16:25'),(23,'INV-000023','BKRS100300554234',0,0,'2023-05-08 06:57:53','2023-05-08 06:57:53'),(24,'INV-000024','BKRS102700554241',0,0,'2023-05-08 07:03:46','2023-05-08 07:03:46'),(25,'INV-000025','BKRS104100612664',0,0,'2023-07-03 06:02:46','2023-07-03 06:02:46'),(26,'INV-000026','TJS200800612702',0,0,'2023-07-03 06:17:45','2023-07-03 06:17:45'),(27,'INV-000027','BKRS106400612738',0,0,'2023-07-03 06:27:03','2023-07-03 06:27:03'),(28,'INV-000028','TJS208800612827',0,0,'2023-07-03 06:58:08','2023-07-03 06:58:08'),(29,'INV-000029','TJS205400612932',0,0,'2023-07-03 07:38:21','2023-07-03 07:38:21'),(30,'INV-000030','TJS205100612965',0,0,'2023-07-03 07:52:07','2023-07-03 07:52:07'),(31,'INV-000031','BKRS103300615663',0,0,'2023-07-05 11:55:28','2023-07-05 11:55:28'),(32,'INV-000032','BKRS104400646590',0,0,'2023-08-02 10:30:37','2023-08-02 10:30:37');
/*!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=6 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'),(5,'1646216513.jpg','https://www.wowidays.com/?click=hotels','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=66 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 (49,'PUBLISHED','PUBLISHED',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(50,'CORPORATE','Special',0.00,0.00,1,1,'Free Meal','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(51,'SPECIAL_RETURN','SPECIAL_RETURN',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(52,'SME','SME',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(53,'TACTICAL','TACTICAL',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(54,'FLEXI_PLUS','FLEXI_PLUS',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(55,'SALE','SALE',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(56,'COUPON','Deal',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(57,'PREMIUM_FLEX','PREMIUM_FLEX',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(58,'OFFER_FARE_WITHOUT_PNR','Special_Deal',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(59,'OFFER_FARE_WITH_PNR','Special_Deal',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(60,'PROMO','PROMO',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(61,'CORPORATE_FLEX','Special',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(62,'LITE','LITE',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(63,'RegularFare','REGULARFARE',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(64,'InstantPur','Deal',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',1,0,'#000000',7,0),(65,'Publish','PUBLISH',0.00,0.00,1,1,'','2022-11-12 17:35:34','2023-02-21 16:22:47',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','1650269755cat_1.png','1','0',10949),(2,'NEWS','1650269741cat_1.png','1','0',10949),(3,'ARTICLE','1659502594cat_1.jfif','1','0',10949),(4,'EXHIBITIONS','1650269707cat_1.png','1','0',10949),(5,'EVENTS','1650269516cat_1.png','1','0',36973),(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 AUTO_INCREMENT=2 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 */;
INSERT INTO `tbl_my_query` VALUES (1,0,'',167864,'PILLA SARAN KUMAR','RAJUPVS12345@GMAIL.COM','1234567890','Coorg','2022-04-04','2','Coorg 2N 3D','1','0');
/*!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 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 */;
/*!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',
  `displayOnHome` int NOT NULL DEFAULT '0',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 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,'Offer','1670585467.png','','2023-03-31','','1','1','1','1',1,1,'0'),(2,1,'Offer-2','1671621882.jpg','','2023-03-31','','0','1','1','1',1,1,'0'),(3,1,'Group Discounts for Families and Friends','1682675525.jpg','Travel Together, Save Together','2023-05-25','','0','1','1','1',1,1,'0'),(4,1,'Offer','1682675492.jpg','Plan now for your Summer Vacations','2023-05-25','','0','1','1','1',1,1,'0'),(5,1,'Offer 2023','1682675465.jpg','Experience the Best of Travel on Flexible EMIs','2023-06-15','','0','1','1','1',1,1,'0'),(6,1,'BEST AIR-FARE 2023','1686229196.png','','2023-08-31','','0','1','0','1',1,1,'0'),(7,1,'New Year offer 2023','1686229210.png','','2023-08-31','','0','1','0','1',1,1,'0'),(8,1,'Best Air Fare 2023','1686229309.png','','2023-08-31','','0','1','1','1',1,1,'0'),(9,1,'BEST AIR-FARE 2023','1686229239.png','','2023-08-31','','0','1','0','1',1,1,'0'),(10,1,'offers 2023','1688369075.jpg','','2023-09-20','','0','1','1','1',1,1,'0'),(11,1,'offer','1688464858.jpg','','2023-08-23','','0','1','0','1',1,0,'0');
/*!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 AUTO_INCREMENT=2 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 */;
INSERT INTO `tbl_our_services` VALUES (1,'CAB SERVICES ','cab-services-','','1646294874.jpg','','','','1','0');
/*!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 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 */;
/*!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_1682676061.jpg','0','1','1','1','image_1682676061.jpg',NULL,NULL,'','',''),(2,'Adventures',NULL,'banner_1682676133.jpg','0','1','1','1','image_1682676133.jpg',NULL,NULL,'','',''),(3,'Wild Life',NULL,'banner_1682676192.jpg','0','1','1','1','image_1682676192.jpg',NULL,NULL,'','',''),(4,'Beach',NULL,'banner_1682676222.jpg','0','1','1','1','image_1682676222.jpg',NULL,NULL,'','',''),(5,'Family',NULL,'banner_1682676282.jpg','0','1','1','1','image_1682676282.jpg',NULL,NULL,'','',''),(6,'Sports',NULL,NULL,'0','1','0','0','image_1644913328.png',NULL,NULL,'','',''),(7,'Cruise',NULL,NULL,'0','1','0','0','image_1668703222.jpg',NULL,NULL,'','',''),(8,'Religious',NULL,NULL,'0','1','0','0','image_1591986767.jpg',NULL,NULL,'','',''),(9,'Hill Station',NULL,NULL,'0','1','0','0','image_1591986790.jpg',NULL,NULL,'','',''),(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,NULL,'0','1','0','0','image_1591986870.jpg',NULL,NULL,'','',''),(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,NULL,'0','1','0','0','image_1591986901.jpg',NULL,NULL,'','',''),(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_popads`
--

DROP TABLE IF EXISTS `tbl_popads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_popads` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `image` varchar(256) NOT NULL,
  `expiryDate` date NOT NULL,
  `url` varchar(500) NOT NULL,
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `description` text,
  `buttonName` varchar(100) NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_popads`
--

LOCK TABLES `tbl_popads` WRITE;
/*!40000 ALTER TABLE `tbl_popads` DISABLE KEYS */;
INSERT INTO `tbl_popads` VALUES (11,'Home Promotion','1671014211.jpg','2022-12-20','https://www.google.com/',0,'<h3><b>Get Flat 20% OFF* on<br></b><b>Hotels and Homestay in India</b></h3><p>Hurry limited rooms</p>','View More'),(12,'Test','1671014194.jpg','2022-12-29','https://www.google.com/',0,'<h2><b>sdfsdfsdf sdf sdfsd</b></h2><p>sd f fsd gsdgsdsdsdgsd</p>','View More');
/*!40000 ALTER TABLE `tbl_popads` 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 AUTO_INCREMENT=2 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 */;
INSERT INTO `tbl_popular_logo` VALUES (1,'test','1646294046.png','2022-03-03 07:54:06','2022-03-03 07:54:06',1,1);
/*!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=5 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 (2,'info@ktas.in','','','','',NULL,NULL,'1',1,NULL,NULL,NULL),(4,'info@ktas.in','','+91 9691680017','+91 9691680017','Indore, Indore (India)','',NULL,'1',0,'9691680017',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=362 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 (361,'THAILAND HOLIDAYS','thailand-holidays','Test',NULL,'','','','361_1673512142.jpg','Activate',NULL,'1','2023-03-06 10:38:31','2023-03-06 10:38:31',NULL,0,NULL,'https://uamongus.hellogtx.com/thailand-holidays');
/*!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=19 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-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(2,'North India','North India','',NULL,'2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(3,'Middle East','Middle East','',NULL,'2022-02-16 13:31:33','2022-02-16 13:31:33','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(4,'Western Europe','Western Europe','',NULL,'2022-02-16 13:34:08','2022-02-16 13:34:08','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(5,'Eastern Europe','Eastern Europe','',NULL,'2022-02-28 20:24:45','2022-02-28 20:24:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(6,'Central India','Central India','',NULL,'2022-02-28 20:24:45','2022-02-28 20:24:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(7,'South India','South India','',NULL,'2022-02-28 20:24:45','2022-02-28 20:24:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(8,'West India','West India','',NULL,'2022-02-28 20:24:45','2022-02-28 20:24:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(9,'Orient','Orient','',NULL,'2022-05-03 12:00:52','2022-05-03 12:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(10,'South East Asia','South East Asia','',NULL,'2022-05-03 12:00:52','2022-05-03 12:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(11,'Northeast India','Northeast India','',NULL,'2022-05-03 12:00:52','2022-05-03 12:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(12,'East India','East India','',NULL,'2022-10-13 11:20:17','2022-10-13 11:20:17','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(13,'Scandinavia','Scandinavia','',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(14,'Oceania','Oceania','',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(15,'Eurasia','Eurasia','',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(16,'Southern Africa','Southern Africa','',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(17,'Central Asia','Central Asia','',NULL,'2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(18,'East African Islands','East African Islands','',NULL,'2023-06-02 14:00:25','2023-06-02 14:00:25','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/',1,'2021-06-26 17:39:17'),(2,'Instagram','https://www.instagram.com/',1,'2021-07-18 11:46:43'),(6,'Google','https://business.google.com/',1,'2021-12-25 13:04:32'),(7,'twitter','https://twitter.com/',1,'2022-02-04 12:49:08'),(8,'Youtube','https://www.youtube.com',0,'2022-03-01 14:47:18'),(9,'Pinterest','https://in.pinterest.com',0,'2022-03-01 14:48:32'),(10,'Linkedin','https://www.linkedin.com/',1,'2022-03-01 15:14:00');
/*!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=27 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,'Jammu and kashmir','jammu-and-kashmir','Jammu and kashmir (India)',NULL,NULL,13,NULL,NULL,'101','India','2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Uttar Pradesh','uttar-pradesh','Uttar Pradesh (India)',NULL,NULL,6,NULL,NULL,'101','India','2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Delhi','delhi','Delhi (India)',NULL,NULL,4,'4_1673528453.webp',NULL,'101','India','2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,'',NULL,NULL,NULL,'','','','<script></script>','<script></script>','','4_1673528453.webp',NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Rajasthan','rajasthan','Rajasthan (India)',NULL,NULL,2,NULL,NULL,'101','India','2022-02-14 19:07:55','2022-02-14 19:07:55','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Ladakh','ladakh','Ladakh (India)',NULL,NULL,60,NULL,NULL,'101','India','2022-02-28 20:24:45','2022-02-28 20:24: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,'Karnataka','karnataka','Karnataka (India)',NULL,NULL,16,NULL,NULL,'101','India','2022-02-28 20:24:45','2022-02-28 20:24: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,'Gujarat','gujarat','Gujarat (India)',NULL,NULL,15,NULL,NULL,'101','India','2022-02-28 20:24:45','2022-02-28 20:24: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,'Madhya Pradesh','madhya-pradesh','Madhya Pradesh (India)',NULL,NULL,14,NULL,NULL,'101','India','2022-02-28 20:24:45','2022-02-28 20:24: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,'Goa','goa','Goa (India)',NULL,NULL,11,'11_1673528328.jpg',NULL,'101','India','2022-02-28 20:27:00','2022-02-28 20:27:00','1','0',NULL,'',NULL,NULL,NULL,'','','','<script></script>','<script></script>','','11_1673528328.jpg',NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(10,'Uttarakhand','uttarakhand','Uttarakhand (India)',NULL,NULL,9,NULL,NULL,'101','India','2022-03-03 17:53:19','2022-03-03 17:53:19','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(11,'Tamil Nadu','tamil-nadu','Tamil Nadu (India)',NULL,NULL,17,NULL,NULL,'101','India','2022-03-09 16:57:23','2022-03-09 16:57:23','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(12,'Kerala','kerala','Kerala (India)',NULL,NULL,3,NULL,NULL,'101','India','2022-03-09 16:57:23','2022-03-09 16:57:23','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(13,'Lakshadweep Islands','lakshadweep-islands','Lakshadweep Islands (India)',NULL,NULL,47,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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),(14,'Meghalaya','meghalaya','Meghalaya (India)',NULL,NULL,40,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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,'Chandigarh','chandigarh','Chandigarh (India)',NULL,NULL,21,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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,'Punjab','punjab','Punjab (India)',NULL,NULL,18,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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),(17,'Assam','assam','Assam (India)',NULL,NULL,10,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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,'Odisha','odisha','Odisha (India)',NULL,NULL,8,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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,'Maharashtra','maharashtra','Maharashtra (India)',NULL,NULL,5,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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),(20,'Himachal Pradesh','himachal-pradesh','Himachal Pradesh (India)',NULL,NULL,1,NULL,NULL,'101','India','2022-05-03 12:00:52','2022-05-03 12: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),(21,'Sikkim','sikkim','Sikkim (India)',NULL,NULL,23,NULL,NULL,'101','India','2022-07-08 12:02:06','2022-07-08 12:02:06','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(22,'Bihar','bihar','Bihar (India)',NULL,NULL,22,NULL,NULL,'101','India','2022-07-08 12:02:06','2022-07-08 12:02:06','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(23,'Andaman and Nicobar Islands','andaman-and-nicobar-islands','Andaman and Nicobar Islands (India)',NULL,NULL,20,NULL,NULL,'101','India','2022-07-08 12:02:06','2022-07-08 12:02:06','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(24,'West Bengal','west-bengal','West Bengal (India)',NULL,NULL,12,NULL,NULL,'101','India','2022-07-08 12:02:06','2022-07-08 12:02:06','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(25,'Andhra Pradesh','andhra-pradesh','Andhra Pradesh (India)',NULL,NULL,7,'7_1673528355.jpg',NULL,'101','India','2022-10-13 11:20:17','2022-10-13 11:20:17','1','0',NULL,'',NULL,NULL,NULL,'','','','<script></script>','<script></script>','','7_1673528355.jpg',NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(26,'Arunachal Pradesh','arunachal-pradesh','Arunachal Pradesh (India)',NULL,NULL,38,'38_1673528414.png',NULL,'101','India','2022-12-14 19:50:11','2022-12-14 19:50:11','1','0',NULL,'',NULL,NULL,NULL,'','','','<script></script>','<script></script>','','38_1673528414.png',NULL,'1','1','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 DEFAULT '0',
  `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=210 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 style=\"text-align: justify; \"><br></p>','','','','161_1682678186.jpg','Activate',0,'1','2023-04-28 16:06:26','2023-04-28 16:06:26',0,'','0'),(162,'TERMS & CONDITIONS','terms-conditions','<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:30.0pt;mso-outline-level:1\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;text-transform:uppercase;mso-font-kerning:18.0pt;mso-ansi-language:\r\nEN-IN\">TERMS OF USE<o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:30.0pt;mso-outline-level:1\"><b><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#EEEEEE;mso-font-kerning:\r\n18.0pt\">&nbsp;</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n12.0pt;margin-left:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">These terms and conditions are\r\napplicable to the usage of the <a href=\"http://www.ktas.in/\">www.ktas.in</a> website\r\n(\"KTAS\") by you. KTAS shall provide you (“User”) travel-related\r\ninformation, travel leads, pricing, availability and reservations for airlines,\r\nhotels, railway, holiday packages, bus and car rentals across cities and rural\r\nareas throughout India and abroad (“Service/s or KTAS Services”). These\r\nServices may be availed by the User in India or outside India at any time\r\nduring the year as is offered by various third party vendors like airlines,\r\nhotels, bus operators etc.(\"Service Providers\" or\r\n\"Vendors\"). The website is also for your education and information\r\nand is also used by us to obtain feedback with a view to providing information\r\nand 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 agree\r\nto the following terms please do not read or refer to the material on any of\r\nour pages.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Opening an Account</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222\">In order to become able to use the&nbsp;KTAS, you must complete\r\nin full an application form on the Website. As part of the application, you\r\nwill be asked to provide us with a Username and Password. This username and\r\npassword will be used by you when using our services.</span><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Usernames/Passwords</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">You are solely responsible for the confidentiality of your username, and\r\npassword. In the event you have reason to believe your account, username and/or\r\npassword is being used in an unauthorized manner, you agree to contact us\r\npromptly so that the appropriate modifications can be made to your account.\r\nPlease be aware that information will be sent to your email address that you\r\nprovided to us at the time of sign up.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Agreement to Receive Mail</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">You hereby consent to the receipt of physical &amp; electronic\r\ncommunication from us.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Contributions on Website</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Any activity you do on the website (Comments, Reviews, and Questions\r\netc) becomes property of KTAS. We reserve the right to modify or update that\r\ninformation suitably.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Viruses and Contamination of System</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS is neither responsible nor liable for any viruses or other contamination\r\nof your system, nor for any delays, inaccuracies, errors or omissions arising\r\nout of your use of this site or with respect to the material contained on this\r\nsite.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Linked Sites</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Any linked websites in our website are not under our control and we are\r\nnot responsible for the contents of any linked site or any link contained in a\r\nlinked site, or any changes or updates to such sites. We are providing these\r\nlinks to you only as a convenience, and the inclusion of any link does not\r\nimply endorsement by us of the site.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Content and Intellectual property rights</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">All content on the website including but not limited to icons, buttons,\r\nlogos, text etc, as well as any and all trademarks, whether registered or not\r\nconstitute the exclusive intellectual property of the KTAS and is protected\r\nunder Indian law. You may not selectively download portions of the website\r\nwithout retaining the copyright notices You may download material from the\r\nwebsite only for your own personal use and for no commercial purposes\r\nwhatsoever. Any and all information that is submitted by you including but not\r\nlimited to comments, feedback etc is the sole property of KTAS which may be\r\nused in any manner the KTAS deems fit. We provide all content to the best of\r\nour knowledge and we are not responsible for changes to third party content.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Limitation of Liability</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS makes no warranty that this site will meet your requirements, the\r\nservice or this site will be uninterrupted, the results that may be obtained\r\nfrom the use of this site will be accurate or reliable, any information or\r\nother material obtained by you through this site will meet your expectations\r\nand 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\r\nexemplary or punitive damages, or loss of profit or revenues. We are also not\r\nliable under any circumstances for damages arising out or related in any way to\r\nyour inability to access, or your difficulty in accessing, the website. We\r\nshall not be liable under any circumstances for damages arising out of or in\r\nany way related to products, services and/or information offered or provided by\r\nthird-party vendors accessed through the website or by any other means. All\r\ncontent and information provided by KTAS either through the website or\r\notherwise is provided to you without warranty of any kind either expressed or\r\nimplied, with regard to the merchantability, technical compatibility or fitness\r\nfor a particular purpose with regard to any service, products or material\r\nprovided by or through the website.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Indemnity</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">You agree to indemnify, defend and hold harmless KTAS, and its officers,\r\nemployees, agents, and any third party information providers to the Website,\r\nfrom and against all claims, actions, proceedings, expenses, damages and\r\nliabilities, which are the result of, or are in any way related to your use of\r\nthe website.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Governing Law</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">These terms and conditions shall be governed by Indian law and the\r\ncourts at Tezpur shall have exclusive jurisdiction in all matters arising out\r\nof or in connection with the use of the website by you.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Privacy Policy</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Please refer to our Privacy Policy on the website.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Charges &amp; Pricing</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS does not charge any fees for browsing. KTAS is ONLY a\r\nticketing/booking agent for various types of services. For example, KTAS does\r\nnot operate bus services or run flights of its own etc. In order to provide a\r\ncomprehensive choice of bus operators or flights etc, departure times and\r\nprices to customers, it has tied up with many Vendors. KTAS\'s advice to\r\ncustomers is to choose the Vendor they are aware of and whose service they are\r\ncomfortable with. KTAS is not liable for any Discrepancy / Deficiency in\r\nservice by the Service Providers / Vendors of any service type.<br>\r\n<br>\r\nUsers can create free membership accounts on&nbsp;KTAS for service booking.\r\nFrom time to time, KTAS at its sole discretion will add new services, change\r\nexisting services and remove some services as well.<br>\r\n<br>\r\nUsers shall be solely responsible for compliance of all applicable laws for\r\nmaking payments to KTAS. GST Credit (if applicable) will be provided directly\r\nby the Vendor to the User and KTAS will not be responsible for non-receivable\r\nof the same.<br>\r\n<br>\r\nWhile KTAS strives for quality products and services with accurate pricing\r\ninformation, typographical and other errors may occur. In the event the Service\r\nis listed at an incorrect price or with incorrect service information due to an\r\nerror, KTAS may at it\'s discretion contact the User for instructions or cancel\r\nUser\'s booking and notify User of such Cancel.<br>\r\n<br>\r\nKTAS will have the right to rectify the price of the Service and contact User\r\nfor further instructions via e-mail address provided by User at the time of\r\nregistration, or cancel the booking and notify User of such cancellation. If KTAS\r\ncancels the order after the payment has been processed, the said amount will be\r\nremitted to User’s account from which the payment was made.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Payment Options</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS Supports various Payment Methods like Credit and Debit Cards (Visa,\r\nMastercard, Rupay, Amex, Dinners etc), Internet Banking (around 100 Indian\r\nBanks), Wallets, etc through an online payment gateway system. KTAS and the\r\nassociated one or more payment gateway makes full effort to fulfill information\r\nsecurity requirement and uses the latest encryption technology to protect and\r\nsafeguard the Users Payment Methods and their details.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n0cm;margin-left:0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">All Payments for services purchased via KTAS\r\nby all types of users (travelers or agents or any other type) have to be\r\npre-paid. Incase the credit is extended/provided to any type of user, then it\r\nneeds to be paid within the next working day. If the user misses his payment\r\ntimelines, then KTAS has the right to cancel the purchased service or any other\r\npurchased services of the same user or it\'s sister concerns to recover the\r\nmoney and penalty amount decided by KTAS (upto 100% of the default amount).</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n0cm;margin-left:3.75pt;margin-bottom:.0001pt;text-align:justify;text-justify:\r\ninter-ideograph;line-height:normal\"><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n12.0pt;margin-left:0cm;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Company also reserves the right to\r\ncharge 1% per day penalty interest for overdues, the same will charged after\r\nreminders and notifications.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Gateway Charges</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Please note that KTAS cannot control any fees or conversion rates that\r\nmay be charged to User by their Banks or Financial Institution related to such\r\na transaction and KTAS disclaims all liabilities in this regard.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222\">KTAS</span></b><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">&nbsp;Travel Special Fares</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">There are three types of KTAS Special Fares:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l1 level1 lfo1;tab-stops:list 36.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;\r\nmso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;color:#ED3237\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">KTAS&nbsp;Special ZERO Reschedule\r\nCharges</span></b><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#ED3237\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Reschedule request needs to reach KTAS&nbsp;at least 36 hours for\r\ndomestic flights and 72 hours for international flights before the original\r\ndeparture time. If the request does not come in this timeframe, then normal\r\nAirlines and KTAS Travel Reschedule charges will be charged. However, Customer\r\ncan also directly work with the airlines when the departure time is less than\r\nthe above mentioned timeframe. Any charges imposed by the airlines in this\r\nregard, will need to be borne by the customer itself.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Exact flight details of the new flight needs to be provided for\r\nReschedule request - Only one option will be handled for reschedule request.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS Travel takes 4 to 8 hours to respond during working hours for\r\nre-schedule request and is totally dependent on seat availability and airlines\r\nresponse. Incase the airlines does not provide timely or no response, KTAS\r\nTravel cannot be held responsible for the same.</span><span style=\"font-size:\r\n12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS may charge certain service fees for the service rendered.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;\r\nmso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;color:#ED3237\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">KTAS&nbsp;Special ZERO Reschedule, 50%\r\nCancellation Fees, Free Meal</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#ED3237\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Reschedule details covered under&nbsp;KTAS Special ZERO Reschedule\r\nCharges</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Airlines &amp; KTAS Cancellation Charges will be charged at 50% For e.g.\r\nif Airlines cancellation charges were Rs 3000 and KTAS Charges Rs 499, then in\r\nthis flight, the Airlines Cancellation Charges will be Rs 1500 and KTASCharges\r\nas Rs 249. All Cancellation requests needs to reach KTAS before 36 hours in\r\ndomestic flights and 72 hours for international flights before the original\r\ndeparture time. If the request does not come in this timeframe, then normal\r\nAirlines and KTAS Cancellation charges will be charged. However, Customer can\r\nalso directly work with the airlines when the departure time is less than the\r\nabove mentioned timeframe. Any charges imposed by the airlines in this regard,\r\nwill need to be borne by the customer itself.</span><span style=\"font-size:\r\n12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Free Meal is supposed to be provided by the airlines. However if for any\r\nreason, airlines does not provide the Free MEAL, no compensation will be\r\nprovided by KTAS. MEAL Selection needs to be done by the customer on the\r\nairlines website. KTAS will not choose any MEAL type on customer\'s behalf.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo2;tab-stops:list 36.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Symbol;\r\nmso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;color:#ED3237\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]--><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">KTAS&nbsp;Special ZERO Cancellation /\r\nReschedule Fees, Free Meal</span></b><span style=\"font-size:12.0pt;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#ED3237\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Cancellation requests needs to reach KTAS atleast 36 hours for domestic\r\nflights and 72 hours for international flights before the original departure\r\ntime. If the request does not come in this timeframe, then normal/standard\r\nAirlines and KTAS Cancellation charges will be charged.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:0cm;margin-left:\r\n0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;\r\ntext-indent:-18.0pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 72.0pt\"><!--[if !supportLists]--><span style=\"font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:&quot;Courier New&quot;;\r\nmso-fareast-font-family:&quot;Courier New&quot;;color:#222222\">o<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Please read above for Rescheduling of Flights &amp; Free MEAL</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Refund, Cancellation &amp; Re-scheduling\r\nPolicy</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n0cm;margin-left:3.75pt;margin-bottom:.0001pt;text-align:justify;text-justify:\r\ninter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">In case of no-show or unutilized\r\nbookings, User shall be required to make requests for any valid and applicable\r\nrefunds, as per Vendors’ policies or within 15 days from the travel date\r\n(whichever&nbsp; is earlier). No refund would be payable for any requests made\r\nafter the expiry of 30 days of travel date / check-in as aforementioned and all\r\nunclaimed amounts for such no-show or unutilized bookings shall accordingly be\r\ndeemed to have been forfeited.<br>\r\n<br>\r\nThe refund shall be processed within 15-20 working days from the date of the\r\ncancellation request, after receiving back to back refund from the concerned\r\nVendor. Payment will be refunded back into the same original payment instrument\r\nlike the same credit card or bank account from which it was paid for the\r\ntraveller. In case of Travel Agent (B2B Booking), refund or recharge or upload\r\nof any type is always credited in their agents KTASs account balance. In case\r\nof agents account closure, the agent is supposed to consume its balance or\r\nclear their dues (if any). No money transfer will be done to travel agents bank\r\naccount, in any circumstances.<br>\r\n<br>\r\nIn case User avails to book any of the Services offered by the Vendor and is,\r\nthereafter, not contactable on the contact details provided, then the\r\ntour/travel reservation selected by User will stand cancelled and KTAS or the\r\nVendor would not be liable for any charges/expenses incurred by User, either\r\ndirectly or indirectly in this regard<br>\r\n<br>\r\nAny Refund Claims arising due to cancellation / delay of flight by the Vendor\r\nshall be subject to KTAS receiving the refund from the Vendor. In the Event\r\nVendor does not refund the amount to the KTAS, KTAS shall not be held liable\r\nfor the same<br>\r\n<br>\r\nCancellation/Re-scheudle of Flight Ticket upto 24 hours will be dealt by KTAS.\r\nLess than 24 hours, the USER should cancel it directly with the airlines and\r\ninform KTAS for the refund processing<br>\r\n<br>\r\nKTAS shall charge a cancellation fees - varying from time to time and\r\ntransaction to transaction and type of service. This fees will be over and\r\nabove the Airlines Cancellation Fees. Similarly for other service like Bus\r\nTickets etc, KTAS will add it\'s own cancellation fees over the Vendor\'s\r\ncancellation Fees<br>\r\n<br>\r\nCancellation Policy is defined and governed by the Vendor and KTAS will not be\r\nable to do any changes around it. Refund will only be processed once the USER\r\ninforms KTAS<br>\r\n<br>\r\nPartial Cancellation may or may not be allowed - This will depend on the\r\nVendor\'s Cancellation Policy</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n12.0pt;margin-left:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\"><br>\r\nRe-scheduling of Services (For e.g. Date Change in Flights) will incur Fare\r\nDifference, Airlines Re-schedule/Penalty Charges and KTAS Re-schedule Charges<br>\r\n<br>\r\nDomestic and International Booking/Cancellation/Re-schedule will have different\r\namount of fees for different Services<br>\r\n<br>\r\nName Change, Title Change, Age Change, Sector Change etc is generally not\r\nallowed by Vendors - Any such changes or more (not covered here) will not be\r\nentertained by KTAS. The User need to work directly with the Vendor and KTAS\r\nwill not be responsible / liable in any form<br>\r\n<br>\r\nOnce a confirmed ticket/service is booked/generated, Convenience Fees is not\r\nrefundable under any circumstances. If you are booking a special discounted\r\nreturn 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\r\nrequirement for the travel. KTAS will not be responsible for any inadequacy of\r\nany form<br>\r\n<br>\r\nCheck the Baggage Allowance – Cabin and Check-in – No Free Baggage Allowance\r\nfor Infants. Meals, Seats, Special Requests are not guaranteed. USER needs to\r\ncheck this with Vendor directly</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Booking Confirmation</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">User should not take any action based on information on the Marketplace\r\nuntil User has received a confirmation of User’s transaction. In case of\r\nconfirmations to be received by email, if User does not receive any\r\nconfirmation of User’s purchase/transaction within the stipulated time period,\r\nUser may first look into \"spam\" or \"junk\" folder to verify\r\nthat it has not been misdirected, and if still not found, please contact KTAS\'s\r\ncall centre or login into the User Account section of KTAS.<br>\r\n<br>\r\nIn case a booking confirmation e-mail or sms gets delayed or fails because of\r\ntechnical reasons or as a result of incorrect e-mail ID / phone number provided\r\nby the user etc, a ticket will be considered \'booked\' as long as the ticket\r\nshows up on the confirmation page or in the User Account section of KTAS.<br>\r\n<br>\r\nThe total price payable will be displayed to the User before making payment to\r\nthe Vendor. Users are hereby informed that in case of a booking request being\r\nrejected by a Vendor (i.e. not confirmed by the applicable Vendor), any amounts\r\ncollected by KTAS for such booking will be refunded to the User’s Account used\r\nfor making the payments.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Offer Fares / Series Fares / Group Fare\r\nor any other similar fares are non-refundable, non-changeable under any\r\ncircumstances. In these types of bookings, more than one (non related)\r\npassenger is added in the same pre-purchased PNR. Names in this type of fares\r\nare updated between 8pm and 11pm, one night before the travel date. Hence, web\r\ncheckin needs to be done by the passenger or the travel agency once the names\r\nare updated. Do note Airlines counter are not very friendly at some airports\r\nand machines may / may not operate. Also airlines may levy service charges for\r\nissuing boarding pass from the airport counter. Since these are collective\r\npassengers tickets, normal web checkin, meal selection, extra baggage purchase,\r\nwheel chair addition, GST or any other special services cannot be added in\r\nthese tickets. Lastly in these types of fares, our fare rules supersedes\r\nairlines and hence no refund requests are entertained unless flight is\r\ncancelled or flight date/timing is changed by more than 6&nbsp; hours in\r\ndomestic flights and over 24 hours in international flights.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Name changes (minor or major) in any\r\nform cannot be done in these fares. In this type of fares (Offer Fares / Series\r\nFares / Group Fare or any other similar fares), you are not supposed to contact\r\nairlines directly or any other body for any reason. KTAS should be your only\r\npoint of contact for any purpose and the decision of KTAS will be final. Incase\r\nyou contact airlines or any other body, your account might be disabled and your\r\nbalance will be forfeited.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">In case of schedule change and airlines\r\nprovides multiple options, agent/customer has the choice to choose among the\r\ngiven options only within the given time. However, once names are updated in\r\nthe revised itinerary, thereafter no changes will be accepted of any type. Also\r\nnote if the agent/customer does not respond in the given time then Airlines / KTAS\r\ncan choose any option.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify;text-justify:\r\ninter-ideograph;line-height:normal\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Offline Booking</span></b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:0cm;margin-right:3.75pt;margin-bottom:\r\n0cm;margin-left:3.75pt;margin-bottom:.0001pt;text-align:justify;text-justify:\r\ninter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">KTAS avoids and do not recommends travel\r\nagents for doing offline booking with us. However, if the travel agents\r\ninsists,&nbsp;KTAS can do the booking on behalf of the travel agent&nbsp; as a\r\ncourtesy. Having said that KTAS will not be responsible for any&nbsp; type of\r\nmistake like date, origin city, destination city, itinerary details, pricing,\r\nname &amp; details of the passenger etc. Travel Agent will be responsible for any\r\nmistake or issue in offline booking from KTAS. KTAS on any circumstances\r\nwill&nbsp;<b>not</b>&nbsp;bear any expense or refund any part of the booking\r\namount.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Promo Codes</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">KTAS may generate promotion codes from time to time which may be availed\r\non the site for discount, if applicable. KTAS at its discretion, could add new\r\npromo codes, change or withdraw existing ones without any prior notice. Incase\r\nof any dispute with any party, KTAS\'s decision will be binding and final.<br>\r\n<br>\r\nWhen USER registers with KTAS, KTAS or any of its partners/afflilate/group\r\ncompanies/partners/vendors may contact User from time to time to provide\r\ninformation/offers of services that KTAS or such other group companies believe\r\nmay benefit User.<br>\r\n<br>\r\n<!--[if !supportLineBreakNewLine]--><br>\r\n<!--[endif]--></span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:5\"><b><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Users Responsibility &amp; Liability</span></b><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:6\"><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222\">User shall be responsible for their own actions in utilizing the\r\nServices purchased by User, and&nbsp;KTAS&nbsp;shall not be liable for any such\r\naction.&nbsp;KTAS&nbsp;is only providing a platform for communication and it is\r\nagreed that the contract for Service shall be a strictly bipartite contract\r\nbetween the Vendor and User.</span><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:6\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">User represents that User is of legal\r\nage to form a binding contract with&nbsp;</span><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222\">KTAS</span><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;and is not a person barred from receiving Services under the\r\nlaws as applicable in India.<o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-top:7.5pt;margin-right:0cm;margin-bottom:7.5pt;\r\nmargin-left:0cm;text-align:justify;text-justify:inter-ideograph;line-height:\r\n15.0pt;mso-outline-level:6\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">Any references to a Vendor being\r\n\"verified\" (or similar language) only indicate that the Vendor has\r\ncompleted a reasonable verification process. Any such description is not an\r\nendorsement, certification or guarantee by&nbsp;KTAS&nbsp;about any Vendor,\r\nincluding of the Vendor\'s identity and credibility.&nbsp;KTAS&nbsp;therefore\r\nrecommends that you always exercise due diligence and care when deciding\r\nwhether to avail services from a Vendor, or while having any other interaction\r\nwith them.</span><b><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></b></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;text-align:\r\njustify;text-justify:inter-ideograph;line-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#222222;mso-ansi-language:\r\nEN-IN\">Upon receiving User’s complaint, KTAS shall inform the relevant Vendor\r\nof such complaint and request for an explanation. Users are required to refrain\r\nfrom raising frivolous and baseless complaints. User expressly acknowledges\r\nthat the Vendor providing the deficient Service will be solely responsible to\r\nUser for any claims that User may have in relation to such defective service\r\nand KTAS 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\r\ndelivery of any Service, User acknowledges that the Vendor will be liable to\r\nmake any applicable refunds or payments. User agrees that KTAS will not be held\r\nliable for failure of the Vendor to make available any Service therein.<br>\r\n<br>\r\nKTAS reserves the right at all times to disclose any information as is\r\nnecessary to satisfy or comply with any applicable law, regulation, legal\r\nprocess or governmental request, or to edit, refuse to post or to remove any information\r\nor materials, in whole or in part, in KTAS\'s sole discretion.<br>\r\n<br>\r\nIn no event shall KTAS its officers, directors, employees, partners or vendors\r\nbe liable to User, the Vendor or any third party for any special, incidental,\r\nindirect, consequential or punitive damages whatsoever, including those\r\nresulting from loss of use, data or profits, whether or not foreseeable or\r\nwhether or not KTAS has been advised of the possibility of such damages, or based\r\non any theory of liability, including breach of contract or warranty,\r\nnegligence or other tortuous action, or any other claim arising out of or in\r\nconnection with User’s purchase of the services herein.<br>\r\n<br>\r\nKTAS shall not assume any liability for the non-availability of the Services\r\nwhere required or any action or inaction that might be taken by the Vendor.</span><span style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin:3.75pt;text-align:justify;text-justify:inter-ideograph;\r\nline-height:normal\"><span lang=\"EN-IN\" style=\"font-size:12.0pt;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\ncolor:#222222;mso-ansi-language:EN-IN\">ALL LINKED TERMS AND CONDITIONS\r\nHEREUNDER ARE ASSUMED TO BE READ, UNDERSTOOD AND AGREED BY USER.</span><span style=\"font-size: 12pt; font-family: Cambria, &quot;serif&quot;;\"><o:p></o:p></span></p>','','','','162_1682678265.jpg','Activate',0,'1','2023-05-08 13:09:27','2023-05-08 13:09:27',0,'','0'),(167,'PRIVACY POLICY','privacy-policy','<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Privacy Policy for KTAS<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">At KTAS, accessible from www.bookmytournow.com, one of\r\nour main priorities is the privacy of our visitors. This Privacy Policy\r\ndocument contains types of information that is collected and recorded by KTAS and\r\nhow we use it.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">If you have additional questions or require more\r\ninformation about our Privacy Policy, do not hesitate to contact us.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">This Privacy Policy applies only to our online\r\nactivities and is valid for visitors to our website with regards to the\r\ninformation that they shared and/or collect in Cross world Holidays™. This policy\r\nis not applicable to any information collected offline or via channels other\r\nthan this website. Our Privacy Policy was created with the help of the&nbsp; \"https://www.privacypolicygenerator.info<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Consent<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">By using our website, you hereby consent to our Privacy\r\nPolicy and agree to its terms<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Information we\r\ncollect<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The personal information that you are asked to\r\nprovide, and the reasons why you are asked to provide it, will be made clear to\r\nyou at the point we ask you to provide your personal information.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">If you contact us directly, we may receive additional\r\ninformation about you such as your name, email address, phone number, the\r\ncontents of the message and/or attachments you may send us, and any other\r\ninformation you may choose to provide.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">When you register for an Account, we may ask for your\r\ncontact information, including items such as name, company name, address, email\r\naddress, and telephone number.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">How we use your information<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">We use the information we collect in various ways,\r\nincluding to:<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Provide, operate, and maintain our website<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Improve, personalize, and expand our website<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Understand and analyze how you use our website<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Develop new products, services, features, and\r\nfunctionality<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Communicate with you, either directly or through one\r\nof our partners, including for customer service, to provide you with updates\r\nand other information relating to the website, and for marketing and\r\npromotional purposes<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Send you emails<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Find and prevent fraud<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Log Files<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Cross world Holidays™ follows a standard procedure of\r\nusing log files. These files log visitors when they visit websites. All hosting\r\ncompanies do this and a part of hosting services\' analytics. The information\r\ncollected by log files include internet protocol (IP) addresses, browser type,\r\nInternet Service Provider (ISP), date and time stamp, referring/exit pages, and\r\npossibly the number of clicks. These are not linked to any information that is\r\npersonally identifiable. The purpose of the information is for analyzing\r\ntrends, administering the site, tracking users\' movement on the website, and\r\ngathering demographic information.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Cookies and Web\r\nBeacons<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Like any other website, Cross world Holidays™ uses\r\n\'cookies\'. These cookies are used to store information including visitors\' preferences,\r\nand the pages on the website that the visitor accessed or visited. The\r\ninformation is used to optimize the users\' experience by customizing our web\r\npage content based on visitors\' browser type and/or other information.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Advertising Partners\r\nPrivacy Policies<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">You may consult this list to find the Privacy Policy\r\nfor each of the advertising partners of Cross world Holidays™.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Third-party ad servers or ad networks uses\r\ntechnologies like cookies, JavaScript, or Web Beacons that are used in their\r\nrespective advertisements and links that appear on Cross world Holidays™, which\r\nare sent directly to users\' browser. They automatically receive your IP address\r\nwhen this occurs. These technologies are used to measure the effectiveness of\r\ntheir advertising campaigns and/or to personalize the advertising content that\r\nyou see on websites that you visit.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Note that Cross world Holidays™ has no access to or\r\ncontrol over these cookies that are used by third-party advertisers.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Third Party Privacy Policies<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Cross world Holidays™\' s Privacy Policy does not apply\r\nto other advertisers or websites. Thus, we are advising you to consult the\r\nrespective Privacy Policies of these third-party ad servers for more detailed\r\ninformation. It may include their practices and instructions about how to\r\nopt-out of certain options.&nbsp;<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">You can choose to disable cookies through your\r\nindividual browser options. To know more detailed information about cookie\r\nmanagement with specific web browsers, it can be found at the browsers\'\r\nrespective websites.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">CCPA Privacy Rights (Do Not Sell My Personal\r\nInformation)<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Under the CCPA, among other rights, California\r\nconsumers have the right to:<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Request that a business that collects a consumer\'s\r\npersonal data disclose the categories and specific pieces of personal data that\r\na business has collected about consumers.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Request that a business delete any personal data about\r\nthe consumer that a business has collected.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Request that a business that sells a consumer\'s\r\npersonal data, not sell the consumer\'s personal data.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">If you make a request, we have one month to respond to\r\nyou. If you would like to exercise any of these rights, please contact us.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">GDPR Data Protection Rights<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">We would like to make sure you are fully aware of all\r\nof your data protection rights. Every user is entitled to the following:<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to access – You have the right to request\r\ncopies of your personal data. We may charge you a small fee for this service.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to rectification – You have the right to\r\nrequest that we correct any information you believe is inaccurate. You also\r\nhave the right to request that we complete the information you believe is\r\nincomplete.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to erasure – You have the right to request\r\nthat we erase your personal data, under certain conditions.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to restrict processing – You have the right\r\nto request that we restrict the processing of your personal data, under certain\r\nconditions.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to object to processing – You have the right\r\nto object to our processing of your personal data, under certain conditions.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">The right to data portability – You have the right to\r\nrequest that we transfer the data that we have collected to another\r\norganization, or directly to you, under certain conditions.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">If you make a request, we have one month to respond to\r\nyou. If you would like to exercise any of these rights, please contact us.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><br></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">&nbsp;</span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><b><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Children\'s\r\nInformation<o:p></o:p></span></b></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Another part of our priority is adding protection for\r\nchildren while using the internet. We encourage parents and guardians to\r\nobserve, participate in, and/or monitor and guide their online activity.<o:p></o:p></span></p>\r\n\r\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:7.5pt;margin-left:0cm;\r\ntext-align:justify;text-justify:inter-ideograph\"><span style=\"font-size: 14pt; font-family: Cambria, &quot;serif&quot;;\">Cross world Holidays™ does not knowingly collect any\r\nPersonal Identifiable Information from children under the age of 13. If you\r\nthink that your child provided this kind of information on our website, we\r\nstrongly encourage you to contact us immediately and we will do our best\r\nefforts to promptly remove such information from our records.<o:p></o:p></span></p>','','','','167_1682678453.jpg','Activate',0,'1','2023-05-08 13:08:09','2023-05-08 13:08:09',0,'','0'),(184,'OFFERS','offers','','','','','','Deactivate',0,'1','2023-01-13 10:45:16','2023-01-13 10:45:16',0,'','0'),(190,'CONTACT US','contact-us','','','','','190_1682678534.jpg','Activate',0,'1','2023-04-28 16:12:14','2023-04-28 16:12:14',0,'','0'),(193,'A MEMBERS-ONLY WHOLESALE BOOKING SITE','a-members-only-wholesale-booking-site','<p>Get wholesale rate advantage for you</p>\r\n<ul>\r\n	<li><strong>GUARANTEED</strong> Best Hotel Prices</li>\r\n	<li><strong>EXCLUSIVE</strong> Best Flight Rates</li>\r\n	<li><strong>100%</strong> All transactions in one place</li>\r\n</ul>','','','','','Activate',1,'1','2021-03-08 12:56:33','2022-03-04 14:13:20',1,NULL,'0'),(195,'CAREER','career','','','','','','Deactivate',0,'1','2023-01-13 10:45:10','2023-01-13 10:45:10',0,'','0'),(205,'FAQ','faq','','','','','','Deactivate',0,'1','2021-01-05 16:27:20','2022-02-28 18:25:03',0,NULL,'0'),(206,'DIRECTOR\'S DESK','director-s-desk','','','','','','Deactivate',0,'1','2021-01-05 16:27:20','2022-02-17 17:12:11',0,NULL,'0'),(207,'MEDIA','media','Media','Media','Media','Media','207_1672753041.jpg','Activate',0,'1','2023-01-13 10:45:05','2023-01-13 10:45:05',0,'','0'),(209,'THAILAND HOLIDAYS','thailand-holidays','','','','','209_1678081792.jpg','Activate',0,'1','2023-03-06 11:19:52','2023-03-06 11:19:52',0,'https://uamongus.hellogtx.com/thailand-holidays','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 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 */;
/*!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=468 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 (2,'364b0-61986-a9abe-32e95','{\"FlightBookingData\":[{\"bookingId\":\"TJS106400424519\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-01-17T22:35\",\"LocalFromTime\":\"2023-01-17 22:35\",\"FromUTCTime\":\"2023-01-17T22:35\",\"LocalToTime\":\"2023-01-18 03:30\",\"ToUTCTime\":\"2023-01-18T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 17 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4332,\"PublishedFareTxt\":\"4,332\",\"ApiResultIndex\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.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\":2129,\"Tax\":2203,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4332,\"PublishedFare\":4165,\"OfferedFare\":3247,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16940974903833\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2203,\"BaseFareCal\":3387.03,\"BaseFare\":2129,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":108,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4165,\"CostToCustomer\":4165,\"BaseFareCal\":3387.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3387.03,\"intOfferedFare\":3247,\"intPublishFare\":4332,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"614\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-01-17T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-01-17T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"615\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-01-18T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"614\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"364b0-61986-a9abe-32e95\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2022-12-22T11:46:18.869\",\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106400424519\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-01-17T22:35\",\"LocalFromTime\":\"2023-01-17 22:35\",\"FromUTCTime\":\"2023-01-17T22:35\",\"LocalToTime\":\"2023-01-18 03:30\",\"ToUTCTime\":\"2023-01-18T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 17 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4332,\"ApiResultIndex\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"364b0-61986-a9abe-32e95\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2022-12-22T11:46:18.869\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2129,\"Tax\":2203,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4332,\"PublishedFare\":4165,\"OfferedFare\":3247,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2203,\"BaseFareCal\":3387.03,\"BaseFare\":2129,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":108,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"614\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-01-17T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-01-17T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"615\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-01-18T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-2588757267_0MAABLRI5821BLRDELI5722_16860694662082\",\"localFromDateTime\":\"2023-01-17 22:35\",\"localToDateTime\":\"2023-01-18 03:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"1\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"1\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-12-22-11-46-14\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"1\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Delhi\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"departure_date\":\"17\\/01\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"MAA\",\"to\":\"DEL\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"sourceCityId\":6000,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"364b0-61986-a9abe-32e95\",\"from_city_\":\"1__MAA-DEL\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"1\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[]}','2022-12-22 11:46:14'),(3,'88703-3b950-44c76-37f88','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-815\",\"keyIndex\":70,\"SegFlightNumberArr\":\"UK-815\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-5454145800_2DELBLRUK815_28023651856862\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-02-10T08:10\",\"LocalFromTime\":\"2023-02-10 08:10\",\"FromUTCTime\":\"2023-02-10T08:10\",\"LocalToTime\":\"2023-02-10 10:45\",\"ToUTCTime\":\"2023-02-10T10:45\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6791,\"PublishedFareTxt\":\"6,791\",\"ApiResultIndex\":\"15-2-10-5454145800_2DELBLRUK815_28023651856862\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"88703-3b950-44c76-37f88\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4740,\"Tax\":2336,\"YQTax\":0,\"OtherCharges\":690,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":244,\"CarrierMiscFee\":130,\"MUFee\":800,\"intPublishedFare\":7076,\"PublishedFare\":6791,\"PublishedFarePerPax\":6791,\"OfferedFare\":5991,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-5454145800_2DELBLRUK815_28023651856862\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Special\",\"fareremarks\":\"Free Meal\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2336,\"BaseFareCal\":6113.03,\"BaseFare\":4740,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":244,\"MFT\":72,\"OT\":690,\"MU\":800,\"YR\":130,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":6791,\"CostToCustomer\":6791,\"BaseFareCal\":6113.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":6113.03,\"intOfferedFare\":5991,\"intPublishFare\":7076,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"04S\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T10:45\",\"SegFlightNumber\":\"UK-815\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"1  Piece\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-03 18:35:36'),(4,'62017-e4d36-ca2b6-2a5d8','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-605\",\"keyIndex\":2,\"SegFlightNumberArr\":\"6E-605\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1760524042_1MAABLR6E605_29678029696757\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2023-02-07T12:50\",\"LocalFromTime\":\"2023-02-07 12:50\",\"FromUTCTime\":\"2023-02-07T12:50\",\"LocalToTime\":\"2023-02-07 13:55\",\"ToUTCTime\":\"2023-02-07T13:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2821,\"PublishedFareTxt\":\"2,821\",\"ApiResultIndex\":\"5-1760524042_1MAABLR6E605_29678029696552\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"62017-e4d36-ca2b6-2a5d8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":906,\"Tax\":2200,\"YQTax\":0,\"OtherCharges\":878,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3106,\"PublishedFare\":2821,\"PublishedFarePerPax\":2821,\"OfferedFare\":2021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1760524042_1MAABLR6E605_29678029696757\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2200,\"BaseFareCal\":2143.03,\"BaseFare\":906,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":878,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2821,\"CostToCustomer\":2821,\"BaseFareCal\":2143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2143.03,\"intOfferedFare\":2021,\"intPublishFare\":3106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"01B\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T12:50\",\"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\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"$$hashKey\":\"04W\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-03 19:02:28'),(6,'489ba-76f3e-3c265-04634','{\"FlightBookingData\":[{\"bookingId\":\"TJS111400433610\",\"FlightNumber\":\"AI-995\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"20:15\",\"ArrivalTime\":\"22:45\",\"TravelDate\":\"2023-02-07T20:15\",\"LocalFromTime\":\"2023-02-07 20:15\",\"FromUTCTime\":\"2023-02-07T20:15\",\"LocalToTime\":\"2023-02-07 22:45\",\"ToUTCTime\":\"2023-02-07T22:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"\",\"DestPlaceSysId\":\"\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":22000,\"Tax\":7089.4,\"YQTax\":0,\"OtherCharges\":4144,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1110,\"CarrierMiscFee\":200,\"MUFee\":1600,\"intPublishedFare\":29089.4,\"PublishedFare\":29561.4,\"OfferedFare\":835.4000000000001,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-9444836283_1DXBDELAI996_86286261746646\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7089.4,\"BaseFareCal\":27805.46,\"BaseFare\":22000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":1110,\"MFT\":5.4,\"OT\":4144,\"MU\":1600,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"160\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T22:45\",\"SegFlightNumber\":\"AI-995\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-07T20:15\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:15\",\"strArrivalDtTime\":\"22:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.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\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg 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\":\"SPML\",\"Price\":0,\"Description\":\"Special 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\":\"489ba-76f3e-3c265-04634\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":15,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"\",\"intDestinationCityId\":\"\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS111400433610\",\"FlightNumber\":\"AI-995\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"strTraceId\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"20:15\",\"ArrivalTime\":\"22:45\",\"TravelDate\":\"2023-02-07T20:15\",\"LocalFromTime\":\"2023-02-07 20:15\",\"FromUTCTime\":\"2023-02-07T20:15\",\"LocalToTime\":\"2023-02-07 22:45\",\"ToUTCTime\":\"2023-02-07T22:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"\",\"DestPlaceSysId\":\"\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":29561.4,\"ApiResultIndex\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"489ba-76f3e-3c265-04634\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":22000,\"Tax\":7089.4,\"YQTax\":0,\"OtherCharges\":4144,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1110,\"CarrierMiscFee\":200,\"MUFee\":1600,\"intPublishedFare\":29089.4,\"PublishedFare\":29561.4,\"OfferedFare\":835.4000000000001,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-9444836283_1DXBDELAI996_86286261746646\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7089.4,\"BaseFareCal\":27805.46,\"BaseFare\":22000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":1110,\"MFT\":5.4,\"OT\":4144,\"MU\":1600,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"160\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T22:45\",\"SegFlightNumber\":\"AI-995\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-07T20:15\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:15\",\"strArrivalDtTime\":\"22:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"161\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T04:45\",\"SegFlightNumber\":\"AI-996\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-09T00:05\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:05\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-12-10-9444836283_5DELDXBAI995DXBDELAI996_86003174440855\",\"localFromDateTime\":\"2023-02-07 20:15\",\"localToDateTime\":\"2023-02-07 22:45\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"\",\"intDestinationCityId\":\"\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS111400433610\",\"FlightNumber\":\"AI-996\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"00:05\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2023-02-09T00:05\",\"LocalFromTime\":\"2023-02-09 00:05\",\"FromUTCTime\":\"2023-02-09T00:05\",\"LocalToTime\":\"2023-02-09 04:45\",\"ToUTCTime\":\"2023-02-09T04:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"4h 40m\",\"SourcePlaceSysId\":\"\",\"DestPlaceSysId\":\"\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T04:45\",\"SegFlightNumber\":\"AI-996\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-09T00:05\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:05\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"489ba-76f3e-3c265-04634\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":15,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"\",\"intDestinationCityId\":\"\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"2\",\"3\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"2\",\"3\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1957-01-29\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-10-47-26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"UIYR676786HGH\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-26\",\"passporIssue\":\"2018-01-26\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"2\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"07\\/02\\/2023\",\"return_date\":\"09\\/02\\/2023\",\"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\":\"\",\"destinationCityId\":\"\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/02\\/2023\",\"return_dates\":\"09\\/02\\/2023\",\"strDepatureDate\":\"2023-02-07\",\"strReturnDate\":\"2023-02-09\",\"SearchFlightTraceId\":\"489ba-76f3e-3c265-04634\",\"from_city_\":\"2__DEL-DXB-DEL\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"2\",\"3\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[]}','2023-01-04 10:47:27'),(8,'9b9c9-e1883-8a159-48bfe','{\"FlightBookingData\":[{\"bookingId\":\"TJS116500433632\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-15 12:05\",\"ToUTCTime\":\"2023-02-15T12:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":995,\"LAYOVERDuration\":\"16h 35m\",\"FlyingMinutes\":1305,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"23h 15m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"CRF\":50,\"ARFT\":250,\"ARF\":5000,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACF\":6500,\"CCF\":50,\"ACFT\":325}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15726,\"Tax\":5577.4,\"YQTax\":0,\"OtherCharges\":3546,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":396,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":21303.4,\"PublishedFare\":21775.4,\"OfferedFare\":20361.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1194778601_1BKKBLR6E76BLRMAA6E6269_86861005180634\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"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\":5577.4,\"BaseFareCal\":20019.46,\"BaseFare\":15726,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":396,\"MFT\":5.4,\"OT\":3546,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"313\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":995,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"16h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"314\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-15T12:05\",\"SegFlightNumber\":\"6E-75\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-15T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"313\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"313\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"313\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"313\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-17 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS116500433632\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"strTraceId\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-15 12:05\",\"ToUTCTime\":\"2023-02-15T12:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":995,\"LAYOVERDuration\":\"16h 35m\",\"FlyingMinutes\":1305,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"23h 15m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":21775.4,\"ApiResultIndex\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"CRF\":50,\"ARFT\":250,\"ARF\":5000,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACF\":6500,\"CCF\":50,\"ACFT\":325}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15726,\"Tax\":5577.4,\"YQTax\":0,\"OtherCharges\":3546,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":396,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":21303.4,\"PublishedFare\":21775.4,\"OfferedFare\":20361.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1194778601_1BKKBLR6E76BLRMAA6E6269_86861005180634\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"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\":5577.4,\"BaseFareCal\":20019.46,\"BaseFare\":15726,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":396,\"MFT\":5.4,\"OT\":3546,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":316.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1755.94,\"GSTOnMarkUp\":316.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"313\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":995,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"16h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"314\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-15T12:05\",\"SegFlightNumber\":\"6E-75\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-15T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"315\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-17T15:55\",\"SegFlightNumber\":\"6E-76\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-17T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":905,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":\"15h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"316\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-18T07:55\",\"SegFlightNumber\":\"6E-6269\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-18T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1194778601_2MAABLR6E605BLRBKK6E75BKKBLR6E76BLRMAA6E6269_86450499234878\",\"localFromDateTime\":\"2023-02-14 12:50\",\"localToDateTime\":\"2023-02-15 12:05\",\"strSourceAirportCode\":\"BKK\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS116500433632\",\"FlightNumber\":\"6E-76\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2023-02-17T13:05\",\"LocalFromTime\":\"2023-02-17 13:05\",\"FromUTCTime\":\"2023-02-17T13:05\",\"LocalToTime\":\"2023-02-18 07:55\",\"ToUTCTime\":\"2023-02-18T07:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":905,\"LAYOVERDuration\":\"15h 5m\",\"FlyingMinutes\":1220,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Sat, 18 Feb\",\"FlightDuration\":\"18h 50m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"BKK\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"CRF\":50,\"ARFT\":250,\"ARF\":5000,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACF\":6500,\"CCF\":50,\"ACFT\":325}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"315\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-17T15:55\",\"SegFlightNumber\":\"6E-76\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-17T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":905,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":\"15h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"316\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-18T07:55\",\"SegFlightNumber\":\"6E-6269\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-18T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"XBPA\",\"Price\":3895,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"XBPB\",\"Price\":7789,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"XBPC\",\"Price\":11684,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"XBPD\",\"Price\":23368,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"315\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-17 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"4\",\"5\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"4\",\"5\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1958-01-28\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-10-56-41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1958-01-28\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-10-56-41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"apiTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"modified\":\"2023-01-04-10-56-41\",\"created\":\"2023-01-04-10-56-41\",\"CustomerMemberSysId\":\"1\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"3\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Bangkok\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\\/02\\/2023\",\"return_date\":\"17\\/02\\/2023\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt BKK\",\"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\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/02\\/2023\",\"return_dates\":\"17\\/02\\/2023\",\"strDepatureDate\":\"2023-02-14\",\"strReturnDate\":\"2023-02-17\",\"SearchFlightTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"from_city_\":\"2__MAA-BKK-MAA\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"4\",\"5\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1958-01-28\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-10-56-41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"apiTraceId\":\"9b9c9-e1883-8a159-48bfe\",\"modified\":\"2023-01-04-10-56-41\",\"created\":\"2023-01-04-10-56-41\",\"MobileNo\":\"8923963627\",\"B2B\":false}]}','2023-01-04 10:56:42'),(9,'057e9-614ad-aa5d6-5b8a9','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid8535378612-38712550\",\"name\":\"Aanya Suites\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_z.jpg\",\"sz\":\"XL\"}],\"tac\":{\"sc\":[{\"type\":\"URL\",\"info\":\"http:\\/\\/developer.ean.com\\/terms\\/en\\/\",\"label\":\"Supplier terms and conditions\"},{\"type\":\"URL\",\"info\":\"http:\\/\\/developer.ean.com\\/terms\\/agent\\/en\\/\",\"label\":\"Supplier terms and conditions for agent\"}]},\"des\":\"{\\\"amenities\\\":\\\"Make use of convenient amenities, which include complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 32 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Visa, Debit cards not accepted, American Express, Cash, Mastercard\\\",\\\"dining\\\":\\\"Enjoy a meal at Restaurant, or stay in and take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Noida, Aanya Suites is within a 10-minute drive of Shipra Mall and Mahagun Metro Mall.  This hotel is 7.5 mi (12.1 km) from Swaminarayan Akshardham Temple and 10.1 mi (16.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Shipra Mall - 2.9 km \\/ 1.8 mi  Mahagun Metro Mall - 4.2 km \\/ 2.6 mi  Max Super Speciality Hospital - 6.7 km \\/ 4.2 mi  Noida Film City - 7.8 km \\/ 4.9 mi  Nodia Golf Course - 8.4 km \\/ 5.2 mi  Atta Market - 8.5 km \\/ 5.3 mi  Worlds of Wonder - 8.7 km \\/ 5.4 mi  KidZania Delhi NCR - 8.9 km \\/ 5.5 mi  Laxmi Nagar - 9.5 km \\/ 5.9 mi  World Square Mall - 10 km \\/ 6.2 mi  ABES Engineering College - 11 km \\/ 6.8 mi  Swaminarayan Akshardham Temple - 12.1 km \\/ 7.5 mi  Amity University - 13.3 km \\/ 8.3 mi  Supreme Court - 13.6 km \\/ 8.4 mi  Institute Of Management Technology - 14.4 km \\/ 8.9 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 38.1 km \\/ 23.7 mi\\\",\\\"headline\\\":\\\"Near Shipra Mall\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"77.35482\",\"lt\":\"28.62391\"},\"ad\":{\"adr\":\"Campus\",\"postalCode\":\"201309\",\"city\":{\"name\":\"Noida\"},\"state\":{\"code\":\"UP\",\"name\":\"Up\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"Noida\",\"cn\":\"India\"},\"fl\":[\"Laundry Services\",\"Disable Friendly\",\"Wheelchair-accessible concierge desk\",\"Luggage storage\",\"Restaurant\",\"Safe deposit box\",\"Wheelchair-accessible path to elevator\",\"24-hour front desk\",\"Wheelchair-accessible registration desk\",\"Breakfast\",\"Internet\",\"Restaurant\",\"Designated smoking areas\",\"Business Center\",\"Parking\",\"Designated smoking areas (fines apply)\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Elevator\",\"Free self parking\",\"Concierge Services\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-8826379027\"},\"ht\":[],\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"No pets and no service animals are allowed at this property. Social distancing measures are in place. \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"To make arrangements for check-in please contact the property at least 72 hours before arrival using the information on the booking confirmation. Guests will receive an email 72 hours before arrival with check-in instructions. Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Fee for continental breakfast: INR 250 for adults and INR 175 for children (approximately)                   Rollaway bed fee: INR 700.0 per day             The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"232269669_288415336_37316--1\",\"rc\":\"Superior Room\",\"rt\":\"Superior Room-1 Double Bed - Package Deal\",\"srn\":\"Superior, Double\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":5760.82,\"tfcs\":{\"TF\":5760.82,\"TAF\":711.8,\"CMU\":46.53,\"NF\":5060.82,\"BF\":5049.02},\"tafcs\":{\"TAF\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8}},\"pis\":[{\"day\":1,\"fc\":{\"CMU\":46.53,\"BF\":5049.02,\"TAF\":711.8,\"TF\":5760.82,\"NF\":5060.82},\"afc\":{\"TAF\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8}}}],\"fcs\":[\"Free self parking\",\"Free WiFi\"],\"checkInDate\":\"2023-02-09\",\"checkOutDate\":\"2023-02-10\",\"radi\":{\"rid\":\"232269669\"},\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\",\"Free WiFi\"]}]}}],\"id\":\"44_6_60999869\",\"tp\":5760.82,\"cnp\":{\"id\":\"232269669_288415336_37316--48788660\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-04T11:01:39.302\",\"tdt\":\"2023-02-06T18:00\",\"am\":0},{\"fdt\":\"2023-02-06T18:00\",\"tdt\":\"2023-02-09T12:00\",\"am\":5002.49},{\"fdt\":\"2023-02-09T12:00\",\"tdt\":\"2023-02-10T23:59\",\"am\":5002.49}]},\"ddt\":\"2023-02-06T18:00\",\"oai\":{\"sid\":\"44\"},\"ispr\":true,\"ipr\":true,\"omid\":\"-825639124\",\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":5749.02}],\"uid\":\"38712550\",\"lhc\":\"268517\"},\"bookingId\":\"TJS209900433638\",\"query\":{\"checkinDate\":\"2023-02-09\",\"checkoutDate\":\"2023-02-10\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"countryName\":\"INDIA\",\"cityName\":\"DELHI\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid8535378612\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1167}},\"hotelbookingid\":\"2\",\"SearchHotelTraceId\":\"057e9-614ad-aa5d6-5b8a9\",\"CustomerSession\":{\"bookingId\":\"057e9-614ad-aa5d6-5b8a9\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"057e9-614ad-aa5d6-5b8a9\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"neha\",\"passenger-lastname-1\":\"kannojia\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"232269669_288415336_37316--1\",\"RoomCategory\":\"Superior Room\",\"RoomType\":\"Superior Room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":5760.82,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":5760.82,\"TotalRoomPrice\":5760.82,\"TotalFare\":5760.82,\"TotalBaseFare\":5049.02,\"TotalNetFare\":5060.82,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":46.53,\"BF\":5049.02,\"TAF\":711.8,\"TF\":5760.82,\"NF\":5060.82},\"afc\":{\"TAF\":{\"SAC\":349.94,\"SBP\":4441,\"SGP\":5002.49,\"TMF\":349.94,\"SNP\":4652.54,\"MF\":10,\"TSF\":561.49,\"TTSF\":561.49,\"SRC\":0,\"MU\":700,\"MFT\":1.8}}}],\"PriceWithMarkup\":5760.82,\"arrMarkUps\":{\"HotelRoomPrice\":5760.82,\"pernightperroomprice\":5760.82,\"RoomPrice\":5760.82,\"withmarkupprice\":5760.82,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"44_6_60999869\",\"RoomTotalPrice\":5760.82,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid8535378612-38712550\",\"HotemName\":\"Aanya Suites\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Make use of convenient amenities, which include complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 32 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Visa, Debit cards not accepted, American Express, Cash, Mastercard\\\",\\\"dining\\\":\\\"Enjoy a meal at Restaurant, or stay in and take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Noida, Aanya Suites is within a 10-minute drive of Shipra Mall and Mahagun Metro Mall.  This hotel is 7.5 mi (12.1 km) from Swaminarayan Akshardham Temple and 10.1 mi (16.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Shipra Mall - 2.9 km \\/ 1.8 mi  Mahagun Metro Mall - 4.2 km \\/ 2.6 mi  Max Super Speciality Hospital - 6.7 km \\/ 4.2 mi  Noida Film City - 7.8 km \\/ 4.9 mi  Nodia Golf Course - 8.4 km \\/ 5.2 mi  Atta Market - 8.5 km \\/ 5.3 mi  Worlds of Wonder - 8.7 km \\/ 5.4 mi  KidZania Delhi NCR - 8.9 km \\/ 5.5 mi  Laxmi Nagar - 9.5 km \\/ 5.9 mi  World Square Mall - 10 km \\/ 6.2 mi  ABES Engineering College - 11 km \\/ 6.8 mi  Swaminarayan Akshardham Temple - 12.1 km \\/ 7.5 mi  Amity University - 13.3 km \\/ 8.3 mi  Supreme Court - 13.6 km \\/ 8.4 mi  Institute Of Management Technology - 14.4 km \\/ 8.9 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 38.1 km \\/ 23.7 mi\\\",\\\"headline\\\":\\\"Near Shipra Mall\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/2dfd0583_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e07b742e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3020cda9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/5bfd1d58_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-ecaffe73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/26167734_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/23e6fd4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/22ecbcef_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/053abd39_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ceb45258_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/d4743285_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/845d9956_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9f367004_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/4fcd1453_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-690ac569_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/0893aef0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-d921c150_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1cf36795_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e3d04ecb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ca8cbcad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/47153543_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/54591feb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/45c36221_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3b3a0e96_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/588a49e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e51e7e42_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed5640e4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/80993950_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/6cb7860c_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8cb81bc7_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/44ea5f65_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\",\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/39c535f4_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/f0ee2818_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/270-967ff0fa_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ac721e7e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/34960149_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269669\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ed6f1a7d_z.jpg\",\"sz\":\"XL\",\"rids\":[\"232269670\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a6f05812_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/64614759_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/8facb70c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1a08b445_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a024915c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/9ef0e2c4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/a03953ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/c0605484_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/ea1ae15a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/1dd77e51_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/e9674a89_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/11ff1ba8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/61000000\\/61000000\\/60999900\\/60999869\\/3657db0d_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.35482\",\"lt\":\"28.62391\"},\"HotelAddress\":\"Campus\",\"HotelCity\":\"Noida\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Disable Friendly\",\"Wheelchair-accessible concierge desk\",\"Luggage storage\",\"Restaurant\",\"Safe deposit box\",\"Wheelchair-accessible path to elevator\",\"24-hour front desk\",\"Wheelchair-accessible registration desk\",\"Breakfast\",\"Internet\",\"Restaurant\",\"Designated smoking areas\",\"Business Center\",\"Parking\",\"Designated smoking areas (fines apply)\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Elevator\",\"Free self parking\",\"Concierge Services\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-02-09\",\"checkoutDate\":\"2023-02-10\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"544886\",\"TPSysId\":\"544887\",\"VersionId\":\"1625977\",\"CustomerSysId\":\"305130\",\"TrxId\":\"43491\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null}','2023-01-04 11:01:52'),(11,'1844e-88479-5eea7-8d59c','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-796\",\"keyIndex\":1,\"SegFlightNumberArr\":\"6E-796\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3265744735_0MAABLR6E796_87639470196705\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2023-02-10T22:05\",\"LocalFromTime\":\"2023-02-10 22:05\",\"FromUTCTime\":\"2023-02-10T22:05\",\"LocalToTime\":\"2023-02-10 23:05\",\"ToUTCTime\":\"2023-02-10T23:05\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":60,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"1h 0m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2922,\"PublishedFareTxt\":\"2,922\",\"ApiResultIndex\":\"5-3265744735_0MAABLR6E796_87639470196188\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1844e-88479-5eea7-8d59c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1002,\"Tax\":2205,\"YQTax\":0,\"OtherCharges\":933,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3207,\"PublishedFare\":2922,\"PublishedFarePerPax\":2922,\"OfferedFare\":2122,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3265744735_0MAABLR6E796_87639470196705\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2205,\"BaseFareCal\":2244.03,\"BaseFare\":1002,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":933,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2922,\"CostToCustomer\":2922,\"BaseFareCal\":2244.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2244.03,\"intOfferedFare\":2122,\"intPublishFare\":3207,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T23:05\",\"SegFlightNumber\":\"6E-796\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-10T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[],\"$$hashKey\":\"00Y\"},{\"keyIndex\":0,\"FlightNumber\":\"6E-6012\",\"SegFlightNumberArr\":\"6E-6012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3265744735_0BLRMAA6E6012_87639469904171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"17:35\",\"TravelDate\":\"2023-02-14T16:25\",\"LocalFromTime\":\"2023-02-14 16:25\",\"FromUTCTime\":\"2023-02-14T16:25\",\"LocalToTime\":\"2023-02-14 17:35\",\"ToUTCTime\":\"2023-02-14T17:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2752,\"PublishedFareTxt\":\"2,752\",\"ApiResultIndex\":\"5-3265744735_0BLRMAA6E6012_87639469903252\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"1844e-88479-5eea7-8d59c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":677,\"Tax\":2360,\"YQTax\":0,\"OtherCharges\":1088,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3037,\"PublishedFare\":2752,\"PublishedFarePerPax\":2752,\"OfferedFare\":1952,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3265744735_0BLRMAA6E6012_87639469904171\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2360,\"BaseFareCal\":2074.03,\"BaseFare\":677,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":1088,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2752,\"CostToCustomer\":2752,\"BaseFareCal\":2074.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2074.03,\"intOfferedFare\":1952,\"intPublishFare\":3037,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"05T\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-14T17:35\",\"SegFlightNumber\":\"6E-6012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T16:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01S\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"6E-6012\",\"SegFlightNumberArr\":\"6E-6012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3265744735_0BLRMAA6E6012_87639469904171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"17:35\",\"TravelDate\":\"2023-02-14T16:25\",\"LocalFromTime\":\"2023-02-14 16:25\",\"FromUTCTime\":\"2023-02-14T16:25\",\"LocalToTime\":\"2023-02-14 17:35\",\"ToUTCTime\":\"2023-02-14T17:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2752,\"PublishedFareTxt\":\"2,752\",\"ApiResultIndex\":\"5-3265744735_0BLRMAA6E6012_87639469903252\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"1844e-88479-5eea7-8d59c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":677,\"Tax\":2360,\"YQTax\":0,\"OtherCharges\":1088,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3037,\"PublishedFare\":2752,\"PublishedFarePerPax\":2752,\"OfferedFare\":1952,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3265744735_0BLRMAA6E6012_87639469904171\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2360,\"BaseFareCal\":2074.03,\"BaseFare\":677,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":1088,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2752,\"CostToCustomer\":2752,\"BaseFareCal\":2074.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2074.03,\"intOfferedFare\":1952,\"intPublishFare\":3037,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"05T\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-14T17:35\",\"SegFlightNumber\":\"6E-6012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T16:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01S\"}}','2023-01-04 11:08:27'),(14,'88723-7ff49-83ecf-f2c74','{\"FlightBookingData\":[{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 10:40\",\"ToUTCTime\":\"2023-02-06T10:40\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3090,\"PublishedFareTxt\":\"3,090\",\"ApiResultIndex\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1000,\"Tax\":2090,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3090,\"PublishedFare\":2923,\"OfferedFare\":2005,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6197459724_0DELBLRI5740_87728756088818\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2090,\"BaseFareCal\":2145.03,\"BaseFare\":1000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":2923,\"CostToCustomer\":2923,\"BaseFareCal\":2145.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":2145.03,\"intOfferedFare\":2005,\"intPublishFare\":3090,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"887\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"887\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 10:40\",\"ToUTCTime\":\"2023-02-06T10:40\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6440,\"ApiResultIndex\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":4440,\"YQTax\":0,\"OtherCharges\":1788,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":6440,\"PublishedFare\":6106,\"OfferedFare\":4270,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4440,\"BaseFareCal\":4550.06,\"BaseFare\":2000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":108,\"MFT\":144,\"OT\":1788,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"887\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"888\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-6197459724_0DELBLRI5740_87684987804868\",\"localFromDateTime\":\"2023-02-06 08:10\",\"localToDateTime\":\"2023-02-06 10:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS101400433659\",\"FlightNumber\":\"I5-722\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-09T00:40\",\"LocalFromTime\":\"2023-02-09 00:40\",\"FromUTCTime\":\"2023-02-09T00:40\",\"LocalToTime\":\"2023-02-09 03:30\",\"ToUTCTime\":\"2023-02-09T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3350,\"PublishedFareTxt\":\"3,350\",\"ApiResultIndex\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1000,\"Tax\":2350,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3350,\"PublishedFare\":3183,\"OfferedFare\":2265,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6197459724_1BLRDELI5722_87728763656578\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2350,\"BaseFareCal\":2405.03,\"BaseFare\":1000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3183,\"CostToCustomer\":3183,\"BaseFareCal\":2405.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":2405.03,\"intOfferedFare\":2265,\"intPublishFare\":3350,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"888\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T11:10:51.670\",\"strTraceId\":\"22-6197459724_0BLRDELI5722_87684987553983\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"6\",\"7\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"6\",\"7\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-11-10-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-11-10-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-11-10-11\",\"CustomerMemberSysId\":\"1\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"4\"],[\"5\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Bengaluru\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"06\\/02\\/2023\",\"return_date\":\"09\\/02\\/2023\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"DEL\",\"to\":\"BLR\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":7701,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/02\\/2023\",\"return_dates\":\"09\\/02\\/2023\",\"strDepatureDate\":\"2023-02-06\",\"strReturnDate\":\"2023-02-09\",\"SearchFlightTraceId\":\"88723-7ff49-83ecf-f2c74\",\"from_city_\":\"2__DEL-BLR-DEL\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"6\",\"7\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-11-10-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-11-10-11\",\"MobileNo\":\"8923963627\",\"B2B\":false}]}','2023-01-04 11:10:11'),(16,'51fdd-4ee45-47e41-dae05','{\"FlightBookingData\":[{\"bookingId\":\"TJS106800434199\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 17:15\",\"ToUTCTime\":\"2023-02-06T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7993975787018\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"451\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-06T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-06T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"51fdd-4ee45-47e41-dae05\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T15:13:23.909\",\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106800434199\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-06T08:10\",\"LocalFromTime\":\"2023-02-06 08:10\",\"FromUTCTime\":\"2023-02-06T08:10\",\"LocalToTime\":\"2023-02-06 17:15\",\"ToUTCTime\":\"2023-02-06T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"ApiResultIndex\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"51fdd-4ee45-47e41-dae05\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T15:13:23.909\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-06T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"451\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-06T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-06T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-0341844728_0DELBLRI5740BLRMAAI52461_7971665545928\",\"localFromDateTime\":\"2023-02-06 08:10\",\"localToDateTime\":\"2023-02-06 17:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"8\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"8\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-15-14-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-15-14-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-15-14-17\",\"CustomerMemberSysId\":\"1\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"6\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Chennai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"MAA\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Chennai, IN - Chennai Arpt MAA, India\",\"departure_date\":\"06\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Chennai Arpt MAA\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"MAA\",\"from\":\"DEL\",\"to\":\"MAA\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"sourceCityId\":7701,\"destinationCityId\":6000,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"51fdd-4ee45-47e41-dae05\",\"from_city_\":\"1__DEL-MAA\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"8\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-15-14-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-15-14-17\",\"MobileNo\":\"8923963627\",\"B2B\":false}]}','2023-01-04 15:14:17'),(18,'031f0-2d6e2-eb439-d8c98','{\"FlightBookingData\":[{\"bookingId\":\"TJS104600434387\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-14 13:55\",\"ToUTCTime\":\"2023-02-14T13:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3106,\"PublishedFareTxt\":\"3,106\",\"ApiResultIndex\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-BLR\":{\"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\":{\"ARF\":100,\"CRFT\":9,\"CRF\":50,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__ Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 1,750 __nls__ Before 72 hrs Rs 1,500\",\"fcs\":{\"ACFT\":87.5,\"CCFT\":9,\"ACF\":1750,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":906,\"Tax\":2200,\"YQTax\":0,\"OtherCharges\":878,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3106,\"PublishedFare\":2821,\"OfferedFare\":2021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8398023143_0MAABLR6E605_12436400723490\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2200,\"BaseFareCal\":2143.03,\"BaseFare\":906,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":878,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2821,\"CostToCustomer\":2821,\"BaseFareCal\":2143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2143.03,\"intOfferedFare\":2021,\"intPublishFare\":3106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"291\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"291\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"031f0-2d6e2-eb439-d8c98\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-04T16:27:26.334\",\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104600434387\",\"FlightNumber\":\"6E-605\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2023-02-14T12:50\",\"LocalFromTime\":\"2023-02-14 12:50\",\"FromUTCTime\":\"2023-02-14T12:50\",\"LocalToTime\":\"2023-02-14 13:55\",\"ToUTCTime\":\"2023-02-14T13:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3106,\"ApiResultIndex\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"031f0-2d6e2-eb439-d8c98\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-04T16:27:26.334\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":906,\"Tax\":2200,\"YQTax\":0,\"OtherCharges\":878,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3106,\"PublishedFare\":2821,\"OfferedFare\":2021,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2200,\"BaseFareCal\":2143.03,\"BaseFare\":906,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":878,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"291\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-14T13:55\",\"SegFlightNumber\":\"6E-605\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-14T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8398023143_1MAABLR6E605_12218753457322\",\"localFromDateTime\":\"2023-02-14 12:50\",\"localToDateTime\":\"2023-02-14 13:55\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"9\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"9\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-16-28-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-16-28-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-16-28-49\",\"CustomerMemberSysId\":\"1\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"7\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Bengaluru\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"14\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"MAA\",\"to\":\"BLR\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":6000,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"031f0-2d6e2-eb439-d8c98\",\"from_city_\":\"1__MAA-BLR\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"9\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-16-28-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-04-16-28-49\",\"MobileNo\":\"8923963627\",\"B2B\":false}]}','2023-01-04 16:28:49'),(20,'cd454-4d62d-fe77d-726d1','{\"FlightBookingData\":[{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-06T22:35\",\"LocalFromTime\":\"2023-02-06 22:35\",\"FromUTCTime\":\"2023-02-06T22:35\",\"LocalToTime\":\"2023-02-07 03:30\",\"ToUTCTime\":\"2023-02-07T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4197,\"PublishedFareTxt\":\"4,197\",\"ApiResultIndex\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2197,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4197,\"PublishedFare\":4030,\"OfferedFare\":3112,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14390299038936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2197,\"BaseFareCal\":3252.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4030,\"CostToCustomer\":4030,\"BaseFareCal\":3252.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3252.03,\"intOfferedFare\":3112,\"intPublishFare\":4197,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"544\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-06T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"545\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-07T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-07T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-08 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-06T22:35\",\"LocalFromTime\":\"2023-02-06 22:35\",\"FromUTCTime\":\"2023-02-06T22:35\",\"LocalToTime\":\"2023-02-07 03:30\",\"ToUTCTime\":\"2023-02-07T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8337,\"ApiResultIndex\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":4337,\"YQTax\":0,\"OtherCharges\":1587,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":206,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8337,\"PublishedFare\":8003,\"OfferedFare\":6167,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4337,\"BaseFareCal\":6447.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":206,\"MFT\":144,\"OT\":1587,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"544\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-06T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"545\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-07T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-07T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"546\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-08T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"547\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-08T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-1356633556_0MAABLRI5821BLRDELI5722_14295150086718\",\"localFromDateTime\":\"2023-02-06 22:35\",\"localToDateTime\":\"2023-02-07 03:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS107200434448\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-08T08:10\",\"LocalFromTime\":\"2023-02-08 08:10\",\"FromUTCTime\":\"2023-02-08T08:10\",\"LocalToTime\":\"2023-02-08 17:15\",\"ToUTCTime\":\"2023-02-08T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1356633556_1DELBLRI5740BLRMAAI52461_14390301899334\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"546\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-08T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"547\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-08T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"546\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:00:00.229\",\"strTraceId\":\"22-1356633556_0DELBLRI5740BLRMAAI52461_14295149875339\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-06 12:00\",\"localToDateTime\":\"2023-02-08 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"10\",\"11\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"10\",\"11\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"89239636227\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-17-01-22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"2\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_customer\":[[\"8\"],[\"9\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Delhi\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"departure_date\":\"06\\/02\\/2023\",\"return_date\":\"08\\/02\\/2023\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"MAA\",\"to\":\"DEL\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"sourceCityId\":6000,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/02\\/2023\",\"return_dates\":\"08\\/02\\/2023\",\"strDepatureDate\":\"2023-02-06\",\"strReturnDate\":\"2023-02-08\",\"SearchFlightTraceId\":\"cd454-4d62d-fe77d-726d1\",\"from_city_\":\"2__MAA-DEL-MAA\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"10\",\"11\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"89239636227\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[]}','2023-01-04 17:01:22'),(24,'ed824-c8e52-dc430-d10aa','{\"BookingData\":[{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-07T22:35\",\"LocalFromTime\":\"2023-02-07 22:35\",\"FromUTCTime\":\"2023-02-07T22:35\",\"LocalToTime\":\"2023-02-08 03:30\",\"ToUTCTime\":\"2023-02-08T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4197,\"PublishedFareTxt\":\"4,197\",\"ApiResultIndex\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2197,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4197,\"PublishedFare\":4030,\"OfferedFare\":3112,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14889614287537\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2197,\"BaseFareCal\":3252.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4030,\"CostToCustomer\":4030,\"BaseFareCal\":3252.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3252.03,\"intOfferedFare\":3112,\"intPublishFare\":4197,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"70\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"71\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-08T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"70\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-821\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-07T22:35\",\"LocalFromTime\":\"2023-02-07 22:35\",\"FromUTCTime\":\"2023-02-07T22:35\",\"LocalToTime\":\"2023-02-08 03:30\",\"ToUTCTime\":\"2023-02-08T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8337,\"ApiResultIndex\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":4337,\"YQTax\":0,\"OtherCharges\":1587,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":206,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8337,\"PublishedFare\":8003,\"OfferedFare\":6167,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4337,\"BaseFareCal\":6447.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":206,\"MFT\":144,\"OT\":1587,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"70\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"71\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-08T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-08T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"72\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T12:25\",\"SegFlightNumber\":\"I5-1529\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":230,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"73\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-10T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-10T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-3225367417_0MAABLRI5821BLRDELI5722_14873764767690\",\"localFromDateTime\":\"2023-02-07 22:35\",\"localToDateTime\":\"2023-02-08 03:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS103200434461\",\"FlightNumber\":\"I5-1529\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-10T09:35\",\"LocalFromTime\":\"2023-02-10 09:35\",\"FromUTCTime\":\"2023-02-10T09:35\",\"LocalToTime\":\"2023-02-10 17:15\",\"ToUTCTime\":\"2023-02-10T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4140,\"PublishedFareTxt\":\"4,140\",\"ApiResultIndex\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"DEL-MAA\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"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\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-3225367417_1DELBLRI51529BLRMAAI52461_14889616086742\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"72\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-10T12:25\",\"SegFlightNumber\":\"I5-1529\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":230,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"73\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-10T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-10T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"72\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-04T17:08:19.544\",\"strTraceId\":\"22-3225367417_0DELBLRI51529BLRMAAI52461_14873764521604\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Delhi\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"departure_date\":\"07\\/02\\/2023\",\"return_date\":\"10\\/02\\/2023\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"MAA\",\"to\":\"DEL\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"sourceCityId\":6000,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/02\\/2023\",\"return_dates\":\"10\\/02\\/2023\",\"strDepatureDate\":\"2023-02-07\",\"strReturnDate\":\"2023-02-10\",\"SearchFlightTraceId\":\"ed824-c8e52-dc430-d10aa\",\"from_city_\":\"2__MAA-DEL-MAA\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Chennai&mytrip_city_to=Delhi&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=MAA&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=07%2F02%2F2023&return_date=10%2F02%2F2023&from_mytrip_city=+IN+-+Chennai+Arpt+MAA&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-04-17-07-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"545793\",\"TPSysId\":\"545794\",\"VersionId\":[\"143047\",\"143048\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"43543\",\"FareBreakdownid\":[\"367818\",\"367819\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"10\"],[\"11\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"12\",\"13\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"12\",\"13\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8003},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"545794\",\"MasterTPSysId\":\"545793\",\"ProposalID\":\"545794\\/V1\",\"InvoiceDate\":\"2023-01-04\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-04\",\"PaymentDate\":\"2023-01-04\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":7686.94,\"InvoiceStatus\":true,\"TotalSGST\":158.03,\"TotalCGST\":158.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8003,\"TotalDueAmount\":0,\"InvoiceValue\":8003,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-DEL-AirAsia India I5-821\",\"ItemQty\":1,\"ItemRates\":2993.9999999999995,\"Total\":2993.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4030,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":3871.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-MAA-AirAsia India I5-1529\",\"ItemQty\":1,\"ItemRates\":2936.9999999999995,\"Total\":2936.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3973,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":3814.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-04 17:08:22'),(25,'6db28-3ad84-f3bff-8a163','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-821\",\"keyIndex\":128,\"SegFlightNumberArr\":\"I5-821 +1\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6596747103_0MAABLRI5821BLRDELI5722_20535052508266\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"03:30\",\"TravelDate\":\"2023-02-12T22:35\",\"LocalFromTime\":\"2023-02-12 22:35\",\"FromUTCTime\":\"2023-02-12T22:35\",\"LocalToTime\":\"2023-02-13 03:30\",\"ToUTCTime\":\"2023-02-13T03:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Sun, 12 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4030,\"PublishedFareTxt\":\"4,030\",\"ApiResultIndex\":\"22-6596747103_0MAABLRI5821BLRDELI5722_20535052508266\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6db28-3ad84-f3bff-8a163\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":2197,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4197,\"PublishedFare\":4030,\"PublishedFarePerPax\":4030,\"OfferedFare\":3112,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6596747103_0MAABLRI5821BLRDELI5722_20535052508266\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2197,\"BaseFareCal\":3252.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4030,\"CostToCustomer\":4030,\"BaseFareCal\":3252.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3252.03,\"intOfferedFare\":3112,\"intPublishFare\":4197,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02S\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-12T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-12T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":70,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T03:30\",\"SegFlightNumber\":\"I5-722\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T00:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"011\"},{\"keyIndex\":168,\"FlightNumber\":\"I5-740\",\"SegFlightNumberArr\":\"I5-740 +1\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-15T08:10\",\"LocalFromTime\":\"2023-02-15 08:10\",\"FromUTCTime\":\"2023-02-15T08:10\",\"LocalToTime\":\"2023-02-15 17:15\",\"ToUTCTime\":\"2023-02-15T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3973,\"PublishedFareTxt\":\"3,973\",\"ApiResultIndex\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"6db28-3ad84-f3bff-8a163\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"PublishedFarePerPax\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"063\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-15T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T08:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-15T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-15T16:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01V\"}],\"FlightBookingDataInbound\":{\"keyIndex\":168,\"FlightNumber\":\"I5-740\",\"SegFlightNumberArr\":\"I5-740 +1\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2023-02-15T08:10\",\"LocalFromTime\":\"2023-02-15 08:10\",\"FromUTCTime\":\"2023-02-15T08:10\",\"LocalToTime\":\"2023-02-15 17:15\",\"ToUTCTime\":\"2023-02-15T17:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":335,\"LAYOVERDuration\":\"5h 35m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"9h 5m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3973,\"PublishedFareTxt\":\"3,973\",\"ApiResultIndex\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"6db28-3ad84-f3bff-8a163\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":2140,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4140,\"PublishedFare\":3973,\"PublishedFarePerPax\":3973,\"OfferedFare\":3055,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6596747103_0DELBLRI5740BLRMAAI52461_20535052277655\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2140,\"BaseFareCal\":3195.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3973,\"CostToCustomer\":3973,\"BaseFareCal\":3195.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3195.03,\"intOfferedFare\":3055,\"intPublishFare\":4140,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"063\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-15T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T08:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":335,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"5h 35m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-15T17:15\",\"SegFlightNumber\":\"I5-2461\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-15T16:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01V\"}}','2023-01-04 18:42:05'),(30,'a2421-c665f-6681d-47978','{\"BookingData\":[{\"bookingId\":\"TJS103800436096\",\"FlightNumber\":\"6E-2398\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-01-11T07:00\",\"LocalFromTime\":\"2023-01-11 07:00\",\"FromUTCTime\":\"2023-01-11T07:00\",\"LocalToTime\":\"2023-01-11 09:15\",\"ToUTCTime\":\"2023-01-11T09:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 11 Jan\",\"ArrivalDateTxt\":\"Wed, 11 Jan\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5804,\"PublishedFareTxt\":\"5,804\",\"ApiResultIndex\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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\":3570,\"Tax\":2234,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":184,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5804,\"PublishedFare\":5519,\"OfferedFare\":4719,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2553746032_0BOMDEL6E2398_15061741158258\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2234,\"BaseFareCal\":4841.03,\"BaseFare\":3570,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":184,\"MFT\":72,\"OT\":778,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5519,\"CostToCustomer\":5519,\"BaseFareCal\":4841.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4841.03,\"intOfferedFare\":4719,\"intPublishFare\":5804,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"431\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-11T09:15\",\"SegFlightNumber\":\"6E-2398\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"431\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a2421-c665f-6681d-47978\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-05T20:03:44.661\",\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-11 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\":\"TJS103800436096\",\"FlightNumber\":\"6E-2398\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-01-11T07:00\",\"LocalFromTime\":\"2023-01-11 07:00\",\"FromUTCTime\":\"2023-01-11T07:00\",\"LocalToTime\":\"2023-01-11 09:15\",\"ToUTCTime\":\"2023-01-11T09:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 11 Jan\",\"ArrivalDateTxt\":\"Wed, 11 Jan\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5804,\"ApiResultIndex\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"a2421-c665f-6681d-47978\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-05T20:03:44.661\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3570,\"Tax\":2234,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":184,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5804,\"PublishedFare\":5519,\"OfferedFare\":4719,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2234,\"BaseFareCal\":4841.03,\"BaseFare\":3570,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":184,\"MFT\":72,\"OT\":778,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"431\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-11T09:15\",\"SegFlightNumber\":\"6E-2398\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2553746032_12BOMDEL6E2398_15025436541540\",\"localFromDateTime\":\"2023-01-11 07:00\",\"localToDateTime\":\"2023-01-11 09:15\",\"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\",\"mytrip_city_to\":\"Delhi\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"11\\/01\\/2023\",\"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\":\"11\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-11\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a2421-c665f-6681d-47978\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Delhi&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=11%2F01%2F2023&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"rah2510@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9820805828\",\"FirstName\":\"Rahim\",\"LastName\":\"Bhimani\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-05-20-03-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"3\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"547325\",\"TPSysId\":\"547326\",\"VersionId\":[\"143713\"],\"CustomerSysId\":\"306254\",\"TrxId\":\"43662\",\"FareBreakdownid\":[\"367902\"]},\"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\":[\"14\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"14\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5519},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"306254\",\"TPSysId\":\"547326\",\"MasterTPSysId\":\"547325\",\"ProposalID\":\"547326\\/V1\",\"InvoiceDate\":\"2023-01-05\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-05\",\"PaymentDate\":\"2023-01-05\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5396.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5519,\"TotalDueAmount\":0,\"InvoiceValue\":5519,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-IndiGo 6E-2398\",\"ItemQty\":1,\"ItemRates\":4719,\"Total\":4719,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5519,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":5396.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-05 20:04:13'),(31,'f9164-96ea5-96b00-c91e9','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-678\",\"keyIndex\":104,\"SegFlightNumberArr\":\"I5-678 +1\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":false,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-9319236916_0BOMJAII5678JAIDELI5830_74460354905812\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-01-06T15:25\",\"LocalFromTime\":\"2023-01-06 15:25\",\"FromUTCTime\":\"2023-01-06T15:25\",\"LocalToTime\":\"2023-01-06 23:10\",\"ToUTCTime\":\"2023-01-06T23:10\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":465,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Fri, 06 Jan\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4348,\"PublishedFareTxt\":\"4,348\",\"ApiResultIndex\":\"22-9319236916_0BOMJAII5678JAIDELI5830_74460354905812\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f9164-96ea5-96b00-c91e9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2480,\"Tax\":2153,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4633,\"PublishedFare\":4348,\"PublishedFarePerPax\":4348,\"OfferedFare\":3548,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-9319236916_0BOMJAII5678JAIDELI5830_74460354905812\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2153,\"BaseFareCal\":3670.03,\"BaseFare\":2480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":128,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4348,\"CostToCustomer\":4348,\"BaseFareCal\":3670.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3670.03,\"intOfferedFare\":3548,\"intPublishFare\":4633,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"00Z\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-01-06T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T15:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":290,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-06T23:10\",\"SegFlightNumber\":\"I5-830\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-01-06T22:15\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-06 12:32:45'),(35,'96eb1-3a104-7da46-97211','{\"BookingData\":[{\"bookingId\":\"TJS112000436820\",\"FlightNumber\":\"SG-13\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-01-06T23:05\",\"LocalFromTime\":\"2023-01-06 23:05\",\"FromUTCTime\":\"2023-01-06T23:05\",\"LocalToTime\":\"2023-01-07 00:55\",\"ToUTCTime\":\"2023-01-07T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Sat, 07 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":17091.7,\"PublishedFareTxt\":\"17,092\",\"ApiResultIndex\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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\":{\"CRFT\":9,\"ARF\":4000,\"ARFT\":200,\"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\":{\"CCF\":50,\"ACFT\":250,\"ACF\":5000,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13750,\"Tax\":3341.7,\"YQTax\":0,\"OtherCharges\":1830,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":694,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":17091.7,\"PublishedFare\":17209.7,\"OfferedFare\":16291.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6421084093_0BOMDXBSG13_83465957421038\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3341.7,\"BaseFareCal\":16431.73,\"BaseFare\":13750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":694,\"MFT\":2.7,\"OT\":1830,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":17209.7,\"CostToCustomer\":17209.7,\"BaseFareCal\":16431.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":16431.73,\"intOfferedFare\":16291.7,\"intPublishFare\":17091.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"165\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-07T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"165\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"96eb1-3a104-7da46-97211\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-06T15:03:48.878\",\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS112000436820\",\"FlightNumber\":\"SG-13\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-01-06T23:05\",\"LocalFromTime\":\"2023-01-06 23:05\",\"FromUTCTime\":\"2023-01-06T23:05\",\"LocalToTime\":\"2023-01-07 00:55\",\"ToUTCTime\":\"2023-01-07T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Sat, 07 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":17091.7,\"ApiResultIndex\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"96eb1-3a104-7da46-97211\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-06T15:03:48.878\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13750,\"Tax\":3341.7,\"YQTax\":0,\"OtherCharges\":1830,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":694,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":17091.7,\"PublishedFare\":17209.7,\"OfferedFare\":16291.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3341.7,\"BaseFareCal\":16431.73,\"BaseFare\":13750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":694,\"MFT\":2.7,\"OT\":1830,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"165\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-07T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6421084093_0BOMDXBSG13_83451945919602\",\"localFromDateTime\":\"2023-01-06 23:05\",\"localToDateTime\":\"2023-01-07 00:55\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"departure_date\":\"06\\/01\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BOM\",\"to\":\"DXB\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"sourceCityId\":18676,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"96eb1-3a104-7da46-97211\",\"from_city_\":\"1__BOM-DXB\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Dubai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BOM&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=06%2F01%2F2023&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"3\",\"EmailId\":\"rah2510@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9820805828\",\"FirstName\":\"Rahim\",\"LastName\":\"Bhimani\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1982-01-14\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-06-15-03-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"N00712345\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-01-01\",\"passporIssue\":\"2018-01-02\",\"CustomerMemberSysId\":\"2\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"548018\",\"TPSysId\":\"548019\",\"VersionId\":[\"143958\"],\"CustomerSysId\":\"306254\",\"TrxId\":\"43728\",\"FareBreakdownid\":[\"367946\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"13\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"15\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"15\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":17209.7},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"306254\",\"TPSysId\":\"548019\",\"MasterTPSysId\":\"548018\",\"ProposalID\":\"548019\\/V1\",\"InvoiceDate\":\"2023-01-06\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-06\",\"PaymentDate\":\"2023-01-06\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":17051.670000000002,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":17209.7,\"TotalDueAmount\":0,\"InvoiceValue\":17209.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DXB-SpiceJet SG-13\",\"ItemQty\":1,\"ItemRates\":16173.7,\"Total\":16173.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":17209.7,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":17051.670000000002,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-06 15:04:39'),(36,'2ac45-59c9b-32aac-678ad','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid2629031787-16345454\",\"name\":\"Hexa Aifa Stay\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_z.jpg\",\"sz\":\"XL\"}],\"tac\":{\"sc\":[{\"type\":\"URL\",\"info\":\"http:\\/\\/developer.ean.com\\/terms\\/en\\/\",\"label\":\"Supplier terms and conditions\"},{\"type\":\"URL\",\"info\":\"http:\\/\\/developer.ean.com\\/terms\\/agent\\/en\\/\",\"label\":\"Supplier terms and conditions for agent\"}]},\"des\":\"{\\\"amenities\\\":\\\"This hotel offers designated smoking areas.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Debit cards not accepted, Cash\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours).\\\",\\\"business_amenities\\\":\\\"Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Mumbai, Hexa Aifa Stay is within a 5-minute drive of MIDC Industrial Estate and Santacruz Electronic Export Processing Zone.  This hotel is 6 mi (9.6 km) from Juhu Beach and 2.4 mi (3.9 km) from Powai Lake.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Phoenix Market City Mall - 2 km \\/ 1.2 mi  Powai Lake - 3 km \\/ 1.8 mi  MIDC Industrial Estate - 3.1 km \\/ 1.9 mi  Santacruz Electronic Export Processing Zone - 3.3 km \\/ 2 mi  R City Mall - 3.7 km \\/ 2.3 mi  KidZania Mumbai - 4.1 km \\/ 2.6 mi  Indian Institute of Technology Bombay - 4.1 km \\/ 2.6 mi  Hiranandani Business Park - Powai - 4.1 km \\/ 2.6 mi  Sanjay Gandhi National Park - 4.8 km \\/ 3 mi  University of Mumbai - 6.5 km \\/ 4.1 mi  MMRDA Grounds - 7 km \\/ 4.4 mi  U.S. Consulate General - 7.2 km \\/ 4.5 mi  JioGarden - 7.3 km \\/ 4.5 mi  Andheri Sports Complex - 7.3 km \\/ 4.6 mi  Nanavati Super Speciality Hospital - 7.7 km \\/ 4.8 mi  The nearest major airport is Chhatrapati Shivaji International Airport (BOM) - 3.2 km \\/ 2 mi\\\",\\\"headline\\\":\\\"Near Phoenix Market City Mall\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"72.88973\",\"lt\":\"19.102448\"},\"ad\":{\"adr\":\"Andheri - Ghatkopar Main Road\",\"adr2\":\"Opp Peninsula Grand Hotel\",\"postalCode\":\"400072\",\"city\":{\"name\":\"Mumbai\"},\"state\":{\"code\":\"MH\",\"name\":\"Maharashtra\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"Mumbai\",\"cn\":\"India\"},\"fl\":[\"Free self parking\",\"Designated smoking areas\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-7977407986\"},\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"214822528_252198720_37310--1\",\"rc\":\"Standard Double Room\",\"rt\":\"Standard Double Room-1 Queen Bed - Package Deal\",\"srn\":\"Standard, Queen\",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1404.25,\"tfcs\":{\"TF\":1404.25,\"CMU\":6.19,\"TAF\":711.8,\"BF\":692.45,\"NF\":704.25},\"tafcs\":{\"TAF\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41}},\"pis\":[{\"day\":1,\"fc\":{\"CMU\":6.19,\"BF\":692.45,\"TAF\":711.8,\"TF\":1404.25,\"NF\":704.25},\"afc\":{\"TAF\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41}}}],\"fcs\":[\"Free self parking\",\"Free WiFi\"],\"checkInDate\":\"2023-01-17\",\"checkOutDate\":\"2023-01-18\",\"radi\":{\"rid\":\"214822528\"},\"op\":\"2\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\",\"Free WiFi\"]}]}}],\"id\":\"44_1_39012806\",\"tp\":1404.25,\"cnp\":{\"id\":\"214822528_252198720_37310--48788654\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-07T09:29:09.943\",\"tdt\":\"2023-01-14T18:00\",\"am\":0},{\"fdt\":\"2023-01-14T18:00\",\"tdt\":\"2023-01-17T12:00\",\"am\":686.26},{\"fdt\":\"2023-01-17T12:00\",\"tdt\":\"2023-01-18T23:59\",\"am\":686.26}]},\"ddt\":\"2023-01-14T18:00\",\"oai\":{\"sid\":\"44\"},\"ispr\":true,\"ipr\":true,\"omid\":\"1189916539\",\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1392.45}],\"uid\":\"16345454\",\"lhc\":\"125600\"},\"bookingId\":\"TJS209600437466\",\"query\":{\"checkinDate\":\"2023-01-17\",\"checkoutDate\":\"2023-01-18\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699261\",\"countryName\":\"INDIA\",\"cityName\":\"MUMBAI\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid2629031787\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1178}},\"hotelbookingid\":\"3\",\"SearchHotelTraceId\":\"2ac45-59c9b-32aac-678ad\",\"CustomerSession\":{\"bookingId\":\"2ac45-59c9b-32aac-678ad\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"9820805828\",\"traceId\":\"2ac45-59c9b-32aac-678ad\",\"leadEmail\":\"rah2510@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"rahim\",\"passenger-lastname-1\":\"bhimani\",\"passenger-panNumber-1\":\"AGFPB8770P\",\"paxType-2\":\"1\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Mr\",\"passenger-firstname-2\":\"sonoia\",\"passenger-lastname-2\":\"Bhimani\",\"passenger-panNumber-2\":\"AGFPB8770P\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"214822528_252198720_37310--1\",\"RoomCategory\":\"Standard Double Room\",\"RoomType\":\"Standard Double Room-1 Queen Bed - Package Deal\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1404.25,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1404.25,\"TotalRoomPrice\":1404.25,\"TotalFare\":1404.25,\"TotalBaseFare\":692.45,\"TotalNetFare\":704.25,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":6.19,\"BF\":692.45,\"TAF\":711.8,\"TF\":1404.25,\"NF\":704.25},\"afc\":{\"TAF\":{\"TSF\":73.14,\"MU\":700,\"SNP\":618.86,\"SBP\":613.12,\"TMF\":67.41,\"MFT\":1.8,\"MF\":10,\"SGP\":686.26,\"TTSF\":73.14,\"SRC\":0,\"SAC\":67.41}}}],\"PriceWithMarkup\":1404.25,\"arrMarkUps\":{\"HotelRoomPrice\":1404.25,\"pernightperroomprice\":1404.25,\"RoomPrice\":1404.25,\"withmarkupprice\":1404.25,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"44_1_39012806\",\"RoomTotalPrice\":1404.25,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2629031787-16345454\",\"HotemName\":\"Hexa Aifa Stay\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"This hotel offers designated smoking areas.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Debit cards not accepted, Cash\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours).\\\",\\\"business_amenities\\\":\\\"Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Mumbai, Hexa Aifa Stay is within a 5-minute drive of MIDC Industrial Estate and Santacruz Electronic Export Processing Zone.  This hotel is 6 mi (9.6 km) from Juhu Beach and 2.4 mi (3.9 km) from Powai Lake.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Phoenix Market City Mall - 2 km \\/ 1.2 mi  Powai Lake - 3 km \\/ 1.8 mi  MIDC Industrial Estate - 3.1 km \\/ 1.9 mi  Santacruz Electronic Export Processing Zone - 3.3 km \\/ 2 mi  R City Mall - 3.7 km \\/ 2.3 mi  KidZania Mumbai - 4.1 km \\/ 2.6 mi  Indian Institute of Technology Bombay - 4.1 km \\/ 2.6 mi  Hiranandani Business Park - Powai - 4.1 km \\/ 2.6 mi  Sanjay Gandhi National Park - 4.8 km \\/ 3 mi  University of Mumbai - 6.5 km \\/ 4.1 mi  MMRDA Grounds - 7 km \\/ 4.4 mi  U.S. Consulate General - 7.2 km \\/ 4.5 mi  JioGarden - 7.3 km \\/ 4.5 mi  Andheri Sports Complex - 7.3 km \\/ 4.6 mi  Nanavati Super Speciality Hospital - 7.7 km \\/ 4.8 mi  The nearest major airport is Chhatrapati Shivaji International Airport (BOM) - 3.2 km \\/ 2 mi\\\",\\\"headline\\\":\\\"Near Phoenix Market City Mall\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/f4e56189_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/7cb11c0a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/66b90e37_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/b30bb280_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9714de6f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/55662dbf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/9762b39e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/d5420e41_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/49ca058e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/bbd7cd47_z.jpg\",\"sz\":\"XL\",\"rids\":[\"214822528\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/e57d5c41_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/40000000\\/39020000\\/39012900\\/39012806\\/6fbdc354_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"72.88973\",\"lt\":\"19.102448\"},\"HotelAddress\":\"Andheri - Ghatkopar Main Road\",\"HotelCity\":\"Mumbai\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Free self parking\",\"Designated smoking areas\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-01-17\",\"checkoutDate\":\"2023-01-18\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699261\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"548670\",\"TPSysId\":\"548671\",\"VersionId\":\"1637316\",\"CustomerSysId\":\"306254\",\"TrxId\":\"43801\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null}','2023-01-07 09:29:31'),(40,'2c6f9-6ca16-209fc-1101b','{\"BookingData\":[{\"bookingId\":\"BKRS101000437540\",\"bookingId_TJ\":\"TJS101000437540\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-01-18T15:25\",\"LocalFromTime\":\"2023-01-18 15:25\",\"FromUTCTime\":\"2023-01-18T15:25\",\"LocalToTime\":\"2023-01-18 23:10\",\"ToUTCTime\":\"2023-01-18T23:10\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":465,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4633,\"PublishedFareTxt\":\"4,633\",\"ApiResultIndex\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2480,\"Tax\":2153,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4633,\"PublishedFare\":4348,\"OfferedFare\":3548,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85650426825478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2153,\"BaseFareCal\":3670.03,\"BaseFare\":2480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":128,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4348,\"CostToCustomer\":4348,\"BaseFareCal\":3670.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3670.03,\"intOfferedFare\":3548,\"intPublishFare\":4633,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-01-18T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-18T15:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":290,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"121\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T23:10\",\"SegFlightNumber\":\"I5-830\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-01-18T22:15\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"KMCB\",\"Price\":500,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2c6f9-6ca16-209fc-1101b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-07T15:54:45.349\",\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-18 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\":\"BKRS101000437540\",\"bookingId_TJ\":\"TJS101000437540\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-01-18T15:25\",\"LocalFromTime\":\"2023-01-18 15:25\",\"FromUTCTime\":\"2023-01-18T15:25\",\"LocalToTime\":\"2023-01-18 23:10\",\"ToUTCTime\":\"2023-01-18T23:10\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":465,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4633,\"ApiResultIndex\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"2c6f9-6ca16-209fc-1101b\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-07T15:54:45.349\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2480,\"Tax\":2153,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4633,\"PublishedFare\":4348,\"OfferedFare\":3548,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2153,\"BaseFareCal\":3670.03,\"BaseFare\":2480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":128,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-01-18T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-18T15:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":290,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"121\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T23:10\",\"SegFlightNumber\":\"I5-830\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-01-18T22:15\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-5182920848_0BOMJAII5678JAIDELI5830_85640396020369\",\"localFromDateTime\":\"2023-01-18 15:25\",\"localToDateTime\":\"2023-01-18 23:10\",\"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\",\"mytrip_city_to\":\"Delhi\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"18\\/01\\/2023\",\"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\":\"18\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-18\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"2c6f9-6ca16-209fc-1101b\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Delhi&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=18%2F01%2F2023&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"3\",\"EmailId\":\"rah2510@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9820805828\",\"FirstName\":\"Rahim\",\"LastName\":\"Bhimani\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-07-15-53-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"5\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"549222\",\"TPSysId\":\"549223\",\"VersionId\":[\"144481\"],\"CustomerSysId\":\"306254\",\"TrxId\":\"43842\",\"FareBreakdownid\":[\"368036\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"14\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"5\"],\"flight_booking_id\":[\"16\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"16\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4348},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"306254\",\"TPSysId\":\"549223\",\"MasterTPSysId\":\"549222\",\"ProposalID\":\"549223\\/V1\",\"InvoiceDate\":\"2023-01-07\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-07\",\"PaymentDate\":\"2023-01-07\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4225.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4348,\"TotalDueAmount\":0,\"InvoiceValue\":4348,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-AirAsia India I5-678\",\"ItemQty\":1,\"ItemRates\":3547.9999999999995,\"Total\":3547.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4348,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":4225.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-07 15:54:33'),(44,'7c469-dd375-c0cfb-612e3','{\"BookingData\":[{\"bookingId\":\"BKRS101000437787\",\"bookingId_TJ\":\"TJS101000437787\",\"FlightNumber\":\"I5-548\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-01-20T08:10\",\"LocalFromTime\":\"2023-01-20 08:10\",\"FromUTCTime\":\"2023-01-20T08:10\",\"LocalToTime\":\"2023-01-20 12:40\",\"ToUTCTime\":\"2023-01-20T12:40\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":90,\"LAYOVERDuration\":\"1h 30m\",\"FlyingMinutes\":270,\"DepartureDateTxt\":\"Fri, 20 Jan\",\"ArrivalDateTxt\":\"Fri, 20 Jan\",\"FlightDuration\":\"4h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"PublishedFareTxt\":\"5,778\",\"ApiResultIndex\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159013887285722\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5493,\"CostToCustomer\":5493,\"BaseFareCal\":4815.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4815.03,\"intOfferedFare\":4693,\"intPublishFare\":5778,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"192\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-01-20T09:20\",\"SegFlightNumber\":\"I5-548\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-20T08:10\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":70,\"GroundTime\":90,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"1h 30m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-01-20T12:40\",\"SegFlightNumber\":\"I5-319\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-01-20T10:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"192\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7c469-dd375-c0cfb-612e3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-08T12:17:28.809\",\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-20 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\":\"BKRS101000437787\",\"bookingId_TJ\":\"TJS101000437787\",\"FlightNumber\":\"I5-548\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:10\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-01-20T08:10\",\"LocalFromTime\":\"2023-01-20 08:10\",\"FromUTCTime\":\"2023-01-20T08:10\",\"LocalToTime\":\"2023-01-20 12:40\",\"ToUTCTime\":\"2023-01-20T12:40\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":90,\"LAYOVERDuration\":\"1h 30m\",\"FlyingMinutes\":270,\"DepartureDateTxt\":\"Fri, 20 Jan\",\"ArrivalDateTxt\":\"Fri, 20 Jan\",\"FlightDuration\":\"4h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"ApiResultIndex\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"7c469-dd375-c0cfb-612e3\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-08T12:17:28.809\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"192\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-01-20T09:20\",\"SegFlightNumber\":\"I5-548\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-20T08:10\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":70,\"GroundTime\":90,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"1h 30m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-01-20T12:40\",\"SegFlightNumber\":\"I5-319\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-01-20T10:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-8461914094_0DELLKOI5548LKOCCUI5319_159002918137693\",\"localFromDateTime\":\"2023-01-20 08:10\",\"localToDateTime\":\"2023-01-20 12:40\",\"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\",\"mytrip_city_to\":\"Kolkata\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"20\\/01\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl CCU\",\"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\":\"20\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-20\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"7c469-dd375-c0cfb-612e3\",\"from_city_\":\"1__DEL-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Kolkata&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU%2C+India&departure_date=20%2F01%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-08-12-16-54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"4\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"549579\",\"TPSysId\":\"549580\",\"VersionId\":[\"144695\"],\"CustomerSysId\":\"313217\",\"TrxId\":\"43885\",\"FareBreakdownid\":[\"368069\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"15\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"17\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"17\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5493},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"313217\",\"TPSysId\":\"549580\",\"MasterTPSysId\":\"549579\",\"ProposalID\":\"549580\\/V1\",\"InvoiceDate\":\"2023-01-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-08\",\"PaymentDate\":\"2023-01-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5370.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5493,\"TotalDueAmount\":0,\"InvoiceValue\":5493,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-CCU-AirAsia India I5-548\",\"ItemQty\":1,\"ItemRates\":4693,\"Total\":4693,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5493,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":5370.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-08 12:17:26'),(49,'178fe-fb376-15935-e97b4','{\"BookingData\":[{\"bookingId\":\"BKRS100700438316\",\"bookingId_TJ\":\"TJS100700438316\",\"FlightNumber\":\"G8-323\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2023-02-14T18:20\",\"LocalFromTime\":\"2023-02-14 18:20\",\"FromUTCTime\":\"2023-02-14T18:20\",\"LocalToTime\":\"2023-02-14 20:35\",\"ToUTCTime\":\"2023-02-14T20:35\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":158,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4355,\"PublishedFareTxt\":\"4,355\",\"ApiResultIndex\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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,\"CRF\":50,\"CRFT\":9,\"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)\",\"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\":1420,\"Tax\":2935,\"YQTax\":750,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4355,\"PublishedFare\":4188,\"OfferedFare\":3270,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-1335130501_0DELBOMG8323_250224844407761\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2935,\"BaseFareCal\":3410.03,\"BaseFare\":1420,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":114,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4188,\"CostToCustomer\":4188,\"BaseFareCal\":3410.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3410.03,\"intOfferedFare\":3270,\"intPublishFare\":4355,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"247\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T20:35\",\"SegFlightNumber\":\"G8-323\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-14T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":158,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"247\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"178fe-fb376-15935-e97b4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-09T13:37:39.767\",\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 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\":\"BKRS100700438316\",\"bookingId_TJ\":\"TJS100700438316\",\"FlightNumber\":\"G8-323\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2023-02-14T18:20\",\"LocalFromTime\":\"2023-02-14 18:20\",\"FromUTCTime\":\"2023-02-14T18:20\",\"LocalToTime\":\"2023-02-14 20:35\",\"ToUTCTime\":\"2023-02-14T20:35\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":158,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4355,\"ApiResultIndex\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"178fe-fb376-15935-e97b4\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-09T13:37:39.767\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1420,\"Tax\":2935,\"YQTax\":750,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4355,\"PublishedFare\":4188,\"OfferedFare\":3270,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2935,\"BaseFareCal\":3410.03,\"BaseFare\":1420,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":114,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"247\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T20:35\",\"SegFlightNumber\":\"G8-323\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-14T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":158,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-1335130501_4DELBOMG8323_250217708257523\",\"localFromDateTime\":\"2023-02-14 18:20\",\"localToDateTime\":\"2023-02-14 20: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\",\"mytrip_city_to\":\"Mumbai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"14\\/02\\/2023\",\"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\":\"14\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"178fe-fb376-15935-e97b4\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Mumbai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&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=14%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-09-13-36-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"550282\",\"TPSysId\":\"550283\",\"VersionId\":[\"144963\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"43963\",\"FareBreakdownid\":[\"368136\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"16\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"18\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"18\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4188},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2023-01-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-09\",\"PaymentDate\":\"2023-01-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4029.97,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4188,\"TotalDueAmount\":0,\"InvoiceValue\":4188,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Go First G8-323\",\"ItemQty\":1,\"ItemRates\":3151.9999999999995,\"Total\":3151.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4188,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":4029.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-09 13:38:11'),(53,'30800-3c8f2-d0004-f1cc8','{\"BookingData\":[{\"bookingId\":\"BKRS110100438627\",\"bookingId_TJ\":\"TJS110100438627\",\"FlightNumber\":\"UK-201\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2023-01-24T16:25\",\"LocalFromTime\":\"2023-01-24 16:25\",\"FromUTCTime\":\"2023-01-24T16:25\",\"LocalToTime\":\"2023-01-24 18:15\",\"ToUTCTime\":\"2023-01-24T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Tue, 24 Jan\",\"ArrivalDateTxt\":\"Tue, 24 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":12682.7,\"PublishedFareTxt\":\"12,683\",\"ApiResultIndex\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DXB\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8985,\"Tax\":3697.7,\"YQTax\":0,\"OtherCharges\":2346,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":454,\"CarrierMiscFee\":80,\"MUFee\":800,\"intPublishedFare\":12682.7,\"PublishedFare\":12800.7,\"OfferedFare\":11882.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-8385384078_0BOMDXBUK201_285520327840941\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":\"1\",\"TaxIN\":3697.7,\"BaseFareCal\":12022.73,\"BaseFare\":8985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":454,\"MFT\":2.7,\"OT\":2346,\"MU\":800,\"YR\":80,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":12800.7,\"CostToCustomer\":12800.7,\"BaseFareCal\":12022.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":12022.73,\"intOfferedFare\":11882.7,\"intPublishFare\":12682.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"868\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-24T18:15\",\"SegFlightNumber\":\"UK-201\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-24T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"868\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"30800-3c8f2-d0004-f1cc8\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-09T23:25:55.250\",\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS110100438627\",\"bookingId_TJ\":\"TJS110100438627\",\"FlightNumber\":\"UK-201\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:25\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2023-01-24T16:25\",\"LocalFromTime\":\"2023-01-24 16:25\",\"FromUTCTime\":\"2023-01-24T16:25\",\"LocalToTime\":\"2023-01-24 18:15\",\"ToUTCTime\":\"2023-01-24T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Tue, 24 Jan\",\"ArrivalDateTxt\":\"Tue, 24 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":12682.7,\"ApiResultIndex\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"30800-3c8f2-d0004-f1cc8\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-09T23:25:55.250\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8985,\"Tax\":3697.7,\"YQTax\":0,\"OtherCharges\":2346,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":454,\"CarrierMiscFee\":80,\"MUFee\":800,\"intPublishedFare\":12682.7,\"PublishedFare\":12800.7,\"OfferedFare\":11882.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3697.7,\"BaseFareCal\":12022.73,\"BaseFare\":8985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":454,\"MFT\":2.7,\"OT\":2346,\"MU\":800,\"YR\":80,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"868\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-01-24T18:15\",\"SegFlightNumber\":\"UK-201\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-24T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-8385384078_25BOMDXBUK201_285493566869303\",\"localFromDateTime\":\"2023-01-24 16:25\",\"localToDateTime\":\"2023-01-24 18:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"departure_date\":\"24\\/01\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BOM\",\"to\":\"DXB\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"sourceCityId\":18676,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"24\\/01\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-01-24\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"30800-3c8f2-d0004-f1cc8\",\"from_city_\":\"1__BOM-DXB\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Dubai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BOM&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=24%2F01%2F2023&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"3\",\"EmailId\":\"rah2510@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9820805828\",\"FirstName\":\"Rahim\",\"LastName\":\"Bhimani\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1950-01-11\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-09-23-25-46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"N0070002\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-01-16\",\"passporIssue\":\"2016-01-06\",\"CustomerMemberSysId\":\"6\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551140\",\"TPSysId\":\"551141\",\"VersionId\":[\"145370\"],\"CustomerSysId\":\"306254\",\"TrxId\":\"44046\",\"FareBreakdownid\":[\"368190\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"17\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"19\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"19\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":12800.7},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"306254\",\"TPSysId\":\"551141\",\"MasterTPSysId\":\"551140\",\"ProposalID\":\"551141\\/V1\",\"InvoiceDate\":\"2023-01-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-09\",\"PaymentDate\":\"2023-01-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":12642.67,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":12800.7,\"TotalDueAmount\":0,\"InvoiceValue\":12800.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DXB-Vistara UK-201\",\"ItemQty\":1,\"ItemRates\":11764.7,\"Total\":11764.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":12800.7,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":12642.67,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-09 23:26:21'),(60,'50c72-84a80-90171-904ea','{\"BookingData\":[{\"bookingId\":\"BKRS105600438729\",\"bookingId_TJ\":\"TJS105600438729\",\"FlightNumber\":\"6E-6034\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2023-02-08T05:00\",\"LocalFromTime\":\"2023-02-08 05:00\",\"FromUTCTime\":\"2023-02-08T05:00\",\"LocalToTime\":\"2023-02-08 06:35\",\"ToUTCTime\":\"2023-02-08T06:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4167,\"PublishedFareTxt\":\"4,167\",\"ApiResultIndex\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-AMD\":{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"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,\"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\":2001,\"Tax\":2166,\"YQTax\":0,\"OtherCharges\":789,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4167,\"PublishedFare\":4000,\"OfferedFare\":3082,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4888798274_0DELAMD6E6034_327549120829357\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2166,\"BaseFareCal\":3222.03,\"BaseFare\":2001,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":105,\"MFT\":72,\"OT\":789,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4000,\"CostToCustomer\":4000,\"BaseFareCal\":3222.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3222.03,\"intOfferedFare\":3082,\"intPublishFare\":4167,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"980\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-08T06:35\",\"SegFlightNumber\":\"6E-6034\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T05:00\",\"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\":\"05:00\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"980\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"50c72-84a80-90171-904ea\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:06:24.043\",\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 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\":\"BKRS105600438729\",\"bookingId_TJ\":\"TJS105600438729\",\"FlightNumber\":\"6E-6034\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2023-02-08T05:00\",\"LocalFromTime\":\"2023-02-08 05:00\",\"FromUTCTime\":\"2023-02-08T05:00\",\"LocalToTime\":\"2023-02-08 06:35\",\"ToUTCTime\":\"2023-02-08T06:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4167,\"ApiResultIndex\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"50c72-84a80-90171-904ea\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:06:24.043\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2001,\"Tax\":2166,\"YQTax\":0,\"OtherCharges\":789,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4167,\"PublishedFare\":4000,\"OfferedFare\":3082,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2166,\"BaseFareCal\":3222.03,\"BaseFare\":2001,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":105,\"MFT\":72,\"OT\":789,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"980\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-08T06:35\",\"SegFlightNumber\":\"6E-6034\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T05:00\",\"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\":\"05:00\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4888798274_0DELAMD6E6034_327530526622078\",\"localFromDateTime\":\"2023-02-08 05:00\",\"localToDateTime\":\"2023-02-08 06:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Ahmedabad\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"08\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt AMD\",\"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\":\"08\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"50c72-84a80-90171-904ea\",\"from_city_\":\"1__DEL-AMD\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Ahmedabad&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=AMD&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Ahmedabad%2C+IN+-+Sardar+Vallabh+Bhai+Patel+Intl+Arpt+AMD%2C+India&departure_date=08%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Sardar+Vallabh+Bhai+Patel+Intl+Arpt+AMD\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-11-05-40\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551259\",\"TPSysId\":\"551260\",\"VersionId\":[\"145425\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44078\",\"FareBreakdownid\":[\"368209\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"19\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"21\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"21\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4000},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551260\",\"MasterTPSysId\":\"551259\",\"ProposalID\":\"551260\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3841.97,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4000,\"TotalDueAmount\":0,\"InvoiceValue\":4000,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-AMD-IndiGo 6E-6034\",\"ItemQty\":1,\"ItemRates\":2963.9999999999995,\"Total\":2963.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4000,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":3841.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 11:06:12'),(61,'6e2ed-4b8ff-efce0-0e23e','{\"BookingData\":[{\"bookingId\":\"BKRS108000438725\",\"bookingId_TJ\":\"TJS108000438725\",\"FlightNumber\":\"I5-192\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:00\",\"ArrivalTime\":\"16:30\",\"TravelDate\":\"2023-02-02T10:00\",\"LocalFromTime\":\"2023-02-02 10:00\",\"FromUTCTime\":\"2023-02-02T10:00\",\"LocalToTime\":\"2023-02-02 16:30\",\"ToUTCTime\":\"2023-02-02T16:30\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Surat\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Thu, 02 Feb\",\"ArrivalDateTxt\":\"Thu, 02 Feb\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"PublishedFareTxt\":\"5,778\",\"ApiResultIndex\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-6827534393_0DELSTVI5192STVCCUI5195_327348960168857\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":5493,\"CostToCustomer\":5493,\"BaseFareCal\":4815.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4815.03,\"intOfferedFare\":4693,\"intPublishFare\":5778,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"952\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Surat Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Surat\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"STV\",\"destinationArrTime\":\"2023-02-02T13:00\",\"SegFlightNumber\":\"I5-192\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-02T10:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":105,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Surat\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"953\",\"originAirportName\":\"Surat Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Surat\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-02T16:30\",\"SegFlightNumber\":\"I5-195\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"STV\",\"originDepTime\":\"2023-02-02T14:45\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"16:30\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"MOCB\",\"Price\":500,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"GNCB\",\"Price\":500,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"952\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6e2ed-4b8ff-efce0-0e23e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-10T11:03:03.882\",\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-02 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\":\"BKRS108000438725\",\"bookingId_TJ\":\"TJS108000438725\",\"FlightNumber\":\"I5-192\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:00\",\"ArrivalTime\":\"16:30\",\"TravelDate\":\"2023-02-02T10:00\",\"LocalFromTime\":\"2023-02-02 10:00\",\"FromUTCTime\":\"2023-02-02T10:00\",\"LocalToTime\":\"2023-02-02 16:30\",\"ToUTCTime\":\"2023-02-02T16:30\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Surat\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Thu, 02 Feb\",\"ArrivalDateTxt\":\"Thu, 02 Feb\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5778,\"ApiResultIndex\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"6e2ed-4b8ff-efce0-0e23e\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-10T11:03:03.882\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3560,\"Tax\":2218,\"YQTax\":0,\"OtherCharges\":764,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5778,\"PublishedFare\":5493,\"OfferedFare\":4693,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2218,\"BaseFareCal\":4815.03,\"BaseFare\":3560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":182,\"MFT\":72,\"OT\":764,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"952\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Surat Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Surat\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"STV\",\"destinationArrTime\":\"2023-02-02T13:00\",\"SegFlightNumber\":\"I5-192\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-02T10:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":105,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Surat\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"953\",\"originAirportName\":\"Surat Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Surat\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-02T16:30\",\"SegFlightNumber\":\"I5-195\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"STV\",\"originDepTime\":\"2023-02-02T14:45\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"16:30\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-6827534393_1DELSTVI5192STVCCUI5195_327313766267977\",\"localFromDateTime\":\"2023-02-02 10:00\",\"localToDateTime\":\"2023-02-02 16:30\",\"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\",\"mytrip_city_to\":\"Kolkata\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"02\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl CCU\",\"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\":\"02\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-02\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6e2ed-4b8ff-efce0-0e23e\",\"from_city_\":\"1__DEL-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Kolkata&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU%2C+India&departure_date=02%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-11-02-32\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551251\",\"TPSysId\":\"551252\",\"VersionId\":[\"145423\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44077\",\"FareBreakdownid\":[\"368208\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"18\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"20\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"20\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5493},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551252\",\"MasterTPSysId\":\"551251\",\"ProposalID\":\"551252\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5370.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5493,\"TotalDueAmount\":0,\"InvoiceValue\":5493,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-CCU-AirAsia India I5-192\",\"ItemQty\":1,\"ItemRates\":4693,\"Total\":4693,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5493,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":5370.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 11:06:42'),(65,'4d360-202c1-27000-1e57c','{\"BookingData\":[{\"bookingId\":\"BKRS102600438749\",\"bookingId_TJ\":\"TJS102600438749\",\"FlightNumber\":\"6E-244\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"10:05\",\"TravelDate\":\"2023-02-09T04:00\",\"LocalFromTime\":\"2023-02-09 04:00\",\"FromUTCTime\":\"2023-02-09T04:00\",\"LocalToTime\":\"2023-02-09 10:05\",\"ToUTCTime\":\"2023-02-09T10:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5938,\"PublishedFareTxt\":\"5,938\",\"ApiResultIndex\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"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,\"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\":3553,\"Tax\":2385,\"YQTax\":0,\"OtherCharges\":928,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5938,\"PublishedFare\":5771,\"OfferedFare\":4853,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5438493363_0MAAAMD6E244AMDLKO6E6244_328237993019438\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2385,\"BaseFareCal\":4993.03,\"BaseFare\":3553,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":928,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5771,\"CostToCustomer\":5771,\"BaseFareCal\":4993.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4993.03,\"intOfferedFare\":4853,\"intPublishFare\":5938,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"156\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-09T06:20\",\"SegFlightNumber\":\"6E-244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-09T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":120,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"157\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-02-09T10:05\",\"SegFlightNumber\":\"6E-6244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-09T08:20\",\"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\":\"08:20\",\"strArrivalDtTime\":\"10:05\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"156\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d360-202c1-27000-1e57c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:17:52.914\",\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102600438749\",\"bookingId_TJ\":\"TJS102600438749\",\"FlightNumber\":\"6E-244\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"10:05\",\"TravelDate\":\"2023-02-09T04:00\",\"LocalFromTime\":\"2023-02-09 04:00\",\"FromUTCTime\":\"2023-02-09T04:00\",\"LocalToTime\":\"2023-02-09 10:05\",\"ToUTCTime\":\"2023-02-09T10:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5938,\"ApiResultIndex\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"4d360-202c1-27000-1e57c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-10T11:17:52.914\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3553,\"Tax\":2385,\"YQTax\":0,\"OtherCharges\":928,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5938,\"PublishedFare\":5771,\"OfferedFare\":4853,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2385,\"BaseFareCal\":4993.03,\"BaseFare\":3553,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":928,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"156\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-09T06:20\",\"SegFlightNumber\":\"6E-244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-09T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":120,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"157\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-02-09T10:05\",\"SegFlightNumber\":\"6E-6244\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-09T08:20\",\"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\":\"08:20\",\"strArrivalDtTime\":\"10:05\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5438493363_2MAAAMD6E244AMDLKO6E6244_328213424654507\",\"localFromDateTime\":\"2023-02-09 04:00\",\"localToDateTime\":\"2023-02-09 10:05\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Lucknow\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"departure_date\":\"09\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" IN - Amausi Arpt LKO\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"MAA\",\"to\":\"LKO\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"sourceCityId\":6000,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"4d360-202c1-27000-1e57c\",\"from_city_\":\"1__MAA-LKO\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai&mytrip_city_to=Lucknow&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=MAA&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination=Lucknow%2C+IN+-+Amausi+Arpt+LKO%2C+India&departure_date=09%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+MAA&to_mytrip_city=+IN+-+Amausi+Arpt+LKO\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-11-17-02\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551285\",\"TPSysId\":\"551286\",\"VersionId\":[\"145433\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44080\",\"FareBreakdownid\":[\"368212\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"20\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"22\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"22\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5771},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551286\",\"MasterTPSysId\":\"551285\",\"ProposalID\":\"551286\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5612.97,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5771,\"TotalDueAmount\":0,\"InvoiceValue\":5771,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-LKO-IndiGo 6E-244\",\"ItemQty\":1,\"ItemRates\":4735,\"Total\":4735,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5771,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":5612.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 11:17:34'),(70,'14cf4-a0a97-3147a-84c91','{\"BookingData\":[{\"bookingId\":\"BKRS118100438772\",\"bookingId_TJ\":\"TJS118100438772\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:25\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-15T19:25\",\"LocalFromTime\":\"2023-02-15 19:25\",\"FromUTCTime\":\"2023-02-15T19:25\",\"LocalToTime\":\"2023-02-15 22:05\",\"ToUTCTime\":\"2023-02-15T22:05\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":{\"ACF\":5000,\"CCF\":50,\"ACFT\":250,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18406,\"Tax\":6360.4,\"YQTax\":0,\"OtherCharges\":4193,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":532,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24766.4,\"PublishedFare\":24766.4,\"OfferedFare\":21999.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4628192957_1DXBDELSG6_328750255821061\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":\"1\",\"TaxIN\":6360.4,\"BaseFareCal\":23410.46,\"BaseFare\":18406,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":532,\"MFT\":5.4,\"OT\":4193,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-15T22:05\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T19:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"19:25\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB05\",\"Price\":3500,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB10\",\"Price\":7000,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNSW\",\"Price\":445,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"FPML\",\"Price\":445,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFCM\",\"Price\":495,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGML\",\"Price\":545,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"CHML\",\"Price\":545,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVML\",\"Price\":595,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNML\",\"Price\":595,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFVG\",\"Price\":595,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DBML\",\"Price\":595,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VCC2\",\"Price\":645,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC6\",\"Price\":645,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC5\",\"Price\":645,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC4\",\"Price\":645,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC2\",\"Price\":645,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC1\",\"Price\":645,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCNS\",\"Price\":645,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFNV\",\"Price\":645,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DNVL\",\"Price\":645,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-15 12:00\",\"localToDateTime\":\"2023-02-18 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS118100438772\",\"bookingId_TJ\":\"TJS118100438772\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:25\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-15T19:25\",\"LocalFromTime\":\"2023-02-15 19:25\",\"FromUTCTime\":\"2023-02-15T19:25\",\"LocalToTime\":\"2023-02-15 22:05\",\"ToUTCTime\":\"2023-02-15T22:05\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":24766.4,\"ApiResultIndex\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":{\"ACF\":5000,\"CCF\":50,\"ACFT\":250,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18406,\"Tax\":6360.4,\"YQTax\":0,\"OtherCharges\":4193,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":532,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24766.4,\"PublishedFare\":24766.4,\"OfferedFare\":21999.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4628192957_1DXBDELSG6_328750255821061\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":\"1\",\"TaxIN\":6360.4,\"BaseFareCal\":23410.46,\"BaseFare\":18406,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":532,\"MFT\":5.4,\"OT\":4193,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-15T22:05\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T19:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"19:25\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"384\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-18T15:45\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-18T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4628192957_7DELDXBSG5DXBDELSG6_328703717053204\",\"localFromDateTime\":\"2023-02-15 19:25\",\"localToDateTime\":\"2023-02-15 22:05\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKRS118100438772\",\"bookingId_TJ\":\"TJS118100438772\",\"FlightNumber\":\"SG-6\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"15:45\",\"TravelDate\":\"2023-02-18T11:10\",\"LocalFromTime\":\"2023-02-18 11:10\",\"FromUTCTime\":\"2023-02-18T11:10\",\"LocalToTime\":\"2023-02-18 15:45\",\"ToUTCTime\":\"2023-02-18T15:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 18 Feb\",\"ArrivalDateTxt\":\"Sat, 18 Feb\",\"FlightDuration\":\"4h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":{\"ACF\":5000,\"CCF\":50,\"ACFT\":250,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"384\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-18T15:45\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-18T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB05\",\"Price\":6159,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB10\",\"Price\":12318,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNSW\",\"Price\":445,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"FPML\",\"Price\":445,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFCM\",\"Price\":471,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGML\",\"Price\":545,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"CHML\",\"Price\":545,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVML\",\"Price\":595,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNML\",\"Price\":595,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFVG\",\"Price\":595,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DBML\",\"Price\":595,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VCC2\",\"Price\":645,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC6\",\"Price\":645,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC5\",\"Price\":645,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC4\",\"Price\":645,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC2\",\"Price\":645,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC1\",\"Price\":645,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCNS\",\"Price\":645,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFNV\",\"Price\":645,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DNVL\",\"Price\":645,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-15 12:00\",\"localToDateTime\":\"2023-02-18 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\",\"mytrip_city_to\":\"Dubai\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"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\":\"15\\/02\\/2023\",\"return_date\":\"18\\/02\\/2023\",\"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\":\"15\\/02\\/2023\",\"return_dates\":\"18\\/02\\/2023\",\"strDepatureDate\":\"2023-02-15\",\"strReturnDate\":\"2023-02-18\",\"SearchFlightTraceId\":\"14cf4-a0a97-3147a-84c91\",\"from_city_\":\"2__DEL-DXB-DEL\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi&mytrip_city_to=Dubai&class=2&adults=1&childs=0&infants=0&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=15%2F02%2F2023&return_date=18%2F02%2F2023&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1957-01-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-11-27-00\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551307\",\"TPSysId\":\"551308\",\"VersionId\":[\"145441\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44084\",\"FareBreakdownid\":[\"368216\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"21\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"23\",\"24\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"23\",\"24\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":24766.4},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551308\",\"MasterTPSysId\":\"551307\",\"ProposalID\":\"551308\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":24522.34,\"InvoiceStatus\":true,\"TotalSGST\":122.03,\"TotalCGST\":122.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":24766.4,\"TotalDueAmount\":0,\"InvoiceValue\":24766.4,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-DXB-SpiceJet SG-5\",\"ItemQty\":1,\"ItemRates\":23166.4,\"Total\":23166.4,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":24766.4,\"MarkupType\":\"\",\"Markup\":1355.94,\"TotalMarkup\":1355.94,\"SubTotal\":24522.34,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":244.06,\"SGST\":122.03,\"CGST\":122.03,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-DEL-SpiceJet SG-6\",\"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\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 11:27:55'),(74,'85ad4-bfe5a-534ed-18f80','{\"BookingData\":[{\"bookingId\":\"BKRS111300438798\",\"bookingId_TJ\":\"TJS111300438798\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-02-07T06:10\",\"LocalFromTime\":\"2023-02-07 06:10\",\"FromUTCTime\":\"2023-02-07T06:10\",\"LocalToTime\":\"2023-02-07 09:15\",\"ToUTCTime\":\"2023-02-07T09:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"ARF\":5000,\"CRF\":50,\"CRFT\":9,\"ARFT\":250}}},\"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\":{\"ACF\":6500,\"CCF\":50,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18315,\"Tax\":6524.4,\"YQTax\":0,\"OtherCharges\":4346,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":543,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24839.4,\"PublishedFare\":25075.4,\"OfferedFare\":21275.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1333304429_1DXBMAA6E66_329164594399379\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":6524.4,\"BaseFareCal\":23519.46,\"BaseFare\":18315,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":543,\"MFT\":5.4,\"OT\":4346,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"912\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T09:15\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS111300438798\",\"bookingId_TJ\":\"TJS111300438798\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-02-07T06:10\",\"LocalFromTime\":\"2023-02-07 06:10\",\"FromUTCTime\":\"2023-02-07T06:10\",\"LocalToTime\":\"2023-02-07 09:15\",\"ToUTCTime\":\"2023-02-07T09:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":25075.4,\"ApiResultIndex\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"ARF\":5000,\"CRF\":50,\"CRFT\":9,\"ARFT\":250}}},\"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\":{\"ACF\":6500,\"CCF\":50,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18315,\"Tax\":6524.4,\"YQTax\":0,\"OtherCharges\":4346,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":543,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":24839.4,\"PublishedFare\":25075.4,\"OfferedFare\":21275.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1333304429_1DXBMAA6E66_329164594399379\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":6524.4,\"BaseFareCal\":23519.46,\"BaseFare\":18315,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":543,\"MFT\":5.4,\"OT\":4346,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"912\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-07T09:15\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-07T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"913\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-11T01:25\",\"SegFlightNumber\":\"6E-66\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-10T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1333304429_0MAADXB6E65DXBMAA6E66_329140555208542\",\"localFromDateTime\":\"2023-02-07 06:10\",\"localToDateTime\":\"2023-02-07 09:15\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKRS111300438798\",\"bookingId_TJ\":\"TJS111300438798\",\"FlightNumber\":\"6E-66\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"01:25\",\"TravelDate\":\"2023-02-10T20:00\",\"LocalFromTime\":\"2023-02-10 20:00\",\"FromUTCTime\":\"2023-02-10T20:00\",\"LocalToTime\":\"2023-02-11 01:25\",\"ToUTCTime\":\"2023-02-11T01:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Sat, 11 Feb\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"MAA\",\"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:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"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\":{\"ARF\":5000,\"CRF\":50,\"CRFT\":9,\"ARFT\":250}}},\"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\":{\"ACF\":6500,\"CCF\":50,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"913\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-11T01:25\",\"SegFlightNumber\":\"6E-66\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-10T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"XBPA\",\"Price\":5183,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"XBPB\",\"Price\":7888,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"XBPC\",\"Price\":10141,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"XBPD\",\"Price\":20283,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"912\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-07 12:00\",\"localToDateTime\":\"2023-02-10 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"departure_date\":\"07\\/02\\/2023\",\"return_date\":\"10\\/02\\/2023\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"MAA\",\"to\":\"DXB\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"sourceCityId\":6000,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/02\\/2023\",\"return_dates\":\"10\\/02\\/2023\",\"strDepatureDate\":\"2023-02-07\",\"strReturnDate\":\"2023-02-10\",\"SearchFlightTraceId\":\"85ad4-bfe5a-534ed-18f80\",\"from_city_\":\"2__MAA-DXB-MAA\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Chennai&mytrip_city_to=Dubai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=MAA&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=07%2F02%2F2023&return_date=10%2F02%2F2023&from_mytrip_city=+IN+-+Chennai+Arpt+MAA&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1957-01-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-11-32-31\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551333\",\"TPSysId\":\"551334\",\"VersionId\":[\"145446\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44085\",\"FareBreakdownid\":[\"368217\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"22\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"25\",\"26\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"25\",\"26\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":25075.4},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551334\",\"MasterTPSysId\":\"551333\",\"ProposalID\":\"551334\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":24759.34,\"InvoiceStatus\":true,\"TotalSGST\":158.03,\"TotalCGST\":158.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":25075.4,\"TotalDueAmount\":0,\"InvoiceValue\":25075.4,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-DXB-IndiGo 6E-65\",\"ItemQty\":1,\"ItemRates\":23003.4,\"Total\":23003.4,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":25075.4,\"MarkupType\":\"\",\"Markup\":1755.94,\"TotalMarkup\":1755.94,\"SubTotal\":24759.34,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":316.06,\"SGST\":158.03,\"CGST\":158.03,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-MAA-IndiGo 6E-66\",\"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\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 11:32:59'),(78,'b514c-6ee16-ef2b3-e9b87','{\"BookingData\":[{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-5323\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2023-02-14T08:30\",\"LocalFromTime\":\"2023-02-14 08:30\",\"FromUTCTime\":\"2023-02-14T08:30\",\"LocalToTime\":\"2023-02-14 20:25\",\"ToUTCTime\":\"2023-02-14T20:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":805,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16149,\"Tax\":7641.4,\"YQTax\":0,\"OtherCharges\":5508,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":23790.4,\"PublishedFare\":24026.4,\"OfferedFare\":18943.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3580098682_1DXBCOK6E68COKBLR6E472_3135470103233\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":7641.4,\"BaseFareCal\":22470.46,\"BaseFare\":16149,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":498,\"MFT\":5.4,\"OT\":5508,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"487\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T10:15\",\"SegFlightNumber\":\"6E-5323\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-14T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-14T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-21 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-5323\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2023-02-14T08:30\",\"LocalFromTime\":\"2023-02-14 08:30\",\"FromUTCTime\":\"2023-02-14T08:30\",\"LocalToTime\":\"2023-02-14 20:25\",\"ToUTCTime\":\"2023-02-14T20:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":805,\"DepartureDateTxt\":\"Tue, 14 Feb\",\"ArrivalDateTxt\":\"Tue, 14 Feb\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":24026.4,\"ApiResultIndex\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16149,\"Tax\":7641.4,\"YQTax\":0,\"OtherCharges\":5508,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":23790.4,\"PublishedFare\":24026.4,\"OfferedFare\":18943.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3580098682_1DXBCOK6E68COKBLR6E472_3135470103233\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"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\":7641.4,\"BaseFareCal\":22470.46,\"BaseFare\":16149,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":498,\"MFT\":5.4,\"OT\":5508,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"487\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-14T10:15\",\"SegFlightNumber\":\"6E-5323\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-14T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-14T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-14T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"489\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-02-21T17:35\",\"SegFlightNumber\":\"6E-68\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-21T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"490\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-21T23:10\",\"SegFlightNumber\":\"6E-472\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-02-21T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3580098682_42BLRBOM6E5323BOMDXB6E61DXBCOK6E68COKBLR6E472_3113620059244\",\"localFromDateTime\":\"2023-02-14 08:30\",\"localToDateTime\":\"2023-02-14 20:25\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKRS111000439047\",\"bookingId_TJ\":\"TJS111000439047\",\"FlightNumber\":\"6E-68\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:10\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2023-02-21T12:10\",\"LocalFromTime\":\"2023-02-21 12:10\",\"FromUTCTime\":\"2023-02-21T12:10\",\"LocalToTime\":\"2023-02-21 23:10\",\"ToUTCTime\":\"2023-02-21T23:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":570,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"11h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BLR\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"489\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-02-21T17:35\",\"SegFlightNumber\":\"6E-68\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-02-21T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":235,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"490\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-21T23:10\",\"SegFlightNumber\":\"6E-472\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-02-21T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPA\",\"Price\":5183,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPB\",\"Price\":7888,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPC\",\"Price\":10141,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPD\",\"Price\":20283,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"VGTR\",\"Price\":642,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"NVTR\",\"Price\":722,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"487\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-14 12:00\",\"localToDateTime\":\"2023-02-21 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"BLR\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"departure_date\":\"14\\/02\\/2023\",\"return_date\":\"21\\/02\\/2023\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BLR\",\"to\":\"DXB\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"sourceCityId\":2262,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/02\\/2023\",\"return_dates\":\"21\\/02\\/2023\",\"strDepatureDate\":\"2023-02-14\",\"strReturnDate\":\"2023-02-21\",\"SearchFlightTraceId\":\"b514c-6ee16-ef2b3-e9b87\",\"from_city_\":\"2__BLR-DXB-BLR\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru&mytrip_city_to=Dubai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BLR&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=14%2F02%2F2023&return_date=21%2F02%2F2023&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1957-01-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-13-55-32\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551688\",\"TPSysId\":\"551689\",\"VersionId\":[\"145588\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44123\",\"FareBreakdownid\":[\"368250\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"23\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"27\",\"28\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"27\",\"28\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":24026.4},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551689\",\"MasterTPSysId\":\"551688\",\"ProposalID\":\"551689\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":23710.34,\"InvoiceStatus\":true,\"TotalSGST\":158.03,\"TotalCGST\":158.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":24026.4,\"TotalDueAmount\":0,\"InvoiceValue\":24026.4,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-DXB-IndiGo 6E-5323\",\"ItemQty\":1,\"ItemRates\":21954.4,\"Total\":21954.4,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":24026.4,\"MarkupType\":\"\",\"Markup\":1755.94,\"TotalMarkup\":1755.94,\"SubTotal\":23710.34,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":316.06,\"SGST\":158.03,\"CGST\":158.03,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-BLR-IndiGo 6E-68\",\"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\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 13:55:57'),(83,'b8a69-c0527-729b9-0f781','{\"BookingData\":[{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-966\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2023-02-08T05:40\",\"LocalFromTime\":\"2023-02-08 05:40\",\"FromUTCTime\":\"2023-02-08T05:40\",\"LocalToTime\":\"2023-02-09 01:55\",\"ToUTCTime\":\"2023-02-09T01:55\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":815,\"LAYOVERDuration\":\"13h 35m\",\"FlyingMinutes\":1125,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"20h 15m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20400,\"Tax\":5430.4,\"YQTax\":0,\"OtherCharges\":3292,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":503,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":25830.4,\"PublishedFare\":25830.4,\"OfferedFare\":25431.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2886871119_1BKKDEL6E86DELAMD6E2033_9634326559962\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":5430.4,\"BaseFareCal\":24474.46,\"BaseFare\":20400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":503,\"MFT\":5.4,\"OT\":3292,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"539\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-08T08:10\",\"SegFlightNumber\":\"6E-966\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-08T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":815,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"13h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"540\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-09T01:55\",\"SegFlightNumber\":\"6E-77\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-08T21:45\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:45\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPA\",\"Price\":3500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPB\",\"Price\":7000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPC\",\"Price\":10500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPD\",\"Price\":21000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"POHA\",\"Price\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"2023-02-15 12:00\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-966\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2023-02-08T05:40\",\"LocalFromTime\":\"2023-02-08 05:40\",\"FromUTCTime\":\"2023-02-08T05:40\",\"LocalToTime\":\"2023-02-09 01:55\",\"ToUTCTime\":\"2023-02-09T01:55\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":815,\"LAYOVERDuration\":\"13h 35m\",\"FlyingMinutes\":1125,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"20h 15m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":25830.4,\"ApiResultIndex\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20400,\"Tax\":5430.4,\"YQTax\":0,\"OtherCharges\":3292,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":503,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":25830.4,\"PublishedFare\":25830.4,\"OfferedFare\":25431.4,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2886871119_1BKKDEL6E86DELAMD6E2033_9634326559962\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"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\":5430.4,\"BaseFareCal\":24474.46,\"BaseFare\":20400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":503,\"MFT\":5.4,\"OT\":3292,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":244.06,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"539\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-08T08:10\",\"SegFlightNumber\":\"6E-966\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-08T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":815,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"13h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"540\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2023-02-09T01:55\",\"SegFlightNumber\":\"6E-77\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-08T21:45\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:45\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"541\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-15T20:20\",\"SegFlightNumber\":\"6E-86\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-15T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":270,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"542\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-16T01:25\",\"SegFlightNumber\":\"6E-2033\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2886871119_25AMDCCU6E966CCUBKK6E77BKKDEL6E86DELAMD6E2033_9619212069386\",\"localFromDateTime\":\"2023-02-08 05:40\",\"localToDateTime\":\"2023-02-09 01:55\",\"strSourceAirportCode\":\"BKK\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKRS115800439213\",\"bookingId_TJ\":\"TJS115800439213\",\"FlightNumber\":\"6E-86\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"01:25\",\"TravelDate\":\"2023-02-15T17:20\",\"LocalFromTime\":\"2023-02-15 17:20\",\"FromUTCTime\":\"2023-02-15T17:20\",\"LocalToTime\":\"2023-02-16 01:25\",\"ToUTCTime\":\"2023-02-16T01:25\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":200,\"LAYOVERDuration\":\"3h 20m\",\"FlyingMinutes\":575,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"8h 5m\",\"SourcePlaceSysId\":296,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"BKK\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"AMD-AMD\":{\"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\":{\"CRFT\":9,\"ARF\":5000,\"CRF\":50,\"ARFT\":250}}},\"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\":{\"CCF\":50,\"ACF\":6500,\"ACFT\":325,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"541\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-15T20:20\",\"SegFlightNumber\":\"6E-86\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2023-02-15T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":270,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"542\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-16T01:25\",\"SegFlightNumber\":\"6E-2033\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPA\",\"Price\":3895,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPB\",\"Price\":7789,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPC\",\"Price\":11684,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"XBPD\",\"Price\":23368,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"UPMA\",\"Price\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"VBIR\",\"Price\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"541\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"2023-02-15 12:00\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":296,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Ahmedabad\",\"mytrip_city_to\":\"Bangkok\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"AMD\",\"ContSysId_1\":\"101\",\"destination_city\":\"BKK\",\"ContSysId\":\"215\",\"source\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"destination\":\"Bangkok, TH - Suvarnabhumi Intl Arpt BKK, Thailand\",\"departure_date\":\"08\\/02\\/2023\",\"return_date\":\"15\\/02\\/2023\",\"from_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt AMD\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt BKK\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"AMD\",\"destinationCityAirportCode\":\"BKK\",\"from\":\"AMD\",\"to\":\"BKK\",\"sourceCityText\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"destinationCityText\":\"Bangkok, TH - Suvarnabhumi Intl Arpt BKK, Thailand\",\"sourceCityId\":296,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/02\\/2023\",\"return_dates\":\"15\\/02\\/2023\",\"strDepatureDate\":\"2023-02-08\",\"strReturnDate\":\"2023-02-15\",\"SearchFlightTraceId\":\"b8a69-c0527-729b9-0f781\",\"from_city_\":\"2__AMD-BKK-AMD\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Ahmedabad&mytrip_city_to=Bangkok&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=AMD&ContSysId_1=101&destination_city=BKK&ContSysId=215&source=Ahmedabad%2C+IN+-+Sardar+Vallabh+Bhai+Patel+Intl+Arpt+AMD%2C+India&destination=Bangkok%2C+TH+-+Suvarnabhumi+Intl+Arpt+BKK%2C+Thailand&departure_date=08%2F02%2F2023&return_date=15%2F02%2F2023&from_mytrip_city=+IN+-+Sardar+Vallabh+Bhai+Patel+Intl+Arpt+AMD&to_mytrip_city=+TH+-+Suvarnabhumi+Intl+Arpt+BKK\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1957-01-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-10-15-44-09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DTTY67578GHUIU\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-20\",\"passporIssue\":\"2018-01-20\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"551892\",\"TPSysId\":\"551893\",\"VersionId\":[\"145676\"],\"CustomerSysId\":\"305130\",\"TrxId\":\"44138\",\"FareBreakdownid\":[\"368261\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"24\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"29\",\"30\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"29\",\"30\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":25830.4},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"305130\",\"TPSysId\":\"551893\",\"MasterTPSysId\":\"551892\",\"ProposalID\":\"551893\\/V1\",\"InvoiceDate\":\"2023-01-10\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-10\",\"PaymentDate\":\"2023-01-10\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":25586.34,\"InvoiceStatus\":true,\"TotalSGST\":122.03,\"TotalCGST\":122.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":25830.4,\"TotalDueAmount\":0,\"InvoiceValue\":25830.4,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"AMD-BKK-IndiGo 6E-966\",\"ItemQty\":1,\"ItemRates\":24230.4,\"Total\":24230.4,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":25830.4,\"MarkupType\":\"\",\"Markup\":1355.94,\"TotalMarkup\":1355.94,\"SubTotal\":25586.34,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":244.06,\"SGST\":122.03,\"CGST\":122.03,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BKK-AMD-IndiGo 6E-86\",\"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\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-10 15:44:44'),(84,'d833a-ec347-09c04-d3ec4','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-847\",\"keyIndex\":2,\"SegFlightNumberArr\":\"6E-847\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8350485047_1MAABLR6E847_11428953988497\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"17:35\",\"TravelDate\":\"2023-02-06T16:40\",\"LocalFromTime\":\"2023-02-06 16:40\",\"FromUTCTime\":\"2023-02-06T16:40\",\"LocalToTime\":\"2023-02-06 17:35\",\"ToUTCTime\":\"2023-02-06T17:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":55,\"DepartureDateTxt\":\"Mon, 06 Feb\",\"ArrivalDateTxt\":\"Mon, 06 Feb\",\"FlightDuration\":\"0h 55m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2922,\"PublishedFareTxt\":\"2,922\",\"ApiResultIndex\":\"5-8350485047_1MAABLR6E847_11428953988104\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d833a-ec347-09c04-d3ec4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1002,\"Tax\":2205,\"YQTax\":0,\"OtherCharges\":933,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3207,\"PublishedFare\":2922,\"PublishedFarePerPax\":2922,\"OfferedFare\":2122,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8350485047_1MAABLR6E847_11428953988497\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2205,\"BaseFareCal\":2244.03,\"BaseFare\":1002,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":933,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2922,\"CostToCustomer\":2922,\"BaseFareCal\":2244.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2244.03,\"intOfferedFare\":2122,\"intPublishFare\":3207,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"01B\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-06T17:35\",\"SegFlightNumber\":\"6E-847\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-06T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"17:35\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-10 16:13:38'),(87,'28827-8469d-0ac5d-4aa0f','{\"FlightBookingData\":[{\"bookingId\":\"BKRS105600440557\",\"bookingId_TJ\":\"TJS105600440557\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4701,\"PublishedFareTxt\":\"4,701\",\"ApiResultIndex\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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)\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2201,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4701,\"PublishedFare\":4534,\"OfferedFare\":3616,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4303221503_0DELVNSG8404VNSBOMG8350_3683170733298\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2201,\"BaseFareCal\":3756.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4534,\"CostToCustomer\":4534,\"BaseFareCal\":3756.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3756.03,\"intOfferedFare\":3616,\"intPublishFare\":4701,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"592\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"593\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"592\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"28827-8469d-0ac5d-4aa0f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-11T16:54:31.090\",\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-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\":\"BKRS105600440557\",\"bookingId_TJ\":\"TJS105600440557\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4701,\"ApiResultIndex\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"28827-8469d-0ac5d-4aa0f\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-11T16:54:31.090\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2201,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4701,\"PublishedFare\":4534,\"OfferedFare\":3616,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2201,\"BaseFareCal\":3756.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"592\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"593\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-4303221503_19DELVNSG8404VNSBOMG8350_3672358872538\",\"localFromDateTime\":\"2023-02-09 10:20\",\"localToDateTime\":\"2023-02-09 15:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"31\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"31\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-11-16-54-05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-11-16-54-05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-11-16-54-05\",\"CustomerMemberSysId\":\"1\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"25\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Mumbai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\\/02\\/2023\",\"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\":\"09\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"28827-8469d-0ac5d-4aa0f\",\"from_city_\":\"1__DEL-BOM\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"553442\",\"TPSysId\":\"553443\",\"VersionId\":[\"146250\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44276\",\"FareBreakdownid\":[\"368362\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"31\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-11-16-54-05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"modified\":\"2023-01-11-16-54-05\",\"MobileNo\":\"8923963627\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"neha\",\"passenger-lastname-1\":\"kannojia\",\"dateofbirth-1\":\"24\\/01\\/1957\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"DTTY67578GHUIU\",\"passporIssue-1\":\"20\\/01\\/2018\",\"passportnoexpiry-1\":\"20\\/01\\/2025\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"28827-8469d-0ac5d-4aa0f\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"314869\",\"memberId\":[\"19395\"]}}}','2023-01-11 16:54:11'),(88,'b8e1c-10642-8c971-2bcec','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-821\",\"keyIndex\":169,\"SegFlightNumberArr\":\"I5-821 +1\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-1835461299_1MAABLRI5821BLRDELI51528_17738732652329\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"22:35\",\"ArrivalTime\":\"08:55\",\"TravelDate\":\"2023-02-09T22:35\",\"LocalFromTime\":\"2023-02-09 22:35\",\"FromUTCTime\":\"2023-02-09T22:35\",\"LocalToTime\":\"2023-02-10 08:55\",\"ToUTCTime\":\"2023-02-10T08:55\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":400,\"LAYOVERDuration\":\"6h 40m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3908,\"PublishedFareTxt\":\"3,908\",\"ApiResultIndex\":\"22-1835461299_1MAABLRI5821BLRDELI51528_17738732652329\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b8e1c-10642-8c971-2bcec\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1884,\"Tax\":2191,\"YQTax\":0,\"OtherCharges\":823,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":96,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4075,\"PublishedFare\":3908,\"PublishedFarePerPax\":3908,\"OfferedFare\":2990,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1835461299_1MAABLRI5821BLRDELI51528_17738732652329\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2191,\"BaseFareCal\":3130.03,\"BaseFare\":1884,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":96,\"MFT\":72,\"OT\":823,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":3908,\"CostToCustomer\":3908,\"BaseFareCal\":3130.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3130.03,\"intOfferedFare\":2990,\"intPublishFare\":4075,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"014\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-09T23:30\",\"SegFlightNumber\":\"I5-821\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-09T22:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":400,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"22:35\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"6h 40m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-10T08:55\",\"SegFlightNumber\":\"I5-1528\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-10T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:55\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-12 17:58:55'),(93,'28d98-c35ec-1aa3d-f625e','{\"BookingData\":[{\"bookingId\":\"BKRS103900442507\",\"bookingId_TJ\":\"TJS103900442507\",\"FlightNumber\":\"6E-6923\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:15\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2023-02-09T05:15\",\"LocalFromTime\":\"2023-02-09 05:15\",\"FromUTCTime\":\"2023-02-09T05:15\",\"LocalToTime\":\"2023-02-09 06:25\",\"ToUTCTime\":\"2023-02-09T06:25\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":12538,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3880,\"PublishedFareTxt\":\"3,880\",\"ApiResultIndex\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-HYD\":{\"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,\"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 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\":1480,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1049,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3880,\"PublishedFare\":3595,\"OfferedFare\":2795,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2701544862_0BLRHYD6E6923_20498446763381\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2400,\"BaseFareCal\":2917.03,\"BaseFare\":1480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":79,\"MFT\":72,\"OT\":1049,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3595,\"CostToCustomer\":3595,\"BaseFareCal\":2917.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2917.03,\"intOfferedFare\":2795,\"intPublishFare\":3880,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"549\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-02-09T06:25\",\"SegFlightNumber\":\"6E-6923\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"S\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T05:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:15\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"549\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"28d98-c35ec-1aa3d-f625e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-12T18:45:54.378\",\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"HYD\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":12538,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103900442507\",\"bookingId_TJ\":\"TJS103900442507\",\"FlightNumber\":\"6E-6923\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:15\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2023-02-09T05:15\",\"LocalFromTime\":\"2023-02-09 05:15\",\"FromUTCTime\":\"2023-02-09T05:15\",\"LocalToTime\":\"2023-02-09 06:25\",\"ToUTCTime\":\"2023-02-09T06:25\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":12538,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3880,\"ApiResultIndex\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"28d98-c35ec-1aa3d-f625e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-12T18:45:54.378\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1480,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1049,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3880,\"PublishedFare\":3595,\"OfferedFare\":2795,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2400,\"BaseFareCal\":2917.03,\"BaseFare\":1480,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":79,\"MFT\":72,\"OT\":1049,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"549\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-02-09T06:25\",\"SegFlightNumber\":\"6E-6923\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"S\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-09T05:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:15\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2701544862_0BLRHYD6E6923_20471577987325\",\"localFromDateTime\":\"2023-02-09 05:15\",\"localToDateTime\":\"2023-02-09 06:25\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"HYD\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":12538,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bengaluru\",\"mytrip_city_to\":\"Hyderabad\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"source_city\":\"BLR\",\"ContSysId_1\":\"101\",\"destination_city\":\"HYD\",\"ContSysId\":\"101\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destination\":\"Hyderabad, IN - Shamshabad Rajiv Gandhi Intl Arpt HYD, India\",\"departure_date\":\"09\\/02\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"to_mytrip_city\":\" IN - Shamshabad Rajiv Gandhi Intl Arpt HYD\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"HYD\",\"from\":\"BLR\",\"to\":\"HYD\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destinationCityText\":\"Hyderabad, IN - Shamshabad Rajiv Gandhi Intl Arpt HYD, India\",\"sourceCityId\":2262,\"destinationCityId\":12538,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"28d98-c35ec-1aa3d-f625e\",\"from_city_\":\"1__BLR-HYD\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bengaluru&mytrip_city_to=Hyderabad&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=BLR&ContSysId_1=101&destination_city=HYD&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Hyderabad%2C+IN+-+Shamshabad+Rajiv+Gandhi+Intl+Arpt+HYD%2C+India&departure_date=09%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city=+IN+-+Shamshabad+Rajiv+Gandhi+Intl+Arpt+HYD\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-12-18-45-39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"7\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"554908\",\"TPSysId\":\"554909\",\"VersionId\":[\"146894\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44408\",\"FareBreakdownid\":[\"368445\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"26\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"7\"],\"flight_booking_id\":[\"32\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"32\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3595},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2023-01-12\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-12\",\"PaymentDate\":\"2023-01-12\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3472.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3595,\"TotalDueAmount\":0,\"InvoiceValue\":3595,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-HYD-IndiGo 6E-6923\",\"ItemQty\":1,\"ItemRates\":2794.9999999999995,\"Total\":2794.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3595,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":3472.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-12 18:50:26'),(97,'d2ffc-d01fc-51e4e-14e6c','{\"BookingData\":[{\"bookingId\":\"BKRS108800442518\",\"bookingId_TJ\":\"TJS108800442518\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":66,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":27730,\"PublishedFareTxt\":\"27,730\",\"ApiResultIndex\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"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,\"ARF\":100,\"ARFT\":5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACFT\":87.5,\"ACF\":1750,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27445,\"OfferedFare\":26645,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3280553912_0DELVNSG8404VNSBOMG8350_21068988525945\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"BaseFareCal\":26767.03,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":27445,\"CostToCustomer\":27445,\"BaseFareCal\":26767.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":26767.03,\"intOfferedFare\":26645,\"intPublishFare\":27730,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"438\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d2ffc-d01fc-51e4e-14e6c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-12T18:55:24.919\",\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-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\":\"BKRS108800442518\",\"bookingId_TJ\":\"TJS108800442518\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-09T10:20\",\"LocalFromTime\":\"2023-02-09 10:20\",\"FromUTCTime\":\"2023-02-09T10:20\",\"LocalToTime\":\"2023-02-09 15:30\",\"ToUTCTime\":\"2023-02-09T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":66,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":27730,\"ApiResultIndex\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"d2ffc-d01fc-51e4e-14e6c\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-12T18:55:24.919\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27445,\"OfferedFare\":26645,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"BaseFareCal\":26767.03,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"438\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-09T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":66,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-3280553912_19DELVNSG8404VNSBOMG8350_21042779475371\",\"localFromDateTime\":\"2023-02-09 10:20\",\"localToDateTime\":\"2023-02-09 15:30\",\"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\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\\/02\\/2023\",\"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\":\"09\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d2ffc-d01fc-51e4e-14e6c\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Mumbai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&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=09%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"nehu                                              \",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-12-18-55-55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"8\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"554927\",\"TPSysId\":\"554928\",\"VersionId\":[\"146904\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44409\",\"FareBreakdownid\":[\"368446\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"27\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"33\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"33\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":27445},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"314869\",\"TPSysId\":\"554928\",\"MasterTPSysId\":\"554927\",\"ProposalID\":\"554928\\/V1\",\"InvoiceDate\":\"2023-01-12\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-12\",\"PaymentDate\":\"2023-01-12\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":27322.97,\"InvoiceStatus\":true,\"TotalSGST\":61.015,\"TotalCGST\":61.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":27445,\"TotalDueAmount\":0,\"InvoiceValue\":27445,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Go First G8-404\",\"ItemQty\":1,\"ItemRates\":26645,\"Total\":26645,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":27445,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":27322.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-12 18:56:57'),(98,'056c7-30fdc-4d7df-a7faa','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-887\",\"keyIndex\":156,\"SegFlightNumberArr\":\"AI-887\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-6621071234_83DELBOMAI887_21024360796283\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2023-02-07T07:00\",\"LocalFromTime\":\"2023-02-07 07:00\",\"FromUTCTime\":\"2023-02-07T07:00\",\"LocalToTime\":\"2023-02-07 09:15\",\"ToUTCTime\":\"2023-02-07T09:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6722,\"PublishedFareTxt\":\"6,722\",\"ApiResultIndex\":\"15-2-10-6621071234_83DELBOMAI887_21024360796283\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"056c7-30fdc-4d7df-a7faa\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4522,\"Tax\":2367,\"YQTax\":0,\"OtherCharges\":690,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":235,\"CarrierMiscFee\":170,\"MUFee\":800,\"intPublishedFare\":6889,\"PublishedFare\":6722,\"PublishedFarePerPax\":6722,\"OfferedFare\":5804,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-6621071234_83DELBOMAI887_21024360796283\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2367,\"BaseFareCal\":5944.03,\"BaseFare\":4522,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":235,\"MFT\":72,\"OT\":690,\"MU\":800,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":6722,\"CostToCustomer\":6722,\"BaseFareCal\":5944.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":5944.03,\"intOfferedFare\":5804,\"intPublishFare\":6889,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"04A\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-07T09:15\",\"SegFlightNumber\":\"AI-887\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-07T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"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:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-12 19:02:37'),(104,'35748-ec348-4bf25-156a4','{\"BookingData\":[{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2909\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-02-13T20:25\",\"LocalFromTime\":\"2023-02-13 20:25\",\"FromUTCTime\":\"2023-02-13T20:25\",\"LocalToTime\":\"2023-02-13 22:00\",\"ToUTCTime\":\"2023-02-13T22:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4016,\"PublishedFareTxt\":\"4,016\",\"ApiResultIndex\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-GOI\":{\"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,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 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\":1560,\"Tax\":2456,\"YQTax\":0,\"OtherCharges\":1098,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":86,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4016,\"PublishedFare\":3731,\"OfferedFare\":2931,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8976154047_0BLRGOISG2909_96531332619395\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2456,\"BaseFareCal\":3053.03,\"BaseFare\":1560,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":86,\"MFT\":72,\"OT\":1098,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3731,\"CostToCustomer\":3731,\"BaseFareCal\":3053.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3053.03,\"intOfferedFare\":2931,\"intPublishFare\":4016,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"954\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-13T22:00\",\"SegFlightNumber\":\"SG-2909\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-13 12:00\",\"localToDateTime\":\"2023-02-16 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2909\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-02-13T20:25\",\"LocalFromTime\":\"2023-02-13 20:25\",\"FromUTCTime\":\"2023-02-13T20:25\",\"LocalToTime\":\"2023-02-13 22:00\",\"ToUTCTime\":\"2023-02-13T22:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8018,\"ApiResultIndex\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3078,\"Tax\":4940,\"YQTax\":0,\"OtherCharges\":2226,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":8018,\"PublishedFare\":7448,\"OfferedFare\":5848,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4940,\"BaseFareCal\":6092.06,\"BaseFare\":3078,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":170,\"MFT\":144,\"OT\":2226,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-13T22:00\",\"SegFlightNumber\":\"SG-2909\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"955\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-16T23:50\",\"SegFlightNumber\":\"SG-2910\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-16T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"23:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8976154047_0BLRGOISG2909_96507058909892\",\"localFromDateTime\":\"2023-02-13 20:25\",\"localToDateTime\":\"2023-02-13 22:00\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS106900443130\",\"bookingId_TJ\":\"TJS106900443130\",\"FlightNumber\":\"SG-2910\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:20\",\"ArrivalTime\":\"23:50\",\"TravelDate\":\"2023-02-16T22:20\",\"LocalFromTime\":\"2023-02-16 22:20\",\"FromUTCTime\":\"2023-02-16T22:20\",\"LocalToTime\":\"2023-02-16 23:50\",\"ToUTCTime\":\"2023-02-16T23:50\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":13,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4002,\"PublishedFareTxt\":\"4,002\",\"ApiResultIndex\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-GOI\":{\"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,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"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\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 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\":1518,\"Tax\":2484,\"YQTax\":0,\"OtherCharges\":1128,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":84,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4002,\"PublishedFare\":3717,\"OfferedFare\":2917,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8976154047_1GOIBLRSG2910_96531333633841\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2484,\"BaseFareCal\":3039.03,\"BaseFare\":1518,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":84,\"MFT\":72,\"OT\":1128,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":3717,\"CostToCustomer\":3717,\"BaseFareCal\":3039.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3039.03,\"intOfferedFare\":2917,\"intPublishFare\":4002,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"955\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-16T23:50\",\"SegFlightNumber\":\"SG-2910\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-16T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"23:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGSW\",\"Price\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"FPML\",\"Price\":395,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVSW\",\"Price\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFCM\",\"Price\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"CHML\",\"Price\":495,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-13T15:53:07.262\",\"strTraceId\":\"4-8976154047_0GOIBLRSG2910_96507057765775\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-13 12:00\",\"localToDateTime\":\"2023-02-16 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru\",\"mytrip_city_to\":\"Goa In\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"BLR\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destination\":\"Goa In, IN - Dabolim Arpt GOI, India\",\"departure_date\":\"13\\/02\\/2023\",\"return_date\":\"16\\/02\\/2023\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"to_mytrip_city\":\" IN - Dabolim Arpt GOI\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"BLR\",\"to\":\"GOI\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt GOI, India\",\"sourceCityId\":2262,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"13\\/02\\/2023\",\"return_dates\":\"16\\/02\\/2023\",\"strDepatureDate\":\"2023-02-13\",\"strReturnDate\":\"2023-02-16\",\"SearchFlightTraceId\":\"35748-ec348-4bf25-156a4\",\"from_city_\":\"2__BLR-GOI-BLR\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru&mytrip_city_to=Goa+In&class=2&adults=1&childs=0&infants=0&FareTypes=REGULAR&source_city=BLR&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Goa+In%2C+IN+-+Dabolim+Arpt+GOI%2C+India&departure_date=13%2F02%2F2023&return_date=16%2F02%2F2023&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city=+IN+-+Dabolim+Arpt+GOI\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"nehu                                              \",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-13-15-52-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"8\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"555657\",\"TPSysId\":\"555658\",\"VersionId\":[\"147179\",\"147180\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"44489\",\"FareBreakdownid\":[\"368500\",\"368501\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"30\"],[\"31\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"36\",\"37\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"36\",\"37\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":7448},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"314869\",\"TPSysId\":\"555658\",\"MasterTPSysId\":\"555657\",\"ProposalID\":\"555658\\/V1\",\"InvoiceDate\":\"2023-01-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-13\",\"PaymentDate\":\"2023-01-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":7203.94,\"InvoiceStatus\":true,\"TotalSGST\":122.03,\"TotalCGST\":122.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":7448,\"TotalDueAmount\":0,\"InvoiceValue\":7448,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-GOI-SpiceJet SG-2909\",\"ItemQty\":1,\"ItemRates\":2930.9999999999995,\"Total\":2930.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3731,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":3608.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"GOI-BLR-SpiceJet SG-2910\",\"ItemQty\":1,\"ItemRates\":2916.9999999999995,\"Total\":2916.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3717,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":3594.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-13 15:53:44'),(108,'25c83-8b1b1-36e51-082d8','{\"BookingData\":[{\"bookingId\":\"BKRS115500445251\",\"bookingId_TJ\":\"TJS115500445251\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-02-08T07:20\",\"LocalFromTime\":\"2023-02-08 07:20\",\"FromUTCTime\":\"2023-02-08T07:20\",\"LocalToTime\":\"2023-02-09 00:55\",\"ToUTCTime\":\"2023-02-09T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":810,\"LAYOVERDuration\":\"13h 30m\",\"FlyingMinutes\":1145,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"17h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7253.7,\"PublishedFareTxt\":\"7,254\",\"ApiResultIndex\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":{\"ARF\":4000,\"CRF\":50,\"CRFT\":9,\"ARFT\":200}}},\"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\":5400,\"Tax\":1853.7,\"YQTax\":0,\"OtherCharges\":762,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":7253.7,\"PublishedFare\":7371.7,\"OfferedFare\":6453.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7005404189_0DELBOMSG8701BOMDXBSG13_56414759441775\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1853.7,\"BaseFareCal\":6593.73,\"BaseFare\":5400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":274,\"MFT\":2.7,\"OT\":762,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":7371.7,\"CostToCustomer\":7371.7,\"BaseFareCal\":6593.73,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":6593.73,\"intOfferedFare\":6453.7,\"intPublishFare\":7253.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"CommisionPass\":0,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"784\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-08T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":810,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"13h 30m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"785\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-09T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-08T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"VGSW\",\"Price\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"NVSW\",\"Price\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"784\",\"Code\":\"LCNS\",\"Price\":545,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25c83-8b1b1-36e51-082d8\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-17T10:58:47.678\",\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS115500445251\",\"bookingId_TJ\":\"TJS115500445251\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"00:55\",\"TravelDate\":\"2023-02-08T07:20\",\"LocalFromTime\":\"2023-02-08 07:20\",\"FromUTCTime\":\"2023-02-08T07:20\",\"LocalToTime\":\"2023-02-09 00:55\",\"ToUTCTime\":\"2023-02-09T00:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":810,\"LAYOVERDuration\":\"13h 30m\",\"FlyingMinutes\":1145,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"17h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7253.7,\"ApiResultIndex\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"25c83-8b1b1-36e51-082d8\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-17T10:58:47.678\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5400,\"Tax\":1853.7,\"YQTax\":0,\"OtherCharges\":762,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":7253.7,\"PublishedFare\":7371.7,\"OfferedFare\":6453.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1853.7,\"BaseFareCal\":6593.73,\"BaseFare\":5400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":274,\"MFT\":2.7,\"OT\":762,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"784\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-08T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":810,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"13h 30m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"785\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-02-09T00:55\",\"SegFlightNumber\":\"SG-13\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-08T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"00:55\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7005404189_10DELBOMSG8701BOMDXBSG13_56390748773735\",\"localFromDateTime\":\"2023-02-08 07:20\",\"localToDateTime\":\"2023-02-09 00:55\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Dubai\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\\/02\\/2023\",\"return_date\":\"\",\"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\":\"08\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"25c83-8b1b1-36e51-082d8\",\"from_city_\":\"1__DEL-DXB\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Dubai&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+DXB%2C+United+Arab+Emirates&departure_date=08%2F02%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumai@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":\"1985-01-25\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-17-10-58-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"HVHFU558768GHF\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-01-23\",\"passporIssue\":\"2018-01-23\",\"CustomerSysId\":\"5\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"558777\",\"TPSysId\":\"558778\",\"VersionId\":[\"148799\"],\"CustomerSysId\":\"317316\",\"TrxId\":\"44797\",\"FareBreakdownid\":[\"368728\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"32\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"5\",\"CustomerMemSysId\":[\"5\"],\"flight_booking_id\":[\"38\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"38\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":7371.7},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"317316\",\"TPSysId\":\"558778\",\"MasterTPSysId\":\"558777\",\"ProposalID\":\"558778\\/V1\",\"InvoiceDate\":\"2023-01-17\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-17\",\"PaymentDate\":\"2023-01-17\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":7213.67,\"InvoiceStatus\":true,\"TotalSGST\":79.015,\"TotalCGST\":79.015,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":7371.7,\"TotalDueAmount\":0,\"InvoiceValue\":7371.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-DXB-SpiceJet SG-8701\",\"ItemQty\":1,\"ItemRates\":6335.7,\"Total\":6335.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":7371.7,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":7213.67,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-17 10:59:30'),(109,'6909a-88472-ddbf0-bdbb4','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid5277852734-16348407\",\"name\":\"Hotel lahorimal Deluxe Paharganj\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]}],\"des\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms feature showers with rainfall showerheads. Housekeeping is provided daily, and rollaway\\/extra beds (surcharge) can be requested.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards not accepted, Cash not accepted, Discover, American Express, JCB International, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s 24-hour room service.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a 24-hour front desk and an elevator.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel lahorimal Deluxe Paharganj is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.3 mi (3.7 km) from Chandni Chowk and 3.4 mi (5.4 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.3 km \\/ 0.8 mi  Palika Bazaar - 1.5 km \\/ 0.9 mi  Lady Hardinge Medical College - 1.7 km \\/ 1 mi  Kasturba Gandhi Marg - 1.7 km \\/ 1.1 mi  Gole Market - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Jantar Mantar - 2.1 km \\/ 1.3 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Ajmal Khan Road - 2.5 km \\/ 1.6 mi  Gurudwara Bangla Sahib - 2.6 km \\/ 1.6 mi  Laxminarayan Temple - 2.7 km \\/ 1.7 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.7 km \\/ 2.3 mi  Supreme Court - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"77.2179\",\"lt\":\"28.6433\"},\"ad\":{\"adr\":\"55 Amrit Kaur Market\",\"adr2\":\"Opposite Paharganj Railway Station.\",\"postalCode\":\"110055\",\"city\":{\"name\":\"New Delhi\"},\"state\":{\"name\":\"Delhi\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"New Delhi\",\"sn\":\"Delhi\",\"cn\":\"India\"},\"fl\":[\"Elevator\",\"Non Smoking\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-8700718532\"},\"ht\":[],\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"Only registered guests are allowed in the guestrooms. \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Rollaway bed fee: INR 500.0 per night             The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"218161164_274223899_37316--1\",\"rc\":\"Deluxe Room-1 Double Bed - Package Deal\",\"rt\":\"Deluxe Room-1 Double Bed - Package Deal\",\"srn\":\"Deluxe, Double\",\"adt\":1,\"chd\":0,\"des\":\"1 Double Bed120 sq feet Layout - Bedroom Internet - Free WiFi Food & Drink - 24-hour room serviceBathroom - Private bathroom, shower, and rainfall showerheadPractical - Rollaway\\/extra beds available on requestComfort - Daily housekeepingNeed to Know - No cribs (infant beds) availableNon-Smoking\",\"mb\":\"ROOM ONLY\",\"tp\":1488.53,\"tfcs\":{\"BF\":776.73,\"TAF\":711.8,\"CMU\":0,\"TF\":1488.53,\"NF\":788.53},\"tafcs\":{\"TAF\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}},\"pis\":[{\"day\":1,\"fc\":{\"BF\":776.73,\"CMU\":0,\"TAF\":711.8,\"TF\":1488.53,\"NF\":788.53},\"afc\":{\"TAF\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}}}],\"fcs\":[\"Free WiFi\"],\"checkInDate\":\"2023-02-14\",\"checkOutDate\":\"2023-02-15\",\"radi\":{\"rid\":\"218161164\",\"mga\":2,\"maa\":2,\"mca\":1,\"bds\":[{\"bt\":\"FullBed\",\"bd\":\"1 Double Bed\",\"bs\":\"Full\",\"bc\":1}],\"ar\":{\"asm\":\"11\",\"asf\":\"120\"}},\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free WiFi\"]}]}}],\"id\":\"42_6_33934056\",\"tp\":1488.53,\"cnp\":{\"id\":\"218161164_274223899_37316--48788660\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-17T11:27:08.265\",\"tdt\":\"2023-02-11T18:00\",\"am\":0},{\"fdt\":\"2023-02-11T18:00\",\"tdt\":\"2023-02-14T12:00\",\"am\":776.73},{\"fdt\":\"2023-02-14T12:00\",\"tdt\":\"2023-02-15T23:59\",\"am\":776.73}]},\"ddt\":\"2023-02-11T18:00\",\"oai\":{\"sid\":\"42\"},\"ispr\":true,\"ipr\":true,\"omid\":\"-289059610\",\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1476.73}],\"uid\":\"16348407\",\"lhc\":\"186282\"},\"bookingId\":\"TJS202100445312\",\"query\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"countryName\":\"INDIA\",\"cityName\":\"DELHI\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid5277852734\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1075}},\"hotelbookingid\":\"4\",\"SearchHotelTraceId\":\"6909a-88472-ddbf0-bdbb4\",\"CustomerSession\":{\"bookingId\":\"6909a-88472-ddbf0-bdbb4\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"6909a-88472-ddbf0-bdbb4\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"7\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"neha\",\"passenger-lastname-1\":\"kannojia\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"218161164_274223899_37316--1\",\"RoomCategory\":\"Deluxe Room-1 Double Bed - Package Deal\",\"RoomType\":\"Deluxe Room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1488.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1488.53,\"TotalRoomPrice\":1488.53,\"TotalFare\":1488.53,\"TotalBaseFare\":776.73,\"TotalNetFare\":788.53,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":776.73,\"CMU\":0,\"TAF\":711.8,\"TF\":1488.53,\"NF\":788.53},\"afc\":{\"TAF\":{\"MU\":700,\"MF\":10,\"SRC\":0,\"MFT\":1.8,\"TSF\":80.28,\"SAC\":89.06,\"TMF\":89.06,\"SGP\":776.73,\"TTSF\":80.28,\"SBP\":696.45,\"SNP\":687.67}}}],\"PriceWithMarkup\":1488.53,\"arrMarkUps\":{\"HotelRoomPrice\":1488.53,\"pernightperroomprice\":1488.53,\"RoomPrice\":1488.53,\"withmarkupprice\":1488.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"42_6_33934056\",\"RoomTotalPrice\":1488.53,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid5277852734-16348407\",\"HotemName\":\"Hotel Lahorimal Deluxe Paharganj\",\"HotelDescription\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 30 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms feature showers with rainfall showerheads. Housekeeping is provided daily, and rollaway\\/extra beds (surcharge) can be requested.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards not accepted, Cash not accepted, Discover, American Express, JCB International, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s 24-hour room service.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a 24-hour front desk and an elevator.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel lahorimal Deluxe Paharganj is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.3 mi (3.7 km) from Chandni Chowk and 3.4 mi (5.4 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.3 km \\/ 0.8 mi  Palika Bazaar - 1.5 km \\/ 0.9 mi  Lady Hardinge Medical College - 1.7 km \\/ 1 mi  Kasturba Gandhi Marg - 1.7 km \\/ 1.1 mi  Gole Market - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Jantar Mantar - 2.1 km \\/ 1.3 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Ajmal Khan Road - 2.5 km \\/ 1.6 mi  Gurudwara Bangla Sahib - 2.6 km \\/ 1.6 mi  Laxminarayan Temple - 2.7 km \\/ 1.7 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.7 km \\/ 2.3 mi  Supreme Court - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/351abeea_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/38484564_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36961506_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/62f856a1_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/09436627_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/540085ad_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/ee070e68_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/11bed466_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/44cd38f2_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9715dc63_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/458714c6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161165\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/75307ebc_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/36e66cd5_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a2b78ebf_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/a4221f00_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/daf75676_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161164\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/8399ff0a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161167\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/3e389265_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/9d03ad94_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/6ce4357f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/34000000\\/33940000\\/33934100\\/33934056\\/667aeb90_z.jpg\",\"sz\":\"XL\",\"rids\":[\"218161168\",\"218161165\",\"218161164\",\"218161167\",\"218161166\"]}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.2179\",\"lt\":\"28.6433\"},\"HotelAddress\":\"55 Amrit Kaur Market\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Elevator\",\"Non Smoking\",\"24-hour front desk\",\"Wheelchair accessible \\u2013 no\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"558850\",\"TPSysId\":\"558851\",\"VersionId\":\"1663731\",\"CustomerSysId\":\"305130\",\"TrxId\":\"44806\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null}','2023-01-17 11:27:20'),(110,'5f56c-0e1ab-39f6d-249de','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid1429248367-4686348348\",\"name\":\"THE HOSTELLER AGRA\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\",\"url\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\"}],\"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>\",\"rt\":3,\"gl\":{\"ln\":\"78.05028\",\"lt\":\"27.1670742\"},\"ad\":{\"adr\":\"Paktola\",\"city\":{\"name\":\"AGRA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"pt\":\"HOTEL\",\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )_1_0\",\"rc\":\"1 Person in 6-Bed Dormitory - Mixed\",\"rt\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1119.3,\"tfcs\":{\"TAF\":711.8,\"BF\":407.5,\"TF\":1119.3,\"NF\":419.3},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"TAF\":711.8,\"BF\":407.5,\"TF\":1119.3,\"NF\":419.3},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10}}}],\"checkInDate\":\"2023-02-14\",\"checkOutDate\":\"2023-02-15\"}],\"id\":\"5_1_63c67861ead551f6b2d1e19b\",\"tp\":1119.3,\"cnp\":{\"id\":\"5_1_63c67861ead551f6b2d1e19b\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-01-17T15:59:28.622\",\"tdt\":\"2023-02-03T18:00\",\"am\":0},{\"fdt\":\"2023-02-03T18:00\",\"tdt\":\"2023-02-14T12:00\",\"am\":407.5},{\"fdt\":\"2023-02-14T12:00\",\"tdt\":\"2023-02-15T23:59\",\"am\":407.5}]},\"ddt\":\"2023-02-03T18:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Child and extra bed policy :  Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.Children -year(s) must use an extra bed.Guests over  years old are considered as an adults.Extra beds are depend on the room you choose,please check the individual room policy for more details.\"}],\"oai\":{\"sid\":\"5\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1062.12}]},\"bookingId\":\"TJS209000445805\",\"query\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid1429248367\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1165}},\"hotelbookingid\":\"6\",\"SearchHotelTraceId\":\"5f56c-0e1ab-39f6d-249de\",\"CustomerSession\":{\"bookingId\":\"5f56c-0e1ab-39f6d-249de\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"5f56c-0e1ab-39f6d-249de\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"7\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )_1_0\",\"RoomCategory\":\"1 Person in 6-Bed Dormitory - Mixed\",\"RoomType\":\"Single-1 Person In 6-Bed Dormitory - Mixed-1- Benefit : ( Parking,Free WiFi )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1119.3,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1119.3,\"TotalRoomPrice\":1119.3,\"TotalFare\":1119.3,\"TotalBaseFare\":407.5,\"TotalNetFare\":419.3,\"TotalTaxFare\":711.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TAF\":711.8,\"BF\":407.5,\"TF\":1119.3,\"NF\":419.3},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":700,\"SGP\":407.5,\"SBP\":407.5,\"SNP\":407.5,\"MF\":10}}}],\"PriceWithMarkup\":1119.3,\"arrMarkUps\":{\"HotelRoomPrice\":1119.3,\"pernightperroomprice\":1119.3,\"RoomPrice\":1119.3,\"withmarkupprice\":1119.3,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1}}],\"RoomId\":\"5_1_63c67861ead551f6b2d1e19b\",\"RoomTotalPrice\":1119.3,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid1429248367-4686348348\",\"HotemName\":\"THE HOSTELLER AGRA\",\"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\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\",\"url\":\"http:\\/\\/tms.tripjack.com\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9waXg4LmFnb2RhLm5ldC9ob3RlbEltYWdlcy8zNTA1NDIzMS8wLzBhNjA1OWYxOTQ0ZGZjZDI4OTRiMWZlM2RlZTk4NTI3LmpwZz9jZT0wJnM9MzEyeA==\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05028\",\"lt\":\"27.1670742\"},\"HotelAddress\":\"Paktola\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-02-14\",\"checkoutDate\":\"2023-02-15\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"559585\",\"TPSysId\":\"559586\",\"VersionId\":\"1704452\",\"CustomerSysId\":\"305130\",\"TrxId\":\"44862\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null}','2023-01-17 15:59:24'),(115,'435b7-5450a-d09a6-932b2','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5291\",\"keyIndex\":13,\"SegFlightNumberArr\":\"6E-5291 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1038112886_1BOMMAA6E5291MAAIXZ6E526_87829212162684\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:25\",\"ArrivalTime\":\"06:55\",\"TravelDate\":\"2023-01-27T23:25\",\"LocalFromTime\":\"2023-01-27 23:25\",\"FromUTCTime\":\"2023-01-27T23:25\",\"LocalToTime\":\"2023-01-28 06:55\",\"ToUTCTime\":\"2023-01-28T06:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":450,\"DepartureDateTxt\":\"Fri, 27 Jan\",\"ArrivalDateTxt\":\"Sat, 28 Jan\",\"FlightDuration\":\"7h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"32511\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXZ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":8923,\"PublishedFareTxt\":\"8,923\",\"ApiResultIndex\":\"5-1038112886_1BOMMAA6E5291MAAIXZ6E526_87829212162183\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"435b7-5450a-d09a6-932b2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6700,\"Tax\":2390,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":340,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":9090,\"PublishedFare\":8923,\"PublishedFarePerPax\":8923,\"OfferedFare\":8005,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1038112886_1BOMMAA6E5291MAAIXZ6E526_87829212162684\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2390,\"BaseFareCal\":8145.03,\"BaseFare\":6700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":340,\"MFT\":72,\"OT\":778,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":8923,\"CostToCustomer\":8923,\"BaseFareCal\":8145.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":8145.03,\"intOfferedFare\":8005,\"intPublishFare\":9090,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02B\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-01-28T01:15\",\"SegFlightNumber\":\"6E-5291\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-27T23:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":205,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:25\",\"strArrivalDtTime\":\"01:15\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Veer Savarkar Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Port Blair\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXZ\",\"destinationArrTime\":\"2023-01-28T06:55\",\"SegFlightNumber\":\"6E-526\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-01-28T04:40\",\"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\":null,\"strDepartureDtTime\":\"04:40\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-20 17:23:19'),(116,'f5b44-206d0-93ed7-14f59','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-942\",\"keyIndex\":133,\"SegFlightNumberArr\":\"I5-942\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":false,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8791204054_0BOMBLRI5942_92099465900365\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"14:45\",\"TravelDate\":\"2023-01-21T13:05\",\"LocalFromTime\":\"2023-01-21 13:05\",\"FromUTCTime\":\"2023-01-21T13:05\",\"LocalToTime\":\"2023-01-21 14:45\",\"ToUTCTime\":\"2023-01-21T14:45\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Sat, 21 Jan\",\"ArrivalDateTxt\":\"Sat, 21 Jan\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4242,\"PublishedFareTxt\":\"4,242\",\"ApiResultIndex\":\"22-8791204054_0BOMBLRI5942_92099465900365\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f5b44-206d0-93ed7-14f59\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2380,\"Tax\":2147,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":122,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4527,\"PublishedFare\":4242,\"PublishedFarePerPax\":4242,\"OfferedFare\":3442,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8791204054_0BOMBLRI5942_92099465900365\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2147,\"BaseFareCal\":3564.03,\"BaseFare\":2380,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":122,\"MFT\":72,\"OT\":753,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4242,\"CostToCustomer\":4242,\"BaseFareCal\":3564.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3564.03,\"intOfferedFare\":3442,\"intPublishFare\":4527,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"04H\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-01-21T14:45\",\"SegFlightNumber\":\"I5-942\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-21T13:05\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-01-20 18:33:32'),(117,'48898-e2cb5-a69ef-f2c86','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8253\",\"SegFlightNumberArr\":\"SG-8253\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-13809911250_24DELCCUSG8253_25237342780336\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2023-02-16T19:55\",\"LocalFromTime\":\"2023-02-16 19:55\",\"FromUTCTime\":\"2023-02-16T19:55\",\"LocalToTime\":\"2023-02-16 21:40\",\"ToUTCTime\":\"2023-02-16T21:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5180,\"PublishedFareTxt\":\"5,180\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"15-10-5-4-1-13809911250_24DELCCUSG8253_25237342780336\",\"SearchFlightTraceId\":\"48898-e2cb5-a69ef-f2c86\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-13809911250_24DELCCUSG8253_25237342780336\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"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\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5180,\"CostToCustomer\":5180,\"BaseFareCal\":4402.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4402.03,\"intOfferedFare\":4262,\"intPublishFare\":5347,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"$$hashKey\":\"05F\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-16T21:40\",\"SegFlightNumber\":\"SG-8253\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-16T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"49G\"},{\"FlightNumber\":\"6E-318\",\"SegFlightNumberArr\":\"6E-318\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-13809911251_29CCUBLR6E318_25221202891871\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"06:50\",\"TravelDate\":\"2023-02-17T04:15\",\"LocalFromTime\":\"2023-02-17 04:15\",\"FromUTCTime\":\"2023-02-17T04:15\",\"LocalToTime\":\"2023-02-17 06:50\",\"ToUTCTime\":\"2023-02-17T06:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Fri, 17 Feb\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7524,\"PublishedFareTxt\":\"7,524\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"15-10-5-4-1-13809911251_29CCUBLR6E318_25221202891871\",\"SearchFlightTraceId\":\"48898-e2cb5-a69ef-f2c86\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4943,\"Tax\":2866,\"YQTax\":0,\"OtherCharges\":1594,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":7809,\"PublishedFare\":7524,\"OfferedFare\":6724,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-13809911251_29CCUBLR6E318_25221202892511\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":\"1\",\"TaxIN\":2866,\"BaseFareCal\":6846.03,\"BaseFare\":4943,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":1594,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":7524,\"CostToCustomer\":7524,\"BaseFareCal\":6846.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":6846.03,\"intOfferedFare\":6724,\"intPublishFare\":7809,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"211\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-17T06:50\",\"SegFlightNumber\":\"6E-318\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-17T04:15\",\"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\":null,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:50\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"49H\"},{\"FlightNumber\":\"6E-6269\",\"SegFlightNumberArr\":\"6E-6269\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-13809911252_0BLRMAA6E6269_25220826745985\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2023-02-18T07:00\",\"LocalFromTime\":\"2023-02-18 07:00\",\"FromUTCTime\":\"2023-02-18T07:00\",\"LocalToTime\":\"2023-02-18 07:55\",\"ToUTCTime\":\"2023-02-18T07:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":55,\"DepartureDateTxt\":\"Sat, 18 Feb\",\"ArrivalDateTxt\":\"Sat, 18 Feb\",\"FlightDuration\":\"0h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2997,\"PublishedFareTxt\":\"2,997\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"15-10-5-4-1-13809911252_0BLRMAA6E6269_25220826745985\",\"SearchFlightTraceId\":\"48898-e2cb5-a69ef-f2c86\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":910,\"Tax\":2372,\"YQTax\":0,\"OtherCharges\":1100,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":3282,\"PublishedFare\":2997,\"OfferedFare\":2197,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-13809911252_0BLRMAA6E6269_25220826799104\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":2372,\"BaseFareCal\":2319.03,\"BaseFare\":910,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":1100,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2997,\"CostToCustomer\":2997,\"BaseFareCal\":2319.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":2319.03,\"intOfferedFare\":2197,\"intPublishFare\":3282,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"3OC\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-18T07:55\",\"SegFlightNumber\":\"6E-6269\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-18T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"49I\"}],\"FlightBookingDataInbound\":[]}','2023-01-25 19:05:31'),(118,'a8a0a-57891-ba00f-b55bb','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":53,\"FlightNumber\":\"8692\",\"SegFlightNumberArr\":\"AC-8692, TK-82, TK-720 +2\",\"AirlineName\":\"Air Canada\",\"AirlineCode\":\"AC\",\"OrFlightNumber\":\"AC-8692\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"AirlineSysId\":\"27\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"05:10\",\"TravelDate\":\"2023-02-05T08:05\",\"LocalFromTime\":\"2023-02-05 08:05\",\"FromUTCTime\":\"2023-02-05T08:05\",\"LocalToTime\":\"2023-02-07 05:10\",\"ToUTCTime\":\"2023-02-07T05:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Boston\",\"GroundTime\":1050,\"LAYOVERDuration\":\"17h 30m\",\"FlyingMinutes\":1875,\"DepartureDateTxt\":\"Sun, 05 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"34h 35m\",\"SourcePlaceSysId\":\"27530\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"YYZ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AC.gif\"},\"destination\":{\"FlightNumber\":\"721\",\"SegFlightNumberArr\":\"TK-721, TK-203, TK-8677 +2\",\"AirlineName\":\"Turkish Airlines\",\"AirlineCode\":\"TK\",\"DeFlightNumber\":\"TK-721\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"AirlineSysId\":\"517\",\"DepartureTime\":\"06:35\",\"ArrivalTime\":\"15:05\",\"TravelDate\":\"2023-04-01T06:35\",\"LocalFromTime\":\"2023-04-01 06:35\",\"FromUTCTime\":\"2023-04-01T06:35\",\"LocalToTime\":\"2023-04-02 15:05\",\"ToUTCTime\":\"2023-04-02T15:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Istanbul\",\"GroundTime\":1110,\"LAYOVERDuration\":\"18h 30m\",\"FlyingMinutes\":1935,\"DepartureDateTxt\":\"Sat, 01 Apr\",\"ArrivalDateTxt\":\"Sun, 02 Apr\",\"FlightDuration\":\"42h 0m\",\"SourcePlaceSysId\":\"27530\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"YYZ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},\"AirlineName\":\"Turkish Airlines\",\"PublishedFare\":133302.4,\"PublishedFareTxt\":\"133,302\",\"ApiResultIndex\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":74800,\"Tax\":58266.4,\"YQTax\":0,\"OtherCharges\":11479,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":45152,\"MUFee\":1600,\"intPublishedFare\":133066.4,\"PublishedFare\":133303,\"PublishedFarePerPax\":133303,\"OfferedFare\":131466.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":4,\"intTotalGST\":280.07,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.93,\"GSTOnMarkUp\":280.07,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":58266.4,\"BaseFareCal\":131746.47,\"BaseFare\":74800,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":11479,\"MU\":1600,\"YR\":45152,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.07,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.93,\"GSTOnMarkUp\":280.07,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1555.93,\"IntTaxOnAgencyFixMarkUp\":280.07,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":280.07,\"PublishFare\":133302.4,\"CostToCustomer\":133302.4,\"BaseFareCal\":131746.47,\"intCommisionEarnedForAgency\":1555.93,\"CostToCompany\":131746.47,\"intOfferedFare\":131466.4,\"intPublishFare\":133066.4,\"TripjackMarkup\":1600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"CommisionPass\":0,\"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\":\"05M\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Lester B Pearson Intl\",\"destinationAirportName\":\"Logan Intl Arpt\",\"originCityName\":\"Toronto\",\"originCountryName\":\"Canada\",\"destinationCityName\":\"Boston\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"BOS\",\"destinationArrTime\":\"2023-02-05T09:40\",\"SegFlightNumber\":\"AC-8692\",\"AirlineCode\":\"AC\",\"AirlineName\":\"Air Canada\",\"FareClass\":\"T\",\"originAirportCode\":\"YYZ\",\"originDepTime\":\"2023-02-05T08:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":95,\"GroundTime\":765,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"12h 45m\",\"LAYOVERCity\":\"Boston\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal B\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AC.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Logan Intl Arpt\",\"destinationAirportName\":\"Ataturk Arpt\",\"originCityName\":\"Boston\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-02-06T15:45\",\"SegFlightNumber\":\"TK-82\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"BOS\",\"originDepTime\":\"2023-02-05T22:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":285,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Istanbul\",\"DepTerminal\":\"Terminal E\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Ataturk Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-07T05:10\",\"SegFlightNumber\":\"TK-720\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2023-02-06T20:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":370,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"05:10\",\"FlightDuration\":\"6h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Ataturk Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-04-01T10:50\",\"SegFlightNumber\":\"TK-721\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-01T06:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":405,\"GroundTime\":200,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"06:35\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"6h 45m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Istanbul\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ataturk Arpt\",\"destinationAirportName\":\"Seattle Tacoma Intl Arpt\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Seattle\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"SEA\",\"destinationArrTime\":\"2023-04-01T16:20\",\"SegFlightNumber\":\"TK-203\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2023-04-01T14:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":730,\"GroundTime\":910,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:20\",\"FlightDuration\":\"12h 10m\",\"LAYOVERDuration\":\"15h 10m\",\"LAYOVERCity\":\"Seattle\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Seattle Tacoma Intl Arpt\",\"destinationAirportName\":\"Lester B Pearson Intl\",\"originCityName\":\"Seattle\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Toronto\",\"destinationCountryName\":\"Canada\",\"destinationAirportCode\":\"YYZ\",\"destinationArrTime\":\"2023-04-02T15:05\",\"SegFlightNumber\":\"TK-8677\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"SEA\",\"originDepTime\":\"2023-04-02T07:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"}],\"DepartureTime\":\"06:35\",\"StopCount\":\"2 Stop(s)\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"keyIndex\":53,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":53,\"FlightNumber\":\"8692\",\"SegFlightNumberArr\":\"AC-8692, TK-82, TK-720 +2\",\"AirlineName\":\"Air Canada\",\"AirlineCode\":\"AC\",\"OrFlightNumber\":\"AC-8692\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"AirlineSysId\":\"27\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"05:10\",\"TravelDate\":\"2023-02-05T08:05\",\"LocalFromTime\":\"2023-02-05 08:05\",\"FromUTCTime\":\"2023-02-05T08:05\",\"LocalToTime\":\"2023-02-07 05:10\",\"ToUTCTime\":\"2023-02-07T05:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Boston\",\"GroundTime\":1050,\"LAYOVERDuration\":\"17h 30m\",\"FlyingMinutes\":1875,\"DepartureDateTxt\":\"Sun, 05 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"34h 35m\",\"SourcePlaceSysId\":\"27530\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"YYZ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AC.gif\"},\"destination\":{\"FlightNumber\":\"721\",\"SegFlightNumberArr\":\"TK-721, TK-203, TK-8677 +2\",\"AirlineName\":\"Turkish Airlines\",\"AirlineCode\":\"TK\",\"DeFlightNumber\":\"TK-721\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"AirlineSysId\":\"517\",\"DepartureTime\":\"06:35\",\"ArrivalTime\":\"15:05\",\"TravelDate\":\"2023-04-01T06:35\",\"LocalFromTime\":\"2023-04-01 06:35\",\"FromUTCTime\":\"2023-04-01T06:35\",\"LocalToTime\":\"2023-04-02 15:05\",\"ToUTCTime\":\"2023-04-02T15:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Istanbul\",\"GroundTime\":1110,\"LAYOVERDuration\":\"18h 30m\",\"FlyingMinutes\":1935,\"DepartureDateTxt\":\"Sat, 01 Apr\",\"ArrivalDateTxt\":\"Sun, 02 Apr\",\"FlightDuration\":\"42h 0m\",\"SourcePlaceSysId\":\"27530\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"YYZ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},\"AirlineName\":\"Turkish Airlines\",\"PublishedFare\":133302.4,\"PublishedFareTxt\":\"133,302\",\"ApiResultIndex\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"apiTraceId\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":74800,\"Tax\":58266.4,\"YQTax\":0,\"OtherCharges\":11479,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":45152,\"MUFee\":1600,\"intPublishedFare\":133066.4,\"PublishedFare\":133303,\"PublishedFarePerPax\":133303,\"OfferedFare\":131466.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"15-2-12-10-3685291129_53YYZBOSAC8692BOSISTTK82ISTBOMTK720BOMISTTK721ISTSEATK203SEAYYZTK8677_174269303305201\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":4,\"intTotalGST\":280.07,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.93,\"GSTOnMarkUp\":280.07,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":58266.4,\"BaseFareCal\":131746.47,\"BaseFare\":74800,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":11479,\"MU\":1600,\"YR\":45152,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":280.07,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1555.93,\"GSTOnMarkUp\":280.07,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"1  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1555.93,\"IntTaxOnAgencyFixMarkUp\":280.07,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":280.07,\"PublishFare\":133302.4,\"CostToCustomer\":133302.4,\"BaseFareCal\":131746.47,\"intCommisionEarnedForAgency\":1555.93,\"CostToCompany\":131746.47,\"intOfferedFare\":131466.4,\"intPublishFare\":133066.4,\"TripjackMarkup\":1600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"CommisionPass\":0,\"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\":[{\"isReturnSegment\":false,\"originAirportName\":\"Lester B Pearson Intl\",\"destinationAirportName\":\"Logan Intl Arpt\",\"originCityName\":\"Toronto\",\"originCountryName\":\"Canada\",\"destinationCityName\":\"Boston\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"BOS\",\"destinationArrTime\":\"2023-02-05T09:40\",\"SegFlightNumber\":\"AC-8692\",\"AirlineCode\":\"AC\",\"AirlineName\":\"Air Canada\",\"FareClass\":\"T\",\"originAirportCode\":\"YYZ\",\"originDepTime\":\"2023-02-05T08:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":95,\"GroundTime\":765,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"12h 45m\",\"LAYOVERCity\":\"Boston\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal B\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AC.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Logan Intl Arpt\",\"destinationAirportName\":\"Ataturk Arpt\",\"originCityName\":\"Boston\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-02-06T15:45\",\"SegFlightNumber\":\"TK-82\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"BOS\",\"originDepTime\":\"2023-02-05T22:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":285,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Istanbul\",\"DepTerminal\":\"Terminal E\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Ataturk Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-07T05:10\",\"SegFlightNumber\":\"TK-720\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2023-02-06T20:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":370,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"05:10\",\"FlightDuration\":\"6h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Ataturk Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-04-01T10:50\",\"SegFlightNumber\":\"TK-721\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-01T06:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":405,\"GroundTime\":200,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"06:35\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"6h 45m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Istanbul\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ataturk Arpt\",\"destinationAirportName\":\"Seattle Tacoma Intl Arpt\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Seattle\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"SEA\",\"destinationArrTime\":\"2023-04-01T16:20\",\"SegFlightNumber\":\"TK-203\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2023-04-01T14:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":730,\"GroundTime\":910,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:20\",\"FlightDuration\":\"12h 10m\",\"LAYOVERDuration\":\"15h 10m\",\"LAYOVERCity\":\"Seattle\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Seattle Tacoma Intl Arpt\",\"destinationAirportName\":\"Lester B Pearson Intl\",\"originCityName\":\"Seattle\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Toronto\",\"destinationCountryName\":\"Canada\",\"destinationAirportCode\":\"YYZ\",\"destinationArrTime\":\"2023-04-02T15:05\",\"SegFlightNumber\":\"TK-8677\",\"AirlineCode\":\"TK\",\"AirlineName\":\"Turkish Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"SEA\",\"originDepTime\":\"2023-04-02T07:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"1  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/TK.gif\"}],\"DepartureTime\":\"06:35\",\"StopCount\":\"2 Stop(s)\",\"SearchFlightTraceId\":\"a8a0a-57891-ba00f-b55bb\",\"keyIndex\":53,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"05O\"}]}],\"FlightBookingDataInbound\":null}','2023-01-30 08:19:37'),(119,'61f8f-3da70-00856-1d830','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8702\",\"SegFlightNumberArr\":\"SG-8702\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8560638060_1BOMDELSG8702_1467828273606\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2023-02-11T10:05\",\"LocalFromTime\":\"2023-02-11 10:05\",\"FromUTCTime\":\"2023-02-11T10:05\",\"LocalToTime\":\"2023-02-11 12:20\",\"ToUTCTime\":\"2023-02-11T12:20\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 11 Feb\",\"ArrivalDateTxt\":\"Sat, 11 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":39,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4821,\"PublishedFareTxt\":\"4,821\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-8560638060_1BOMDELSG8702_1467828273606\",\"SearchFlightTraceId\":\"61f8f-3da70-00856-1d830\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":2006,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":162,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5106,\"PublishedFare\":4821,\"OfferedFare\":4021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8560638060_1BOMDELSG8702_1467828274205\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2006,\"BaseFareCal\":4143.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":162,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4821,\"CostToCustomer\":4821,\"BaseFareCal\":4143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4143.03,\"intOfferedFare\":4021,\"intPublishFare\":5106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"057\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-11T12:20\",\"SegFlightNumber\":\"SG-8702\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-11T10:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":39,\"strDepartureDtTime\":\"10:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"4CC\"},{\"FlightNumber\":\"G8-404\",\"SegFlightNumberArr\":\"G8-404, G8-350\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8560638060_19DELVNSG8404VNSBOMG8350_1455660722085\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2023-02-08T10:20\",\"LocalFromTime\":\"2023-02-08 10:20\",\"FromUTCTime\":\"2023-02-08T10:20\",\"LocalToTime\":\"2023-02-08 15:30\",\"ToUTCTime\":\"2023-02-08T15:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Wed, 08 Feb\",\"ArrivalDateTxt\":\"Wed, 08 Feb\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":170,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4534,\"PublishedFareTxt\":\"4,534\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"1-8560638060_19DELVNSG8404VNSBOMG8350_1455660722085\",\"SearchFlightTraceId\":\"61f8f-3da70-00856-1d830\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2201,\"YQTax\":0,\"OtherCharges\":929,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4701,\"PublishedFare\":4534,\"OfferedFare\":3616,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8560638060_19DELVNSG8404VNSBOMG8350_1455660722791\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"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\":2201,\"BaseFareCal\":3756.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":929,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4534,\"CostToCustomer\":4534,\"BaseFareCal\":3756.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3756.03,\"intOfferedFare\":3616,\"intPublishFare\":4701,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"$$hashKey\":\"273\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-02-08T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-08T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":170,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-08T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-02-08T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":170,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"4CD\"}],\"FlightBookingDataInbound\":[]}','2023-01-30 15:58:12'),(122,'81f10-7092d-219ab-18e8a','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8152\",\"SegFlightNumberArr\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0594967224_0BOMDELSG8152_2128576185077\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-02-13T07:10\",\"LocalFromTime\":\"2023-02-13 07:10\",\"FromUTCTime\":\"2023-02-13T07:10\",\"LocalToTime\":\"2023-02-13 09:30\",\"ToUTCTime\":\"2023-02-13T09:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":51,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4833,\"PublishedFareTxt\":\"4,833\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-0594967224_0BOMDELSG8152_2128576185077\",\"SearchFlightTraceId\":\"81f10-7092d-219ab-18e8a\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3000,\"Tax\":2000,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5000,\"PublishedFare\":4833,\"OfferedFare\":3915,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0594967224_0BOMDELSG8152_2128576186349\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"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\":2000,\"BaseFareCal\":4055.03,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":156,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":777.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4833,\"CostToCustomer\":4833,\"BaseFareCal\":4055.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4055.03,\"intOfferedFare\":3915,\"intPublishFare\":5000,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"$$hashKey\":\"04L\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T09:30\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-13T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":51,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"4PE\"},{\"FlightNumber\":\"SG-8169\",\"SegFlightNumberArr\":\"SG-8169\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0594967224_2DELBOMSG8169_2128576606301\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-09T20:00\",\"LocalFromTime\":\"2023-02-09 20:00\",\"FromUTCTime\":\"2023-02-09T20:00\",\"LocalToTime\":\"2023-02-09 22:05\",\"ToUTCTime\":\"2023-02-09T22:05\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":62,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4764,\"PublishedFareTxt\":\"4,764\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-0594967224_2DELBOMSG8169_2128576606301\",\"SearchFlightTraceId\":\"81f10-7092d-219ab-18e8a\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":1949,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5049,\"PublishedFare\":4764,\"OfferedFare\":3964,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0594967224_2DELBOMSG8169_2128576606801\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1949,\"BaseFareCal\":4086.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4764,\"CostToCustomer\":4764,\"BaseFareCal\":4086.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4086.03,\"intOfferedFare\":3964,\"intPublishFare\":5049,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"2F0\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T22:05\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"4PF\"}],\"FlightBookingDataInbound\":[]}','2023-01-30 16:08:51'),(126,'b271a-2dd20-1f1dd-4a4d4','{\"BookingData\":[{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8103\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-02-23T18:50\",\"LocalFromTime\":\"2023-02-23 18:50\",\"FromUTCTime\":\"2023-02-23T18:50\",\"LocalToTime\":\"2023-02-23 21:30\",\"ToUTCTime\":\"2023-02-23T21:30\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Thu, 23 Feb\",\"ArrivalDateTxt\":\"Thu, 23 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2842,\"PublishedFareTxt\":\"2,842\",\"ApiResultIndex\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"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,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"MAA-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\":{\"ARFT\":150,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1843,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":53,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2842,\"PublishedFare\":2557,\"OfferedFare\":1757,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8467617033_0DELMAASG8103_2258498300862\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1843,\"BaseFareCal\":1879.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":53,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2557,\"CostToCustomer\":2557,\"BaseFareCal\":1879.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1879.03,\"intOfferedFare\":1757,\"intPublishFare\":2842,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"483\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-23T21:30\",\"SegFlightNumber\":\"SG-8103\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-23T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"483\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"MAA\",\"DEL\"],\"strDestinationAirportCode\":[\"DEL\",\"MAA\"],\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8103\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-02-23T18:50\",\"LocalFromTime\":\"2023-02-23 18:50\",\"FromUTCTime\":\"2023-02-23T18:50\",\"LocalToTime\":\"2023-02-23 21:30\",\"ToUTCTime\":\"2023-02-23T21:30\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Thu, 23 Feb\",\"ArrivalDateTxt\":\"Thu, 23 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5648,\"ApiResultIndex\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1998,\"Tax\":3650,\"YQTax\":0,\"OtherCharges\":999,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":107,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":5648,\"PublishedFare\":5078,\"OfferedFare\":3478,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3650,\"BaseFareCal\":3722.06,\"BaseFare\":1998,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":107,\"MFT\":144,\"OT\":999,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"483\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-23T21:30\",\"SegFlightNumber\":\"SG-8103\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-23T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"484\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-16T12:40\",\"SegFlightNumber\":\"SG-8208\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-16T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8467617033_1DELMAASG8103_2221196429157\",\"localFromDateTime\":\"2023-02-23 18:50\",\"localToDateTime\":\"2023-02-23 21:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS106800455684\",\"bookingId_TJ\":\"TJS106800455684\",\"FlightNumber\":\"SG-8208\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-02-16T09:20\",\"LocalFromTime\":\"2023-02-16 09:20\",\"FromUTCTime\":\"2023-02-16T09:20\",\"LocalToTime\":\"2023-02-16 12:40\",\"ToUTCTime\":\"2023-02-16T12:40\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2806,\"PublishedFareTxt\":\"2,806\",\"ApiResultIndex\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-MAA\":{\"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,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"MAA-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\":{\"ARFT\":150,\"CRFT\":9,\"ARF\":3000,\"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\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1807,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2806,\"PublishedFare\":2521,\"OfferedFare\":1721,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8467617033_1MAADELSG8208_2258506799281\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1807,\"BaseFareCal\":1843.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":481,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2521,\"CostToCustomer\":2521,\"BaseFareCal\":1843.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1843.03,\"intOfferedFare\":1721,\"intPublishFare\":2806,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"484\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-16T12:40\",\"SegFlightNumber\":\"SG-8208\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-16T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T16:11:50.409\",\"strTraceId\":\"4-8467617033_0MAADELSG8208_2221196689701\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"MAA\",\"DEL\"],\"strDestinationAirportCode\":[\"DEL\",\"MAA\"],\"intMemberCount\":1,\"intSourceCityId\":[6000,7701],\"intDestinationCityId\":[7701,6000],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Chennai\",\"Delhi\"],\"mytrip_city_to\":[\"Delhi\",\"Chennai\"],\"departure_dates\":[\"2023\\/02\\/16\",\"2023\\/02\\/23\"],\"source_city\":[\"MAA\",\"DEL\"],\"ContSysId_1\":[\"101\",\"101\"],\"destination_city\":[\"DEL\",\"MAA\"],\"ContSysId\":[\"101\",\"101\"],\"source\":[\"Chennai, IN - Chennai Arpt MAA, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Chennai, IN - Chennai Arpt MAA, India\"],\"departure_date\":[\"2023\\/02\\/16\",\"2023\\/02\\/23\"],\"return_date\":[\"\",\"\"],\"from_mytrip_city\":[\" IN - Chennai Arpt MAA\",\" IN - Delhi Indira Gandhi Intl DEL\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Chennai Arpt MAA\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"MAA\",\"DEL\"],\"destinationCityAirportCode\":[\"DEL\",\"MAA\"],\"from\":[\"MAA\",\"DEL\"],\"to\":[\"DEL\",\"MAA\"],\"sourceCityText\":[\"Chennai, IN - Chennai Arpt MAA, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Chennai, IN - Chennai Arpt MAA, India\"],\"sourceCityId\":[6000,7701],\"destinationCityId\":[7701,6000],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"b271a-2dd20-1f1dd-4a4d4\"},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Chennai&mytrip_city_to%5B%5D=Delhi&departure_dates%5B%5D=16+Feb+2023&source_city%5B%5D=MAA&ContSysId_1%5B%5D=101&destination_city%5B%5D=DEL&ContSysId%5B%5D=101&source%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date%5B%5D=2023%2F02%2F16&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&to_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&mytrip_city_from%5B%5D=Delhi&mytrip_city_to%5B%5D=Chennai&departure_dates%5B%5D=23+Feb+2023&source_city%5B%5D=DEL&ContSysId_1%5B%5D=101&destination_city%5B%5D=MAA&ContSysId%5B%5D=101&source%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&departure_date%5B%5D=2023%2F02%2F23&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"S@GMAIL.COM\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"7011874684\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-30-16-11-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"6\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"573670\",\"TPSysId\":\"573671\",\"VersionId\":[\"155582\",\"155583\"],\"CustomerSysId\":\"324821\",\"TrxId\":\"46327\",\"FareBreakdownid\":[\"369855\",\"369856\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"33\"],[\"34\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"39\",\"40\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"39\",\"40\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5078},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"324821\",\"TPSysId\":\"573671\",\"MasterTPSysId\":\"573670\",\"ProposalID\":\"573671\\/V1\",\"InvoiceDate\":\"2023-01-30\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-30\",\"PaymentDate\":\"2023-01-30\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4833.94,\"InvoiceStatus\":true,\"TotalSGST\":122.03,\"TotalCGST\":122.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5078,\"TotalDueAmount\":0,\"InvoiceValue\":5078,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-MAA-SpiceJet SG-8103\",\"ItemQty\":1,\"ItemRates\":1757,\"Total\":1757,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2557,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":2434.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-DEL-SpiceJet SG-8208\",\"ItemQty\":1,\"ItemRates\":1721,\"Total\":1721,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2521,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":2398.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-30 16:11:41'),(128,'5530d-15b95-a2a7b-dcd33','{\"FlightBookingData\":[{\"bookingId\":\"BKRS103300455797\",\"bookingId_TJ\":\"TJS103300455797\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"07:45\",\"TravelDate\":\"2023-02-01T05:45\",\"LocalFromTime\":\"2023-02-01 05:45\",\"FromUTCTime\":\"2023-02-01T05:45\",\"LocalToTime\":\"2023-02-01 07:45\",\"ToUTCTime\":\"2023-02-01T07:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 01 Feb\",\"ArrivalDateTxt\":\"Wed, 01 Feb\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"PublishedFareTxt\":\"5,347\",\"ApiResultIndex\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"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-96 hrs Rs 3,500 __nls__ Before 96 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\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0884717675_0DELCCUSG8263_2408232818501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5180,\"CostToCustomer\":5180,\"BaseFareCal\":4402.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4402.03,\"intOfferedFare\":4262,\"intPublishFare\":5347,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"643\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-01T07:45\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-01T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"07:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"643\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T17:20:47.159\",\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-01 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\":\"BKRS103300455797\",\"bookingId_TJ\":\"TJS103300455797\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"07:45\",\"TravelDate\":\"2023-02-01T05:45\",\"LocalFromTime\":\"2023-02-01 05:45\",\"FromUTCTime\":\"2023-02-01T05:45\",\"LocalToTime\":\"2023-02-01 07:45\",\"ToUTCTime\":\"2023-02-01T07:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 01 Feb\",\"ArrivalDateTxt\":\"Wed, 01 Feb\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"ApiResultIndex\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-30T17:20:47.159\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"643\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-01T07:45\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-01T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"07:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0884717675_0DELCCUSG8263_2229359634731\",\"localFromDateTime\":\"2023-02-01 05:45\",\"localToDateTime\":\"2023-02-01 07:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"41\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_id\":[\"41\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-30-17-22-30\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"9\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-30-17-22-30\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"modified\":\"2023-01-30-17-22-30\",\"created\":\"2023-01-30-17-22-30\",\"CustomerMemberSysId\":\"9\"}],\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_customer\":[[\"35\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Kolkata\",\"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\":\"01\\/02\\/2023\",\"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\",\"FareTypes\":\"REGULAR\",\"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\":\"01\\/02\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-02-01\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"from_city_\":\"1__DEL-CCU\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_id\":[\"41\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"1\",\"EmailId\":\"jitendra@catpl.co.in\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh \",\"CountryCode\":\"91\",\"MobileNo\":\"9958049006\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-30-17-22-30\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"5530d-15b95-a2a7b-dcd33\",\"modified\":\"2023-01-30-17-22-30\",\"created\":\"2023-01-30-17-22-30\",\"MobileNo\":\"9958049006\",\"B2B\":false}]}','2023-01-30 17:22:30'),(129,'5b2df-c7dfe-30d46-a9cc3','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8103\",\"SegFlightNumberArr\":\"SG-8103\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6158030091_1DELMAASG8103_16787448477320\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-02-23T18:50\",\"LocalFromTime\":\"2023-02-23 18:50\",\"FromUTCTime\":\"2023-02-23T18:50\",\"LocalToTime\":\"2023-02-23 21:30\",\"ToUTCTime\":\"2023-02-23T21:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Thu, 23 Feb\",\"ArrivalDateTxt\":\"Thu, 23 Feb\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2557,\"PublishedFareTxt\":\"2,557\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-6158030091_1DELMAASG8103_16787448477320\",\"SearchFlightTraceId\":\"5b2df-c7dfe-30d46-a9cc3\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1843,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":53,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2842,\"PublishedFare\":2557,\"OfferedFare\":1757,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6158030091_1DELMAASG8103_16787448477984\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1843,\"BaseFareCal\":1879.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":53,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2557,\"CostToCustomer\":2557,\"BaseFareCal\":1879.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1879.03,\"intOfferedFare\":1757,\"intPublishFare\":2842,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"03V\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-02-23T21:30\",\"SegFlightNumber\":\"SG-8103\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-23T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"2IM\"},{\"FlightNumber\":\"SG-8208\",\"SegFlightNumberArr\":\"SG-8208\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6158030091_0MAADELSG8208_16787448756071\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2023-02-16T09:20\",\"LocalFromTime\":\"2023-02-16 09:20\",\"FromUTCTime\":\"2023-02-16T09:20\",\"LocalToTime\":\"2023-02-16 12:40\",\"ToUTCTime\":\"2023-02-16T12:40\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Thu, 16 Feb\",\"ArrivalDateTxt\":\"Thu, 16 Feb\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2521,\"PublishedFareTxt\":\"2,521\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-6158030091_0MAADELSG8208_16787448756071\",\"SearchFlightTraceId\":\"5b2df-c7dfe-30d46-a9cc3\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":999,\"Tax\":1807,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":2806,\"PublishedFare\":2521,\"OfferedFare\":1721,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6158030091_0MAADELSG8208_16787448756957\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1807,\"BaseFareCal\":1843.03,\"BaseFare\":999,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":481,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":2521,\"CostToCustomer\":2521,\"BaseFareCal\":1843.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":1843.03,\"intOfferedFare\":1721,\"intPublishFare\":2806,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"1ET\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-16T12:40\",\"SegFlightNumber\":\"SG-8208\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-02-16T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"2IN\"}],\"FlightBookingDataInbound\":[]}','2023-01-31 11:46:57'),(132,'2986c-5fc03-1f8d4-31515','{\"FlightBookingData\":[{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8253\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2023-02-10T19:55\",\"LocalFromTime\":\"2023-02-10 19:55\",\"FromUTCTime\":\"2023-02-10T19:55\",\"LocalToTime\":\"2023-02-10 21:40\",\"ToUTCTime\":\"2023-02-10T21:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5347,\"PublishedFareTxt\":\"5,347\",\"ApiResultIndex\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3384,\"Tax\":1963,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5347,\"PublishedFare\":5180,\"OfferedFare\":4262,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_0DELCCUSG8253_28141905351600\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":1963,\"BaseFareCal\":4402.03,\"BaseFare\":3384,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":173,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5180,\"CostToCustomer\":5180,\"BaseFareCal\":4402.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4402.03,\"intOfferedFare\":4262,\"intPublishFare\":5347,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"60\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-10T21:40\",\"SegFlightNumber\":\"SG-8253\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"60\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8253\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2023-02-10T19:55\",\"LocalFromTime\":\"2023-02-10 19:55\",\"FromUTCTime\":\"2023-02-10T19:55\",\"LocalToTime\":\"2023-02-10 21:40\",\"ToUTCTime\":\"2023-02-10T21:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":22351,\"ApiResultIndex\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13193,\"Tax\":9158,\"YQTax\":0,\"OtherCharges\":3216,\"Discount\":0,\"ServiceFee\":1600,\"ManagementFeeTax\":288,\"AirlineGSTComponent\":684,\"CarrierMiscFee\":170,\"MUFee\":3200,\"intPublishedFare\":22351,\"PublishedFare\":21565,\"OfferedFare\":18011,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":3011.88,\"GSTOnMarkUp\":542.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":300,\"AddiTaxOnMarkup\":54,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":9158,\"BaseFareCal\":18553.12,\"BaseFare\":13193,\"CommissionEarned\":1140,\"TDS\":-60,\"MF\":1600,\"YQ\":0,\"AGST\":684,\"MFT\":288,\"OT\":3216,\"MU\":3200,\"YR\":170,\"AddiTaxOnMarkup\":54,\"AddiMarkup\":300,\"FixedMarkUp\":3011.88,\"GSTOnMarkUp\":542.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"60\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-10T21:40\",\"SegFlightNumber\":\"SG-8253\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-10T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"776\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-11T08:45\",\"SegFlightNumber\":\"SG-8130\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-11T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":210,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-11T14:50\",\"SegFlightNumber\":\"SG-8722\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-11T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"282\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-12T05:35\",\"SegFlightNumber\":\"AI-894\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-12T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"05:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"56\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T22:15\",\"SegFlightNumber\":\"SG-535\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-10-5-4-1-37080540790_25DELCCUSG8253_28025824513641\",\"localFromDateTime\":\"2023-02-10 19:55\",\"localToDateTime\":\"2023-02-10 21:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-8130\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-02-11T06:20\",\"LocalFromTime\":\"2023-02-11 06:20\",\"FromUTCTime\":\"2023-02-11T06:20\",\"LocalToTime\":\"2023-02-11 14:50\",\"ToUTCTime\":\"2023-02-11T14:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":510,\"DepartureDateTxt\":\"Sat, 11 Feb\",\"ArrivalDateTxt\":\"Sat, 11 Feb\",\"FlightDuration\":\"8h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6336,\"PublishedFareTxt\":\"6,336\",\"ApiResultIndex\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3780,\"Tax\":2556,\"YQTax\":0,\"OtherCharges\":1088,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":6336,\"PublishedFare\":6169,\"OfferedFare\":5251,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_1CCUDELSG8130DELGOISG8722_28141907311840\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2556,\"BaseFareCal\":5391.03,\"BaseFare\":3780,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":196,\"MFT\":72,\"OT\":1088,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":6169,\"CostToCustomer\":6169,\"BaseFareCal\":5391.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":5391.03,\"intOfferedFare\":5251,\"intPublishFare\":6336,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"776\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-11T08:45\",\"SegFlightNumber\":\"SG-8130\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-11T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":210,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2023-02-11T14:50\",\"SegFlightNumber\":\"SG-8722\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-11T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCVS\",\"Price\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCNS\",\"Price\":545,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540791_27CCUDELSG8130DELGOISG8722_28025677575543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"AI-894\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:20\",\"ArrivalTime\":\"05:35\",\"TravelDate\":\"2023-02-12T04:20\",\"LocalFromTime\":\"2023-02-12 04:20\",\"FromUTCTime\":\"2023-02-12T04:20\",\"LocalToTime\":\"2023-02-12 05:35\",\"ToUTCTime\":\"2023-02-12T05:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 12 Feb\",\"ArrivalDateTxt\":\"Sun, 12 Feb\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6136,\"PublishedFareTxt\":\"6,136\",\"ApiResultIndex\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":3530,\"Tax\":2606,\"YQTax\":0,\"OtherCharges\":979,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":170,\"MUFee\":800,\"intPublishedFare\":6136,\"PublishedFare\":5969,\"OfferedFare\":5051,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_2GOIBLRAI894_28141912350073\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2606,\"BaseFareCal\":5191.03,\"BaseFare\":3530,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":185,\"MFT\":72,\"OT\":979,\"MU\":800,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5969,\"CostToCustomer\":5969,\"BaseFareCal\":5191.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":5191.03,\"intOfferedFare\":5051,\"intPublishFare\":6136,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"282\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-12T05:35\",\"SegFlightNumber\":\"AI-894\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2023-02-12T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"05:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540792_27GOIBLRAI894_28013659025543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS100300456406\",\"bookingId_TJ\":\"TJS100300456406\",\"FlightNumber\":\"SG-535\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-02-13T19:30\",\"LocalFromTime\":\"2023-02-13 19:30\",\"FromUTCTime\":\"2023-02-13T19:30\",\"LocalToTime\":\"2023-02-13 22:15\",\"ToUTCTime\":\"2023-02-13T22:15\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Mon, 13 Feb\",\"ArrivalDateTxt\":\"Mon, 13 Feb\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4532,\"PublishedFareTxt\":\"4,532\",\"ApiResultIndex\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.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\":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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-GOI\":{\"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\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"GOI-BLR\":{\"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\":{\"ARF\":3000,\"ARFT\":150,\"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\":{\"CCF\":50,\"ACF\":3000,\"ACFT\":150,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}},\"BLR-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\":{\"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\":2499,\"Tax\":2033,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4532,\"PublishedFare\":4247,\"OfferedFare\":3447,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-10-5-4-1-37080540790_3BLRDELSG535_28141917339970\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2033,\"BaseFareCal\":3569.03,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4247,\"CostToCustomer\":4247,\"BaseFareCal\":3569.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3569.03,\"intOfferedFare\":3447,\"intPublishFare\":4532,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"56\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-13T22:15\",\"SegFlightNumber\":\"SG-535\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-13T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"56\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"282\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-01-31T14:55:43.823\",\"strTraceId\":\"15-10-5-4-1-37080540793_26BLRDELSG535_28015263823860\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"strDestinationAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,14323,0,2262],\"intDestinationCityId\":[14323,0,2262,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"42\",\"43\",\"44\",\"45\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"10\"],\"flight_booking_id\":[\"42\",\"43\",\"44\",\"45\"]},\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-31-14-55-27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"10\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-31-14-55-27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"2986c-5fc03-1f8d4-31515\",\"modified\":\"2023-01-31-14-55-27\",\"created\":\"2023-01-31-14-55-27\",\"CustomerMemberSysId\":\"10\"}],\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"10\"],\"flight_booking_customer\":[[\"36\"],[\"37\"],[\"38\"],[\"39\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Delhi\",\"Kolkata\",\"Goa In\",\"Bengaluru\"],\"mytrip_city_to\":[\"Kolkata\",\"Goa In\",\"Bengaluru\",\"Delhi\"],\"departure_dates\":[\"2023\\/02\\/10\",\"2023\\/02\\/11\",\"2023\\/02\\/12\",\"2023\\/02\\/13\"],\"source_city\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\",\"0\",\"101\"],\"destination_city\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"ContSysId\":[\"101\",\"0\",\"101\",\"101\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Goa In, IN - Dabolim Arpt GOI, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Goa In, IN - Dabolim Arpt GOI, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"departure_date\":[\"2023\\/02\\/10\",\"2023\\/02\\/11\",\"2023\\/02\\/12\",\"2023\\/02\\/13\"],\"return_date\":[\"\",\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Netaji Subhas Chandra Bose Intl CCU\",\" IN - Dabolim Arpt GOI\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Netaji Subhas Chandra Bose Intl CCU\",\" IN - Dabolim Arpt GOI\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Delhi Indira Gandhi Intl DEL\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"destinationCityAirportCode\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"from\":[\"DEL\",\"CCU\",\"GOI\",\"BLR\"],\"to\":[\"CCU\",\"GOI\",\"BLR\",\"DEL\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Goa In, IN - Dabolim Arpt GOI, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Goa In, IN - Dabolim Arpt GOI, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"sourceCityId\":[7701,14323,0,2262],\"destinationCityId\":[14323,0,2262,7701],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"2986c-5fc03-1f8d4-31515\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"574905\",\"TPSysId\":\"574906\",\"VersionId\":[\"156116\",\"156117\",\"156118\",\"156119\"],\"CustomerSysId\":\"313217\",\"TrxId\":\"46451\",\"FareBreakdownid\":[\"369927\",\"369928\",\"369929\",\"369930\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"10\"],\"flight_booking_id\":[\"42\",\"43\",\"44\",\"45\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"36973\",\"Salutation\":\"1\",\"EmailId\":\"jitendra@catpl.co.in\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"CountryCode\":\"91\",\"MobileNo\":\"9958049006\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"36973\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-31-14-55-27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"2986c-5fc03-1f8d4-31515\",\"modified\":\"2023-01-31-14-55-27\",\"created\":\"2023-01-31-14-55-27\",\"MobileNo\":\"9958049006\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"9958049006\",\"leadEmail\":\"jitendra@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"Jitendra\",\"passenger-lastname-1\":\"Singh\",\"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\":\"2986c-5fc03-1f8d4-31515\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"313217\",\"memberId\":[\"20907\"]}}}','2023-01-31 14:55:42'),(136,'77f60-2dfe9-eebe9-34c1b','{\"BookingData\":[{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-611\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2023-02-17T08:25\",\"LocalFromTime\":\"2023-02-17 08:25\",\"FromUTCTime\":\"2023-02-17T08:25\",\"LocalToTime\":\"2023-02-17 11:15\",\"ToUTCTime\":\"2023-02-17T11:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Fri, 17 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4657,\"PublishedFareTxt\":\"4,657\",\"ApiResultIndex\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 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\":2000,\"Tax\":2657,\"YQTax\":0,\"OtherCharges\":1287,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":98,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4657,\"PublishedFare\":4490,\"OfferedFare\":3572,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-4131912441_0BLRCCUI5611_658391183117\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":9057,\"oldFare\":8959,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2657,\"BaseFareCal\":3712.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":98,\"MFT\":72,\"OT\":1287,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4490,\"CostToCustomer\":4490,\"BaseFareCal\":3712.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3712.03,\"intOfferedFare\":3572,\"intPublishFare\":4657,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"996\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-17T11:15\",\"SegFlightNumber\":\"I5-611\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-17T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"FTCB\",\"Price\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"MOCB\",\"Price\":500,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"GNCB\",\"Price\":500,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"996\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"CCU\",\"BLR\"],\"strDestinationAirportCode\":[\"BLR\",\"CCU\"],\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-611\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2023-02-17T08:25\",\"LocalFromTime\":\"2023-02-17 08:25\",\"FromUTCTime\":\"2023-02-17T08:25\",\"LocalToTime\":\"2023-02-17 11:15\",\"ToUTCTime\":\"2023-02-17T11:15\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Fri, 17 Feb\",\"ArrivalDateTxt\":\"Fri, 17 Feb\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9057,\"ApiResultIndex\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":5057,\"YQTax\":0,\"OtherCharges\":2311,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":202,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":9057,\"PublishedFare\":8723,\"OfferedFare\":6887,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":5057,\"BaseFareCal\":7167.06,\"BaseFare\":4000,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":202,\"MFT\":144,\"OT\":2311,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":1555.94,\"GSTOnMarkUp\":280.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"996\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-17T11:15\",\"SegFlightNumber\":\"I5-611\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-17T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],[{\"segmentid\":\"997\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T17:20\",\"SegFlightNumber\":\"I5-588\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-07T14:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-4131912441_0BLRCCUI5611_616471067287\",\"localFromDateTime\":\"2023-02-17 08:25\",\"localToDateTime\":\"2023-02-17 11:15\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS105400456468\",\"bookingId_TJ\":\"TJS105400456468\",\"FlightNumber\":\"I5-588\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"14:45\",\"ArrivalTime\":\"17:20\",\"TravelDate\":\"2023-02-07T14:45\",\"LocalFromTime\":\"2023-02-07 14:45\",\"FromUTCTime\":\"2023-02-07T14:45\",\"LocalToTime\":\"2023-02-07 17:20\",\"ToUTCTime\":\"2023-02-07T17:20\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Tue, 07 Feb\",\"ArrivalDateTxt\":\"Tue, 07 Feb\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4400,\"PublishedFareTxt\":\"4,400\",\"ApiResultIndex\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}},\"CCU-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"ARFT\":150,\"ARF\":3000,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 3,500 __nls__ Before 96 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\":2000,\"Tax\":2400,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4400,\"PublishedFare\":4233,\"OfferedFare\":3315,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-4131912441_1CCUBLRI5588_658445052580\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2400,\"BaseFareCal\":3455.03,\"BaseFare\":2000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":104,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4233,\"CostToCustomer\":4233,\"BaseFareCal\":3455.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":3455.03,\"intOfferedFare\":3315,\"intPublishFare\":4400,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"997\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-02-07T17:20\",\"SegFlightNumber\":\"I5-588\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-07T14:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"FTCB\",\"Price\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"997\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-01-31T15:47:03.247\",\"strTraceId\":\"22-4131912441_0CCUBLRI5588_616471342254\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"CCU\",\"BLR\"],\"strDestinationAirportCode\":[\"BLR\",\"CCU\"],\"intMemberCount\":1,\"intSourceCityId\":[14323,2262],\"intDestinationCityId\":[2262,14323],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Kolkata\",\"Bengaluru\"],\"mytrip_city_to\":[\"Bengaluru\",\"Kolkata\"],\"departure_dates\":[\"2023\\/02\\/07\",\"2023\\/02\\/17\"],\"source_city\":[\"CCU\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\"],\"destination_city\":[\"BLR\",\"CCU\"],\"ContSysId\":[\"101\",\"101\"],\"source\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\"],\"departure_date\":[\"2023\\/02\\/07\",\"2023\\/02\\/17\"],\"return_date\":[\"\",\"\"],\"from_mytrip_city\":[\" IN - Netaji Subhas Chandra Bose Intl CCU\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Bengaluru Intl Arpt BLR\",\" IN - Netaji Subhas Chandra Bose Intl CCU\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"CCU\",\"BLR\"],\"destinationCityAirportCode\":[\"BLR\",\"CCU\"],\"from\":[\"CCU\",\"BLR\"],\"to\":[\"BLR\",\"CCU\"],\"sourceCityText\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Kolkata, IN - Netaji Subhas Chandra Bose Intl CCU, India\"],\"sourceCityId\":[14323,2262],\"destinationCityId\":[2262,14323],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"77f60-2dfe9-eebe9-34c1b\"},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Kolkata&mytrip_city_to%5B%5D=Bengaluru&departure_dates%5B%5D=7+Feb+2023&source_city%5B%5D=CCU&ContSysId_1%5B%5D=101&destination_city%5B%5D=BLR&ContSysId%5B%5D=101&source%5B%5D=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU%2C+India&destination%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date%5B%5D=2023%2F02%2F07&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU&to_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&mytrip_city_from%5B%5D=Bengaluru&mytrip_city_to%5B%5D=Kolkata&departure_dates%5B%5D=17+Feb+2023&source_city%5B%5D=BLR&ContSysId_1%5B%5D=101&destination_city%5B%5D=CCU&ContSysId%5B%5D=101&source%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination%5B%5D=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU%2C+India&departure_date%5B%5D=2023%2F02%2F17&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city%5B%5D=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-31-15-46-33\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"575040\",\"TPSysId\":\"575041\",\"VersionId\":[\"156182\",\"156183\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"46464\",\"FareBreakdownid\":[\"369938\",\"369939\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"40\"],[\"41\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"46\",\"47\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"46\",\"47\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8723},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"314869\",\"TPSysId\":\"575041\",\"MasterTPSysId\":\"575040\",\"ProposalID\":\"575041\\/V1\",\"InvoiceDate\":\"2023-01-31\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-31\",\"PaymentDate\":\"2023-01-31\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8406.94,\"InvoiceStatus\":true,\"TotalSGST\":158.03,\"TotalCGST\":158.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8723,\"TotalDueAmount\":0,\"InvoiceValue\":8723,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-CCU-AirAsia India I5-611\",\"ItemQty\":1,\"ItemRates\":3453.9999999999995,\"Total\":3453.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4490,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":4331.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"CCU-BLR-AirAsia India I5-588\",\"ItemQty\":1,\"ItemRates\":3196.9999999999995,\"Total\":3196.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4233,\"MarkupType\":\"\",\"Markup\":877.97,\"TotalMarkup\":877.97,\"SubTotal\":4074.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.03,\"SGST\":79.015,\"CGST\":79.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-31 15:47:28'),(140,'52af3-6ab4a-6258e-0d794','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8263\",\"SegFlightNumberArr\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8316671380_0DELCCUSG8263_933414215063\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"07:45\",\"TravelDate\":\"2023-02-15T05:45\",\"LocalFromTime\":\"2023-02-15 05:45\",\"FromUTCTime\":\"2023-02-15T05:45\",\"LocalToTime\":\"2023-02-15 07:45\",\"ToUTCTime\":\"2023-02-15T07:45\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 15 Feb\",\"ArrivalDateTxt\":\"Wed, 15 Feb\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4868,\"PublishedFareTxt\":\"4,868\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"4-8316671380_0DELCCUSG8263_933414215063\",\"SearchFlightTraceId\":\"52af3-6ab4a-6258e-0d794\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":1953,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":163,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5153,\"PublishedFare\":4868,\"OfferedFare\":4068,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8316671380_0DELCCUSG8263_933414218690\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1953,\"BaseFareCal\":4190.03,\"BaseFare\":3200,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":163,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4868,\"CostToCustomer\":4868,\"BaseFareCal\":4190.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4190.03,\"intOfferedFare\":4068,\"intPublishFare\":5153,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"03U\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-02-15T07:45\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-15T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"07:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"2NY\"},{\"FlightNumber\":\"I5-582\",\"SegFlightNumberArr\":\"I5-582, I5-768\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8316671380_0CCUIXBI5582IXBDELI5768_933134406599\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"09:10\",\"ArrivalTime\":\"14:55\",\"TravelDate\":\"2023-02-09T09:10\",\"LocalFromTime\":\"2023-02-09 09:10\",\"FromUTCTime\":\"2023-02-09T09:10\",\"LocalToTime\":\"2023-02-09 14:55\",\"ToUTCTime\":\"2023-02-09T14:55\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Bagdogra\",\"GroundTime\":135,\"LAYOVERDuration\":\"2h 15m\",\"FlyingMinutes\":345,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"5h 45m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4954,\"PublishedFareTxt\":\"4,954\",\"ICSourceSysId\":7,\"ApiResultIndex\":\"22-8316671380_0CCUIXBI5582IXBDELI5768_933134406599\",\"SearchFlightTraceId\":\"52af3-6ab4a-6258e-0d794\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2680,\"Tax\":2559,\"YQTax\":0,\"OtherCharges\":1287,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5239,\"PublishedFare\":4954,\"OfferedFare\":4154,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8316671380_0CCUIXBI5582IXBDELI5768_933134406599\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2559,\"BaseFareCal\":4276.03,\"BaseFare\":2680,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":1287,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":677.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4954,\"CostToCustomer\":4954,\"BaseFareCal\":4276.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4276.03,\"intOfferedFare\":4154,\"intPublishFare\":5239,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"$$hashKey\":\"1HB\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2023-02-09T10:25\",\"SegFlightNumber\":\"I5-582\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-02-09T09:10\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":75,\"GroundTime\":135,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:10\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Bagdogra\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-09T14:55\",\"SegFlightNumber\":\"I5-768\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2023-02-09T12:40\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:40\",\"strArrivalDtTime\":\"14:55\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"2NZ\"}],\"FlightBookingDataInbound\":[]}','2023-01-31 16:07:33'),(144,'f9469-908d4-21bb2-6acf9','{\"BookingData\":[{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-02-21T07:10\",\"LocalFromTime\":\"2023-02-21 07:10\",\"FromUTCTime\":\"2023-02-21T07:10\",\"LocalToTime\":\"2023-02-21 09:30\",\"ToUTCTime\":\"2023-02-21T09:30\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5106,\"PublishedFareTxt\":\"5,106\",\"ApiResultIndex\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":2006,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":162,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5106,\"PublishedFare\":4821,\"OfferedFare\":4021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0227200140_0BOMDELSG8152_1758852378233\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2006,\"BaseFareCal\":4143.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":162,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4821,\"CostToCustomer\":4821,\"BaseFareCal\":4143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4143.03,\"intOfferedFare\":4021,\"intPublishFare\":5106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-21T09:30\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-21T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"BOM\"],\"strDestinationAirportCode\":[\"BOM\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-02-21T07:10\",\"LocalFromTime\":\"2023-02-21 07:10\",\"FromUTCTime\":\"2023-02-21T07:10\",\"LocalToTime\":\"2023-02-21 09:30\",\"ToUTCTime\":\"2023-02-21T09:30\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 21 Feb\",\"ArrivalDateTxt\":\"Tue, 21 Feb\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10155,\"ApiResultIndex\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6200,\"Tax\":3955,\"YQTax\":0,\"OtherCharges\":1090,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":321,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":10155,\"PublishedFare\":9585,\"OfferedFare\":7985,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3955,\"BaseFareCal\":8229.06,\"BaseFare\":6200,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":321,\"MFT\":144,\"OT\":1090,\"MU\":1600,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":1355.94,\"GSTOnMarkUp\":244.06,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-21T09:30\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-21T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"955\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T22:05\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0227200140_0BOMDELSG8152_1743416278236\",\"localFromDateTime\":\"2023-02-21 07:10\",\"localToDateTime\":\"2023-02-21 09:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS102900456544\",\"bookingId_TJ\":\"TJS102900456544\",\"FlightNumber\":\"SG-8169\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2023-02-09T20:00\",\"LocalFromTime\":\"2023-02-09 20:00\",\"FromUTCTime\":\"2023-02-09T20:00\",\"LocalToTime\":\"2023-02-09 22:05\",\"ToUTCTime\":\"2023-02-09T22:05\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5049,\"PublishedFareTxt\":\"5,049\",\"ApiResultIndex\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-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-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 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-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":1949,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5049,\"PublishedFare\":4764,\"OfferedFare\":3964,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0227200140_1DELBOMSG8169_1758853999580\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1949,\"BaseFareCal\":4086.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":518,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4764,\"CostToCustomer\":4764,\"BaseFareCal\":4086.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4086.03,\"intOfferedFare\":3964,\"intPublishFare\":5049,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"955\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T22:05\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"955\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-01-31T16:21:08.761\",\"strTraceId\":\"4-0227200140_2DELBOMSG8169_1743416531944\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"BOM\"],\"strDestinationAirportCode\":[\"BOM\",\"DEL\"],\"intMemberCount\":1,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Delhi\",\"Mumbai\"],\"mytrip_city_to\":[\"Mumbai\",\"Delhi\"],\"departure_dates\":[\"2023\\/02\\/09\",\"2023\\/02\\/21\"],\"source_city\":[\"DEL\",\"BOM\"],\"ContSysId_1\":[\"101\",\"101\"],\"destination_city\":[\"BOM\",\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Mumbai, IN - Chhatrapati Shivaji BOM, India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"departure_date\":[\"2023\\/02\\/09\",\"2023\\/02\\/21\"],\"return_date\":[\"\",\"\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Chhatrapati Shivaji BOM\"],\"to_mytrip_city\":[\" IN - Chhatrapati Shivaji BOM\",\" IN - Delhi Indira Gandhi Intl DEL\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"DEL\",\"BOM\"],\"destinationCityAirportCode\":[\"BOM\",\"DEL\"],\"from\":[\"DEL\",\"BOM\"],\"to\":[\"BOM\",\"DEL\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Mumbai, IN - Chhatrapati Shivaji BOM, India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"sourceCityId\":[7701,18676],\"destinationCityId\":[18676,7701],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"f9469-908d4-21bb2-6acf9\"},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Delhi&mytrip_city_to%5B%5D=Mumbai&departure_dates%5B%5D=9+Feb+2023&source_city%5B%5D=DEL&ContSysId_1%5B%5D=101&destination_city%5B%5D=BOM&ContSysId%5B%5D=101&source%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination%5B%5D=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&departure_date%5B%5D=2023%2F02%2F09&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city%5B%5D=+IN+-+Chhatrapati+Shivaji+BOM&mytrip_city_from%5B%5D=Mumbai&mytrip_city_to%5B%5D=Delhi&departure_dates%5B%5D=21+Feb+2023&source_city%5B%5D=BOM&ContSysId_1%5B%5D=101&destination_city%5B%5D=DEL&ContSysId%5B%5D=101&source%5B%5D=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date%5B%5D=2023%2F02%2F21&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"36973\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"36973\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-01-31-16-21-39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"575128\",\"TPSysId\":\"575129\",\"VersionId\":[\"156218\",\"156219\"],\"CustomerSysId\":\"314869\",\"TrxId\":\"46473\",\"FareBreakdownid\":[\"369946\",\"369947\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"42\"],[\"43\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"48\",\"49\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"48\",\"49\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"36973\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":9585},\"Invoicedata\":{\"AgentSysId\":\"36973\",\"CustomerSysId\":\"314869\",\"TPSysId\":\"575129\",\"MasterTPSysId\":\"575128\",\"ProposalID\":\"575129\\/V1\",\"InvoiceDate\":\"2023-01-31\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-01-31\",\"PaymentDate\":\"2023-01-31\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":9340.94,\"InvoiceStatus\":true,\"TotalSGST\":122.03,\"TotalCGST\":122.03,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":9585,\"TotalDueAmount\":0,\"InvoiceValue\":9585,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-SpiceJet SG-8152\",\"ItemQty\":1,\"ItemRates\":4020.9999999999995,\"Total\":4020.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4821,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":4698.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"36973\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-SpiceJet SG-8169\",\"ItemQty\":1,\"ItemRates\":3963.9999999999995,\"Total\":3963.9999999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4764,\"MarkupType\":\"\",\"Markup\":677.97,\"TotalMarkup\":677.97,\"SubTotal\":4641.97,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":122.03,\"SGST\":61.015,\"CGST\":61.015,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-01-31 16:23:00'),(145,'b642c-a1290-45bae-097ca','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-717\",\"keyIndex\":13,\"SegFlightNumberArr\":\"G8-717 +1\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7986811122_13DELAMDG8717AMDBOMG8537_1617100354242\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"20:10\",\"TravelDate\":\"2023-02-02T16:15\",\"LocalFromTime\":\"2023-02-02 16:15\",\"FromUTCTime\":\"2023-02-02T16:15\",\"LocalToTime\":\"2023-02-02 20:10\",\"ToUTCTime\":\"2023-02-02T20:10\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Thu, 02 Feb\",\"ArrivalDateTxt\":\"Thu, 02 Feb\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":60,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5268,\"PublishedFareTxt\":\"5,268\",\"ApiResultIndex\":\"1-7986811122_13DELAMDG8717AMDBOMG8537_1617100354045\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b642c-a1290-45bae-097ca\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2500,\"Tax\":2935,\"YQTax\":700,\"OtherCharges\":963,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5435,\"PublishedFare\":5268,\"PublishedFarePerPax\":5268,\"OfferedFare\":4350,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-7986811122_13DELAMDG8717AMDBOMG8537_1617100354242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":2935,\"BaseFareCal\":4490.03,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":700,\"AGST\":0,\"MFT\":72,\"OT\":963,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":5268,\"CostToCustomer\":5268,\"BaseFareCal\":4490.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4490.03,\"intOfferedFare\":4350,\"intPublishFare\":5435,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06C\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-02-02T17:50\",\"SegFlightNumber\":\"G8-717\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-02T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":65,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-02T20:10\",\"SegFlightNumber\":\"G8-537\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-02-02T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"20:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-02-01 17:17:14'),(146,'7016e-c6171-20927-3a1cd','{\"FlightBookingData\":[{\"FlightNumber\":\"IX-9015\",\"keyIndex\":138,\"SegFlightNumberArr\":\"IX-9015\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6584910993_13DELBOMIX9015_3391358004428\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2023-02-09T15:00\",\"LocalFromTime\":\"2023-02-09 15:00\",\"FromUTCTime\":\"2023-02-09T15:00\",\"LocalToTime\":\"2023-02-09 17:30\",\"ToUTCTime\":\"2023-02-09T17:30\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Thu, 09 Feb\",\"ArrivalDateTxt\":\"Thu, 09 Feb\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4826,\"PublishedFareTxt\":\"4,826\",\"ApiResultIndex\":\"22-6584910993_13DELBOMIX9015_3391358004428\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"7016e-c6171-20927-3a1cd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2888,\"Tax\":2105,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":144,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4993,\"PublishedFare\":4826,\"PublishedFarePerPax\":4826,\"OfferedFare\":3908,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6584910993_13DELBOMIX9015_3391358004428\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":285,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2105,\"BaseFareCal\":4048.03,\"BaseFare\":2888,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":144,\"MFT\":72,\"OT\":689,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":140.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":777.97,\"GSTOnMarkUp\":140.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":777.97,\"IntTaxOnAgencyFixMarkUp\":140.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":4826,\"CostToCustomer\":4826,\"BaseFareCal\":4048.03,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":4048.03,\"intOfferedFare\":3908,\"intPublishFare\":4993,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"100.00\",\"CommisionPass\":285,\"AddiTaxOnMarkup\":18,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":100},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0A3\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-09T17:30\",\"SegFlightNumber\":\"IX-9015\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-02-09T15:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"014\"},{\"keyIndex\":109,\"FlightNumber\":\"SG-8702\",\"SegFlightNumberArr\":\"SG-8702\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6584910993_1BOMDELSG8702_3392004945533\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2023-02-10T10:05\",\"LocalFromTime\":\"2023-02-10 10:05\",\"FromUTCTime\":\"2023-02-10T10:05\",\"LocalToTime\":\"2023-02-10 12:20\",\"ToUTCTime\":\"2023-02-10T12:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4821,\"PublishedFareTxt\":\"4,821\",\"ApiResultIndex\":\"4-6584910993_1BOMDELSG8702_3392004945000\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"7016e-c6171-20927-3a1cd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":2006,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":162,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5106,\"PublishedFare\":4821,\"PublishedFarePerPax\":4821,\"OfferedFare\":4021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6584910993_1BOMDELSG8702_3392004945533\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2006,\"BaseFareCal\":4143.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":162,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4821,\"CostToCustomer\":4821,\"BaseFareCal\":4143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4143.03,\"intOfferedFare\":4021,\"intPublishFare\":5106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"11U\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-10T12:20\",\"SegFlightNumber\":\"SG-8702\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-10T10:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"096\"}],\"FlightBookingDataInbound\":{\"keyIndex\":109,\"FlightNumber\":\"SG-8702\",\"SegFlightNumberArr\":\"SG-8702\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6584910993_1BOMDELSG8702_3392004945533\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2023-02-10T10:05\",\"LocalFromTime\":\"2023-02-10 10:05\",\"FromUTCTime\":\"2023-02-10T10:05\",\"LocalToTime\":\"2023-02-10 12:20\",\"ToUTCTime\":\"2023-02-10T12:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 10 Feb\",\"ArrivalDateTxt\":\"Fri, 10 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4821,\"PublishedFareTxt\":\"4,821\",\"ApiResultIndex\":\"4-6584910993_1BOMDELSG8702_3392004945000\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"7016e-c6171-20927-3a1cd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3100,\"Tax\":2006,\"YQTax\":0,\"OtherCharges\":572,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":162,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":5106,\"PublishedFare\":4821,\"PublishedFarePerPax\":4821,\"OfferedFare\":4021,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6584910993_1BOMDELSG8702_3392004945533\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2006,\"BaseFareCal\":4143.03,\"BaseFare\":3100,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":162,\"MFT\":72,\"OT\":572,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4821,\"CostToCustomer\":4821,\"BaseFareCal\":4143.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":4143.03,\"intOfferedFare\":4021,\"intPublishFare\":5106,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"11U\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-02-10T12:20\",\"SegFlightNumber\":\"SG-8702\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-02-10T10:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"096\"}}','2023-02-08 16:24:18'),(149,'3867c-f56d4-4b7f5-1adb4','{\"FlightBookingData\":[{\"bookingId\":\"BKRS105200474809\",\"bookingId_TJ\":\"TJS105200474809\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:35\",\"ArrivalTime\":\"07:15\",\"TravelDate\":\"2023-02-22T05:35\",\"LocalFromTime\":\"2023-02-22 05:35\",\"FromUTCTime\":\"2023-02-22T05:35\",\"LocalToTime\":\"2023-02-22 07:15\",\"ToUTCTime\":\"2023-02-22T07:15\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 22 Feb\",\"ArrivalDateTxt\":\"Wed, 22 Feb\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4368,\"PublishedFareTxt\":\"4,368\",\"ApiResultIndex\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1970,\"Tax\":2398,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4368,\"PublishedFare\":4083,\"OfferedFare\":3283,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-9261820912_0BLRBOMI5941_20666983811079\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2398,\"BaseFareCal\":3405.03,\"BaseFare\":1970,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":4083,\"CostToCustomer\":4083,\"BaseFareCal\":3405.03,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":3405.03,\"intOfferedFare\":3283,\"intPublishFare\":4368,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"334\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-22T07:15\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-22T05:35\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:35\",\"strArrivalDtTime\":\"07:15\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"KMCB\",\"Price\":0,\"Description\":\"Kuttu Ki Poori with Till wale Aloo and Makhana Kheer\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"FTCB\",\"Price\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XCCB\",\"Price\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"SICB\",\"Price\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"RICB\",\"Price\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PTCB\",\"Price\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"MOCB\",\"Price\":600,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GNCB\",\"Price\":600,\"Description\":\"Galouti Kebab with Ulte Tawe Ka Paratha\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"COCB\",\"Price\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CJCB\",\"Price\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"AMCB\",\"Price\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3867c-f56d4-4b7f5-1adb4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-02-21T12:50:42.893\",\"strTraceId\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-02-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105200474809\",\"bookingId_TJ\":\"TJS105200474809\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"strTraceId\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:35\",\"ArrivalTime\":\"07:15\",\"TravelDate\":\"2023-02-22T05:35\",\"LocalFromTime\":\"2023-02-22 05:35\",\"FromUTCTime\":\"2023-02-22T05:35\",\"LocalToTime\":\"2023-02-22 07:15\",\"ToUTCTime\":\"2023-02-22T07:15\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 22 Feb\",\"ArrivalDateTxt\":\"Wed, 22 Feb\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4368,\"ApiResultIndex\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"3867c-f56d4-4b7f5-1adb4\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-02-21T12:50:42.893\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1970,\"Tax\":2398,\"YQTax\":0,\"OtherCharges\":1024,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":4368,\"PublishedFare\":4083,\"OfferedFare\":3283,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2398,\"BaseFareCal\":3405.03,\"BaseFare\":1970,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":102,\"MFT\":72,\"OT\":1024,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"334\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-02-22T07:15\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-02-22T05:35\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:35\",\"strArrivalDtTime\":\"07:15\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-9261820912_0BLRBOMI5941_20531813478990\",\"localFromDateTime\":\"2023-02-22 05:35\",\"localToDateTime\":\"2023-02-22 07:15\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"FlightBookingDataInbound\":null,\"validateCoupon\":{\"status\":false,\"couponprice\":0,\"code\":\"\"},\"validateData\":{\"AgencySysId\":\"36973\",\"ServiceFee\":677.97,\"CriteriaValue\":4083,\"couponcode\":\"ECONOMY\",\"TravelDate\":\"2023-02-22\",\"ProductType\":1}}','2023-02-21 12:49:37'),(150,'45153-f6656-fa40f-e5f34','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6554\",\"keyIndex\":6,\"SegFlightNumberArr\":\"6E-6554 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3004104170_6DELSXR6E6554SXRATQ6E478_19414906423893\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"15:35\",\"TravelDate\":\"2023-03-29T08:35\",\"LocalFromTime\":\"2023-03-29 08:35\",\"FromUTCTime\":\"2023-03-29T08:35\",\"LocalToTime\":\"2023-03-29 15:35\",\"ToUTCTime\":\"2023-03-29T15:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":265,\"LAYOVERDuration\":\"4h 25m\",\"FlyingMinutes\":420,\"DepartureDateTxt\":\"Wed, 29 Mar\",\"ArrivalDateTxt\":\"Wed, 29 Mar\",\"FlightDuration\":\"7h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"974\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":13441,\"PublishedFareTxt\":\"13,441\",\"ApiResultIndex\":\"5-3004104170_6DELSXR6E6554SXRATQ6E478_19414906423236\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"45153-f6656-fa40f-e5f34\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11501,\"Tax\":1939.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":583,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":13440.7,\"PublishedFare\":13441,\"PublishedFarePerPax\":13441,\"OfferedFare\":12640.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3004104170_6DELSXR6E6554SXRATQ6E478_19414906423893\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":\"1\",\"TaxIN\":1939.7,\"BaseFareCal\":12762.73,\"BaseFare\":11501,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":583,\"MFT\":2.7,\"OT\":539,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":122.03,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":677.97,\"GSTOnMarkUp\":122.03,\"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\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":677.97,\"IntTaxOnAgencyFixMarkUp\":122.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":13440.7,\"CostToCustomer\":13440.7,\"BaseFareCal\":12762.73,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":12762.73,\"intOfferedFare\":12640.7,\"intPublishFare\":13440.7,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"02U\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-03-29T10:05\",\"SegFlightNumber\":\"6E-6554\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-03-29T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":265,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"10:05\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 25m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-03-29T15:35\",\"SegFlightNumber\":\"6E-478\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-03-29T14:30\",\"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\":null,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"15:35\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-03-21 12:31:42');
INSERT INTO `tbl_temp_data` VALUES (151,'13000-cb68a-41604-ff385','{\"FlightBookingData\":[{\"FlightNumber\":\"EY-5419\",\"keyIndex\":28,\"SegFlightNumberArr\":\"EY-5419 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"16:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T16:35\",\"LocalFromTime\":\"2023-04-12 16:35\",\"FromUTCTime\":\"2023-04-12T16:35\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1165,\"LAYOVERDuration\":\"19h 25m\",\"FlyingMinutes\":1535,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"25h 35m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03C\"},\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T18:35\",\"SegFlightNumber\":\"EY-5419\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T16:35\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":1165,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:35\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"19h 25m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"EY-5415\",\"keyIndex\":20,\"SegFlightNumberArr\":\"EY-5415 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_0XNBAUHEY5415AUHBLREY236_6326033969913\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T09:35\",\"LocalFromTime\":\"2023-04-12 09:35\",\"FromUTCTime\":\"2023-04-12T09:35\",\"LocalToTime\":\"2023-04-12 19:40\",\"ToUTCTime\":\"2023-04-12T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":145,\"LAYOVERDuration\":\"2h 25m\",\"FlyingMinutes\":515,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Wed, 12 Apr\",\"FlightDuration\":\"8h 35m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_0XNBAUHEY5415AUHBLREY236_6326033969913\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_0XNBAUHEY5415AUHBLREY236_6326033969913\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T11:35\",\"SegFlightNumber\":\"EY-5415\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":145,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"11:35\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"2h 25m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-12T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-12T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03E\"},{\"FlightNumber\":\"EY-5413\",\"keyIndex\":21,\"SegFlightNumberArr\":\"EY-5413 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_1XNBAUHEY5413AUHBLREY236_6326033973548\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"06:05\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T06:05\",\"LocalFromTime\":\"2023-04-12 06:05\",\"FromUTCTime\":\"2023-04-12T06:05\",\"LocalToTime\":\"2023-04-12 19:40\",\"ToUTCTime\":\"2023-04-12T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":725,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Wed, 12 Apr\",\"FlightDuration\":\"12h 5m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_1XNBAUHEY5413AUHBLREY236_6326033973548\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_1XNBAUHEY5413AUHBLREY236_6326033973548\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T08:05\",\"SegFlightNumber\":\"EY-5413\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T06:05\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":355,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:05\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-12T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-12T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03F\"},{\"FlightNumber\":\"EY-5411\",\"keyIndex\":22,\"SegFlightNumberArr\":\"EY-5411 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_2XNBAUHEY5411AUHBLREY236_6326033976551\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:10\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T04:10\",\"LocalFromTime\":\"2023-04-12 04:10\",\"FromUTCTime\":\"2023-04-12T04:10\",\"LocalToTime\":\"2023-04-12 19:40\",\"ToUTCTime\":\"2023-04-12T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":470,\"LAYOVERDuration\":\"7h 50m\",\"FlyingMinutes\":840,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Wed, 12 Apr\",\"FlightDuration\":\"14h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_2XNBAUHEY5411AUHBLREY236_6326033976551\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_2XNBAUHEY5411AUHBLREY236_6326033976551\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T06:10\",\"SegFlightNumber\":\"EY-5411\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T04:10\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":470,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"7h 50m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-12T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-12T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03G\"},{\"FlightNumber\":\"EY-5429\",\"keyIndex\":23,\"SegFlightNumberArr\":\"EY-5429 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_3XNBAUHEY5429AUHBLREY236_6326033979054\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"23:00\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T23:00\",\"LocalFromTime\":\"2023-04-12 23:00\",\"FromUTCTime\":\"2023-04-12T23:00\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":780,\"LAYOVERDuration\":\"13h 0m\",\"FlyingMinutes\":1150,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"19h 10m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_3XNBAUHEY5429AUHBLREY236_6326033979054\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_3XNBAUHEY5429AUHBLREY236_6326033979054\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-13T01:00\",\"SegFlightNumber\":\"EY-5429\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T23:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":780,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 0m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03H\"},{\"FlightNumber\":\"EY-5427\",\"keyIndex\":24,\"SegFlightNumberArr\":\"EY-5427 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_4XNBAUHEY5427AUHBLREY236_6326033981253\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T22:05\",\"LocalFromTime\":\"2023-04-12 22:05\",\"FromUTCTime\":\"2023-04-12T22:05\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":835,\"LAYOVERDuration\":\"13h 55m\",\"FlyingMinutes\":1205,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"20h 5m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_4XNBAUHEY5427AUHBLREY236_6326033981253\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_4XNBAUHEY5427AUHBLREY236_6326033981253\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-13T00:05\",\"SegFlightNumber\":\"EY-5427\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":835,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"00:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 55m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03I\"},{\"FlightNumber\":\"EY-5425\",\"keyIndex\":25,\"SegFlightNumberArr\":\"EY-5425 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_5XNBAUHEY5425AUHBLREY236_6326033983460\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"20:40\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T20:40\",\"LocalFromTime\":\"2023-04-12 20:40\",\"FromUTCTime\":\"2023-04-12T20:40\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":920,\"LAYOVERDuration\":\"15h 20m\",\"FlyingMinutes\":1290,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"21h 30m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_5XNBAUHEY5425AUHBLREY236_6326033983460\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_5XNBAUHEY5425AUHBLREY236_6326033983460\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T22:40\",\"SegFlightNumber\":\"EY-5425\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":920,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"15h 20m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03J\"},{\"FlightNumber\":\"EY-5423\",\"keyIndex\":26,\"SegFlightNumberArr\":\"EY-5423 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_6XNBAUHEY5423AUHBLREY236_6326033985725\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"19:00\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T19:00\",\"LocalFromTime\":\"2023-04-12 19:00\",\"FromUTCTime\":\"2023-04-12T19:00\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1020,\"LAYOVERDuration\":\"17h 0m\",\"FlyingMinutes\":1390,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"23h 10m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_6XNBAUHEY5423AUHBLREY236_6326033985725\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_6XNBAUHEY5423AUHBLREY236_6326033985725\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T21:00\",\"SegFlightNumber\":\"EY-5423\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T19:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":1020,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:00\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"17h 0m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03K\"},{\"FlightNumber\":\"EY-5421\",\"keyIndex\":27,\"SegFlightNumberArr\":\"EY-5421 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_7XNBAUHEY5421AUHBLREY236_6326033991214\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"18:05\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T18:05\",\"LocalFromTime\":\"2023-04-12 18:05\",\"FromUTCTime\":\"2023-04-12T18:05\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1075,\"LAYOVERDuration\":\"17h 55m\",\"FlyingMinutes\":1445,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"24h 5m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_7XNBAUHEY5421AUHBLREY236_6326033991214\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_7XNBAUHEY5421AUHBLREY236_6326033991214\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T20:05\",\"SegFlightNumber\":\"EY-5421\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T18:05\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":1075,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:05\",\"strArrivalDtTime\":\"20:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"17h 55m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03L\"},{\"FlightNumber\":\"EY-5419\",\"keyIndex\":28,\"SegFlightNumberArr\":\"EY-5419 +1\",\"AirlineName\":\"Etihad airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"16:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2023-04-12T16:35\",\"LocalFromTime\":\"2023-04-12 16:35\",\"FromUTCTime\":\"2023-04-12T16:35\",\"LocalToTime\":\"2023-04-13 19:40\",\"ToUTCTime\":\"2023-04-13T19:40\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1165,\"LAYOVERDuration\":\"19h 25m\",\"FlyingMinutes\":1535,\"DepartureDateTxt\":\"Wed, 12 Apr\",\"ArrivalDateTxt\":\"Thu, 13 Apr\",\"FlightDuration\":\"25h 35m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11134,\"PublishedFareTxt\":\"11,134\",\"ApiResultIndex\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13000-cb68a-41604-ff385\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":6653.7,\"YQTax\":3948,\"OtherCharges\":2688,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11133.7,\"PublishedFare\":11134,\"PublishedFarePerPax\":11134,\"OfferedFare\":11133.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-9855471787_8XNBAUHEY5419AUHBLREY236_6326033993733\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":0,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":6653.7,\"BaseFareCal\":11133.7,\"BaseFare\":4480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":3948,\"AGST\":0,\"MFT\":2.7,\"OT\":2688,\"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\":\"0 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-04-12T18:35\",\"SegFlightNumber\":\"EY-5419\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-04-12T16:35\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":1165,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:35\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"19h 25m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-04-13T19:40\",\"SegFlightNumber\":\"EY-236\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-04-13T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/uamongus.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03M\"}]}],\"FlightBookingDataInbound\":null}','2023-03-30 14:26:53'),(155,'e5eec-82301-a5136-576b7','{\"BookingData\":[{\"bookingId\":\"BKRS105500547534\",\"bookingId_TJ\":\"TJS105500547534\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-05-11T14:30\",\"LocalFromTime\":\"2023-05-11 14:30\",\"FromUTCTime\":\"2023-05-11T14:30\",\"LocalToTime\":\"2023-05-12 00:40\",\"ToUTCTime\":\"2023-05-12T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8673120993_0IXJDELSG161DELBLRSG8143_97470974640024\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"507\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-11T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-11T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"508\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-11T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"507\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e5eec-82301-a5136-576b7\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-28T15:45:50.016\",\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-11 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105500547534\",\"bookingId_TJ\":\"TJS105500547534\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-05-11T14:30\",\"LocalFromTime\":\"2023-05-11 14:30\",\"FromUTCTime\":\"2023-05-11T14:30\",\"LocalToTime\":\"2023-05-12 00:40\",\"ToUTCTime\":\"2023-05-12T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"ApiResultIndex\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"e5eec-82301-a5136-576b7\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-28T15:45:50.016\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"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\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"507\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-11T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-11T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"508\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-11T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8673120993_1IXJDELSG161DELBLRSG8143_97434910632825\",\"localFromDateTime\":\"2023-05-11 14:30\",\"localToDateTime\":\"2023-05-12 00:40\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"11\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"11\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-11\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"e5eec-82301-a5136-576b7\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=11%2F05%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-15-45-03\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"678037\",\"TPSysId\":\"678038\",\"VersionId\":[\"198118\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"55709\",\"FareBreakdownid\":[\"376241\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"44\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"50\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"50\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6559},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"678038\",\"MasterTPSysId\":\"678037\",\"ProposalID\":\"678038\\/V1\",\"InvoiceDate\":\"2023-04-28\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-04-28\",\"PaymentDate\":\"2023-04-28\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":6559,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6559,\"TotalDueAmount\":0,\"InvoiceValue\":6559,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-SpiceJet SG-161\",\"ItemQty\":1,\"ItemRates\":6559,\"Total\":6559,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6559,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6559,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-04-28 15:46:00'),(156,'4b8f1-5fb4f-33b4a-b7a8b','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid5556847538-41415276\",\"name\":\"Goroomgo Viren Plaza Agra\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_z.jpg\",\"sz\":\"XL\"}],\"des\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Stay in one of 40 guestrooms featuring LCD televisions. Your memory foam bed comes with down comforters and Egyptian cotton sheets. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms feature showers with rainfall showerheads and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards, Discover, American Express, Cash, JCB International, Mastercard, UnionPay\\\",\\\"dining\\\":\\\"Continental breakfasts are available daily from 6:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Agra, Goroomgo Viren Plaza Agra is within a 15-minute drive of Agra Marble Emporium and Sadar Bazar.  This hotel is 4.1 mi (6.5 km) from Taj Mahal and 1.6 mi (2.6 km) from Jama Masjid.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Agra Marble Emporium - 2.4 km \\/ 1.5 mi  Jama Masjid - 2.6 km \\/ 1.6 mi  Sadar Bazar - 2.6 km \\/ 1.6 mi  Kinari Bazar - 2.8 km \\/ 1.7 mi  Mankameshwar Temple - 3.1 km \\/ 1.9 mi  Agra Fort - 3.2 km \\/ 2 mi  St. John\'s College - 4.2 km \\/ 2.6 mi  Mosque and the Jawab - 4.6 km \\/ 2.9 mi  Taj Mahal - 5 km \\/ 3.1 mi  Itmad-ud-Daulah\'s Tomb - 5.5 km \\/ 3.4 mi  Chini ka Rauza - 6.8 km \\/ 4.2 mi  Ram Bagh - 7.1 km \\/ 4.4 mi  Soami Bagh Temple - 7.4 km \\/ 4.6 mi  Tomb of Akbar the Great - 10.2 km \\/ 6.3 mi  Mariam\'s Tomb - 10.9 km \\/ 6.8 mi  The nearest major airport is Agra (AGR-Kheria) - 4 km \\/ 2.5 mi\\\",\\\"headline\\\":\\\"Near Agra Marble Emporium\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"78.00173\",\"lt\":\"27.16699\"},\"ad\":{\"adr\":\"1st Floor Maa Vaishno Complex, Near\",\"adr2\":\"Bus Stand, Nagariya, Agra, Uttar\",\"postalCode\":\"282001\",\"city\":{\"name\":\"Agra\"},\"state\":{\"name\":\"Uttar Pradesh\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"Agra\",\"sn\":\"Uttar Pradesh\",\"cn\":\"India\"},\"fl\":[\"Laundry Services\",\"Disable Friendly\",\"Luggage storage\",\"Safe deposit box\",\"24-hour front desk\",\"Breakfast\",\"Well-lit path to entrance\",\"Non Smoking\",\"Stair-free path to entrance\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Free self parking\",\"Concierge Services\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-0-8052722777\"},\"ht\":[],\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"This property advises that enhanced cleaning and guest safety measures are currently in place.The property is cleaned and disinfected using an electrostatic sprayer; disinfectant is used to clean the property; commonly-touched surfaces are cleaned with disinfectant between stays; bed sheets and towels are laundered at a temperature of at least 60\\u00b0C\\/140\\u00b0F; guestroom doors are sealed after cleaning.Personal protective equipment, including masks and gloves, will be available to guests.Social distancing measures are in place; staff at the property wear personal protective equipment; a shield is in place between staff and guests in main contact areas; periodic temperature checks are conducted on staff; temperature checks are available to guests; guests are provided with hand sanitizer; cashless payment methods are available for all transactions; contactless room service is available.Contactless check-in and contactless check-out are available.Enhanced food service safety measures are in place.Individually-wrapped food options are available for breakfast, lunch, and dinner, and also through room service.Each guestroom is kept vacant for a minimum of 24 hours between bookings.This property affirms that it adheres to the cleaning and disinfection practices of: COVID-19 Guidelines (WHO); Operational Recommendations for Hotels (FHRAI - India); COVID-19 Guidelines (CDC); Safe Travels (WTTC - Global); WELL Health-Safety Rating (IWBI); GBAC STAR Facility Accreditation (global expert); Bureau Veritas (3rd party expert - Global). \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"This property doesn\'t offer after-hours check-in. Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Fee for continental breakfast: INR 120 for adults and INR 60 for children (approximately)                                The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"316254491_385690002_37321--1\",\"rc\":\"Standard Double Room-1 King Bed - Package Deal\",\"rt\":\"Standard Double Room-1 King Bed - Package Deal\",\"adt\":1,\"chd\":0,\"des\":\"1 King Bed150-sq-foot room with city views Layout - Separate sitting areaInternet - Free WiFi 25+ Mbps Entertainment - 24-inch LCD TV with satellite channelsSleep - Memory foam bed, Egyptian cotton linens, a down duvet, a pillow menu, and blackout drapes\\/curtains Bathroom - Private bathroom, bathrobes, and a shower with a rainfall showerheadPractical - Washing machine, safe, and free newspaperComfort - Fresh bed sheets (on request), fresh towels (on request), and daily housekeepingAccessibility - Lever door handles and doorbell and phone notificationNeed to Know - No cribs (infant beds) or rollaway\\/extra beds availableSmoking And Non-Smoking\",\"mb\":\"ROOM ONLY\",\"tp\":510.51,\"tfcs\":{\"CMU\":0,\"NF\":510.51,\"BF\":498.71,\"TAF\":11.8,\"TF\":510.51},\"tafcs\":{\"TAF\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":498.71,\"TAF\":11.8,\"TF\":510.51,\"NF\":510.51},\"afc\":{\"TAF\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10}}}],\"fcs\":[\"Free self parking\",\"Free WiFi\"],\"imgs\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/w3200h2140x0y0-7ae129ff_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/w3200h2140x0y0-7ae129ff_z.jpg\",\"sz\":\"XL\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/b33d98c0_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/b33d98c0_z.jpg\",\"sz\":\"XL\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/1705382a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/1705382a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0fea3517_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0fea3517_z.jpg\",\"sz\":\"XL\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/79735fa6_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"316254491\",\"320590930\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/79735fa6_z.jpg\",\"sz\":\"XL\",\"rids\":[\"316254491\",\"320590930\"]}],\"checkInDate\":\"2023-05-11\",\"checkOutDate\":\"2023-05-12\",\"radi\":{\"rid\":\"316254491\",\"mga\":3,\"maa\":2,\"mca\":2,\"vi\":[\"City view\"],\"bds\":[{\"bt\":\"KingBed\",\"bd\":\"1 King Bed\",\"bs\":\"King\",\"bc\":1}],\"ar\":{\"asm\":\"14\",\"asf\":\"150\"}},\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\",\"Free WiFi\"]}]}}],\"id\":\"42_5_76021512\",\"tp\":510.51,\"cnp\":{\"id\":\"316254491_385690002_37321--48788686\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-04-28T15:53:40.744\",\"tdt\":\"2023-05-08T06:00\",\"am\":0},{\"fdt\":\"2023-05-08T06:00\",\"tdt\":\"2023-05-11T12:00\",\"am\":498.71},{\"fdt\":\"2023-05-11T12:00\",\"tdt\":\"2023-05-12T23:59\",\"am\":498.71}]},\"ddt\":\"2023-05-08T06:00\",\"oai\":{\"sid\":\"42\"},\"ispr\":true,\"ipr\":true,\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":498.71}],\"uid\":\"41415276\",\"lhc\":\"586049\"},\"bookingId\":\"TJS208300547555\",\"query\":{\"checkinDate\":\"2023-05-11\",\"checkoutDate\":\"2023-05-12\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid5556847538\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1150}},\"hotelbookingid\":\"7\",\"SearchHotelTraceId\":\"4b8f1-5fb4f-33b4a-b7a8b\",\"CustomerSession\":{\"bookingId\":\"4b8f1-5fb4f-33b4a-b7a8b\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"4b8f1-5fb4f-33b4a-b7a8b\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"316254491_385690002_37321--1\",\"RoomCategory\":\"Standard Double Room-1 King Bed - Package Deal\",\"RoomType\":\"Standard Double Room-1 King Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":510.51,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":510.51,\"TotalRoomPrice\":510.51,\"TotalFare\":510.51,\"TotalBaseFare\":498.71,\"TotalNetFare\":510.51,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":498.71,\"TAF\":11.8,\"TF\":510.51,\"NF\":510.51},\"afc\":{\"TAF\":{\"SBP\":445.14,\"SGP\":498.71,\"SNP\":451.69,\"SAC\":47.02,\"MFT\":1.8,\"TTSF\":53.57,\"TMF\":47.02,\"SRC\":0,\"TSF\":53.57,\"MF\":10}}}],\"PriceWithMarkup\":510.51,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":510.51,\"pernightperroomprice\":510.51,\"RoomPrice\":510.51,\"withmarkupprice\":510.51,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"42_5_76021512\",\"RoomTotalPrice\":510.51,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid5556847538-41415276\",\"HotemName\":\"Goroomgo Viren Plaza Agra\",\"HotelDescription\":\"{\\\"spoken_languages\\\":\\\"English\\\",\\\"rooms\\\":\\\"Stay in one of 40 guestrooms featuring LCD televisions. Your memory foam bed comes with down comforters and Egyptian cotton sheets. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms feature showers with rainfall showerheads and complimentary toiletries.\\\",\\\"onsite_payments\\\":\\\"Carte Blanche, Visa, Diners Club, Debit cards, Discover, American Express, Cash, JCB International, Mastercard, UnionPay\\\",\\\"dining\\\":\\\"Continental breakfasts are available daily from 6:00 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in Agra, Goroomgo Viren Plaza Agra is within a 15-minute drive of Agra Marble Emporium and Sadar Bazar.  This hotel is 4.1 mi (6.5 km) from Taj Mahal and 1.6 mi (2.6 km) from Jama Masjid.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Agra Marble Emporium - 2.4 km \\/ 1.5 mi  Jama Masjid - 2.6 km \\/ 1.6 mi  Sadar Bazar - 2.6 km \\/ 1.6 mi  Kinari Bazar - 2.8 km \\/ 1.7 mi  Mankameshwar Temple - 3.1 km \\/ 1.9 mi  Agra Fort - 3.2 km \\/ 2 mi  St. John\'s College - 4.2 km \\/ 2.6 mi  Mosque and the Jawab - 4.6 km \\/ 2.9 mi  Taj Mahal - 5 km \\/ 3.1 mi  Itmad-ud-Daulah\'s Tomb - 5.5 km \\/ 3.4 mi  Chini ka Rauza - 6.8 km \\/ 4.2 mi  Ram Bagh - 7.1 km \\/ 4.4 mi  Soami Bagh Temple - 7.4 km \\/ 4.6 mi  Tomb of Akbar the Great - 10.2 km \\/ 6.3 mi  Mariam\'s Tomb - 10.9 km \\/ 6.8 mi  The nearest major airport is Agra (AGR-Kheria) - 4 km \\/ 2.5 mi\\\",\\\"headline\\\":\\\"Near Agra Marble Emporium\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e3188226_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/e5b834bc_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/77000000\\/76030000\\/76021600\\/76021512\\/0c44f88e_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.00173\",\"lt\":\"27.16699\"},\"HotelAddress\":\"1st Floor Maa Vaishno Complex, Near\",\"HotelCity\":\"Agra\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Disable Friendly\",\"Luggage storage\",\"Safe deposit box\",\"24-hour front desk\",\"Breakfast\",\"Well-lit path to entrance\",\"Non Smoking\",\"Stair-free path to entrance\",\"Laundry Services\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"Free self parking\",\"Concierge Services\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-05-11\",\"checkoutDate\":\"2023-05-12\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"678057\",\"TPSysId\":\"678058\",\"VersionId\":\"2044235\",\"CustomerSysId\":\"383250\",\"TrxId\":\"55710\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-04-28 15:53:06'),(159,'7fd83-07be1-28c2e-f3793','{\"FlightBookingData\":[{\"bookingId\":\"BKRS103500547672\",\"bookingId_TJ\":\"TJS103500547672\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-05-04T13:55\",\"LocalFromTime\":\"2023-05-04 13:55\",\"FromUTCTime\":\"2023-05-04T13:55\",\"LocalToTime\":\"2023-05-06 14:50\",\"ToUTCTime\":\"2023-05-06T14:50\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":2720,\"LAYOVERDuration\":\"45h 20m\",\"FlyingMinutes\":2935,\"DepartureDateTxt\":\"Thu, 04 May\",\"ArrivalDateTxt\":\"Sat, 06 May\",\"FlightDuration\":\"48h 55m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":21601,\"PublishedFareTxt\":\"21,601\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARF\":3920,\"ARFT\":196,\"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,\"CCF\":50,\"ACF\":3920,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19085,\"Tax\":2516,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":971,\"CarrierMiscFee\":330,\"MUFee\":0,\"intPublishedFare\":21601,\"PublishedFare\":21316,\"OfferedFare\":21316,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7316990278_0IXJSXRUK612SXRDELUK644DELATQUK691_100548605279691\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2516,\"BaseFareCal\":21316,\"BaseFare\":19085,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":971,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":330,\"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 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":21316,\"CostToCustomer\":21316,\"BaseFareCal\":21316,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":21316,\"intOfferedFare\":21316,\"intPublishFare\":21601,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"332\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-05-04T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-04T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":1380,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"333\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-05T15:20\",\"SegFlightNumber\":\"UK-644\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-05-05T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":1340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"22h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-05-06T14:50\",\"SegFlightNumber\":\"UK-691\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-06T13:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:40\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"332\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7fd83-07be1-28c2e-f3793\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-28T16:37:07.645\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103500547672\",\"bookingId_TJ\":\"TJS103500547672\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2023-05-04T13:55\",\"LocalFromTime\":\"2023-05-04 13:55\",\"FromUTCTime\":\"2023-05-04T13:55\",\"LocalToTime\":\"2023-05-06 14:50\",\"ToUTCTime\":\"2023-05-06T14:50\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":2720,\"LAYOVERDuration\":\"45h 20m\",\"FlyingMinutes\":2935,\"DepartureDateTxt\":\"Thu, 04 May\",\"ArrivalDateTxt\":\"Sat, 06 May\",\"FlightDuration\":\"48h 55m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":21601,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"7fd83-07be1-28c2e-f3793\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-28T16:37:07.645\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19085,\"Tax\":2516,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":971,\"CarrierMiscFee\":330,\"MUFee\":0,\"intPublishedFare\":21601,\"PublishedFare\":21316,\"OfferedFare\":21316,\"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\":\"1\",\"TaxIN\":2516,\"BaseFareCal\":21316,\"BaseFare\":19085,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":971,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":330,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"332\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-05-04T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-05-04T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":1380,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"333\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-05T15:20\",\"SegFlightNumber\":\"UK-644\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-05-05T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":1340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"22h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-05-06T14:50\",\"SegFlightNumber\":\"UK-691\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-06T13:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:40\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-05-04 13:55\",\"localToDateTime\":\"2023-05-06 14:50\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"51\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"11\"],\"flight_booking_id\":[\"51\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-16-40-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"11\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-16-40-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"7fd83-07be1-28c2e-f3793\",\"modified\":\"2023-04-28-16-40-58\",\"created\":\"2023-04-28-16-40-58\",\"CustomerMemberSysId\":\"11\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"11\"],\"flight_booking_customer\":[[\"45\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Amritsar\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"departure_date\":\"04\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"IXJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"sourceCityId\":13021,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"04\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-04\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"7fd83-07be1-28c2e-f3793\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-ATQ\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"678197\",\"TPSysId\":\"678198\",\"VersionId\":[\"198173\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"55728\",\"FareBreakdownid\":[\"376252\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"11\"],\"flight_booking_id\":[\"51\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-16-40-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"7fd83-07be1-28c2e-f3793\",\"modified\":\"2023-04-28-16-40-58\",\"created\":\"2023-04-28-16-40-58\",\"MobileNo\":\"8923963627\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"neha\",\"passenger-lastname-1\":\"kannojia\",\"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\":\"7fd83-07be1-28c2e-f3793\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"383250\",\"memberId\":[\"25912\"]}}}','2023-04-28 16:41:10'),(163,'ab854-94b2b-1e18e-38e5c','{\"BookingData\":[{\"bookingId\":\"BKRS100400547693\",\"bookingId_TJ\":\"TJS100400547693\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-05-10T15:00\",\"LocalFromTime\":\"2023-05-10 15:00\",\"FromUTCTime\":\"2023-05-10T15:00\",\"LocalToTime\":\"2023-05-10 17:00\",\"ToUTCTime\":\"2023-05-10T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 10 May\",\"ArrivalDateTxt\":\"Wed, 10 May\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"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,\"CCF\":50,\"ACF\":3000,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-1067366758_0BLRDELAI542_101221511359433\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"46\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-10T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-10T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ab854-94b2b-1e18e-38e5c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:48:20.546\",\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-10 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\":\"BKRS100400547693\",\"bookingId_TJ\":\"TJS100400547693\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-05-10T15:00\",\"LocalFromTime\":\"2023-05-10 15:00\",\"FromUTCTime\":\"2023-05-10T15:00\",\"LocalToTime\":\"2023-05-10 17:00\",\"ToUTCTime\":\"2023-05-10T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 10 May\",\"ArrivalDateTxt\":\"Wed, 10 May\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"ApiResultIndex\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"ab854-94b2b-1e18e-38e5c\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:48:20.546\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"46\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-10T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-10T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-1067366758_0BLRDELAI542_101184451193233\",\"localFromDateTime\":\"2023-05-10 15:00\",\"localToDateTime\":\"2023-05-10 17:00\",\"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\",\"mytrip_city_to\":\"Delhi\",\"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\":\"10\\/05\\/2023\",\"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\",\"FareTypes\":\"REGULAR\",\"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\":\"10\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-10\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ab854-94b2b-1e18e-38e5c\",\"PreferredAirline\":null,\"from_city_\":\"1__BLR-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bengaluru&mytrip_city_to=Delhi&source_city=BLR&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=10%2F05%2F2023&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&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-16-48-08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"678218\",\"TPSysId\":\"678219\",\"VersionId\":[\"198184\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"55730\",\"FareBreakdownid\":[\"376254\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"46\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"52\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"52\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3187},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"678219\",\"MasterTPSysId\":\"678218\",\"ProposalID\":\"678219\\/V1\",\"InvoiceDate\":\"2023-04-28\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-04-28\",\"PaymentDate\":\"2023-04-28\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":3187,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3187,\"TotalDueAmount\":0,\"InvoiceValue\":3187,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-DEL-Air India AI-542\",\"ItemQty\":1,\"ItemRates\":3187,\"Total\":3187,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3187,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3187,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-04-28 16:49:13'),(167,'d254f-b09b8-fcb1a-1316b','{\"FlightBookingData\":[{\"bookingId\":\"BKRS100800547700\",\"bookingId_TJ\":\"TJS100800547700\",\"FlightNumber\":\"QP-1105\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-05-17T13:50\",\"LocalFromTime\":\"2023-05-17 13:50\",\"FromUTCTime\":\"2023-05-17T13:50\",\"LocalToTime\":\"2023-05-17 21:30\",\"ToUTCTime\":\"2023-05-17T21:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":300,\"LAYOVERDuration\":\"5h 0m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Wed, 17 May\",\"ArrivalDateTxt\":\"Wed, 17 May\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":50,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3915,\"PublishedFareTxt\":\"3,915\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-MAA\":{\"fr\":{\"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\":{\"CRFT\":9,\"ARF\":3000,\"ARFT\":150,\"CRF\":50}}},\"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,\"CCF\":50,\"ACF\":3500,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2532,\"Tax\":1383,\"YQTax\":0,\"OtherCharges\":779,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3915,\"PublishedFare\":3630,\"OfferedFare\":3630,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-2786994719_0BOMBLRQP1105BLRMAAQP1214_101557000947370\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":3915,\"oldFare\":3304,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1383,\"BaseFareCal\":3630,\"BaseFare\":2532,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":132,\"MFT\":72,\"OT\":779,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3630,\"CostToCustomer\":3630,\"BaseFareCal\":3630,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3630,\"intOfferedFare\":3630,\"intPublishFare\":3915,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"673\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-17T15:30\",\"SegFlightNumber\":\"QP-1105\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-17T13:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":300,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"13:50\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"5h 0m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"674\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-05-17T21:30\",\"SegFlightNumber\":\"QP-1214\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-17T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"673\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d254f-b09b8-fcb1a-1316b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:53:55.995\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100800547700\",\"bookingId_TJ\":\"TJS100800547700\",\"FlightNumber\":\"QP-1105\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:50\",\"ArrivalTime\":\"21:30\",\"TravelDate\":\"2023-05-17T13:50\",\"LocalFromTime\":\"2023-05-17 13:50\",\"FromUTCTime\":\"2023-05-17T13:50\",\"LocalToTime\":\"2023-05-17 21:30\",\"ToUTCTime\":\"2023-05-17T21:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":300,\"LAYOVERDuration\":\"5h 0m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Wed, 17 May\",\"ArrivalDateTxt\":\"Wed, 17 May\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":50,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3915,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"d254f-b09b8-fcb1a-1316b\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-04-28T16:53:55.995\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2532,\"Tax\":1383,\"YQTax\":0,\"OtherCharges\":779,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3915,\"PublishedFare\":3630,\"OfferedFare\":3630,\"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\":\"1\",\"TaxIN\":1383,\"BaseFareCal\":3630,\"BaseFare\":2532,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":132,\"MFT\":72,\"OT\":779,\"MU\":0,\"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\":\"673\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-17T15:30\",\"SegFlightNumber\":\"QP-1105\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-17T13:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":300,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"13:50\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"5h 0m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"674\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-05-17T21:30\",\"SegFlightNumber\":\"QP-1214\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-17T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"21:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-05-17 13:50\",\"localToDateTime\":\"2023-05-17 21:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":6000,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"54\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"54\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-28-16-53-01\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"48\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Chennai\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"MAA\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Chennai, IN - Chennai Arpt MAA, India\",\"departure_date\":\"17\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Chennai Arpt MAA\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"MAA\",\"from\":\"BOM\",\"to\":\"MAA\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"sourceCityId\":18676,\"destinationCityId\":6000,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d254f-b09b8-fcb1a-1316b\",\"PreferredAirline\":null,\"from_city_\":\"1__BOM-MAA\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"678237\",\"TPSysId\":\"678238\",\"VersionId\":[\"198190\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"55732\",\"FareBreakdownid\":[\"376255\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"54\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"0\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"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\":\"d254f-b09b8-fcb1a-1316b\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"383250\",\"memberId\":null}}}','2023-04-28 16:53:28'),(172,'42c74-5c72f-c66bb-88231','{\"BookingData\":[{\"bookingId\":\"BKRS102300548712\",\"bookingId_TJ\":\"TJS102300548712\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 20:15\",\"ToUTCTime\":\"2023-06-07T20:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":445,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"PublishedFareTxt\":\"12,261\",\"ApiResultIndex\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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\":{\"CCFT\":9,\"ACFT\":150,\"ACF\":3000,\"CCF\":50}}},\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-3496138330_0IXJSXRAI821SXRDELAI821DELBLRAI807_99863117113258\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11976,\"CostToCustomer\":11976,\"BaseFareCal\":11976,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11976,\"intOfferedFare\":11976,\"intPublishFare\":12261,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"932\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"933\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T20:15\",\"SegFlightNumber\":\"AI-807\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"932\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"42c74-5c72f-c66bb-88231\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-01T10:32:55.165\",\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102300548712\",\"bookingId_TJ\":\"TJS102300548712\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 20:15\",\"ToUTCTime\":\"2023-06-07T20:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":445,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"ApiResultIndex\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"42c74-5c72f-c66bb-88231\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-01T10:32:55.165\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"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\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"932\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"933\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T20:15\",\"SegFlightNumber\":\"AI-807\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-3496138330_32IXJSXRAI821SXRDELAI821DELBLRAI807_99770793214495\",\"localFromDateTime\":\"2023-06-07 12:50\",\"localToDateTime\":\"2023-06-07 20:15\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"07\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"42c74-5c72f-c66bb-88231\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=07%2F06%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-01-10-31-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"680069\",\"TPSysId\":\"680070\",\"VersionId\":[\"199006\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"55911\",\"FareBreakdownid\":[\"376382\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"50\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"56\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"56\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":11976},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"680070\",\"MasterTPSysId\":\"680069\",\"ProposalID\":\"680070\\/V1\",\"InvoiceDate\":\"2023-05-01\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-01\",\"PaymentDate\":\"2023-05-01\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":11976,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":11976,\"TotalDueAmount\":0,\"InvoiceValue\":11976,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-Air India AI-821\",\"ItemQty\":1,\"ItemRates\":11976,\"Total\":11976,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":11976,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":11976,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-01 10:32:26'),(173,'2e860-409ee-63f5b-31575','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid0905554104-39647921\",\"name\":\"Hotel Taj Plaza\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_z.jpg\",\"sz\":\"XL\"}],\"des\":\"{\\\"amenities\\\":\\\"Treat yourself with massages, body treatments, and facials. This Victorian hotel also features complimentary wireless Internet access, concierge services, and free babysitting. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. Digital television is provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers.\\\",\\\"onsite_payments\\\":\\\"Visa, Mastercard\\\",\\\"dining\\\":\\\"Grab a bite at MAGIC OF SPICE, one of the hotel\'s 2 restaurants, or stay in and take advantage of the 24-hour room service. Snacks are also available at the coffee shop\\/cafe. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 6 AM to 11 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary wired Internet access, a business center, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available 24 hours), and free self parking is available onsite.\\\",\\\"location\\\":\\\"With a stay at Hotel Taj Plaza in Agra, you\'ll be 0.7 mi (1.1 km) from Taj Mahal and 2.3 mi (3.7 km) from Agra Fort.  This family-friendly hotel is 2.9 mi (4.6 km) from Jama Masjid and 3.3 mi (5.3 km) from Kinari Bazar.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Mosque and the Jawab - 1 km \\/ 0.6 mi  Taj Mahal - 1.3 km \\/ 0.8 mi  Agra Fort - 2.9 km \\/ 1.8 mi  Jama Masjid - 4.1 km \\/ 2.6 mi  Mankameshwar Temple - 4.2 km \\/ 2.6 mi  Kinari Bazar - 4.3 km \\/ 2.7 mi  Agra Marble Emporium - 4.5 km \\/ 2.8 mi  Itmad-ud-Daulah\'s Tomb - 6.8 km \\/ 4.2 mi  St. John\'s College - 7.3 km \\/ 4.5 mi  Sadar Bazar - 7.7 km \\/ 4.8 mi  Chini ka Rauza - 8.1 km \\/ 5 mi  Soami Bagh Temple - 10.4 km \\/ 6.5 mi  Tomb of Akbar the Great - 14.8 km \\/ 9.2 mi  Mariam\'s Tomb - 15.6 km \\/ 9.7 mi  Guru ka Tal - 20.3 km \\/ 12.6 mi  The preferred airport for Hotel Taj Plaza is Agra (AGR-Kheria) - 12.1 km \\/ 7.5 mi \\\",\\\"headline\\\":\\\"Near Mosque and the Jawab\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate, Near Hotel Oberoi\",\"adr2\":\"\'Amar Vilas\', Shilpgram \'VIP\' Road\",\"postalCode\":\"282001\",\"city\":{\"name\":\"Agra\"},\"state\":{\"name\":\"Uttar Pradesh\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"Agra\",\"sn\":\"Uttar Pradesh\",\"cn\":\"India\"},\"fl\":[\"Laundry Services\",\"Shopping on site\",\"Parking\",\"Banquet\",\"Proposal\\/romance packages available\",\"Childcare Service\",\"Number of meeting rooms - 1\",\"Internet\",\"Television\",\"Internet\",\"Lounge\",\"Spa\",\"Designated smoking areas\",\"Garden\",\"Parking\",\"Wedding services\",\"Tours\\/ticket assistance\",\"Accessible bathroom\",\"Area shuttle (surcharge)\",\"RoofTopTerrace\",\"Airport Shuttle\",\"Restaurant\",\"Luggage storage\",\"Business Center\",\"24-hour front desk\",\"Breakfast\",\"Library\",\"Free train station pickup\",\"Restaurant\",\"Barbeque\",\"Coffee\\/tea in common areas\",\"Number of coffee shops\\/cafes - 1\",\"Laundry Services\",\"Free self parking\",\"Business Center\",\"Terrace\",\"ATM\",\"Disable Friendly\",\"Swimming Pool\",\"Bicycle rentals on site\",\"Concierge Services\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-562-6941550\"},\"ht\":[],\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"Local laws may restrict unmarried guests from sharing rooms. Guests are responsible for providing proof of marriage, if requested by the property.  Reservations are required for massage services. Reservations can be made by contacting the hotel prior to arrival, using the contact information on the booking confirmation. Up to 2 children 1 year old and younger stay free when occupying the parent or guardian\'s room, using existing bedding. This property advises that enhanced cleaning and guest safety measures are currently in place.Disinfectant is used to clean the property; commonly-touched surfaces are cleaned with disinfectant between stays; bed sheets and towels are laundered at a temperature of at least 60\\u00b0C\\/140\\u00b0F; guestroom doors are sealed after cleaning.Social distancing measures are in place; staff at the property wear personal protective equipment; a shield is in place between staff and guests in main contact areas; periodic temperature checks are conducted on staff; temperature checks are available to guests; guests are provided with hand sanitizer; cashless payment methods are available for all transactions; masks are required in public areas.Enhanced food service safety measures are in place.This property affirms that it adheres to the cleaning and disinfection practices of COVID-19 Guidelines (CDC) and COVID-19 Guidelines (WHO). \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"This property offers transfers from the airport (surcharges may apply). Guests must contact the property with arrival details before travel, using the contact information on the booking confirmation. 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; travelers who are not citizens of India must present a valid passport and visa. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedSafety features at this property include a fire extinguisher, a smoke detector, a security system, and a first aid kitBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel.Please note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Breakfast fee: between INR 150 and INR 200 per person (approximately)      Airport shuttle fee: INR 500 per vehicle (roundtrip, maximum occupancy 4)             Crib (infant bed) fee: INR 300.0 per nightRollaway bed fee: INR 400.0 per night             The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"379840_389374418_37316--1\",\"rc\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"rt\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"adt\":1,\"chd\":0,\"des\":\"1 Double Bed or 1 Twin Bed170-sq-foot room with city views Layout - Separate sitting areaEntertainment - 20-inch TV with digital channelsFood & Drink - Shared\\/communal kitchen access and 24-hour room service Sleep - Pillowtop bed and blackout drapes\\/curtains Bathroom - Private bathroom, shower, free toiletries, and towelsPractical - Desk and access to in-room childcare; rollaway\\/extra beds and cribs\\/infant beds available on requestComfort - Daily housekeeping and ceiling fanSmoking And Non-Smoking\",\"mb\":\"ROOM ONLY\",\"tp\":17803.9,\"tfcs\":{\"NF\":17803.9,\"CMU\":0,\"TF\":17803.9,\"BF\":17473.5,\"TAF\":330.4},\"tafcs\":{\"TAF\":{\"SNP\":16321.86,\"MF\":280,\"MFT\":50.4,\"TTSF\":1975.68,\"SGP\":17473.5,\"TMF\":1151.64,\"SAC\":1151.64,\"SBP\":15497.82,\"TSF\":1975.68,\"SRC\":0}},\"pis\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":2,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":3,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":4,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":5,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":6,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":7,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":8,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":9,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":10,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":11,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":12,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":13,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":14,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":15,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":16,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":17,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":18,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":19,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":20,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":21,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":22,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":23,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":24,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":25,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":26,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":27,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":28,\"fc\":{\"CMU\":0,\"BF\":623.88,\"TAF\":11.8,\"TF\":635.68,\"NF\":635.68},\"afc\":{\"TAF\":{\"SNP\":582.75,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":623.88,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.32,\"TSF\":70.56,\"SRC\":0}}}],\"fcs\":[\"Free self parking\"],\"imgs\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a861783a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a861783a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae8f264a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae8f264a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3fe00aff_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/29af0991_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/29af0991_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/50f7d37a_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/50f7d37a_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9699ec78_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9699ec78_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/84522686_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/84522686_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/5aaad238_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/5aaad238_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0e94f3b8_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0e94f3b8_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d92aac59_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d92aac59_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4a5c29eb_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4a5c29eb_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/5535042e_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/5535042e_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/21dd85df_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/21dd85df_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/5f2b669b_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dbc68643_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"379840\",\"379847\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dbc68643_z.jpg\",\"sz\":\"XL\",\"rids\":[\"379840\",\"379847\"]}],\"checkInDate\":\"2023-06-06\",\"checkOutDate\":\"2023-07-04\",\"radi\":{\"rid\":\"379840\",\"mga\":4,\"maa\":3,\"mca\":3,\"vi\":[\"City view\"],\"bds\":[{\"bt\":\"TwinBed\",\"bd\":\"1 Twin Bed\",\"bs\":\"Twin\",\"bc\":1}],\"ar\":{\"asm\":\"16\",\"asf\":\"170\"}},\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\"]}]}}],\"id\":\"42_52_2641882\",\"tp\":17803.9,\"cnp\":{\"id\":\"379840_389374418_37316--48788660\",\"ifra\":false,\"inra\":true,\"pd\":[{\"fdt\":\"2023-05-01T15:39:18.921\",\"tdt\":\"2023-06-06T00:00\",\"am\":17473.5,\"pp\":100},{\"fdt\":\"2023-06-06T00:00\",\"tdt\":\"2023-07-04T23:59\",\"am\":17473.5}]},\"ddt\":\"2023-05-01T15:39:18.921\",\"oai\":{\"sid\":\"42\"},\"ispr\":true,\"ipr\":true,\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":17473.5},{\"fc\":[\"BREAKFAST\"],\"tpc\":25935.56},{\"fc\":[\"HALF BOARD\"],\"tpc\":38720.08}],\"uid\":\"39647921\",\"lhc\":\"394396\"},\"bookingId\":\"TJS208700549387\",\"query\":{\"checkinDate\":\"2023-06-06\",\"checkoutDate\":\"2023-07-04\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid0905554104\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":1006}},\"hotelbookingid\":\"9\",\"SearchHotelTraceId\":\"2e860-409ee-63f5b-31575\",\"CustomerSession\":{\"bookingId\":\"2e860-409ee-63f5b-31575\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"2e860-409ee-63f5b-31575\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"379840_389374418_37316--1\",\"RoomCategory\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"RoomType\":\"Standard NON AC room-1 Double Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":635.8535714285715,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":635.8535714285715,\"TotalRoomPrice\":17803.9,\"TotalFare\":17803.9,\"TotalBaseFare\":17473.5,\"TotalNetFare\":17803.9,\"TotalTaxFare\":330.4,\"TaxFareBreakup\":{\"SNP\":16321.86,\"MF\":280,\"MFT\":50.4,\"TTSF\":1975.68,\"SGP\":17473.5,\"TMF\":1151.64,\"SAC\":1151.64,\"SBP\":15497.82,\"TSF\":1975.68,\"SRC\":0},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":2,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":3,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":4,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":5,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":6,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":7,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":8,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":9,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":10,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":11,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":12,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":13,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":14,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":15,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":16,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":17,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":18,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":19,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":20,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":21,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":22,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":23,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":24,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":25,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":26,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":27,\"fc\":{\"CMU\":0,\"BF\":624.06,\"TAF\":11.8,\"TF\":635.86,\"NF\":635.86},\"afc\":{\"TAF\":{\"SNP\":582.93,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":624.06,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.5,\"TSF\":70.56,\"SRC\":0}}},{\"day\":28,\"fc\":{\"CMU\":0,\"BF\":623.88,\"TAF\":11.8,\"TF\":635.68,\"NF\":635.68},\"afc\":{\"TAF\":{\"SNP\":582.75,\"MF\":10,\"MFT\":1.8,\"TTSF\":70.56,\"SGP\":623.88,\"TMF\":41.13,\"SAC\":41.13,\"SBP\":553.32,\"TSF\":70.56,\"SRC\":0}}}],\"PriceWithMarkup\":635.8535714285715,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":17803.9,\"pernightperroomprice\":635.8535714285715,\"RoomPrice\":635.8535714285715,\"withmarkupprice\":635.8535714285715,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":28,\"markup__\":\".00\"}}],\"RoomId\":\"42_52_2641882\",\"RoomTotalPrice\":17803.9,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid0905554104-39647921\",\"HotemName\":\"Hotel Taj Plaza\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Treat yourself with massages, body treatments, and facials. This Victorian hotel also features complimentary wireless Internet access, concierge services, and free babysitting. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"rooms\\\":\\\"Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. Digital television is provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers.\\\",\\\"onsite_payments\\\":\\\"Visa, Mastercard\\\",\\\"dining\\\":\\\"Grab a bite at MAGIC OF SPICE, one of the hotel\'s 2 restaurants, or stay in and take advantage of the 24-hour room service. Snacks are also available at the coffee shop\\/cafe. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 6 AM to 11 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include complimentary wired Internet access, a business center, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available 24 hours), and free self parking is available onsite.\\\",\\\"location\\\":\\\"With a stay at Hotel Taj Plaza in Agra, you\'ll be 0.7 mi (1.1 km) from Taj Mahal and 2.3 mi (3.7 km) from Agra Fort.  This family-friendly hotel is 2.9 mi (4.6 km) from Jama Masjid and 3.3 mi (5.3 km) from Kinari Bazar.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Mosque and the Jawab - 1 km \\/ 0.6 mi  Taj Mahal - 1.3 km \\/ 0.8 mi  Agra Fort - 2.9 km \\/ 1.8 mi  Jama Masjid - 4.1 km \\/ 2.6 mi  Mankameshwar Temple - 4.2 km \\/ 2.6 mi  Kinari Bazar - 4.3 km \\/ 2.7 mi  Agra Marble Emporium - 4.5 km \\/ 2.8 mi  Itmad-ud-Daulah\'s Tomb - 6.8 km \\/ 4.2 mi  St. John\'s College - 7.3 km \\/ 4.5 mi  Sadar Bazar - 7.7 km \\/ 4.8 mi  Chini ka Rauza - 8.1 km \\/ 5 mi  Soami Bagh Temple - 10.4 km \\/ 6.5 mi  Tomb of Akbar the Great - 14.8 km \\/ 9.2 mi  Mariam\'s Tomb - 15.6 km \\/ 9.7 mi  Guru ka Tal - 20.3 km \\/ 12.6 mi  The preferred airport for Hotel Taj Plaza is Agra (AGR-Kheria) - 12.1 km \\/ 7.5 mi \\\",\\\"headline\\\":\\\"Near Mosque and the Jawab\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/40e04407_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/f2f48a45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b7872ee3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/32d340ae_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/74d1379e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/be380834_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e7282492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/533a6f31_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c4c81ca_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c11a00c9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a68258d7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/77de1ce1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3429d6c1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e600fa6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7cd9c8e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/627d55a1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/03b73259_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6f67b8f5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ab03756c_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d800dbc4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/38bc09cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/951a571a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/91c59320_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8d80fc4f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/663ddf26_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/4983f7b7_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/a26e83a6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/35da7b9f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7413f761_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7f9fa658_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1dd316b6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/8b52959e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/828cd732_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b71da893_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0057d01b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b2164091_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b9823081_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/bfdf9d9e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/1ee2931d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b390f637_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ccbf535_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/6a17056e_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d94c5d60_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/dc0223b4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9c0187cb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/69f16963_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/3ede7aee_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d9a96470_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/cf538b0b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/9ada8492_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55088454_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/e4a720e1_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/b1e19010_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ae9a5ba0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/55c21205_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d489fcde_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/423ae0e6_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/427fd590_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7a1e083a_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/36913c73_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/ef6edf02_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/2e28cd6d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/d789383f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/7dc21043_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/0329e057_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/3000000\\/2650000\\/2641900\\/2641882\\/c35fe878_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi\",\"HotelCity\":\"Agra\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Laundry Services\",\"Shopping on site\",\"Parking\",\"Banquet\",\"Proposal\\/romance packages available\",\"Childcare Service\",\"Number of meeting rooms - 1\",\"Internet\",\"Television\",\"Internet\",\"Lounge\",\"Spa\",\"Designated smoking areas\",\"Garden\",\"Parking\",\"Wedding services\",\"Tours\\/ticket assistance\",\"Accessible bathroom\",\"Area shuttle (surcharge)\",\"RoofTopTerrace\",\"Airport Shuttle\",\"Restaurant\",\"Luggage storage\",\"Business Center\",\"24-hour front desk\",\"Breakfast\",\"Library\",\"Free train station pickup\",\"Restaurant\",\"Barbeque\",\"Coffee\\/tea in common areas\",\"Number of coffee shops\\/cafes - 1\",\"Laundry Services\",\"Free self parking\",\"Business Center\",\"Terrace\",\"ATM\",\"Disable Friendly\",\"Swimming Pool\",\"Bicycle rentals on site\",\"Concierge Services\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-06-06\",\"checkoutDate\":\"2023-07-04\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"680665\",\"TPSysId\":\"680666\",\"VersionId\":\"2051680\",\"CustomerSysId\":\"383250\",\"TrxId\":\"55949\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-05-01 15:40:01'),(179,'1bd18-bef72-47d7c-5c513','{\"BookingData\":[{\"bookingId\":\"BKRS103000550376\",\"bookingId_TJ\":\"TJS103000550376\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 22:35\",\"ToUTCTime\":\"2023-06-07T22:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":235,\"LAYOVERDuration\":\"3h 55m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"9h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"PublishedFareTxt\":\"12,261\",\"ApiResultIndex\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2382297116_0IXJSXRAI821SXRDELAI821DELBLRAI512_35479124024471\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11976,\"CostToCustomer\":11976,\"BaseFareCal\":11976,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11976,\"intOfferedFare\":11976,\"intPublishFare\":12261,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"283\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"284\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"285\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1bd18-bef72-47d7c-5c513\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-02T16:58:58.173\",\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103000550376\",\"bookingId_TJ\":\"TJS103000550376\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 22:35\",\"ToUTCTime\":\"2023-06-07T22:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":235,\"LAYOVERDuration\":\"3h 55m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"9h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12261,\"ApiResultIndex\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"1bd18-bef72-47d7c-5c513\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-02T16:58:58.173\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10250,\"Tax\":2011,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":526,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12261,\"PublishedFare\":11976,\"OfferedFare\":11976,\"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\":\"1\",\"TaxIN\":2011,\"BaseFareCal\":11976,\"BaseFare\":10250,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":526,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"284\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":200,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"3h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"285\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2382297116_32IXJSXRAI821SXRDELAI821DELBLRAI512_35468089966960\",\"localFromDateTime\":\"2023-06-07 12:50\",\"localToDateTime\":\"2023-06-07 22:35\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"07\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"1bd18-bef72-47d7c-5c513\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=07%2F06%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-02-16-58-09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"682403\",\"TPSysId\":\"682404\",\"VersionId\":[\"199711\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56062\",\"FareBreakdownid\":[\"376486\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"51\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"57\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"57\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":11976},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"682404\",\"MasterTPSysId\":\"682403\",\"ProposalID\":\"682404\\/V1\",\"InvoiceDate\":\"2023-05-02\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-02\",\"PaymentDate\":\"2023-05-02\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":11976,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":11976,\"TotalDueAmount\":0,\"InvoiceValue\":11976,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-Air India AI-821\",\"ItemQty\":1,\"ItemRates\":11976,\"Total\":11976,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":11976,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":11976,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS103000550376\",\"amount\":12261,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-02T17:00:38.727\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126877\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"821\",\"eT\":\"32A\"},\"stops\":0,\"duration\":50,\"cT\":35,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"SXR\",\"name\":\"Srinagar Arpt\",\"cityCode\":\"SXR\",\"city\":\"Srinagar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-07T12:50\",\"at\":\"2023-06-07T13:40\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"126878\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"821\",\"eT\":\"32A\"},\"stops\":0,\"duration\":100,\"cT\":200,\"da\":{\"code\":\"SXR\",\"name\":\"Srinagar Arpt\",\"cityCode\":\"SXR\",\"city\":\"Srinagar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T14:15\",\"at\":\"2023-06-07T15:55\",\"iand\":false,\"isRs\":false,\"sN\":1},{\"id\":\"126879\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"512\",\"eT\":\"319\"},\"stops\":0,\"duration\":200,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T19:15\",\"at\":\"2023-06-07T22:35\",\"iand\":false,\"isRs\":false,\"sN\":2}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-SXR\":\"TESTPNR\",\"SXR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ticketNumberDetails\":{\"IXJ-SXR\":\"1111111111111\",\"SXR-DEL\":\"1111111111111\",\"DEL-BLR\":\"1111111111111\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":12261,\"NF\":11976,\"NCM\":285,\"IGST\":72,\"BF\":10250,\"TAF\":2011},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YR\":270,\"AGST\":526,\"MF\":400,\"MFT\":72,\"OT\":743}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-05-02 16:59:25'),(183,'de15a-67270-87b9b-8c058','{\"FlightBookingData\":[{\"bookingId\":\"BKRS101800550496\",\"bookingId_TJ\":\"TJS101800550496\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-08T12:15\",\"LocalFromTime\":\"2023-06-08 12:15\",\"FromUTCTime\":\"2023-06-08T12:15\",\"LocalToTime\":\"2023-06-08 15:25\",\"ToUTCTime\":\"2023-06-08T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 08 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-4225376816_0DELBLRAI543_42292774550206\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"418\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-08T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"de15a-67270-87b9b-8c058\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-02T18:52:31.825\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101800550496\",\"bookingId_TJ\":\"TJS101800550496\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-08T12:15\",\"LocalFromTime\":\"2023-06-08 12:15\",\"FromUTCTime\":\"2023-06-08T12:15\",\"LocalToTime\":\"2023-06-08 15:25\",\"ToUTCTime\":\"2023-06-08T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 08 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"de15a-67270-87b9b-8c058\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-02T18:52:31.825\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"418\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-08T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-06-08 12:15\",\"localToDateTime\":\"2023-06-08 15:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"59\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"59\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-02-18-52-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"53\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"08\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"DEL\",\"to\":\"BLR\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":7701,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"de15a-67270-87b9b-8c058\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BLR\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"682717\",\"TPSysId\":\"682718\",\"VersionId\":[\"199780\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56084\",\"FareBreakdownid\":[\"376501\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"59\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false,\"memberDetailArray\":\"[]\"},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"Other\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"dateofbirth-1\":\"null\\/null\\/\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"UIYR676786HGH\",\"passporIssue-1\":\"26\\/01\\/2018\",\"passportnoexpiry-1\":\"26\\/01\\/2025\",\"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\":\"de15a-67270-87b9b-8c058\",\"countryCodeISO\":\"IN\"}}','2023-05-02 18:52:11'),(188,'26107-57af6-b1f19-e5a47','{\"BookingData\":[{\"bookingId\":\"BKRS108200550751\",\"bookingId_TJ\":\"TJS108200550751\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4971229566_0IXJDELSG161DELBLRSG8143_100427323149339\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"496\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"497\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"26107-57af6-b1f19-e5a47\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:01:26.373\",\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS108200550751\",\"bookingId_TJ\":\"TJS108200550751\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"ApiResultIndex\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"26107-57af6-b1f19-e5a47\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:01:26.373\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"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\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"496\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"497\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4971229566_1IXJDELSG161DELBLRSG8143_100406760725068\",\"localFromDateTime\":\"2023-06-06 14:30\",\"localToDateTime\":\"2023-06-07 00:40\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"06\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"26107-57af6-b1f19-e5a47\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=06%2F06%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-03-11-00-46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"682992\",\"TPSysId\":\"682993\",\"VersionId\":[\"199839\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56101\",\"FareBreakdownid\":[\"376508\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"54\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"60\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"60\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6559},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"682993\",\"MasterTPSysId\":\"682992\",\"ProposalID\":\"682993\\/V1\",\"InvoiceDate\":\"2023-05-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-03\",\"PaymentDate\":\"2023-05-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":6559,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6559,\"TotalDueAmount\":0,\"InvoiceValue\":6559,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-SpiceJet SG-161\",\"ItemQty\":1,\"ItemRates\":6559,\"Total\":6559,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6559,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6559,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS108200550751\",\"amount\":6844,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:04:01.973\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126941\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"cT\":355,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-06-06T14:30\",\"at\":\"2023-06-06T16:00\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"126942\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8143\",\"eT\":\"737\"},\"stops\":0,\"duration\":165,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-06T21:55\",\"at\":\"2023-06-07T00:40\",\"iand\":true,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"QY1TNZ\",\"DEL-BLR\":\"QY1TNZ\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":6844,\"NF\":6559,\"NCM\":285,\"IGST\":72,\"BF\":5450,\"TAF\":1394},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YQ\":0,\"AGST\":274,\"MF\":400,\"MFT\":72,\"OT\":648}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-05-03 11:02:51'),(192,'eb263-64cd5-38e2e-a6ba0','{\"BookingData\":[{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3251679453_0IXJDELSG161DELBLRSG8143_100800088532041\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"416\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"417\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"416\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"2023-06-09 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-06T14:30\",\"LocalFromTime\":\"2023-06-06 14:30\",\"FromUTCTime\":\"2023-06-06T14:30\",\"LocalToTime\":\"2023-06-07 00:40\",\"ToUTCTime\":\"2023-06-07T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Tue, 06 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12853.7,\"ApiResultIndex\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10885,\"Tax\":1968.7,\"YQTax\":0,\"OtherCharges\":929,\"Discount\":0,\"ServiceFee\":415,\"ManagementFeeTax\":74.7,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12853.7,\"PublishedFare\":12568.7,\"OfferedFare\":12568.7,\"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\":\"1\",\"TaxIN\":1968.7,\"BaseFareCal\":12568.7,\"BaseFare\":10885,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":415,\"YQ\":0,\"AGST\":550,\"MFT\":74.7,\"OT\":929,\"MU\":0,\"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\":\"416\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-06T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"417\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-07T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"418\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-10T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"419\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-10T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-3251679453_1IXJDELSG161DELBLRSG8143_100763426376337\",\"localFromDateTime\":\"2023-06-06 14:30\",\"localToDateTime\":\"2023-06-07 00:40\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS100900550762\",\"bookingId_TJ\":\"TJS100900550762\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-09T21:55\",\"LocalFromTime\":\"2023-06-09 21:55\",\"FromUTCTime\":\"2023-06-09T21:55\",\"LocalToTime\":\"2023-06-10 10:45\",\"ToUTCTime\":\"2023-06-10T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Sat, 10 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6009.7,\"PublishedFareTxt\":\"6,010\",\"ApiResultIndex\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":574.7,\"YQTax\":0,\"OtherCharges\":281,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6009.7,\"PublishedFare\":6009.7,\"OfferedFare\":6009.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100800090358134\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":574.7,\"BaseFareCal\":6009.7,\"BaseFare\":5435,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":276,\"MFT\":2.7,\"OT\":281,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6009.7,\"CostToCustomer\":6009.7,\"BaseFareCal\":6009.7,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6009.7,\"intOfferedFare\":6009.7,\"intPublishFare\":6009.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"418\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-10T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"419\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-10T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"418\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:07:39.135\",\"strTraceId\":\"4-3251679453_1BLRDELSG198DELIXJSG160_100763426111300\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-06 12:00\",\"localToDateTime\":\"2023-06-09 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"06\\/06\\/2023\",\"return_date\":\"09\\/06\\/2023\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/06\\/2023\",\"return_dates\":\"09\\/06\\/2023\",\"strDepatureDate\":\"2023-06-06\",\"strReturnDate\":\"2023-06-09\",\"SearchFlightTraceId\":\"eb263-64cd5-38e2e-a6ba0\",\"PreferredAirline\":null,\"from_city_\":\"2__IXJ-BLR-IXJ\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=06%2F06%2F2023&return_date=09%2F06%2F2023&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-03-11-06-51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"683008\",\"TPSysId\":\"683009\",\"VersionId\":[\"199846\",\"199847\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56102\",\"FareBreakdownid\":[\"376509\",\"376510\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"55\"],[\"56\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"61\",\"62\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"61\",\"62\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":12568.7},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"683009\",\"MasterTPSysId\":\"683008\",\"ProposalID\":\"683009\\/V1\",\"InvoiceDate\":\"2023-05-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-03\",\"PaymentDate\":\"2023-05-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":12568.7,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":12568.7,\"TotalDueAmount\":0,\"InvoiceValue\":12568.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-SpiceJet SG-161\",\"ItemQty\":1,\"ItemRates\":6559,\"Total\":6559,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6559,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6559,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-IXJ-SpiceJet SG-198\",\"ItemQty\":1,\"ItemRates\":6009.7,\"Total\":6009.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6009.7,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6009.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-03 11:07:26'),(197,'38239-bd8e0-8a2bb-f289f','{\"BookingData\":[{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-06-07T15:00\",\"LocalFromTime\":\"2023-06-07 15:00\",\"FromUTCTime\":\"2023-06-07T15:00\",\"LocalToTime\":\"2023-06-07 17:00\",\"ToUTCTime\":\"2023-06-07T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}},\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-8432191504_0BLRDELAI542_101558598020960\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"323\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-07T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"2023-06-10 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-06-07T15:00\",\"LocalFromTime\":\"2023-06-07 15:00\",\"FromUTCTime\":\"2023-06-07T15:00\",\"LocalToTime\":\"2023-06-07 17:00\",\"ToUTCTime\":\"2023-06-07T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7244,\"ApiResultIndex\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5700,\"Tax\":1544,\"YQTax\":0,\"OtherCharges\":600,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7244,\"PublishedFare\":6674,\"OfferedFare\":6674,\"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\":\"1\",\"TaxIN\":1544,\"BaseFareCal\":6674,\"BaseFare\":5700,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":0,\"MFT\":144,\"OT\":600,\"MU\":0,\"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\":\"323\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-07T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"403\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-10T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-8432191504_0BLRDELAI542_101517167513055\",\"localFromDateTime\":\"2023-06-07 15:00\",\"localToDateTime\":\"2023-06-07 17:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS104100550781\",\"bookingId_TJ\":\"TJS104100550781\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-10T12:15\",\"LocalFromTime\":\"2023-06-10 12:15\",\"FromUTCTime\":\"2023-06-10T12:15\",\"LocalToTime\":\"2023-06-10 15:25\",\"ToUTCTime\":\"2023-06-10T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Sat, 10 Jun\",\"ArrivalDateTxt\":\"Sat, 10 Jun\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}},\"DEL-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3000,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-8432191504_1DELBLRAI543_101558599030866\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"403\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-10T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-10T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-05-03T11:20:17.647\",\"strTraceId\":\"19-18-11-8432191504_0DELBLRAI543_101517167202489\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-07 12:00\",\"localToDateTime\":\"2023-06-10 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru\",\"mytrip_city_to\":\"Delhi\",\"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\":\"07\\/06\\/2023\",\"return_date\":\"10\\/06\\/2023\",\"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\",\"FareTypes\":\"REGULAR\",\"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\":\"07\\/06\\/2023\",\"return_dates\":\"10\\/06\\/2023\",\"strDepatureDate\":\"2023-06-07\",\"strReturnDate\":\"2023-06-10\",\"SearchFlightTraceId\":\"38239-bd8e0-8a2bb-f289f\",\"PreferredAirline\":null,\"from_city_\":\"2__BLR-DEL-BLR\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru&mytrip_city_to=Delhi&source_city=BLR&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=07%2F06%2F2023&return_date=10%2F06%2F2023&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&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-03-11-19-22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"683027\",\"TPSysId\":\"683028\",\"VersionId\":[\"199850\",\"199851\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56103\",\"FareBreakdownid\":[\"376511\",\"376512\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"57\"],[\"58\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"63\",\"64\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"63\",\"64\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6674},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"683028\",\"MasterTPSysId\":\"683027\",\"ProposalID\":\"683028\\/V1\",\"InvoiceDate\":\"2023-05-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-03\",\"PaymentDate\":\"2023-05-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":6674,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6674,\"TotalDueAmount\":0,\"InvoiceValue\":6674,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-DEL-Air India AI-542\",\"ItemQty\":1,\"ItemRates\":3187,\"Total\":3187,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3187,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3187,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BLR-Air India AI-543\",\"ItemQty\":1,\"ItemRates\":3487,\"Total\":3487,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3487,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3487,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS104100550781\",\"amount\":7244,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:21:32.742\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126951\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"542\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-07T15:00\",\"at\":\"2023-06-07T17:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"126952\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"543\"},\"stops\":0,\"duration\":190,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-10T12:15\",\"at\":\"2023-06-10T15:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":7244,\"NF\":6674,\"NCM\":570,\"IGST\":144,\"BF\":5700,\"TAF\":1544},\"afC\":{\"NCM\":{\"TDS\":-30,\"OT\":600},\"TAF\":{\"MF\":800,\"MFT\":144,\"OT\":600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},{\"order\":{\"bookingId\":\"TJS104100550781\",\"amount\":7244,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-03T11:21:32.742\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"126951\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"542\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-07T15:00\",\"at\":\"2023-06-07T17:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"126952\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"543\"},\"stops\":0,\"duration\":190,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2023-06-10T12:15\",\"at\":\"2023-06-10T15:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":7244,\"NF\":6674,\"NCM\":570,\"IGST\":144,\"BF\":5700,\"TAF\":1544},\"afC\":{\"NCM\":{\"TDS\":-30,\"OT\":600},\"TAF\":{\"MF\":800,\"MFT\":144,\"OT\":600}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-05-03 11:20:20'),(200,'4d4a8-bd7fc-821b5-b355c','{\"FlightBookingData\":[{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-02T14:30\",\"LocalFromTime\":\"2023-06-02 14:30\",\"FromUTCTime\":\"2023-06-02T14:30\",\"LocalToTime\":\"2023-06-03 00:40\",\"ToUTCTime\":\"2023-06-03T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Fri, 02 Jun\",\"ArrivalDateTxt\":\"Sat, 03 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6844,\"PublishedFareTxt\":\"6,844\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5450,\"Tax\":1394,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":274,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6844,\"PublishedFare\":6559,\"OfferedFare\":6559,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_0IXJDELSG161DELBLRSG8143_102528889993879\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1394,\"BaseFareCal\":6559,\"BaseFare\":5450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":274,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6559,\"CostToCustomer\":6559,\"BaseFareCal\":6559,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6559,\"intOfferedFare\":6559,\"intPublishFare\":6844,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"465\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-02T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-02T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"466\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-03T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-02T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:30\",\"ArrivalTime\":\"00:40\",\"TravelDate\":\"2023-06-02T14:30\",\"LocalFromTime\":\"2023-06-02 14:30\",\"FromUTCTime\":\"2023-06-02T14:30\",\"LocalToTime\":\"2023-06-03 00:40\",\"ToUTCTime\":\"2023-06-03T00:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Fri, 02 Jun\",\"ArrivalDateTxt\":\"Sat, 03 Jun\",\"FlightDuration\":\"10h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":15946,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":12165,\"Tax\":3781,\"YQTax\":0,\"OtherCharges\":1747,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":618,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15946,\"PublishedFare\":15091,\"OfferedFare\":15091,\"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\":\"1\",\"TaxIN\":3781,\"BaseFareCal\":15091,\"BaseFare\":12165,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":618,\"MFT\":216,\"OT\":1747,\"MU\":0,\"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\":\"465\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-02T16:00\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-02T14:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":355,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:30\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"466\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-03T00:40\",\"SegFlightNumber\":\"SG-8143\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-02T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"529\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T08:45\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-07T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-06-02 14:30\",\"localToDateTime\":\"2023-06-03 00:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2023-06-05T06:10\",\"LocalFromTime\":\"2023-06-05 06:10\",\"FromUTCTime\":\"2023-06-05T06:10\",\"LocalToTime\":\"2023-06-05 08:45\",\"ToUTCTime\":\"2023-06-05T08:45\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Mon, 05 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5603,\"PublishedFareTxt\":\"5,603\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4280,\"Tax\":1323,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5603,\"PublishedFare\":5318,\"OfferedFare\":5318,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_1BLRDELSG8136_102528892089251\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1323,\"BaseFareCal\":5318,\"BaseFare\":4280,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":220,\"MFT\":72,\"OT\":631,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5318,\"CostToCustomer\":5318,\"BaseFareCal\":5318,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5318,\"intOfferedFare\":5318,\"intPublishFare\":5603,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"529\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T08:45\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS105600550795\",\"bookingId_TJ\":\"TJS105600550795\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-07T09:20\",\"LocalFromTime\":\"2023-06-07 09:20\",\"FromUTCTime\":\"2023-06-07T09:20\",\"LocalToTime\":\"2023-06-07 10:45\",\"ToUTCTime\":\"2023-06-07T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"PublishedFareTxt\":\"3,499\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"BLR-DEL\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}},\"DEL-IXJ\":{\"fr\":{\"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,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-45630189600_2DELIXJSG160_102528893429111\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-07T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-03T11:36:27.936\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"strDestinationAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,2262,7701],\"intDestinationCityId\":[2262,7701,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"65\",\"66\",\"67\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"65\",\"66\",\"67\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-03-11-42-34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"59\"],[\"60\"],[\"61\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Jammu\",\"Bengaluru\",\"Delhi\"],\"mytrip_city_to\":[\"Bengaluru\",\"Delhi\",\"Jammu\"],\"departure_dates\":[\"2023\\/06\\/02\",\"2023\\/06\\/05\",\"2023\\/06\\/07\"],\"source_city\":[\"IXJ\",\"BLR\",\"DEL\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"BLR\",\"DEL\",\"IXJ\"],\"ContSysId\":[\"101\",\"101\",\"101\"],\"source\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"departure_date\":[\"2023\\/06\\/02\",\"2023\\/06\\/05\",\"2023\\/06\\/07\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Satwari Arpt IXJ\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Delhi Indira Gandhi Intl DEL\"],\"to_mytrip_city\":[\" IN - Bengaluru Intl Arpt BLR\",\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Satwari Arpt IXJ\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"IXJ\",\"BLR\",\"DEL\"],\"destinationCityAirportCode\":[\"BLR\",\"DEL\",\"IXJ\"],\"from\":[\"IXJ\",\"BLR\",\"DEL\"],\"to\":[\"BLR\",\"DEL\",\"IXJ\"],\"sourceCityText\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"sourceCityId\":[13021,2262,7701],\"destinationCityId\":[2262,7701,13021],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"4d4a8-bd7fc-821b5-b355c\",\"PreferredAirline\":null},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"683085\",\"TPSysId\":\"683086\",\"VersionId\":[\"199862\",\"199863\",\"199864\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56104\",\"FareBreakdownid\":[\"376513\",\"376514\",\"376515\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"65\",\"66\",\"67\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false,\"memberDetailArray\":\"[]\"},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"Other\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"dateofbirth-1\":\"null\\/null\\/\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"UIYR676786HGH\",\"passporIssue-1\":\"26\\/01\\/2018\",\"passportnoexpiry-1\":\"26\\/01\\/2025\",\"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\":\"4d4a8-bd7fc-821b5-b355c\",\"countryCodeISO\":\"IN\"}}','2023-05-03 11:43:03'),(207,'4ad7b-e4fd2-104ed-81f34','{\"BookingData\":[{\"bookingId\":\"BKRS102500554143\",\"bookingId_TJ\":\"TJS102500554143\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"PublishedFareTxt\":\"11,085\",\"ApiResultIndex\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-5115073536_0IXJDELAI822DELATQAI461_103191776760827\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10800,\"CostToCustomer\":10800,\"BaseFareCal\":10800,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10800,\"intOfferedFare\":10800,\"intPublishFare\":11085,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"864\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"864\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4ad7b-e4fd2-104ed-81f34\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:46:37.816\",\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102500554143\",\"bookingId_TJ\":\"TJS102500554143\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"ApiResultIndex\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"4ad7b-e4fd2-104ed-81f34\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:46:37.816\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"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\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"864\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-5115073536_4IXJDELAI822DELATQAI461_103133702766288\",\"localFromDateTime\":\"2023-06-05 15:45\",\"localToDateTime\":\"2023-06-06 15:25\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Amritsar\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"departure_date\":\"05\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"IXJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"sourceCityId\":13021,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-05\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"4ad7b-e4fd2-104ed-81f34\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-ATQ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Amritsar&source_city=IXJ&ContSysId_1=101&destination_city=ATQ&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Amritsar%2C+IN+-+Raja+Sansi+Arpt+ATQ%2C+India&departure_date=05%2F06%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Raja+Sansi+Arpt+ATQ&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-08-11-45-43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688484\",\"TPSysId\":\"688485\",\"VersionId\":[\"201637\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56544\",\"FareBreakdownid\":[\"376824\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"63\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"69\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"69\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":10800},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"688485\",\"MasterTPSysId\":\"688484\",\"ProposalID\":\"688485\\/V1\",\"InvoiceDate\":\"2023-05-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-08\",\"PaymentDate\":\"2023-05-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":10800,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":10800,\"TotalDueAmount\":0,\"InvoiceValue\":10800,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-ATQ-Air India AI-822\",\"ItemQty\":1,\"ItemRates\":10800,\"Total\":10800,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":10800,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":10800,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS102500554143\",\"amount\":11085,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T11:47:49.744\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127946\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"822\",\"eT\":\"32A\"},\"stops\":0,\"duration\":90,\"cT\":1260,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-05T15:45\",\"at\":\"2023-06-05T17:15\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127947\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"461\",\"eT\":\"32N\"},\"stops\":0,\"duration\":70,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-06T14:15\",\"at\":\"2023-06-06T15:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"TESTPNR\",\"DEL-ATQ\":\"TESTPNR\"},\"ticketNumberDetails\":{\"IXJ-DEL\":\"1111111111111\",\"DEL-ATQ\":\"1111111111111\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":11085,\"NF\":10800,\"IGST\":72,\"NCM\":285,\"BF\":9130,\"TAF\":1955},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"MFT\":72,\"AGST\":470,\"OT\":743,\"MF\":400,\"YR\":270}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-05-08 11:46:39'),(213,'11d07-3e72d-ece68-1ec15','{\"BookingData\":[{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-05T21:55\",\"LocalFromTime\":\"2023-06-05 21:55\",\"FromUTCTime\":\"2023-06-05T21:55\",\"LocalToTime\":\"2023-06-06 10:45\",\"ToUTCTime\":\"2023-06-06T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6764,\"PublishedFareTxt\":\"6,764\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":1329,\"YQTax\":0,\"OtherCharges\":581,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6764,\"PublishedFare\":6479,\"OfferedFare\":6479,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_0BLRDELSG198DELIXJSG160_103558417122725\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":23182,\"oldFare\":22333,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1329,\"BaseFareCal\":6479,\"BaseFare\":5435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":276,\"MFT\":72,\"OT\":581,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6479,\"CostToCustomer\":6479,\"BaseFareCal\":6479,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6479,\"intOfferedFare\":6479,\"intPublishFare\":6764,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"381\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-06T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-05T21:55\",\"LocalFromTime\":\"2023-06-05 21:55\",\"FromUTCTime\":\"2023-06-05T21:55\",\"LocalToTime\":\"2023-06-06 10:45\",\"ToUTCTime\":\"2023-06-06T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":23182,\"ApiResultIndex\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":18227,\"Tax\":4955,\"YQTax\":0,\"OtherCharges\":2333,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":936,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":23182,\"PublishedFare\":22327,\"OfferedFare\":22327,\"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\":\"1\",\"TaxIN\":4955,\"BaseFareCal\":22327,\"BaseFare\":18227,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":936,\"MFT\":216,\"OT\":2333,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-06T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-05T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"381\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-06T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"776\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":285,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"778\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T23:35\",\"SegFlightNumber\":\"AI-540\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"379\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":270,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"4h 30m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-09T13:10\",\"SegFlightNumber\":\"QP-1104\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"13:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-1-85682728980_9BLRDELSG198DELIXJSG160_103409397753762\",\"localFromDateTime\":\"2023-06-05 21:55\",\"localToDateTime\":\"2023-06-06 10:45\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"AI-821\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2023-06-07T12:50\",\"LocalFromTime\":\"2023-06-07 12:50\",\"FromUTCTime\":\"2023-06-07T12:50\",\"LocalToTime\":\"2023-06-07 23:35\",\"ToUTCTime\":\"2023-06-07T23:35\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":320,\"LAYOVERDuration\":\"5h 20m\",\"FlyingMinutes\":645,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"10h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12125,\"PublishedFareTxt\":\"12,125\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10120,\"Tax\":2005,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":520,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":12125,\"PublishedFare\":11840,\"OfferedFare\":11840,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_1IXJSXRAI821SXRDELAI821DELMAAAI540_103558431703782\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2005,\"BaseFareCal\":11840,\"BaseFare\":10120,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":520,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11840,\"CostToCustomer\":11840,\"BaseFareCal\":11840,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11840,\"intOfferedFare\":11840,\"intPublishFare\":12125,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"776\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-06-07T13:40\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"777\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T15:55\",\"SegFlightNumber\":\"AI-821\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-06-07T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":285,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"778\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T23:35\",\"SegFlightNumber\":\"AI-540\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728981_21IXJSXRAI821SXRDELAI821DELMAAAI540_103408476678085\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS101000554177\",\"bookingId_TJ\":\"TJS101000554177\",\"FlightNumber\":\"QP-1801\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"13:10\",\"TravelDate\":\"2023-06-09T06:00\",\"LocalFromTime\":\"2023-06-09 06:00\",\"FromUTCTime\":\"2023-06-09T06:00\",\"LocalToTime\":\"2023-06-09 13:10\",\"ToUTCTime\":\"2023-06-09T13:10\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":270,\"LAYOVERDuration\":\"4h 30m\",\"FlyingMinutes\":430,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Fri, 09 Jun\",\"FlightDuration\":\"7h 10m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4293,\"PublishedFareTxt\":\"4,293\",\"ApiResultIndex\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"IXJ-MAA\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BOM\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2672,\"Tax\":1621,\"YQTax\":0,\"OtherCharges\":1009,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":140,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4293,\"PublishedFare\":4008,\"OfferedFare\":4008,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-15-10-5-4-1-85682728980_2MAABLRQP1801BLRBOMQP1104_103558443883168\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1621,\"BaseFareCal\":4008,\"BaseFare\":2672,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":140,\"MFT\":72,\"OT\":1009,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4008,\"CostToCustomer\":4008,\"BaseFareCal\":4008,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4008,\"intOfferedFare\":4008,\"intPublishFare\":4293,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"379\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":270,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"4h 30m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"segmentid\":\"380\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-09T13:10\",\"SegFlightNumber\":\"QP-1104\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-09T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"13:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"380\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"776\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T11:52:44.460\",\"strTraceId\":\"30-15-10-5-4-1-85682728982_137MAABLRQP1801BLRBOMQP1104_103409528898856\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"strDestinationAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"intMemberCount\":1,\"intSourceCityId\":[2262,13021,6000],\"intDestinationCityId\":[13021,6000,18676],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Bengaluru\",\"Jammu\",\"Chennai\"],\"mytrip_city_to\":[\"Jammu\",\"Chennai\",\"Mumbai\"],\"departure_dates\":[\"2023\\/06\\/05\",\"2023\\/06\\/07\",\"2023\\/06\\/09\"],\"source_city\":[\"BLR\",\"IXJ\",\"MAA\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"IXJ\",\"MAA\",\"BOM\"],\"ContSysId\":[\"101\",\"101\",\"101\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\",\"Chennai, IN - Chennai Arpt MAA, India\"],\"destination\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Chennai, IN - Chennai Arpt MAA, India\",\"Mumbai, IN - Chhatrapati Shivaji BOM, India\"],\"departure_date\":[\"2023\\/06\\/05\",\"2023\\/06\\/07\",\"2023\\/06\\/09\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt BLR\",\" IN - Satwari Arpt IXJ\",\" IN - Chennai Arpt MAA\"],\"to_mytrip_city\":[\" IN - Satwari Arpt IXJ\",\" IN - Chennai Arpt MAA\",\" IN - Chhatrapati Shivaji BOM\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"BLR\",\"IXJ\",\"MAA\"],\"destinationCityAirportCode\":[\"IXJ\",\"MAA\",\"BOM\"],\"from\":[\"BLR\",\"IXJ\",\"MAA\"],\"to\":[\"IXJ\",\"MAA\",\"BOM\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\",\"Chennai, IN - Chennai Arpt MAA, India\"],\"destinationCityText\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Chennai, IN - Chennai Arpt MAA, India\",\"Mumbai, IN - Chhatrapati Shivaji BOM, India\"],\"sourceCityId\":[2262,13021,6000],\"destinationCityId\":[13021,6000,18676],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"11d07-3e72d-ece68-1ec15\",\"PreferredAirline\":null},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Bengaluru&mytrip_city_to%5B%5D=Jammu&departure_dates%5B%5D=5+Jun+2023&source_city%5B%5D=BLR&ContSysId_1%5B%5D=101&destination_city%5B%5D=IXJ&ContSysId%5B%5D=101&source%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&departure_date%5B%5D=2023%2F06%2F05&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&mytrip_city_from%5B%5D=Jammu&mytrip_city_to%5B%5D=Chennai&departure_dates%5B%5D=7+Jun+2023&source_city%5B%5D=IXJ&ContSysId_1%5B%5D=101&destination_city%5B%5D=MAA&ContSysId%5B%5D=101&source%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&departure_date%5B%5D=2023%2F06%2F07&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&mytrip_city_from%5B%5D=Chennai&mytrip_city_to%5B%5D=Mumbai&departure_dates%5B%5D=9+Jun+2023&source_city%5B%5D=MAA&ContSysId_1%5B%5D=101&destination_city%5B%5D=BOM&ContSysId%5B%5D=101&source%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination%5B%5D=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&departure_date%5B%5D=2023%2F06%2F09&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&to_mytrip_city%5B%5D=+IN+-+Chhatrapati+Shivaji+BOM&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-08-11-51-45\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688505\",\"TPSysId\":\"688506\",\"VersionId\":[\"201649\",\"201650\",\"201651\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56547\",\"FareBreakdownid\":[\"376829\",\"376830\",\"376831\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"67\"],[\"68\"],[\"69\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"73\",\"74\",\"75\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"73\",\"74\",\"75\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":22327},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"688506\",\"MasterTPSysId\":\"688505\",\"ProposalID\":\"688506\\/V1\",\"InvoiceDate\":\"2023-05-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-08\",\"PaymentDate\":\"2023-05-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":22327,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":22327,\"TotalDueAmount\":0,\"InvoiceValue\":22327,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-IXJ-SpiceJet SG-198\",\"ItemQty\":1,\"ItemRates\":6479,\"Total\":6479,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6479,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6479,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-MAA-Air India AI-821\",\"ItemQty\":1,\"ItemRates\":11840,\"Total\":11840,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":11840,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":11840,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-BOM-AkasaAir QP-1801\",\"ItemQty\":1,\"ItemRates\":4008,\"Total\":4008,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4008,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":4008,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-08 11:52:25'),(219,'a4803-39469-8b8ab-e0b87','{\"BookingData\":[{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11085,\"PublishedFareTxt\":\"11,085\",\"ApiResultIndex\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":9130,\"Tax\":1955,\"YQTax\":0,\"OtherCharges\":743,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":11085,\"PublishedFare\":10800,\"OfferedFare\":10800,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_0IXJDELAI822DELATQAI461_105680213262889\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1955,\"BaseFareCal\":10800,\"BaseFare\":9130,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":470,\"MFT\":72,\"OT\":743,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10800,\"CostToCustomer\":10800,\"BaseFareCal\":10800,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10800,\"intOfferedFare\":10800,\"intPublishFare\":11085,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"132\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"133\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-06-05T15:45\",\"LocalFromTime\":\"2023-06-05 15:45\",\"FromUTCTime\":\"2023-06-05T15:45\",\"LocalToTime\":\"2023-06-06 15:25\",\"ToUTCTime\":\"2023-06-06T15:25\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1260,\"LAYOVERDuration\":\"21h 0m\",\"FlyingMinutes\":1420,\"DepartureDateTxt\":\"Mon, 05 Jun\",\"ArrivalDateTxt\":\"Tue, 06 Jun\",\"FlightDuration\":\"23h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":25572,\"ApiResultIndex\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":20248,\"Tax\":5324,\"YQTax\":0,\"OtherCharges\":2600,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":1038,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":25572,\"PublishedFare\":24717,\"OfferedFare\":24717,\"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\":\"1\",\"TaxIN\":5324,\"BaseFareCal\":24717,\"BaseFare\":20248,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":1038,\"MFT\":216,\"OT\":2600,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"132\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-05T17:15\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-06-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":1260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"21h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"133\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-06-06T15:25\",\"SegFlightNumber\":\"AI-461\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-06T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"379\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2023-06-08T01:35\",\"SegFlightNumber\":\"6E-951\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Pune\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"380\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T04:30\",\"SegFlightNumber\":\"6E-338\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2023-06-08T02:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:55\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"233\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-11T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-10T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-11T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-11T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-83319211410_4IXJDELAI822DELATQAI461_105662004218430\",\"localFromDateTime\":\"2023-06-05 15:45\",\"localToDateTime\":\"2023-06-06 15:25\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"6E-951\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:20\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2023-06-07T23:20\",\"LocalFromTime\":\"2023-06-07 23:20\",\"FromUTCTime\":\"2023-06-07T23:20\",\"LocalToTime\":\"2023-06-08 04:30\",\"ToUTCTime\":\"2023-06-08T04:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Pune\",\"GroundTime\":80,\"LAYOVERDuration\":\"1h 20m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Thu, 08 Jun\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7723,\"PublishedFareTxt\":\"7,723\",\"ApiResultIndex\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5683,\"Tax\":2040,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":292,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7723,\"PublishedFare\":7438,\"OfferedFare\":7438,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_1ATQPNQ6E951PNQBLR6E338_105680214883852\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2040,\"BaseFareCal\":7438,\"BaseFare\":5683,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":292,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7438,\"CostToCustomer\":7438,\"BaseFareCal\":7438,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7438,\"intOfferedFare\":7438,\"intPublishFare\":7723,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"379\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2023-06-08T01:35\",\"SegFlightNumber\":\"6E-951\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":80,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"1h 20m\",\"LAYOVERCity\":\"Pune\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"380\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-08T04:30\",\"SegFlightNumber\":\"6E-338\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2023-06-08T02:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:55\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"VBIR\",\"Price\":400,\"amount\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"379\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-83319211411_0ATQPNQ6E951PNQBLR6E338_105662386269090\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS100300554234\",\"bookingId_TJ\":\"TJS100300554234\",\"FlightNumber\":\"SG-198\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:55\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-06-10T21:55\",\"LocalFromTime\":\"2023-06-10 21:55\",\"FromUTCTime\":\"2023-06-10T21:55\",\"LocalToTime\":\"2023-06-11 10:45\",\"ToUTCTime\":\"2023-06-11T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":770,\"DepartureDateTxt\":\"Sat, 10 Jun\",\"ArrivalDateTxt\":\"Sun, 11 Jun\",\"FlightDuration\":\"12h 50m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6764,\"PublishedFareTxt\":\"6,764\",\"ApiResultIndex\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":150,\"ACF\":3000,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"ATQ-BLR\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-IXJ\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5435,\"Tax\":1329,\"YQTax\":0,\"OtherCharges\":581,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":276,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6764,\"PublishedFare\":6479,\"OfferedFare\":6479,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-83319211410_2BLRDELSG198DELIXJSG160_105680216360767\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1329,\"BaseFareCal\":6479,\"BaseFare\":5435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":276,\"MFT\":72,\"OT\":581,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6479,\"CostToCustomer\":6479,\"BaseFareCal\":6479,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6479,\"intOfferedFare\":6479,\"intPublishFare\":6764,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"233\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-11T00:40\",\"SegFlightNumber\":\"SG-198\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-10T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":520,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"00:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-06-11T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-11T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"132\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-05-08T12:28:06.260\",\"strTraceId\":\"30-15-10-5-4-1-83319211412_9BLRDELSG198DELIXJSG160_105662782015780\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"strDestinationAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,974,2262],\"intDestinationCityId\":[974,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Jammu\",\"Amritsar\",\"Bengaluru\"],\"mytrip_city_to\":[\"Amritsar\",\"Bengaluru\",\"Jammu\"],\"departure_dates\":[\"2023\\/06\\/05\",\"2023\\/06\\/07\",\"2023\\/06\\/10\"],\"source_city\":[\"IXJ\",\"ATQ\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"ATQ\",\"BLR\",\"IXJ\"],\"ContSysId\":[\"101\",\"101\",\"101\"],\"source\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"departure_date\":[\"2023\\/06\\/05\",\"2023\\/06\\/07\",\"2023\\/06\\/10\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Satwari Arpt IXJ\",\" IN - Raja Sansi Arpt ATQ\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Raja Sansi Arpt ATQ\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Satwari Arpt IXJ\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"IXJ\",\"ATQ\",\"BLR\"],\"destinationCityAirportCode\":[\"ATQ\",\"BLR\",\"IXJ\"],\"from\":[\"IXJ\",\"ATQ\",\"BLR\"],\"to\":[\"ATQ\",\"BLR\",\"IXJ\"],\"sourceCityText\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"sourceCityId\":[13021,974,2262],\"destinationCityId\":[974,2262,13021],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"a4803-39469-8b8ab-e0b87\",\"PreferredAirline\":null},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Jammu&mytrip_city_to%5B%5D=Amritsar&departure_dates%5B%5D=5+Jun+2023&source_city%5B%5D=IXJ&ContSysId_1%5B%5D=101&destination_city%5B%5D=ATQ&ContSysId%5B%5D=101&source%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination%5B%5D=Amritsar%2C+IN+-+Raja+Sansi+Arpt+ATQ%2C+India&departure_date%5B%5D=2023%2F06%2F05&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city%5B%5D=+IN+-+Raja+Sansi+Arpt+ATQ&mytrip_city_from%5B%5D=Amritsar&mytrip_city_to%5B%5D=Bengaluru&departure_dates%5B%5D=7+Jun+2023&source_city%5B%5D=ATQ&ContSysId_1%5B%5D=101&destination_city%5B%5D=BLR&ContSysId%5B%5D=101&source%5B%5D=Amritsar%2C+IN+-+Raja+Sansi+Arpt+ATQ%2C+India&destination%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date%5B%5D=2023%2F06%2F07&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Raja+Sansi+Arpt+ATQ&to_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&mytrip_city_from%5B%5D=Bengaluru&mytrip_city_to%5B%5D=Jammu&departure_dates%5B%5D=10+Jun+2023&source_city%5B%5D=BLR&ContSysId_1%5B%5D=101&destination_city%5B%5D=IXJ&ContSysId%5B%5D=101&source%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&departure_date%5B%5D=2023%2F06%2F10&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-08-12-27-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688607\",\"TPSysId\":\"688608\",\"VersionId\":[\"201682\",\"201683\",\"201684\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56561\",\"FareBreakdownid\":[\"376841\",\"376842\",\"376843\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"73\"],[\"74\"],[\"75\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"79\",\"80\",\"81\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"79\",\"80\",\"81\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":24717},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"688608\",\"MasterTPSysId\":\"688607\",\"ProposalID\":\"688608\\/V1\",\"InvoiceDate\":\"2023-05-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-08\",\"PaymentDate\":\"2023-05-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":24717,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":24717,\"TotalDueAmount\":0,\"InvoiceValue\":24717,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-ATQ-Air India AI-822\",\"ItemQty\":1,\"ItemRates\":10800,\"Total\":10800,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":10800,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":10800,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"ATQ-BLR-IndiGo 6E-951\",\"ItemQty\":1,\"ItemRates\":7438,\"Total\":7438,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":7438,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":7438,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-IXJ-SpiceJet SG-198\",\"ItemQty\":1,\"ItemRates\":6479,\"Total\":6479,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6479,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6479,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-08 12:27:32'),(224,'38fc3-cefa5-648e9-2d354','{\"BookingData\":[{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-5182\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2023-06-07T05:45\",\"LocalFromTime\":\"2023-06-07 05:45\",\"FromUTCTime\":\"2023-06-07T05:45\",\"LocalToTime\":\"2023-06-07 13:00\",\"ToUTCTime\":\"2023-06-07T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":435,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9035,\"PublishedFareTxt\":\"9,035\",\"ApiResultIndex\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6933,\"Tax\":2102,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":354,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9035,\"PublishedFare\":8750,\"OfferedFare\":8750,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_106033638112478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2102,\"BaseFareCal\":8750,\"BaseFare\":6933,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":354,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8750,\"CostToCustomer\":8750,\"BaseFareCal\":8750,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8750,\"intOfferedFare\":8750,\"intPublishFare\":9035,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"869\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T06:55\",\"SegFlightNumber\":\"6E-5182\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T13:00\",\"SegFlightNumber\":\"6E-6239\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-5182\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2023-06-07T05:45\",\"LocalFromTime\":\"2023-06-07 05:45\",\"FromUTCTime\":\"2023-06-07T05:45\",\"LocalToTime\":\"2023-06-07 13:00\",\"ToUTCTime\":\"2023-06-07T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":435,\"DepartureDateTxt\":\"Wed, 07 Jun\",\"ArrivalDateTxt\":\"Wed, 07 Jun\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":6000,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":13965,\"ApiResultIndex\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8647,\"Tax\":5318,\"YQTax\":0,\"OtherCharges\":3452,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":450,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13965,\"PublishedFare\":13110,\"OfferedFare\":13110,\"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\":\"1\",\"TaxIN\":5318,\"BaseFareCal\":13110,\"BaseFare\":8647,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":450,\"MFT\":216,\"OT\":3452,\"MU\":0,\"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\":\"869\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-07T06:55\",\"SegFlightNumber\":\"6E-5182\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-06-07T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-06-07T13:00\",\"SegFlightNumber\":\"6E-6239\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-07T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"874\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"711\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Goa arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa in\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOX\",\"destinationArrTime\":\"2023-06-12T09:05\",\"SegFlightNumber\":\"6E-6176\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-30221635920_0ATQDEL6E5182DELMAA6E6239_105941664322696\",\"localFromDateTime\":\"2023-06-07 05:45\",\"localToDateTime\":\"2023-06-07 13:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOX\",\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"QP-1801\",\"AirlineName\":\"AkasaAir\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:00\",\"TravelDate\":\"2023-06-09T06:00\",\"LocalFromTime\":\"2023-06-09 06:00\",\"FromUTCTime\":\"2023-06-09T06:00\",\"LocalToTime\":\"2023-06-09 07:00\",\"ToUTCTime\":\"2023-06-09T07:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":60,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Fri, 09 Jun\",\"FlightDuration\":\"1h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":2346,\"PublishedFareTxt\":\"2,346\",\"ApiResultIndex\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":819,\"Tax\":1527,\"YQTax\":0,\"OtherCharges\":1009,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":46,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2346,\"PublishedFare\":2061,\"OfferedFare\":2061,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_1MAABLRQP1801_106033644049143\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1527,\"BaseFareCal\":2061,\"BaseFare\":819,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":46,\"MFT\":72,\"OT\":1009,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2061,\"CostToCustomer\":2061,\"BaseFareCal\":2061,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2061,\"intOfferedFare\":2061,\"intPublishFare\":2346,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"874\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-06-09T07:00\",\"SegFlightNumber\":\"QP-1801\",\"AirlineCode\":\"QP\",\"AirlineName\":\"AkasaAir\",\"FareClass\":\"CP\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2023-06-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC05\",\"Price\":2000,\"amount\":2000,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC10\",\"Price\":4000,\"amount\":4000,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC15\",\"Price\":6000,\"amount\":6000,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC20\",\"Price\":8000,\"amount\":8000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"XC30\",\"Price\":12000,\"amount\":12000,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"CRPX\",\"Price\":0,\"amount\":0,\"Description\":\"Meal + Beverage choose on-board\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"UPMA\",\"Price\":200,\"amount\":200,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"874\",\"Code\":\"POHA\",\"Price\":200,\"amount\":200,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-1-30221635921_77MAABLRQP1801_105941324887341\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS102700554241\",\"bookingId_TJ\":\"TJS102700554241\",\"FlightNumber\":\"6E-6176\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:05\",\"TravelDate\":\"2023-06-12T08:00\",\"LocalFromTime\":\"2023-06-12 08:00\",\"FromUTCTime\":\"2023-06-12T08:00\",\"LocalToTime\":\"2023-06-12 09:05\",\"ToUTCTime\":\"2023-06-12T09:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Mon, 12 Jun\",\"ArrivalDateTxt\":\"Mon, 12 Jun\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOX\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":2584,\"PublishedFareTxt\":\"2,584\",\"ApiResultIndex\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-MAA\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"MAA-BLR\":{\"fr\":{\"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\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"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\":{\"CRF\":50,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}},\"BLR-GOX\":{\"fr\":{\"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}}},\"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,\"ARFT\":150,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":895,\"Tax\":1689,\"YQTax\":0,\"OtherCharges\":1167,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":50,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2584,\"PublishedFare\":2299,\"OfferedFare\":2299,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-30221635920_2BLRGOX6E6176_106033648787865\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1689,\"BaseFareCal\":2299,\"BaseFare\":895,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":50,\"MFT\":72,\"OT\":1167,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2299,\"CostToCustomer\":2299,\"BaseFareCal\":2299,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2299,\"intOfferedFare\":2299,\"intPublishFare\":2584,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"711\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Goa arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa in\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOX\",\"destinationArrTime\":\"2023-06-12T09:05\",\"SegFlightNumber\":\"6E-6176\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-06-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"VBIR\",\"Price\":400,\"amount\":400,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"711\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-08T12:33:59.657\",\"strTraceId\":\"30-15-10-5-4-1-30221635922_7BLRGOX6E6176_105942151558349\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"strDestinationAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"intMemberCount\":1,\"intSourceCityId\":[974,6000,2262],\"intDestinationCityId\":[6000,2262,0],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Amritsar\",\"Chennai\",\"Bengaluru\"],\"mytrip_city_to\":[\"Chennai\",\"Bengaluru\",\"Goa In\"],\"departure_dates\":[\"2023\\/06\\/07\",\"2023\\/06\\/09\",\"2023\\/06\\/12\"],\"source_city\":[\"ATQ\",\"MAA\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"MAA\",\"BLR\",\"GOI\"],\"ContSysId\":[\"101\",\"101\",\"0\"],\"source\":[\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Chennai, IN - Chennai Arpt MAA, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Chennai, IN - Chennai Arpt MAA, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Goa In, IN - Dabolim Arpt GOI, India\"],\"departure_date\":[\"2023\\/06\\/07\",\"2023\\/06\\/09\",\"2023\\/06\\/12\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Raja Sansi Arpt ATQ\",\" IN - Chennai Arpt MAA\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Chennai Arpt MAA\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Dabolim Arpt GOI\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"ATQ\",\"MAA\",\"BLR\"],\"destinationCityAirportCode\":[\"MAA\",\"BLR\",\"GOI\"],\"from\":[\"ATQ\",\"MAA\",\"BLR\"],\"to\":[\"MAA\",\"BLR\",\"GOI\"],\"sourceCityText\":[\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"Chennai, IN - Chennai Arpt MAA, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Chennai, IN - Chennai Arpt MAA, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Goa In, IN - Dabolim Arpt GOI, India\"],\"sourceCityId\":[974,6000,2262],\"destinationCityId\":[6000,2262,0],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"38fc3-cefa5-648e9-2d354\",\"PreferredAirline\":null},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Amritsar&mytrip_city_to%5B%5D=Chennai&departure_dates%5B%5D=7+Jun+2023&source_city%5B%5D=ATQ&ContSysId_1%5B%5D=101&destination_city%5B%5D=MAA&ContSysId%5B%5D=101&source%5B%5D=Amritsar%2C+IN+-+Raja+Sansi+Arpt+ATQ%2C+India&destination%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&departure_date%5B%5D=2023%2F06%2F07&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Raja+Sansi+Arpt+ATQ&to_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&mytrip_city_from%5B%5D=Chennai&mytrip_city_to%5B%5D=Bengaluru&departure_dates%5B%5D=9+Jun+2023&source_city%5B%5D=MAA&ContSysId_1%5B%5D=101&destination_city%5B%5D=BLR&ContSysId%5B%5D=101&source%5B%5D=Chennai%2C+IN+-+Chennai+Arpt+MAA%2C+India&destination%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date%5B%5D=2023%2F06%2F09&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Chennai+Arpt+MAA&to_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&mytrip_city_from%5B%5D=Bengaluru&mytrip_city_to%5B%5D=Goa+In&departure_dates%5B%5D=12+Jun+2023&source_city%5B%5D=BLR&ContSysId_1%5B%5D=101&destination_city%5B%5D=GOI&ContSysId%5B%5D=0&source%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination%5B%5D=Goa+In%2C+IN+-+Dabolim+Arpt+GOI%2C+India&departure_date%5B%5D=2023%2F06%2F12&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city%5B%5D=+IN+-+Dabolim+Arpt+GOI&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-08-12-32-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"688630\",\"TPSysId\":\"688631\",\"VersionId\":[\"201689\",\"201690\",\"201691\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"56564\",\"FareBreakdownid\":[\"376844\",\"376845\",\"376846\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"76\"],[\"77\"],[\"78\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"82\",\"83\",\"84\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"82\",\"83\",\"84\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":13110},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"688631\",\"MasterTPSysId\":\"688630\",\"ProposalID\":\"688631\\/V1\",\"InvoiceDate\":\"2023-05-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-08\",\"PaymentDate\":\"2023-05-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":13110,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":13110,\"TotalDueAmount\":0,\"InvoiceValue\":13110,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"ATQ-MAA-IndiGo 6E-5182\",\"ItemQty\":1,\"ItemRates\":8750,\"Total\":8750,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":8750,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":8750,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-BLR-AkasaAir QP-1801\",\"ItemQty\":1,\"ItemRates\":2061,\"Total\":2061,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2061,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":2061,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-GOX-IndiGo 6E-6176\",\"ItemQty\":1,\"ItemRates\":2299,\"Total\":2299,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2299,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":2299,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},{\"order\":{\"bookingId\":\"TJS102700554241\",\"amount\":13965,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"ktourismandagrosolutions@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-05-08T12:35:09.905\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"127961\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5182\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"cT\":195,\"da\":{\"code\":\"ATQ\",\"name\":\"Raja Sansi Arpt\",\"cityCode\":\"ATQ\",\"city\":\"Amritsar\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-06-07T05:45\",\"at\":\"2023-06-07T06:55\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"127962\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6239\",\"eT\":\"321\"},\"stops\":0,\"duration\":170,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-06-07T10:10\",\"at\":\"2023-06-07T13:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"127963\",\"fD\":{\"aI\":{\"code\":\"QP\",\"name\":\"AkasaAir\",\"isLcc\":true},\"fN\":\"1801\",\"eT\":\"7MA\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal T1\"},\"dt\":\"2023-06-09T06:00\",\"at\":\"2023-06-09T07:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"127964\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6176\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"GOX\",\"name\":\"Goa arpt\",\"cityCode\":\"GOX\",\"city\":\"Goa in\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-06-12T08:00\",\"at\":\"2023-06-12T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"ATQ-DEL\":\"TESTPNR\",\"DEL-MAA\":\"TESTPNR\",\"MAA-BLR\":\"E5QQ3J\",\"BLR-GOX\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":13965,\"NF\":13110,\"IGST\":216,\"NCM\":855,\"BF\":8647,\"TAF\":5318},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MFT\":216,\"YQ\":0,\"AGST\":450,\"OT\":3452,\"MF\":1200}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-05-08 12:34:02'),(228,'45226-604f7-661b9-23fc5','{\"BookingData\":[{\"bookingId\":\"BKRS104200555529\",\"bookingId_TJ\":\"TJS104200555529\",\"FlightNumber\":\"6E-6916\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2023-05-11T19:20\",\"LocalFromTime\":\"2023-05-11 19:20\",\"FromUTCTime\":\"2023-05-11T19:20\",\"LocalToTime\":\"2023-05-12 01:00\",\"ToUTCTime\":\"2023-05-12T01:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7822,\"PublishedFareTxt\":\"7,822\",\"ApiResultIndex\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IDR-BLR\":{\"fr\":{\"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,\"ARF\":3000,\"CRFT\":9,\"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}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6000,\"Tax\":1822,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":308,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7822,\"PublishedFare\":7537,\"OfferedFare\":7537,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22540852514143\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1822,\"BaseFareCal\":7537,\"BaseFare\":6000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":308,\"MFT\":72,\"OT\":1042,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7537,\"CostToCustomer\":7537,\"BaseFareCal\":7537,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7537,\"intOfferedFare\":7537,\"intPublishFare\":7822,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"962\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-05-11T20:40\",\"SegFlightNumber\":\"6E-6916\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-05-11T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"963\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T01:00\",\"SegFlightNumber\":\"6E-949\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2023-05-11T23:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:55\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"962\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"45226-604f7-661b9-23fc5\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-09T12:27:18.907\",\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-11 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104200555529\",\"bookingId_TJ\":\"TJS104200555529\",\"FlightNumber\":\"6E-6916\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2023-05-11T19:20\",\"LocalFromTime\":\"2023-05-11 19:20\",\"FromUTCTime\":\"2023-05-11T19:20\",\"LocalToTime\":\"2023-05-12 01:00\",\"ToUTCTime\":\"2023-05-12T01:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":195,\"LAYOVERDuration\":\"3h 15m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Thu, 11 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7822,\"ApiResultIndex\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"45226-604f7-661b9-23fc5\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-09T12:27:18.907\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6000,\"Tax\":1822,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":308,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7822,\"PublishedFare\":7537,\"OfferedFare\":7537,\"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\":\"1\",\"TaxIN\":1822,\"BaseFareCal\":7537,\"BaseFare\":6000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":308,\"MFT\":72,\"OT\":1042,\"MU\":0,\"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\":\"962\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2023-05-11T20:40\",\"SegFlightNumber\":\"6E-6916\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-05-11T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":195,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"3h 15m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"963\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-05-12T01:00\",\"SegFlightNumber\":\"6E-949\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2023-05-11T23:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:55\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4388819554_0IDRHYD6E6916HYDBLR6E949_22528700727637\",\"localFromDateTime\":\"2023-05-11 19:20\",\"localToDateTime\":\"2023-05-12 01:00\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Indore\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IDR\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"11\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Devi Ahilya Bai Holkar Arpt IDR\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IDR\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IDR\",\"to\":\"BLR\",\"sourceCityText\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":12706,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"11\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-11\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"45226-604f7-661b9-23fc5\",\"PreferredAirline\":null,\"from_city_\":\"1__IDR-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Indore&mytrip_city_to=Bengaluru&source_city=IDR&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Indore%2C+IN+-+Devi+Ahilya+Bai+Holkar+Arpt+IDR%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=11%2F05%2F2023&return_date=&from_mytrip_city=+IN+-+Devi+Ahilya+Bai+Holkar+Arpt+IDR&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7566821253\",\"FirstName\":\"Atmaj\",\"LastName\":\"Wadnerkar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-09-12-28-21\",\"IsApproved\":\"1\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"8\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"690291\",\"TPSysId\":\"690292\",\"VersionId\":[\"202182\"],\"CustomerSysId\":\"394046\",\"TrxId\":\"56653\",\"FareBreakdownid\":[\"376916\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"79\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"85\"]},\"selectedSeatSession\":{\"962\":{\"1\":{\"seatNo\":\"10F\",\"seatPosition\":{\"row\":10,\"column\":7},\"isBooked\":false,\"isAisle\":false,\"code\":\"10F\",\"amount\":350,\"ctds\":0}}},\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"85\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":7887},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"394046\",\"TPSysId\":\"690292\",\"MasterTPSysId\":\"690291\",\"ProposalID\":\"690292\\/V1\",\"InvoiceDate\":\"2023-05-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-09\",\"PaymentDate\":\"2023-05-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":7887,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":7887,\"TotalDueAmount\":0,\"InvoiceValue\":7887,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IDR-BLR-IndiGo 6E-6916\",\"ItemQty\":1,\"ItemRates\":7537,\"Total\":7537,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":7537,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":7537,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"MisxItems_name\":\"Add ons\",\"Description\":\"Seat\",\"ItemQty\":1,\"ItemRates\":350,\"Total\":350,\"DiscountType\":0,\"Discount\":0,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":350,\"ServiceFeeTotal\":0,\"GSTPercentage\":0,\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-09 12:29:31'),(229,'40b74-17b6e-4d2c1-4f0b0','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid9355384104-15649515\",\"name\":\"Yellow House\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\"}],\"des\":\"When you stay at Yellow House in Vagator, youll be on the beach, within a 15-minute drive of Vagator Beach and Anjuna Beach.  This beach hotel is 5 mi (8.1 km) from Baga Beach and 5.7 mi (9.2 km) from Calangute Beach.\\nTake in the views from a rooftop terrace and a garden and make use of amenities such as complimentary wireless Internet access. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\nFeatured amenities include luggage storage and laundry facilities. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a train station pick-up service.\\nEnjoy a meal at the restaurant or snacks in the hotels coffee shop\\/caf\\u00e9. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 8:00 AM to 1:00 PM for a fee.\\nMake yourself at home in one of the 10 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms with showers are provided. Conveniences include desks and ceiling fans, and housekeeping is provided on request.\",\"rt\":3,\"gl\":{\"ln\":\"73.735275\",\"lt\":\"15.601622\"},\"ad\":{\"adr\":\"House 510 Vagator Beach\",\"city\":{\"name\":\"GOA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"GOA\",\"cn\":\"INDIA\"},\"fl\":[\"hotel\",\"Check-in hour\",\"Check-out hour\",\"YES Wi-fi\",\"Airport Shuttle\",\"Laundry service\",\"Garden\",\"Luggage room\",\"Caf\\u00e9\",\"Bar\",\"Restaurant\",\"Meeting room\"],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"DOUBLE DELUXE ROOM ONLY   _2_0\",\"rc\":\"DOUBLE DELUXE\",\"rt\":\"DOUBLE DELUXE ROOM ONLY   \",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1175.63,\"tfcs\":{\"TF\":1175.63,\"BF\":1163.83,\"NF\":1175.63,\"TAF\":11.8},\"tafcs\":{\"TAF\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":1175.63,\"BF\":1163.83,\"NF\":1175.63,\"TAF\":11.8},\"afc\":{\"TAF\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83}}}],\"checkInDate\":\"2023-05-17\",\"checkOutDate\":\"2023-05-18\"}],\"id\":\"12_0_6459f078ead55185df1194d1\",\"tp\":1175.63,\"cnp\":{\"id\":\"12_0_6459f078ead55185df1194d1\",\"ifra\":true,\"pd\":[{\"fdt\":\"2023-05-09T12:35:36.289\",\"tdt\":\"2023-05-11T17:00\",\"am\":0},{\"fdt\":\"2023-05-11T17:00\",\"tdt\":\"2023-05-17T12:00\",\"am\":1162.96},{\"fdt\":\"2023-05-17T12:00\",\"tdt\":\"2023-05-18T23:59\",\"am\":1163.83}]},\"ddt\":\"2023-05-11T17:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"DOUBLE DELUXE  ROOM ONLY: .  Check-in hour -23:30.Due to the pandemic, many accommodation and service providers may implement processes and policies to help protect the safety of all of us. This may result in the unavailability or changes in certain services and amenities that are normally available from them.More info here https:\\/\\/cutt.ly\\/MT8BJcv (30\\/04\\/2021-30\\/06\\/2023)  Included: Free self parking. Included: Free WiFi.\"}],\"oai\":{\"sid\":\"12\"},\"iopr\":false,\"ipr\":false,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1163.83}],\"uid\":\"15649515\"},\"bookingId\":\"TJS209800555543\",\"query\":{\"checkinDate\":\"2023-05-17\",\"checkoutDate\":\"2023-05-18\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699356\",\"countryName\":\"INDIA\",\"cityName\":\"GOA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid9355384104\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1106}},\"hotelbookingid\":\"11\",\"SearchHotelTraceId\":\"40b74-17b6e-4d2c1-4f0b0\",\"CustomerSession\":{\"bookingId\":\"40b74-17b6e-4d2c1-4f0b0\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"7566821253\",\"traceId\":\"40b74-17b6e-4d2c1-4f0b0\",\"leadEmail\":\"atmajw1@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"Atmaj\",\"passenger-lastname-1\":\"W\",\"paxType-2\":\"1\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Mr\",\"passenger-firstname-2\":\"At\",\"passenger-lastname-2\":\"q\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"DOUBLE DELUXE ROOM ONLY   _2_0\",\"RoomCategory\":\"DOUBLE DELUXE\",\"RoomType\":\"DOUBLE DELUXE ROOM ONLY   \",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1175.63,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1175.63,\"TotalRoomPrice\":1175.63,\"TotalFare\":1175.63,\"TotalBaseFare\":1163.83,\"TotalNetFare\":1175.63,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":1175.63,\"BF\":1163.83,\"NF\":1175.63,\"TAF\":11.8},\"afc\":{\"TAF\":{\"SNP\":1163.83,\"MFT\":1.8,\"MF\":10,\"SGP\":1163.83,\"SBP\":1163.83}}}],\"PriceWithMarkup\":1175.63,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1175.63,\"pernightperroomprice\":1175.63,\"RoomPrice\":1175.63,\"withmarkupprice\":1175.63,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"12_0_6459f078ead55185df1194d1\",\"RoomTotalPrice\":1175.63,\"iopr\":false,\"ipr\":false,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":false,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid9355384104-15649515\",\"HotemName\":\"YELLOW HOUSE\",\"HotelDescription\":\"When you stay at Yellow House in Vagator, youll be on the beach, within a 15-minute drive of Vagator Beach and Anjuna Beach.  This beach hotel is 5 mi (8.1 km) from Baga Beach and 5.7 mi (9.2 km) from Calangute Beach.\\nTake in the views from a rooftop terrace and a garden and make use of amenities such as complimentary wireless Internet access. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).\\nFeatured amenities include luggage storage and laundry facilities. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a train station pick-up service.\\nEnjoy a meal at the restaurant or snacks in the hotels coffee shop\\/caf\\u00e9. Quench your thirst with your favorite drink at the bar\\/lounge. Continental breakfasts are available daily from 8:00 AM to 1:00 PM for a fee.\\nMake yourself at home in one of the 10 guestrooms. Complimentary wireless Internet access is available to keep you connected. Bathrooms with showers are provided. Conveniences include desks and ceiling fans, and housekeeping is provided on request.\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9yXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwOC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwNi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxNC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMi5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAxMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9mXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9sXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9rXzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDEuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl9iYV8wMDIuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMS5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMy5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3Bob3Rvcy5ob3RlbGJlZHMuY29tL2dpYXRhL2JpZ2dlci83Ni83Njc1MjUvNzY3NTI1YV9oYl93XzAwMi5qcGc=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"73.735275\",\"lt\":\"15.601622\"},\"HotelAddress\":\"House 510, Vagator Beach \",\"HotelCity\":\"GOA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"hotel\",\"Check-in hour\",\"Check-out hour\",\"YES Wi-fi\",\"Airport Shuttle\",\"Laundry service\",\"Garden\",\"Luggage room\",\"Caf\\u00e9\",\"Bar\",\"Restaurant\",\"Meeting room\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-05-17\",\"checkoutDate\":\"2023-05-18\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699356\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"690331\",\"TPSysId\":\"690332\",\"VersionId\":\"2081983\",\"CustomerSysId\":\"394046\",\"TrxId\":\"56657\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-05-09 12:40:55'),(230,'31f38-e7dfb-f0ff1-4fcb4','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid3069559942-39699029\",\"name\":\"OCEANIC PEARL HOTEL\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\"}],\"des\":\"\",\"rt\":3,\"gl\":{\"ln\":\"73.761375\",\"lt\":\"15.533253\"},\"ad\":{\"adr\":\"\",\"city\":{\"name\":\"GOA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"GOA\",\"cn\":\"INDIA\"},\"fl\":[],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"FullBed Standard Room(Room Only)(1 Double Bed)_2_0\",\"rc\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"rt\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1424.07,\"tfcs\":{\"TF\":1424.07,\"TAF\":11.8,\"NF\":1424.07,\"BF\":1412.27},\"tafcs\":{\"TAF\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":1424.07,\"TAF\":11.8,\"NF\":1424.07,\"BF\":1412.27},\"afc\":{\"TAF\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8}}}],\"checkInDate\":\"2023-05-23\",\"checkOutDate\":\"2023-05-24\"}],\"id\":\"13_0_64686a8fe9d551f624ca5f37\",\"tp\":1424.07,\"cnp\":{\"id\":\"13_0_64686a8fe9d551f624ca5f37\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-05-20T12:07:28.875\",\"tdt\":\"2023-05-23T12:00\",\"am\":1412.27},{\"fdt\":\"2023-05-23T12:00\",\"tdt\":\"2023-05-24T23:59\",\"am\":1412.27}]},\"ddt\":\"2023-05-20T12:07:28.875\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Bed Type Selection is not guaranteed.Amenities:Free self parking, Free WiFiBooking price includes Taxes and fees 1.94 USDTaxes and Fees:This charge includes estimated amounts the travel service provider (i.e. hotel, car rental company) pays for their taxes, and\\/or taxes that we pay, to taxing authorities on your booking (including but not limited to sales, occupancy, and value added tax). This amount may also include any amounts charged to us for resort fees, cleaning fees, and other fees and\\/or a fee we, the hotel supplier and\\/or the website you booked on, retain as part of the compensation for our and\\/or their services, which varies based on factors such as location, the amount, and how you booked. For more details, please see the Terms and Conditions.\"}],\"oai\":{\"sid\":\"13\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1412.27}],\"uid\":\"39699029\"},\"bookingId\":\"TJS203800565942\",\"alerts\":[{\"oldValue\":\"OCEANIC PEARL BEACH GUEST HOUSE;Holiday Street House no E-1\\/248 A Gauravaddo next to little italy road ,GOA,INDIA\",\"newValue\":\"OCEANIC PEARL HOTEL;GOA,INDIA\",\"field\":\"HOTELNAME\",\"type\":\"STATIC_DATA_ALERT\"}],\"query\":{\"checkinDate\":\"2023-05-23\",\"checkoutDate\":\"2023-05-24\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699356\",\"countryName\":\"INDIA\",\"cityName\":\"GOA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid3069559942\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":1153}},\"hotelbookingid\":\"12\",\"SearchHotelTraceId\":\"31f38-e7dfb-f0ff1-4fcb4\",\"CustomerSession\":{\"bookingId\":\"31f38-e7dfb-f0ff1-4fcb4\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"7566821253\",\"traceId\":\"31f38-e7dfb-f0ff1-4fcb4\",\"leadEmail\":\"atmajw1@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"Atmaj\",\"passenger-lastname-1\":\"W\",\"passenger-panNumber-1\":\"AACCG7285M\",\"paxType-2\":\"1\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Mr\",\"passenger-firstname-2\":\"AAAAA\",\"passenger-lastname-2\":\"BBBBBB\",\"passenger-panNumber-2\":\"AACCG7285N\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"FullBed Standard Room(Room Only)(1 Double Bed)_2_0\",\"RoomCategory\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"RoomType\":\"FullBed Standard Room(Room Only)(1 Double Bed)\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1424.07,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1424.07,\"TotalRoomPrice\":1424.07,\"TotalFare\":1424.07,\"TotalBaseFare\":1412.27,\"TotalNetFare\":1424.07,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":1424.07,\"TAF\":11.8,\"NF\":1424.07,\"BF\":1412.27},\"afc\":{\"TAF\":{\"SBP\":1412.27,\"SGP\":1412.27,\"SNP\":1412.27,\"MF\":10,\"MFT\":1.8}}}],\"PriceWithMarkup\":1424.07,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1424.07,\"pernightperroomprice\":1424.07,\"RoomPrice\":1424.07,\"withmarkupprice\":1424.07,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"13_0_64686a8fe9d551f624ca5f37\",\"RoomTotalPrice\":1424.07,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid3069559942-39699029\",\"HotemName\":\"OCEANIC PEARL BEACH GUEST HOUSE\",\"HotelDescription\":\"\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"73.761375\",\"lt\":\"15.533253\"},\"HotelAddress\":\"Holiday Street House no E-1\\/248 A Gauravaddo next to little italy road \",\"HotelCity\":\"GOA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-05-23\",\"checkoutDate\":\"2023-05-24\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"699356\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"704013\",\"TPSysId\":\"704014\",\"VersionId\":\"2123000\",\"CustomerSysId\":\"394046\",\"TrxId\":\"57731\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-05-20 12:08:05'),(231,'b73bf-065cb-96145-60327','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-635\",\"keyIndex\":18,\"SegFlightNumberArr\":\"AI-635 +1\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-4895186833_2IDRBOMAI636_118499924718743\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"22:10\",\"TravelDate\":\"2023-06-12T09:40\",\"LocalFromTime\":\"2023-06-12 09:40\",\"FromUTCTime\":\"2023-06-12T09:40\",\"LocalToTime\":\"2023-06-12 22:10\",\"ToUTCTime\":\"2023-06-12T22:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":750,\"DepartureDateTxt\":\"Mon, 12 Jun\",\"ArrivalDateTxt\":\"Mon, 12 Jun\",\"FlightDuration\":\"12h 30m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11467,\"PublishedFareTxt\":\"11,467\",\"ApiResultIndex\":\"15-2-10-4895186833_3IDRDELAI635DELBOMAI805_118499924723198\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b73bf-065cb-96145-60327\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[],\"Segments\":[{\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-06-12T11:20\",\"SegFlightNumber\":\"AI-635\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-06-12T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":520,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:20\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-12T22:10\",\"SegFlightNumber\":\"AI-805\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-12T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[],\"$$hashKey\":\"0AL\"},{\"keyIndex\":2,\"FlightNumber\":\"6E-843\",\"SegFlightNumberArr\":\"6E-843\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4895186833_2BOMIDR6E843_118497833453147\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2023-06-15T17:30\",\"LocalFromTime\":\"2023-06-15 17:30\",\"FromUTCTime\":\"2023-06-15T17:30\",\"LocalToTime\":\"2023-06-15 18:45\",\"ToUTCTime\":\"2023-06-15T18:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Thu, 15 Jun\",\"ArrivalDateTxt\":\"Thu, 15 Jun\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4256.7,\"PublishedFareTxt\":\"4,257\",\"ApiResultIndex\":\"5-4895186833_2BOMIDR6E843_118497833452614\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"b73bf-065cb-96145-60327\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3600,\"Tax\":656.7,\"YQTax\":0,\"OtherCharges\":454,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4256.7,\"PublishedFare\":4257,\"PublishedFarePerPax\":4257,\"OfferedFare\":4256.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4895186833_2BOMIDR6E843_118497833453147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":656.7,\"BaseFareCal\":4256.7,\"BaseFare\":3600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":185,\"MFT\":2.7,\"OT\":454,\"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\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06T\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2023-06-15T18:45\",\"SegFlightNumber\":\"6E-843\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-06-15T17:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01F\"}],\"FlightBookingDataInbound\":{\"keyIndex\":2,\"FlightNumber\":\"6E-843\",\"SegFlightNumberArr\":\"6E-843\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4895186833_2BOMIDR6E843_118497833453147\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2023-06-15T17:30\",\"LocalFromTime\":\"2023-06-15 17:30\",\"FromUTCTime\":\"2023-06-15T17:30\",\"LocalToTime\":\"2023-06-15 18:45\",\"ToUTCTime\":\"2023-06-15T18:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Thu, 15 Jun\",\"ArrivalDateTxt\":\"Thu, 15 Jun\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"12706\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4256.7,\"PublishedFareTxt\":\"4,257\",\"ApiResultIndex\":\"5-4895186833_2BOMIDR6E843_118497833452614\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"b73bf-065cb-96145-60327\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3600,\"Tax\":656.7,\"YQTax\":0,\"OtherCharges\":454,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":185,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4256.7,\"PublishedFare\":4257,\"PublishedFarePerPax\":4257,\"OfferedFare\":4256.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4895186833_2BOMIDR6E843_118497833453147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"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\":656.7,\"BaseFareCal\":4256.7,\"BaseFare\":3600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":185,\"MFT\":2.7,\"OT\":454,\"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\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06T\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2023-06-15T18:45\",\"SegFlightNumber\":\"6E-843\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-06-15T17:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01F\"}}','2023-06-05 15:35:36'),(233,'03ddc-68755-4ed70-4f5b3','{\"BookingData\":[{\"bookingId\":\"BKRS108000612634\",\"bookingId_TJ\":\"TJS108000612634\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2023-08-02T13:55\",\"LocalFromTime\":\"2023-08-02 13:55\",\"FromUTCTime\":\"2023-08-02T13:55\",\"LocalToTime\":\"2023-08-02 23:20\",\"ToUTCTime\":\"2023-08-02T23:20\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":565,\"DepartureDateTxt\":\"Wed, 02 Aug\",\"ArrivalDateTxt\":\"Wed, 02 Aug\",\"FlightDuration\":\"9h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11302,\"PublishedFareTxt\":\"11,302\",\"ApiResultIndex\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Only Statutory Taxes will be refunded\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARF\":3920,\"CRFT\":9,\"ARFT\":196,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3920},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8795,\"Tax\":2507,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":452,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":11302,\"PublishedFare\":11017,\"OfferedFare\":11017,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19581603970768\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2507,\"BaseFareCal\":11017,\"BaseFare\":8795,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":452,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":250,\"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\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11017,\"CostToCustomer\":11017,\"BaseFareCal\":11017,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11017,\"intOfferedFare\":11017,\"intPublishFare\":11302,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"910\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-08-02T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-02T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"911\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-02T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-08-02T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":225,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"912\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-02T23:20\",\"SegFlightNumber\":\"UK-807\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-02T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"03ddc-68755-4ed70-4f5b3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-03T11:26:19.643\",\"strTraceId\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-02 12:00\",\"localToDateTime\":\"2023-08-05 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS108000612634\",\"bookingId_TJ\":\"TJS108000612634\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"strTraceId\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2023-08-02T13:55\",\"LocalFromTime\":\"2023-08-02 13:55\",\"FromUTCTime\":\"2023-08-02T13:55\",\"LocalToTime\":\"2023-08-02 23:20\",\"ToUTCTime\":\"2023-08-02T23:20\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":565,\"DepartureDateTxt\":\"Wed, 02 Aug\",\"ArrivalDateTxt\":\"Wed, 02 Aug\",\"FlightDuration\":\"9h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":20067.7,\"ApiResultIndex\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"03ddc-68755-4ed70-4f5b3\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-03T11:26:19.643\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":16296,\"Tax\":3771.7,\"YQTax\":0,\"OtherCharges\":2200,\"Discount\":0,\"ServiceFee\":415,\"ManagementFeeTax\":74.7,\"AirlineGSTComponent\":832,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":20067.7,\"PublishedFare\":19782.7,\"OfferedFare\":19782.7,\"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\":\"1\",\"TaxIN\":3771.7,\"BaseFareCal\":19782.7,\"BaseFare\":16296,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":415,\"YQ\":0,\"AGST\":832,\"MFT\":74.7,\"OT\":2200,\"MU\":0,\"YR\":250,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"910\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-08-02T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-02T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"911\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-02T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-08-02T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":225,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"912\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-02T23:20\",\"SegFlightNumber\":\"UK-807\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-02T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],[{\"segmentid\":\"669\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-05T23:20\",\"SegFlightNumber\":\"6E-2406\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-05T20:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":480,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:35\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"670\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-06T08:45\",\"SegFlightNumber\":\"6E-2411\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-06T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-6446889957_0IXJSXRUK612SXRDELUK612DELBLRUK807_19523234311087\",\"localFromDateTime\":\"2023-08-02 13:55\",\"localToDateTime\":\"2023-08-02 23:20\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS108000612634\",\"bookingId_TJ\":\"TJS108000612634\",\"FlightNumber\":\"6E-2406\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6446889957_1BLRDEL6E2406DELIXJ6E2411_19520426241634\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:35\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2023-08-05T20:35\",\"LocalFromTime\":\"2023-08-05 20:35\",\"FromUTCTime\":\"2023-08-05T20:35\",\"LocalToTime\":\"2023-08-06 08:45\",\"ToUTCTime\":\"2023-08-06T08:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":480,\"LAYOVERDuration\":\"8h 0m\",\"FlyingMinutes\":730,\"DepartureDateTxt\":\"Sat, 05 Aug\",\"ArrivalDateTxt\":\"Sun, 06 Aug\",\"FlightDuration\":\"12h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8765.7,\"PublishedFareTxt\":\"8,766\",\"ApiResultIndex\":\"5-6446889957_1BLRDEL6E2406DELIXJ6E2411_19520426241634\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Only Statutory Taxes will be refunded\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARF\":3920,\"CRFT\":9,\"ARFT\":196,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3920},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7501,\"Tax\":1264.7,\"YQTax\":0,\"OtherCharges\":867,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8765.7,\"PublishedFare\":8765.7,\"OfferedFare\":8765.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-6446889957_1BLRDEL6E2406DELIXJ6E2411_19581605942248\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1264.7,\"BaseFareCal\":8765.7,\"BaseFare\":7501,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":380,\"MFT\":2.7,\"OT\":867,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8765.7,\"CostToCustomer\":8765.7,\"BaseFareCal\":8765.7,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8765.7,\"intOfferedFare\":8765.7,\"intPublishFare\":8765.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"669\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-05T23:20\",\"SegFlightNumber\":\"6E-2406\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-05T20:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":480,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:35\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"8h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"670\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-06T08:45\",\"SegFlightNumber\":\"6E-2411\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-06T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"669\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"910\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"03ddc-68755-4ed70-4f5b3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-03T11:26:19.643\",\"strTraceId\":\"5-6446889957_1BLRDEL6E2406DELIXJ6E2411_19520426241634\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-02 12:00\",\"localToDateTime\":\"2023-08-05 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"02\\/08\\/2023\",\"return_date\":\"05\\/08\\/2023\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"02\\/08\\/2023\",\"return_dates\":\"05\\/08\\/2023\",\"strDepatureDate\":\"2023-08-02\",\"strReturnDate\":\"2023-08-05\",\"SearchFlightTraceId\":\"03ddc-68755-4ed70-4f5b3\",\"PreferredAirline\":null,\"from_city_\":\"2__IXJ-BLR-IXJ\"}}','2023-07-03 11:24:59'),(239,'39951-2cea9-d21af-26e1a','{\"BookingData\":[{\"bookingId\":\"BKRS104100612664\",\"bookingId_TJ\":\"TJS104100612664\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-08-10T09:20\",\"LocalFromTime\":\"2023-08-10 09:20\",\"FromUTCTime\":\"2023-08-10T09:20\",\"LocalToTime\":\"2023-08-10 10:40\",\"ToUTCTime\":\"2023-08-10T10:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"PublishedFareTxt\":\"3,499\",\"ApiResultIndex\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3387911288_0DELIXJSG160_19920113651298\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"534\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-10T10:40\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"534\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"39951-2cea9-d21af-26e1a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:31:58.158\",\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":13021,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100612664\",\"bookingId_TJ\":\"TJS104100612664\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2023-08-10T09:20\",\"LocalFromTime\":\"2023-08-10 09:20\",\"FromUTCTime\":\"2023-08-10T09:20\",\"LocalToTime\":\"2023-08-10 10:40\",\"ToUTCTime\":\"2023-08-10T10:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3499,\"ApiResultIndex\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"39951-2cea9-d21af-26e1a\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:31:58.158\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"OfferedFare\":3214,\"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\":\"1\",\"TaxIN\":1064,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"MU\":0,\"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\":\"534\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-10T10:40\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-3387911288_0DELIXJSG160_19763608199500\",\"localFromDateTime\":\"2023-08-10 09:20\",\"localToDateTime\":\"2023-08-10 10:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":13021,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Jammu\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"IXJ\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"departure_date\":\"10\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"IXJ\",\"from\":\"DEL\",\"to\":\"IXJ\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"sourceCityId\":7701,\"destinationCityId\":13021,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"10\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-10\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"39951-2cea9-d21af-26e1a\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-IXJ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Jammu&class=2&adults=1&childs=0&infants=0&FareTypes=REGULAR&source_city=DEL&ContSysId_1=101&destination_city=IXJ&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&departure_date=10%2F08%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Satwari+Arpt+IXJ\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-03-11-31-54\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752817\",\"TPSysId\":\"752818\",\"VersionId\":[\"225035\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62097\",\"FareBreakdownid\":[\"380659\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"80\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"86\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"86\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3214},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"752818\",\"MasterTPSysId\":\"752817\",\"ProposalID\":\"752818\\/V1\",\"InvoiceDate\":\"2023-07-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-03\",\"PaymentDate\":\"2023-07-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":3214,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3214,\"TotalDueAmount\":0,\"InvoiceValue\":3214,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-IXJ-SpiceJet SG-160\",\"ItemQty\":1,\"ItemRates\":3214,\"Total\":3214,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3214,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3214,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS104100612664\",\"amount\":3499,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:34:14.637\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138152\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"160\",\"eT\":\"737\"},\"stops\":0,\"duration\":80,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-08-10T09:20\",\"at\":\"2023-08-10T10:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-IXJ\":\"MHBB9B\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":285,\"IGST\":72,\"NF\":3214,\"TAF\":1064,\"TF\":3499,\"BF\":2435},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"MF\":400,\"OT\":468,\"MFT\":72,\"YQ\":0,\"AGST\":124}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-07-03 11:32:58'),(240,'b8ed7-a2457-3ed80-ac18b','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid2776296318-39647921\",\"name\":\"hotel taj plaza\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"des\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate,\",\"city\":{\"name\":\"AGRA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"fl\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])_2_0\",\"rc\":\"Standard Room with Wi-Fi -[Non Refundables]\",\"rt\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])\",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":432.6,\"tfcs\":{\"TF\":432.6,\"BF\":420.8,\"NF\":432.6,\"TAF\":11.8},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":432.6,\"BF\":420.8,\"NF\":432.6,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10}}}],\"checkInDate\":\"2023-07-12\",\"checkOutDate\":\"2023-07-13\"}],\"id\":\"16_0_64a2667ae9d5514a9f5b1e33\",\"tp\":432.6,\"cnp\":{\"id\":\"16_0_64a2667ae9d5514a9f5b1e33\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-07-03T11:46:25.382\",\"tdt\":\"2023-07-12T12:00\",\"am\":420.8},{\"fdt\":\"2023-07-12T12:00\",\"tdt\":\"2023-07-13T23:59\",\"am\":420.8}]},\"ddt\":\"2023-07-03T11:46:25.382\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"No amendment will be accepted once this booking is confirmed.\"}],\"oai\":{\"sid\":\"16\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":420.8},{\"fc\":[\"BREAKFAST\"],\"tpc\":1094.08},{\"fc\":[\"HALF BOARD\"],\"tpc\":1514.88}],\"uid\":\"39647921\"},\"bookingId\":\"TJS200800612702\",\"query\":{\"checkinDate\":\"2023-07-12\",\"checkoutDate\":\"2023-07-13\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid2776296318\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"ntish\":[{\"travellerInfo\":[{\"pt\":\"ADULT\"},{\"pt\":\"ADULT\"}],\"id\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])_2_0\"}],\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":853}},\"hotelbookingid\":\"13\",\"SearchHotelTraceId\":\"b8ed7-a2457-3ed80-ac18b\",\"CustomerSession\":{\"bookingId\":\"b8ed7-a2457-3ed80-ac18b\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"b8ed7-a2457-3ed80-ac18b\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"paxType-2\":\"1\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Ms\",\"passenger-firstname-2\":\"chinki\",\"passenger-lastname-2\":\"singh\",\"passenger-panNumber-2\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])_2_0\",\"RoomCategory\":\"Standard Room with Wi-Fi -[Non Refundables]\",\"RoomType\":\"Standard Room with Wi-Fi-None-( -[Non Refundables])\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":432.6,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":432.6,\"TotalRoomPrice\":432.6,\"TotalFare\":432.6,\"TotalBaseFare\":420.8,\"TotalNetFare\":432.6,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":432.6,\"BF\":420.8,\"NF\":432.6,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":420.8,\"SGP\":420.8,\"SNP\":420.8,\"MF\":10}}}],\"PriceWithMarkup\":432.6,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":432.6,\"pernightperroomprice\":432.6,\"RoomPrice\":432.6,\"withmarkupprice\":432.6,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"16_0_64a2667ae9d5514a9f5b1e33\",\"RoomTotalPrice\":432.6,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2776296318-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-07-12\",\"checkoutDate\":\"2023-07-13\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752857\",\"TPSysId\":\"752858\",\"VersionId\":\"2299512\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62100\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-07-03 11:47:16'),(246,'b607b-71a2a-44201-066d1','{\"BookingData\":[{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-08-06T14:25\",\"LocalFromTime\":\"2023-08-06 14:25\",\"FromUTCTime\":\"2023-08-06T14:25\",\"LocalToTime\":\"2023-08-06 15:55\",\"ToUTCTime\":\"2023-08-06T15:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sun, 06 Aug\",\"ArrivalDateTxt\":\"Sun, 06 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3694,\"PublishedFareTxt\":\"3,694\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2450,\"Tax\":1244,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3694,\"PublishedFare\":3409,\"OfferedFare\":3409,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_0IXJDELSG161_21414817497201\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1244,\"BaseFareCal\":3409,\"BaseFare\":2450,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3409,\"CostToCustomer\":3409,\"BaseFareCal\":3409,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3409,\"intOfferedFare\":3409,\"intPublishFare\":3694,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"71\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-06T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-06T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"71\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-08-06T14:25\",\"LocalFromTime\":\"2023-08-06 14:25\",\"FromUTCTime\":\"2023-08-06T14:25\",\"LocalToTime\":\"2023-08-06 15:55\",\"ToUTCTime\":\"2023-08-06T15:55\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sun, 06 Aug\",\"ArrivalDateTxt\":\"Sun, 06 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":18934,\"ApiResultIndex\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14453,\"Tax\":4481,\"YQTax\":0,\"OtherCharges\":2333,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":732,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":18934,\"PublishedFare\":18079,\"OfferedFare\":18079,\"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\":\"1\",\"TaxIN\":4481,\"BaseFareCal\":18079,\"BaseFare\":14453,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":732,\"MFT\":216,\"OT\":2333,\"MU\":0,\"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\":\"71\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-06T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-06T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"960\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-08T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"961\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"831\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-11T09:45\",\"SegFlightNumber\":\"6E-122\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":465,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"7h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"832\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-11T18:55\",\"SegFlightNumber\":\"6E-6184\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-11T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-15-10-5-4-1-38345322620_17IXJDELSG161_21357746937449\",\"localFromDateTime\":\"2023-08-06 14:25\",\"localToDateTime\":\"2023-08-06 15:55\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2023-08-08T07:05\",\"LocalFromTime\":\"2023-08-08 07:05\",\"FromUTCTime\":\"2023-08-08T07:05\",\"LocalToTime\":\"2023-08-09 08:25\",\"ToUTCTime\":\"2023-08-09T08:25\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":1255,\"LAYOVERDuration\":\"20h 55m\",\"FlyingMinutes\":1520,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"25h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5491,\"PublishedFareTxt\":\"5,491\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4284,\"Tax\":1207,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":217,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5491,\"PublishedFare\":5206,\"OfferedFare\":5206,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_1DELCCUSG8263CCUBLRSG516_21414818960758\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1207,\"BaseFareCal\":5206,\"BaseFare\":4284,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":217,\"MFT\":72,\"OT\":518,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5206,\"CostToCustomer\":5206,\"BaseFareCal\":5206,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5206,\"intOfferedFare\":5206,\"intPublishFare\":5491,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"960\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-08T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"961\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-09T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322621_23DELCCUSG8263CCUBLRSG516_21358404140164\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS106400612738\",\"bookingId_TJ\":\"TJS106400612738\",\"FlightNumber\":\"6E-122\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-08-11T07:00\",\"LocalFromTime\":\"2023-08-11 07:00\",\"FromUTCTime\":\"2023-08-11T07:00\",\"LocalToTime\":\"2023-08-11 18:55\",\"ToUTCTime\":\"2023-08-11T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":465,\"LAYOVERDuration\":\"7h 45m\",\"FlyingMinutes\":715,\"DepartureDateTxt\":\"Fri, 11 Aug\",\"ArrivalDateTxt\":\"Fri, 11 Aug\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9749,\"PublishedFareTxt\":\"9,749\",\"ApiResultIndex\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7719,\"Tax\":2030,\"YQTax\":0,\"OtherCharges\":1167,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":391,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9749,\"PublishedFare\":9464,\"OfferedFare\":9464,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-38345322620_2BLRDEL6E122DELIXJ6E6184_21414820995605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2030,\"BaseFareCal\":9464,\"BaseFare\":7719,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":391,\"MFT\":72,\"OT\":1167,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9464,\"CostToCustomer\":9464,\"BaseFareCal\":9464,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9464,\"intOfferedFare\":9464,\"intPublishFare\":9749,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"831\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-11T09:45\",\"SegFlightNumber\":\"6E-122\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-11T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":465,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"7h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"832\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-08-11T18:55\",\"SegFlightNumber\":\"6E-6184\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-11T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"831\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"960\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T11:56:52.855\",\"strTraceId\":\"30-15-10-5-4-1-38345322622_11BLRDEL6E122DELIXJ6E6184_21358348058739\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Jammu\",\"Delhi\",\"Bengaluru\"],\"mytrip_city_to\":[\"Delhi\",\"Bengaluru\",\"Jammu\"],\"departure_dates\":[\"2023\\/08\\/06\",\"2023\\/08\\/08\",\"2023\\/08\\/11\"],\"source_city\":[\"IXJ\",\"DEL\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"DEL\",\"BLR\",\"IXJ\"],\"ContSysId\":[\"101\",\"101\",\"101\"],\"source\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"departure_date\":[\"2023\\/08\\/06\",\"2023\\/08\\/08\",\"2023\\/08\\/11\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Satwari Arpt IXJ\",\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Satwari Arpt IXJ\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"destinationCityAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"from\":[\"IXJ\",\"DEL\",\"BLR\"],\"to\":[\"DEL\",\"BLR\",\"IXJ\"],\"sourceCityText\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"sourceCityId\":[13021,7701,2262],\"destinationCityId\":[7701,2262,13021],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"b607b-71a2a-44201-066d1\",\"PreferredAirline\":null},\"FlightSearchUrl\":\"route=3&mytrip_city_from%5B%5D=Jammu&mytrip_city_to%5B%5D=Delhi&departure_dates%5B%5D=6+Aug+2023&source_city%5B%5D=IXJ&ContSysId_1%5B%5D=101&destination_city%5B%5D=DEL&ContSysId%5B%5D=101&source%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date%5B%5D=2023%2F08%2F06&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&mytrip_city_from%5B%5D=Delhi&mytrip_city_to%5B%5D=Bengaluru&departure_dates%5B%5D=8+Aug+2023&source_city%5B%5D=DEL&ContSysId_1%5B%5D=101&destination_city%5B%5D=BLR&ContSysId%5B%5D=101&source%5B%5D=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date%5B%5D=2023%2F08%2F08&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&mytrip_city_from%5B%5D=Bengaluru&mytrip_city_to%5B%5D=Jammu&departure_dates%5B%5D=11+Aug+2023&source_city%5B%5D=BLR&ContSysId_1%5B%5D=101&destination_city%5B%5D=IXJ&ContSysId%5B%5D=101&source%5B%5D=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination%5B%5D=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&departure_date%5B%5D=2023%2F08%2F11&return_date%5B%5D=&from_mytrip_city%5B%5D=+IN+-+Bengaluru+Intl+Arpt+BLR&to_mytrip_city%5B%5D=+IN+-+Satwari+Arpt+IXJ&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-03-11-55-51\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752881\",\"TPSysId\":\"752882\",\"VersionId\":[\"225051\",\"225052\",\"225053\"],\"CustomerSysId\":\"383250\",\"TrxId\":\"62102\",\"FareBreakdownid\":[\"380663\",\"380664\",\"380665\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"81\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"87\",\"88\",\"89\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"87\",\"88\",\"89\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":18079},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"383250\",\"TPSysId\":\"752882\",\"MasterTPSysId\":\"752881\",\"ProposalID\":\"752882\\/V1\",\"InvoiceDate\":\"2023-07-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-03\",\"PaymentDate\":\"2023-07-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":18079,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":18079,\"TotalDueAmount\":0,\"InvoiceValue\":18079,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-DEL-SpiceJet SG-161\",\"ItemQty\":1,\"ItemRates\":3409,\"Total\":3409,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3409,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3409,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BLR-SpiceJet SG-8263\",\"ItemQty\":1,\"ItemRates\":5206,\"Total\":5206,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5206,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":5206,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-IXJ-IndiGo 6E-122\",\"ItemQty\":1,\"ItemRates\":9464,\"Total\":9464,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":9464,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":9464,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},{\"order\":{\"bookingId\":\"TJS106400612738\",\"amount\":18934,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-03T11:58:30.732\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138167\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"161\",\"eT\":\"737\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\"},\"dt\":\"2023-08-06T14:25\",\"at\":\"2023-08-06T15:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"138168\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8263\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"cT\":1255,\"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\":\"2023-08-08T07:05\",\"at\":\"2023-08-08T09:05\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138169\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"516\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-09T06:00\",\"at\":\"2023-08-09T08:25\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"138170\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"122\",\"eT\":\"321\"},\"stops\":0,\"duration\":165,\"cT\":465,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-08-11T07:00\",\"at\":\"2023-08-11T09:45\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138171\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6184\",\"eT\":\"321\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-08-11T17:30\",\"at\":\"2023-08-11T18:55\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"B7GCPP\",\"DEL-CCU\":\"P6Q8WV\",\"CCU-BLR\":\"P6Q8WV\",\"BLR-DEL\":\"TESTPNR\",\"DEL-IXJ\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":855,\"IGST\":216,\"NF\":18079,\"TAF\":4481,\"TF\":18934,\"BF\":14453},\"afC\":{\"NCM\":{\"OT\":900,\"TDS\":-45},\"TAF\":{\"MF\":1200,\"OT\":2333,\"MFT\":216,\"YQ\":0,\"AGST\":732}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-07-03 11:57:16'),(248,'739d0-8273e-15a2d-ff61e','{\"BookingData\":[{\"bookingId\":\"BKRS108600612804\",\"bookingId_TJ\":\"TJS108600612804\",\"FlightNumber\":\"6E-6378\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:50\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-07-15T10:50\",\"LocalFromTime\":\"2023-07-15 10:50\",\"FromUTCTime\":\"2023-07-15T10:50\",\"LocalToTime\":\"2023-07-15 22:00\",\"ToUTCTime\":\"2023-07-15T22:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":395,\"LAYOVERDuration\":\"6h 35m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Sat, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 15 Jul\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":10101,\"PublishedFareTxt\":\"10,101\",\"ApiResultIndex\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"ARFT\":150,\"CRF\":50},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7801,\"Tax\":2300,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":395,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10101,\"PublishedFare\":9816,\"OfferedFare\":9816,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22925552043792\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2300,\"BaseFareCal\":9816,\"BaseFare\":7801,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":395,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9816,\"CostToCustomer\":9816,\"BaseFareCal\":9816,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9816,\"intOfferedFare\":9816,\"intPublishFare\":10101,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"98\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-07-15T13:00\",\"SegFlightNumber\":\"6E-6378\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-15T10:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":395,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"99\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-15T22:00\",\"SegFlightNumber\":\"6E-6481\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-07-15T19:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:35\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"739d0-8273e-15a2d-ff61e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T12:22:03.595\",\"strTraceId\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS108600612804\",\"bookingId_TJ\":\"TJS108600612804\",\"FlightNumber\":\"6E-6378\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"strTraceId\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:50\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2023-07-15T10:50\",\"LocalFromTime\":\"2023-07-15 10:50\",\"FromUTCTime\":\"2023-07-15T10:50\",\"LocalToTime\":\"2023-07-15 22:00\",\"ToUTCTime\":\"2023-07-15T22:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":395,\"LAYOVERDuration\":\"6h 35m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Sat, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 15 Jul\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":10101,\"ApiResultIndex\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"739d0-8273e-15a2d-ff61e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-03T12:22:03.595\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7801,\"Tax\":2300,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":395,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10101,\"PublishedFare\":9816,\"OfferedFare\":9816,\"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\":\"1\",\"TaxIN\":2300,\"BaseFareCal\":9816,\"BaseFare\":7801,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":395,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"98\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-07-15T13:00\",\"SegFlightNumber\":\"6E-6378\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-15T10:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":395,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"99\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-15T22:00\",\"SegFlightNumber\":\"6E-6481\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-07-15T19:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:35\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0220611178_0IXJAMD6E6378AMDBLR6E6481_22914921468931\",\"localFromDateTime\":\"2023-07-15 10:50\",\"localToDateTime\":\"2023-07-15 22:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"15\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"739d0-8273e-15a2d-ff61e\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-07-03 12:20:43'),(249,'3cf41-36a5f-840c4-d66df','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid8374820137-39647921\",\"name\":\"Hotel Taj Plaza\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"des\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate, Shilpgram \'VIP\' Road.\",\"city\":{\"name\":\"AGRA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"fl\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"rc\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"rt\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":750.72,\"tfcs\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"checkInDate\":\"2023-08-07\",\"checkOutDate\":\"2023-08-08\"}],\"id\":\"24_0_64a2712ce9d55130165b1e28\",\"tp\":750.72,\"cnp\":{\"id\":\"24_0_64a2712ce9d55130165b1e28\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-07-03T12:27:47.125\",\"tdt\":\"2023-08-07T12:00\",\"am\":738.92},{\"fdt\":\"2023-08-07T12:00\",\"tdt\":\"2023-08-08T23:59\",\"am\":738.92}]},\"ddt\":\"2023-07-03T12:27:47.125\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Twin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PMTwin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PM\"}],\"oai\":{\"sid\":\"24\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":738.92},{\"fc\":[\"BREAKFAST\"],\"tpc\":1094.08},{\"fc\":[\"HALF BOARD\"],\"tpc\":1514.88}],\"uid\":\"39647921\"},\"bookingId\":\"TJS208800612827\",\"query\":{\"checkinDate\":\"2023-08-07\",\"checkoutDate\":\"2023-08-08\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid8374820137\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"ntish\":[{\"travellerInfo\":[{\"pt\":\"ADULT\"}],\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\"}],\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":1117}},\"hotelbookingid\":\"14\",\"SearchHotelTraceId\":\"3cf41-36a5f-840c4-d66df\",\"CustomerSession\":{\"bookingId\":\"3cf41-36a5f-840c4-d66df\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"3cf41-36a5f-840c4-d66df\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"neha\",\"passenger-lastname-1\":\"kannojia\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a2712ce9d55130165b1e28\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid8374820137-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-08-07\",\"checkoutDate\":\"2023-08-08\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"752962\",\"TPSysId\":\"752963\",\"VersionId\":\"2299841\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62107\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-07-03 12:27:37'),(250,'cfc78-43bbb-03f0f-29b20','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid6373173319-39647921\",\"name\":\"Hotel Taj Plaza\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"des\":\"Perfect for any occasion  the Taj Plaza Hotel  provides amazing service and an ideal location  all at a great price\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate, Shilpgram \'VIP\' Road.\",\"city\":{\"name\":\"AGRA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"fl\":[\"Coffee\\/tea in lobby\",\"No elevators\",\"Noise-free rooms not guaranteed\",\"Television in lobby\",\"Carte Blanche\",\"Diners Club\",\"Discover\",\"Visa\",\"American Express\",\"Free self parking\"],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"rc\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"rt\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":750.72,\"tfcs\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"checkInDate\":\"2023-08-20\",\"checkOutDate\":\"2023-08-21\"}],\"id\":\"24_0_64a27a26ead551882cba4833\",\"tp\":750.72,\"cnp\":{\"id\":\"24_0_64a27a26ead551882cba4833\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-07-03T13:07:06.478\",\"tdt\":\"2023-08-20T12:00\",\"am\":738.92},{\"fdt\":\"2023-08-20T12:00\",\"tdt\":\"2023-08-21T23:59\",\"am\":738.92}]},\"ddt\":\"2023-07-03T13:07:06.478\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Twin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PMTwin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PM\"}],\"oai\":{\"sid\":\"24\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":738.92},{\"fc\":[\"BREAKFAST\"],\"tpc\":1128.58},{\"fc\":[\"HALF BOARD\"],\"tpc\":1598.2}],\"uid\":\"39647921\"},\"bookingId\":\"TJS205400612932\",\"query\":{\"checkinDate\":\"2023-08-20\",\"checkoutDate\":\"2023-08-21\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid6373173319\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"ntish\":[{\"travellerInfo\":[{\"pt\":\"ADULT\"}],\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\"}],\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":1054}},\"hotelbookingid\":\"15\",\"SearchHotelTraceId\":\"cfc78-43bbb-03f0f-29b20\",\"CustomerSession\":{\"bookingId\":\"cfc78-43bbb-03f0f-29b20\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8447455883\",\"traceId\":\"cfc78-43bbb-03f0f-29b20\",\"leadEmail\":\"sibo.sarso@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"md\",\"passenger-lastname-1\":\"sabir\",\"passenger-panNumber-1\":\"DFYPS7819B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a27a26ead551882cba4833\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid6373173319-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"Perfect for any occasion  the Taj Plaza Hotel  provides amazing service and an ideal location  all at a great price\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Coffee\\/tea in lobby\",\"No elevators\",\"Noise-free rooms not guaranteed\",\"Television in lobby\",\"Carte Blanche\",\"Diners Club\",\"Discover\",\"Visa\",\"American Express\",\"Free self parking\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-08-20\",\"checkoutDate\":\"2023-08-21\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753114\",\"TPSysId\":\"753115\",\"VersionId\":\"2300231\",\"CustomerSysId\":\"439879\",\"TrxId\":\"62118\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-07-03 13:08:00'),(251,'b47e1-4dc95-6b349-4095c','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid4063373440-39647921\",\"name\":\"Hotel Taj Plaza\",\"img\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"des\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"rt\":3,\"gl\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"ad\":{\"adr\":\"Taj Mahal East Gate, Shilpgram \'VIP\' Road.\",\"city\":{\"name\":\"AGRA\"},\"state\":[],\"country\":{\"name\":\"INDIA\"},\"ctn\":\"AGRA\",\"cn\":\"INDIA\"},\"fl\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"],\"pt\":\"HOTEL\",\"cnt\":[],\"ht\":[],\"ops\":[{\"ris\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"rc\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"rt\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":750.72,\"tfcs\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"checkInDate\":\"2023-08-07\",\"checkOutDate\":\"2023-08-08\"}],\"id\":\"24_0_64a27cf4e9d551a99f5b1e48\",\"tp\":750.72,\"cnp\":{\"id\":\"24_0_64a27cf4e9d551a99f5b1e48\",\"ifra\":false,\"pd\":[{\"fdt\":\"2023-07-03T13:18:11.979\",\"tdt\":\"2023-08-07T12:00\",\"am\":738.92},{\"fdt\":\"2023-08-07T12:00\",\"tdt\":\"2023-08-08T23:59\",\"am\":738.92}]},\"ddt\":\"2023-07-03T13:18:11.979\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Twin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PMTwin size, TwinBed.   Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedThis property accepts credit cardsSafety features at this property include a fire extinguisher, a security system, and a first aid kitPlease note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property  . Check-in Begin Time:12:00 PM. Check-in End Time:anytime. Check-Out Time:12:00 PM\"}],\"oai\":{\"sid\":\"24\"},\"iopr\":false,\"ipr\":true,\"ipm\":false,\"cpb\":24}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":738.92},{\"fc\":[\"BREAKFAST\"],\"tpc\":1094.08},{\"fc\":[\"HALF BOARD\"],\"tpc\":1514.88}],\"uid\":\"39647921\"},\"bookingId\":\"TJS201800612962\",\"query\":{\"checkinDate\":\"2023-08-07\",\"checkoutDate\":\"2023-08-08\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid4063373440\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"ntish\":[{\"travellerInfo\":[{\"pt\":\"ADULT\"}],\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\"}],\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":false,\"st\":1106}},\"hotelbookingid\":\"16\",\"SearchHotelTraceId\":\"b47e1-4dc95-6b349-4095c\",\"CustomerSession\":{\"bookingId\":\"b47e1-4dc95-6b349-4095c\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"b47e1-4dc95-6b349-4095c\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single_1_0\",\"RoomCategory\":\"Standard Room-Standard NON AC roomNon-Refundable\",\"RoomType\":\"Standard Room-Standard NON AC roomNon-Refundable 1 Adults 0 Child Room only Single\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":750.72,\"TotalRoomPrice\":750.72,\"TotalFare\":750.72,\"TotalBaseFare\":738.92,\"TotalNetFare\":750.72,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":750.72,\"BF\":738.92,\"NF\":750.72,\"TAF\":11.8},\"afc\":{\"TAF\":{\"MFT\":1.8,\"SBP\":738.92,\"SGP\":738.92,\"SNP\":738.92,\"MF\":10}}}],\"PriceWithMarkup\":750.72,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":750.72,\"pernightperroomprice\":750.72,\"RoomPrice\":750.72,\"withmarkupprice\":750.72,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"24_0_64a27cf4e9d551a99f5b1e48\",\"RoomTotalPrice\":750.72,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"INDIA\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid4063373440-39647921\",\"HotemName\":\"HOTEL TAJ PLAZA\",\"HotelDescription\":\"<br\\/><br\\/><p><b>Property Location<\\/b> <br \\/>With a stay at Hotel Taj Plaza, you\'ll be centrally located in Agra, convenient to Mosque and the Jawab and Taj Mahal. This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah\'s Tomb.<\\/p><p><b>Rooms<\\/b> <br \\/>Make yourself at home in one of the 40 individually decorated guestrooms. Your room comes with a pillowtop bed. Prepare your meals in the shared\\/communal kitchen. 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.<\\/p><p><b>Rec, Spa, Premium Amenities<\\/b> <br \\/>Relax and unwind with body treatments and facials. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).<\\/p><p><b>Dining<\\/b> <br \\/>Enjoy a meal at one of the hotel\'s dining establishments, which include 2 restaurants and a coffee shop\\/caf\\ucc55. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available for a fee.<\\/p><p><b>Business, Other Amenities<\\/b> <br \\/>Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this hotel consist of conference space and a meeting room. A train station pick-up service is provided at no charge (available on request), and free self parking is available onsite.<\\/p>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vdGh1bWJuYWlscy9sYXJnZS8xL2Q4ZjEzOTM1MDgwOTc1ZDNlNzgxOWNmMmMxZWQ0MzU4LzMyMjAzMC5qcGc=\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS9jZGJjNzA3YTUxNDNiMjRhMjIzYjE2Mzk5NmMyMDAyZi8zMjIwMzAuanBn\"},{\"tns\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\",\"url\":\"http:\\/\\/tms.tripjack.com\\/\\/cpfv3\\/images\\/?image=aHR0cHM6Ly9hc3NldHMuaHByb3RyYXZlbC5jb20vMS8wN2MyMGFlM2RlMzEzNjFkZDg3YzI2ZThkODk4MzRmYy8zMjIwMzAuanBn\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.05021\",\"lt\":\"27.16859\"},\"HotelAddress\":\"Taj Mahal East Gate, Near Hotel Oberoi \",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Business Center\",\"Fitness Center\",\"Spa\",\"Laundry\",\"Baby sitting\",\"Parking\",\"Room service\",\"Shop\",\"Bar\\/Lounge\",\"Newspaper\",\"Meeting room\",\"Luggage Storage Service\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-08-07\",\"checkoutDate\":\"2023-08-08\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753153\",\"TPSysId\":\"753154\",\"VersionId\":\"2300367\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62121\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-07-03 13:17:35'),(252,'17e47-90bee-2e132-102d7','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid2826267883-15329627\",\"name\":\"Hotel Parkway Deluxe\",\"img\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_z.jpg\",\"sz\":\"XL\"}],\"des\":\"{\\\"amenities\\\":\\\"Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"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 desks and complimentary newspapers, and housekeeping is provided daily.\\\",\\\"onsite_payments\\\":\\\"Visa, Diners Club, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel Parkway Deluxe is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.1 mi (3.4 km) from Chandni Chowk and 3.3 mi (5.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.5 km \\/ 0.9 mi  Palika Bazaar - 1.7 km \\/ 1.1 mi  Lady Hardinge Medical College - 1.9 km \\/ 1.2 mi  Kasturba Gandhi Marg - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Gole Market - 2.2 km \\/ 1.4 mi  Jantar Mantar - 2.4 km \\/ 1.5 mi  Ajmal Khan Road - 2.4 km \\/ 1.5 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Gurudwara Bangla Sahib - 2.9 km \\/ 1.8 mi  Laxminarayan Temple - 2.9 km \\/ 1.8 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.8 km \\/ 2.4 mi  Sir Ganga Ram Hospital - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"rt\":3,\"gl\":{\"ln\":\"77.21792\",\"lt\":\"28.645334\"},\"ad\":{\"adr\":\"8591, Main Qutab Road, Pahar Ganj\",\"adr2\":\"Near New Delhi Railway Station\",\"postalCode\":\"110055\",\"city\":{\"name\":\"New Delhi\"},\"state\":{\"name\":\"Delhi N.C.R.\"},\"country\":{\"code\":\"IN\",\"name\":\"India\"},\"ctn\":\"New Delhi\",\"sn\":\"Delhi N.C.R.\",\"cn\":\"India\"},\"fl\":[\"Gift shops or newsstand\",\"Laundry Services\",\"Safe deposit box\",\"Number of meeting rooms - 1\",\"Internet\",\"Braille or raised signage\",\"In-room accessibility\",\"Parking\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"RoofTopTerrace\",\"Luggage storage\",\"Porter\\/bellhop\",\"Multilingual\",\"Business Center\",\"24-hour front desk\",\"Water dispenser\",\"Breakfast\",\"Safe-deposit box at front desk\",\"Non Smoking\",\"Laundry Services\",\"Free self parking\",\"Computer station\",\"Terrace\",\"Concierge Services\"],\"pt\":\"HOTEL\",\"cnt\":{\"ph\":\"91-11-23532323\"},\"ht\":[],\"inst\":[{\"type\":\"POLICIES\",\"msg\":\"{\\\"know_before_you_go\\\":\\\"Social distancing measures are in place. \\\"}\"},{\"type\":\"CHECKIN_INSTRUCTIONS\",\"msg\":\"{\\\"Special Instructions\\\":\\\"Front desk staff will greet guests on arrival. \\\",\\\"Instructions\\\":\\\"Extra-person charges may apply and vary depending on property policyGovernment-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental chargesSpecial requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteedBe prepared: check the latest COVID-19 travel requirements and measures in place for this destination before you travel. \\\"}\"},{\"type\":\"FEES\",\"msg\":\"{\\\"Optional\\\":\\\"Fee for continental breakfast: INR 120.00 for adults and INR 120 for children (approximately)                                The above list may not be comprehensive. Fees and deposits may not include tax and are subject to change. \\\"}\"}],\"ops\":[{\"ris\":[{\"id\":\"202447440_212439952_37310--1\",\"rc\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"rt\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"adt\":1,\"chd\":0,\"des\":\"1 Queen Bed215-sq-foot room with city views Internet - Free WiFi Entertainment - Flat-screen TV with premium channelsFood & Drink - Coffee\\/tea maker, room service (limited hours),  free bottled water, and refrigerator (on request)Sleep - Premium bedding Bathroom - Private bathroom, free toiletries, and a showerPractical - Day bed, free newspaper, and iron\\/ironing boardComfort - Climate-controlled air conditioning and daily housekeepingSmoking And Non-Smoking\",\"mb\":\"ROOM ONLY\",\"tp\":1426.36,\"tfcs\":{\"TF\":1426.36,\"BF\":1414.56,\"NF\":1426.36,\"TAF\":11.8,\"CMU\":0},\"tafcs\":{\"TAF\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"BF\":1414.56,\"CMU\":0,\"TAF\":11.8,\"TF\":1426.36,\"NF\":1426.36},\"afc\":{\"TAF\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10}}}],\"fcs\":[\"Free self parking\",\"Free WiFi\"],\"imgs\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a46135f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a46135f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ac03a21f_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ac03a21f_z.jpg\",\"sz\":\"XL\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/07964eb3_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/07964eb3_z.jpg\",\"sz\":\"XL\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ebdbf9a3_b.jpg\",\"sz\":\"Standard\",\"rids\":[\"202447440\"]},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ebdbf9a3_z.jpg\",\"sz\":\"XL\",\"rids\":[\"202447440\"]}],\"checkInDate\":\"2023-08-08\",\"checkOutDate\":\"2023-08-09\",\"radi\":{\"rid\":\"202447440\",\"mga\":3,\"maa\":3,\"mca\":2,\"vi\":[\"City view\"],\"bds\":[{\"bt\":\"QueenBed\",\"bd\":\"1 Queen Bed\",\"bs\":\"Queen\",\"bc\":1}],\"ar\":{\"asm\":\"20\",\"asf\":\"215\"}},\"op\":\"1\",\"rexb\":{\"BENEFIT\":[{\"values\":[\"Free self parking\",\"Free WiFi\"]}]}}],\"id\":\"42_3_22417644\",\"tp\":1426.36,\"cnp\":{\"id\":\"202447440_212439952_37310--48788654\",\"ifra\":true,\"inra\":false,\"pd\":[{\"fdt\":\"2023-07-03T13:22:16.414\",\"tdt\":\"2023-08-05T18:00\",\"am\":0,\"pp\":0},{\"fdt\":\"2023-08-05T18:00\",\"tdt\":\"2023-08-08T00:00\",\"am\":1414.56,\"rn\":1},{\"fdt\":\"2023-08-08T00:00\",\"tdt\":\"2023-08-09T23:59\",\"am\":1414.56}]},\"ddt\":\"2023-08-05T18:00\",\"oai\":{\"sid\":\"42\"},\"ispr\":true,\"ipr\":true,\"ipm\":false,\"cpb\":48}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1414.56}],\"uid\":\"15329627\",\"lhc\":\"6651\"},\"bookingId\":\"TJS205100612965\",\"query\":{\"checkinDate\":\"2023-08-08\",\"checkoutDate\":\"2023-08-09\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"countryName\":\"INDIA\",\"cityName\":\"DELHI\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid2826267883\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"ntish\":[{\"travellerInfo\":[{\"pt\":\"ADULT\"}],\"id\":\"202447440_212439952_37310--1\"}],\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1182}},\"hotelbookingid\":\"17\",\"SearchHotelTraceId\":\"17e47-90bee-2e132-102d7\",\"CustomerSession\":{\"bookingId\":\"17e47-90bee-2e132-102d7\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"8923963627\",\"traceId\":\"17e47-90bee-2e132-102d7\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"Ms\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"passenger-panNumber-1\":\"BCDPV9945B\",\"specialrequest\":\"\"},\"HotelBookingDetails\":{\"0\":{\"Rooms\":[{\"id\":\"202447440_212439952_37310--1\",\"RoomCategory\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"RoomType\":\"Premium Double or Twin Room, 1 Queen Bed-1 Queen Bed - Package Deal\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1426.36,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1426.36,\"TotalRoomPrice\":1426.36,\"TotalFare\":1426.36,\"TotalBaseFare\":1414.56,\"TotalNetFare\":1426.36,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":1414.56,\"CMU\":0,\"TAF\":11.8,\"TF\":1426.36,\"NF\":1426.36},\"afc\":{\"TAF\":{\"TSF\":151.27,\"TTSF\":151.27,\"TMF\":136.75,\"MFT\":1.8,\"SRC\":0,\"SBP\":1263.29,\"SAC\":136.75,\"SGP\":1414.56,\"SNP\":1277.81,\"MF\":10}}}],\"PriceWithMarkup\":1426.36,\"CurrencyRate\":1,\"CurrencyTitle\":\"INR\",\"CurrencyId\":\"1\",\"arrMarkUps\":{\"HotelRoomPrice\":1426.36,\"pernightperroomprice\":1426.36,\"RoomPrice\":1426.36,\"withmarkupprice\":1426.36,\"gtxMarkUp\":\".00\",\"GSTOnGTXMarkUp\":0,\"rooms\":1,\"Nights\":1,\"markup__\":\".00\"}}],\"RoomId\":\"42_3_22417644\",\"RoomTotalPrice\":1426.36,\"iopr\":false,\"ipr\":true,\"ipm\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":true,\"ipm\":false,\"HotelDetails\":{\"HotelId\":\"hsid2826267883-15329627\",\"HotemName\":\"Hotel Parkway Deluxe\",\"HotelDescription\":\"{\\\"amenities\\\":\\\"Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.\\\",\\\"spoken_languages\\\":\\\"Hindi, English\\\",\\\"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 desks and complimentary newspapers, and housekeeping is provided daily.\\\",\\\"onsite_payments\\\":\\\"Visa, Diners Club, Mastercard\\\",\\\"dining\\\":\\\"Take advantage of the hotel\'s room service (during limited hours). Continental breakfasts are available daily from 7 AM to 10:30 AM for a fee.\\\",\\\"business_amenities\\\":\\\"Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free self parking is available onsite.\\\",\\\"location\\\":\\\"Located in New Delhi (Paharganj), Hotel Parkway Deluxe is within a 5-minute drive of Ramakrishna Mission and Palika Bazaar.  This hotel is 2.1 mi (3.4 km) from Chandni Chowk and 3.3 mi (5.3 km) from India Gate.\\\",\\\"attractions\\\":\\\"Distances are displayed to the nearest 0.1 mile and kilometer.  Ramakrishna Mission - 1.5 km \\/ 0.9 mi  Palika Bazaar - 1.7 km \\/ 1.1 mi  Lady Hardinge Medical College - 1.9 km \\/ 1.2 mi  Kasturba Gandhi Marg - 2 km \\/ 1.2 mi  Jama Masjid - 2 km \\/ 1.2 mi  Gole Market - 2.2 km \\/ 1.4 mi  Jantar Mantar - 2.4 km \\/ 1.5 mi  Ajmal Khan Road - 2.4 km \\/ 1.5 mi  Chandni Chowk - 2.5 km \\/ 1.5 mi  Gurudwara Bangla Sahib - 2.9 km \\/ 1.8 mi  Laxminarayan Temple - 2.9 km \\/ 1.8 mi  Lajpat Rai Market - 2.9 km \\/ 1.8 mi  Red Fort - 3.1 km \\/ 1.9 mi  Parliament of India - 3.8 km \\/ 2.4 mi  Sir Ganga Ram Hospital - 3.9 km \\/ 2.4 mi  The nearest major airport is Indira Gandhi International Airport (DEL) - 21.2 km \\/ 13.2 mi\\\",\\\"headline\\\":\\\"In New Delhi (Paharganj)\\\"}\",\"HotelImages\":[{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5b9496f9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9801ce29_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/581820b0_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da4fe0a4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/8836830f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/784156d4_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3a3cfbd9_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5c37793d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c37fd3e2_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/ec14335f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/0a078000_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f26ecdc3_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/96fe4ec8_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/badb327d_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/f6760731_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/5d599877_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/2976f6eb_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/6635d214_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/da32b6cf_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/28477013_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ba65613_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/1cb372ff_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9ebfae22_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9d88851b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c57a855f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/c6c9b678_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/9f67a674_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/fdd4d00b_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/e551da7f_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/edfdf447_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/601849ac_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/79101b45_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/48caf0e5_z.jpg\",\"sz\":\"XL\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_b.jpg\",\"sz\":\"Standard\"},{\"url\":\"https:\\/\\/i.travelapi.com\\/hotels\\/23000000\\/22420000\\/22417700\\/22417644\\/3ee061c9_z.jpg\",\"sz\":\"XL\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.21792\",\"lt\":\"28.645334\"},\"HotelAddress\":\"8591, Main Qutab Road, Pahar Ganj\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Gift shops or newsstand\",\"Laundry Services\",\"Safe deposit box\",\"Number of meeting rooms - 1\",\"Internet\",\"Braille or raised signage\",\"In-room accessibility\",\"Parking\",\"Free newspapers in lobby\",\"Tours\\/ticket assistance\",\"RoofTopTerrace\",\"Luggage storage\",\"Porter\\/bellhop\",\"Multilingual\",\"Business Center\",\"24-hour front desk\",\"Water dispenser\",\"Breakfast\",\"Safe-deposit box at front desk\",\"Non Smoking\",\"Laundry Services\",\"Free self parking\",\"Computer station\",\"Terrace\",\"Concierge Services\"]}},\"SearchHotelData\":{\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-08-08\",\"checkoutDate\":\"2023-08-09\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"725862\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"fsc\":false}},\"sync\":false},\"interNationalSearch\":false},\"ResponseHotelQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"753172\",\"TPSysId\":\"753173\",\"VersionId\":\"2300388\",\"CustomerSysId\":\"383250\",\"TrxId\":\"62123\",\"refNo\":\"\"},\"redirect\":false,\"message\":\"Query Send Successfully.\",\"refNo\":\"\"},\"HotelBlockRequest\":null,\"CurrencyId\":\"1\"}','2023-07-03 13:21:23'),(254,'9ba0a-f2148-ba08a-0383c','{\"BookingData\":[{\"bookingId\":\"BKRS107000614447\",\"bookingId_TJ\":\"TJS107000614447\",\"FlightNumber\":\"SG-8709\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:55\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-07-05T18:55\",\"LocalFromTime\":\"2023-07-05 18:55\",\"FromUTCTime\":\"2023-07-05T18:55\",\"LocalToTime\":\"2023-07-05 21:10\",\"ToUTCTime\":\"2023-07-05T21:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 05 Jul\",\"ArrivalDateTxt\":\"Wed, 05 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4152,\"PublishedFareTxt\":\"4,152\",\"ApiResultIndex\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRF\":50,\"CRFT\":9,\"ARF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"CCF\":50,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3009,\"Tax\":1143,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":153,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4152,\"PublishedFare\":3867,\"OfferedFare\":3867,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0414173117_0DELBOMSG8709_24565254777783\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1143,\"BaseFareCal\":3867,\"BaseFare\":3009,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":153,\"MFT\":72,\"OT\":518,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3867,\"CostToCustomer\":3867,\"BaseFareCal\":3867,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3867,\"intOfferedFare\":3867,\"intPublishFare\":4152,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"496\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-05T21:10\",\"SegFlightNumber\":\"SG-8709\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-05T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"496\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9ba0a-f2148-ba08a-0383c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-04T17:54:42.316\",\"strTraceId\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-05 12:00\",\"localToDateTime\":\"2023-07-06 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS107000614447\",\"bookingId_TJ\":\"TJS107000614447\",\"FlightNumber\":\"SG-8709\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"strTraceId\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:55\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-07-05T18:55\",\"LocalFromTime\":\"2023-07-05 18:55\",\"FromUTCTime\":\"2023-07-05T18:55\",\"LocalToTime\":\"2023-07-05 21:10\",\"ToUTCTime\":\"2023-07-05T21:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 05 Jul\",\"ArrivalDateTxt\":\"Wed, 05 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7649.7,\"ApiResultIndex\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"9ba0a-f2148-ba08a-0383c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-04T17:54:42.316\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6059,\"Tax\":1590.7,\"YQTax\":0,\"OtherCharges\":790,\"Discount\":0,\"ServiceFee\":415,\"ManagementFeeTax\":74.7,\"AirlineGSTComponent\":311,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7649.7,\"PublishedFare\":7364.7,\"OfferedFare\":7364.7,\"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\":\"1\",\"TaxIN\":1590.7,\"BaseFareCal\":7364.7,\"BaseFare\":6059,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":415,\"YQ\":0,\"AGST\":311,\"MFT\":74.7,\"OT\":790,\"MU\":0,\"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\":\"496\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-05T21:10\",\"SegFlightNumber\":\"SG-8709\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-05T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"497\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T07:35\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-07-06T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0414173117_0DELBOMSG8709_24540036500669\",\"localFromDateTime\":\"2023-07-05 18:55\",\"localToDateTime\":\"2023-07-05 21:10\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS107000614447\",\"bookingId_TJ\":\"TJS107000614447\",\"FlightNumber\":\"SG-8152\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0414173117_0BOMDELSG8152_24540036258340\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:35\",\"TravelDate\":\"2023-07-06T05:20\",\"LocalFromTime\":\"2023-07-06 05:20\",\"FromUTCTime\":\"2023-07-06T05:20\",\"LocalToTime\":\"2023-07-06 07:35\",\"ToUTCTime\":\"2023-07-06T07:35\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3497.7,\"PublishedFareTxt\":\"3,498\",\"ApiResultIndex\":\"4-0414173117_0BOMDELSG8152_24540036258340\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRF\":50,\"CRFT\":9,\"ARF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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,\"CCFT\":9,\"CCF\":50,\"ACF\":3500},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3050,\"Tax\":447.7,\"YQTax\":0,\"OtherCharges\":272,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3497.7,\"PublishedFare\":3497.7,\"OfferedFare\":3497.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0414173117_1BOMDELSG8152_24565256187764\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":447.7,\"BaseFareCal\":3497.7,\"BaseFare\":3050,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":272,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3497.7,\"CostToCustomer\":3497.7,\"BaseFareCal\":3497.7,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3497.7,\"intOfferedFare\":3497.7,\"intPublishFare\":3497.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"497\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T07:35\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-07-06T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"497\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9ba0a-f2148-ba08a-0383c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-04T17:54:42.316\",\"strTraceId\":\"4-0414173117_0BOMDELSG8152_24540036258340\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-05 12:00\",\"localToDateTime\":\"2023-07-06 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"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\":\"05\\/07\\/2023\",\"return_date\":\"06\\/07\\/2023\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"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\":\"05\\/07\\/2023\",\"return_dates\":\"06\\/07\\/2023\",\"strDepatureDate\":\"2023-07-05\",\"strReturnDate\":\"2023-07-06\",\"SearchFlightTraceId\":\"9ba0a-f2148-ba08a-0383c\",\"PreferredAirline\":null,\"from_city_\":\"2__DEL-BOM-DEL\"}}','2023-07-04 17:53:21'),(256,'b0d4a-0a6ce-e2df5-a4b01','{\"BookingData\":[{\"bookingId\":\"BKRS102900615645\",\"bookingId_TJ\":\"TJS102900615645\",\"FlightNumber\":\"G8-405\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"13:20\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-07-06T13:20\",\"LocalFromTime\":\"2023-07-06 13:20\",\"FromUTCTime\":\"2023-07-06T13:20\",\"LocalToTime\":\"2023-07-06 17:25\",\"ToUTCTime\":\"2023-07-06T17:25\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":68,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":14681,\"PublishedFareTxt\":\"14,681\",\"ApiResultIndex\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure & only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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)\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":11540,\"Tax\":3141,\"YQTax\":750,\"OtherCharges\":1295,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":624,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14681,\"PublishedFare\":14396,\"OfferedFare\":14396,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8472232387_0BLRDELG8405_37655977911667\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SENIOR CITIZEN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3141,\"BaseFareCal\":14396,\"BaseFare\":11540,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":624,\"MFT\":72,\"OT\":1295,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":14396,\"CostToCustomer\":14396,\"BaseFareCal\":14396,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":14396,\"intOfferedFare\":14396,\"intPublishFare\":14681,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":0,\"CommisionPass\":285,\"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\":\"635\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T17:25\",\"SegFlightNumber\":\"G8-405\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-06T13:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":68,\"strDepartureDtTime\":\"13:20\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"XC05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"XC10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"XC15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"XC30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"SWVG\",\"Price\":250,\"amount\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"SWNV\",\"Price\":250,\"amount\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"OLSC\",\"Price\":250,\"amount\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":250,\"amount\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"OLVS\",\"Price\":320,\"amount\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"OLNS\",\"Price\":320,\"amount\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"PMVG\",\"Price\":400,\"amount\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"PMNV\",\"Price\":400,\"amount\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"KDML\",\"Price\":550,\"amount\":550,\"Description\":\"Smart Kid Bag\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b0d4a-0a6ce-e2df5-a4b01\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-07-05T17:16:04.032\",\"strTraceId\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-06 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\":\"BKRS102900615645\",\"bookingId_TJ\":\"TJS102900615645\",\"FlightNumber\":\"G8-405\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"strTraceId\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"13:20\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-07-06T13:20\",\"LocalFromTime\":\"2023-07-06 13:20\",\"FromUTCTime\":\"2023-07-06T13:20\",\"LocalToTime\":\"2023-07-06 17:25\",\"ToUTCTime\":\"2023-07-06T17:25\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":68,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":14681,\"ApiResultIndex\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"b0d4a-0a6ce-e2df5-a4b01\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-07-05T17:16:04.032\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":11540,\"Tax\":3141,\"YQTax\":750,\"OtherCharges\":1295,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":624,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14681,\"PublishedFare\":14396,\"OfferedFare\":14396,\"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\":\"1\",\"TaxIN\":3141,\"BaseFareCal\":14396,\"BaseFare\":11540,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":750,\"AGST\":624,\"MFT\":72,\"OT\":1295,\"MU\":0,\"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\":\"635\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T17:25\",\"SegFlightNumber\":\"G8-405\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-06T13:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":68,\"strDepartureDtTime\":\"13:20\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-8472232387_2BLRDELG8405_37646489179087\",\"localFromDateTime\":\"2023-07-06 13:20\",\"localToDateTime\":\"2023-07-06 17:25\",\"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\",\"mytrip_city_to\":\"Delhi\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"SENIOR_CITIZEN\",\"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\":\"06\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"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\":\"06\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"b0d4a-0a6ce-e2df5-a4b01\",\"PreferredAirline\":null,\"from_city_\":\"1__BLR-DEL\"}}','2023-07-05 17:14:43'),(262,'51801-e5ffc-ce2c6-2326a','{\"BookingData\":[{\"bookingId\":\"BKRS103300615663\",\"bookingId_TJ\":\"TJS103300615663\",\"FlightNumber\":\"6E-6004\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:50\",\"TravelDate\":\"2023-08-08T10:40\",\"LocalFromTime\":\"2023-08-08 10:40\",\"FromUTCTime\":\"2023-08-08T10:40\",\"LocalToTime\":\"2023-08-08 21:50\",\"ToUTCTime\":\"2023-08-08T21:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"PublishedFareTxt\":\"8,164\",\"ApiResultIndex\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3467534214_0IXJDEL6E6004DELBLR6E6622_38230188270937\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7879,\"CostToCustomer\":7879,\"BaseFareCal\":7879,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7879,\"intOfferedFare\":7879,\"intPublishFare\":8164,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"750\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T12:00\",\"SegFlightNumber\":\"6E-6004\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"751\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T21:50\",\"SegFlightNumber\":\"6E-6622\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:50\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"51801-e5ffc-ce2c6-2326a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-05T17:25:38.242\",\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103300615663\",\"bookingId_TJ\":\"TJS103300615663\",\"FlightNumber\":\"6E-6004\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:50\",\"TravelDate\":\"2023-08-08T10:40\",\"LocalFromTime\":\"2023-08-08 10:40\",\"FromUTCTime\":\"2023-08-08T10:40\",\"LocalToTime\":\"2023-08-08 21:50\",\"ToUTCTime\":\"2023-08-08T21:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":670,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"11h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"ApiResultIndex\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"51801-e5ffc-ce2c6-2326a\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-05T17:25:38.242\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"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\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"750\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T12:00\",\"SegFlightNumber\":\"6E-6004\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"751\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T21:50\",\"SegFlightNumber\":\"6E-6622\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:50\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3467534214_2IXJDEL6E6004DELBLR6E6622_38221601606372\",\"localFromDateTime\":\"2023-08-08 10:40\",\"localToDateTime\":\"2023-08-08 21:50\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"08\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"51801-e5ffc-ce2c6-2326a\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Bengaluru&source_city=IXJ&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=08%2F08%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-05-17-24-31\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"756419\",\"TPSysId\":\"756420\",\"VersionId\":[\"226163\"],\"CustomerSysId\":\"441548\",\"TrxId\":\"62374\",\"FareBreakdownid\":[\"380848\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"82\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"90\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"90\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":7879},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"441548\",\"TPSysId\":\"756420\",\"MasterTPSysId\":\"756419\",\"ProposalID\":\"756420\\/V1\",\"InvoiceDate\":\"2023-07-05\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-05\",\"PaymentDate\":\"2023-07-05\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":7879,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":7879,\"TotalDueAmount\":0,\"InvoiceValue\":7879,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-BLR-IndiGo 6E-6004\",\"ItemQty\":1,\"ItemRates\":7879,\"Total\":7879,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":7879,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":7879,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS103300615663\",\"amount\":8164,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-07-05T17:26:55.980\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"138912\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6004\",\"eT\":\"320\"},\"stops\":0,\"duration\":80,\"cT\":415,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"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\":\"2023-08-08T10:40\",\"at\":\"2023-08-08T12:00\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"138913\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6622\",\"eT\":\"321\"},\"stops\":0,\"duration\":175,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"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\":\"2023-08-08T18:55\",\"at\":\"2023-08-08T21:50\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXJ-DEL\":\"TESTPNR\",\"DEL-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"NEHA\",\"lN\":\"KANNOJIA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":2208,\"BF\":5956,\"TF\":8164,\"IGST\":72,\"NCM\":285,\"NF\":7879},\"afC\":{\"TAF\":{\"MFT\":72,\"YQ\":0,\"MF\":400,\"OT\":1433,\"AGST\":303},\"NCM\":{\"TDS\":-15,\"OT\":300}}}},\"isara\":false}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-07-05 17:25:36'),(269,'514c6-1492c-b68fb-70071','{\"BookingData\":[{\"bookingId\":\"BKRS104100615703\",\"bookingId_TJ\":\"TJS104100615703\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-07-06T12:15\",\"LocalFromTime\":\"2023-07-06 12:15\",\"FromUTCTime\":\"2023-07-06T12:15\",\"LocalToTime\":\"2023-07-06 15:25\",\"ToUTCTime\":\"2023-07-06T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"PublishedFareTxt\":\"3,772\",\"ApiResultIndex\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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\":{\"ACF\":3000,\"CCF\":50,\"CCFT\":9,\"ACFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-3031331401_0DELBLRAI543_39056416777159\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3487,\"CostToCustomer\":3487,\"BaseFareCal\":3487,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3487,\"intOfferedFare\":3487,\"intPublishFare\":3772,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"374\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-06T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-06T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"514c6-1492c-b68fb-70071\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-05T17:39:24.471\",\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS104100615703\",\"bookingId_TJ\":\"TJS104100615703\",\"FlightNumber\":\"AI-543\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-07-06T12:15\",\"LocalFromTime\":\"2023-07-06 12:15\",\"FromUTCTime\":\"2023-07-06T12:15\",\"LocalToTime\":\"2023-07-06 15:25\",\"ToUTCTime\":\"2023-07-06T15:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Thu, 06 Jul\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3772,\"ApiResultIndex\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"514c6-1492c-b68fb-70071\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-05T17:39:24.471\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3772,\"PublishedFare\":3487,\"OfferedFare\":3487,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3487,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"374\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-06T15:25\",\"SegFlightNumber\":\"AI-543\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-06T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-3031331401_0DELBLRAI543_39021894279167\",\"localFromDateTime\":\"2023-07-06 12:15\",\"localToDateTime\":\"2023-07-06 15:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"06\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"DEL\",\"to\":\"BLR\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":7701,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"514c6-1492c-b68fb-70071\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Bengaluru&source_city=DEL&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&departure_date=06%2F07%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+BLR&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"anuj23@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9671365732\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-05-17-38-56\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"756462\",\"TPSysId\":\"756463\",\"VersionId\":[\"226169\"],\"CustomerSysId\":\"440985\",\"TrxId\":\"62378\",\"FareBreakdownid\":[\"380850\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"84\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"15\",\"CustomerMemSysId\":[\"15\"],\"flight_booking_id\":[\"92\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"92\"],\"_sessiondata\":{\"EmailId\":\"\",\"CustomerSysId\":\"440985\",\"AgencySysId\":\"59951\",\"FirstName\":\"Anuj\",\"LastName\":\"Kumar\",\"Password_cu\":\"dfa3df8dc3faa37ca67f935728576060\",\"ContactNo1\":\"8\",\"SecurityKey\":\"\",\"redirect_link_r\":\"https:\\/\\/www.ktas.in\\/flight\\/flight-search\"},\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3487},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"440985\",\"TPSysId\":\"756463\",\"MasterTPSysId\":\"756462\",\"ProposalID\":\"756463\\/V1\",\"InvoiceDate\":\"2023-07-05\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-05\",\"PaymentDate\":\"2023-07-05\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":3487,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3487,\"TotalDueAmount\":0,\"InvoiceValue\":3487,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BLR-Air India AI-543\",\"ItemQty\":1,\"ItemRates\":3487,\"Total\":3487,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3487,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3487,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-07-05 17:41:20'),(271,'21864-e7faa-5a2d9-1983c','{\"BookingData\":[{\"bookingId\":\"BKRS105800615789\",\"bookingId_TJ\":\"TJS105800615789\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2023-07-06T15:55\",\"LocalFromTime\":\"2023-07-06 15:55\",\"FromUTCTime\":\"2023-07-06T15:55\",\"LocalToTime\":\"2023-07-07 06:10\",\"ToUTCTime\":\"2023-07-07T06:10\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":690,\"LAYOVERDuration\":\"11h 30m\",\"FlyingMinutes\":855,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"14h 15m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8735,\"PublishedFareTxt\":\"8,735\",\"ApiResultIndex\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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\":{\"ACF\":3000,\"CCF\":50,\"CCFT\":9,\"ACFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}},\"ATQ-IXJ\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Only Statutory Taxes will be refunded\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARF\":3920,\"CRF\":50,\"CRFT\":9,\"ARFT\":196},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACF\":3920,\"CCF\":50,\"CCFT\":9,\"ACFT\":196},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6330,\"Tax\":2405,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":330,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":8735,\"PublishedFare\":8450,\"OfferedFare\":8450,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-0366679456_0IXJDELAI822DELATQAI453_42109238043703\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2405,\"BaseFareCal\":8450,\"BaseFare\":6330,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":330,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8450,\"CostToCustomer\":8450,\"BaseFareCal\":8450,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8450,\"intOfferedFare\":8450,\"intPublishFare\":8735,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"484\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-06T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":690,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"11h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"485\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-07-07T06:10\",\"SegFlightNumber\":\"AI-453\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"484\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"21864-e7faa-5a2d9-1983c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-05T18:30:17.288\",\"strTraceId\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-06 12:00\",\"localToDateTime\":\"2023-07-07 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105800615789\",\"bookingId_TJ\":\"TJS105800615789\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"strTraceId\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2023-07-06T15:55\",\"LocalFromTime\":\"2023-07-06 15:55\",\"FromUTCTime\":\"2023-07-06T15:55\",\"LocalToTime\":\"2023-07-07 06:10\",\"ToUTCTime\":\"2023-07-07T06:10\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":690,\"LAYOVERDuration\":\"11h 30m\",\"FlyingMinutes\":855,\"DepartureDateTxt\":\"Thu, 06 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"14h 15m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":20761.7,\"ApiResultIndex\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"21864-e7faa-5a2d9-1983c\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-05T18:30:17.288\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":16730,\"Tax\":4031.7,\"YQTax\":0,\"OtherCharges\":2159,\"Discount\":0,\"ServiceFee\":415,\"ManagementFeeTax\":74.7,\"AirlineGSTComponent\":863,\"CarrierMiscFee\":520,\"MUFee\":0,\"intPublishedFare\":20761.7,\"PublishedFare\":20476.7,\"OfferedFare\":20476.7,\"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\":\"1\",\"TaxIN\":4031.7,\"BaseFareCal\":20476.7,\"BaseFare\":16730,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":415,\"YQ\":0,\"AGST\":863,\"MFT\":74.7,\"OT\":2159,\"MU\":0,\"YR\":520,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"484\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-06T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-06T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":690,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"11h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"485\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-07-07T06:10\",\"SegFlightNumber\":\"AI-453\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],[{\"segmentid\":\"100\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-07T16:40\",\"SegFlightNumber\":\"UK-692\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":1065,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"17h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-07-08T11:50\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-08T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":40,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"102\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-08T13:20\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-07-08T12:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-0366679456_1IXJDELAI822DELATQAI453_42066816599385\",\"localFromDateTime\":\"2023-07-06 15:55\",\"localToDateTime\":\"2023-07-07 06:10\",\"strSourceAirportCode\":\"ATQ\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS105800615789\",\"bookingId_TJ\":\"TJS105800615789\",\"FlightNumber\":\"UK-692\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0366679456_0ATQDELUK692DELSXRUK611SXRIXJUK611_42066816164162\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-07-07T15:25\",\"LocalFromTime\":\"2023-07-07 15:25\",\"FromUTCTime\":\"2023-07-07T15:25\",\"LocalToTime\":\"2023-07-08 13:20\",\"ToUTCTime\":\"2023-07-08T13:20\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1105,\"LAYOVERDuration\":\"18h 25m\",\"FlyingMinutes\":1315,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Sat, 08 Jul\",\"FlightDuration\":\"21h 55m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12026.7,\"PublishedFareTxt\":\"12,027\",\"ApiResultIndex\":\"15-2-10-0366679456_0ATQDELUK692DELSXRUK611SXRIXJUK611_42066816164162\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRF\":50,\"CRFT\":9,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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\":{\"ACF\":3000,\"CCF\":50,\"CCFT\":9,\"ACFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}},\"ATQ-IXJ\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Only Statutory Taxes will be refunded\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARF\":3920,\"CRF\":50,\"CRFT\":9,\"ARFT\":196},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACF\":3920,\"CCF\":50,\"CCFT\":9,\"ACFT\":196},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10400,\"Tax\":1626.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":533,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":12026.7,\"PublishedFare\":12026.7,\"OfferedFare\":12026.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-0366679456_1ATQDELUK692DELSXRUK611SXRIXJUK611_42109240216985\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1626.7,\"BaseFareCal\":12026.7,\"BaseFare\":10400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":533,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":250,\"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\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12026.7,\"CostToCustomer\":12026.7,\"BaseFareCal\":12026.7,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12026.7,\"intOfferedFare\":12026.7,\"intPublishFare\":12026.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"100\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-07T16:40\",\"SegFlightNumber\":\"UK-692\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":1065,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"17h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-07-08T11:50\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-08T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":40,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"102\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-08T13:20\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-07-08T12:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"100\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"21864-e7faa-5a2d9-1983c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-05T18:30:17.288\",\"strTraceId\":\"15-2-10-0366679456_0ATQDELUK692DELSXRUK611SXRIXJUK611_42066816164162\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-06 12:00\",\"localToDateTime\":\"2023-07-07 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Amritsar\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"departure_date\":\"06\\/07\\/2023\",\"return_date\":\"07\\/07\\/2023\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"IXJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"sourceCityId\":13021,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2023\",\"return_dates\":\"07\\/07\\/2023\",\"strDepatureDate\":\"2023-07-06\",\"strReturnDate\":\"2023-07-07\",\"SearchFlightTraceId\":\"21864-e7faa-5a2d9-1983c\",\"PreferredAirline\":null,\"from_city_\":\"2__IXJ-ATQ-IXJ\"}}','2023-07-05 18:28:56'),(273,'21419-e24af-9f6fb-28c0c','{\"BookingData\":[{\"bookingId\":\"BKRS100400616065\",\"bookingId_TJ\":\"TJS100400616065\",\"FlightNumber\":\"SG-8709\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:55\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-07-07T18:55\",\"LocalFromTime\":\"2023-07-07 18:55\",\"FromUTCTime\":\"2023-07-07T18:55\",\"LocalToTime\":\"2023-07-07 21:10\",\"ToUTCTime\":\"2023-07-07T21:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4204,\"PublishedFareTxt\":\"4,204\",\"ApiResultIndex\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3059,\"Tax\":1145,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":155,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4204,\"PublishedFare\":3919,\"OfferedFare\":3919,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0538431855_0DELBOMSG8709_1107426823108\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1145,\"BaseFareCal\":3919,\"BaseFare\":3059,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":155,\"MFT\":72,\"OT\":518,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3919,\"CostToCustomer\":3919,\"BaseFareCal\":3919,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3919,\"intOfferedFare\":3919,\"intPublishFare\":4204,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"838\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-07T21:10\",\"SegFlightNumber\":\"SG-8709\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"838\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"21419-e24af-9f6fb-28c0c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T12:07:39.405\",\"strTraceId\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-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\":\"BKRS100400616065\",\"bookingId_TJ\":\"TJS100400616065\",\"FlightNumber\":\"SG-8709\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"strTraceId\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:55\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-07-07T18:55\",\"LocalFromTime\":\"2023-07-07 18:55\",\"FromUTCTime\":\"2023-07-07T18:55\",\"LocalToTime\":\"2023-07-07 21:10\",\"ToUTCTime\":\"2023-07-07T21:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4204,\"ApiResultIndex\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"21419-e24af-9f6fb-28c0c\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T12:07:39.405\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3059,\"Tax\":1145,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":155,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4204,\"PublishedFare\":3919,\"OfferedFare\":3919,\"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\":\"1\",\"TaxIN\":1145,\"BaseFareCal\":3919,\"BaseFare\":3059,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":155,\"MFT\":72,\"OT\":518,\"MU\":0,\"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\":\"838\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-07T21:10\",\"SegFlightNumber\":\"SG-8709\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T18:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0538431855_0DELBOMSG8709_1097665728308\",\"localFromDateTime\":\"2023-07-07 18:55\",\"localToDateTime\":\"2023-07-07 21: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\",\"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\":\"07\\/07\\/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\",\"FareTypes\":\"REGULAR\",\"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\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"21419-e24af-9f6fb-28c0c\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BOM\"}}','2023-07-06 12:06:19'),(278,'16b6d-11bc4-ba3d4-43d29','{\"BookingData\":[{\"bookingId\":\"BKRS102900616267\",\"bookingId_TJ\":\"TJS102900616267\",\"FlightNumber\":\"6E-307\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-07-07T12:50\",\"LocalFromTime\":\"2023-07-07 12:50\",\"FromUTCTime\":\"2023-07-07T12:50\",\"LocalToTime\":\"2023-07-07 18:55\",\"ToUTCTime\":\"2023-07-07T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":10235,\"PublishedFareTxt\":\"10,235\",\"ApiResultIndex\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"ATQ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8076,\"Tax\":2159,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":411,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10235,\"PublishedFare\":9950,\"OfferedFare\":9950,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6155009123875\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":10235,\"oldFare\":9534,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2159,\"BaseFareCal\":9950,\"BaseFare\":8076,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":411,\"MFT\":72,\"OT\":1276,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9950,\"CostToCustomer\":9950,\"BaseFareCal\":9950,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9950,\"intOfferedFare\":9950,\"intPublishFare\":10235,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"574\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-07-07T14:20\",\"SegFlightNumber\":\"6E-307\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"575\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-07T18:55\",\"SegFlightNumber\":\"6E-435\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-07-07T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"16b6d-11bc4-ba3d4-43d29\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T13:31:47.017\",\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"ATQ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":974,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102900616267\",\"bookingId_TJ\":\"TJS102900616267\",\"FlightNumber\":\"6E-307\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"18:55\",\"TravelDate\":\"2023-07-07T12:50\",\"LocalFromTime\":\"2023-07-07 12:50\",\"FromUTCTime\":\"2023-07-07T12:50\",\"LocalToTime\":\"2023-07-07 18:55\",\"ToUTCTime\":\"2023-07-07T18:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":974,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":10235,\"ApiResultIndex\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"16b6d-11bc4-ba3d4-43d29\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T13:31:47.017\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8076,\"Tax\":2159,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":411,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10235,\"PublishedFare\":9950,\"OfferedFare\":9950,\"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\":\"1\",\"TaxIN\":2159,\"BaseFareCal\":9950,\"BaseFare\":8076,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":411,\"MFT\":72,\"OT\":1276,\"MU\":0,\"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\":\"574\",\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-07-07T14:20\",\"SegFlightNumber\":\"6E-307\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-07T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"575\",\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-07T18:55\",\"SegFlightNumber\":\"6E-435\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2023-07-07T16:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:25\",\"strArrivalDtTime\":\"18:55\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3598114970_0ATQLKO6E307LKOBLR6E435_6142126114879\",\"localFromDateTime\":\"2023-07-07 12:50\",\"localToDateTime\":\"2023-07-07 18:55\",\"strSourceAirportCode\":\"ATQ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":974,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Amritsar\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"ATQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"07\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"ATQ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"ATQ\",\"to\":\"BLR\",\"sourceCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":974,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"16b6d-11bc4-ba3d4-43d29\",\"PreferredAirline\":null,\"from_city_\":\"1__ATQ-BLR\"}}','2023-07-06 13:30:26'),(282,'7a76b-f87b2-8e650-86a43','{\"BookingData\":[{\"bookingId\":\"BKRS102100616893\",\"bookingId_TJ\":\"TJS102100616893\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-08-03T15:55\",\"LocalFromTime\":\"2023-08-03 15:55\",\"FromUTCTime\":\"2023-08-03T15:55\",\"LocalToTime\":\"2023-08-03 22:35\",\"ToUTCTime\":\"2023-08-03T22:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":400,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"6h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":24548,\"PublishedFareTxt\":\"24,548\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19400,\"Tax\":5148,\"YQTax\":0,\"OtherCharges\":2666,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":998,\"CarrierMiscFee\":540,\"MUFee\":0,\"intPublishedFare\":24548,\"PublishedFare\":23978,\"OfferedFare\":23978,\"CommissionEarned\":570,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7660010111_0IXJDELAI822DELBLRAI512_23065882974532\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":570,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5148,\"BaseFareCal\":23978,\"BaseFare\":19400,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":998,\"MFT\":144,\"OT\":2666,\"MU\":0,\"YR\":540,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":23978,\"CostToCustomer\":23978,\"BaseFareCal\":23978,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":23978,\"intOfferedFare\":23978,\"intPublishFare\":24548,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":\"30\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":570,\"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\":\"176\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-03T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-03T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":110,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"177\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-03T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"176\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7a76b-f87b2-8e650-86a43\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:13:37.892\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS102100616893\",\"bookingId_TJ\":\"TJS102100616893\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2023-08-03T15:55\",\"LocalFromTime\":\"2023-08-03 15:55\",\"FromUTCTime\":\"2023-08-03T15:55\",\"LocalToTime\":\"2023-08-03 22:35\",\"ToUTCTime\":\"2023-08-03T22:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":400,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"6h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":24548,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"7a76b-f87b2-8e650-86a43\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:13:37.892\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":19400,\"Tax\":5148,\"YQTax\":0,\"OtherCharges\":2666,\"Discount\":0,\"ServiceFee\":800,\"ManagementFeeTax\":144,\"AirlineGSTComponent\":998,\"CarrierMiscFee\":540,\"MUFee\":0,\"intPublishedFare\":24548,\"PublishedFare\":23978,\"OfferedFare\":23978,\"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\":5148,\"BaseFareCal\":23978,\"BaseFare\":19400,\"CommissionEarned\":570,\"TDS\":-30,\"MF\":800,\"YQ\":0,\"AGST\":998,\"MFT\":144,\"OT\":2666,\"MU\":0,\"YR\":540,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"176\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-03T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-03T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":110,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"177\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-03T22:35\",\"SegFlightNumber\":\"AI-512\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T19:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-08-03 15:55\",\"localToDateTime\":\"2023-08-03 22:35\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"94\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\",\"18\"],\"flight_booking_id\":[\"94\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-14-29\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nti\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-14-29\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"18\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nti\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-14-29\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"IsApproved\":0,\"apiTraceId\":\"7a76b-f87b2-8e650-86a43\",\"modified\":\"2023-07-06-18-14-29\",\"created\":\"2023-07-06-18-14-29\",\"CustomerMemberSysId\":\"18\"}],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\",\"18\"],\"flight_booking_customer\":[[\"86\",\"87\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"03\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-03\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"7a76b-f87b2-8e650-86a43\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"757707\",\"TPSysId\":\"757708\",\"VersionId\":[\"226666\"],\"CustomerSysId\":\"441548\",\"TrxId\":\"62495\",\"FareBreakdownid\":[\"380911\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\",\"18\"],\"flight_booking_id\":[\"94\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":false,\"memberDetailArray\":\"[{\\\"AgencySysId\\\":\\\"59951\\\",\\\"CustomerSysId\\\":\\\"1\\\",\\\"EmailId\\\":\\\"nehakumari@catpl.co.in\\\",\\\"Salutation\\\":\\\"3\\\",\\\"Relation\\\":0,\\\"Contacts\\\":\\\"8923963627\\\",\\\"FirstName\\\":\\\"nti\\\",\\\"LastName\\\":\\\"singh\\\",\\\"Password\\\":\\\"\\\",\\\"IsPswExpire\\\":0,\\\"CreatedByUserSysId\\\":\\\"59951\\\",\\\"DOB\\\":null,\\\"Address\\\":\\\"\\\",\\\"CityTitle\\\":0,\\\"CitySysId\\\":0,\\\"paxType\\\":\\\"1\\\",\\\"StateOrZoneSysId\\\":0,\\\"CountrySysId\\\":0,\\\"countryCode\\\":\\\"91\\\",\\\"RegisterDate\\\":\\\"2023-07-06-18-14-29\\\",\\\"IsActive\\\":1,\\\"IsMarkForDel\\\":\\\"0\\\",\\\"IsApproved\\\":0,\\\"apiTraceId\\\":\\\"7a76b-f87b2-8e650-86a43\\\",\\\"modified\\\":\\\"2023-07-06-18-14-29\\\",\\\"created\\\":\\\"2023-07-06-18-14-29\\\",\\\"MobileNo\\\":\\\"8923963627\\\",\\\"B2B\\\":false}]\"},\"apiDataMember\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nti\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-14-29\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"IsApproved\":0,\"apiTraceId\":\"7a76b-f87b2-8e650-86a43\",\"modified\":\"2023-07-06-18-14-29\",\"created\":\"2023-07-06-18-14-29\",\"MobileNo\":\"8923963627\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"relation-1\":\"Other\",\"CustomerSysId-1\":\"1\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"NEHA\",\"passenger-lastname-1\":\"KANNOJIA\",\"dateofbirth-1\":\"null\\/null\\/\",\"passportno-1\":\"0\",\"passporIssue-1\":\"01\\/01\\/1900\",\"passportnoexpiry-1\":\"01\\/01\\/1900\",\"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\":\"3\",\"passenger-firstname-2\":\"nti\",\"passenger-lastname-2\":\"singh\",\"dateofbirth-2\":\"\",\"PassportNationality-2\":\"IN\",\"passportno-2\":\"\",\"passporIssue-2\":\"\",\"passportnoexpiry-2\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"7a76b-f87b2-8e650-86a43\",\"countryCodeISO\":\"IN\"}}','2023-07-06 18:14:40'),(287,'f2941-b062a-d32f5-dc6e8','{\"BookingData\":[{\"bookingId\":\"BKRS103900616899\",\"bookingId_TJ\":\"TJS103900616899\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2023-08-07T15:55\",\"LocalFromTime\":\"2023-08-07 15:55\",\"FromUTCTime\":\"2023-08-07T15:55\",\"LocalToTime\":\"2023-08-07 22:25\",\"ToUTCTime\":\"2023-08-07T22:25\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Mon, 07 Aug\",\"ArrivalDateTxt\":\"Mon, 07 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9785,\"PublishedFareTxt\":\"9,785\",\"ApiResultIndex\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7330,\"Tax\":2455,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":9785,\"PublishedFare\":9500,\"OfferedFare\":9500,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7964331244_0IXJDELAI822DELATQAI479_23336634193478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2455,\"BaseFareCal\":9500,\"BaseFare\":7330,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":380,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":270,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9500,\"CostToCustomer\":9500,\"BaseFareCal\":9500,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9500,\"intOfferedFare\":9500,\"intPublishFare\":9785,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"559\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-07T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-07T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":210,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"560\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-08-07T22:25\",\"SegFlightNumber\":\"AI-479\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-07T20:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:55\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"559\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f2941-b062a-d32f5-dc6e8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:18:08.642\",\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103900616899\",\"bookingId_TJ\":\"TJS103900616899\",\"FlightNumber\":\"AI-822\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2023-08-07T15:55\",\"LocalFromTime\":\"2023-08-07 15:55\",\"FromUTCTime\":\"2023-08-07T15:55\",\"LocalToTime\":\"2023-08-07 22:25\",\"ToUTCTime\":\"2023-08-07T22:25\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":210,\"LAYOVERDuration\":\"3h 30m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Mon, 07 Aug\",\"ArrivalDateTxt\":\"Mon, 07 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9785,\"ApiResultIndex\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"f2941-b062a-d32f5-dc6e8\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-07-06T18:18:08.642\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7330,\"Tax\":2455,\"YQTax\":0,\"OtherCharges\":1333,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":9785,\"PublishedFare\":9500,\"OfferedFare\":9500,\"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\":\"1\",\"TaxIN\":2455,\"BaseFareCal\":9500,\"BaseFare\":7330,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":380,\"MFT\":72,\"OT\":1333,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"559\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-07T17:25\",\"SegFlightNumber\":\"AI-822\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-07T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":210,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"3h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"560\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-08-07T22:25\",\"SegFlightNumber\":\"AI-479\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-07T20:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:55\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-7964331244_2IXJDELAI822DELATQAI479_23323489842510\",\"localFromDateTime\":\"2023-08-07 15:55\",\"localToDateTime\":\"2023-08-07 22:25\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Amritsar\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"departure_date\":\"07\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"IXJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"sourceCityId\":13021,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"f2941-b062a-d32f5-dc6e8\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-ATQ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jammu&mytrip_city_to=Amritsar&source_city=IXJ&ContSysId_1=101&destination_city=ATQ&ContSysId=101&source=Jammu%2C+IN+-+Satwari+Arpt+IXJ%2C+India&destination=Amritsar%2C+IN+-+Raja+Sansi+Arpt+ATQ%2C+India&departure_date=07%2F08%2F2023&return_date=&from_mytrip_city=+IN+-+Satwari+Arpt+IXJ&to_mytrip_city=+IN+-+Raja+Sansi+Arpt+ATQ&adults=1&childs=0&infants=0&class=2&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-19-50\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"757720\",\"TPSysId\":\"757721\",\"VersionId\":[\"226672\"],\"CustomerSysId\":\"441548\",\"TrxId\":\"62499\",\"FareBreakdownid\":[\"380914\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"88\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"95\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"95\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":9500},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"441548\",\"TPSysId\":\"757721\",\"MasterTPSysId\":\"757720\",\"ProposalID\":\"757721\\/V1\",\"InvoiceDate\":\"2023-07-06\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-06\",\"PaymentDate\":\"2023-07-06\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":9500,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":9500,\"TotalDueAmount\":0,\"InvoiceValue\":9500,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXJ-ATQ-Air India AI-822\",\"ItemQty\":1,\"ItemRates\":9500,\"Total\":9500,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":9500,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":9500,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-07-06 18:20:35');
INSERT INTO `tbl_temp_data` VALUES (292,'88e99-7a359-97c4a-a1400','{\"BookingData\":[{\"bookingId\":\"BKRS100800616911\",\"bookingId_TJ\":\"TJS100800616911\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-08-08T15:00\",\"LocalFromTime\":\"2023-08-08 15:00\",\"FromUTCTime\":\"2023-08-08T15:00\",\"LocalToTime\":\"2023-08-08 17:00\",\"ToUTCTime\":\"2023-08-08T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"PublishedFareTxt\":\"3,472\",\"ApiResultIndex\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"19-18-11-3881992761_0BLRDELAI542_23763201472772\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3187,\"CostToCustomer\":3187,\"BaseFareCal\":3187,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3187,\"intOfferedFare\":3187,\"intPublishFare\":3472,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"220\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-08T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"88e99-7a359-97c4a-a1400\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-06T18:25:15.211\",\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-08 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\":\"BKRS100800616911\",\"bookingId_TJ\":\"TJS100800616911\",\"FlightNumber\":\"AI-542\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:00\",\"TravelDate\":\"2023-08-08T15:00\",\"LocalFromTime\":\"2023-08-08 15:00\",\"FromUTCTime\":\"2023-08-08T15:00\",\"LocalToTime\":\"2023-08-08 17:00\",\"ToUTCTime\":\"2023-08-08T17:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3472,\"ApiResultIndex\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"88e99-7a359-97c4a-a1400\",\"ICSourceSysId\":7,\"estimetedTime\":20,\"estimetedDateTime\":\"2023-07-06T18:25:15.211\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2700,\"Tax\":772,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3472,\"PublishedFare\":3187,\"OfferedFare\":3187,\"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\":\"1\",\"TaxIN\":772,\"BaseFareCal\":3187,\"BaseFare\":2700,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":0,\"MFT\":72,\"OT\":300,\"MU\":0,\"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\":\"220\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T17:00\",\"SegFlightNumber\":\"AI-542\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-08-08T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"19-18-11-3881992761_0BLRDELAI542_23724143808119\",\"localFromDateTime\":\"2023-08-08 15:00\",\"localToDateTime\":\"2023-08-08 17:00\",\"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\",\"mytrip_city_to\":\"Delhi\",\"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\":\"08\\/08\\/2023\",\"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\",\"FareTypes\":\"REGULAR\",\"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\":\"08\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"88e99-7a359-97c4a-a1400\",\"PreferredAirline\":null,\"from_city_\":\"1__BLR-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bengaluru&mytrip_city_to=Delhi&source_city=BLR&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+BLR%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&departure_date=08%2F08%2F2023&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&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"Other\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"KANNOJIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-07-06-18-24-15\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"757737\",\"TPSysId\":\"757738\",\"VersionId\":[\"226678\"],\"CustomerSysId\":\"441548\",\"TrxId\":\"62501\",\"FareBreakdownid\":[\"380916\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"89\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"96\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"96\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3187},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"441548\",\"TPSysId\":\"757738\",\"MasterTPSysId\":\"757737\",\"ProposalID\":\"757738\\/V1\",\"InvoiceDate\":\"2023-07-06\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-07-06\",\"PaymentDate\":\"2023-07-06\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":3187,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3187,\"TotalDueAmount\":0,\"InvoiceValue\":3187,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-DEL-Air India AI-542\",\"ItemQty\":1,\"ItemRates\":3187,\"Total\":3187,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3187,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":3187,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-07-06 18:24:44'),(293,'9f471-3fc45-1044b-ced1c','{\"BookingData\":[{\"FlightNumber\":\"UK-612\",\"keyIndex\":0,\"SegFlightNumberArr\":\"UK-612 +2\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0623868452_4IXJDELAI822DELATQAI479_24420915592163\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2023-07-17T13:55\",\"LocalFromTime\":\"2023-07-17 13:55\",\"FromUTCTime\":\"2023-07-17T13:55\",\"LocalToTime\":\"2023-07-18 09:40\",\"ToUTCTime\":\"2023-07-18T09:40\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":970,\"LAYOVERDuration\":\"16h 10m\",\"FlyingMinutes\":1185,\"DepartureDateTxt\":\"Mon, 17 Jul\",\"ArrivalDateTxt\":\"Tue, 18 Jul\",\"FlightDuration\":\"19h 45m\",\"SourcePlaceSysId\":\"13021\",\"DestPlaceSysId\":\"974\",\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":15526,\"PublishedFareTxt\":\"15,526\",\"ApiResultIndex\":\"15-2-10-0623868452_0IXJSXRUK612SXRDELUK612DELATQUK697_24420915567187\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9f471-3fc45-1044b-ced1c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"813\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-07-17T14:45\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"A\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-17T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":35,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"814\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-17T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"A\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-07-17T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":935,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"15h 35m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"815\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-07-18T09:40\",\"SegFlightNumber\":\"UK-697\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"A\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-18T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"00H\"},{\"keyIndex\":0,\"FlightNumber\":\"UK-692\",\"SegFlightNumberArr\":\"UK-692 +2\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-07-19T15:25\",\"LocalFromTime\":\"2023-07-19 15:25\",\"FromUTCTime\":\"2023-07-19T15:25\",\"LocalToTime\":\"2023-07-20 13:20\",\"ToUTCTime\":\"2023-07-20T13:20\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1105,\"LAYOVERDuration\":\"18h 25m\",\"FlyingMinutes\":1315,\"DepartureDateTxt\":\"Wed, 19 Jul\",\"ArrivalDateTxt\":\"Thu, 20 Jul\",\"FlightDuration\":\"21h 55m\",\"SourcePlaceSysId\":\"13021\",\"DestPlaceSysId\":\"974\",\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8088.7,\"PublishedFareTxt\":\"8,089\",\"ApiResultIndex\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9f471-3fc45-1044b-ced1c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6650,\"Tax\":1438.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":345,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":8088.7,\"PublishedFare\":8089,\"PublishedFarePerPax\":8089,\"OfferedFare\":8088.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"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.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1438.7,\"BaseFareCal\":8088.7,\"BaseFare\":6650,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":345,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":250,\"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 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"tripbinfo\":{\"ATQ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}},\"DEL-SXR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}},\"SXR-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}}},\"$$hashKey\":\"06I\"},\"Segments\":[{\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-19T16:40\",\"SegFlightNumber\":\"UK-692\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-19T15:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":1065,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"17h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-07-20T11:50\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-20T10:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":40,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-20T13:20\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-07-20T12:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"017\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"UK-692\",\"SegFlightNumberArr\":\"UK-692 +2\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-07-19T15:25\",\"LocalFromTime\":\"2023-07-19 15:25\",\"FromUTCTime\":\"2023-07-19T15:25\",\"LocalToTime\":\"2023-07-20 13:20\",\"ToUTCTime\":\"2023-07-20T13:20\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1105,\"LAYOVERDuration\":\"18h 25m\",\"FlyingMinutes\":1315,\"DepartureDateTxt\":\"Wed, 19 Jul\",\"ArrivalDateTxt\":\"Thu, 20 Jul\",\"FlightDuration\":\"21h 55m\",\"SourcePlaceSysId\":\"13021\",\"DestPlaceSysId\":\"974\",\"SourceAirportCode\":\"ATQ\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8088.7,\"PublishedFareTxt\":\"8,089\",\"ApiResultIndex\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9f471-3fc45-1044b-ced1c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6650,\"Tax\":1438.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":345,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":8088.7,\"PublishedFare\":8089,\"PublishedFarePerPax\":8089,\"OfferedFare\":8088.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-0623868452_0ATQDELUK692DELSXRUK611SXRIXJUK611_24420915156220\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"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.00\",\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1438.7,\"BaseFareCal\":8088.7,\"BaseFare\":6650,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":345,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":250,\"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 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"tripbinfo\":{\"ATQ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}},\"DEL-SXR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}},\"SXR-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kilograms\"}}},\"$$hashKey\":\"06I\"},\"Segments\":[{\"originAirportName\":\"Raja Sansi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Amritsar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-19T16:40\",\"SegFlightNumber\":\"UK-692\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"ATQ\",\"originDepTime\":\"2023-07-19T15:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":1065,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"16:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"17h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-07-20T11:50\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-20T10:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":40,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-20T13:20\",\"SegFlightNumber\":\"UK-611\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-07-20T12:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"017\"}}','2023-07-06 18:38:42'),(295,'6d08f-ff08e-bf3d0-6d771','{\"BookingData\":[{\"bookingId\":\"BKRS107100616943\",\"bookingId_TJ\":\"TJS107100616943\",\"FlightNumber\":\"6E-5397\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2023-07-19T11:55\",\"LocalFromTime\":\"2023-07-19 11:55\",\"FromUTCTime\":\"2023-07-19T11:55\",\"LocalToTime\":\"2023-07-19 13:30\",\"ToUTCTime\":\"2023-07-19T13:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 19 Jul\",\"ArrivalDateTxt\":\"Wed, 19 Jul\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6005,\"PublishedFareTxt\":\"6,005\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3950,\"Tax\":2055,\"YQTax\":0,\"OtherCharges\":1383,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":200,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6005,\"PublishedFare\":5720,\"OfferedFare\":5720,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-92060039520_0IXJDEL6E5397_24834787081816\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2055,\"BaseFareCal\":5720,\"BaseFare\":3950,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":200,\"MFT\":72,\"OT\":1383,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5720,\"CostToCustomer\":5720,\"BaseFareCal\":5720,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5720,\"intOfferedFare\":5720,\"intPublishFare\":6005,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"350\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-19T13:30\",\"SegFlightNumber\":\"6E-5397\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-19T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"350\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6d08f-ff08e-bf3d0-6d771\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T18:43:06.790\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS107100616943\",\"bookingId_TJ\":\"TJS107100616943\",\"FlightNumber\":\"6E-5397\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2023-07-19T11:55\",\"LocalFromTime\":\"2023-07-19 11:55\",\"FromUTCTime\":\"2023-07-19T11:55\",\"LocalToTime\":\"2023-07-19 13:30\",\"ToUTCTime\":\"2023-07-19T13:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Wed, 19 Jul\",\"ArrivalDateTxt\":\"Wed, 19 Jul\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":20400,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"6d08f-ff08e-bf3d0-6d771\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T18:43:06.790\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":15200,\"Tax\":5200,\"YQTax\":0,\"OtherCharges\":3017,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":767,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20400,\"PublishedFare\":19545,\"OfferedFare\":19545,\"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\":\"1\",\"TaxIN\":5200,\"BaseFareCal\":19545,\"BaseFare\":15200,\"CommissionEarned\":855,\"TDS\":-45,\"MF\":1200,\"YQ\":0,\"AGST\":767,\"MFT\":216,\"OT\":3017,\"MU\":0,\"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\":\"350\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-19T13:30\",\"SegFlightNumber\":\"6E-5397\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-19T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"252\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-07-22T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-22T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"253\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-23T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-07-23T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-25T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-25T02:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":265,\"NoOfSeatAvailable\":47,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"4h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"797\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-25T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-25T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":47,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-07-19 11:55\",\"localToDateTime\":\"2023-07-19 13:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS107100616943\",\"bookingId_TJ\":\"TJS107100616943\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2023-07-22T07:05\",\"LocalFromTime\":\"2023-07-22 07:05\",\"FromUTCTime\":\"2023-07-22T07:05\",\"LocalToTime\":\"2023-07-23 08:25\",\"ToUTCTime\":\"2023-07-23T08:25\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":1255,\"LAYOVERDuration\":\"20h 55m\",\"FlyingMinutes\":1520,\"DepartureDateTxt\":\"Sat, 22 Jul\",\"ArrivalDateTxt\":\"Sun, 23 Jul\",\"FlightDuration\":\"25h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5491,\"PublishedFareTxt\":\"5,491\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4284,\"Tax\":1207,\"YQTax\":0,\"OtherCharges\":518,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":217,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5491,\"PublishedFare\":5206,\"OfferedFare\":5206,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-92060039520_1DELCCUSG8263CCUBLRSG516_24834788495341\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1207,\"BaseFareCal\":5206,\"BaseFare\":4284,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":217,\"MFT\":72,\"OT\":518,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5206,\"CostToCustomer\":5206,\"BaseFareCal\":5206,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5206,\"intOfferedFare\":5206,\"intPublishFare\":5491,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"252\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-07-22T09:05\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-22T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":1255,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"20h 55m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"253\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-23T08:25\",\"SegFlightNumber\":\"SG-516\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-07-23T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6d08f-ff08e-bf3d0-6d771\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T18:43:06.790\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"},{\"bookingId\":\"BKRS107100616943\",\"bookingId_TJ\":\"TJS107100616943\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-07-25T02:00\",\"LocalFromTime\":\"2023-07-25 02:00\",\"FromUTCTime\":\"2023-07-25T02:00\",\"LocalToTime\":\"2023-07-25 10:45\",\"ToUTCTime\":\"2023-07-25T10:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":265,\"LAYOVERDuration\":\"4h 25m\",\"FlyingMinutes\":525,\"DepartureDateTxt\":\"Tue, 25 Jul\",\"ArrivalDateTxt\":\"Tue, 25 Jul\",\"FlightDuration\":\"8h 45m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":13021,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":47,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8904,\"PublishedFareTxt\":\"8,904\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6966,\"Tax\":1938,\"YQTax\":0,\"OtherCharges\":1116,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":350,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8904,\"PublishedFare\":8619,\"OfferedFare\":8619,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-15-10-5-4-1-92060039520_2BLRDELSG8136DELIXJSG160_24834790802920\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1938,\"BaseFareCal\":8619,\"BaseFare\":6966,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":350,\"MFT\":72,\"OT\":1116,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8619,\"CostToCustomer\":8619,\"BaseFareCal\":8619,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8619,\"intOfferedFare\":8619,\"intPublishFare\":8904,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-25T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-25T02:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":265,\"NoOfSeatAvailable\":47,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"4h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"797\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-25T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-25T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":47,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6d08f-ff08e-bf3d0-6d771\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T18:43:06.790\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"strDestinationAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"intMemberCount\":1,\"intSourceCityId\":[13021,7701,2262],\"intDestinationCityId\":[7701,2262,13021],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"3\",\"mytrip_city_from\":[\"Jammu\",\"Delhi\",\"Bengaluru\"],\"mytrip_city_to\":[\"Delhi\",\"Bengaluru\",\"Jammu\"],\"departure_dates\":[\"2023\\/07\\/19\",\"2023\\/07\\/22\",\"2023\\/07\\/25\"],\"source_city\":[\"IXJ\",\"DEL\",\"BLR\"],\"ContSysId_1\":[\"101\",\"101\",\"101\"],\"destination_city\":[\"DEL\",\"BLR\",\"IXJ\"],\"ContSysId\":[\"101\",\"101\",\"101\"],\"source\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"departure_date\":[\"2023\\/07\\/19\",\"2023\\/07\\/22\",\"2023\\/07\\/25\"],\"return_date\":[\"\",\"\",\"\"],\"from_mytrip_city\":[\" IN - Satwari Arpt IXJ\",\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Bengaluru Intl Arpt BLR\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl DEL\",\" IN - Bengaluru Intl Arpt BLR\",\" IN - Satwari Arpt IXJ\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":[\"IXJ\",\"DEL\",\"BLR\"],\"destinationCityAirportCode\":[\"DEL\",\"BLR\",\"IXJ\"],\"from\":[\"IXJ\",\"DEL\",\"BLR\"],\"to\":[\"DEL\",\"BLR\",\"IXJ\"],\"sourceCityText\":[\"Jammu, IN - Satwari Arpt IXJ, India\",\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"Jammu, IN - Satwari Arpt IXJ, India\"],\"sourceCityId\":[13021,7701,2262],\"destinationCityId\":[7701,2262,13021],\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"return_dates\":[\"\",\"\",\"\"],\"strDepatureDate\":null,\"strReturnDate\":null,\"SearchFlightTraceId\":\"6d08f-ff08e-bf3d0-6d771\",\"PreferredAirline\":null}}','2023-07-06 18:41:45'),(297,'b54e3-4543e-0123b-df9c8','{\"BookingData\":[{\"bookingId\":\"BKRS108400616973\",\"bookingId_TJ\":\"TJS108400616973\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-07-07T14:25\",\"LocalFromTime\":\"2023-07-07 14:25\",\"FromUTCTime\":\"2023-07-07T14:25\",\"LocalToTime\":\"2023-07-07 22:15\",\"ToUTCTime\":\"2023-07-07T22:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":245,\"LAYOVERDuration\":\"4h 5m\",\"FlyingMinutes\":470,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"7h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7957,\"PublishedFareTxt\":\"7,957\",\"ApiResultIndex\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BOM\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6509,\"Tax\":1448,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":328,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7957,\"PublishedFare\":7672,\"OfferedFare\":7672,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26356463484257\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1448,\"BaseFareCal\":7672,\"BaseFare\":6509,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":328,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7672,\"CostToCustomer\":7672,\"BaseFareCal\":7672,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7672,\"intOfferedFare\":7672,\"intPublishFare\":7957,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"715\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-07T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-07T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":245,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"716\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-07T22:15\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"715\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b54e3-4543e-0123b-df9c8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T19:08:28.472\",\"strTraceId\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS108400616973\",\"bookingId_TJ\":\"TJS108400616973\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"strTraceId\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-07-07T14:25\",\"LocalFromTime\":\"2023-07-07 14:25\",\"FromUTCTime\":\"2023-07-07T14:25\",\"LocalToTime\":\"2023-07-07 22:15\",\"ToUTCTime\":\"2023-07-07T22:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":245,\"LAYOVERDuration\":\"4h 5m\",\"FlyingMinutes\":470,\"DepartureDateTxt\":\"Fri, 07 Jul\",\"ArrivalDateTxt\":\"Fri, 07 Jul\",\"FlightDuration\":\"7h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7957,\"ApiResultIndex\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b54e3-4543e-0123b-df9c8\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-06T19:08:28.472\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6509,\"Tax\":1448,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":328,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7957,\"PublishedFare\":7672,\"OfferedFare\":7672,\"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\":\"1\",\"TaxIN\":1448,\"BaseFareCal\":7672,\"BaseFare\":6509,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":328,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"715\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-07T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-07T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":245,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"716\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-07T22:15\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-07T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4253851499_0IXJDELSG161DELBOMSG8169_26347740546977\",\"localFromDateTime\":\"2023-07-07 14:25\",\"localToDateTime\":\"2023-07-07 22:15\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"07\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"IXJ\",\"to\":\"BOM\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":13021,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"b54e3-4543e-0123b-df9c8\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BOM\"}}','2023-07-06 19:07:07'),(301,'25b45-bdccb-a3304-a9b30','{\"BookingData\":[{\"bookingId\":\"BKRS103600617285\",\"bookingId_TJ\":\"TJS103600617285\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-08-09T09:40\",\"LocalFromTime\":\"2023-08-09 09:40\",\"FromUTCTime\":\"2023-08-09T09:40\",\"LocalToTime\":\"2023-08-09 16:10\",\"ToUTCTime\":\"2023-08-09T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Wed, 09 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"PublishedFareTxt\":\"8,164\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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\":{\"ARF\":3000,\"CRFT\":9,\"CRF\":50,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2008918748_0IXJDEL6E2186DELBLR6E2514_13065127728386\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7879,\"CostToCustomer\":7879,\"BaseFareCal\":7879,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7879,\"intOfferedFare\":7879,\"intPublishFare\":8164,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"20\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-09T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-09T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"21\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T16:10\",\"SegFlightNumber\":\"6E-2514\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"20\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25b45-bdccb-a3304-a9b30\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:41:07.185\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS103600617285\",\"bookingId_TJ\":\"TJS103600617285\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-08-09T09:40\",\"LocalFromTime\":\"2023-08-09 09:40\",\"FromUTCTime\":\"2023-08-09T09:40\",\"LocalToTime\":\"2023-08-09 16:10\",\"ToUTCTime\":\"2023-08-09T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Wed, 09 Aug\",\"ArrivalDateTxt\":\"Wed, 09 Aug\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"25b45-bdccb-a3304-a9b30\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:41:07.185\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"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\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"20\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-09T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-09T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":125,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"21\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-09T16:10\",\"SegFlightNumber\":\"6E-2514\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-09T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-08-09 09:40\",\"localToDateTime\":\"2023-08-09 16:10\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"09\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"25b45-bdccb-a3304-a9b30\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-07-07 10:39:46'),(304,'b77e6-f4b47-78865-998e1','{\"BookingData\":[{\"bookingId\":\"BKRS101600617301\",\"bookingId_TJ\":\"TJS101600617301\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-07-08T14:25\",\"LocalFromTime\":\"2023-07-08 14:25\",\"FromUTCTime\":\"2023-07-08T14:25\",\"LocalToTime\":\"2023-07-08 22:15\",\"ToUTCTime\":\"2023-07-08T22:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":245,\"LAYOVERDuration\":\"4h 5m\",\"FlyingMinutes\":470,\"DepartureDateTxt\":\"Sat, 08 Jul\",\"ArrivalDateTxt\":\"Sat, 08 Jul\",\"FlightDuration\":\"7h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7957,\"PublishedFareTxt\":\"7,957\",\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BOM\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"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,\"CRFT\":9,\"CRF\":50,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6509,\"Tax\":1448,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":328,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7957,\"PublishedFare\":7672,\"OfferedFare\":7672,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8423337095_0IXJDELSG161DELBOMSG8169_13513687285249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":7957,\"oldFare\":7641,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1448,\"BaseFareCal\":7672,\"BaseFare\":6509,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":328,\"MFT\":72,\"OT\":648,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7672,\"CostToCustomer\":7672,\"BaseFareCal\":7672,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7672,\"intOfferedFare\":7672,\"intPublishFare\":7957,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"292\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-08T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-08T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":245,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"293\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-08T22:15\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-08T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"BOF1\",\"Price\":100,\"amount\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"BOF2\",\"Price\":200,\"amount\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"BOF3\",\"Price\":300,\"amount\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"JNML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"GFVG\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"GFNV\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"GFCM\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"DNVL\",\"Price\":0,\"amount\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NVML\",\"Price\":275,\"amount\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"VCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NCC6\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NCC5\",\"Price\":300,\"amount\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NCC4\",\"Price\":300,\"amount\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NCC2\",\"Price\":300,\"amount\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NCC1\",\"Price\":300,\"amount\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"VGSW\",\"Price\":385,\"amount\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"JNSW\",\"Price\":405,\"amount\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"NVSW\",\"Price\":434,\"amount\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"LCVS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"292\",\"Code\":\"LCNS\",\"Price\":532,\"amount\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b77e6-f4b47-78865-998e1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:48:35.745\",\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101600617301\",\"bookingId_TJ\":\"TJS101600617301\",\"FlightNumber\":\"SG-161\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"strTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2023-07-08T14:25\",\"LocalFromTime\":\"2023-07-08 14:25\",\"FromUTCTime\":\"2023-07-08T14:25\",\"LocalToTime\":\"2023-07-08 22:15\",\"ToUTCTime\":\"2023-07-08T22:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":245,\"LAYOVERDuration\":\"4h 5m\",\"FlyingMinutes\":470,\"DepartureDateTxt\":\"Sat, 08 Jul\",\"ArrivalDateTxt\":\"Sat, 08 Jul\",\"FlightDuration\":\"7h 50m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":7957,\"ApiResultIndex\":null,\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"b77e6-f4b47-78865-998e1\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-07T10:48:35.745\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6509,\"Tax\":1448,\"YQTax\":0,\"OtherCharges\":648,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":328,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7957,\"PublishedFare\":7672,\"OfferedFare\":7672,\"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\":\"1\",\"TaxIN\":1448,\"BaseFareCal\":7672,\"BaseFare\":6509,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":328,\"MFT\":72,\"OT\":648,\"MU\":0,\"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\":\"292\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-08T15:55\",\"SegFlightNumber\":\"SG-161\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-08T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":245,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"293\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-07-08T22:15\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-08T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":null,\"localFromDateTime\":\"2023-07-08 14:25\",\"localToDateTime\":\"2023-07-08 22:15\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"08\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"IXJ\",\"to\":\"BOM\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":13021,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"b77e6-f4b47-78865-998e1\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BOM\"}}','2023-07-07 10:47:14'),(306,'8a598-86168-33c35-e0d56','{\"BookingData\":[{\"bookingId\":\"BKRS100500625244\",\"bookingId_TJ\":\"TJS100500625244\",\"FlightNumber\":\"6E-2124\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2023-07-14T16:20\",\"LocalFromTime\":\"2023-07-14 16:20\",\"FromUTCTime\":\"2023-07-14T16:20\",\"LocalToTime\":\"2023-07-14 23:05\",\"ToUTCTime\":\"2023-07-14T23:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Fri, 14 Jul\",\"FlightDuration\":\"6h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12524,\"PublishedFareTxt\":\"12,524\",\"ApiResultIndex\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10109,\"Tax\":2415,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":510,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12524,\"PublishedFare\":12239,\"OfferedFare\":12239,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5905363990_0IXJDEL6E2124DELBLR6E2302_24515847509292\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2415,\"BaseFareCal\":12239,\"BaseFare\":10109,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":510,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12239,\"CostToCustomer\":12239,\"BaseFareCal\":12239,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12239,\"intOfferedFare\":12239,\"intPublishFare\":12524,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"85\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-14T17:40\",\"SegFlightNumber\":\"6E-2124\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"86\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-14T23:05\",\"SegFlightNumber\":\"6E-2302\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-14T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"8a598-86168-33c35-e0d56\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T13:59:02.869\",\"strTraceId\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS100500625244\",\"bookingId_TJ\":\"TJS100500625244\",\"FlightNumber\":\"6E-2124\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"strTraceId\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2023-07-14T16:20\",\"LocalFromTime\":\"2023-07-14 16:20\",\"FromUTCTime\":\"2023-07-14T16:20\",\"LocalToTime\":\"2023-07-14 23:05\",\"ToUTCTime\":\"2023-07-14T23:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Fri, 14 Jul\",\"FlightDuration\":\"6h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12524,\"ApiResultIndex\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"8a598-86168-33c35-e0d56\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T13:59:02.869\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10109,\"Tax\":2415,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":510,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12524,\"PublishedFare\":12239,\"OfferedFare\":12239,\"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\":\"1\",\"TaxIN\":2415,\"BaseFareCal\":12239,\"BaseFare\":10109,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":510,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"85\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-14T17:40\",\"SegFlightNumber\":\"6E-2124\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"86\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-14T23:05\",\"SegFlightNumber\":\"6E-2302\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-14T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5905363990_1IXJDEL6E2124DELBLR6E2302_24500212614902\",\"localFromDateTime\":\"2023-07-14 16:20\",\"localToDateTime\":\"2023-07-14 23:05\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"14\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"8a598-86168-33c35-e0d56\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-07-13 13:57:41'),(308,'791d6-04007-1199a-466d2','{\"BookingData\":[{\"bookingId\":\"BKRS105200625606\",\"bookingId_TJ\":\"TJS105200625606\",\"FlightNumber\":\"SG-2977\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:30\",\"ArrivalTime\":\"18:40\",\"TravelDate\":\"2023-07-14T15:30\",\"LocalFromTime\":\"2023-07-14 15:30\",\"FromUTCTime\":\"2023-07-14T15:30\",\"LocalToTime\":\"2023-07-15 18:40\",\"ToUTCTime\":\"2023-07-15T18:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"Gwalior\",\"GroundTime\":1330,\"LAYOVERDuration\":\"22h 10m\",\"FlyingMinutes\":1630,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Sat, 15 Jul\",\"FlightDuration\":\"27h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":14100,\"PublishedFareTxt\":\"14,100\",\"ApiResultIndex\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":11660,\"Tax\":2440,\"YQTax\":0,\"OtherCharges\":1382,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":586,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14100,\"PublishedFare\":13815,\"OfferedFare\":13815,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9089645790_0IXJGWLSG2977GWLBLRSG2928_35523580904730\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2440,\"BaseFareCal\":13815,\"BaseFare\":11660,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":586,\"MFT\":72,\"OT\":1382,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":13815,\"CostToCustomer\":13815,\"BaseFareCal\":13815,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":13815,\"intOfferedFare\":13815,\"intPublishFare\":14100,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"903\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Gwalior Airport\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Gwalior\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GWL\",\"destinationArrTime\":\"2023-07-14T17:20\",\"SegFlightNumber\":\"SG-2977\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":1330,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"22h 10m\",\"LAYOVERCity\":\"Gwalior\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"904\",\"originAirportName\":\"Gwalior Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Gwalior\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-15T18:40\",\"SegFlightNumber\":\"SG-2928\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GWL\",\"originDepTime\":\"2023-07-15T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"18:40\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"VGSW\",\"Price\":395,\"amount\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"903\",\"Code\":\"NVSW\",\"Price\":445,\"amount\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"791d6-04007-1199a-466d2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T17:02:30.639\",\"strTraceId\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS105200625606\",\"bookingId_TJ\":\"TJS105200625606\",\"FlightNumber\":\"SG-2977\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"strTraceId\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:30\",\"ArrivalTime\":\"18:40\",\"TravelDate\":\"2023-07-14T15:30\",\"LocalFromTime\":\"2023-07-14 15:30\",\"FromUTCTime\":\"2023-07-14T15:30\",\"LocalToTime\":\"2023-07-15 18:40\",\"ToUTCTime\":\"2023-07-15T18:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"Gwalior\",\"GroundTime\":1330,\"LAYOVERDuration\":\"22h 10m\",\"FlyingMinutes\":1630,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Sat, 15 Jul\",\"FlightDuration\":\"27h 10m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":14100,\"ApiResultIndex\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"791d6-04007-1199a-466d2\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T17:02:30.639\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":11660,\"Tax\":2440,\"YQTax\":0,\"OtherCharges\":1382,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":586,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14100,\"PublishedFare\":13815,\"OfferedFare\":13815,\"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\":\"1\",\"TaxIN\":2440,\"BaseFareCal\":13815,\"BaseFare\":11660,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":586,\"MFT\":72,\"OT\":1382,\"MU\":0,\"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\":\"903\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Gwalior Airport\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Gwalior\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GWL\",\"destinationArrTime\":\"2023-07-14T17:20\",\"SegFlightNumber\":\"SG-2977\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":1330,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"17:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"22h 10m\",\"LAYOVERCity\":\"Gwalior\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"904\",\"originAirportName\":\"Gwalior Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Gwalior\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-15T18:40\",\"SegFlightNumber\":\"SG-2928\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GWL\",\"originDepTime\":\"2023-07-15T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"18:40\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9089645790_2IXJGWLSG2977GWLBLRSG2928_35517746041958\",\"localFromDateTime\":\"2023-07-14 15:30\",\"localToDateTime\":\"2023-07-15 18:40\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"14\\/07\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/07\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-07-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"791d6-04007-1199a-466d2\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-07-13 17:01:09'),(310,'aaa89-68a86-4a9d0-27786','{\"BookingData\":[{\"bookingId\":\"BKRS107000625607\",\"bookingId_TJ\":\"TJS107000625607\",\"FlightNumber\":\"6E-2124\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2023-07-14T16:20\",\"LocalFromTime\":\"2023-07-14 16:20\",\"FromUTCTime\":\"2023-07-14T16:20\",\"LocalToTime\":\"2023-07-14 23:05\",\"ToUTCTime\":\"2023-07-14T23:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Fri, 14 Jul\",\"FlightDuration\":\"6h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":12524,\"PublishedFareTxt\":\"12,524\",\"ApiResultIndex\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10109,\"Tax\":2415,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":510,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12524,\"PublishedFare\":12239,\"OfferedFare\":12239,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5866569691_0IXJDEL6E2124DELBLR6E2302_35565274638816\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2415,\"BaseFareCal\":12239,\"BaseFare\":10109,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":510,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12239,\"CostToCustomer\":12239,\"BaseFareCal\":12239,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12239,\"intOfferedFare\":12239,\"intPublishFare\":12524,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"438\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-14T17:40\",\"SegFlightNumber\":\"6E-2124\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-14T23:05\",\"SegFlightNumber\":\"6E-2302\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-14T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"438\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"aaa89-68a86-4a9d0-27786\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T17:03:12.320\",\"strTraceId\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-14 12:00\",\"localToDateTime\":\"2023-07-15 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS107000625607\",\"bookingId_TJ\":\"TJS107000625607\",\"FlightNumber\":\"6E-2124\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"strTraceId\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2023-07-14T16:20\",\"LocalFromTime\":\"2023-07-14 16:20\",\"FromUTCTime\":\"2023-07-14T16:20\",\"LocalToTime\":\"2023-07-14 23:05\",\"ToUTCTime\":\"2023-07-14T23:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Fri, 14 Jul\",\"ArrivalDateTxt\":\"Fri, 14 Jul\",\"FlightDuration\":\"6h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":21272,\"ApiResultIndex\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"aaa89-68a86-4a9d0-27786\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T17:03:12.320\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":17610,\"Tax\":3662,\"YQTax\":0,\"OtherCharges\":2300,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":890,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":21272,\"PublishedFare\":20987,\"OfferedFare\":20987,\"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\":\"1\",\"TaxIN\":3662,\"BaseFareCal\":20987,\"BaseFare\":17610,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":890,\"MFT\":72,\"OT\":2300,\"MU\":0,\"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\":\"438\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-14T17:40\",\"SegFlightNumber\":\"6E-2124\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-07-14T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"439\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-07-14T23:05\",\"SegFlightNumber\":\"6E-2302\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-14T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"440\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-15T07:15\",\"SegFlightNumber\":\"6E-6247\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-15T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":150,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"07:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"441\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-15T11:10\",\"SegFlightNumber\":\"6E-137\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-15T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5866569691_1IXJDEL6E2124DELBLR6E2302_35554045897221\",\"localFromDateTime\":\"2023-07-14 16:20\",\"localToDateTime\":\"2023-07-14 23:05\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"BKRS107000625607\",\"bookingId_TJ\":\"TJS107000625607\",\"FlightNumber\":\"6E-6247\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5866569691_0BLRDEL6E6247DELIXJ6E137_35554045608025\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:25\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2023-07-15T04:25\",\"LocalFromTime\":\"2023-07-15 04:25\",\"FromUTCTime\":\"2023-07-15T04:25\",\"LocalToTime\":\"2023-07-15 11:10\",\"ToUTCTime\":\"2023-07-15T11:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Sat, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 15 Jul\",\"FlightDuration\":\"6h 45m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8748,\"PublishedFareTxt\":\"8,748\",\"ApiResultIndex\":\"5-5866569691_0BLRDEL6E6247DELIXJ6E137_35554045608025\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}},\"BLR-IXJ\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":7501,\"Tax\":1247,\"YQTax\":0,\"OtherCharges\":867,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":380,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8748,\"PublishedFare\":8748,\"OfferedFare\":8748,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5866569691_1BLRDEL6E6247DELIXJ6E137_35565276782643\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1247,\"BaseFareCal\":8748,\"BaseFare\":7501,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":380,\"MFT\":0,\"OT\":867,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8748,\"CostToCustomer\":8748,\"BaseFareCal\":8748,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8748,\"intOfferedFare\":8748,\"intPublishFare\":8748,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"440\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-07-15T07:15\",\"SegFlightNumber\":\"6E-6247\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-07-15T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":150,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"07:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"441\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-07-15T11:10\",\"SegFlightNumber\":\"6E-137\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-07-15T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"aaa89-68a86-4a9d0-27786\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-13T17:03:12.320\",\"strTraceId\":\"5-5866569691_0BLRDEL6E6247DELIXJ6E137_35554045608025\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-07-14 12:00\",\"localToDateTime\":\"2023-07-15 12:00\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"14\\/07\\/2023\",\"return_date\":\"15\\/07\\/2023\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/07\\/2023\",\"return_dates\":\"15\\/07\\/2023\",\"strDepatureDate\":\"2023-07-14\",\"strReturnDate\":\"2023-07-15\",\"SearchFlightTraceId\":\"aaa89-68a86-4a9d0-27786\",\"PreferredAirline\":null,\"from_city_\":\"2__IXJ-BLR-IXJ\"}}','2023-07-13 17:01:51'),(312,'61d88-b0c34-1784c-9aaa6','{\"BookingData\":[{\"bookingId\":\"BKRS101500626552\",\"bookingId_TJ\":\"TJS101500626552\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2023-08-08T09:40\",\"LocalFromTime\":\"2023-08-08 09:40\",\"FromUTCTime\":\"2023-08-08T09:40\",\"LocalToTime\":\"2023-08-08 18:20\",\"ToUTCTime\":\"2023-08-08T18:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":520,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"8h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"PublishedFareTxt\":\"8,164\",\"ApiResultIndex\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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\":{\"ARF\":3000,\"ARFT\":150},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25143265081399\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7879,\"CostToCustomer\":7879,\"BaseFareCal\":7879,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7879,\"intOfferedFare\":7879,\"intPublishFare\":8164,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"795\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"796\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T18:20\",\"SegFlightNumber\":\"6E-781\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"795\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"61d88-b0c34-1784c-9aaa6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-14T13:51:04.305\",\"strTraceId\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS101500626552\",\"bookingId_TJ\":\"TJS101500626552\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"strTraceId\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2023-08-08T09:40\",\"LocalFromTime\":\"2023-08-08 09:40\",\"FromUTCTime\":\"2023-08-08T09:40\",\"LocalToTime\":\"2023-08-08 18:20\",\"ToUTCTime\":\"2023-08-08T18:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":260,\"LAYOVERDuration\":\"4h 20m\",\"FlyingMinutes\":520,\"DepartureDateTxt\":\"Tue, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 08 Aug\",\"FlightDuration\":\"8h 40m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":8164,\"ApiResultIndex\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"61d88-b0c34-1784c-9aaa6\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-07-14T13:51:04.305\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5956,\"Tax\":2208,\"YQTax\":0,\"OtherCharges\":1433,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":303,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8164,\"PublishedFare\":7879,\"OfferedFare\":7879,\"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\":\"1\",\"TaxIN\":2208,\"BaseFareCal\":7879,\"BaseFare\":5956,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":303,\"MFT\":72,\"OT\":1433,\"MU\":0,\"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\":\"795\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-08T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":260,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"4h 20m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"796\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-08-08T18:20\",\"SegFlightNumber\":\"6E-781\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-08T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0899363885_0IXJDEL6E2186DELBLR6E781_25128781054747\",\"localFromDateTime\":\"2023-08-08 09:40\",\"localToDateTime\":\"2023-08-08 18:20\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"08\\/08\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"61d88-b0c34-1784c-9aaa6\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-07-14 13:49:43'),(316,'ddc27-6d66a-145ea-7e812','{\"BookingData\":[{\"bookingId\":\"BKRS115800634648\",\"bookingId_TJ\":\"TJS115800634648\",\"FlightNumber\":\"6E-1013\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:50\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2023-08-10T09:50\",\"LocalFromTime\":\"2023-08-10 09:50\",\"FromUTCTime\":\"2023-08-10T09:50\",\"LocalToTime\":\"2023-08-10 17:45\",\"ToUTCTime\":\"2023-08-10T17:45\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"7h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":5000,\"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\":{\"ARF\":5000,\"ARFT\":250},\"st\":\"6\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":6500,\"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},\"st\":\"6\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":22080,\"Tax\":5785.1,\"YQTax\":0,\"OtherCharges\":5128.1,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":657,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":27865.1,\"PublishedFare\":27865.1,\"OfferedFare\":25624.2,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9464899818_1SINCCU6E1016CCUDEL6E2358_19233234041570\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"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\":5785.1,\"BaseFareCal\":27865.1,\"BaseFare\":22080,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":657,\"MFT\":0,\"OT\":5128.1,\"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\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"439\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2023-08-10T17:45\",\"SegFlightNumber\":\"6E-1013\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":325,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:50\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"5h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"XBPA\",\"Price\":2760,\"amount\":2760,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"XBPB\",\"Price\":5520,\"amount\":5520,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"XBPC\",\"Price\":8280,\"amount\":8280,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"XBPD\",\"Price\":16560,\"amount\":16560,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"NPLW\",\"Price\":500,\"amount\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"BLKT\",\"Price\":500,\"amount\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ddc27-6d66a-145ea-7e812\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 12:00\",\"localToDateTime\":\"2023-08-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKRS115800634648\",\"bookingId_TJ\":\"TJS115800634648\",\"FlightNumber\":\"6E-1013\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"strTraceId\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:50\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2023-08-10T09:50\",\"LocalFromTime\":\"2023-08-10 09:50\",\"FromUTCTime\":\"2023-08-10T09:50\",\"LocalToTime\":\"2023-08-10 17:45\",\"ToUTCTime\":\"2023-08-10T17:45\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"7h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":27865.1,\"ApiResultIndex\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"ddc27-6d66a-145ea-7e812\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":5000,\"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\":{\"ARF\":5000,\"ARFT\":250},\"st\":\"6\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":6500,\"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},\"st\":\"6\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":22080,\"Tax\":5785.1,\"YQTax\":0,\"OtherCharges\":5128.1,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":657,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":27865.1,\"PublishedFare\":27865.1,\"OfferedFare\":25624.2,\"CommissionEarned\":0,\"CommisionPass\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9464899818_1SINCCU6E1016CCUDEL6E2358_19233234041570\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"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\":5785.1,\"BaseFareCal\":27865.1,\"BaseFare\":22080,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":657,\"MFT\":0,\"OT\":5128.1,\"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\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"439\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2023-08-10T17:45\",\"SegFlightNumber\":\"6E-1013\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T09:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":325,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:50\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"5h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"440\",\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-15T06:00\",\"SegFlightNumber\":\"6E-1016\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2023-08-15T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":255,\"GroundTime\":340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:00\",\"FlightDuration\":\"4h 15m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"441\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-15T14:00\",\"SegFlightNumber\":\"6E-2358\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-15T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9464899818_4DELSIN6E1013SINCCU6E1016CCUDEL6E2358_18539144860599\",\"localFromDateTime\":\"2023-08-10 09:50\",\"localToDateTime\":\"2023-08-10 17:45\",\"strSourceAirportCode\":\"SIN\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKRS115800634648\",\"bookingId_TJ\":\"TJS115800634648\",\"FlightNumber\":\"6E-1016\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"14:00\",\"TravelDate\":\"2023-08-15T04:15\",\"LocalFromTime\":\"2023-08-15 04:15\",\"FromUTCTime\":\"2023-08-15T04:15\",\"LocalToTime\":\"2023-08-15 14:00\",\"ToUTCTime\":\"2023-08-15T14:00\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":340,\"LAYOVERDuration\":\"5h 40m\",\"FlyingMinutes\":735,\"DepartureDateTxt\":\"Tue, 15 Aug\",\"ArrivalDateTxt\":\"Tue, 15 Aug\",\"FlightDuration\":\"9h 45m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":5000,\"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\":{\"ARF\":5000,\"ARFT\":250},\"st\":\"6\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":6500,\"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},\"st\":\"6\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"440\",\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-15T06:00\",\"SegFlightNumber\":\"6E-1016\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2023-08-15T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":255,\"GroundTime\":340,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:00\",\"FlightDuration\":\"4h 15m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"441\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-08-15T14:00\",\"SegFlightNumber\":\"6E-2358\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-08-15T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPA\",\"Price\":1512,\"amount\":1512,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPB\",\"Price\":2722,\"amount\":2722,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPC\",\"Price\":4234,\"amount\":4234,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"XBPD\",\"Price\":43125,\"amount\":43125,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"NPLW\",\"Price\":500,\"amount\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"440\",\"Code\":\"BLKT\",\"Price\":500,\"amount\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"NPLW\",\"Price\":500,\"amount\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"BLKT\",\"Price\":500,\"amount\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"CTSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"439\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ddc27-6d66a-145ea-7e812\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":14,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 12:00\",\"localToDateTime\":\"2023-08-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Singapore\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"SIN\",\"ContSysId\":\"190\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Singapore, SG - Changi Intl Arpt SIN, Singapore\",\"departure_date\":\"10\\/08\\/2023\",\"return_date\":\"15\\/08\\/2023\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" SG - Changi Intl Arpt SIN\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"SIN\",\"from\":\"DEL\",\"to\":\"SIN\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Singapore, SG - Changi Intl Arpt SIN, Singapore\",\"sourceCityId\":7701,\"destinationCityId\":25278,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"10\\/08\\/2023\",\"return_dates\":\"15\\/08\\/2023\",\"strDepatureDate\":\"2023-08-10\",\"strReturnDate\":\"2023-08-15\",\"SearchFlightTraceId\":\"ddc27-6d66a-145ea-7e812\",\"PreferredAirline\":null,\"from_city_\":\"2__DEL-SIN-DEL\"}}','2023-07-21 16:27:51'),(322,'99e64-9e2cc-52702-1fee3','{\"BookingData\":[{\"bookingId\":\"BKRS104400646590\",\"bookingId_TJ\":\"TJS104400646590\",\"FlightNumber\":\"AI-441\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:15\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2023-08-03T17:15\",\"LocalFromTime\":\"2023-08-03 17:15\",\"FromUTCTime\":\"2023-08-03T17:15\",\"LocalToTime\":\"2023-08-03 19:30\",\"ToUTCTime\":\"2023-08-03T19:30\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4490,\"PublishedFareTxt\":\"4,490\",\"ApiResultIndex\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"policyInfo\":\"__nls__Changes permitted 25 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3000,\"policyInfo\":\"__nls__Cancellation permitted 25 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":1490,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":4490,\"PublishedFare\":4205,\"OfferedFare\":4205,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-1894062498_0DELBOMAI441_32068987125363\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1490,\"BaseFareCal\":4205,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"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\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4205,\"CostToCustomer\":4205,\"BaseFareCal\":4205,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4205,\"intOfferedFare\":4205,\"intPublishFare\":4490,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"131\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-08-03T19:30\",\"SegFlightNumber\":\"AI-441\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VGML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"AVML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VJML\",\"Price\":0,\"amount\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VLML\",\"Price\":0,\"amount\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"FPML\",\"Price\":0,\"amount\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"MOML\",\"Price\":0,\"amount\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"HNML\",\"Price\":0,\"amount\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"SFML\",\"Price\":0,\"amount\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"DBML\",\"Price\":0,\"amount\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NLML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"CHML\",\"Price\":0,\"amount\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"BBML\",\"Price\":0,\"amount\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"BLML\",\"Price\":0,\"amount\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"GFML\",\"Price\":0,\"amount\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"KSML\",\"Price\":0,\"amount\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LCML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LFML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LSML\",\"Price\":0,\"amount\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"RVML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"VOML\",\"Price\":0,\"amount\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"PFML\",\"Price\":0,\"amount\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"ORML\",\"Price\":0,\"amount\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NSML\",\"Price\":0,\"amount\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"PRML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"LPML\",\"Price\":0,\"amount\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"HFML\",\"Price\":0,\"amount\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"131\",\"Code\":\"NFML\",\"Price\":0,\"amount\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"99e64-9e2cc-52702-1fee3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-08-02T16:00:48.029\",\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-03 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\":\"BKRS104400646590\",\"bookingId_TJ\":\"TJS104400646590\",\"FlightNumber\":\"AI-441\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:15\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2023-08-03T17:15\",\"LocalFromTime\":\"2023-08-03 17:15\",\"FromUTCTime\":\"2023-08-03T17:15\",\"LocalToTime\":\"2023-08-03 19:30\",\"ToUTCTime\":\"2023-08-03T19:30\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 03 Aug\",\"ArrivalDateTxt\":\"Thu, 03 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4490,\"ApiResultIndex\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"99e64-9e2cc-52702-1fee3\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-08-02T16:00:48.029\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3000,\"Tax\":1490,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":159,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":4490,\"PublishedFare\":4205,\"OfferedFare\":4205,\"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\":\"1\",\"TaxIN\":1490,\"BaseFareCal\":4205,\"BaseFare\":3000,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":159,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"131\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-08-03T19:30\",\"SegFlightNumber\":\"AI-441\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-03T17:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:15\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-1894062498_63DELBOMAI441_32053864022313\",\"localFromDateTime\":\"2023-08-03 17:15\",\"localToDateTime\":\"2023-08-03 19:30\",\"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\":\"03\\/08\\/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\",\"FareTypes\":\"REGULAR\",\"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\":\"03\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-03\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"99e64-9e2cc-52702-1fee3\",\"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=03%2F08%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&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"27\",\"EmailId\":\"anuj23.ak@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9671365732\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"Delhi\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2023-08-02-15-59-33\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"19\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"789481\",\"TPSysId\":\"789482\",\"VersionId\":[\"237120\"],\"CustomerSysId\":\"460515\",\"TrxId\":\"64917\",\"FareBreakdownid\":[\"382559\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"91\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"27\",\"CustomerMemSysId\":[\"19\"],\"flight_booking_id\":[\"98\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"98\"],\"_sessiondata\":{\"EmailId\":\"anuj23.ak@gmail.com\",\"CustomerSysId\":\"460515\",\"AgencySysId\":\"59951\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"Password_cu\":\"4077b5d331380e1ebcd507a41d066bb3\",\"ContactNo1\":\"9671365732\",\"SecurityKey\":\"\",\"redirect_link_r\":\"https:\\/\\/www.ktas.in\\/flight\\/flight-search\"},\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4205},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"460515\",\"TPSysId\":\"789482\",\"MasterTPSysId\":\"789481\",\"ProposalID\":\"789482\\/V1\",\"InvoiceDate\":\"2023-08-02\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-08-02\",\"PaymentDate\":\"2023-08-02\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":4205,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4205,\"TotalDueAmount\":0,\"InvoiceValue\":4205,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Air India AI-441\",\"ItemQty\":1,\"ItemRates\":4205,\"Total\":4205,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4205,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":4205,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[{\"order\":{\"bookingId\":\"TJS104400646590\",\"amount\":4490,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atmajw1@gmail.com\"],\"contacts\":[\"+919671365732\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-08-02T16:02:08.064\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"144641\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"441\",\"eT\":\"77W\"},\"stops\":0,\"duration\":135,\"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\":\"2023-08-03T17:15\",\"at\":\"2023-08-03T19:30\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"1111111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Anuj\",\"lN\":\"kumar\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":4205,\"IGST\":72,\"TF\":4490,\"NCM\":285,\"TAF\":1490,\"BF\":3000},\"afC\":{\"NCM\":{\"OT\":300,\"TDS\":-15},\"TAF\":{\"MF\":400,\"YR\":170,\"OT\":689,\"AGST\":159,\"MFT\":72}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}],\"apiFlightBooking\":[]}','2023-08-02 16:00:46'),(327,'d0db9-e6697-20868-d2944','{\"BookingData\":[{\"bookingId\":\"BKRS105700647768\",\"bookingId_TJ\":\"TJS105700647768\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2023-08-10T07:10\",\"LocalFromTime\":\"2023-08-10 07:10\",\"FromUTCTime\":\"2023-08-10T07:10\",\"LocalToTime\":\"2023-08-10 09:10\",\"ToUTCTime\":\"2023-08-10T09:10\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":29,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4334,\"PublishedFareTxt\":\"4,334\",\"ApiResultIndex\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-CCU\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"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},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2849,\"Tax\":1485,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4334,\"PublishedFare\":4049,\"OfferedFare\":4049,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5374095830_0DELCCUSG8263_32926781258679\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1485,\"BaseFareCal\":4049,\"BaseFare\":2849,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":150,\"MFT\":72,\"OT\":863,\"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\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4049,\"CostToCustomer\":4049,\"BaseFareCal\":4049,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4049,\"intOfferedFare\":4049,\"intPublishFare\":4334,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":285,\"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\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-10T09:10\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"EB30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VGSW\",\"Price\":395,\"amount\":395,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"JNSW\",\"Price\":395,\"amount\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"FPML\",\"Price\":395,\"amount\":395,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NVSW\",\"Price\":445,\"amount\":445,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFCM\",\"Price\":445,\"amount\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VGML\",\"Price\":495,\"amount\":495,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"CHML\",\"Price\":495,\"amount\":495,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NVML\",\"Price\":545,\"amount\":545,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"LCVS\",\"Price\":545,\"amount\":545,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"JNML\",\"Price\":545,\"amount\":545,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFVG\",\"Price\":545,\"amount\":545,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"DBML\",\"Price\":545,\"amount\":545,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"VCC2\",\"Price\":595,\"amount\":595,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC6\",\"Price\":595,\"amount\":595,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC5\",\"Price\":595,\"amount\":595,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC4\",\"Price\":595,\"amount\":595,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC2\",\"Price\":595,\"amount\":595,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"NCC1\",\"Price\":595,\"amount\":595,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"LCNS\",\"Price\":595,\"amount\":595,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"GFNV\",\"Price\":595,\"amount\":595,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"450\",\"Code\":\"DNVL\",\"Price\":595,\"amount\":595,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d0db9-e6697-20868-d2944\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-08-03T16:12:53.839\",\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-08-10 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\":\"BKRS105700647768\",\"bookingId_TJ\":\"TJS105700647768\",\"FlightNumber\":\"SG-8263\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:10\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2023-08-10T07:10\",\"LocalFromTime\":\"2023-08-10 07:10\",\"FromUTCTime\":\"2023-08-10T07:10\",\"LocalToTime\":\"2023-08-10 09:10\",\"ToUTCTime\":\"2023-08-10T09:10\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 10 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":29,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4334,\"ApiResultIndex\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"d0db9-e6697-20868-d2944\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-08-03T16:12:53.839\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":2849,\"Tax\":1485,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4334,\"PublishedFare\":4049,\"OfferedFare\":4049,\"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\":\"1\",\"TaxIN\":1485,\"BaseFareCal\":4049,\"BaseFare\":2849,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":400,\"YQ\":0,\"AGST\":150,\"MFT\":72,\"OT\":863,\"MU\":0,\"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\":\"450\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-08-10T09:10\",\"SegFlightNumber\":\"SG-8263\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-08-10T07:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"07:10\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5374095830_2DELCCUSG8263_32918503441526\",\"localFromDateTime\":\"2023-08-10 07:10\",\"localToDateTime\":\"2023-08-10 09:10\",\"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\",\"mytrip_city_to\":\"Kolkata\",\"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\":\"10\\/08\\/2023\",\"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\",\"FareTypes\":\"REGULAR\",\"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\":\"10\\/08\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-08-10\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d0db9-e6697-20868-d2944\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Kolkata&source_city=DEL&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+CCU%2C+India&departure_date=10%2F08%2F2023&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&FareTypes=REGULAR\",\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"4\",\"EmailId\":\"jitendra@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9958049006\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":null,\"Address\":\"Delhi\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2023-08-03-16-11-37\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"20\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"790970\",\"TPSysId\":\"790971\",\"VersionId\":[\"237591\"],\"CustomerSysId\":\"461280\",\"TrxId\":\"65028\",\"FareBreakdownid\":[\"382637\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"92\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"20\"],\"flight_booking_id\":[\"99\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"99\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4049},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"461280\",\"TPSysId\":\"790971\",\"MasterTPSysId\":\"790970\",\"ProposalID\":\"790971\\/V1\",\"InvoiceDate\":\"2023-08-03\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-08-03\",\"PaymentDate\":\"2023-08-03\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":4049,\"InvoiceStatus\":true,\"TotalSGST\":0,\"TotalCGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4049,\"TotalDueAmount\":0,\"InvoiceValue\":4049,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"59951\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-CCU-SpiceJet SG-8263\",\"ItemQty\":1,\"ItemRates\":4049,\"Total\":4049,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4049,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":4049,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-08-03 16:12:00'),(335,'c2010-c50f3-2c19a-785de','{\"BookingData\":[{\"bookingId\":\"BKR110572578754\",\"bookingId_TJ\":\"TJ110572578754\",\"FlightNumber\":\"EY-197\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"09:30\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-12-25T09:30\",\"LocalFromTime\":\"2023-12-25 09:30\",\"FromUTCTime\":\"2023-12-25T09:30\",\"LocalToTime\":\"2023-12-26 13:20\",\"ToUTCTime\":\"2023-12-26T13:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1325,\"LAYOVERDuration\":\"22h 5m\",\"FlyingMinutes\":1820,\"DepartureDateTxt\":\"Mon, 25 Dec\",\"ArrivalDateTxt\":\"Tue, 26 Dec\",\"FlightDuration\":\"27h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12905,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IST\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":27135,\"Tax\":28242.6,\"YQTax\":19906,\"OtherCharges\":5961,\"Discount\":0,\"ServiceFee\":20,\"ManagementFeeTax\":3.6,\"AirlineGSTComponent\":2352,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":55377.600000000006,\"PublishedFare\":53721.19,\"OfferedFare\":-280.4,\"CommissionEarned\":1656.41,\"CommisionPass\":1656.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-87.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-27-21-20-12-15-2-10-2836451257_1ISTAUHEY98AUHBOMEY208_9038085147643\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"Economy Value\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":28242.6,\"BaseFareCal\":53721.19,\"BaseFare\":27135,\"CommissionEarned\":1656.41,\"TDS\":-87.18,\"MF\":20,\"YQ\":19906,\"AGST\":2352,\"MFT\":3.6,\"OT\":5961,\"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\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"861\",\"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-12-25T11:25\",\"SegFlightNumber\":\"EY-197\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-12-25T09:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":1325,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"22h 5m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"862\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Istanbul airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-12-26T13:20\",\"SegFlightNumber\":\"EY-97\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-12-26T09:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":290,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"4h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":null,\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c2010-c50f3-2c19a-785de\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":15,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-12-25 12:00\",\"localToDateTime\":\"2024-01-02 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SAW\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12905,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR110572578754\",\"bookingId_TJ\":\"TJ110572578754\",\"FlightNumber\":\"EY-197\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"strTraceId\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"09:30\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-12-25T09:30\",\"LocalFromTime\":\"2023-12-25 09:30\",\"FromUTCTime\":\"2023-12-25T09:30\",\"LocalToTime\":\"2023-12-26 13:20\",\"ToUTCTime\":\"2023-12-26T13:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1325,\"LAYOVERDuration\":\"22h 5m\",\"FlyingMinutes\":1820,\"DepartureDateTxt\":\"Mon, 25 Dec\",\"ArrivalDateTxt\":\"Tue, 26 Dec\",\"FlightDuration\":\"27h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12905,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IST\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":53721.19,\"ApiResultIndex\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"c2010-c50f3-2c19a-785de\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":27135,\"Tax\":28242.6,\"YQTax\":19906,\"OtherCharges\":5961,\"Discount\":0,\"ServiceFee\":20,\"ManagementFeeTax\":3.6,\"AirlineGSTComponent\":2352,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":55377.600000000006,\"PublishedFare\":53721.19,\"OfferedFare\":-280.4,\"CommissionEarned\":1656.41,\"CommisionPass\":1656.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-87.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-27-21-20-12-15-2-10-2836451257_1ISTAUHEY98AUHBOMEY208_9038085147643\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"Economy Value\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":28242.6,\"BaseFareCal\":53721.19,\"BaseFare\":27135,\"CommissionEarned\":1656.41,\"TDS\":-87.18,\"MF\":20,\"YQ\":19906,\"AGST\":2352,\"MFT\":3.6,\"OT\":5961,\"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\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[[{\"segmentid\":\"861\",\"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-12-25T11:25\",\"SegFlightNumber\":\"EY-197\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-12-25T09:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":1325,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"22h 5m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"862\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Istanbul airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Istanbul\",\"destinationCountryName\":\"Turkey\",\"destinationAirportCode\":\"IST\",\"destinationArrTime\":\"2023-12-26T13:20\",\"SegFlightNumber\":\"EY-97\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-12-26T09:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":290,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"4h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],[{\"segmentid\":\"863\",\"originAirportName\":\"Istanbul airport\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2024-01-02T13:00\",\"SegFlightNumber\":\"EY-98\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2024-01-02T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":270,\"GroundTime\":1145,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"19h 5m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"864\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2024-01-03T12:40\",\"SegFlightNumber\":\"EY-208\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2024-01-03T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-27-21-20-12-15-2-10-2836451257_294BOMAUHEY197AUHISTEY97ISTAUHEY98AUHBOMEY208_686258206215\",\"localFromDateTime\":\"2023-12-25 09:30\",\"localToDateTime\":\"2023-12-26 13:20\",\"strSourceAirportCode\":\"IST\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12905,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"BKR110572578754\",\"bookingId_TJ\":\"TJ110572578754\",\"FlightNumber\":\"EY-98\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"210\",\"DepartureTime\":\"07:30\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2024-01-02T07:30\",\"LocalFromTime\":\"2024-01-02 07:30\",\"FromUTCTime\":\"2024-01-02T07:30\",\"LocalToTime\":\"2024-01-03 12:40\",\"ToUTCTime\":\"2024-01-03T12:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1145,\"LAYOVERDuration\":\"19h 5m\",\"FlyingMinutes\":1600,\"DepartureDateTxt\":\"Tue, 02 Jan\",\"ArrivalDateTxt\":\"Wed, 03 Jan\",\"FlightDuration\":\"29h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12905,\"SourceAirportCode\":\"IST\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FareRuleDetails\":{\"fareRule\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"863\",\"originAirportName\":\"Istanbul airport\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Istanbul\",\"originCountryName\":\"Turkey\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2024-01-02T13:00\",\"SegFlightNumber\":\"EY-98\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"IST\",\"originDepTime\":\"2024-01-02T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":270,\"GroundTime\":1145,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"4h 30m\",\"LAYOVERDuration\":\"19h 5m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"864\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2024-01-03T12:40\",\"SegFlightNumber\":\"EY-208\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2024-01-03T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":null,\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c2010-c50f3-2c19a-785de\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"estimetedTime\":15,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-12-25 12:00\",\"localToDateTime\":\"2024-01-02 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SAW\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12905,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"102\",\"103\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"22\"],\"flight_booking_id\":[\"102\",\"103\"]},\"CustomerSession\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"8\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7566821253\",\"FirstName\":\"Atmaj\",\"LastName\":\"Wa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":\"1976-09-15\",\"Address\":\"Delhi\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-13-11-24-31\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"ugyvygvygvgyvgy\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-09-15\",\"passporIssue\":\"2015-09-16\",\"CustomerMemberSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"8\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7566821253\",\"FirstName\":\"Atmaj\",\"LastName\":\"Wa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":\"1976-09-15\",\"Address\":\"Delhi\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-13-11-24-31\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"ugyvygvygvgyvgy\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-09-15\",\"passporIssue\":\"2015-09-16\",\"IsApproved\":0,\"apiTraceId\":\"c2010-c50f3-2c19a-785de\",\"modified\":\"2023-09-13-11-24-31\",\"created\":\"2023-09-13-11-24-31\",\"CustomerMemberSysId\":\"22\"}],\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"22\"],\"flight_booking_customer\":[[\"94\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Istanbul\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"SAW\",\"ContSysId\":\"222\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Istanbul, IST, TR - Sabiha Gokcen Arpt SAW, Turkey\",\"departure_date\":\"25\\/12\\/2023\",\"return_date\":\"02\\/01\\/2024\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IST\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"SAW\",\"from\":\"BOM\",\"to\":\"SAW\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Istanbul, IST, TR - Sabiha Gokcen Arpt SAW, Turkey\",\"sourceCityId\":18676,\"destinationCityId\":12905,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/12\\/2023\",\"return_dates\":\"02\\/01\\/2024\",\"strDepatureDate\":\"2023-12-25\",\"strReturnDate\":\"2024-01-02\",\"SearchFlightTraceId\":\"c2010-c50f3-2c19a-785de\",\"PreferredAirline\":null,\"from_city_\":\"2__BOM-SAW-BOM\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"842703\",\"TPSysId\":\"842704\",\"VersionId\":[\"255445\"],\"CustomerSysId\":\"394046\",\"TrxId\":\"68565\",\"FareBreakdownid\":[\"385077\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"22\"],\"flight_booking_id\":[\"102\",\"103\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"59951\",\"Salutation\":\"1\",\"EmailId\":\"atmajw1@gmail.com\",\"FirstName\":\"Atmaj\",\"LastName\":\"Wa\",\"CountryCode\":\"91\",\"MobileNo\":\"7566821253\",\"Relation\":9,\"B2B\":false,\"memberDetailArray\":\"[{\\\"AgencySysId\\\":\\\"59951\\\",\\\"CustomerSysId\\\":\\\"8\\\",\\\"EmailId\\\":\\\"atmajw1@gmail.com\\\",\\\"Salutation\\\":\\\"1\\\",\\\"Relation\\\":\\\"1\\\",\\\"Contacts\\\":\\\"7566821253\\\",\\\"FirstName\\\":\\\"Atmaj\\\",\\\"LastName\\\":\\\"Wa\\\",\\\"Password\\\":\\\"\\\",\\\"IsPswExpire\\\":0,\\\"CreatedByUserSysId\\\":\\\"59951\\\",\\\"DOB\\\":\\\"1976-09-15\\\",\\\"Address\\\":\\\"Delhi\\\",\\\"CityTitle\\\":\\\"Delhi\\\",\\\"CitySysId\\\":\\\"7701\\\",\\\"paxType\\\":\\\"1\\\",\\\"StateOrZoneSysId\\\":0,\\\"CountrySysId\\\":\\\"101\\\",\\\"countryCode\\\":\\\"91\\\",\\\"RegisterDate\\\":\\\"2023-09-13-11-24-31\\\",\\\"IsActive\\\":1,\\\"IsMarkForDel\\\":\\\"0\\\",\\\"PassportNo\\\":\\\"ugyvygvygvgyvgy\\\",\\\"PassportNation\\\":\\\"IN\\\",\\\"PassportExpiry\\\":\\\"2025-09-15\\\",\\\"passporIssue\\\":\\\"2015-09-16\\\",\\\"IsApproved\\\":0,\\\"apiTraceId\\\":\\\"c2010-c50f3-2c19a-785de\\\",\\\"modified\\\":\\\"2023-09-13-11-24-31\\\",\\\"created\\\":\\\"2023-09-13-11-24-31\\\",\\\"MobileNo\\\":\\\"7566821253\\\",\\\"B2B\\\":false}]\"},\"apiDataMember\":[{\"AgencySysId\":\"59951\",\"CustomerSysId\":\"8\",\"EmailId\":\"atmajw1@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7566821253\",\"FirstName\":\"Atmaj\",\"LastName\":\"Wa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"59951\",\"DOB\":\"1976-09-15\",\"Address\":\"Delhi\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-13-11-24-31\",\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"ugyvygvygvgyvgy\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-09-15\",\"passporIssue\":\"2015-09-16\",\"IsApproved\":0,\"apiTraceId\":\"c2010-c50f3-2c19a-785de\",\"modified\":\"2023-09-13-11-24-31\",\"created\":\"2023-09-13-11-24-31\",\"MobileNo\":\"7566821253\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7566821253\",\"leadEmail\":\"atmajw1@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"Atmaj\",\"passenger-lastname-1\":\"Wa\",\"dateofbirth-1\":\"15\\/09\\/1976\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"ugyvygvygvgyvgy\",\"passporIssue-1\":\"16\\/09\\/2015\",\"passportnoexpiry-1\":\"15\\/09\\/2025\",\"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\":\"c2010-c50f3-2c19a-785de\",\"countryCodeISO\":\"IN\"}}','2023-09-13 11:24:42'),(337,'c5519-fdde8-265c4-eb43d','{\"BookingData\":[{\"bookingId\":\"BKR119473690105\",\"bookingId_TJ\":\"TJ119473690105\",\"FlightNumber\":\"AI-538\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"06:55\",\"TravelDate\":\"2024-02-12T20:30\",\"LocalFromTime\":\"2024-02-12 20:30\",\"FromUTCTime\":\"2024-02-12T20:30\",\"LocalToTime\":\"2024-02-13 06:55\",\"ToUTCTime\":\"2024-02-13T06:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":1255,\"DepartureDateTxt\":\"Mon, 12 Feb\",\"ArrivalDateTxt\":\"Tue, 13 Feb\",\"FlightDuration\":\"10h 25m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"JFK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":58322.8,\"PublishedFareTxt\":\"58,323\",\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-JFK\":{\"tfr\":{\"CANCELLATION\":[{\"amount\":9999,\"additionalFee\":100,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"CCFT\":18,\"ACF\":9999,\"CCF\":100,\"ACFT\":499.95},\"pp\":\"BEFORE_DEPARTURE\"},{\"amount\":9999,\"additionalFee\":100,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"CCFT\":18,\"ACF\":9999,\"CCF\":100,\"ACFT\":499.95},\"pp\":\"AFTER_DEPARTURE\"}],\"DATECHANGE\":[{\"amount\":6999,\"additionalFee\":50,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"ARF\":6999,\"ARFT\":349.95,\"CRF\":50,\"CRFT\":9},\"pp\":\"BEFORE_DEPARTURE\"},{\"amount\":6999,\"additionalFee\":50,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"ARF\":6999,\"ARFT\":349.95,\"CRF\":50,\"CRFT\":9},\"pp\":\"AFTER_DEPARTURE\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":38125,\"Tax\":20197.8,\"YQTax\":12467,\"OtherCharges\":4905,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":2544,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":58322.8,\"PublishedFare\":57366.35,\"OfferedFare\":57366.35,\"CommissionEarned\":956.45,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-50.34,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-27-21-20-12-2-15-10-8410757318_0MAADELAI538DELJFKAI101_2427265278575\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":956.45,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":20197.8,\"BaseFareCal\":57366.35,\"BaseFare\":38125,\"CommissionEarned\":956.45,\"TDS\":-50.34,\"MF\":10,\"YQ\":12467,\"AGST\":2544,\"MFT\":1.8,\"OT\":4905,\"MU\":0,\"YR\":270,\"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\":\"2Piece\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":956.45,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":57366.35,\"CostToCustomer\":57366.35,\"BaseFareCal\":57366.35,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":57366.35,\"intOfferedFare\":57366.35,\"intPublishFare\":58322.8,\"TripjackMarkup\":0,\"TripjackCommission\":956.45,\"TripjackTDS\":\"50.34\",\"AddiMarkup\":0,\"CommisionPass\":956.45,\"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\":\"520\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2024-02-12T23:25\",\"SegFlightNumber\":\"AI-538\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2024-02-12T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":175,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"521\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"John F Kennedy Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"New York\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"JFK\",\"destinationArrTime\":\"2024-02-13T06:55\",\"SegFlightNumber\":\"AI-101\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2024-02-13T02:05\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":920,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:05\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"15h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c5519-fdde8-265c4-eb43d\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-09-26T08:46:41.423\",\"strTraceId\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2024-02-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"EWR\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR119473690105\",\"bookingId_TJ\":\"TJ119473690105\",\"FlightNumber\":\"AI-538\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"strTraceId\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"06:55\",\"TravelDate\":\"2024-02-12T20:30\",\"LocalFromTime\":\"2024-02-12 20:30\",\"FromUTCTime\":\"2024-02-12T20:30\",\"LocalToTime\":\"2024-02-13 06:55\",\"ToUTCTime\":\"2024-02-13T06:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":1255,\"DepartureDateTxt\":\"Mon, 12 Feb\",\"ArrivalDateTxt\":\"Tue, 13 Feb\",\"FlightDuration\":\"10h 25m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"JFK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":58322.8,\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"c5519-fdde8-265c4-eb43d\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-09-26T08:46:41.423\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":38125,\"Tax\":20197.8,\"YQTax\":12467,\"OtherCharges\":4905,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":2544,\"CarrierMiscFee\":270,\"MUFee\":0,\"intPublishedFare\":58322.8,\"PublishedFare\":57366.35,\"OfferedFare\":57366.35,\"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\":\"1\",\"TaxIN\":20197.8,\"BaseFareCal\":57366.35,\"BaseFare\":38125,\"CommissionEarned\":956.45,\"TDS\":-50.34,\"MF\":10,\"YQ\":12467,\"AGST\":2544,\"MFT\":1.8,\"OT\":4905,\"MU\":0,\"YR\":270,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"520\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2024-02-12T23:25\",\"SegFlightNumber\":\"AI-538\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2024-02-12T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":175,\"GroundTime\":160,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"521\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"John F Kennedy Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"New York\",\"destinationCountryName\":\"United States\",\"destinationAirportCode\":\"JFK\",\"destinationArrTime\":\"2024-02-13T06:55\",\"SegFlightNumber\":\"AI-101\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2024-02-13T02:05\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":920,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:05\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"15h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-27-21-20-12-2-15-10-8410757318_71MAADELAI538DELJFKAI101_252796765167847\",\"localFromDateTime\":\"2024-02-12 20:30\",\"localToDateTime\":\"2024-02-13 06:55\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"JFK\",\"intMemberCount\":1,\"intSourceCityId\":6000,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai\",\"mytrip_city_to\":\"Newark\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"EWR\",\"ContSysId\":\"0\",\"source\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destination\":\"Newark, US - Newark Liberty Intl Arpt EWR, United States\",\"departure_date\":\"12\\/02\\/2024\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt MAA\",\"to_mytrip_city\":\" US - Newark Liberty Intl Arpt EWR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"EWR\",\"from\":\"MAA\",\"to\":\"EWR\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt MAA, India\",\"destinationCityText\":\"Newark, US - Newark Liberty Intl Arpt EWR, United States\",\"sourceCityId\":6000,\"destinationCityId\":0,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/02\\/2024\",\"return_dates\":\"\",\"strDepatureDate\":\"2024-02-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"c5519-fdde8-265c4-eb43d\",\"PreferredAirline\":null,\"from_city_\":\"1__MAA-EWR\"}}','2023-09-26 08:45:19'),(339,'08a49-b12ef-d1ce5-aaa9d','{\"BookingData\":[{\"bookingId\":\"BKR111773690463\",\"bookingId_TJ\":\"TJ111773690463\",\"FlightNumber\":\"UA-164\",\"AirlineName\":\"United Airlines\",\"AirlineCode\":\"UA\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"AirlineSysId\":\"523\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2024-02-02T21:30\",\"LocalFromTime\":\"2024-02-02 21:30\",\"FromUTCTime\":\"2024-02-02T21:30\",\"LocalToTime\":\"2024-02-04 08:05\",\"ToUTCTime\":\"2024-02-04T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Dubai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":1445,\"DepartureDateTxt\":\"Fri, 02 Feb\",\"ArrivalDateTxt\":\"Sun, 04 Feb\",\"FlightDuration\":\"34h 35m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"EWR\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":44735.8,\"PublishedFareTxt\":\"44,736\",\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UA.gif\",\"FareRuleDetails\":{\"fareRule\":{\"EWR-AMD\":{\"fr\":[],\"tfr\":{\"DATECHANGE\":[{\"policyInfo\":\"CHANGE Not Available\",\"fcs\":[],\"pp\":\"BEFORE_DEPARTURE\"},{\"policyInfo\":\"CHANGE Not Available\",\"fcs\":[],\"pp\":\"AFTER_DEPARTURE\"}],\"CANCELLATION\":[{\"policyInfo\":\"Not Refundable\",\"fcs\":[],\"pp\":\"BEFORE_DEPARTURE\"},{\"policyInfo\":\"Not Refundable\",\"fcs\":[],\"pp\":\"AFTER_DEPARTURE\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14960,\"Tax\":29775.8,\"YQTax\":26264,\"OtherCharges\":3500,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":44735.8,\"PublishedFare\":44450.8,\"OfferedFare\":44450.8,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"32-27-21-20-12-2-15-10-4189463980_0EWRDXBUA164DXBAMDEK540_2242647394024\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Economy\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":285,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":29775.8,\"BaseFareCal\":44450.8,\"BaseFare\":14960,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":10,\"YQ\":26264,\"AGST\":0,\"MFT\":1.8,\"OT\":3500,\"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\":\"1Piece\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":44450.8,\"CostToCustomer\":44450.8,\"BaseFareCal\":44450.8,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":44450.8,\"intOfferedFare\":44450.8,\"intPublishFare\":44735.8,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":0,\"CommisionPass\":285,\"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\":\"474\",\"originAirportName\":\"Newark Liberty Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Newark\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2024-02-03T19:40\",\"SegFlightNumber\":\"UA-164\",\"AirlineCode\":\"UA\",\"AirlineName\":\"United Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"EWR\",\"originDepTime\":\"2024-02-02T21:30\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":790,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"13h 10m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Dubai\",\"DepTerminal\":\"Terminal C\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UA.gif\"},{\"segmentid\":\"475\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2024-02-04T08:05\",\"SegFlightNumber\":\"EK-540\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2024-02-04T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"08a49-b12ef-d1ce5-aaa9d\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-09-26T08:55:39.150\",\"strTraceId\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2024-02-02 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"EWR\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":0,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR111773690463\",\"bookingId_TJ\":\"TJ111773690463\",\"FlightNumber\":\"UA-164\",\"AirlineName\":\"United Airlines\",\"AirlineCode\":\"UA\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"strTraceId\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"AirlineSysId\":\"523\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2024-02-02T21:30\",\"LocalFromTime\":\"2024-02-02 21:30\",\"FromUTCTime\":\"2024-02-02T21:30\",\"LocalToTime\":\"2024-02-04 08:05\",\"ToUTCTime\":\"2024-02-04T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Dubai\",\"GroundTime\":500,\"LAYOVERDuration\":\"8h 20m\",\"FlyingMinutes\":1445,\"DepartureDateTxt\":\"Fri, 02 Feb\",\"ArrivalDateTxt\":\"Sun, 04 Feb\",\"FlightDuration\":\"34h 35m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"EWR\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":44735.8,\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UA.gif\",\"SearchFlightTraceId\":\"08a49-b12ef-d1ce5-aaa9d\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-09-26T08:55:39.150\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14960,\"Tax\":29775.8,\"YQTax\":26264,\"OtherCharges\":3500,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":44735.8,\"PublishedFare\":44450.8,\"OfferedFare\":44450.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\":\"1\",\"TaxIN\":29775.8,\"BaseFareCal\":44450.8,\"BaseFare\":14960,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":10,\"YQ\":26264,\"AGST\":0,\"MFT\":1.8,\"OT\":3500,\"MU\":0,\"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\":\"474\",\"originAirportName\":\"Newark Liberty Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Newark\",\"originCountryName\":\"United States\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2024-02-03T19:40\",\"SegFlightNumber\":\"UA-164\",\"AirlineCode\":\"UA\",\"AirlineName\":\"United Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"EWR\",\"originDepTime\":\"2024-02-02T21:30\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":790,\"GroundTime\":500,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"13h 10m\",\"LAYOVERDuration\":\"8h 20m\",\"LAYOVERCity\":\"Dubai\",\"DepTerminal\":\"Terminal C\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UA.gif\"},{\"segmentid\":\"475\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2024-02-04T08:05\",\"SegFlightNumber\":\"EK-540\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"T\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2024-02-04T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-27-21-20-12-2-15-10-4189463980_102EWRDXBUA164DXBAMDEK540_78577258478388\",\"localFromDateTime\":\"2024-02-02 21:30\",\"localToDateTime\":\"2024-02-04 08:05\",\"strSourceAirportCode\":\"EWR\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":0,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Newark\",\"mytrip_city_to\":\"Ahmedabad\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"EWR\",\"ContSysId_1\":\"0\",\"destination_city\":\"AMD\",\"ContSysId\":\"101\",\"source\":\"Newark, US - Newark Liberty Intl Arpt EWR, United States\",\"destination\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"departure_date\":\"02\\/02\\/2024\",\"return_date\":\"\",\"from_mytrip_city\":\" US - Newark Liberty Intl Arpt EWR\",\"to_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt AMD\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"EWR\",\"destinationCityAirportCode\":\"AMD\",\"from\":\"EWR\",\"to\":\"AMD\",\"sourceCityText\":\"Newark, US - Newark Liberty Intl Arpt EWR, United States\",\"destinationCityText\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"sourceCityId\":0,\"destinationCityId\":296,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"02\\/02\\/2024\",\"return_dates\":\"\",\"strDepatureDate\":\"2024-02-02\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"08a49-b12ef-d1ce5-aaa9d\",\"PreferredAirline\":null,\"from_city_\":\"1__EWR-AMD\"}}','2023-09-26 08:54:09'),(344,'a9a87-24c3d-55151-bbd50','{\"FlightBookingData\":[{\"bookingId\":\"DMCS100400715172\",\"bookingId_TJ\":\"TJS100400715172\",\"FlightNumber\":\"SG-327\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"a9a87-24c3d-55151-bbd50\",\"apiTraceId\":\"4-0556169507_0BLRCCUSG327_32195658756116\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2023-10-05T06:10\",\"LocalFromTime\":\"2023-10-05 06:10\",\"FromUTCTime\":\"2023-10-05T06:10\",\"LocalToTime\":\"2023-10-05 09:20\",\"ToUTCTime\":\"2023-10-05T09:20\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"03h 10m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,006\",\"ApiResultIndex\":\"4-0556169507_0BLRCCUSG327_32195658756116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3030,\"Tax\":1261,\"YQTax\":0,\"OtherCharges\":631,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4291,\"PublishedFare\":4006,\"PublishedFareAgent\":4006,\"OfferedFareAgent\":4006,\"OfferedFare\":4006,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-0556169507_0BLRCCUSG327_32585891256386\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1261,\"TotalBaseFare\":4291,\"BaseFareCal\":4006,\"BaseFare\":3030,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":158,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-CCU\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4006,\"CostToCustomer\":4006,\"BaseFareCal\":4006,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4006,\"intOfferedFare\":4006,\"intPublishFare\":4291,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4006,\"CostToAgent\":4006,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"701\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-10-05T09:20\",\"SegFlightNumber\":\"SG-327\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-05T06:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":190,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"701\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-0556169507_0BLRCCUSG327_32195658756116\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-CCU\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"14323\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"104\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:12:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"28\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"28\"],\"flight_booking_customer\":[[\"95\"]],\"SearchTraceId\":\"a9a87-24c3d-55151-bbd50\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Bengaluru (BLR)\",\"Sectors\"],\"to_des\":[\"Kolkata (CCU)\",\"DEL\"],\"departure_date\":[\"05\\/10\\/2023\",\"\"],\"source_city\":[\"BLR\"],\"ContSysId\":[\"0\",\"101\"],\"destination_city\":[\"CCU\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destination\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"to_mytrip_city\":[\"\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Bengaluru (BLR)\",\"Sectors\"],\"to_city\":[\"Kolkata (CCU)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-05\"],\"strReturnDate\":\"\",\"sourceCityId\":[2262],\"intCountryCode\":\"IN\",\"destinationCityId\":[14323],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"a9a87-24c3d-55151-bbd50\",\"sourceCityAirportCode\":[\"BLR\"],\"destinationCityAirportCode\":[\"CCU\"],\"from\":[\"BLR\"],\"to\":[\"CCU\"],\"Fromlabel\":[\"Bengaluru\"],\"Tolabel\":[\"Kolkata\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destinationCityText\":[\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"05\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"05 Oct Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-28 11:06:02\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"a9a87-24c3d-55151-bbd50\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Bengaluru (BLR)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Kolkata (CCU)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"05\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BLR\\\"],\\\"ContSysId\\\":[\\\"0\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"CCU\\\"],\\\"source\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destination\\\":[\\\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Bengaluru Intl Arpt (BLR)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Bengaluru (BLR)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Kolkata (CCU)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-05\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[2262],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[14323],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"a9a87-24c3d-55151-bbd50\\\",\\\"sourceCityAirportCode\\\":[\\\"BLR\\\"],\\\"destinationCityAirportCode\\\":[\\\"CCU\\\"],\\\"from\\\":[\\\"BLR\\\"],\\\"to\\\":[\\\"CCU\\\"],\\\"Fromlabel\\\":[\\\"Bengaluru\\\"],\\\"Tolabel\\\":[\\\"Kolkata\\\"],\\\"sourceCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destinationCityText\\\":[\\\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"05\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"05 Oct Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-09-28 11:06:02\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS100400715172\\\",\\\"bookingId_TJ\\\":\\\"TJS100400715172\\\",\\\"FlightNumber\\\":\\\"SG-327\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"a9a87-24c3d-55151-bbd50\\\",\\\"apiTraceId\\\":\\\"4-0556169507_0BLRCCUSG327_32195658756116\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"06:10\\\",\\\"ArrivalTime\\\":\\\"09:20\\\",\\\"TravelDate\\\":\\\"2023-10-05T06:10\\\",\\\"LocalFromTime\\\":\\\"2023-10-05 06:10\\\",\\\"FromUTCTime\\\":\\\"2023-10-05T06:10\\\",\\\"LocalToTime\\\":\\\"2023-10-05 09:20\\\",\\\"ToUTCTime\\\":\\\"2023-10-05T09:20\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":190,\\\"DepartureDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"FlightDuration\\\":\\\"03h 10m\\\",\\\"SourcePlaceSysId\\\":\\\"2262\\\",\\\"DestPlaceSysId\\\":\\\"14323\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"CCU\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"4,006\\\",\\\"ApiResultIndex\\\":\\\"4-0556169507_0BLRCCUSG327_32195658756116\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":3030,\\\"Tax\\\":1261,\\\"YQTax\\\":0,\\\"OtherCharges\\\":631,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":158,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":4291,\\\"PublishedFare\\\":4006,\\\"PublishedFareAgent\\\":4006,\\\"OfferedFareAgent\\\":4006,\\\"OfferedFare\\\":4006,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-0556169507_0BLRCCUSG327_32585891256386\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4006,\\\"CostToAgent\\\":4006,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1261,\\\"TotalBaseFare\\\":4291,\\\"BaseFareCal\\\":4006,\\\"BaseFare\\\":3030,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":158,\\\"MFT\\\":72,\\\"OT\\\":631,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4006,\\\"CostToAgent\\\":4006,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"BLR-CCU\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":4006,\\\"CostToCustomer\\\":4006,\\\"BaseFareCal\\\":4006,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":4006,\\\"intOfferedFare\\\":4006,\\\"intPublishFare\\\":4291,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4006,\\\"CostToAgent\\\":4006,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"701\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Netaji Subhas Chandra Bose Intl\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Kolkata\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"CCU\\\",\\\"destinationArrTime\\\":\\\"2023-10-05T09:20\\\",\\\"SegFlightNumber\\\":\\\"SG-327\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-05T06:10\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":190,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"06:10\\\",\\\"strArrivalDtTime\\\":\\\"09:20\\\",\\\"FlightDuration\\\":\\\"3h 10m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-0556169507_0BLRCCUSG327_32195658756116\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BLR-CCU\\\":[]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-04 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BLR\\\",\\\"strDestinationAirportCode\\\":\\\"CCU\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"2262\\\",\\\"intDestinationCityId\\\":\\\"14323\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"701\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"tinku\",\"passenger-lastname-1\":\"singh\",\"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\":\"101\",\"passenger-countryName-1\":\"India\",\"SelectMeals\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"7566821253\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0}','2023-09-28 11:13:11'),(345,'4','{\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"10000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"28\\/09\\/2023\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2023-09-28 11:14:20'),(351,'c0978-f2273-8d1c2-8e692','{\"FlightBookingData\":[{\"bookingId\":\"DMCS100700715182\",\"bookingId_TJ\":\"TJS100700715182\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"apiTraceId\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:55\",\"TravelDate\":\"2023-10-10T02:00\",\"LocalFromTime\":\"2023-10-10 02:00\",\"FromUTCTime\":\"2023-10-10T02:00\",\"LocalToTime\":\"2023-10-10 04:55\",\"ToUTCTime\":\"2023-10-10T04:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 55m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,733\",\"ApiResultIndex\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":6664,\"Tax\":2638.5,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9302.5,\"PublishedFare\":8732.5,\"PublishedFareAgent\":8732.5,\"OfferedFareAgent\":8732.5,\"OfferedFare\":8732.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4216830804_0BLRDELSG8136_32810106665115\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":9302.5,\"oldFare\":9214,\"tripbinfo\":{\"BLR-DEL\":{\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8732.5,\"CostToCustomer\":8732.5,\"BaseFareCal\":8732.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8732.5,\"intOfferedFare\":8732.5,\"intPublishFare\":9302.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T02:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":175,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4216830804_0BLRDELSG8136_61219546258224\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"105\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"23\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"24\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rinki\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"CustomerMemberSysId\":\"25\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"CustomerMemberSysId\":\"23\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"CustomerMemberSysId\":\"24\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rinki\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"CustomerMemberSysId\":\"25\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"23\",\"24\",\"25\"],\"flight_booking_customer\":[[\"96\",\"97\",\"98\"]],\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Bengaluru (BLR)\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"10\\/10\\/2023\",\"\"],\"source_city\":[\"BLR\"],\"ContSysId\":[\"0\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Bengaluru (BLR)\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-10\"],\"strReturnDate\":\"\",\"sourceCityId\":[2262],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"c0978-f2273-8d1c2-8e692\",\"sourceCityAirportCode\":[\"BLR\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BLR\"],\"to\":[\"DEL\"],\"Fromlabel\":[\"Bengaluru\"],\"Tolabel\":[\"Delhi\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"10\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"10 Oct Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-28 11:15:39\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"c0978-f2273-8d1c2-8e692\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Bengaluru (BLR)\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BLR\\\"],\\\"ContSysId\\\":[\\\"0\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Bengaluru Intl Arpt (BLR)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"1\\\",\\\"infants\\\":\\\"1\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Bengaluru (BLR)\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-10\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[2262],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"c0978-f2273-8d1c2-8e692\\\",\\\"sourceCityAirportCode\\\":[\\\"BLR\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"BLR\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"Fromlabel\\\":[\\\"Bengaluru\\\"],\\\"Tolabel\\\":[\\\"Delhi\\\"],\\\"sourceCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"1\\\",\\\"infant\\\":\\\"1\\\",\\\"departure_dates\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"10 Oct Tue\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-09-28 11:15:39\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1},\\\"2\\\":{\\\"Title\\\":\\\"Child\\\",\\\"paxType\\\":2,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS100700715182\\\",\\\"bookingId_TJ\\\":\\\"TJS100700715182\\\",\\\"FlightNumber\\\":\\\"SG-8136\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"c0978-f2273-8d1c2-8e692\\\",\\\"apiTraceId\\\":\\\"4-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"02:00\\\",\\\"ArrivalTime\\\":\\\"04:55\\\",\\\"TravelDate\\\":\\\"2023-10-10T02:00\\\",\\\"LocalFromTime\\\":\\\"2023-10-10 02:00\\\",\\\"FromUTCTime\\\":\\\"2023-10-10T02:00\\\",\\\"LocalToTime\\\":\\\"2023-10-10 04:55\\\",\\\"ToUTCTime\\\":\\\"2023-10-10T04:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":175,\\\"DepartureDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"FlightDuration\\\":\\\"03h 55m\\\",\\\"SourcePlaceSysId\\\":\\\"2262\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,733\\\",\\\"ApiResultIndex\\\":\\\"4-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":6664,\\\"Tax\\\":2638.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1262,\\\"Discount\\\":0,\\\"ServiceFee\\\":875,\\\"ManagementFeeTax\\\":157.5,\\\"AirlineGSTComponent\\\":344,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":9302.5,\\\"PublishedFare\\\":8732.5,\\\"PublishedFareAgent\\\":8732.5,\\\"OfferedFareAgent\\\":8732.5,\\\"OfferedFare\\\":8732.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-4216830804_0BLRDELSG8136_32810106665115\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":8732.5,\\\"CostToAgent\\\":8732.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1233,\\\"TotalBaseFare\\\":3732,\\\"BaseFareCal\\\":3447,\\\"BaseFare\\\":2499,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":130,\\\"MFT\\\":72,\\\"OT\\\":631,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3447,\\\"CostToAgent\\\":3447,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1233,\\\"TotalBaseFare\\\":3732,\\\"BaseFareCal\\\":3447,\\\"BaseFare\\\":2499,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":130,\\\"MFT\\\":72,\\\"OT\\\":631,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3447,\\\"CostToAgent\\\":3447,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":172.5,\\\"TotalBaseFare\\\":1838.5,\\\"BaseFareCal\\\":1838.5,\\\"BaseFare\\\":1666,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":84,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1838.5,\\\"CostToAgent\\\":1838.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}],\\\"newFare\\\":9302.5,\\\"oldFare\\\":9214,\\\"tripbinfo\\\":{\\\"BLR-DEL\\\":{\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":570,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":8732.5,\\\"CostToCustomer\\\":8732.5,\\\"BaseFareCal\\\":8732.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":8732.5,\\\"intOfferedFare\\\":8732.5,\\\"intPublishFare\\\":9302.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":570,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":8732.5,\\\"CostToAgent\\\":8732.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"796\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T04:55\\\",\\\"SegFlightNumber\\\":\\\"SG-8136\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-10T02:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":175,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"02:00\\\",\\\"strArrivalDtTime\\\":\\\"04:55\\\",\\\"FlightDuration\\\":\\\"2h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":524,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":524,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BLR-DEL\\\":{\\\"fr\\\":[],\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BLR\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"2262\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":524,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"3\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"tinku\",\"passenger-lastname-1\":\"singh\",\"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\":\"\",\"paxType-2\":\"2\",\"relation-2\":\"9\",\"CustomerSysId-2\":\"0\",\"passenger-salutation-2\":\"1\",\"passenger-firstname-2\":\"riya\",\"passenger-lastname-2\":\"singh\",\"passenger-nationality-2\":\"IN\",\"passenger-PassportNo-2\":\"\",\"passenger-passporIssue-2\":\"__\\/__\\/____\",\"passenger-PassportExpiry-2\":\"__\\/__\\/____\",\"paxType-3\":\"3\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"passenger-salutation-3\":\"1\",\"passenger-firstname-3\":\"rinki\",\"passenger-lastname-3\":\"singh\",\"passenger-dob-3\":\"01\\/09\\/2022\",\"passenger-nationality-3\":\"IN\",\"passenger-PassportNo-3\":\"\",\"passenger-passporIssue-3\":\"__\\/__\\/____\",\"passenger-PassportExpiry-3\":\"__\\/__\\/____\",\"SelectMeals\":[\"\",\"\"],\"SelectBaggage\":[\"\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rinki\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"apiTraceId\":\"c0978-f2273-8d1c2-8e692\",\"modified\":\"2023-09-28 11:18:29\",\"created\":\"2023-09-28 11:18:29\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":null,\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":null,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS100700715182\",\"amount\":9302.5,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-28T11:20:54.924\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156104\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8136\",\"eT\":\"737\"},\"stops\":0,\"duration\":175,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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 3\"},\"dt\":\"2023-10-10T02:00\",\"at\":\"2023-10-10T04:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"tinku\",\"lN\":\"singh\"},{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"riya\",\"lN\":\"singh\"},{\"pnrDetails\":{\"BLR-DEL\":\"W8MUUC\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"rinki\",\"lN\":\"singh\",\"dob\":\"2022-09-01\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":570,\"NF\":8732.5,\"TF\":9302.5,\"BF\":6664,\"TAF\":2638.5,\"IGST\":157.5},\"afC\":{\"NCM\":{\"OT\":600,\"TDS\":-30},\"TAF\":{\"YQ\":0,\"MFT\":157.5,\"AGST\":344,\"OT\":1262,\"MF\":875}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"863606\",\"TPSysId\":\"863607\",\"TrxId\":\"69946\",\"VersionId\":\"263191\",\"XRefBookingId\":\"DMCS100700715182\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS100700715182\\\",\\\"bookingId_TJ\\\":\\\"TJS100700715182\\\",\\\"FlightNumber\\\":\\\"SG-8136\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"c0978-f2273-8d1c2-8e692\\\",\\\"apiTraceId\\\":\\\"4-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"02:00\\\",\\\"ArrivalTime\\\":\\\"04:55\\\",\\\"TravelDate\\\":\\\"2023-10-10T02:00\\\",\\\"LocalFromTime\\\":\\\"2023-10-10 02:00\\\",\\\"FromUTCTime\\\":\\\"2023-10-10T02:00\\\",\\\"LocalToTime\\\":\\\"2023-10-10 04:55\\\",\\\"ToUTCTime\\\":\\\"2023-10-10T04:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":175,\\\"DepartureDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"FlightDuration\\\":\\\"03h 55m\\\",\\\"SourcePlaceSysId\\\":\\\"2262\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,733\\\",\\\"ApiResultIndex\\\":\\\"4-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":6664,\\\"Tax\\\":2638.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1262,\\\"Discount\\\":0,\\\"ServiceFee\\\":875,\\\"ManagementFeeTax\\\":157.5,\\\"AirlineGSTComponent\\\":344,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":9302.5,\\\"PublishedFare\\\":8732.5,\\\"PublishedFareAgent\\\":8732.5,\\\"OfferedFareAgent\\\":8732.5,\\\"OfferedFare\\\":8732.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-4216830804_0BLRDELSG8136_32810106665115\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":8732.5,\\\"CostToAgent\\\":8732.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1233,\\\"TotalBaseFare\\\":3732,\\\"BaseFareCal\\\":3447,\\\"BaseFare\\\":2499,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":130,\\\"MFT\\\":72,\\\"OT\\\":631,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3447,\\\"CostToAgent\\\":3447,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1233,\\\"TotalBaseFare\\\":3732,\\\"BaseFareCal\\\":3447,\\\"BaseFare\\\":2499,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":130,\\\"MFT\\\":72,\\\"OT\\\":631,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3447,\\\"CostToAgent\\\":3447,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":172.5,\\\"TotalBaseFare\\\":1838.5,\\\"BaseFareCal\\\":1838.5,\\\"BaseFare\\\":1666,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":84,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1838.5,\\\"CostToAgent\\\":1838.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}],\\\"newFare\\\":9302.5,\\\"oldFare\\\":9214,\\\"tripbinfo\\\":{\\\"BLR-DEL\\\":{\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":570,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":8732.5,\\\"CostToCustomer\\\":8732.5,\\\"BaseFareCal\\\":8732.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":8732.5,\\\"intOfferedFare\\\":8732.5,\\\"intPublishFare\\\":9302.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":570,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":8732.5,\\\"CostToAgent\\\":8732.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"796\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T04:55\\\",\\\"SegFlightNumber\\\":\\\"SG-8136\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-10T02:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":175,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"02:00\\\",\\\"strArrivalDtTime\\\":\\\"04:55\\\",\\\"FlightDuration\\\":\\\"2h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":524,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":524,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"796\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4216830804_0BLRDELSG8136_61219546258224\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BLR-DEL\\\":{\\\"fr\\\":[],\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BLR\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"2262\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS100700715182\\\",\\\"amount\\\":9302.5,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-09-28T11:20:54.924\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156104\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"8136\\\",\\\"eT\\\":\\\"737\\\"},\\\"stops\\\":0,\\\"duration\\\":175,\\\"da\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"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 3\\\"},\\\"dt\\\":\\\"2023-10-10T02:00\\\",\\\"at\\\":\\\"2023-10-10T04:55\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"rinki\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-09-01\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"NCM\\\":570,\\\"NF\\\":8732.5,\\\"TF\\\":9302.5,\\\"BF\\\":6664,\\\"TAF\\\":2638.5,\\\"IGST\\\":157.5},\\\"afC\\\":{\\\"NCM\\\":{\\\"OT\\\":600,\\\"TDS\\\":-30},\\\"TAF\\\":{\\\"YQ\\\":0,\\\"MFT\\\":157.5,\\\"AGST\\\":344,\\\"OT\\\":1262,\\\"MF\\\":875}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"BLR-DEL\\\":\\\"W8MUUC\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"rinki\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-09-01\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":8732.5,\\\"NetPrice\\\":8732.5,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":8732.5,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Bengaluru (BLR)-Delhi (DEL)\",\"Amount\":6664,\"NetAmount\":8732.5}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS100700715182\",\"bookingId_TJ\":\"TJS100700715182\",\"FlightNumber\":\"SG-8136\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"apiTraceId\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:55\",\"TravelDate\":\"2023-10-10T02:00\",\"LocalFromTime\":\"2023-10-10 02:00\",\"FromUTCTime\":\"2023-10-10T02:00\",\"LocalToTime\":\"2023-10-10 04:55\",\"ToUTCTime\":\"2023-10-10T04:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 55m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,733\",\"ApiResultIndex\":\"4-4216830804_0BLRDELSG8136_61219546258224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":6664,\"Tax\":2638.5,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9302.5,\"PublishedFare\":8732.5,\"PublishedFareAgent\":8732.5,\"OfferedFareAgent\":8732.5,\"OfferedFare\":8732.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4216830804_0BLRDELSG8136_32810106665115\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1233,\"TotalBaseFare\":3732,\"BaseFareCal\":3447,\"BaseFare\":2499,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":130,\"MFT\":72,\"OT\":631,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3447,\"CostToAgent\":3447,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":9302.5,\"oldFare\":9214,\"tripbinfo\":{\"BLR-DEL\":{\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8732.5,\"CostToCustomer\":8732.5,\"BaseFareCal\":8732.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8732.5,\"intOfferedFare\":8732.5,\"intPublishFare\":9302.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":8732.5,\"CostToAgent\":8732.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"796\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T04:55\",\"SegFlightNumber\":\"SG-8136\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T02:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":175,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:55\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGML\",\"Price\":249,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"NVML\",\"Price\":524,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"796\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4216830804_0BLRDELSG8136_61219546258224\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"23\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"24\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rinki\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:18:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"CustomerMemberSysId\":\"25\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SearchTraceId\":\"c0978-f2273-8d1c2-8e692\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Bengaluru (BLR)\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"10\\/10\\/2023\",\"\"],\"source_city\":[\"BLR\"],\"ContSysId\":[\"0\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Bengaluru (BLR)\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-10\"],\"strReturnDate\":\"\",\"sourceCityId\":[2262],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"c0978-f2273-8d1c2-8e692\",\"sourceCityAirportCode\":[\"BLR\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BLR\"],\"to\":[\"DEL\"],\"Fromlabel\":[\"Bengaluru\"],\"Tolabel\":[\"Delhi\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"10\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"10 Oct Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-28 11:15:39\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-09-28 11:19:30'),(356,'e8fc7-d23fa-4d8b0-1b19f','{\"FlightBookingData\":[{\"bookingId\":\"DMCS113400715222\",\"bookingId_TJ\":\"TJS113400715222\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"apiTraceId\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-19T07:45\",\"LocalFromTime\":\"2023-10-19 07:45\",\"FromUTCTime\":\"2023-10-19T07:45\",\"LocalToTime\":\"2023-10-19 10:10\",\"ToUTCTime\":\"2023-10-19T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Thu, 19 Oct\",\"ArrivalDateTxt\":\"Thu, 19 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":6705.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-7218128731_0DELDXBSG11_33890093070259\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6705.5,\"CostToAgent\":6705.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":996.5,\"TotalBaseFare\":1995.5,\"BaseFareCal\":1995.5,\"BaseFare\":999,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":56,\"MFT\":13.5,\"OT\":852,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1995.5,\"CostToAgent\":1995.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":996.5,\"TotalBaseFare\":1995.5,\"BaseFareCal\":1995.5,\"BaseFare\":999,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":56,\"MFT\":13.5,\"OT\":852,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1995.5,\"CostToAgent\":1995.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2714.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":6705.5,\"oldFare\":6440,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":6705.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"384\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-19T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-19T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"384\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-7218128731_0DELDXBSG11_33821337106407\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-DXB\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"106\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1995-09-27\",\"PassportNationality\":\"IN\",\"PassportNo\":\"GFYJ87568JHGS\",\"PassportExpiry\":\"2024-09-09\",\"passporIssue\":\"2022-09-09\",\"CustomerMemberSysId\":\"26\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2015-09-11\",\"PassportNationality\":\"IN\",\"PassportNo\":\"GHFV46783JHEBF\",\"PassportExpiry\":\"2034-10-10\",\"passporIssue\":\"2022-09-07\",\"CustomerMemberSysId\":\"27\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"RIYA\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"PassportNationality\":\"IN\",\"PassportNo\":\"DFHF658HJFGJER\",\"PassportExpiry\":\"2024-09-10\",\"passporIssue\":\"2022-09-03\",\"CustomerMemberSysId\":\"28\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1995-09-27\",\"PassportNation\":\"IN\",\"PassportNo\":\"GFYJ87568JHGS\",\"PassportExpiry\":\"2024-09-09\",\"passporIssue\":\"2022-09-09\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"CustomerMemberSysId\":\"26\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2015-09-11\",\"PassportNation\":\"IN\",\"PassportNo\":\"GHFV46783JHEBF\",\"PassportExpiry\":\"2034-10-10\",\"passporIssue\":\"2022-09-07\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"CustomerMemberSysId\":\"27\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"RIYA\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"PassportNation\":\"IN\",\"PassportNo\":\"DFHF658HJFGJER\",\"PassportExpiry\":\"2024-09-10\",\"passporIssue\":\"2022-09-03\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"CustomerMemberSysId\":\"28\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"26\",\"27\",\"28\"],\"flight_booking_customer\":[[\"99\",\"100\",\"101\"]],\"SearchTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Dubai (DXB)\",\"DEL\"],\"departure_date\":[\"19\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"228\"],\"destination_city\":[\"DXB\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" AE - Dubai Intl Arpt (DXB)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Dubai (DXB)\",\"DEL\"],\"interNationalSearch\":true,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-19\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[8219],\"interNationalSearchArray\":[true],\"FlightTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"DXB\"],\"from\":[\"DEL\"],\"to\":[\"DXB\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Dubai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"19\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"19 Oct Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-28 11:33:25\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Dubai (DXB)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"19\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"228\\\"],\\\"destination_city\\\":[\\\"DXB\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" AE - Dubai Intl Arpt (DXB)\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"1\\\",\\\"infants\\\":\\\"1\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Dubai (DXB)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":true,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-19\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[8219],\\\"interNationalSearchArray\\\":[true],\\\"FlightTraceId\\\":\\\"e8fc7-d23fa-4d8b0-1b19f\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"DXB\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"DXB\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Dubai\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"1\\\",\\\"infant\\\":\\\"1\\\",\\\"departure_dates\\\":[\\\"19\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"19 Oct Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-09-28 11:33:25\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1},\\\"2\\\":{\\\"Title\\\":\\\"Child\\\",\\\"paxType\\\":2,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS113400715222\\\",\\\"bookingId_TJ\\\":\\\"TJS113400715222\\\",\\\"FlightNumber\\\":\\\"SG-11\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"e8fc7-d23fa-4d8b0-1b19f\\\",\\\"apiTraceId\\\":\\\"4-7218128731_0DELDXBSG11_33821337106407\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"07:45\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2023-10-19T07:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-19 07:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-19T07:45\\\",\\\"LocalToTime\\\":\\\"2023-10-19 10:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-19T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":235,\\\"DepartureDateTxt\\\":\\\"Thu, 19 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 19 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"DXB\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"6,706\\\",\\\"ApiResultIndex\\\":\\\"4-7218128731_0DELDXBSG11_33821337106407\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4498,\\\"Tax\\\":2207.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1704,\\\"Discount\\\":0,\\\"ServiceFee\\\":225,\\\"ManagementFeeTax\\\":40.5,\\\"AirlineGSTComponent\\\":238,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":6705.5,\\\"PublishedFare\\\":6705.5,\\\"PublishedFareAgent\\\":6705.5,\\\"OfferedFareAgent\\\":6705.5,\\\"OfferedFare\\\":6705.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-7218128731_0DELDXBSG11_33890093070259\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":6705.5,\\\"CostToAgent\\\":6705.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":996.5,\\\"TotalBaseFare\\\":1995.5,\\\"BaseFareCal\\\":1995.5,\\\"BaseFare\\\":999,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":56,\\\"MFT\\\":13.5,\\\"OT\\\":852,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1995.5,\\\"CostToAgent\\\":1995.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":996.5,\\\"TotalBaseFare\\\":1995.5,\\\"BaseFareCal\\\":1995.5,\\\"BaseFare\\\":999,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":56,\\\"MFT\\\":13.5,\\\"OT\\\":852,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1995.5,\\\"CostToAgent\\\":1995.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":214.5,\\\"TotalBaseFare\\\":2714.5,\\\"BaseFareCal\\\":2714.5,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":126,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2714.5,\\\"CostToAgent\\\":2714.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}],\\\"newFare\\\":6705.5,\\\"oldFare\\\":6440,\\\"tripbinfo\\\":{\\\"DEL-DXB\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":6705.5,\\\"CostToCustomer\\\":6705.5,\\\"BaseFareCal\\\":6705.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":6705.5,\\\"intOfferedFare\\\":6705.5,\\\"intPublishFare\\\":6705.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":6705.5,\\\"CostToAgent\\\":6705.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"384\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Dubai\\\",\\\"destinationCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationAirportCode\\\":\\\"DXB\\\",\\\"destinationArrTime\\\":\\\"2023-10-19T10:10\\\",\\\"SegFlightNumber\\\":\\\"SG-11\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-19T07:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":235,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"07:45\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"3h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":true,\\\"IsPassIssue\\\":true,\\\"IsPassDateOfBirth\\\":true,\\\"isAdobrMandatory\\\":true,\\\"isCdobrMandatory\\\":true,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-7218128731_0DELDXBSG11_33821337106407\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-DXB\\\":{\\\"fr\\\":[],\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-18 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"DXB\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"1\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"384\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"3\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"rahul\",\"passenger-lastname-1\":\"kumar\",\"passenger-dob-1\":\"27\\/09\\/1995\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"GFYJ87568JHGS\",\"passenger-passporIssue-1\":\"09\\/09\\/2022\",\"passenger-PassportExpiry-1\":\"09\\/09\\/2024\",\"passenger-city-name-1\":\"Noida\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"19543\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"paxType-2\":\"2\",\"relation-2\":\"9\",\"CustomerSysId-2\":\"0\",\"passenger-salutation-2\":\"1\",\"passenger-firstname-2\":\"NEHA\",\"passenger-lastname-2\":\"kannojia\",\"passenger-dob-2\":\"11\\/09\\/2015\",\"passenger-nationality-2\":\"IN\",\"passenger-PassportNo-2\":\"GHFV46783JHEBF\",\"passenger-passporIssue-2\":\"07\\/09\\/2022\",\"passenger-PassportExpiry-2\":\"10\\/10\\/2034\",\"paxType-3\":\"3\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"passenger-salutation-3\":\"1\",\"passenger-firstname-3\":\"RIYA\",\"passenger-lastname-3\":\"singh\",\"passenger-dob-3\":\"01\\/09\\/2022\",\"passenger-nationality-3\":\"IN\",\"passenger-PassportNo-3\":\"DFHF658HJFGJER\",\"passenger-passporIssue-3\":\"03\\/09\\/2022\",\"passenger-PassportExpiry-3\":\"10\\/09\\/2024\",\"SelectMeals\":[\"\",\"\"],\"SelectBaggage\":[\"\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1995-09-27\",\"PassportNation\":\"IN\",\"PassportNo\":\"GFYJ87568JHGS\",\"PassportExpiry\":\"2024-09-09\",\"passporIssue\":\"2022-09-09\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"NEHA\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2015-09-11\",\"PassportNation\":\"IN\",\"PassportNo\":\"GHFV46783JHEBF\",\"PassportExpiry\":\"2034-10-10\",\"passporIssue\":\"2022-09-07\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"RIYA\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 11:41:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"PassportNation\":\"IN\",\"PassportNo\":\"DFHF658HJFGJER\",\"PassportExpiry\":\"2024-09-10\",\"passporIssue\":\"2022-09-03\",\"apiTraceId\":\"e8fc7-d23fa-4d8b0-1b19f\",\"modified\":\"2023-09-28 11:41:23\",\"created\":\"2023-09-28 11:41:23\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":null,\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":null,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0}','2023-09-28 11:41:37'),(357,'5','{\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"20000\",\"RefrenceNo\":\"\",\"CreditDate\":\"28\\/09\\/2023\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2023-09-28 11:42:23'),(359,'84303-73ab6-9f3b9-ce7a5','{\"FlightBookingData\":[{\"bookingId\":\"DMCS119200715253\",\"bookingId_TJ\":\"TJS119200715253\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"84303-73ab6-9f3b9-ce7a5\",\"apiTraceId\":\"4-8151432464_0DELDXBSG11_34535364497044\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-10T07:45\",\"LocalFromTime\":\"2023-10-10 07:45\",\"FromUTCTime\":\"2023-10-10T07:45\",\"LocalToTime\":\"2023-10-10 10:10\",\"ToUTCTime\":\"2023-10-10T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"1,996\",\"ApiResultIndex\":\"4-8151432464_0DELDXBSG11_34535364497044\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":999,\"Tax\":996.5,\"YQTax\":0,\"OtherCharges\":852,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.5,\"AirlineGSTComponent\":56,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":1995.5,\"PublishedFare\":1995.5,\"PublishedFareAgent\":2495.5,\"OfferedFareAgent\":1995.5,\"OfferedFare\":1995.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-8151432464_0DELDXBSG11_63061746542046\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":2495.5,\"CostToAgent\":1995.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":996.5,\"TotalBaseFare\":1995.5,\"BaseFareCal\":1995.5,\"BaseFare\":999,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":56,\"MFT\":13.5,\"OT\":852,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":2495.5,\"CostToAgent\":1995.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":1995.5,\"oldFare\":1907,\"tripbinfo\":{\"DEL-DXB\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":1995.5,\"CostToCustomer\":1995.5,\"BaseFareCal\":1995.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":1995.5,\"intOfferedFare\":1995.5,\"intPublishFare\":1995.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":2495.5,\"CostToAgent\":1995.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"155\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-10T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-10T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-8151432464_0DELDXBSG11_34535364497044\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-DXB\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"apiTraceId\":\"4-8151432464_0DELDXBSG11_34535364497044\",\"SearchTraceId\":\"84303-73ab6-9f3b9-ce7a5\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Dubai (DXB)\",\"DEL\"],\"departure_date\":[\"10\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"228\"],\"destination_city\":[\"DXB\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" AE - Dubai Intl Arpt (DXB)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Dubai (DXB)\",\"DEL\"],\"interNationalSearch\":true,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-10\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[8219],\"interNationalSearchArray\":[true],\"FlightTraceId\":\"84303-73ab6-9f3b9-ce7a5\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"DXB\"],\"from\":[\"DEL\"],\"to\":[\"DXB\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Dubai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"10\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"10 Oct Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-28 11:45:19\",\"IsChangeSearch\":1},\"SSRArr\":{\"Meal\":[[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}]],\"Baggage\":[[{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"155\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}]],\"SeatPreference\":[]},\"FareRuleRequest\":[{\"fareRule\":{\"DEL-DXB\":{\"fr\":[],\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}}]}','2023-09-28 11:46:27'),(365,'a745b-19a97-5982c-4d0ca','{\"FlightBookingData\":[{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"IX-1214\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2023-10-05T00:40\",\"LocalFromTime\":\"2023-10-05 00:40\",\"FromUTCTime\":\"2023-10-05T00:40\",\"LocalToTime\":\"2023-10-05 08:00\",\"ToUTCTime\":\"2023-10-05T08:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":440,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"07h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,986\",\"ApiResultIndex\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":12924,\"Tax\":4917,\"YQTax\":0,\"OtherCharges\":2889,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":612,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17841,\"PublishedFare\":16986,\"PublishedFareAgent\":16986,\"OfferedFareAgent\":16986,\"OfferedFare\":16986,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3278,\"TotalBaseFare\":10894,\"BaseFareCal\":10324,\"BaseFare\":7616,\"CommissionEarned\":570,\"TDS\":0,\"MF\":800,\"YQ\":0,\"AGST\":408,\"MFT\":144,\"OT\":1926,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10324,\"CostToAgent\":10324,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1639,\"TotalBaseFare\":5447,\"BaseFareCal\":5162,\"BaseFare\":3808,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":204,\"MFT\":72,\"OT\":963,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5162,\"CostToAgent\":5162,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":34956,\"oldFare\":36456,\"tripbinfo\":{\"DEL-COK\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"COK-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":855,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":16986,\"CostToCustomer\":16986,\"BaseFareCal\":16986,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":16986,\"intOfferedFare\":16986,\"intPublishFare\":17841,\"TripjackMarkup\":0,\"TripjackCommission\":855,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"16\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-10-05T03:10\",\"SegFlightNumber\":\"IX-1214\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-05T00:40\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":150,\"GroundTime\":230,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"17\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-05T08:00\",\"SegFlightNumber\":\"IX-763\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-10-05T07:00\",\"TripIndicator\":2,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":60,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAF\",\"Price\":0,\"Weight\":\"+ 25 Kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAD\",\"Price\":0,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAC\",\"Price\":0,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAB\",\"Price\":0,\"Weight\":\"+ 5 kg Xcess Baggage\"}],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"G8-407\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:40\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-10T15:40\",\"LocalFromTime\":\"2023-10-10 15:40\",\"FromUTCTime\":\"2023-10-10T15:40\",\"LocalToTime\":\"2023-10-10 23:45\",\"ToUTCTime\":\"2023-10-10T23:45\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":485,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"08h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"34,101\",\"ApiResultIndex\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":13500,\"Tax\":3615,\"YQTax\":0,\"OtherCharges\":2985,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":630,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17115,\"PublishedFare\":17115,\"PublishedFareAgent\":17115,\"OfferedFareAgent\":17115,\"OfferedFare\":17115,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2410,\"TotalBaseFare\":10410,\"BaseFareCal\":10410,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":420,\"MFT\":0,\"OT\":1990,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10410,\"CostToAgent\":10410,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1205,\"TotalBaseFare\":5205,\"BaseFareCal\":5205,\"BaseFare\":4000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":210,\"MFT\":0,\"OT\":995,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5205,\"CostToAgent\":5205,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-VNS\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"VNS-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":17115,\"CostToCustomer\":17115,\"BaseFareCal\":17115,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":17115,\"intOfferedFare\":17115,\"intPublishFare\":17115,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"491\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-10-10T18:05\",\"SegFlightNumber\":\"G8-407\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T15:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":250,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":true},{\"segmentid\":\"492\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T23:45\",\"SegFlightNumber\":\"G8-183\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-10-10T22:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"107\",\"108\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"sumit\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"inidhi\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"31\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"CustomerMemberSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"sumit\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"CustomerMemberSysId\":\"29\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"CustomerMemberSysId\":\"30\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"inidhi\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"CustomerMemberSysId\":\"31\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"CustomerMemberSysId\":\"32\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"29\",\"30\",\"31\",\"32\"],\"flight_booking_customer\":[[\"102\",\"103\",\"104\",\"105\"],[\"106\",\"107\",\"108\",\"109\"]],\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"05\\/10\\/2023\",\"\"],\"return_date\":[\"10\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\"\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-05\"],\"strReturnDate\":[\"2023-10-10\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"a745b-19a97-5982c-4d0ca\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"05\\/10\\/2023\",\"\"],\"return_dates\":[\"10\\/10\\/2023\"],\"PreferredAirline\":[],\"DepatureDateMobile\":[\"05 Oct Thu\"],\"ReturnDateMobile\":[\"10 Oct Tue\"],\"SearchTime\":\"2023-09-28 13:08:31\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":{\"16\":{\"1\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},\"2\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},\"3\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"}}},\"SelectedMealSessionNew\":{\"16\":{\"1\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"},\"2\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"},\"3\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}}},\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"a745b-19a97-5982c-4d0ca\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"2\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"05\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_date\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"0\\\"],\\\"destination_city\\\":[\\\"BLR\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"2\\\",\\\"childs\\\":\\\"1\\\",\\\"infants\\\":\\\"1\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-05\\\"],\\\"strReturnDate\\\":[\\\"2023-10-10\\\"],\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[2262],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"a745b-19a97-5982c-4d0ca\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BLR\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BLR\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Bengaluru\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"2\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"1\\\",\\\"infant\\\":\\\"1\\\",\\\"departure_dates\\\":[\\\"05\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\"],\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"05 Oct Thu\\\"],\\\"ReturnDateMobile\\\":[\\\"10 Oct Tue\\\"],\\\"SearchTime\\\":\\\"2023-09-28 13:08:31\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1},\\\"2\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":2},\\\"3\\\":{\\\"Title\\\":\\\"Child\\\",\\\"paxType\\\":2,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS108900715456\\\",\\\"bookingId_TJ\\\":\\\"TJS108900715456\\\",\\\"FlightNumber\\\":\\\"IX-1214\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a745b-19a97-5982c-4d0ca\\\",\\\"apiTraceId\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"AirlineSysId\\\":\\\"82\\\",\\\"DepartureTime\\\":\\\"00:40\\\",\\\"ArrivalTime\\\":\\\"08:00\\\",\\\"TravelDate\\\":\\\"2023-10-05T00:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-05 00:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-05T00:40\\\",\\\"LocalToTime\\\":\\\"2023-10-05 08:00\\\",\\\"ToUTCTime\\\":\\\"2023-10-05T08:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"BT\\\",\\\"LAYOVERCity\\\":\\\"Kochi\\\",\\\"GroundTime\\\":230,\\\"LAYOVERDuration\\\":\\\"3h 50m\\\",\\\"FlyingMinutes\\\":440,\\\"DepartureDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"FlightDuration\\\":\\\"07h 20m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BLR\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"TotalFlightMembers\\\":4,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"16,986\\\",\\\"ApiResultIndex\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":12924,\\\"Tax\\\":4917,\\\"YQTax\\\":0,\\\"OtherCharges\\\":2889,\\\"Discount\\\":0,\\\"ServiceFee\\\":1200,\\\"ManagementFeeTax\\\":216,\\\"AirlineGSTComponent\\\":612,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":17841,\\\"PublishedFare\\\":16986,\\\"PublishedFareAgent\\\":16986,\\\"OfferedFareAgent\\\":16986,\\\"OfferedFare\\\":16986,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PROMO\\\",\\\"fareIdentifierSP\\\":\\\"PROMO\\\",\\\"SeatAvailable\\\":9,\\\"classOfBooking\\\":\\\"BT\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":855,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":16986,\\\"CostToAgent\\\":16986,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":3278,\\\"TotalBaseFare\\\":10894,\\\"BaseFareCal\\\":10324,\\\"BaseFare\\\":7616,\\\"CommissionEarned\\\":570,\\\"TDS\\\":0,\\\"MF\\\":800,\\\"YQ\\\":0,\\\"AGST\\\":408,\\\"MFT\\\":144,\\\"OT\\\":1926,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":10324,\\\"CostToAgent\\\":10324,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1639,\\\"TotalBaseFare\\\":5447,\\\"BaseFareCal\\\":5162,\\\"BaseFare\\\":3808,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":204,\\\"MFT\\\":72,\\\"OT\\\":963,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5162,\\\"CostToAgent\\\":5162,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":0,\\\"TotalBaseFare\\\":1500,\\\"BaseFareCal\\\":1500,\\\"BaseFare\\\":1500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":0,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1500,\\\"CostToAgent\\\":1500,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":[]}],\\\"newFare\\\":34956,\\\"oldFare\\\":36456,\\\"tripbinfo\\\":{\\\"DEL-COK\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}},\\\"COK-BLR\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":855,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":16986,\\\"CostToCustomer\\\":16986,\\\"BaseFareCal\\\":16986,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":16986,\\\"intOfferedFare\\\":16986,\\\"intPublishFare\\\":17841,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":855,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":855,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":16986,\\\"CostToAgent\\\":16986,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"16\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Cochin Internation Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Kochi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"COK\\\",\\\"destinationArrTime\\\":\\\"2023-10-05T03:10\\\",\\\"SegFlightNumber\\\":\\\"IX-1214\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-05T00:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":150,\\\"GroundTime\\\":230,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"00:40\\\",\\\"strArrivalDtTime\\\":\\\"03:10\\\",\\\"FlightDuration\\\":\\\"2h 30m\\\",\\\"LAYOVERDuration\\\":\\\"3h 50m\\\",\\\"LAYOVERCity\\\":\\\"Kochi\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"17\\\",\\\"originAirportName\\\":\\\"Cochin Internation Arpt\\\",\\\"destinationAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"originCityName\\\":\\\"Kochi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Bengaluru\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BLR\\\",\\\"destinationArrTime\\\":\\\"2023-10-05T08:00\\\",\\\"SegFlightNumber\\\":\\\"IX-763\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"COK\\\",\\\"originDepTime\\\":\\\"2023-10-05T07:00\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":60,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"07:00\\\",\\\"strArrivalDtTime\\\":\\\"08:00\\\",\\\"FlightDuration\\\":\\\"1h 0m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":{\\\"fr\\\":{\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":1100,\\\"policyInfo\\\":\\\"+ Difference in Fare + Taxes\\\",\\\"fcs\\\":{\\\"ARF\\\":1100,\\\"ARFT\\\":55}}}}},\\\"BLR-DEL\\\":{\\\"fr\\\":{\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"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)\\\",\\\"fcs\\\":{\\\"ACF\\\":3500,\\\"ACFT\\\":175}}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"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}}}},\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-04 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":4,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},{\\\"bookingId\\\":\\\"DMCS108900715456\\\",\\\"bookingId_TJ\\\":\\\"TJS108900715456\\\",\\\"FlightNumber\\\":\\\"G8-407\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a745b-19a97-5982c-4d0ca\\\",\\\"apiTraceId\\\":\\\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"AirlineSysId\\\":\\\"240\\\",\\\"DepartureTime\\\":\\\"15:40\\\",\\\"ArrivalTime\\\":\\\"23:45\\\",\\\"TravelDate\\\":\\\"2023-10-10T15:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-10 15:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-10T15:40\\\",\\\"LocalToTime\\\":\\\"2023-10-10 23:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-10T23:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"GS\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"GroundTime\\\":250,\\\"LAYOVERDuration\\\":\\\"4h 10m\\\",\\\"FlyingMinutes\\\":485,\\\"DepartureDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"FlightDuration\\\":\\\"08h 05m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"TotalFlightMembers\\\":4,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"34,101\\\",\\\"ApiResultIndex\\\":\\\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":13500,\\\"Tax\\\":3615,\\\"YQTax\\\":0,\\\"OtherCharges\\\":2985,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":630,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":17115,\\\"PublishedFare\\\":17115,\\\"PublishedFareAgent\\\":17115,\\\"OfferedFareAgent\\\":17115,\\\"OfferedFare\\\":17115,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":6,\\\"classOfBooking\\\":\\\"GS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":17115,\\\"CostToAgent\\\":17115,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":2410,\\\"TotalBaseFare\\\":10410,\\\"BaseFareCal\\\":10410,\\\"BaseFare\\\":8000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":420,\\\"MFT\\\":0,\\\"OT\\\":1990,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":10410,\\\"CostToAgent\\\":10410,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1205,\\\"TotalBaseFare\\\":5205,\\\"BaseFareCal\\\":5205,\\\"BaseFare\\\":4000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":210,\\\"MFT\\\":0,\\\"OT\\\":995,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5205,\\\"CostToAgent\\\":5205,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":0,\\\"TotalBaseFare\\\":1500,\\\"BaseFareCal\\\":1500,\\\"BaseFare\\\":1500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":0,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1500,\\\"CostToAgent\\\":1500,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"BLR-VNS\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}},\\\"VNS-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":17115,\\\"CostToCustomer\\\":17115,\\\"BaseFareCal\\\":17115,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":17115,\\\"intOfferedFare\\\":17115,\\\"intPublishFare\\\":17115,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":17115,\\\"CostToAgent\\\":17115,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"491\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Varanasi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"VNS\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T18:05\\\",\\\"SegFlightNumber\\\":\\\"G8-407\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-10T15:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":145,\\\"GroundTime\\\":250,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"15:40\\\",\\\"strArrivalDtTime\\\":\\\"18:05\\\",\\\"FlightDuration\\\":\\\"2h 25m\\\",\\\"LAYOVERDuration\\\":\\\"4h 10m\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true},{\\\"segmentid\\\":\\\"492\\\",\\\"originAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Varanasi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T23:45\\\",\\\"SegFlightNumber\\\":\\\"G8-183\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"VNS\\\",\\\"originDepTime\\\":\\\"2023-10-10T22:15\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":90,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"22:15\\\",\\\"strArrivalDtTime\\\":\\\"23:45\\\",\\\"FlightDuration\\\":\\\"1h 30m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"30KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"5KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":{\\\"fr\\\":{\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":1100,\\\"policyInfo\\\":\\\"+ Difference in Fare + Taxes\\\",\\\"fcs\\\":{\\\"ARF\\\":1100,\\\"ARFT\\\":55}}}}},\\\"BLR-DEL\\\":{\\\"fr\\\":{\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"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)\\\",\\\"fcs\\\":{\\\"ACF\\\":3500,\\\"ACFT\\\":175}}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"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}}}},\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-04 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":4,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"{\\\"16\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"3\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"}}}\",\"SelectedMealSessionNew\":\"{\\\"16\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"},\\\"3\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}}}\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"4\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"sumit\",\"passenger-lastname-1\":\"singh\",\"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\":\"\",\"paxType-2\":\"1\",\"relation-2\":\"0\",\"CustomerSysId-2\":\"0\",\"passenger-salutation-2\":\"1\",\"passenger-firstname-2\":\"rahul\",\"passenger-lastname-2\":\"kumar\",\"passenger-nationality-2\":\"IN\",\"passenger-PassportNo-2\":\"\",\"passenger-passporIssue-2\":\"__\\/__\\/____\",\"passenger-PassportExpiry-2\":\"__\\/__\\/____\",\"paxType-3\":\"2\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"passenger-salutation-3\":\"1\",\"passenger-firstname-3\":\"inidhi\",\"passenger-lastname-3\":\"singh\",\"passenger-nationality-3\":\"IN\",\"passenger-PassportNo-3\":\"\",\"passenger-passporIssue-3\":\"__\\/__\\/____\",\"passenger-PassportExpiry-3\":\"__\\/__\\/____\",\"paxType-4\":\"3\",\"relation-4\":\"9\",\"CustomerSysId-4\":\"0\",\"passenger-salutation-4\":\"1\",\"passenger-firstname-4\":\"niya\",\"passenger-lastname-4\":\"kannojia\",\"passenger-dob-4\":\"01\\/09\\/2022\",\"passenger-nationality-4\":\"IN\",\"passenger-PassportNo-4\":\"\",\"passenger-passporIssue-4\":\"__\\/__\\/____\",\"passenger-PassportExpiry-4\":\"__\\/__\\/____\",\"SelectMeals\":[\"0\",\"0\",\"0\",\"\",\"\",\"\",\"\",\"\",\"\"],\"SelectBaggage\":[\"0\",\"0\",\"1\",\"0_0_0\",\"0_0_0\",\"0_0_0\",\"\",\"\",\"\",\"0_0_0\",\"0_0_0\",\"0_0_0\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"sumit\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"sumit\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"inidhi\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"apiTraceId\":\"a745b-19a97-5982c-4d0ca\",\"modified\":\"2023-09-28 13:21:24\",\"created\":\"2023-09-28 13:21:24\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"7566821253\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"3\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS108900715456\",\"amount\":45756,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-28T13:24:05.325\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156168\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"1214\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":150,\"cT\":230,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-05T00:40\",\"at\":\"2023-10-05T03:10\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"156169\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"763\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":60,\"da\":{\"code\":\"COK\",\"name\":\"Cochin Internation Arpt\",\"cityCode\":\"COK\",\"city\":\"Kochi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-05T07:00\",\"at\":\"2023-10-05T08:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"156170\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"407\",\"eT\":\"32N\"},\"stops\":0,\"duration\":145,\"cT\":250,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-10T15:40\",\"at\":\"2023-10-10T18:05\",\"iand\":false,\"isRs\":true,\"sN\":0},{\"id\":\"156171\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"183\",\"eT\":\"32N\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2023-10-10T22:15\",\"at\":\"2023-10-10T23:45\",\"iand\":false,\"isRs\":true,\"sN\":1}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"sumit\",\"lN\":\"singh\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAB\",\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"kumar\"},{\"ssrBaggageInfos\":{\"DEL-COK\":{\"code\":\"PBAC\",\"amount\":4500,\"desc\":\"+ 10 kg Xcess Baggage\"},\"COK-BLR\":{\"code\":\"PBAC\",\"desc\":\"+ 10 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-COK\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"inidhi\",\"lN\":\"singh\"},{\"pnrDetails\":{\"DEL-COK\":\"HTG5KY\",\"COK-BLR\":\"HTG5KY\",\"BLR-VNS\":\"X41GXY\",\"VNS-DEL\":\"X41GXY\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"niya\",\"lN\":\"kannojia\",\"dob\":\"2022-09-01\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"IGST\":216,\"BF\":26424,\"NCM\":855,\"NF\":44901,\"TF\":45756,\"TAF\":8532,\"SSRP\":10800},\"afC\":{\"NCM\":{\"TDS\":-45,\"OT\":900},\"TAF\":{\"MF\":1200,\"OT\":5874,\"YQ\":0,\"MFT\":216,\"AGST\":1242},\"SSRP\":{\"OT\":10800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"863919\",\"TPSysId\":\"863920\",\"TrxId\":\"69964\",\"VersionId\":\"263282\",\"XRefBookingId\":\"DMCS108900715456\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS108900715456\\\",\\\"bookingId_TJ\\\":\\\"TJS108900715456\\\",\\\"FlightNumber\\\":\\\"IX-1214\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a745b-19a97-5982c-4d0ca\\\",\\\"apiTraceId\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"AirlineSysId\\\":\\\"82\\\",\\\"DepartureTime\\\":\\\"00:40\\\",\\\"ArrivalTime\\\":\\\"08:00\\\",\\\"TravelDate\\\":\\\"2023-10-05T00:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-05 00:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-05T00:40\\\",\\\"LocalToTime\\\":\\\"2023-10-05 08:00\\\",\\\"ToUTCTime\\\":\\\"2023-10-05T08:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"BT\\\",\\\"LAYOVERCity\\\":\\\"Kochi\\\",\\\"GroundTime\\\":230,\\\"LAYOVERDuration\\\":\\\"3h 50m\\\",\\\"FlyingMinutes\\\":440,\\\"DepartureDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 05 Oct\\\",\\\"FlightDuration\\\":\\\"07h 20m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BLR\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"TotalFlightMembers\\\":4,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"16,986\\\",\\\"ApiResultIndex\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":12924,\\\"Tax\\\":4917,\\\"YQTax\\\":0,\\\"OtherCharges\\\":2889,\\\"Discount\\\":0,\\\"ServiceFee\\\":1200,\\\"ManagementFeeTax\\\":216,\\\"AirlineGSTComponent\\\":612,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":17841,\\\"PublishedFare\\\":16986,\\\"PublishedFareAgent\\\":16986,\\\"OfferedFareAgent\\\":16986,\\\"OfferedFare\\\":16986,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PROMO\\\",\\\"fareIdentifierSP\\\":\\\"PROMO\\\",\\\"SeatAvailable\\\":9,\\\"classOfBooking\\\":\\\"BT\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":855,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":16986,\\\"CostToAgent\\\":16986,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":3278,\\\"TotalBaseFare\\\":10894,\\\"BaseFareCal\\\":10324,\\\"BaseFare\\\":7616,\\\"CommissionEarned\\\":570,\\\"TDS\\\":0,\\\"MF\\\":800,\\\"YQ\\\":0,\\\"AGST\\\":408,\\\"MFT\\\":144,\\\"OT\\\":1926,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":10324,\\\"CostToAgent\\\":10324,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1639,\\\"TotalBaseFare\\\":5447,\\\"BaseFareCal\\\":5162,\\\"BaseFare\\\":3808,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":204,\\\"MFT\\\":72,\\\"OT\\\":963,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5162,\\\"CostToAgent\\\":5162,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":0,\\\"TotalBaseFare\\\":1500,\\\"BaseFareCal\\\":1500,\\\"BaseFare\\\":1500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":0,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1500,\\\"CostToAgent\\\":1500,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":[]}],\\\"newFare\\\":34956,\\\"oldFare\\\":36456,\\\"tripbinfo\\\":{\\\"DEL-COK\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}},\\\"COK-BLR\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":855,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":16986,\\\"CostToCustomer\\\":16986,\\\"BaseFareCal\\\":16986,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":16986,\\\"intOfferedFare\\\":16986,\\\"intPublishFare\\\":17841,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":855,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":855,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":16986,\\\"CostToAgent\\\":16986,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"16\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Cochin Internation Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Kochi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"COK\\\",\\\"destinationArrTime\\\":\\\"2023-10-05T03:10\\\",\\\"SegFlightNumber\\\":\\\"IX-1214\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-05T00:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":150,\\\"GroundTime\\\":230,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"00:40\\\",\\\"strArrivalDtTime\\\":\\\"03:10\\\",\\\"FlightDuration\\\":\\\"2h 30m\\\",\\\"LAYOVERDuration\\\":\\\"3h 50m\\\",\\\"LAYOVERCity\\\":\\\"Kochi\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"17\\\",\\\"originAirportName\\\":\\\"Cochin Internation Arpt\\\",\\\"destinationAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"originCityName\\\":\\\"Kochi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Bengaluru\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BLR\\\",\\\"destinationArrTime\\\":\\\"2023-10-05T08:00\\\",\\\"SegFlightNumber\\\":\\\"IX-763\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"COK\\\",\\\"originDepTime\\\":\\\"2023-10-05T07:00\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":60,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"07:00\\\",\\\"strArrivalDtTime\\\":\\\"08:00\\\",\\\"FlightDuration\\\":\\\"1h 0m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"17\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"16\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":{\\\"fr\\\":{\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":1100,\\\"policyInfo\\\":\\\"+ Difference in Fare + Taxes\\\",\\\"fcs\\\":{\\\"ARF\\\":1100,\\\"ARFT\\\":55}}}}},\\\"BLR-DEL\\\":{\\\"fr\\\":{\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"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)\\\",\\\"fcs\\\":{\\\"ACF\\\":3500,\\\"ACFT\\\":175}}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"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}}}},\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-04 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":4,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS108900715456\\\",\\\"amount\\\":45756,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-09-28T13:24:05.325\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156168\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"IX\\\",\\\"name\\\":\\\"AI Express\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"1214\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":150,\\\"cT\\\":230,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 3\\\"},\\\"aa\\\":{\\\"code\\\":\\\"COK\\\",\\\"name\\\":\\\"Cochin Internation Arpt\\\",\\\"cityCode\\\":\\\"COK\\\",\\\"city\\\":\\\"Kochi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"dt\\\":\\\"2023-10-05T00:40\\\",\\\"at\\\":\\\"2023-10-05T03:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0},{\\\"id\\\":\\\"156169\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"IX\\\",\\\"name\\\":\\\"AI Express\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"763\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":60,\\\"da\\\":{\\\"code\\\":\\\"COK\\\",\\\"name\\\":\\\"Cochin Internation Arpt\\\",\\\"cityCode\\\":\\\"COK\\\",\\\"city\\\":\\\"Kochi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"aa\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-05T07:00\\\",\\\"at\\\":\\\"2023-10-05T08:00\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":1}]},{\\\"sI\\\":[{\\\"id\\\":\\\"156170\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"407\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":145,\\\"cT\\\":250,\\\"da\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"aa\\\":{\\\"code\\\":\\\"VNS\\\",\\\"name\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"cityCode\\\":\\\"VNS\\\",\\\"city\\\":\\\"Varanasi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-10T15:40\\\",\\\"at\\\":\\\"2023-10-10T18:05\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0},{\\\"id\\\":\\\"156171\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"183\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":90,\\\"da\\\":{\\\"code\\\":\\\"VNS\\\",\\\"name\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"cityCode\\\":\\\"VNS\\\",\\\"city\\\":\\\"Varanasi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"aa\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"dt\\\":\\\"2023-10-10T22:15\\\",\\\"at\\\":\\\"2023-10-10T23:45\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":1}]}],\\\"travellerInfos\\\":[{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"sumit\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"inidhi\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"kannojia\\\",\\\"dob\\\":\\\"2022-09-01\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"IGST\\\":216,\\\"BF\\\":26424,\\\"NCM\\\":855,\\\"NF\\\":44901,\\\"TF\\\":45756,\\\"TAF\\\":8532,\\\"SSRP\\\":10800},\\\"afC\\\":{\\\"NCM\\\":{\\\"TDS\\\":-45,\\\"OT\\\":900},\\\"TAF\\\":{\\\"MF\\\":1200,\\\"OT\\\":5874,\\\"YQ\\\":0,\\\"MFT\\\":216,\\\"AGST\\\":1242},\\\"SSRP\\\":{\\\"OT\\\":10800}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"sumit\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"inidhi\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"kannojia\\\",\\\"dob\\\":\\\"2022-09-01\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":16986,\\\"NetPrice\\\":16986,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":16986,\\\"MealFare\\\":1800,\\\"BaggFare\\\":9000,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Bengaluru (BLR)-Delhi (DEL)\",\"Amount\":23724,\"NetAmount\":27786},{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"863919\",\"TPSysId\":\"863920\",\"TrxId\":\"69964\",\"VersionId\":\"263283\",\"XRefBookingId\":\"DMCS108900715456\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS108900715456\\\",\\\"bookingId_TJ\\\":\\\"TJS108900715456\\\",\\\"FlightNumber\\\":\\\"G8-407\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a745b-19a97-5982c-4d0ca\\\",\\\"apiTraceId\\\":\\\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"AirlineSysId\\\":\\\"240\\\",\\\"DepartureTime\\\":\\\"15:40\\\",\\\"ArrivalTime\\\":\\\"23:45\\\",\\\"TravelDate\\\":\\\"2023-10-10T15:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-10 15:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-10T15:40\\\",\\\"LocalToTime\\\":\\\"2023-10-10 23:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-10T23:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"GS\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"GroundTime\\\":250,\\\"LAYOVERDuration\\\":\\\"4h 10m\\\",\\\"FlyingMinutes\\\":485,\\\"DepartureDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"FlightDuration\\\":\\\"08h 05m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"TotalFlightMembers\\\":4,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"34,101\\\",\\\"ApiResultIndex\\\":\\\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":13500,\\\"Tax\\\":3615,\\\"YQTax\\\":0,\\\"OtherCharges\\\":2985,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":630,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":17115,\\\"PublishedFare\\\":17115,\\\"PublishedFareAgent\\\":17115,\\\"OfferedFareAgent\\\":17115,\\\"OfferedFare\\\":17115,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":6,\\\"classOfBooking\\\":\\\"GS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":17115,\\\"CostToAgent\\\":17115,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":2410,\\\"TotalBaseFare\\\":10410,\\\"BaseFareCal\\\":10410,\\\"BaseFare\\\":8000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":420,\\\"MFT\\\":0,\\\"OT\\\":1990,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":10410,\\\"CostToAgent\\\":10410,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1205,\\\"TotalBaseFare\\\":5205,\\\"BaseFareCal\\\":5205,\\\"BaseFare\\\":4000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":210,\\\"MFT\\\":0,\\\"OT\\\":995,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5205,\\\"CostToAgent\\\":5205,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":0,\\\"TotalBaseFare\\\":1500,\\\"BaseFareCal\\\":1500,\\\"BaseFare\\\":1500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":0,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1500,\\\"CostToAgent\\\":1500,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"BLR-VNS\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}},\\\"VNS-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"INFANT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":17115,\\\"CostToCustomer\\\":17115,\\\"BaseFareCal\\\":17115,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":17115,\\\"intOfferedFare\\\":17115,\\\"intPublishFare\\\":17115,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":17115,\\\"CostToAgent\\\":17115,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"491\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Varanasi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"VNS\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T18:05\\\",\\\"SegFlightNumber\\\":\\\"G8-407\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-10T15:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":145,\\\"GroundTime\\\":250,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"15:40\\\",\\\"strArrivalDtTime\\\":\\\"18:05\\\",\\\"FlightDuration\\\":\\\"2h 25m\\\",\\\"LAYOVERDuration\\\":\\\"4h 10m\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true},{\\\"segmentid\\\":\\\"492\\\",\\\"originAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Varanasi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T23:45\\\",\\\"SegFlightNumber\\\":\\\"G8-183\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"VNS\\\",\\\"originDepTime\\\":\\\"2023-10-10T22:15\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":90,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"22:15\\\",\\\"strArrivalDtTime\\\":\\\"23:45\\\",\\\"FlightDuration\\\":\\\"1h 30m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"30KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"5KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"492\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"491\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":{\\\"fr\\\":{\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":1100,\\\"policyInfo\\\":\\\"+ Difference in Fare + Taxes\\\",\\\"fcs\\\":{\\\"ARF\\\":1100,\\\"ARFT\\\":55}}}}},\\\"BLR-DEL\\\":{\\\"fr\\\":{\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"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)\\\",\\\"fcs\\\":{\\\"ACF\\\":3500,\\\"ACFT\\\":175}}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"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}}}},\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-04 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":4,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS108900715456\\\",\\\"amount\\\":45756,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-09-28T13:24:05.325\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156168\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"IX\\\",\\\"name\\\":\\\"AI Express\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"1214\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":150,\\\"cT\\\":230,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 3\\\"},\\\"aa\\\":{\\\"code\\\":\\\"COK\\\",\\\"name\\\":\\\"Cochin Internation Arpt\\\",\\\"cityCode\\\":\\\"COK\\\",\\\"city\\\":\\\"Kochi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"dt\\\":\\\"2023-10-05T00:40\\\",\\\"at\\\":\\\"2023-10-05T03:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0},{\\\"id\\\":\\\"156169\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"IX\\\",\\\"name\\\":\\\"AI Express\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"763\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":60,\\\"da\\\":{\\\"code\\\":\\\"COK\\\",\\\"name\\\":\\\"Cochin Internation Arpt\\\",\\\"cityCode\\\":\\\"COK\\\",\\\"city\\\":\\\"Kochi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"aa\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-05T07:00\\\",\\\"at\\\":\\\"2023-10-05T08:00\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":1}]},{\\\"sI\\\":[{\\\"id\\\":\\\"156170\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"407\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":145,\\\"cT\\\":250,\\\"da\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"aa\\\":{\\\"code\\\":\\\"VNS\\\",\\\"name\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"cityCode\\\":\\\"VNS\\\",\\\"city\\\":\\\"Varanasi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-10T15:40\\\",\\\"at\\\":\\\"2023-10-10T18:05\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0},{\\\"id\\\":\\\"156171\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"183\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":90,\\\"da\\\":{\\\"code\\\":\\\"VNS\\\",\\\"name\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"cityCode\\\":\\\"VNS\\\",\\\"city\\\":\\\"Varanasi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"aa\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"dt\\\":\\\"2023-10-10T22:15\\\",\\\"at\\\":\\\"2023-10-10T23:45\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":1}]}],\\\"travellerInfos\\\":[{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"sumit\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"inidhi\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"kannojia\\\",\\\"dob\\\":\\\"2022-09-01\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"IGST\\\":216,\\\"BF\\\":26424,\\\"NCM\\\":855,\\\"NF\\\":44901,\\\"TF\\\":45756,\\\"TAF\\\":8532,\\\"SSRP\\\":10800},\\\"afC\\\":{\\\"NCM\\\":{\\\"TDS\\\":-45,\\\"OT\\\":900},\\\"TAF\\\":{\\\"MF\\\":1200,\\\"OT\\\":5874,\\\"YQ\\\":0,\\\"MFT\\\":216,\\\"AGST\\\":1242},\\\"SSRP\\\":{\\\"OT\\\":10800}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"sumit\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"ssrBaggageInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"},\\\"COK-BLR\\\":{\\\"code\\\":\\\"PBAC\\\",\\\"desc\\\":\\\"+ 10 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-COK\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"inidhi\\\",\\\"lN\\\":\\\"singh\\\"},{\\\"pnrDetails\\\":{\\\"DEL-COK\\\":\\\"HTG5KY\\\",\\\"COK-BLR\\\":\\\"HTG5KY\\\",\\\"BLR-VNS\\\":\\\"X41GXY\\\",\\\"VNS-DEL\\\":\\\"X41GXY\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"kannojia\\\",\\\"dob\\\":\\\"2022-09-01\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":17115,\\\"NetPrice\\\":17115,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":17115,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":1,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Bengaluru (BLR)-Delhi (DEL)\",\"Amount\":13500,\"NetAmount\":17115}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"IX-1214\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"00:40\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2023-10-05T00:40\",\"LocalFromTime\":\"2023-10-05 00:40\",\"FromUTCTime\":\"2023-10-05T00:40\",\"LocalToTime\":\"2023-10-05 08:00\",\"ToUTCTime\":\"2023-10-05T08:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":230,\"LAYOVERDuration\":\"3h 50m\",\"FlyingMinutes\":440,\"DepartureDateTxt\":\"Thu, 05 Oct\",\"ArrivalDateTxt\":\"Thu, 05 Oct\",\"FlightDuration\":\"07h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,986\",\"ApiResultIndex\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":12924,\"Tax\":4917,\"YQTax\":0,\"OtherCharges\":2889,\"Discount\":0,\"ServiceFee\":1200,\"ManagementFeeTax\":216,\"AirlineGSTComponent\":612,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17841,\"PublishedFare\":16986,\"PublishedFareAgent\":16986,\"OfferedFareAgent\":16986,\"OfferedFare\":16986,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_0DELCOKIX1214COKBLRIX763_40218114559242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3278,\"TotalBaseFare\":10894,\"BaseFareCal\":10324,\"BaseFare\":7616,\"CommissionEarned\":570,\"TDS\":0,\"MF\":800,\"YQ\":0,\"AGST\":408,\"MFT\":144,\"OT\":1926,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10324,\"CostToAgent\":10324,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1639,\"TotalBaseFare\":5447,\"BaseFareCal\":5162,\"BaseFare\":3808,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":204,\"MFT\":72,\"OT\":963,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5162,\"CostToAgent\":5162,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":34956,\"oldFare\":36456,\"tripbinfo\":{\"DEL-COK\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"COK-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":855,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":16986,\"CostToCustomer\":16986,\"BaseFareCal\":16986,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":16986,\"intOfferedFare\":16986,\"intPublishFare\":17841,\"TripjackMarkup\":0,\"TripjackCommission\":855,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":855,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":16986,\"CostToAgent\":16986,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"16\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-10-05T03:10\",\"SegFlightNumber\":\"IX-1214\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-05T00:40\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":150,\"GroundTime\":230,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:40\",\"strArrivalDtTime\":\"03:10\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"3h 50m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"17\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-05T08:00\",\"SegFlightNumber\":\"IX-763\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"BT\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2023-10-05T07:00\",\"TripIndicator\":2,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":60,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAF\",\"Price\":0,\"Weight\":\"+ 25 Kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAD\",\"Price\":0,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAC\",\"Price\":0,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"17\",\"Code\":\"PBAB\",\"Price\":0,\"Weight\":\"+ 5 kg Xcess Baggage\"}],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5163421797_1DELCOKIX1214COKBLRIX763_39546586722169\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS108900715456\",\"bookingId_TJ\":\"TJS108900715456\",\"FlightNumber\":\"G8-407\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"apiTraceId\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:40\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-10T15:40\",\"LocalFromTime\":\"2023-10-10 15:40\",\"FromUTCTime\":\"2023-10-10T15:40\",\"LocalToTime\":\"2023-10-10 23:45\",\"ToUTCTime\":\"2023-10-10T23:45\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":485,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"08h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"34,101\",\"ApiResultIndex\":\"1-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":13500,\"Tax\":3615,\"YQTax\":0,\"OtherCharges\":2985,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":630,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17115,\"PublishedFare\":17115,\"PublishedFareAgent\":17115,\"OfferedFareAgent\":17115,\"OfferedFare\":17115,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5163421797_1BLRVNSG8407VNSDELG8183_40218116658167\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2410,\"TotalBaseFare\":10410,\"BaseFareCal\":10410,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":420,\"MFT\":0,\"OT\":1990,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":10410,\"CostToAgent\":10410,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1205,\"TotalBaseFare\":5205,\"BaseFareCal\":5205,\"BaseFare\":4000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":210,\"MFT\":0,\"OT\":995,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5205,\"CostToAgent\":5205,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":0,\"TotalBaseFare\":1500,\"BaseFareCal\":1500,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":0,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1500,\"CostToAgent\":1500,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BLR-VNS\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}},\"VNS-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"INFANT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":17115,\"CostToCustomer\":17115,\"BaseFareCal\":17115,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":17115,\"intOfferedFare\":17115,\"intPublishFare\":17115,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":17115,\"CostToAgent\":17115,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"491\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-10-10T18:05\",\"SegFlightNumber\":\"G8-407\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-10T15:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":250,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":true},{\"segmentid\":\"492\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-10T23:45\",\"SegFlightNumber\":\"G8-183\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2023-10-10T22:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"492\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"491\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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-5163421797_12BLRVNSG8407VNSDELG8183_39545821003929\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1100,\"policyInfo\":\"+ Difference in Fare + Taxes\",\"fcs\":{\"ARF\":1100,\"ARFT\":55}}}}},\"BLR-DEL\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"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)\",\"fcs\":{\"ACF\":3500,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"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}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-04 12:00\",\"localToDateTime\":\"2023-10-09 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"sumit\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"inidhi\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"31\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-28 13:21:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-09-01\",\"CustomerMemberSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":{\"16\":{\"1\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},\"2\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},\"3\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"}}},\"SelectedMealSessionNew\":{\"16\":{\"1\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"},\"2\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"},\"3\":{\"Currency\":\"INR\",\"key\":\"16\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}}},\"selectedSeatSession\":null,\"SearchTraceId\":\"a745b-19a97-5982c-4d0ca\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"05\\/10\\/2023\",\"\"],\"return_date\":[\"10\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\"\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-05\"],\"strReturnDate\":[\"2023-10-10\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"a745b-19a97-5982c-4d0ca\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"05\\/10\\/2023\",\"\"],\"return_dates\":[\"10\\/10\\/2023\"],\"PreferredAirline\":[],\"DepatureDateMobile\":[\"05 Oct Thu\"],\"ReturnDateMobile\":[\"10 Oct Tue\"],\"SearchTime\":\"2023-09-28 13:08:31\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-09-28 13:22:41'),(371,'ff4f7-0204d-78403-d861a','{\"FlightBookingData\":[{\"bookingId\":\"DMCS105600716247\",\"bookingId_TJ\":\"TJS105600716247\",\"FlightNumber\":\"SG-534\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"apiTraceId\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"00:10\",\"TravelDate\":\"2023-09-29T21:30\",\"LocalFromTime\":\"2023-09-29 21:30\",\"FromUTCTime\":\"2023-09-29T21:30\",\"LocalToTime\":\"2023-09-30 00:10\",\"ToUTCTime\":\"2023-09-30T00:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 29 Sep\",\"ArrivalDateTxt\":\"Sat, 30 Sep\",\"FlightDuration\":\"03h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"12,885\",\"ApiResultIndex\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":10836,\"Tax\":2618.5,\"YQTax\":0,\"OtherCharges\":1036,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13454.5,\"PublishedFare\":12884.5,\"PublishedFareAgent\":12884.5,\"OfferedFareAgent\":12884.5,\"OfferedFare\":12884.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-2897338973_0DELBLRSG534_1547737928689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":13454.5,\"oldFare\":13366,\"tripbinfo\":{\"DEL-BLR\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12884.5,\"CostToCustomer\":12884.5,\"BaseFareCal\":12884.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12884.5,\"intOfferedFare\":12884.5,\"intPublishFare\":13454.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"39\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-09-30T00:10\",\"SegFlightNumber\":\"SG-534\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-09-29T21:30\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":160,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"00:10\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"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-2897338973_0DELBLRSG534_1424138439000\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-09-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"109\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"7009078210\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Chinki\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"33\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Ankit\",\"LastName\":\"dhiman\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2023-08-23\",\"CustomerMemberSysId\":\"34\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Chinki\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"ff4f7-0204d-78403-d861a\",\"modified\":\"2023-09-29 11:39:19\",\"created\":\"2023-09-29 11:39:19\",\"CustomerMemberSysId\":\"33\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Ankit\",\"LastName\":\"dhiman\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2023-08-23\",\"apiTraceId\":\"ff4f7-0204d-78403-d861a\",\"modified\":\"2023-09-29 11:39:19\",\"created\":\"2023-09-29 11:39:19\",\"CustomerMemberSysId\":\"34\"}],\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\",\"33\",\"34\"],\"flight_booking_customer\":[[\"110\",\"111\",\"112\"]],\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"29\\/09\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-09-29\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"ff4f7-0204d-78403-d861a\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"29\\/09\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"29 Sep Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-29 11:35:01\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"ff4f7-0204d-78403-d861a\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"29\\\\\\/09\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"0\\\"],\\\"destination_city\\\":[\\\"BLR\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Bengaluru Intl Arpt (BLR)\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"1\\\",\\\"infants\\\":\\\"1\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-09-29\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[2262],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"ff4f7-0204d-78403-d861a\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BLR\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BLR\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Bengaluru\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"1\\\",\\\"infant\\\":\\\"1\\\",\\\"departure_dates\\\":[\\\"29\\\\\\/09\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"29 Sep Fri\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-09-29 11:35:01\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1},\\\"2\\\":{\\\"Title\\\":\\\"Child\\\",\\\"paxType\\\":2,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS105600716247\\\",\\\"bookingId_TJ\\\":\\\"TJS105600716247\\\",\\\"FlightNumber\\\":\\\"SG-534\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ff4f7-0204d-78403-d861a\\\",\\\"apiTraceId\\\":\\\"4-2897338973_0DELBLRSG534_1424138439000\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"21:30\\\",\\\"ArrivalTime\\\":\\\"00:10\\\",\\\"TravelDate\\\":\\\"2023-09-29T21:30\\\",\\\"LocalFromTime\\\":\\\"2023-09-29 21:30\\\",\\\"FromUTCTime\\\":\\\"2023-09-29T21:30\\\",\\\"LocalToTime\\\":\\\"2023-09-30 00:10\\\",\\\"ToUTCTime\\\":\\\"2023-09-30T00:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":160,\\\"DepartureDateTxt\\\":\\\"Fri, 29 Sep\\\",\\\"ArrivalDateTxt\\\":\\\"Sat, 30 Sep\\\",\\\"FlightDuration\\\":\\\"03h 40m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BLR\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"12,885\\\",\\\"ApiResultIndex\\\":\\\"4-2897338973_0DELBLRSG534_1424138439000\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":10836,\\\"Tax\\\":2618.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1036,\\\"Discount\\\":0,\\\"ServiceFee\\\":875,\\\"ManagementFeeTax\\\":157.5,\\\"AirlineGSTComponent\\\":550,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":13454.5,\\\"PublishedFare\\\":12884.5,\\\"PublishedFareAgent\\\":12884.5,\\\"OfferedFareAgent\\\":12884.5,\\\"OfferedFare\\\":12884.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-2897338973_0DELBLRSG534_1547737928689\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":12884.5,\\\"CostToAgent\\\":12884.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1223,\\\"TotalBaseFare\\\":5808,\\\"BaseFareCal\\\":5523,\\\"BaseFare\\\":4585,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":233,\\\"MFT\\\":72,\\\"OT\\\":518,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5523,\\\"CostToAgent\\\":5523,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1223,\\\"TotalBaseFare\\\":5808,\\\"BaseFareCal\\\":5523,\\\"BaseFare\\\":4585,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":233,\\\"MFT\\\":72,\\\"OT\\\":518,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5523,\\\"CostToAgent\\\":5523,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":172.5,\\\"TotalBaseFare\\\":1838.5,\\\"BaseFareCal\\\":1838.5,\\\"BaseFare\\\":1666,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":84,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1838.5,\\\"CostToAgent\\\":1838.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}],\\\"newFare\\\":13454.5,\\\"oldFare\\\":13366,\\\"tripbinfo\\\":{\\\"DEL-BLR\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":570,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":12884.5,\\\"CostToCustomer\\\":12884.5,\\\"BaseFareCal\\\":12884.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":12884.5,\\\"intOfferedFare\\\":12884.5,\\\"intPublishFare\\\":13454.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":570,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":12884.5,\\\"CostToAgent\\\":12884.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"39\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Bengaluru\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BLR\\\",\\\"destinationArrTime\\\":\\\"2023-09-30T00:10\\\",\\\"SegFlightNumber\\\":\\\"SG-534\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-09-29T21:30\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":160,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"21:30\\\",\\\"strArrivalDtTime\\\":\\\"00:10\\\",\\\"FlightDuration\\\":\\\"2h 40m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1D\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"}],\\\"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-2897338973_0DELBLRSG534_1424138439000\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":[]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-09-28 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"7009078210\",\"leadEmail\":\"anuj@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"3\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Anuj\",\"passenger-lastname-1\":\"kumar\",\"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\":\"\",\"paxType-2\":\"2\",\"relation-2\":\"9\",\"CustomerSysId-2\":\"0\",\"passenger-salutation-2\":\"2\",\"passenger-firstname-2\":\"Chinki\",\"passenger-lastname-2\":\"sharma\",\"passenger-nationality-2\":\"IN\",\"passenger-PassportNo-2\":\"\",\"passenger-passporIssue-2\":\"__\\/__\\/____\",\"passenger-PassportExpiry-2\":\"__\\/__\\/____\",\"paxType-3\":\"3\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"passenger-salutation-3\":\"1\",\"passenger-firstname-3\":\"Ankit\",\"passenger-lastname-3\":\"dhiman\",\"passenger-dob-3\":\"23\\/08\\/2023\",\"passenger-nationality-3\":\"IN\",\"passenger-PassportNo-3\":\"\",\"passenger-passporIssue-3\":\"__\\/__\\/____\",\"passenger-PassportExpiry-3\":\"__\\/__\\/____\",\"SelectMeals\":[\"\",\"\"],\"SelectBaggage\":[\"\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"anuj@catpl.co.in\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"CountryCode\":\"91\",\"MobileNo\":\"7009078210\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":{\"1\":{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Chinki\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"ff4f7-0204d-78403-d861a\",\"modified\":\"2023-09-29 11:39:19\",\"created\":\"2023-09-29 11:39:19\",\"MobileNo\":\"7009078210\",\"B2B\":true},\"2\":{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Ankit\",\"LastName\":\"dhiman\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2023-08-23\",\"apiTraceId\":\"ff4f7-0204d-78403-d861a\",\"modified\":\"2023-09-29 11:39:19\",\"created\":\"2023-09-29 11:39:19\",\"MobileNo\":\"7009078210\",\"B2B\":true}},\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"7566821253\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS105600716247\",\"amount\":13454.5,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"anuj@catpl.co.in\"],\"contacts\":[\"917009078210\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-09-29T11:41:40.868\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156306\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"534\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-09-29T21:30\",\"at\":\"2023-09-30T00:10\",\"iand\":true,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Anuj\",\"lN\":\"kumar\"},{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Chinki\",\"lN\":\"sharma\"},{\"pnrDetails\":{\"DEL-BLR\":\"U84LXS\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"Ankit\",\"lN\":\"dhiman\",\"dob\":\"2023-08-23\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":10836,\"NF\":12884.5,\"TAF\":2618.5,\"NCM\":570,\"IGST\":157.5,\"TF\":13454.5},\"afC\":{\"TAF\":{\"OT\":1036,\"YQ\":0,\"AGST\":550,\"MFT\":157.5,\"MF\":875},\"NCM\":{\"OT\":600,\"TDS\":-30}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"865173\",\"TPSysId\":\"865174\",\"TrxId\":\"70053\",\"VersionId\":\"263698\",\"XRefBookingId\":\"DMCS105600716247\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS105600716247\\\",\\\"bookingId_TJ\\\":\\\"TJS105600716247\\\",\\\"FlightNumber\\\":\\\"SG-534\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ff4f7-0204d-78403-d861a\\\",\\\"apiTraceId\\\":\\\"4-2897338973_0DELBLRSG534_1424138439000\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"21:30\\\",\\\"ArrivalTime\\\":\\\"00:10\\\",\\\"TravelDate\\\":\\\"2023-09-29T21:30\\\",\\\"LocalFromTime\\\":\\\"2023-09-29 21:30\\\",\\\"FromUTCTime\\\":\\\"2023-09-29T21:30\\\",\\\"LocalToTime\\\":\\\"2023-09-30 00:10\\\",\\\"ToUTCTime\\\":\\\"2023-09-30T00:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":160,\\\"DepartureDateTxt\\\":\\\"Fri, 29 Sep\\\",\\\"ArrivalDateTxt\\\":\\\"Sat, 30 Sep\\\",\\\"FlightDuration\\\":\\\"03h 40m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BLR\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"12,885\\\",\\\"ApiResultIndex\\\":\\\"4-2897338973_0DELBLRSG534_1424138439000\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":10836,\\\"Tax\\\":2618.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1036,\\\"Discount\\\":0,\\\"ServiceFee\\\":875,\\\"ManagementFeeTax\\\":157.5,\\\"AirlineGSTComponent\\\":550,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":13454.5,\\\"PublishedFare\\\":12884.5,\\\"PublishedFareAgent\\\":12884.5,\\\"OfferedFareAgent\\\":12884.5,\\\"OfferedFare\\\":12884.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-2897338973_0DELBLRSG534_1547737928689\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":12884.5,\\\"CostToAgent\\\":12884.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1223,\\\"TotalBaseFare\\\":5808,\\\"BaseFareCal\\\":5523,\\\"BaseFare\\\":4585,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":233,\\\"MFT\\\":72,\\\"OT\\\":518,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5523,\\\"CostToAgent\\\":5523,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":2,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1223,\\\"TotalBaseFare\\\":5808,\\\"BaseFareCal\\\":5523,\\\"BaseFare\\\":4585,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":233,\\\"MFT\\\":72,\\\"OT\\\":518,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5523,\\\"CostToAgent\\\":5523,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":172.5,\\\"TotalBaseFare\\\":1838.5,\\\"BaseFareCal\\\":1838.5,\\\"BaseFare\\\":1666,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":84,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":1838.5,\\\"CostToAgent\\\":1838.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}],\\\"newFare\\\":13454.5,\\\"oldFare\\\":13366,\\\"tripbinfo\\\":{\\\"DEL-BLR\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"},\\\"CHILD\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":570,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":12884.5,\\\"CostToCustomer\\\":12884.5,\\\"BaseFareCal\\\":12884.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":12884.5,\\\"intOfferedFare\\\":12884.5,\\\"intPublishFare\\\":13454.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":570,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":570,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":12884.5,\\\"CostToAgent\\\":12884.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"39\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Bengaluru\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BLR\\\",\\\"destinationArrTime\\\":\\\"2023-09-30T00:10\\\",\\\"SegFlightNumber\\\":\\\"SG-534\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-09-29T21:30\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":160,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"21:30\\\",\\\"strArrivalDtTime\\\":\\\"00:10\\\",\\\"FlightDuration\\\":\\\"2h 40m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1D\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"39\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"}],\\\"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-2897338973_0DELBLRSG534_1424138439000\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BLR\\\":[]},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-09-28 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS105600716247\\\",\\\"amount\\\":13454.5,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"anuj@catpl.co.in\\\"],\\\"contacts\\\":[\\\"917009078210\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-09-29T11:41:40.868\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156306\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"534\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":160,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1D\\\"},\\\"aa\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"dt\\\":\\\"2023-09-29T21:30\\\",\\\"at\\\":\\\"2023-09-30T00:10\\\",\\\"iand\\\":true,\\\"isRs\\\":false,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"Anuj\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Master\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"Chinki\\\",\\\"lN\\\":\\\"sharma\\\"},{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"Ankit\\\",\\\"lN\\\":\\\"dhiman\\\",\\\"dob\\\":\\\"2023-08-23\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"BF\\\":10836,\\\"NF\\\":12884.5,\\\"TAF\\\":2618.5,\\\"NCM\\\":570,\\\"IGST\\\":157.5,\\\"TF\\\":13454.5},\\\"afC\\\":{\\\"TAF\\\":{\\\"OT\\\":1036,\\\"YQ\\\":0,\\\"AGST\\\":550,\\\"MFT\\\":157.5,\\\"MF\\\":875},\\\"NCM\\\":{\\\"OT\\\":600,\\\"TDS\\\":-30}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"Anuj\\\",\\\"lN\\\":\\\"kumar\\\"},{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Master\\\",\\\"pt\\\":\\\"CHILD\\\",\\\"fN\\\":\\\"Chinki\\\",\\\"lN\\\":\\\"sharma\\\"},{\\\"pnrDetails\\\":{\\\"DEL-BLR\\\":\\\"U84LXS\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"Ankit\\\",\\\"lN\\\":\\\"dhiman\\\",\\\"dob\\\":\\\"2023-08-23\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":12884.5,\\\"NetPrice\\\":12884.5,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":12884.5,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Bengaluru (BLR)\",\"Amount\":10836,\"NetAmount\":12884.5}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS105600716247\",\"bookingId_TJ\":\"TJS105600716247\",\"FlightNumber\":\"SG-534\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"apiTraceId\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"00:10\",\"TravelDate\":\"2023-09-29T21:30\",\"LocalFromTime\":\"2023-09-29 21:30\",\"FromUTCTime\":\"2023-09-29T21:30\",\"LocalToTime\":\"2023-09-30 00:10\",\"ToUTCTime\":\"2023-09-30T00:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 29 Sep\",\"ArrivalDateTxt\":\"Sat, 30 Sep\",\"FlightDuration\":\"03h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"12,885\",\"ApiResultIndex\":\"4-2897338973_0DELBLRSG534_1424138439000\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":10836,\"Tax\":2618.5,\"YQTax\":0,\"OtherCharges\":1036,\"Discount\":0,\"ServiceFee\":875,\"ManagementFeeTax\":157.5,\"AirlineGSTComponent\":550,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13454.5,\"PublishedFare\":12884.5,\"PublishedFareAgent\":12884.5,\"OfferedFareAgent\":12884.5,\"OfferedFare\":12884.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-2897338973_0DELBLRSG534_1547737928689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1223,\"TotalBaseFare\":5808,\"BaseFareCal\":5523,\"BaseFare\":4585,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":233,\"MFT\":72,\"OT\":518,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5523,\"CostToAgent\":5523,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":172.5,\"TotalBaseFare\":1838.5,\"BaseFareCal\":1838.5,\"BaseFare\":1666,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":84,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":1838.5,\"CostToAgent\":1838.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"newFare\":13454.5,\"oldFare\":13366,\"tripbinfo\":{\"DEL-BLR\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"},\"CHILD\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":570,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":12884.5,\"CostToCustomer\":12884.5,\"BaseFareCal\":12884.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":12884.5,\"intOfferedFare\":12884.5,\"intPublishFare\":13454.5,\"TripjackMarkup\":0,\"TripjackCommission\":570,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":570,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":12884.5,\"CostToAgent\":12884.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"39\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-09-30T00:10\",\"SegFlightNumber\":\"SG-534\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-09-29T21:30\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":160,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"00:10\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"39\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"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-2897338973_0DELBLRSG534_1424138439000\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BLR\":[]},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-09-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"7009078210\",\"FirstName\":\"Anuj\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Chinki\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"33\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"29\",\"EmailId\":\"anuj@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"7009078210\",\"FirstName\":\"Ankit\",\"LastName\":\"dhiman\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 11:39:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2023-08-23\",\"CustomerMemberSysId\":\"34\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SearchTraceId\":\"ff4f7-0204d-78403-d861a\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"29\\/09\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-09-29\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"ff4f7-0204d-78403-d861a\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":[\"29\\/09\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"29 Sep Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-29 11:35:01\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-09-29 11:40:17'),(372,'cdd93-3c48e-45224-a44f2','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi\",\"check_in\":\"30\\/09\\/2023\",\"check_out\":\"01\\/10\\/2023\",\"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\":\"30\\/09\\/2023\",\"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\":\"2023-09-30\",\"checkoutDate\":\"2023-10-01\",\"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\":\"2023-09-30\",\"strCheckout\":\"2023-10-01\",\"SearchHotelTraceId\":\"cdd93-3c48e-45224-a44f2\",\"interNationalSearch\":false}','2023-09-29 11:43:09'),(375,'21683-ae861-fa5d7-b4a7f','{\"FlightBookingData\":[{\"bookingId\":\"DMCS106500716627\",\"bookingId_TJ\":\"TJS106500716627\",\"FlightNumber\":\"AI-439\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"apiTraceId\":\"15-2-10-7440978140_0DELMAAAI439_13192583867352\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"05:50\",\"ArrivalTime\":\"08:50\",\"TravelDate\":\"2023-10-10T05:50\",\"LocalFromTime\":\"2023-10-10 05:50\",\"FromUTCTime\":\"2023-10-10T05:50\",\"LocalToTime\":\"2023-10-10 08:50\",\"ToUTCTime\":\"2023-10-10T08:50\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Tue, 10 Oct\",\"ArrivalDateTxt\":\"Tue, 10 Oct\",\"FlightDuration\":\"03h 00m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,427\",\"ApiResultIndex\":\"15-2-10-7440978140_0DELMAAAI439_13192583867352\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4164,\"Tax\":1548,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":217,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5712,\"PublishedFare\":5427,\"PublishedFareAgent\":5427,\"OfferedFareAgent\":5427,\"OfferedFare\":5427,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7440978140_0DELMAAAI439_13219548317277\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"S\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1548,\"TotalBaseFare\":5712,\"BaseFareCal\":5427,\"BaseFare\":4164,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":217,\"MFT\":72,\"OT\":689,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-MAA\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"25 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5427,\"CostToCustomer\":5427,\"BaseFareCal\":5427,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5427,\"intOfferedFare\":5427,\"intPublishFare\":5712,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5427,\"CostToAgent\":5427,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"390\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2023-10-10T08:50\",\"SegFlightNumber\":\"AI-439\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-10T05:50\",\"TripIndicator\":1,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":1,\"Duration\":180,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:50\",\"strArrivalDtTime\":\"08:50\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"390\",\"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-7440978140_0DELMAAAI439_13192583867352\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-MAA\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"policyInfo\":\"__nls__Changes permitted 25 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"policyInfo\":\"__nls__Cancellation permitted 25 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACF\":3000,\"ACFT\":150}}}},\"tfr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"110\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"Jitendra Kumar\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 14:51:41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"35\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"Jitendra Kumar\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 14:51:41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"modified\":\"2023-09-29 14:51:41\",\"created\":\"2023-09-29 14:51:41\",\"CustomerMemberSysId\":\"35\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"35\"],\"flight_booking_customer\":[[\"113\"]],\"SearchTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Chennai (MAA)\",\"DEL\"],\"departure_date\":[\"10\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"MAA\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Chennai, IN - Chennai Arpt (MAA), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Chennai Arpt (MAA)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Chennai (MAA)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-10\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[6000],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"MAA\"],\"from\":[\"DEL\"],\"to\":[\"MAA\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Chennai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Chennai, IN - Chennai Arpt (MAA), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"10\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"10 Oct Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-09-29 14:51:08\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Chennai (MAA)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"MAA\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Chennai, IN - Chennai Arpt (MAA), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Chennai Arpt (MAA)\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Chennai (MAA)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-10\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[6000],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"21683-ae861-fa5d7-b4a7f\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"MAA\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"MAA\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Chennai\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Chennai, IN - Chennai Arpt (MAA), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"10\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"10 Oct Tue\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-09-29 14:51:08\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS106500716627\\\",\\\"bookingId_TJ\\\":\\\"TJS106500716627\\\",\\\"FlightNumber\\\":\\\"AI-439\\\",\\\"AirlineName\\\":\\\"Air India\\\",\\\"AirlineCode\\\":\\\"AI\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":false,\\\"IsMealIncludes\\\":true,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"21683-ae861-fa5d7-b4a7f\\\",\\\"apiTraceId\\\":\\\"15-2-10-7440978140_0DELMAAAI439_13192583867352\\\",\\\"AirlineSysId\\\":\\\"42\\\",\\\"DepartureTime\\\":\\\"05:50\\\",\\\"ArrivalTime\\\":\\\"08:50\\\",\\\"TravelDate\\\":\\\"2023-10-10T05:50\\\",\\\"LocalFromTime\\\":\\\"2023-10-10 05:50\\\",\\\"FromUTCTime\\\":\\\"2023-10-10T05:50\\\",\\\"LocalToTime\\\":\\\"2023-10-10 08:50\\\",\\\"ToUTCTime\\\":\\\"2023-10-10T08:50\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"S\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":180,\\\"DepartureDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 10 Oct\\\",\\\"FlightDuration\\\":\\\"03h 00m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"6000\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"MAA\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"5,427\\\",\\\"ApiResultIndex\\\":\\\"15-2-10-7440978140_0DELMAAAI439_13192583867352\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/AI.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4164,\\\"Tax\\\":1548,\\\"YQTax\\\":0,\\\"OtherCharges\\\":689,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":217,\\\"CarrierMiscFee\\\":170,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":5712,\\\"PublishedFare\\\":5427,\\\"PublishedFareAgent\\\":5427,\\\"OfferedFareAgent\\\":5427,\\\"OfferedFare\\\":5427,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"15-2-10-7440978140_0DELMAAAI439_13219548317277\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"S\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5427,\\\"CostToAgent\\\":5427,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1548,\\\"TotalBaseFare\\\":5712,\\\"BaseFareCal\\\":5427,\\\"BaseFare\\\":4164,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":217,\\\"MFT\\\":72,\\\"OT\\\":689,\\\"MU\\\":0,\\\"YR\\\":170,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5427,\\\"CostToAgent\\\":5427,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"25 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-MAA\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"25 Kg (01 Piece only)\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":5427,\\\"CostToCustomer\\\":5427,\\\"BaseFareCal\\\":5427,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":5427,\\\"intOfferedFare\\\":5427,\\\"intPublishFare\\\":5712,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5427,\\\"CostToAgent\\\":5427,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"390\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Chennai Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Chennai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"MAA\\\",\\\"destinationArrTime\\\":\\\"2023-10-10T08:50\\\",\\\"SegFlightNumber\\\":\\\"AI-439\\\",\\\"AirlineCode\\\":\\\"AI\\\",\\\"AirlineName\\\":\\\"Air India\\\",\\\"FareClass\\\":\\\"S\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-10T05:50\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"25 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":true,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":180,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"05:50\\\",\\\"strArrivalDtTime\\\":\\\"08:50\\\",\\\"FlightDuration\\\":\\\"3h 0m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/AI.gif\\\",\\\"BAGGAGEARRAY\\\":[],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"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-7440978140_0DELMAAAI439_13192583867352\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-MAA\\\":{\\\"fr\\\":{\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"policyInfo\\\":\\\"__nls__Changes permitted 25 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\\\\\/- or basic fare whichever is lower + Fare Difference\\\",\\\"fcs\\\":{\\\"ARF\\\":3000,\\\"ARFT\\\":150}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 25 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\\\\\/- or basic fare whichever is lower\\\",\\\"fcs\\\":{\\\"ACF\\\":3000,\\\"ACFT\\\":150}}}},\\\"tfr\\\":[]}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-09 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"MAA\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"6000\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"390\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}]],\\\"Baggage\\\":[[]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Jitendra Kumar \",\"passenger-lastname-1\":\"Singh\",\"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\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"Jitendra Kumar \",\"LastName\":\"Singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"Jitendra Kumar\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-09-29 14:51:41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"21683-ae861-fa5d7-b4a7f\",\"modified\":\"2023-09-29 14:51:41\",\"created\":\"2023-09-29 14:51:41\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0}','2023-09-29 14:51:42'),(376,'7d96e-a993b-69bbc-79f3d','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"30\\/09\\/2023\",\"check_out\":\"01\\/10\\/2023\",\"Nationality\":\"106\",\"adult\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"3\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"1\",\"totchld\":\"1\",\"totinfnt\":\"1\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 2},{\\\"totaladult\\\" : 1},{\\\"totalchild\\\" : 1},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"1\",\"ChildAge\":[\"3\"]}],\"TBOdata\":{\"CheckInDate\":\"30\\/09\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"1\",\"ChildAge\":[\"3\"]}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-09-30\",\"checkoutDate\":\"2023-10-01\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"1\",\"childAge\":[\"3\"]}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-09-30\",\"strCheckout\":\"2023-10-01\",\"SearchHotelTraceId\":\"7d96e-a993b-69bbc-79f3d\",\"interNationalSearch\":false}','2023-09-29 15:44:48'),(377,'c72fc-fca8b-d4e92-404e9','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Dubai (United Arab Emirates)\",\"check_in\":\"30\\/09\\/2023\",\"check_out\":\"01\\/10\\/2023\",\"Nationality\":\"106\",\"adult\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"3\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"8219\",\"TBBCityId\":\"115936\",\"destination\":\"Dubai\",\"hotel_countryCode\":\"AE\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"1\",\"totchld\":\"1\",\"totinfnt\":\"1\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 2},{\\\"totaladult\\\" : 1},{\\\"totalchild\\\" : 1},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"1\",\"ChildAge\":[\"3\"]}],\"TBOdata\":{\"CheckInDate\":\"30\\/09\\/2023\",\"NoOfNights\":1,\"CityId\":\"115936\",\"CountryCode\":\"AE\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"1\",\"ChildAge\":[\"3\"]}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2023-09-30\",\"checkoutDate\":\"2023-10-01\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"1\",\"childAge\":[\"3\"]}],\"searchCriteria\":{\"city\":\"115936\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-09-30\",\"strCheckout\":\"2023-10-01\",\"SearchHotelTraceId\":\"c72fc-fca8b-d4e92-404e9\",\"interNationalSearch\":false}','2023-09-29 15:58:47'),(378,'d17f2-b2d0f-65814-95802','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"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\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"d17f2-b2d0f-65814-95802\",\"interNationalSearch\":false}','2023-09-29 16:55:12'),(379,'26888-463d8-1b960-b5fde','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"26888-463d8-1b960-b5fde\",\"interNationalSearch\":false}','2023-09-29 16:58:01'),(380,'be955-4ee6c-191ca-5b377','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"be955-4ee6c-191ca-5b377\",\"interNationalSearch\":false}','2023-10-03 10:26:20'),(381,'24910-dcc8d-ac044-5505f','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"24910-dcc8d-ac044-5505f\",\"interNationalSearch\":false}','2023-10-03 11:02:50'),(382,'8da2b-7c92e-23cae-562b3','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Dubai (United Arab Emirates)\",\"check_in\":\"22\\/11\\/2023\",\"check_out\":\"23\\/11\\/2023\",\"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\":\"8219\",\"TBBCityId\":\"115936\",\"destination\":\"Dubai\",\"hotel_countryCode\":\"AE\",\"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\":\"22\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"115936\",\"CountryCode\":\"AE\",\"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\":\"2023-11-22\",\"checkoutDate\":\"2023-11-23\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"115936\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-22\",\"strCheckout\":\"2023-11-23\",\"SearchHotelTraceId\":\"8da2b-7c92e-23cae-562b3\",\"interNationalSearch\":false}','2023-10-03 11:16:00');
INSERT INTO `tbl_temp_data` VALUES (390,'ee552-f1874-d5c63-3dd3d','{\"FlightBookingData\":[{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":8205.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_0DELDXBSG11_25786459230908\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1993,\"TotalBaseFare\":3991,\"BaseFareCal\":3991,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":112,\"MFT\":27,\"OT\":1704,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":4991,\"CostToAgent\":3991,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3214.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":16989,\"oldFare\":16458,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false,\"InternationalData\":{\"bookingId\":\"DMCS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16989,\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":0,\"CurrencyRate\":2,\"currencySysId\":2,\"BaseFare\":13494,\"Tax\":10200.5,\"YQTax\":0,\"OtherCharges\":11040,\"Discount\":0,\"ServiceFee\":450,\"ManagementFeeTax\":81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16989,\"PublishedFare\":16989,\"PublishedFareAgent\":19989,\"OfferedFareAgent\":16989,\"OfferedFare\":20567,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":4,\"IsRefundableTxt\":0,\"PriceID\":8,\"IsGSTRequired\":0,\"fareIdentifier\":0,\"SeatAvailable\":2,\"classOfBooking\":0,\"FareClass\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":3000,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":3000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":3000,\"CostToAgentCustomer\":19989,\"CostToAgent\":16989,\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7690,\"TotalBaseFare\":11686,\"BaseFareCal\":11686,\"BaseFare\":3996,\"CommissionEarned\":0,\"TDS\":0,\"MF\":300,\"YQ\":0,\"AGST\":112,\"MFT\":54,\"OT\":7224,\"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,\"AgentMarkUp\":2000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":2000,\"CostToAgentCustomer\":13686,\"CostToAgent\":11686,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":303,\"TotalBaseFare\":5303,\"BaseFareCal\":5303,\"BaseFare\":5000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":27,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":6303,\"CostToAgent\":5303,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"localFromDateTime\":\"2023-10-18 07:45\",\"localToDateTime\":\"2023-10-18 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-6\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-10-21T11:10\",\"LocalFromTime\":\"2023-10-21 11:10\",\"FromUTCTime\":\"2023-10-21T11:10\",\"LocalToTime\":\"2023-10-21 15:55\",\"ToUTCTime\":\"2023-10-21T15:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Sat, 21 Oct\",\"ArrivalDateTxt\":\"Sat, 21 Oct\",\"FlightDuration\":\"05h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,989\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":5785.5,\"YQTax\":0,\"OtherCharges\":5520,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10283.5,\"PublishedFare\":10283.5,\"PublishedFareAgent\":11783.5,\"OfferedFareAgent\":10283.5,\"OfferedFare\":10283.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_1DXBDELSG6_25786460613814\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5697,\"TotalBaseFare\":7695,\"BaseFareCal\":7695,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":0,\"MFT\":27,\"OT\":5520,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":8695,\"CostToAgent\":7695,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":88.5,\"TotalBaseFare\":2588.5,\"BaseFareCal\":2588.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3088.5,\"CostToAgent\":2588.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10283.5,\"CostToCustomer\":10283.5,\"BaseFareCal\":10283.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10283.5,\"intOfferedFare\":10283.5,\"intPublishFare\":10283.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":[],\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"111\",\"112\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1986-10-27\",\"PassportNationality\":\"IN\",\"PassportNo\":\"DFG75398DYGH\",\"PassportExpiry\":\"2024-10-11\",\"passporIssue\":\"2022-10-10\",\"CustomerMemberSysId\":\"36\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1985-10-08\",\"PassportNationality\":\"IN\",\"PassportNo\":\"FDE8759HGKBG\",\"PassportExpiry\":\"2024-10-08\",\"passporIssue\":\"2022-10-05\",\"CustomerMemberSysId\":\"37\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-10-01\",\"PassportNationality\":\"IN\",\"PassportNo\":\"HFYGU5Y983DFHGBK\",\"PassportExpiry\":\"2024-10-16\",\"passporIssue\":\"2022-10-06\",\"CustomerMemberSysId\":\"38\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1986-10-27\",\"PassportNation\":\"IN\",\"PassportNo\":\"DFG75398DYGH\",\"PassportExpiry\":\"2024-10-11\",\"passporIssue\":\"2022-10-10\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"CustomerMemberSysId\":\"36\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1985-10-08\",\"PassportNation\":\"IN\",\"PassportNo\":\"FDE8759HGKBG\",\"PassportExpiry\":\"2024-10-08\",\"passporIssue\":\"2022-10-05\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"CustomerMemberSysId\":\"37\"},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-10-01\",\"PassportNation\":\"IN\",\"PassportNo\":\"HFYGU5Y983DFHGBK\",\"PassportExpiry\":\"2024-10-16\",\"passporIssue\":\"2022-10-06\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"CustomerMemberSysId\":\"38\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"36\",\"37\",\"38\"],\"flight_booking_customer\":[[\"114\",\"115\",\"116\"],[\"117\",\"118\",\"119\"]],\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Dubai (DXB)\"],\"departure_date\":[\"18\\/10\\/2023\"],\"return_date\":[\"21\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"228\"],\"destination_city\":[\"DXB\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" AE - Dubai Intl Arpt (DXB)\"],\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Dubai (DXB)\"],\"interNationalSearch\":true,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-18\"],\"strReturnDate\":[\"2023-10-21\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[8219],\"interNationalSearchArray\":[true],\"FlightTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"DXB\"],\"from\":[\"DEL\"],\"to\":[\"DXB\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Dubai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"1\",\"departure_dates\":[\"18\\/10\\/2023\"],\"return_dates\":[\"21\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"18 Oct Wed\"],\"ReturnDateMobile\":[\"21 Oct Sat\"],\"SearchTime\":\"2023-10-03 11:18:48\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"2\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Dubai (DXB)\\\"],\\\"departure_date\\\":[\\\"18\\\\\\/10\\\\\\/2023\\\"],\\\"return_date\\\":[\\\"21\\\\\\/10\\\\\\/2023\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"228\\\"],\\\"destination_city\\\":[\\\"DXB\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" AE - Dubai Intl Arpt (DXB)\\\"],\\\"adults\\\":\\\"2\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"1\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Dubai (DXB)\\\"],\\\"interNationalSearch\\\":true,\\\"strDepatureDateSF\\\":\\\"1-1-1\\\",\\\"strDepatureDate\\\":[\\\"2023-10-18\\\"],\\\"strReturnDate\\\":[\\\"2023-10-21\\\"],\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[8219],\\\"interNationalSearchArray\\\":[true],\\\"FlightTraceId\\\":\\\"ee552-f1874-d5c63-3dd3d\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"DXB\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"DXB\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Dubai\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"2\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"1\\\",\\\"departure_dates\\\":[\\\"18\\\\\\/10\\\\\\/2023\\\"],\\\"return_dates\\\":[\\\"21\\\\\\/10\\\\\\/2023\\\"],\\\"departure_dateG\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"18 Oct Wed\\\"],\\\"ReturnDateMobile\\\":[\\\"21 Oct Sat\\\"],\\\"SearchTime\\\":\\\"2023-10-03 11:18:48\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1},\\\"2\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":2}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"bookingId_TJ\\\":\\\"TJS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-11\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ee552-f1874-d5c63-3dd3d\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"07:45\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2023-10-18T07:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-18 07:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-18T07:45\\\",\\\"LocalToTime\\\":\\\"2023-10-18 10:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-18T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":235,\\\"DepartureDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"DXB\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"6,706\\\",\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4498,\\\"Tax\\\":2207.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1704,\\\"Discount\\\":0,\\\"ServiceFee\\\":225,\\\"ManagementFeeTax\\\":40.5,\\\"AirlineGSTComponent\\\":238,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":6705.5,\\\"PublishedFare\\\":6705.5,\\\"PublishedFareAgent\\\":8205.5,\\\"OfferedFareAgent\\\":6705.5,\\\"OfferedFare\\\":6705.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-9057921799_0DELDXBSG11_25786459230908\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":1500,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":1500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":8205.5,\\\"CostToAgent\\\":6705.5,\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":1993,\\\"TotalBaseFare\\\":3991,\\\"BaseFareCal\\\":3991,\\\"BaseFare\\\":1998,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":112,\\\"MFT\\\":27,\\\"OT\\\":1704,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":4991,\\\"CostToAgent\\\":3991,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":214.5,\\\"TotalBaseFare\\\":2714.5,\\\"BaseFareCal\\\":2714.5,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":126,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":500,\\\"CostToAgentCustomer\\\":3214.5,\\\"CostToAgent\\\":2714.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}},\\\"newFare\\\":16989,\\\"oldFare\\\":16458,\\\"tripbinfo\\\":{\\\"DEL-DXB\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"DXB-DEL\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":6705.5,\\\"CostToCustomer\\\":6705.5,\\\"BaseFareCal\\\":6705.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":6705.5,\\\"intOfferedFare\\\":6705.5,\\\"intPublishFare\\\":6705.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":1500,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":8205.5,\\\"CostToAgent\\\":6705.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"635\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Dubai\\\",\\\"destinationCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationAirportCode\\\":\\\"DXB\\\",\\\"destinationArrTime\\\":\\\"2023-10-18T10:10\\\",\\\"SegFlightNumber\\\":\\\"SG-11\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-18T07:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":235,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"07:45\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"3h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":true,\\\"IsPassIssue\\\":true,\\\"IsPassDateOfBirth\\\":true,\\\"isAdobrMandatory\\\":true,\\\"isCdobrMandatory\\\":true,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-17 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-20 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"DXB\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"1\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false,\\\"InternationalData\\\":{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-11\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"07:45\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2023-10-18T07:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-18 07:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-18T07:45\\\",\\\"LocalToTime\\\":\\\"2023-10-18 10:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-18T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":235,\\\"DepartureDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"DXB\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":16989,\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"Fare\\\":{\\\"Currency\\\":0,\\\"CurrencyRate\\\":2,\\\"currencySysId\\\":2,\\\"BaseFare\\\":13494,\\\"Tax\\\":10200.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":11040,\\\"Discount\\\":0,\\\"ServiceFee\\\":450,\\\"ManagementFeeTax\\\":81,\\\"AirlineGSTComponent\\\":0,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":16989,\\\"PublishedFare\\\":16989,\\\"PublishedFareAgent\\\":19989,\\\"OfferedFareAgent\\\":16989,\\\"OfferedFare\\\":20567,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":0,\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":4,\\\"IsRefundableTxt\\\":0,\\\"PriceID\\\":8,\\\"IsGSTRequired\\\":0,\\\"fareIdentifier\\\":0,\\\"SeatAvailable\\\":2,\\\"classOfBooking\\\":0,\\\"FareClass\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":3000,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":3000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":3000,\\\"CostToAgentCustomer\\\":19989,\\\"CostToAgent\\\":16989,\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":7690,\\\"TotalBaseFare\\\":11686,\\\"BaseFareCal\\\":11686,\\\"BaseFare\\\":3996,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":300,\\\"YQ\\\":0,\\\"AGST\\\":112,\\\"MFT\\\":54,\\\"OT\\\":7224,\\\"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,\\\"AgentMarkUp\\\":2000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":2000,\\\"CostToAgentCustomer\\\":13686,\\\"CostToAgent\\\":11686,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":303,\\\"TotalBaseFare\\\":5303,\\\"BaseFareCal\\\":5303,\\\"BaseFare\\\":5000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":126,\\\"OT\\\":0,\\\"MFT\\\":27,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":6303,\\\"CostToAgent\\\":5303,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}}},\\\"Segments\\\":[[{\\\"segmentid\\\":\\\"635\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Dubai\\\",\\\"destinationCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationAirportCode\\\":\\\"DXB\\\",\\\"destinationArrTime\\\":\\\"2023-10-18T10:10\\\",\\\"SegFlightNumber\\\":\\\"SG-11\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-18T07:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":235,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"07:45\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"3h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],[{\\\"segmentid\\\":\\\"636\\\",\\\"originAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Dubai\\\",\\\"originCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-21T15:55\\\",\\\"SegFlightNumber\\\":\\\"SG-6\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DXB\\\",\\\"originDepTime\\\":\\\"2023-10-21T11:10\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":195,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"11:10\\\",\\\"strArrivalDtTime\\\":\\\"15:55\\\",\\\"FlightDuration\\\":\\\"3h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}]],\\\"0\\\":{\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"localFromDateTime\\\":\\\"2023-10-18 07:45\\\",\\\"localToDateTime\\\":\\\"2023-10-18 10:10\\\",\\\"strSourceAirportCode\\\":\\\"DXB\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":1,\\\"interNationalSearch\\\":\\\"1\\\"}}}},{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"bookingId_TJ\\\":\\\"TJS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-6\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ee552-f1874-d5c63-3dd3d\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"11:10\\\",\\\"ArrivalTime\\\":\\\"15:55\\\",\\\"TravelDate\\\":\\\"2023-10-21T11:10\\\",\\\"LocalFromTime\\\":\\\"2023-10-21 11:10\\\",\\\"FromUTCTime\\\":\\\"2023-10-21T11:10\\\",\\\"LocalToTime\\\":\\\"2023-10-21 15:55\\\",\\\"ToUTCTime\\\":\\\"2023-10-21T15:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":195,\\\"DepartureDateTxt\\\":\\\"Sat, 21 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Sat, 21 Oct\\\",\\\"FlightDuration\\\":\\\"05h 45m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DXB\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"16,989\\\",\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4498,\\\"Tax\\\":5785.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":5520,\\\"Discount\\\":0,\\\"ServiceFee\\\":225,\\\"ManagementFeeTax\\\":40.5,\\\"AirlineGSTComponent\\\":0,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":10283.5,\\\"PublishedFare\\\":10283.5,\\\"PublishedFareAgent\\\":11783.5,\\\"OfferedFareAgent\\\":10283.5,\\\"OfferedFare\\\":10283.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-9057921799_1DXBDELSG6_25786460613814\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":1500,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":1500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":11783.5,\\\"CostToAgent\\\":10283.5,\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":5697,\\\"TotalBaseFare\\\":7695,\\\"BaseFareCal\\\":7695,\\\"BaseFare\\\":1998,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"MFT\\\":27,\\\"OT\\\":5520,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":8695,\\\"CostToAgent\\\":7695,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":88.5,\\\"TotalBaseFare\\\":2588.5,\\\"BaseFareCal\\\":2588.5,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":500,\\\"CostToAgentCustomer\\\":3088.5,\\\"CostToAgent\\\":2588.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}},\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-DXB\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"DXB-DEL\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":10283.5,\\\"CostToCustomer\\\":10283.5,\\\"BaseFareCal\\\":10283.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":10283.5,\\\"intOfferedFare\\\":10283.5,\\\"intPublishFare\\\":10283.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":1500,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":11783.5,\\\"CostToAgent\\\":10283.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"636\\\",\\\"originAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Dubai\\\",\\\"originCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-21T15:55\\\",\\\"SegFlightNumber\\\":\\\"SG-6\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DXB\\\",\\\"originDepTime\\\":\\\"2023-10-21T11:10\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":195,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"11:10\\\",\\\"strArrivalDtTime\\\":\\\"15:55\\\",\\\"FlightDuration\\\":\\\"3h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":true,\\\"IsPassIssue\\\":true,\\\"IsPassDateOfBirth\\\":true,\\\"isAdobrMandatory\\\":true,\\\"isCdobrMandatory\\\":true,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":[],\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-17 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-20 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"DXB\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"1\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"3\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"rahul\",\"passenger-lastname-1\":\"singh\",\"passenger-dob-1\":\"27\\/10\\/1986\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"DFG75398DYGH\",\"passenger-passporIssue-1\":\"10\\/10\\/2022\",\"passenger-PassportExpiry-1\":\"11\\/10\\/2024\",\"passenger-city-name-1\":\"Noida\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"19543\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"paxType-2\":\"1\",\"relation-2\":\"0\",\"CustomerSysId-2\":\"0\",\"passenger-salutation-2\":\"1\",\"passenger-firstname-2\":\"tinku\",\"passenger-lastname-2\":\"singh\",\"passenger-dob-2\":\"08\\/10\\/1985\",\"passenger-nationality-2\":\"IN\",\"passenger-PassportNo-2\":\"FDE8759HGKBG\",\"passenger-passporIssue-2\":\"05\\/10\\/2022\",\"passenger-PassportExpiry-2\":\"08\\/10\\/2024\",\"paxType-3\":\"3\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"passenger-salutation-3\":\"1\",\"passenger-firstname-3\":\"riya\",\"passenger-lastname-3\":\"singh\",\"passenger-dob-3\":\"01\\/10\\/2022\",\"passenger-nationality-3\":\"IN\",\"passenger-PassportNo-3\":\"HFYGU5Y983DFHGBK\",\"passenger-passporIssue-3\":\"06\\/10\\/2022\",\"passenger-PassportExpiry-3\":\"16\\/10\\/2024\",\"SelectMeals\":[\"\",\"\",\"\",\"\"],\"SelectBaggage\":[\"\",\"\",\"\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1986-10-27\",\"PassportNation\":\"IN\",\"PassportNo\":\"DFG75398DYGH\",\"PassportExpiry\":\"2024-10-11\",\"passporIssue\":\"2022-10-10\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1985-10-08\",\"PassportNation\":\"IN\",\"PassportNo\":\"FDE8759HGKBG\",\"PassportExpiry\":\"2024-10-08\",\"passporIssue\":\"2022-10-05\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"MobileNo\":\"8923963627\",\"B2B\":true},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-10-01\",\"PassportNation\":\"IN\",\"PassportNo\":\"HFYGU5Y983DFHGBK\",\"PassportExpiry\":\"2024-10-16\",\"passporIssue\":\"2022-10-06\",\"apiTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"modified\":\"2023-10-03 11:25:43\",\"created\":\"2023-10-03 11:25:43\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"9691680017\",\"ContactNo2\":\"9691680017\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"2\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS116400718147\",\"amount\":16989,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-03T11:28:10.447\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"156744\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"11\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":235,\"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\":\"2023-10-18T07:45\",\"at\":\"2023-10-18T10:10\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"156745\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"6\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":195,\"da\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2023-10-21T11:10\",\"at\":\"2023-10-21T15:55\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"singh\",\"dob\":\"1986-10-27\",\"pNum\":\"DFG75398DYGH\",\"eD\":\"2024-10-11\",\"pNat\":\"IN\",\"pid\":\"2022-10-10\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"tinku\",\"lN\":\"singh\",\"dob\":\"1985-10-08\",\"pNum\":\"FDE8759HGKBG\",\"eD\":\"2024-10-08\",\"pNat\":\"IN\",\"pid\":\"2022-10-05\"},{\"pnrDetails\":{\"DEL-DXB\":\"ABV49A\",\"DXB-DEL\":\"ABV49A\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"riya\",\"lN\":\"singh\",\"dob\":\"2022-10-01\",\"pNum\":\"HFYGU5Y983DFHGBK\",\"eD\":\"2024-10-16\",\"pNat\":\"IN\",\"pid\":\"2022-10-06\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":7993,\"IGST\":81,\"TF\":16989,\"NF\":16989,\"BF\":8996},\"afC\":{\"TAF\":{\"OT\":7224,\"AGST\":238,\"MF\":450,\"YQ\":0,\"MFT\":81}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"869483\",\"TPSysId\":\"869484\",\"TrxId\":\"70374\",\"VersionId\":\"265317\",\"XRefBookingId\":\"DMCS116400718147\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"bookingId_TJ\\\":\\\"TJS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-11\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ee552-f1874-d5c63-3dd3d\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"07:45\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2023-10-18T07:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-18 07:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-18T07:45\\\",\\\"LocalToTime\\\":\\\"2023-10-18 10:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-18T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":235,\\\"DepartureDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"DXB\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"6,706\\\",\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4498,\\\"Tax\\\":2207.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1704,\\\"Discount\\\":0,\\\"ServiceFee\\\":225,\\\"ManagementFeeTax\\\":40.5,\\\"AirlineGSTComponent\\\":238,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":6705.5,\\\"PublishedFare\\\":6705.5,\\\"PublishedFareAgent\\\":8205.5,\\\"OfferedFareAgent\\\":6705.5,\\\"OfferedFare\\\":6705.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-9057921799_0DELDXBSG11_25786459230908\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":1500,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":1500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":8205.5,\\\"CostToAgent\\\":6705.5,\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":1993,\\\"TotalBaseFare\\\":3991,\\\"BaseFareCal\\\":3991,\\\"BaseFare\\\":1998,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":112,\\\"MFT\\\":27,\\\"OT\\\":1704,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":4991,\\\"CostToAgent\\\":3991,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":214.5,\\\"TotalBaseFare\\\":2714.5,\\\"BaseFareCal\\\":2714.5,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":126,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":500,\\\"CostToAgentCustomer\\\":3214.5,\\\"CostToAgent\\\":2714.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}},\\\"newFare\\\":16989,\\\"oldFare\\\":16458,\\\"tripbinfo\\\":{\\\"DEL-DXB\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"DXB-DEL\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":6705.5,\\\"CostToCustomer\\\":6705.5,\\\"BaseFareCal\\\":6705.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":6705.5,\\\"intOfferedFare\\\":6705.5,\\\"intPublishFare\\\":6705.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":1500,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":8205.5,\\\"CostToAgent\\\":6705.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"635\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Dubai\\\",\\\"destinationCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationAirportCode\\\":\\\"DXB\\\",\\\"destinationArrTime\\\":\\\"2023-10-18T10:10\\\",\\\"SegFlightNumber\\\":\\\"SG-11\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-18T07:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":235,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"07:45\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"3h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":true,\\\"IsPassIssue\\\":true,\\\"IsPassDateOfBirth\\\":true,\\\"isAdobrMandatory\\\":true,\\\"isCdobrMandatory\\\":true,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-17 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-20 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"DXB\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"1\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false,\\\"InternationalData\\\":{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-11\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"07:45\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2023-10-18T07:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-18 07:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-18T07:45\\\",\\\"LocalToTime\\\":\\\"2023-10-18 10:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-18T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":235,\\\"DepartureDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 18 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"DXB\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":16989,\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"Fare\\\":{\\\"Currency\\\":0,\\\"CurrencyRate\\\":2,\\\"currencySysId\\\":2,\\\"BaseFare\\\":13494,\\\"Tax\\\":10200.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":11040,\\\"Discount\\\":0,\\\"ServiceFee\\\":450,\\\"ManagementFeeTax\\\":81,\\\"AirlineGSTComponent\\\":0,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":16989,\\\"PublishedFare\\\":16989,\\\"PublishedFareAgent\\\":19989,\\\"OfferedFareAgent\\\":16989,\\\"OfferedFare\\\":20567,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":0,\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":4,\\\"IsRefundableTxt\\\":0,\\\"PriceID\\\":8,\\\"IsGSTRequired\\\":0,\\\"fareIdentifier\\\":0,\\\"SeatAvailable\\\":2,\\\"classOfBooking\\\":0,\\\"FareClass\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":3000,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":3000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":3000,\\\"CostToAgentCustomer\\\":19989,\\\"CostToAgent\\\":16989,\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":7690,\\\"TotalBaseFare\\\":11686,\\\"BaseFareCal\\\":11686,\\\"BaseFare\\\":3996,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":300,\\\"YQ\\\":0,\\\"AGST\\\":112,\\\"MFT\\\":54,\\\"OT\\\":7224,\\\"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,\\\"AgentMarkUp\\\":2000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":2000,\\\"CostToAgentCustomer\\\":13686,\\\"CostToAgent\\\":11686,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":303,\\\"TotalBaseFare\\\":5303,\\\"BaseFareCal\\\":5303,\\\"BaseFare\\\":5000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":126,\\\"OT\\\":0,\\\"MFT\\\":27,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":6303,\\\"CostToAgent\\\":5303,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}}},\\\"Segments\\\":[[{\\\"segmentid\\\":\\\"635\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Dubai\\\",\\\"destinationCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationAirportCode\\\":\\\"DXB\\\",\\\"destinationArrTime\\\":\\\"2023-10-18T10:10\\\",\\\"SegFlightNumber\\\":\\\"SG-11\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-18T07:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":235,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"07:45\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"3h 55m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":255,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":445,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":456,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":461,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":495,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"635\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":595,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],[{\\\"segmentid\\\":\\\"636\\\",\\\"originAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Dubai\\\",\\\"originCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-21T15:55\\\",\\\"SegFlightNumber\\\":\\\"SG-6\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DXB\\\",\\\"originDepTime\\\":\\\"2023-10-21T11:10\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":195,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"11:10\\\",\\\"strArrivalDtTime\\\":\\\"15:55\\\",\\\"FlightDuration\\\":\\\"3h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}]],\\\"0\\\":{\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"localFromDateTime\\\":\\\"2023-10-18 07:45\\\",\\\"localToDateTime\\\":\\\"2023-10-18 10:10\\\",\\\"strSourceAirportCode\\\":\\\"DXB\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":1,\\\"interNationalSearch\\\":\\\"1\\\"}}}},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS116400718147\\\",\\\"amount\\\":16989,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-03T11:28:10.447\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156744\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"11\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":235,\\\"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\\\":\\\"2023-10-18T07:45\\\",\\\"at\\\":\\\"2023-10-18T10:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]},{\\\"sI\\\":[{\\\"id\\\":\\\"156745\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"6\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":195,\\\"da\\\":{\\\"code\\\":\\\"DXB\\\",\\\"name\\\":\\\"Dubai Intl Arpt\\\",\\\"cityCode\\\":\\\"DXB\\\",\\\"city\\\":\\\"Dubai\\\",\\\"country\\\":\\\"United Arab Emirates\\\",\\\"countryCode\\\":\\\"AE\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"aa\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 3\\\"},\\\"dt\\\":\\\"2023-10-21T11:10\\\",\\\"at\\\":\\\"2023-10-21T15:55\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1986-10-27\\\",\\\"pNum\\\":\\\"DFG75398DYGH\\\",\\\"eD\\\":\\\"2024-10-11\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-10\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1985-10-08\\\",\\\"pNum\\\":\\\"FDE8759HGKBG\\\",\\\"eD\\\":\\\"2024-10-08\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-05\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-10-01\\\",\\\"pNum\\\":\\\"HFYGU5Y983DFHGBK\\\",\\\"eD\\\":\\\"2024-10-16\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-06\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"TAF\\\":7993,\\\"IGST\\\":81,\\\"TF\\\":16989,\\\"NF\\\":16989,\\\"BF\\\":8996},\\\"afC\\\":{\\\"TAF\\\":{\\\"OT\\\":7224,\\\"AGST\\\":238,\\\"MF\\\":450,\\\"YQ\\\":0,\\\"MFT\\\":81}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1986-10-27\\\",\\\"pNum\\\":\\\"DFG75398DYGH\\\",\\\"eD\\\":\\\"2024-10-11\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-10\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1985-10-08\\\",\\\"pNum\\\":\\\"FDE8759HGKBG\\\",\\\"eD\\\":\\\"2024-10-08\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-05\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-10-01\\\",\\\"pNum\\\":\\\"HFYGU5Y983DFHGBK\\\",\\\"eD\\\":\\\"2024-10-16\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-06\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":16989,\\\"NetPrice\\\":16990,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":16990,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Dubai (DXB)-Delhi (DEL)\",\"Amount\":8996,\"NetAmount\":16990},{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"869483\",\"TPSysId\":\"869484\",\"TrxId\":\"70374\",\"VersionId\":null,\"XRefBookingId\":\"DMCS116400718147\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS116400718147\\\",\\\"bookingId_TJ\\\":\\\"TJS116400718147\\\",\\\"FlightNumber\\\":\\\"SG-6\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"ee552-f1874-d5c63-3dd3d\\\",\\\"apiTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"11:10\\\",\\\"ArrivalTime\\\":\\\"15:55\\\",\\\"TravelDate\\\":\\\"2023-10-21T11:10\\\",\\\"LocalFromTime\\\":\\\"2023-10-21 11:10\\\",\\\"FromUTCTime\\\":\\\"2023-10-21T11:10\\\",\\\"LocalToTime\\\":\\\"2023-10-21 15:55\\\",\\\"ToUTCTime\\\":\\\"2023-10-21T15:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"SS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":195,\\\"DepartureDateTxt\\\":\\\"Sat, 21 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Sat, 21 Oct\\\",\\\"FlightDuration\\\":\\\"05h 45m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"8219\\\",\\\"SourceAirportCode\\\":\\\"DXB\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":3,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"16,989\\\",\\\"ApiResultIndex\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"1\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4498,\\\"Tax\\\":5785.5,\\\"YQTax\\\":0,\\\"OtherCharges\\\":5520,\\\"Discount\\\":0,\\\"ServiceFee\\\":225,\\\"ManagementFeeTax\\\":40.5,\\\"AirlineGSTComponent\\\":0,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":10283.5,\\\"PublishedFare\\\":10283.5,\\\"PublishedFareAgent\\\":11783.5,\\\"OfferedFareAgent\\\":10283.5,\\\"OfferedFare\\\":10283.5,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-9057921799_1DXBDELSG6_25786460613814\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"SALE\\\",\\\"fareIdentifierSP\\\":\\\"SALE\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"SS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":1500,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":1500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":11783.5,\\\"CostToAgent\\\":10283.5,\\\"FareBreakdown\\\":{\\\"0\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"2\\\",\\\"TaxIN\\\":5697,\\\"TotalBaseFare\\\":7695,\\\"BaseFareCal\\\":7695,\\\"BaseFare\\\":1998,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":150,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"MFT\\\":27,\\\"OT\\\":5520,\\\"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,\\\"AgentMarkUp\\\":1000,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":1000,\\\"CostToAgentCustomer\\\":8695,\\\"CostToAgent\\\":7695,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"},\\\"2\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":3,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":88.5,\\\"TotalBaseFare\\\":2588.5,\\\"BaseFareCal\\\":2588.5,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":75,\\\"YQ\\\":0,\\\"AGST\\\":0,\\\"OT\\\":0,\\\"MFT\\\":13.5,\\\"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,\\\"AgentMarkUp\\\":500,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":500,\\\"CostToAgentCustomer\\\":3088.5,\\\"CostToAgent\\\":2588.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"0 Kg\\\",\\\"CabinBaggage\\\":\\\"0 Kg\\\"}},\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-DXB\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"DXB-DEL\\\":{\\\"INFANT\\\":{\\\"cabin\\\":\\\"0 Kg\\\",\\\"checkin\\\":\\\"0 Kg\\\"},\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":10283.5,\\\"CostToCustomer\\\":10283.5,\\\"BaseFareCal\\\":10283.5,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":10283.5,\\\"intOfferedFare\\\":10283.5,\\\"intPublishFare\\\":10283.5,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":1500,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":1500,\\\"CostToAgentCustomer\\\":11783.5,\\\"CostToAgent\\\":10283.5,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"636\\\",\\\"originAirportName\\\":\\\"Dubai Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Dubai\\\",\\\"originCountryName\\\":\\\"United Arab Emirates\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-21T15:55\\\",\\\"SegFlightNumber\\\":\\\"SG-6\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"SS\\\",\\\"originAirportCode\\\":\\\"DXB\\\",\\\"originDepTime\\\":\\\"2023-10-21T11:10\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":195,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"11:10\\\",\\\"strArrivalDtTime\\\":\\\"15:55\\\",\\\"FlightDuration\\\":\\\"3h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2625,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":5250,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":249,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":483,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"636\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":580,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":true,\\\"IsPassIssue\\\":true,\\\"IsPassDateOfBirth\\\":true,\\\"isAdobrMandatory\\\":true,\\\"isCdobrMandatory\\\":true,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":[],\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-17 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-20 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"DXB\\\",\\\"intMemberCount\\\":3,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"8219\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"1\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS116400718147\\\",\\\"amount\\\":16989,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-03T11:28:10.447\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"156744\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"11\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":235,\\\"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\\\":\\\"2023-10-18T07:45\\\",\\\"at\\\":\\\"2023-10-18T10:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]},{\\\"sI\\\":[{\\\"id\\\":\\\"156745\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"6\\\",\\\"eT\\\":\\\"7M8\\\"},\\\"stops\\\":0,\\\"duration\\\":195,\\\"da\\\":{\\\"code\\\":\\\"DXB\\\",\\\"name\\\":\\\"Dubai Intl Arpt\\\",\\\"cityCode\\\":\\\"DXB\\\",\\\"city\\\":\\\"Dubai\\\",\\\"country\\\":\\\"United Arab Emirates\\\",\\\"countryCode\\\":\\\"AE\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"aa\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 3\\\"},\\\"dt\\\":\\\"2023-10-21T11:10\\\",\\\"at\\\":\\\"2023-10-21T15:55\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1986-10-27\\\",\\\"pNum\\\":\\\"DFG75398DYGH\\\",\\\"eD\\\":\\\"2024-10-11\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-10\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1985-10-08\\\",\\\"pNum\\\":\\\"FDE8759HGKBG\\\",\\\"eD\\\":\\\"2024-10-08\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-05\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-10-01\\\",\\\"pNum\\\":\\\"HFYGU5Y983DFHGBK\\\",\\\"eD\\\":\\\"2024-10-16\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-06\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"TAF\\\":7993,\\\"IGST\\\":81,\\\"TF\\\":16989,\\\"NF\\\":16989,\\\"BF\\\":8996},\\\"afC\\\":{\\\"TAF\\\":{\\\"OT\\\":7224,\\\"AGST\\\":238,\\\"MF\\\":450,\\\"YQ\\\":0,\\\"MFT\\\":81}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1986-10-27\\\",\\\"pNum\\\":\\\"DFG75398DYGH\\\",\\\"eD\\\":\\\"2024-10-11\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-10\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"tinku\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"1985-10-08\\\",\\\"pNum\\\":\\\"FDE8759HGKBG\\\",\\\"eD\\\":\\\"2024-10-08\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-05\\\"},{\\\"pnrDetails\\\":{\\\"DEL-DXB\\\":\\\"ABV49A\\\",\\\"DXB-DEL\\\":\\\"ABV49A\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"INFANT\\\",\\\"fN\\\":\\\"riya\\\",\\\"lN\\\":\\\"singh\\\",\\\"dob\\\":\\\"2022-10-01\\\",\\\"pNum\\\":\\\"HFYGU5Y983DFHGBK\\\",\\\"eD\\\":\\\"2024-10-16\\\",\\\"pNat\\\":\\\"IN\\\",\\\"pid\\\":\\\"2022-10-06\\\"}]\",\"UpdateFare\":\"[[]]\",\"Keys\":1,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Dubai (DXB)-Delhi (DEL)\",\"Amount\":8996,\"NetAmount\":16990}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"6,706\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":2207.5,\"YQTax\":0,\"OtherCharges\":1704,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":238,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6705.5,\"PublishedFare\":6705.5,\"PublishedFareAgent\":8205.5,\"OfferedFareAgent\":6705.5,\"OfferedFare\":6705.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_0DELDXBSG11_25786459230908\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1993,\"TotalBaseFare\":3991,\"BaseFareCal\":3991,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":112,\"MFT\":27,\"OT\":1704,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":4991,\"CostToAgent\":3991,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":214.5,\"TotalBaseFare\":2714.5,\"BaseFareCal\":2714.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3214.5,\"CostToAgent\":2714.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":16989,\"oldFare\":16458,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6705.5,\"CostToCustomer\":6705.5,\"BaseFareCal\":6705.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6705.5,\"intOfferedFare\":6705.5,\"intPublishFare\":6705.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":8205.5,\"CostToAgent\":6705.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false,\"InternationalData\":{\"bookingId\":\"DMCS116400718147\",\"FlightNumber\":\"SG-11\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:45\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2023-10-18T07:45\",\"LocalFromTime\":\"2023-10-18 07:45\",\"FromUTCTime\":\"2023-10-18T07:45\",\"LocalToTime\":\"2023-10-18 10:10\",\"ToUTCTime\":\"2023-10-18T10:10\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Wed, 18 Oct\",\"ArrivalDateTxt\":\"Wed, 18 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16989,\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":0,\"CurrencyRate\":2,\"currencySysId\":2,\"BaseFare\":13494,\"Tax\":10200.5,\"YQTax\":0,\"OtherCharges\":11040,\"Discount\":0,\"ServiceFee\":450,\"ManagementFeeTax\":81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16989,\"PublishedFare\":16989,\"PublishedFareAgent\":19989,\"OfferedFareAgent\":16989,\"OfferedFare\":20567,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":4,\"IsRefundableTxt\":0,\"PriceID\":8,\"IsGSTRequired\":0,\"fareIdentifier\":0,\"SeatAvailable\":2,\"classOfBooking\":0,\"FareClass\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":3000,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":3000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":3000,\"CostToAgentCustomer\":19989,\"CostToAgent\":16989,\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7690,\"TotalBaseFare\":11686,\"BaseFareCal\":11686,\"BaseFare\":3996,\"CommissionEarned\":0,\"TDS\":0,\"MF\":300,\"YQ\":0,\"AGST\":112,\"MFT\":54,\"OT\":7224,\"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,\"AgentMarkUp\":2000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":2000,\"CostToAgentCustomer\":13686,\"CostToAgent\":11686,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":303,\"TotalBaseFare\":5303,\"BaseFareCal\":5303,\"BaseFare\":5000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":126,\"OT\":0,\"MFT\":27,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":6303,\"CostToAgent\":5303,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2023-10-18T10:10\",\"SegFlightNumber\":\"SG-11\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-18T07:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":235,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:45\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":255,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":405,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":456,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"localFromDateTime\":\"2023-10-18 07:45\",\"localToDateTime\":\"2023-10-18 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"DMCS116400718147\",\"bookingId_TJ\":\"TJS116400718147\",\"FlightNumber\":\"SG-6\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"apiTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2023-10-21T11:10\",\"LocalFromTime\":\"2023-10-21 11:10\",\"FromUTCTime\":\"2023-10-21T11:10\",\"LocalToTime\":\"2023-10-21 15:55\",\"ToUTCTime\":\"2023-10-21T15:55\",\"IsDirect\":0,\"FareClass\":\"SS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Sat, 21 Oct\",\"ArrivalDateTxt\":\"Sat, 21 Oct\",\"FlightDuration\":\"05h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"16,989\",\"ApiResultIndex\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4498,\"Tax\":5785.5,\"YQTax\":0,\"OtherCharges\":5520,\"Discount\":0,\"ServiceFee\":225,\"ManagementFeeTax\":40.5,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10283.5,\"PublishedFare\":10283.5,\"PublishedFareAgent\":11783.5,\"OfferedFareAgent\":10283.5,\"OfferedFare\":10283.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9057921799_1DXBDELSG6_25786460613814\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"fareIdentifierSP\":\"SALE\",\"SeatAvailable\":1,\"classOfBooking\":\"SS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":1500,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":1500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5697,\"TotalBaseFare\":7695,\"BaseFareCal\":7695,\"BaseFare\":1998,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":0,\"MFT\":27,\"OT\":5520,\"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,\"AgentMarkUp\":1000,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":1000,\"CostToAgentCustomer\":8695,\"CostToAgent\":7695,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":88.5,\"TotalBaseFare\":2588.5,\"BaseFareCal\":2588.5,\"BaseFare\":2500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":13.5,\"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,\"AgentMarkUp\":500,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":500,\"CostToAgentCustomer\":3088.5,\"CostToAgent\":2588.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}},\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-DXB\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"DXB-DEL\":{\"INFANT\":{\"cabin\":\"0 Kg\",\"checkin\":\"0 Kg\"},\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10283.5,\"CostToCustomer\":10283.5,\"BaseFareCal\":10283.5,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":10283.5,\"intOfferedFare\":10283.5,\"intPublishFare\":10283.5,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":1500,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":1500,\"CostToAgentCustomer\":11783.5,\"CostToAgent\":10283.5,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"636\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-21T15:55\",\"SegFlightNumber\":\"SG-6\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SS\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2023-10-21T11:10\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":195,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVML\",\"Price\":249,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGML\",\"Price\":395,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"JNSW\",\"Price\":434,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"636\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isAdobrMandatory\":true,\"isCdobrMandatory\":true,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-9057921799_0DELDXBSG11DXBDELSG6_27106667618039\",\"CancelCharge\":\"0\",\"FareRuleData\":[],\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"2023-10-20 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"1\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1986-10-27\",\"PassportNationality\":\"IN\",\"PassportNo\":\"DFG75398DYGH\",\"PassportExpiry\":\"2024-10-11\",\"passporIssue\":\"2022-10-10\",\"CustomerMemberSysId\":\"36\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8923963627\",\"FirstName\":\"tinku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"1985-10-08\",\"PassportNationality\":\"IN\",\"PassportNo\":\"FDE8759HGKBG\",\"PassportExpiry\":\"2024-10-08\",\"passporIssue\":\"2022-10-05\",\"CustomerMemberSysId\":\"37\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0},{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-03 11:25:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"DOB\":\"2022-10-01\",\"PassportNationality\":\"IN\",\"PassportNo\":\"HFYGU5Y983DFHGBK\",\"PassportExpiry\":\"2024-10-16\",\"passporIssue\":\"2022-10-06\",\"CustomerMemberSysId\":\"38\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SearchTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Dubai (DXB)\"],\"departure_date\":[\"18\\/10\\/2023\"],\"return_date\":[\"21\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"228\"],\"destination_city\":[\"DXB\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" AE - Dubai Intl Arpt (DXB)\"],\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"1\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Dubai (DXB)\"],\"interNationalSearch\":true,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-18\"],\"strReturnDate\":[\"2023-10-21\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[8219],\"interNationalSearchArray\":[true],\"FlightTraceId\":\"ee552-f1874-d5c63-3dd3d\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"DXB\"],\"from\":[\"DEL\"],\"to\":[\"DXB\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Dubai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"1\",\"departure_dates\":[\"18\\/10\\/2023\"],\"return_dates\":[\"21\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"18 Oct Wed\"],\"ReturnDateMobile\":[\"21 Oct Sat\"],\"SearchTime\":\"2023-10-03 11:18:48\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-10-03 11:26:45'),(391,'50d68-eace8-d6ab2-687a1','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"19\\/10\\/2023\",\"check_out\":\"20\\/10\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"19\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-10-19\",\"checkoutDate\":\"2023-10-20\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-19\",\"strCheckout\":\"2023-10-20\",\"SearchHotelTraceId\":\"50d68-eace8-d6ab2-687a1\",\"interNationalSearch\":false}','2023-10-03 17:54:34'),(392,'b7c12-5ac3f-4b296-b3c1f','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"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\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"b7c12-5ac3f-4b296-b3c1f\",\"interNationalSearch\":false}','2023-10-04 15:52:05'),(393,'b884b-4e0ba-b2da1-caa90','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"18\\/10\\/2023\",\"check_out\":\"19\\/10\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"18\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-10-18\",\"checkoutDate\":\"2023-10-19\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-18\",\"strCheckout\":\"2023-10-19\",\"SearchHotelTraceId\":\"b884b-4e0ba-b2da1-caa90\",\"interNationalSearch\":false}','2023-10-04 15:52:52'),(394,'7a02a-51b9d-49ae0-99618','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"10\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"7a02a-51b9d-49ae0-99618\",\"interNationalSearch\":false}','2023-10-04 16:58:12'),(395,'e2f3b-7b528-cc299-c641f','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"18\\/10\\/2023\",\"check_out\":\"19\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"18\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-18\",\"checkoutDate\":\"2023-10-19\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-18\",\"strCheckout\":\"2023-10-19\",\"SearchHotelTraceId\":\"e2f3b-7b528-cc299-c641f\",\"interNationalSearch\":false}','2023-10-04 19:03:30'),(396,'f6d7e-491c7-ce7b9-05501','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"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\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"f6d7e-491c7-ce7b9-05501\",\"interNationalSearch\":false}','2023-10-05 11:49:00'),(403,'21753-55081-f8f47-15b56','{\"FlightBookingData\":[{\"bookingId\":\"DMCS101400721518\",\"bookingId_TJ\":\"TJS101400721518\",\"FlightNumber\":\"I5-472\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"apiTraceId\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2023-10-16T02:00\",\"LocalFromTime\":\"2023-10-16 02:00\",\"FromUTCTime\":\"2023-10-16T02:00\",\"LocalToTime\":\"2023-10-16 04:00\",\"ToUTCTime\":\"2023-10-16T04:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 16 Oct\",\"ArrivalDateTxt\":\"Mon, 16 Oct\",\"FlightDuration\":\"02h 00m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,175\",\"ApiResultIndex\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":1654,\"Tax\":1806,\"YQTax\":0,\"OtherCharges\":1242,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3460,\"PublishedFare\":3175,\"PublishedFareAgent\":3175,\"OfferedFareAgent\":3175,\"OfferedFare\":3175,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-3196554827_0BLRBOMI5472_105844133050545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1806,\"TotalBaseFare\":3460,\"BaseFareCal\":3175,\"BaseFare\":1654,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":92,\"MFT\":72,\"OT\":1242,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":[],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3175,\"CostToCustomer\":3175,\"BaseFareCal\":3175,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3175,\"intOfferedFare\":3175,\"intPublishFare\":3460,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"719\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-16T04:00\",\"SegFlightNumber\":\"I5-472\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-16T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":120,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"113\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:07:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"39\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:07:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"21753-55081-f8f47-15b56\",\"modified\":\"2023-10-05 17:07:44\",\"created\":\"2023-10-05 17:07:44\",\"CustomerMemberSysId\":\"39\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"39\"],\"flight_booking_customer\":[[\"120\"]],\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Bengaluru (BLR)\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"16\\/10\\/2023\",\"\"],\"source_city\":[\"BLR\"],\"ContSysId\":[\"0\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"to_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Bengaluru (BLR)\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-16\"],\"strReturnDate\":\"\",\"sourceCityId\":[2262],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"21753-55081-f8f47-15b56\",\"sourceCityAirportCode\":[\"BLR\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"BLR\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Bengaluru\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"16\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"16 Oct Mon\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-05 17:06:34\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"21753-55081-f8f47-15b56\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Bengaluru (BLR)\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"16\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BLR\\\"],\\\"ContSysId\\\":[\\\"0\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"BOM\\\"],\\\"source\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destination\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Bengaluru Intl Arpt (BLR)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Bengaluru (BLR)\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-16\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[2262],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"21753-55081-f8f47-15b56\\\",\\\"sourceCityAirportCode\\\":[\\\"BLR\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"BLR\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"Fromlabel\\\":[\\\"Bengaluru\\\"],\\\"Tolabel\\\":[\\\"Mumbai\\\"],\\\"sourceCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"16\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"16 Oct Mon\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-10-05 17:06:34\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS101400721518\\\",\\\"bookingId_TJ\\\":\\\"TJS101400721518\\\",\\\"FlightNumber\\\":\\\"I5-472\\\",\\\"AirlineName\\\":\\\"AirAsia India\\\",\\\"AirlineCode\\\":\\\"I5\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":null,\\\"IsRefundableTxt\\\":\\\"Non Refundable\\\",\\\"SearchTraceId\\\":\\\"21753-55081-f8f47-15b56\\\",\\\"apiTraceId\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"AirlineSysId\\\":\\\"75\\\",\\\"DepartureTime\\\":\\\"02:00\\\",\\\"ArrivalTime\\\":\\\"04:00\\\",\\\"TravelDate\\\":\\\"2023-10-16T02:00\\\",\\\"LocalFromTime\\\":\\\"2023-10-16 02:00\\\",\\\"FromUTCTime\\\":\\\"2023-10-16T02:00\\\",\\\"LocalToTime\\\":\\\"2023-10-16 04:00\\\",\\\"ToUTCTime\\\":\\\"2023-10-16T04:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"BT\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":120,\\\"DepartureDateTxt\\\":\\\"Mon, 16 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 16 Oct\\\",\\\"FlightDuration\\\":\\\"02h 00m\\\",\\\"SourcePlaceSysId\\\":\\\"2262\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,175\\\",\\\"ApiResultIndex\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/I5.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":1654,\\\"Tax\\\":1806,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1242,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":92,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":3460,\\\"PublishedFare\\\":3175,\\\"PublishedFareAgent\\\":3175,\\\"OfferedFareAgent\\\":3175,\\\"OfferedFare\\\":3175,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":null,\\\"IsRefundableTxt\\\":\\\"Non Refundable\\\",\\\"PriceID\\\":\\\"22-3196554827_0BLRBOMI5472_105844133050545\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PROMO\\\",\\\"fareIdentifierSP\\\":\\\"PROMO\\\",\\\"SeatAvailable\\\":9,\\\"classOfBooking\\\":\\\"BT\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1806,\\\"TotalBaseFare\\\":3460,\\\"BaseFareCal\\\":3175,\\\"BaseFare\\\":1654,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":92,\\\"MFT\\\":72,\\\"OT\\\":1242,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":[]}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":[],\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":3175,\\\"CostToCustomer\\\":3175,\\\"BaseFareCal\\\":3175,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":3175,\\\"intOfferedFare\\\":3175,\\\"intPublishFare\\\":3460,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"719\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-16T04:00\\\",\\\"SegFlightNumber\\\":\\\"I5-472\\\",\\\"AirlineCode\\\":\\\"I5\\\",\\\"AirlineName\\\":\\\"AirAsia India\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-16T02:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":null,\\\"IsBaggage\\\":false,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":120,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"02:00\\\",\\\"strArrivalDtTime\\\":\\\"04:00\\\",\\\"FlightDuration\\\":\\\"2h 0m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/I5.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-15 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BLR\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"2262\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"3\",\"passenger-firstname-1\":\"niya\",\"passenger-lastname-1\":\"sharma\",\"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\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"3\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"niya\",\"LastName\":\"sharma\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:07:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"21753-55081-f8f47-15b56\",\"modified\":\"2023-10-05 17:07:44\",\"created\":\"2023-10-05 17:07:44\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"9691680017\",\"ContactNo2\":\"9691680017\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS101400721518\",\"amount\":3460,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:09:46.378\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157603\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"472\",\"eT\":\"320\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"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\":\"2023-10-16T02:00\",\"at\":\"2023-10-16T04:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-BOM\":\"X75SGA\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"niya\",\"lN\":\"sharma\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":3460,\"TAF\":1806,\"NCM\":285,\"NF\":3175,\"BF\":1654,\"IGST\":72},\"afC\":{\"TAF\":{\"MF\":400,\"OT\":1242,\"MFT\":72,\"AGST\":92},\"NCM\":{\"OT\":300,\"TDS\":-15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"874243\",\"TPSysId\":\"874244\",\"TrxId\":\"70682\",\"VersionId\":\"266911\",\"XRefBookingId\":\"DMCS101400721518\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS101400721518\\\",\\\"bookingId_TJ\\\":\\\"TJS101400721518\\\",\\\"FlightNumber\\\":\\\"I5-472\\\",\\\"AirlineName\\\":\\\"AirAsia India\\\",\\\"AirlineCode\\\":\\\"I5\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":null,\\\"IsRefundableTxt\\\":\\\"Non Refundable\\\",\\\"SearchTraceId\\\":\\\"21753-55081-f8f47-15b56\\\",\\\"apiTraceId\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"AirlineSysId\\\":\\\"75\\\",\\\"DepartureTime\\\":\\\"02:00\\\",\\\"ArrivalTime\\\":\\\"04:00\\\",\\\"TravelDate\\\":\\\"2023-10-16T02:00\\\",\\\"LocalFromTime\\\":\\\"2023-10-16 02:00\\\",\\\"FromUTCTime\\\":\\\"2023-10-16T02:00\\\",\\\"LocalToTime\\\":\\\"2023-10-16 04:00\\\",\\\"ToUTCTime\\\":\\\"2023-10-16T04:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"BT\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":120,\\\"DepartureDateTxt\\\":\\\"Mon, 16 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 16 Oct\\\",\\\"FlightDuration\\\":\\\"02h 00m\\\",\\\"SourcePlaceSysId\\\":\\\"2262\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"BLR\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,175\\\",\\\"ApiResultIndex\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/I5.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":1654,\\\"Tax\\\":1806,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1242,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":92,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":3460,\\\"PublishedFare\\\":3175,\\\"PublishedFareAgent\\\":3175,\\\"OfferedFareAgent\\\":3175,\\\"OfferedFare\\\":3175,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":null,\\\"IsRefundableTxt\\\":\\\"Non Refundable\\\",\\\"PriceID\\\":\\\"22-3196554827_0BLRBOMI5472_105844133050545\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PROMO\\\",\\\"fareIdentifierSP\\\":\\\"PROMO\\\",\\\"SeatAvailable\\\":9,\\\"classOfBooking\\\":\\\"BT\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1806,\\\"TotalBaseFare\\\":3460,\\\"BaseFareCal\\\":3175,\\\"BaseFare\\\":1654,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":92,\\\"MFT\\\":72,\\\"OT\\\":1242,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":[]}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":[],\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":3175,\\\"CostToCustomer\\\":3175,\\\"BaseFareCal\\\":3175,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":3175,\\\"intOfferedFare\\\":3175,\\\"intPublishFare\\\":3460,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3175,\\\"CostToAgent\\\":3175,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"719\\\",\\\"originAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Bengaluru\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-16T04:00\\\",\\\"SegFlightNumber\\\":\\\"I5-472\\\",\\\"AirlineCode\\\":\\\"I5\\\",\\\"AirlineName\\\":\\\"AirAsia India\\\",\\\"FareClass\\\":\\\"BT\\\",\\\"originAirportCode\\\":\\\"BLR\\\",\\\"originDepTime\\\":\\\"2023-10-16T02:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":null,\\\"IsBaggage\\\":false,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":120,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":9,\\\"strDepartureDtTime\\\":\\\"02:00\\\",\\\"strArrivalDtTime\\\":\\\"04:00\\\",\\\"FlightDuration\\\":\\\"2h 0m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/I5.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"719\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-3196554827_0BLRBOMI5472_49147121262790\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-15 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BLR\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"2262\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS101400721518\\\",\\\"amount\\\":3460,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-05T17:09:46.378\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"157603\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"I5\\\",\\\"name\\\":\\\"AirAsia India\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"472\\\",\\\"eT\\\":\\\"320\\\"},\\\"stops\\\":0,\\\"duration\\\":120,\\\"da\\\":{\\\"code\\\":\\\"BLR\\\",\\\"name\\\":\\\"Bengaluru Intl Arpt\\\",\\\"cityCode\\\":\\\"BLR\\\",\\\"city\\\":\\\"Bengaluru\\\",\\\"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\\\":\\\"2023-10-16T02:00\\\",\\\"at\\\":\\\"2023-10-16T04:00\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"BLR-BOM\\\":\\\"X75SGA\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"sharma\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"TF\\\":3460,\\\"TAF\\\":1806,\\\"NCM\\\":285,\\\"NF\\\":3175,\\\"BF\\\":1654,\\\"IGST\\\":72},\\\"afC\\\":{\\\"TAF\\\":{\\\"MF\\\":400,\\\"OT\\\":1242,\\\"MFT\\\":72,\\\"AGST\\\":92},\\\"NCM\\\":{\\\"OT\\\":300,\\\"TDS\\\":-15}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"BLR-BOM\\\":\\\"X75SGA\\\"},\\\"ti\\\":\\\"Ms\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"niya\\\",\\\"lN\\\":\\\"sharma\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":3175,\\\"NetPrice\\\":3175,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":3175,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Bengaluru (BLR)-Mumbai (BOM)\",\"Amount\":1654,\"NetAmount\":3175}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS101400721518\",\"bookingId_TJ\":\"TJS101400721518\",\"FlightNumber\":\"I5-472\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"apiTraceId\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2023-10-16T02:00\",\"LocalFromTime\":\"2023-10-16 02:00\",\"FromUTCTime\":\"2023-10-16T02:00\",\"LocalToTime\":\"2023-10-16 04:00\",\"ToUTCTime\":\"2023-10-16T04:00\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 16 Oct\",\"ArrivalDateTxt\":\"Mon, 16 Oct\",\"FlightDuration\":\"02h 00m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,175\",\"ApiResultIndex\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":1654,\"Tax\":1806,\"YQTax\":0,\"OtherCharges\":1242,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3460,\"PublishedFare\":3175,\"PublishedFareAgent\":3175,\"OfferedFareAgent\":3175,\"OfferedFare\":3175,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-3196554827_0BLRBOMI5472_105844133050545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"fareIdentifierSP\":\"PROMO\",\"SeatAvailable\":9,\"classOfBooking\":\"BT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1806,\"TotalBaseFare\":3460,\"BaseFareCal\":3175,\"BaseFare\":1654,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":92,\"MFT\":72,\"OT\":1242,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":[],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3175,\"CostToCustomer\":3175,\"BaseFareCal\":3175,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3175,\"intOfferedFare\":3175,\"intPublishFare\":3460,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3175,\"CostToAgent\":3175,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"719\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-16T04:00\",\"SegFlightNumber\":\"I5-472\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-10-16T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":120,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"719\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-3196554827_0BLRBOMI5472_49147121262790\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"2262\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:07:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"39\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SearchTraceId\":\"21753-55081-f8f47-15b56\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Bengaluru (BLR)\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"16\\/10\\/2023\",\"\"],\"source_city\":[\"BLR\"],\"ContSysId\":[\"0\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"from_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"to_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Bengaluru (BLR)\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-16\"],\"strReturnDate\":\"\",\"sourceCityId\":[2262],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"21753-55081-f8f47-15b56\",\"sourceCityAirportCode\":[\"BLR\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"BLR\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Bengaluru\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"16\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"16 Oct Mon\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-05 17:06:34\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-10-05 17:08:20'),(409,'7fb7a-d1508-fe065-9376c','{\"FlightBookingData\":[{\"bookingId\":\"DMCS104700721545\",\"bookingId_TJ\":\"TJS104700721545\",\"FlightNumber\":\"IX-6304\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"apiTraceId\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:05\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-10-20T15:05\",\"LocalFromTime\":\"2023-10-20 15:05\",\"FromUTCTime\":\"2023-10-20T15:05\",\"LocalToTime\":\"2023-10-20 17:25\",\"ToUTCTime\":\"2023-10-20T17:25\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 20 Oct\",\"ArrivalDateTxt\":\"Fri, 20 Oct\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,003\",\"ApiResultIndex\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":899,\"Tax\":1389,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2288,\"PublishedFare\":2003,\"PublishedFareAgent\":2003,\"OfferedFareAgent\":2003,\"OfferedFare\":2003,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5042278025_0DELBOMIX6304_49644109988726\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1389,\"TotalBaseFare\":2288,\"BaseFareCal\":2003,\"BaseFare\":899,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2003,\"CostToCustomer\":2003,\"BaseFareCal\":2003,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2003,\"intOfferedFare\":2003,\"intPublishFare\":2288,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"679\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-20T17:25\",\"SegFlightNumber\":\"IX-6304\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-20T15:05\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:05\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"114\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:16:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"40\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:16:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"7fb7a-d1508-fe065-9376c\",\"modified\":\"2023-10-05 17:16:19\",\"created\":\"2023-10-05 17:16:19\",\"CustomerMemberSysId\":\"40\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"40\"],\"flight_booking_customer\":[[\"121\"]],\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"20\\/10\\/2023\",\"\"],\"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_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-20\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"7fb7a-d1508-fe065-9376c\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"20\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"20 Oct Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-05 17:14:59\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":{\"679\":{\"1\":{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"}}},\"SelectedMealSessionNew\":{\"679\":{\"1\":{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}}},\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"7fb7a-d1508-fe065-9376c\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"20\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"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_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-20\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"7fb7a-d1508-fe065-9376c\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Mumbai\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"20\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"20 Oct Fri\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-10-05 17:14:59\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS104700721545\\\",\\\"bookingId_TJ\\\":\\\"TJS104700721545\\\",\\\"FlightNumber\\\":\\\"IX-6304\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"7fb7a-d1508-fe065-9376c\\\",\\\"apiTraceId\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"AirlineSysId\\\":\\\"82\\\",\\\"DepartureTime\\\":\\\"15:05\\\",\\\"ArrivalTime\\\":\\\"17:25\\\",\\\"TravelDate\\\":\\\"2023-10-20T15:05\\\",\\\"LocalFromTime\\\":\\\"2023-10-20 15:05\\\",\\\"FromUTCTime\\\":\\\"2023-10-20T15:05\\\",\\\"LocalToTime\\\":\\\"2023-10-20 17:25\\\",\\\"ToUTCTime\\\":\\\"2023-10-20T17:25\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"EC\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":140,\\\"DepartureDateTxt\\\":\\\"Fri, 20 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Fri, 20 Oct\\\",\\\"FlightDuration\\\":\\\"02h 20m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"2,003\\\",\\\"ApiResultIndex\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":899,\\\"Tax\\\":1389,\\\"YQTax\\\":0,\\\"OtherCharges\\\":863,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":54,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":2288,\\\"PublishedFare\\\":2003,\\\"PublishedFareAgent\\\":2003,\\\"OfferedFareAgent\\\":2003,\\\"OfferedFare\\\":2003,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5042278025_0DELBOMIX6304_49644109988726\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":2,\\\"classOfBooking\\\":\\\"EC\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1389,\\\"TotalBaseFare\\\":2288,\\\"BaseFareCal\\\":2003,\\\"BaseFare\\\":899,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":54,\\\"MFT\\\":72,\\\"OT\\\":863,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-BOM\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":2003,\\\"CostToCustomer\\\":2003,\\\"BaseFareCal\\\":2003,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":2003,\\\"intOfferedFare\\\":2003,\\\"intPublishFare\\\":2288,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"679\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-20T17:25\\\",\\\"SegFlightNumber\\\":\\\"IX-6304\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"EC\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-20T15:05\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":140,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"strDepartureDtTime\\\":\\\"15:05\\\",\\\"strArrivalDtTime\\\":\\\"17:25\\\",\\\"FlightDuration\\\":\\\"2h 20m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-19 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"{\\\"679\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"}}}\",\"SelectedMealSessionNew\":\"{\\\"679\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}}}\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"rahul \",\"passenger-lastname-1\":\"singh\",\"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\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"rahul \",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:16:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"7fb7a-d1508-fe065-9376c\",\"modified\":\"2023-10-05 17:16:19\",\"created\":\"2023-10-05 17:16:19\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"9691680017\",\"ContactNo2\":\"9691680017\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS104700721545\",\"amount\":5138,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:18:20.942\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157607\",\"fD\":{\"aI\":{\"code\":\"IX\",\"name\":\"AI Express\",\"isLcc\":true},\"fN\":\"6304\",\"eT\":\"738\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-20T15:05\",\"at\":\"2023-10-20T17:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-BOM\":{\"code\":\"PBAB\",\"amount\":2250,\"desc\":\"+ 5 kg Xcess Baggage\"}},\"ssrMealInfos\":{\"DEL-BOM\":{\"code\":\"VMCB\",\"amount\":600,\"desc\":\"Vegan Moilee Curry with Coconut Rice\"}},\"pnrDetails\":{\"DEL-BOM\":\"FU4D9V\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"rahul\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":5138,\"SSRP\":2850,\"IGST\":72,\"TAF\":1389,\"NCM\":285,\"BF\":899,\"NF\":4853},\"afC\":{\"SSRP\":{\"OT\":2850},\"TAF\":{\"OT\":863,\"MF\":400,\"MFT\":72,\"AGST\":54},\"NCM\":{\"OT\":300,\"TDS\":-15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"874278\",\"TPSysId\":\"874279\",\"TrxId\":\"70685\",\"VersionId\":\"266919\",\"XRefBookingId\":\"DMCS104700721545\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS104700721545\\\",\\\"bookingId_TJ\\\":\\\"TJS104700721545\\\",\\\"FlightNumber\\\":\\\"IX-6304\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"7fb7a-d1508-fe065-9376c\\\",\\\"apiTraceId\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"AirlineSysId\\\":\\\"82\\\",\\\"DepartureTime\\\":\\\"15:05\\\",\\\"ArrivalTime\\\":\\\"17:25\\\",\\\"TravelDate\\\":\\\"2023-10-20T15:05\\\",\\\"LocalFromTime\\\":\\\"2023-10-20 15:05\\\",\\\"FromUTCTime\\\":\\\"2023-10-20T15:05\\\",\\\"LocalToTime\\\":\\\"2023-10-20 17:25\\\",\\\"ToUTCTime\\\":\\\"2023-10-20T17:25\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"EC\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":140,\\\"DepartureDateTxt\\\":\\\"Fri, 20 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Fri, 20 Oct\\\",\\\"FlightDuration\\\":\\\"02h 20m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"2,003\\\",\\\"ApiResultIndex\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":899,\\\"Tax\\\":1389,\\\"YQTax\\\":0,\\\"OtherCharges\\\":863,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":54,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":2288,\\\"PublishedFare\\\":2003,\\\"PublishedFareAgent\\\":2003,\\\"OfferedFareAgent\\\":2003,\\\"OfferedFare\\\":2003,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-5042278025_0DELBOMIX6304_49644109988726\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":2,\\\"classOfBooking\\\":\\\"EC\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1389,\\\"TotalBaseFare\\\":2288,\\\"BaseFareCal\\\":2003,\\\"BaseFare\\\":899,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":54,\\\"MFT\\\":72,\\\"OT\\\":863,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-BOM\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":2003,\\\"CostToCustomer\\\":2003,\\\"BaseFareCal\\\":2003,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":2003,\\\"intOfferedFare\\\":2003,\\\"intPublishFare\\\":2288,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2003,\\\"CostToAgent\\\":2003,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"679\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-20T17:25\\\",\\\"SegFlightNumber\\\":\\\"IX-6304\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"EC\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-20T15:05\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":140,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"strDepartureDtTime\\\":\\\"15:05\\\",\\\"strArrivalDtTime\\\":\\\"17:25\\\",\\\"FlightDuration\\\":\\\"2h 20m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"679\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-5042278025_0DELBOMIX6304_106300207025738\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-19 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS104700721545\\\",\\\"amount\\\":5138,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-05T17:18:20.942\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"157607\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"IX\\\",\\\"name\\\":\\\"AI Express\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"6304\\\",\\\"eT\\\":\\\"738\\\"},\\\"stops\\\":0,\\\"duration\\\":140,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"aa\\\":{\\\"code\\\":\\\"BOM\\\",\\\"name\\\":\\\"Chhatrapati Shivaji\\\",\\\"cityCode\\\":\\\"BOM\\\",\\\"city\\\":\\\"Mumbai\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-20T15:05\\\",\\\"at\\\":\\\"2023-10-20T17:25\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"ssrBaggageInfos\\\":{\\\"DEL-BOM\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-BOM\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-BOM\\\":\\\"FU4D9V\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"TF\\\":5138,\\\"SSRP\\\":2850,\\\"IGST\\\":72,\\\"TAF\\\":1389,\\\"NCM\\\":285,\\\"BF\\\":899,\\\"NF\\\":4853},\\\"afC\\\":{\\\"SSRP\\\":{\\\"OT\\\":2850},\\\"TAF\\\":{\\\"OT\\\":863,\\\"MF\\\":400,\\\"MFT\\\":72,\\\"AGST\\\":54},\\\"NCM\\\":{\\\"OT\\\":300,\\\"TDS\\\":-15}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"ssrBaggageInfos\\\":{\\\"DEL-BOM\\\":{\\\"code\\\":\\\"PBAB\\\",\\\"amount\\\":2250,\\\"desc\\\":\\\"+ 5 kg Xcess Baggage\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-BOM\\\":{\\\"code\\\":\\\"VMCB\\\",\\\"amount\\\":600,\\\"desc\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}},\\\"pnrDetails\\\":{\\\"DEL-BOM\\\":\\\"FU4D9V\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"rahul\\\",\\\"lN\\\":\\\"singh\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":2003,\\\"NetPrice\\\":2003,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":2003,\\\"MealFare\\\":600,\\\"BaggFare\\\":2250,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Mumbai (BOM)\",\"Amount\":3749,\"NetAmount\":4853}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS104700721545\",\"bookingId_TJ\":\"TJS104700721545\",\"FlightNumber\":\"IX-6304\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"apiTraceId\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:05\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2023-10-20T15:05\",\"LocalFromTime\":\"2023-10-20 15:05\",\"FromUTCTime\":\"2023-10-20T15:05\",\"LocalToTime\":\"2023-10-20 17:25\",\"ToUTCTime\":\"2023-10-20T17:25\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 20 Oct\",\"ArrivalDateTxt\":\"Fri, 20 Oct\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,003\",\"ApiResultIndex\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":899,\"Tax\":1389,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":54,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2288,\"PublishedFare\":2003,\"PublishedFareAgent\":2003,\"OfferedFareAgent\":2003,\"OfferedFare\":2003,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-5042278025_0DELBOMIX6304_49644109988726\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1389,\"TotalBaseFare\":2288,\"BaseFareCal\":2003,\"BaseFare\":899,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":54,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2003,\"CostToCustomer\":2003,\"BaseFareCal\":2003,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2003,\"intOfferedFare\":2003,\"intPublishFare\":2288,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2003,\"CostToAgent\":2003,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"679\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-20T17:25\",\"SegFlightNumber\":\"IX-6304\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-20T15:05\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:05\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-5042278025_0DELBOMIX6304_106300207025738\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:16:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"40\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":{\"679\":{\"1\":{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"}}},\"SelectedMealSessionNew\":{\"679\":{\"1\":{\"Currency\":\"INR\",\"key\":\"679\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}}},\"selectedSeatSession\":null,\"SearchTraceId\":\"7fb7a-d1508-fe065-9376c\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"20\\/10\\/2023\",\"\"],\"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_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-20\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"7fb7a-d1508-fe065-9376c\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"20\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"20 Oct Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-05 17:14:59\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-10-05 17:16:56'),(415,'337f6-ee737-59ee9-1e7ef','{\"FlightBookingData\":[{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-10-22T09:20\",\"LocalFromTime\":\"2023-10-22 09:20\",\"FromUTCTime\":\"2023-10-22T09:20\",\"LocalToTime\":\"2023-10-22 10:45\",\"ToUTCTime\":\"2023-10-22T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 22 Oct\",\"ArrivalDateTxt\":\"Sun, 22 Oct\",\"FlightDuration\":\"01h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,214\",\"ApiResultIndex\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"PublishedFareAgent\":3214,\"OfferedFareAgent\":3214,\"OfferedFare\":3214,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4145341238_0DELIXJSG160_51484912818674\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"TotalBaseFare\":3499,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-10-22T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-22T09:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":85,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0DELIXJSG160_107518161804559\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2023-10-25T09:40\",\"LocalFromTime\":\"2023-10-25 09:40\",\"FromUTCTime\":\"2023-10-25T09:40\",\"LocalToTime\":\"2023-10-25 11:10\",\"ToUTCTime\":\"2023-10-25T11:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 25 Oct\",\"ArrivalDateTxt\":\"Wed, 25 Oct\",\"FlightDuration\":\"02h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,849\",\"ApiResultIndex\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4333,\"Tax\":1302,\"YQTax\":0,\"OtherCharges\":1083,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":219,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5635,\"PublishedFare\":5635,\"PublishedFareAgent\":5635,\"OfferedFareAgent\":5635,\"OfferedFare\":5635,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4145341238_1IXJDEL6E2186_51484914482209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1302,\"TotalBaseFare\":5635,\"BaseFareCal\":5635,\"BaseFare\":4333,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":219,\"MFT\":0,\"OT\":1083,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"IXJ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5635,\"CostToCustomer\":5635,\"BaseFareCal\":5635,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5635,\"intOfferedFare\":5635,\"intPublishFare\":5635,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"660\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-25T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-10-25T09:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0IXJDEL6E2186_107518562765745\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"115\",\"116\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"nikku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:37:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"41\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"nikku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:37:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"modified\":\"2023-10-05 17:37:05\",\"created\":\"2023-10-05 17:37:05\",\"CustomerMemberSysId\":\"41\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"41\"],\"flight_booking_customer\":[[\"122\"],[\"123\"]],\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Jammu (IXJ)\"],\"departure_date\":[\"22\\/10\\/2023\"],\"return_date\":[\"25\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"IXJ\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Jammu, IN - Satwari Arpt (IXJ), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Satwari Arpt (IXJ)\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Jammu (IXJ)\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-22\"],\"strReturnDate\":[\"2023-10-25\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[13021],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"IXJ\"],\"from\":[\"DEL\"],\"to\":[\"IXJ\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Jammu\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Jammu, IN - Satwari Arpt (IXJ), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"22\\/10\\/2023\"],\"return_dates\":[\"25\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"22 Oct Sun\"],\"ReturnDateMobile\":[\"25 Oct Wed\"],\"SearchTime\":\"2023-10-05 17:35:16\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":{\"758\":{\"1\":{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"}},\"660\":{\"1\":{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"}}},\"SelectedMealSessionNew\":{\"758\":{\"1\":{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"}},\"660\":{\"1\":{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"}}},\"selectedSeatSession\":{\"758\":{\"1\":{\"seatNo\":\"2B\",\"seatPosition\":{\"row\":2,\"column\":2},\"isBooked\":false,\"code\":\"2B\",\"amount\":99}},\"660\":{\"1\":{\"seatNo\":\"1C\",\"seatPosition\":{\"row\":1,\"column\":3},\"isBooked\":false,\"isLegroom\":true,\"isAisle\":true,\"code\":\"1C\",\"amount\":1500}}},\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"2\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Jammu (IXJ)\\\"],\\\"departure_date\\\":[\\\"22\\\\\\/10\\\\\\/2023\\\"],\\\"return_date\\\":[\\\"25\\\\\\/10\\\\\\/2023\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"IXJ\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Jammu, IN - Satwari Arpt (IXJ), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Satwari Arpt (IXJ)\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Jammu (IXJ)\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"1-1-1\\\",\\\"strDepatureDate\\\":[\\\"2023-10-22\\\"],\\\"strReturnDate\\\":[\\\"2023-10-25\\\"],\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[13021],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"337f6-ee737-59ee9-1e7ef\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"IXJ\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"IXJ\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Jammu\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Jammu, IN - Satwari Arpt (IXJ), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"2\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"22\\\\\\/10\\\\\\/2023\\\"],\\\"return_dates\\\":[\\\"25\\\\\\/10\\\\\\/2023\\\"],\\\"departure_dateG\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"22 Oct Sun\\\"],\\\"ReturnDateMobile\\\":[\\\"25 Oct Wed\\\"],\\\"SearchTime\\\":\\\"2023-10-05 17:35:16\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS106500721594\\\",\\\"bookingId_TJ\\\":\\\"TJS106500721594\\\",\\\"FlightNumber\\\":\\\"SG-160\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"337f6-ee737-59ee9-1e7ef\\\",\\\"apiTraceId\\\":\\\"4-4145341238_0DELIXJSG160_107518161804559\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"09:20\\\",\\\"ArrivalTime\\\":\\\"10:45\\\",\\\"TravelDate\\\":\\\"2023-10-22T09:20\\\",\\\"LocalFromTime\\\":\\\"2023-10-22 09:20\\\",\\\"FromUTCTime\\\":\\\"2023-10-22T09:20\\\",\\\"LocalToTime\\\":\\\"2023-10-22 10:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-22T10:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":85,\\\"DepartureDateTxt\\\":\\\"Sun, 22 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Sun, 22 Oct\\\",\\\"FlightDuration\\\":\\\"01h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"13021\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"IXJ\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,214\\\",\\\"ApiResultIndex\\\":\\\"4-4145341238_0DELIXJSG160_107518161804559\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2435,\\\"Tax\\\":1064,\\\"YQTax\\\":0,\\\"OtherCharges\\\":468,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":124,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":3499,\\\"PublishedFare\\\":3214,\\\"PublishedFareAgent\\\":3214,\\\"OfferedFareAgent\\\":3214,\\\"OfferedFare\\\":3214,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-4145341238_0DELIXJSG160_51484912818674\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1064,\\\"TotalBaseFare\\\":3499,\\\"BaseFareCal\\\":3214,\\\"BaseFare\\\":2435,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":124,\\\"MFT\\\":72,\\\"OT\\\":468,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-IXJ\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":3214,\\\"CostToCustomer\\\":3214,\\\"BaseFareCal\\\":3214,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":3214,\\\"intOfferedFare\\\":3214,\\\"intPublishFare\\\":3499,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"758\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Satwari Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Jammu\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"IXJ\\\",\\\"destinationArrTime\\\":\\\"2023-10-22T10:45\\\",\\\"SegFlightNumber\\\":\\\"SG-160\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-22T09:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":85,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"09:20\\\",\\\"strArrivalDtTime\\\":\\\"10:45\\\",\\\"FlightDuration\\\":\\\"1h 25m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1D\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4145341238_0DELIXJSG160_107518161804559\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-21 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-24 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"IXJ\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"13021\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},{\\\"bookingId\\\":\\\"DMCS106500721594\\\",\\\"bookingId_TJ\\\":\\\"TJS106500721594\\\",\\\"FlightNumber\\\":\\\"6E-2186\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"337f6-ee737-59ee9-1e7ef\\\",\\\"apiTraceId\\\":\\\"5-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"09:40\\\",\\\"ArrivalTime\\\":\\\"11:10\\\",\\\"TravelDate\\\":\\\"2023-10-25T09:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-25 09:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-25T09:40\\\",\\\"LocalToTime\\\":\\\"2023-10-25 11:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-25T11:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"R\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":90,\\\"DepartureDateTxt\\\":\\\"Wed, 25 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 25 Oct\\\",\\\"FlightDuration\\\":\\\"02h 30m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"13021\\\",\\\"SourceAirportCode\\\":\\\"IXJ\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,849\\\",\\\"ApiResultIndex\\\":\\\"5-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4333,\\\"Tax\\\":1302,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1083,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":219,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":5635,\\\"PublishedFare\\\":5635,\\\"PublishedFareAgent\\\":5635,\\\"OfferedFareAgent\\\":5635,\\\"OfferedFare\\\":5635,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"4-4145341238_1IXJDEL6E2186_51484914482209\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"R\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1302,\\\"TotalBaseFare\\\":5635,\\\"BaseFareCal\\\":5635,\\\"BaseFare\\\":4333,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":219,\\\"MFT\\\":0,\\\"OT\\\":1083,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"IXJ-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg (01 Piece only)\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":5635,\\\"CostToCustomer\\\":5635,\\\"BaseFareCal\\\":5635,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":5635,\\\"intOfferedFare\\\":5635,\\\"intPublishFare\\\":5635,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"660\\\",\\\"originAirportName\\\":\\\"Satwari Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Jammu\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-25T11:10\\\",\\\"SegFlightNumber\\\":\\\"6E-2186\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"IXJ\\\",\\\"originDepTime\\\":\\\"2023-10-25T09:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":90,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"09:40\\\",\\\"strArrivalDtTime\\\":\\\"11:10\\\",\\\"FlightDuration\\\":\\\"1h 30m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-21 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-24 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"IXJ\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"13021\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"{\\\"758\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"}},\\\"660\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"}}}\",\"SelectedMealSessionNew\":\"{\\\"758\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"}},\\\"660\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"}}}\",\"selectedSeatSession\":\"{\\\"758\\\":{\\\"1\\\":{\\\"seatNo\\\":\\\"2B\\\",\\\"seatPosition\\\":{\\\"row\\\":2,\\\"column\\\":2},\\\"isBooked\\\":false,\\\"code\\\":\\\"2B\\\",\\\"amount\\\":99}},\\\"660\\\":{\\\"1\\\":{\\\"seatNo\\\":\\\"1C\\\",\\\"seatPosition\\\":{\\\"row\\\":1,\\\"column\\\":3},\\\"isBooked\\\":false,\\\"isLegroom\\\":true,\\\"isAisle\\\":true,\\\"code\\\":\\\"1C\\\",\\\"amount\\\":1500}}}\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"nikku\",\"passenger-lastname-1\":\"singh\",\"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\":[\"9\",\"0\"],\"SelectBaggage\":[\"0\",\"2\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"nikku\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"nikku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:37:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"modified\":\"2023-10-05 17:37:05\",\"created\":\"2023-10-05 17:37:05\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":[{\"PlanType\":1,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Atmaj                                             \",\"LastName\":\"Wadnerkar                                         \",\"Gender\":0,\"EmailId\":\"atmajw1@gmail.com                                 \",\"ContactNo1\":\"7566821253\",\"ContactNo2\":\"\",\"countrycode\":\"+91       \",\"countrycode2\":null},{\"PlanType\":5,\"MarketType\":2,\"ItemSourceType\":1,\"IsBookingEmail\":1,\"FirstName\":\"Kalpnil                                           \",\"LastName\":\"Jaiswal                                           \",\"Gender\":0,\"EmailId\":\"ktourismandagrosolutions@gmail.com                \",\"ContactNo1\":\"9691680017\",\"ContactNo2\":\"9691680017\",\"countrycode\":\"+91       \",\"countrycode2\":\"+91       \"}]}},\"message\":\"\"},\"_B2BType\":0,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":\"\",\"paymentMode\":\"2\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"59951\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS106500721594\",\"amount\":16033,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-05T17:40:19.884\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"157621\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"160\",\"eT\":\"737\"},\"stops\":0,\"duration\":85,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1D\"},\"aa\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2023-10-22T09:20\",\"at\":\"2023-10-22T10:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"157622\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2186\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"IXJ\",\"name\":\"Satwari Arpt\",\"cityCode\":\"IXJ\",\"city\":\"Jammu\",\"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 2\"},\"dt\":\"2023-10-25T09:40\",\"at\":\"2023-10-25T11:10\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"ssrBaggageInfos\":{\"DEL-IXJ\":{\"code\":\"BOF1\",\"amount\":100,\"desc\":\"Bag Out First with 1 Bag\"},\"IXJ-DEL\":{\"code\":\"XBPB\",\"amount\":4500,\"desc\":\"Excess Baggage - 10 Kg\"}},\"ssrMealInfos\":{\"DEL-IXJ\":{\"code\":\"VCC2\",\"amount\":300,\"desc\":\"Vegetable in Red Thai Curry with Steamed Rice\"},\"IXJ-DEL\":{\"code\":\"TCSW\",\"amount\":400,\"desc\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"}},\"ssrSeatInfos\":{\"DEL-IXJ\":{\"code\":\"2B\",\"amount\":99},\"IXJ-DEL\":{\"code\":\"1C\",\"amount\":1500}},\"pnrDetails\":{\"DEL-IXJ\":\"B53DRI\",\"IXJ-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"nikku\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":15748,\"SSRP\":6899,\"NCM\":285,\"TAF\":2366,\"BF\":6768,\"TF\":16033,\"IGST\":72},\"afC\":{\"SSRP\":{\"OT\":6899},\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"OT\":1551,\"MFT\":72,\"YQ\":0,\"AGST\":343,\"MF\":400}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"874372\",\"TPSysId\":\"874373\",\"TrxId\":\"70695\",\"VersionId\":\"266952\",\"XRefBookingId\":\"DMCS106500721594\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS106500721594\\\",\\\"bookingId_TJ\\\":\\\"TJS106500721594\\\",\\\"FlightNumber\\\":\\\"SG-160\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"337f6-ee737-59ee9-1e7ef\\\",\\\"apiTraceId\\\":\\\"4-4145341238_0DELIXJSG160_107518161804559\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"09:20\\\",\\\"ArrivalTime\\\":\\\"10:45\\\",\\\"TravelDate\\\":\\\"2023-10-22T09:20\\\",\\\"LocalFromTime\\\":\\\"2023-10-22 09:20\\\",\\\"FromUTCTime\\\":\\\"2023-10-22T09:20\\\",\\\"LocalToTime\\\":\\\"2023-10-22 10:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-22T10:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":85,\\\"DepartureDateTxt\\\":\\\"Sun, 22 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Sun, 22 Oct\\\",\\\"FlightDuration\\\":\\\"01h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"13021\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"IXJ\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,214\\\",\\\"ApiResultIndex\\\":\\\"4-4145341238_0DELIXJSG160_107518161804559\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2435,\\\"Tax\\\":1064,\\\"YQTax\\\":0,\\\"OtherCharges\\\":468,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":124,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":3499,\\\"PublishedFare\\\":3214,\\\"PublishedFareAgent\\\":3214,\\\"OfferedFareAgent\\\":3214,\\\"OfferedFare\\\":3214,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"4-4145341238_0DELIXJSG160_51484912818674\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1064,\\\"TotalBaseFare\\\":3499,\\\"BaseFareCal\\\":3214,\\\"BaseFare\\\":2435,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":124,\\\"MFT\\\":72,\\\"OT\\\":468,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-IXJ\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":3214,\\\"CostToCustomer\\\":3214,\\\"BaseFareCal\\\":3214,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":3214,\\\"intOfferedFare\\\":3214,\\\"intPublishFare\\\":3499,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3214,\\\"CostToAgent\\\":3214,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"758\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Satwari Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Jammu\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"IXJ\\\",\\\"destinationArrTime\\\":\\\"2023-10-22T10:45\\\",\\\"SegFlightNumber\\\":\\\"SG-160\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-22T09:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":85,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"09:20\\\",\\\"strArrivalDtTime\\\":\\\"10:45\\\",\\\"FlightDuration\\\":\\\"1h 25m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1D\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4145341238_0DELIXJSG160_107518161804559\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-21 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-24 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"IXJ\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"13021\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS106500721594\\\",\\\"amount\\\":16033,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-05T17:40:19.884\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"157621\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"160\\\",\\\"eT\\\":\\\"737\\\"},\\\"stops\\\":0,\\\"duration\\\":85,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1D\\\"},\\\"aa\\\":{\\\"code\\\":\\\"IXJ\\\",\\\"name\\\":\\\"Satwari Arpt\\\",\\\"cityCode\\\":\\\"IXJ\\\",\\\"city\\\":\\\"Jammu\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-22T09:20\\\",\\\"at\\\":\\\"2023-10-22T10:45\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]},{\\\"sI\\\":[{\\\"id\\\":\\\"157622\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"6E\\\",\\\"name\\\":\\\"IndiGo\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"2186\\\",\\\"eT\\\":\\\"320\\\"},\\\"stops\\\":0,\\\"duration\\\":90,\\\"da\\\":{\\\"code\\\":\\\"IXJ\\\",\\\"name\\\":\\\"Satwari Arpt\\\",\\\"cityCode\\\":\\\"IXJ\\\",\\\"city\\\":\\\"Jammu\\\",\\\"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 2\\\"},\\\"dt\\\":\\\"2023-10-25T09:40\\\",\\\"at\\\":\\\"2023-10-25T11:10\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"ssrBaggageInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"BOF1\\\",\\\"amount\\\":100,\\\"desc\\\":\\\"Bag Out First with 1 Bag\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"XBPB\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"Excess Baggage - 10 Kg\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"VCC2\\\",\\\"amount\\\":300,\\\"desc\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"TCSW\\\",\\\"amount\\\":400,\\\"desc\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"}},\\\"ssrSeatInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"2B\\\",\\\"amount\\\":99},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"1C\\\",\\\"amount\\\":1500}},\\\"pnrDetails\\\":{\\\"DEL-IXJ\\\":\\\"B53DRI\\\",\\\"IXJ-DEL\\\":\\\"TESTPNR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"nikku\\\",\\\"lN\\\":\\\"singh\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"NF\\\":15748,\\\"SSRP\\\":6899,\\\"NCM\\\":285,\\\"TAF\\\":2366,\\\"BF\\\":6768,\\\"TF\\\":16033,\\\"IGST\\\":72},\\\"afC\\\":{\\\"SSRP\\\":{\\\"OT\\\":6899},\\\"NCM\\\":{\\\"TDS\\\":-15,\\\"OT\\\":300},\\\"TAF\\\":{\\\"OT\\\":1551,\\\"MFT\\\":72,\\\"YQ\\\":0,\\\"AGST\\\":343,\\\"MF\\\":400}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"ssrBaggageInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"BOF1\\\",\\\"amount\\\":100,\\\"desc\\\":\\\"Bag Out First with 1 Bag\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"XBPB\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"Excess Baggage - 10 Kg\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"VCC2\\\",\\\"amount\\\":300,\\\"desc\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"TCSW\\\",\\\"amount\\\":400,\\\"desc\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"}},\\\"ssrSeatInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"2B\\\",\\\"amount\\\":99},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"1C\\\",\\\"amount\\\":1500}},\\\"pnrDetails\\\":{\\\"DEL-IXJ\\\":\\\"B53DRI\\\",\\\"IXJ-DEL\\\":\\\"TESTPNR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"nikku\\\",\\\"lN\\\":\\\"singh\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":3214,\\\"NetPrice\\\":3214,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":3214,\\\"MealFare\\\":300,\\\"BaggFare\\\":100,\\\"SeatFare\\\":99}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Jammu (IXJ)-Delhi (DEL)\",\"Amount\":2934,\"NetAmount\":3713},{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"874372\",\"TPSysId\":\"874373\",\"TrxId\":\"70695\",\"VersionId\":\"266953\",\"XRefBookingId\":\"DMCS106500721594\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS106500721594\\\",\\\"bookingId_TJ\\\":\\\"TJS106500721594\\\",\\\"FlightNumber\\\":\\\"6E-2186\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"337f6-ee737-59ee9-1e7ef\\\",\\\"apiTraceId\\\":\\\"5-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"09:40\\\",\\\"ArrivalTime\\\":\\\"11:10\\\",\\\"TravelDate\\\":\\\"2023-10-25T09:40\\\",\\\"LocalFromTime\\\":\\\"2023-10-25 09:40\\\",\\\"FromUTCTime\\\":\\\"2023-10-25T09:40\\\",\\\"LocalToTime\\\":\\\"2023-10-25 11:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-25T11:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"R\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":90,\\\"DepartureDateTxt\\\":\\\"Wed, 25 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 25 Oct\\\",\\\"FlightDuration\\\":\\\"02h 30m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"13021\\\",\\\"SourceAirportCode\\\":\\\"IXJ\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,849\\\",\\\"ApiResultIndex\\\":\\\"5-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4333,\\\"Tax\\\":1302,\\\"YQTax\\\":0,\\\"OtherCharges\\\":1083,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":219,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":5635,\\\"PublishedFare\\\":5635,\\\"PublishedFareAgent\\\":5635,\\\"OfferedFareAgent\\\":5635,\\\"OfferedFare\\\":5635,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"4-4145341238_1IXJDEL6E2186_51484914482209\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"R\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1302,\\\"TotalBaseFare\\\":5635,\\\"BaseFareCal\\\":5635,\\\"BaseFare\\\":4333,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":0,\\\"AGST\\\":219,\\\"MFT\\\":0,\\\"OT\\\":1083,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"IXJ-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg (01 Piece only)\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":5635,\\\"CostToCustomer\\\":5635,\\\"BaseFareCal\\\":5635,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":5635,\\\"intOfferedFare\\\":5635,\\\"intPublishFare\\\":5635,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5635,\\\"CostToAgent\\\":5635,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"660\\\",\\\"originAirportName\\\":\\\"Satwari Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Jammu\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-25T11:10\\\",\\\"SegFlightNumber\\\":\\\"6E-2186\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"IXJ\\\",\\\"originDepTime\\\":\\\"2023-10-25T09:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":90,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"09:40\\\",\\\"strArrivalDtTime\\\":\\\"11:10\\\",\\\"FlightDuration\\\":\\\"1h 30m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"660\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":395,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"758\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-4145341238_0IXJDEL6E2186_107518562765745\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-21 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-24 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"IXJ\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"13021\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS106500721594\\\",\\\"amount\\\":16033,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-05T17:40:19.884\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"157621\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"160\\\",\\\"eT\\\":\\\"737\\\"},\\\"stops\\\":0,\\\"duration\\\":85,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1D\\\"},\\\"aa\\\":{\\\"code\\\":\\\"IXJ\\\",\\\"name\\\":\\\"Satwari Arpt\\\",\\\"cityCode\\\":\\\"IXJ\\\",\\\"city\\\":\\\"Jammu\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\"},\\\"dt\\\":\\\"2023-10-22T09:20\\\",\\\"at\\\":\\\"2023-10-22T10:45\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0}]},{\\\"sI\\\":[{\\\"id\\\":\\\"157622\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"6E\\\",\\\"name\\\":\\\"IndiGo\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"2186\\\",\\\"eT\\\":\\\"320\\\"},\\\"stops\\\":0,\\\"duration\\\":90,\\\"da\\\":{\\\"code\\\":\\\"IXJ\\\",\\\"name\\\":\\\"Satwari Arpt\\\",\\\"cityCode\\\":\\\"IXJ\\\",\\\"city\\\":\\\"Jammu\\\",\\\"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 2\\\"},\\\"dt\\\":\\\"2023-10-25T09:40\\\",\\\"at\\\":\\\"2023-10-25T11:10\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"ssrBaggageInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"BOF1\\\",\\\"amount\\\":100,\\\"desc\\\":\\\"Bag Out First with 1 Bag\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"XBPB\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"Excess Baggage - 10 Kg\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"VCC2\\\",\\\"amount\\\":300,\\\"desc\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"TCSW\\\",\\\"amount\\\":400,\\\"desc\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"}},\\\"ssrSeatInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"2B\\\",\\\"amount\\\":99},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"1C\\\",\\\"amount\\\":1500}},\\\"pnrDetails\\\":{\\\"DEL-IXJ\\\":\\\"B53DRI\\\",\\\"IXJ-DEL\\\":\\\"TESTPNR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"nikku\\\",\\\"lN\\\":\\\"singh\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"NF\\\":15748,\\\"SSRP\\\":6899,\\\"NCM\\\":285,\\\"TAF\\\":2366,\\\"BF\\\":6768,\\\"TF\\\":16033,\\\"IGST\\\":72},\\\"afC\\\":{\\\"SSRP\\\":{\\\"OT\\\":6899},\\\"NCM\\\":{\\\"TDS\\\":-15,\\\"OT\\\":300},\\\"TAF\\\":{\\\"OT\\\":1551,\\\"MFT\\\":72,\\\"YQ\\\":0,\\\"AGST\\\":343,\\\"MF\\\":400}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"ssrBaggageInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"BOF1\\\",\\\"amount\\\":100,\\\"desc\\\":\\\"Bag Out First with 1 Bag\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"XBPB\\\",\\\"amount\\\":4500,\\\"desc\\\":\\\"Excess Baggage - 10 Kg\\\"}},\\\"ssrMealInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"VCC2\\\",\\\"amount\\\":300,\\\"desc\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"TCSW\\\",\\\"amount\\\":400,\\\"desc\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"}},\\\"ssrSeatInfos\\\":{\\\"DEL-IXJ\\\":{\\\"code\\\":\\\"2B\\\",\\\"amount\\\":99},\\\"IXJ-DEL\\\":{\\\"code\\\":\\\"1C\\\",\\\"amount\\\":1500}},\\\"pnrDetails\\\":{\\\"DEL-IXJ\\\":\\\"B53DRI\\\",\\\"IXJ-DEL\\\":\\\"TESTPNR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"nikku\\\",\\\"lN\\\":\\\"singh\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":5635,\\\"NetPrice\\\":5635,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":5635,\\\"MealFare\\\":400,\\\"BaggFare\\\":4500,\\\"SeatFare\\\":1500}]\",\"Keys\":1,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Jammu (IXJ)-Delhi (DEL)\",\"Amount\":10733,\"NetAmount\":12035}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"SG-160\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:45\",\"TravelDate\":\"2023-10-22T09:20\",\"LocalFromTime\":\"2023-10-22 09:20\",\"FromUTCTime\":\"2023-10-22T09:20\",\"LocalToTime\":\"2023-10-22 10:45\",\"ToUTCTime\":\"2023-10-22T10:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 22 Oct\",\"ArrivalDateTxt\":\"Sun, 22 Oct\",\"FlightDuration\":\"01h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,214\",\"ApiResultIndex\":\"4-4145341238_0DELIXJSG160_107518161804559\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2435,\"Tax\":1064,\"YQTax\":0,\"OtherCharges\":468,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3499,\"PublishedFare\":3214,\"PublishedFareAgent\":3214,\"OfferedFareAgent\":3214,\"OfferedFare\":3214,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-4145341238_0DELIXJSG160_51484912818674\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1064,\"TotalBaseFare\":3499,\"BaseFareCal\":3214,\"BaseFare\":2435,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":124,\"MFT\":72,\"OT\":468,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-IXJ\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":3214,\"CostToCustomer\":3214,\"BaseFareCal\":3214,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":3214,\"intOfferedFare\":3214,\"intPublishFare\":3499,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3214,\"CostToAgent\":3214,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Satwari Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jammu\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXJ\",\"destinationArrTime\":\"2023-10-22T10:45\",\"SegFlightNumber\":\"SG-160\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-22T09:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":85,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0DELIXJSG160_107518161804559\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS106500721594\",\"bookingId_TJ\":\"TJS106500721594\",\"FlightNumber\":\"6E-2186\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"apiTraceId\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2023-10-25T09:40\",\"LocalFromTime\":\"2023-10-25 09:40\",\"FromUTCTime\":\"2023-10-25T09:40\",\"LocalToTime\":\"2023-10-25 11:10\",\"ToUTCTime\":\"2023-10-25T11:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 25 Oct\",\"ArrivalDateTxt\":\"Wed, 25 Oct\",\"FlightDuration\":\"02h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"13021\",\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,849\",\"ApiResultIndex\":\"5-4145341238_0IXJDEL6E2186_107518562765745\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4333,\"Tax\":1302,\"YQTax\":0,\"OtherCharges\":1083,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":219,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5635,\"PublishedFare\":5635,\"PublishedFareAgent\":5635,\"OfferedFareAgent\":5635,\"OfferedFare\":5635,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4145341238_1IXJDEL6E2186_51484914482209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1302,\"TotalBaseFare\":5635,\"BaseFareCal\":5635,\"BaseFare\":4333,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":0,\"AGST\":219,\"MFT\":0,\"OT\":1083,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"IXJ-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5635,\"CostToCustomer\":5635,\"BaseFareCal\":5635,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5635,\"intOfferedFare\":5635,\"intPublishFare\":5635,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5635,\"CostToAgent\":5635,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"660\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-25T11:10\",\"SegFlightNumber\":\"6E-2186\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-10-25T09:40\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"CJSW\",\"Price\":500,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":395,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-4145341238_0IXJDEL6E2186_107518562765745\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-21 12:00\",\"localToDateTime\":\"2023-10-24 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"IXJ\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"13021\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"nikku\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-05 17:37:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"41\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":{\"758\":{\"1\":{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"}},\"660\":{\"1\":{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"}}},\"SelectedMealSessionNew\":{\"758\":{\"1\":{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"}},\"660\":{\"1\":{\"Currency\":\"INR\",\"key\":\"660\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"}}},\"selectedSeatSession\":{\"758\":{\"1\":{\"seatNo\":\"2B\",\"seatPosition\":{\"row\":2,\"column\":2},\"isBooked\":false,\"code\":\"2B\",\"amount\":99}},\"660\":{\"1\":{\"seatNo\":\"1C\",\"seatPosition\":{\"row\":1,\"column\":3},\"isBooked\":false,\"isLegroom\":true,\"isAisle\":true,\"code\":\"1C\",\"amount\":1500}}},\"SearchTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Jammu (IXJ)\"],\"departure_date\":[\"22\\/10\\/2023\"],\"return_date\":[\"25\\/10\\/2023\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"IXJ\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Jammu, IN - Satwari Arpt (IXJ), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Satwari Arpt (IXJ)\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Jammu (IXJ)\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-22\"],\"strReturnDate\":[\"2023-10-25\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[13021],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"337f6-ee737-59ee9-1e7ef\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"IXJ\"],\"from\":[\"DEL\"],\"to\":[\"IXJ\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Jammu\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Jammu, IN - Satwari Arpt (IXJ), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"22\\/10\\/2023\"],\"return_dates\":[\"25\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"22 Oct Sun\"],\"ReturnDateMobile\":[\"25 Oct Wed\"],\"SearchTime\":\"2023-10-05 17:35:16\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-10-05 17:38:54'),(416,'6fb07-acd55-81935-c79f4','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"10\\/10\\/2023\",\"check_out\":\"11\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-10\",\"checkoutDate\":\"2023-10-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-10\",\"strCheckout\":\"2023-10-11\",\"SearchHotelTraceId\":\"6fb07-acd55-81935-c79f4\",\"interNationalSearch\":false}','2023-10-05 19:01:13'),(417,'d75f6-a3880-ac04f-ab0cc','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"17\\/10\\/2023\",\"check_out\":\"18\\/10\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"17\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-10-17\",\"checkoutDate\":\"2023-10-18\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-17\",\"strCheckout\":\"2023-10-18\",\"SearchHotelTraceId\":\"d75f6-a3880-ac04f-ab0cc\",\"interNationalSearch\":false}','2023-10-06 10:57:55'),(418,'54382-a07c7-40801-71786','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"19\\/10\\/2023\",\"check_out\":\"20\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"19\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-19\",\"checkoutDate\":\"2023-10-20\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-19\",\"strCheckout\":\"2023-10-20\",\"SearchHotelTraceId\":\"54382-a07c7-40801-71786\",\"interNationalSearch\":false}','2023-10-06 11:36:05'),(419,'2021f-159f4-df4e1-56081','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"19\\/10\\/2023\",\"check_out\":\"20\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"19\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-19\",\"checkoutDate\":\"2023-10-20\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-19\",\"strCheckout\":\"2023-10-20\",\"SearchHotelTraceId\":\"2021f-159f4-df4e1-56081\",\"interNationalSearch\":false}','2023-10-06 11:52:01'),(420,'a98ea-84f7f-77ccb-5cb54','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"22\\/10\\/2023\",\"check_out\":\"25\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"22\\/10\\/2023\",\"NoOfNights\":3,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-22\",\"checkoutDate\":\"2023-10-25\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":3,\"strCheckin\":\"2023-10-22\",\"strCheckout\":\"2023-10-25\",\"SearchHotelTraceId\":\"a98ea-84f7f-77ccb-5cb54\",\"interNationalSearch\":false}','2023-10-06 11:52:24'),(421,'57264-3186b-296e0-290c8','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"18\\/10\\/2023\",\"check_out\":\"19\\/10\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"18\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-18\",\"checkoutDate\":\"2023-10-19\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-18\",\"strCheckout\":\"2023-10-19\",\"SearchHotelTraceId\":\"57264-3186b-296e0-290c8\",\"interNationalSearch\":false}','2023-10-06 12:19:48'),(422,'69218-661de-38abb-a4bba','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"17\\/10\\/2023\",\"check_out\":\"21\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"17\\/10\\/2023\",\"NoOfNights\":4,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-17\",\"checkoutDate\":\"2023-10-21\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":4,\"strCheckin\":\"2023-10-17\",\"strCheckout\":\"2023-10-21\",\"SearchHotelTraceId\":\"69218-661de-38abb-a4bba\",\"interNationalSearch\":false}','2023-10-06 16:18:02'),(423,'f380f-d52bd-1e07c-af338','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"24\\/10\\/2023\",\"check_out\":\"25\\/10\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-24\",\"checkoutDate\":\"2023-10-25\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-24\",\"strCheckout\":\"2023-10-25\",\"SearchHotelTraceId\":\"f380f-d52bd-1e07c-af338\",\"interNationalSearch\":false}','2023-10-12 17:10:48'),(424,'6','{\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"10000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"13\\/10\\/2023\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2023-10-13 10:45:39'),(430,'13ebb-04493-e1ab0-7334a','{\"FlightBookingData\":[{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"G8-717\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:45\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-10-23T16:45\",\"LocalFromTime\":\"2023-10-23 16:45\",\"FromUTCTime\":\"2023-10-23T16:45\",\"LocalToTime\":\"2023-10-23 21:10\",\"ToUTCTime\":\"2023-10-23T21:10\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Mon, 23 Oct\",\"ArrivalDateTxt\":\"Mon, 23 Oct\",\"FlightDuration\":\"04h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,455\",\"ApiResultIndex\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2500,\"Tax\":2240,\"YQTax\":700,\"OtherCharges\":898,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4740,\"PublishedFare\":4455,\"PublishedFareAgent\":4455,\"OfferedFareAgent\":4455,\"OfferedFare\":4455,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2240,\"TotalBaseFare\":4740,\"BaseFareCal\":4455,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":700,\"AGST\":170,\"MFT\":72,\"OT\":898,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-AMD\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"AMD-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4455,\"CostToCustomer\":4455,\"BaseFareCal\":4455,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4455,\"intOfferedFare\":4455,\"intPublishFare\":4740,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"326\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-10-23T18:20\",\"SegFlightNumber\":\"G8-717\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-23T16:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":95,\"GroundTime\":95,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"16:45\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"327\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-23T21:10\",\"SegFlightNumber\":\"G8-537\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-10-23T19:55\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":75,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"SG-8191\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-26T21:20\",\"LocalFromTime\":\"2023-10-26 21:20\",\"FromUTCTime\":\"2023-10-26T21:20\",\"LocalToTime\":\"2023-10-26 23:45\",\"ToUTCTime\":\"2023-10-26T23:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 26 Oct\",\"ArrivalDateTxt\":\"Thu, 26 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,987\",\"ApiResultIndex\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3150,\"Tax\":1382,\"YQTax\":900,\"OtherCharges\":272,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4532,\"PublishedFare\":4532,\"PublishedFareAgent\":4532,\"OfferedFareAgent\":4532,\"OfferedFare\":4532,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"1-3983042595_1BOMDELSG8191_15048389831231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1382,\"TotalBaseFare\":4532,\"BaseFareCal\":4532,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":900,\"AGST\":210,\"MFT\":0,\"OT\":272,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BOM-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4532,\"CostToCustomer\":4532,\"BaseFareCal\":4532,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4532,\"intOfferedFare\":4532,\"intPublishFare\":4532,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"783\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-26T23:45\",\"SegFlightNumber\":\"SG-8191\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-10-26T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-3983042595_1BOMDELSG8191_15019825117680\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"117\",\"118\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"prince\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-13 10:47:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"42\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"prince\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-13 10:47:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"13ebb-04493-e1ab0-7334a\",\"modified\":\"2023-10-13 10:47:29\",\"created\":\"2023-10-13 10:47:29\",\"CustomerMemberSysId\":\"42\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"42\"],\"flight_booking_customer\":[[\"124\"],[\"125\"]],\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Mumbai (BOM)\"],\"departure_date\":[\"23\\/10\\/2023\"],\"return_date\":[\"26\\/10\\/2023\"],\"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)\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Mumbai (BOM)\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-23\"],\"strReturnDate\":[\"2023-10-26\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"13ebb-04493-e1ab0-7334a\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"23\\/10\\/2023\"],\"return_dates\":[\"26\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"23 Oct Mon\"],\"ReturnDateMobile\":[\"26 Oct Thu\"],\"SearchTime\":\"2023-10-13 10:46:37\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"13ebb-04493-e1ab0-7334a\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"2\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\"],\\\"departure_date\\\":[\\\"23\\\\\\/10\\\\\\/2023\\\"],\\\"return_date\\\":[\\\"26\\\\\\/10\\\\\\/2023\\\"],\\\"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)\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"1-1-1\\\",\\\"strDepatureDate\\\":[\\\"2023-10-23\\\"],\\\"strReturnDate\\\":[\\\"2023-10-26\\\"],\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"13ebb-04493-e1ab0-7334a\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Mumbai\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"2\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"23\\\\\\/10\\\\\\/2023\\\"],\\\"return_dates\\\":[\\\"26\\\\\\/10\\\\\\/2023\\\"],\\\"departure_dateG\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"23 Oct Mon\\\"],\\\"ReturnDateMobile\\\":[\\\"26 Oct Thu\\\"],\\\"SearchTime\\\":\\\"2023-10-13 10:46:37\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS108900728515\\\",\\\"bookingId_TJ\\\":\\\"TJS108900728515\\\",\\\"FlightNumber\\\":\\\"G8-717\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"13ebb-04493-e1ab0-7334a\\\",\\\"apiTraceId\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"AirlineSysId\\\":\\\"240\\\",\\\"DepartureTime\\\":\\\"16:45\\\",\\\"ArrivalTime\\\":\\\"21:10\\\",\\\"TravelDate\\\":\\\"2023-10-23T16:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-23 16:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-23T16:45\\\",\\\"LocalToTime\\\":\\\"2023-10-23 21:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-23T21:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"GS\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"GroundTime\\\":95,\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"FlyingMinutes\\\":265,\\\"DepartureDateTxt\\\":\\\"Mon, 23 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 23 Oct\\\",\\\"FlightDuration\\\":\\\"04h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"4,455\\\",\\\"ApiResultIndex\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2500,\\\"Tax\\\":2240,\\\"YQTax\\\":700,\\\"OtherCharges\\\":898,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":170,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":4740,\\\"PublishedFare\\\":4455,\\\"PublishedFareAgent\\\":4455,\\\"OfferedFareAgent\\\":4455,\\\"OfferedFare\\\":4455,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":6,\\\"classOfBooking\\\":\\\"GS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":2240,\\\"TotalBaseFare\\\":4740,\\\"BaseFareCal\\\":4455,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":700,\\\"AGST\\\":170,\\\"MFT\\\":72,\\\"OT\\\":898,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-AMD\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"AMD-BOM\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":4455,\\\"CostToCustomer\\\":4455,\\\"BaseFareCal\\\":4455,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":4455,\\\"intOfferedFare\\\":4455,\\\"intPublishFare\\\":4740,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"326\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Ahmedabad\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"AMD\\\",\\\"destinationArrTime\\\":\\\"2023-10-23T18:20\\\",\\\"SegFlightNumber\\\":\\\"G8-717\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-23T16:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":95,\\\"GroundTime\\\":95,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"16:45\\\",\\\"strArrivalDtTime\\\":\\\"18:20\\\",\\\"FlightDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"327\\\",\\\"originAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Ahmedabad\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-23T21:10\\\",\\\"SegFlightNumber\\\":\\\"G8-537\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"AMD\\\",\\\"originDepTime\\\":\\\"2023-10-23T19:55\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":75,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"19:55\\\",\\\"strArrivalDtTime\\\":\\\"21:10\\\",\\\"FlightDuration\\\":\\\"1h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"30KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"5KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"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\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-22 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-25 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},{\\\"bookingId\\\":\\\"DMCS108900728515\\\",\\\"bookingId_TJ\\\":\\\"TJS108900728515\\\",\\\"FlightNumber\\\":\\\"SG-8191\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"13ebb-04493-e1ab0-7334a\\\",\\\"apiTraceId\\\":\\\"4-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"21:20\\\",\\\"ArrivalTime\\\":\\\"23:45\\\",\\\"TravelDate\\\":\\\"2023-10-26T21:20\\\",\\\"LocalFromTime\\\":\\\"2023-10-26 21:20\\\",\\\"FromUTCTime\\\":\\\"2023-10-26T21:20\\\",\\\"LocalToTime\\\":\\\"2023-10-26 23:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-26T23:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":145,\\\"DepartureDateTxt\\\":\\\"Thu, 26 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 26 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,987\\\",\\\"ApiResultIndex\\\":\\\"4-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":3150,\\\"Tax\\\":1382,\\\"YQTax\\\":900,\\\"OtherCharges\\\":272,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":210,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":4532,\\\"PublishedFare\\\":4532,\\\"PublishedFareAgent\\\":4532,\\\"OfferedFareAgent\\\":4532,\\\"OfferedFare\\\":4532,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"1-3983042595_1BOMDELSG8191_15048389831231\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1382,\\\"TotalBaseFare\\\":4532,\\\"BaseFareCal\\\":4532,\\\"BaseFare\\\":3150,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":900,\\\"AGST\\\":210,\\\"MFT\\\":0,\\\"OT\\\":272,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"BOM-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":4532,\\\"CostToCustomer\\\":4532,\\\"BaseFareCal\\\":4532,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":4532,\\\"intOfferedFare\\\":4532,\\\"intPublishFare\\\":4532,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"783\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-26T23:45\\\",\\\"SegFlightNumber\\\":\\\"SG-8191\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2023-10-26T21:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":145,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"21:20\\\",\\\"strArrivalDtTime\\\":\\\"23:45\\\",\\\"FlightDuration\\\":\\\"2h 25m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-22 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-25 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"prince\",\"passenger-lastname-1\":\"singh\",\"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\":[\"\",\"\",\"\"],\"SelectBaggage\":[\"\",\"0_0_0\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"prince\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"prince\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-13 10:47:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"13ebb-04493-e1ab0-7334a\",\"modified\":\"2023-10-13 10:47:29\",\"created\":\"2023-10-13 10:47:29\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0,\"_sessiondata\":{\"EmailId\":\"nehakumari@catpl.co.in\",\"UserSysId\":\"95443\",\"CustomerSysId\":\"494785\",\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"SuperAgencySysId\":\"59951\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password_cu\":\"\",\"AgencyName\":\"catabatic technology\",\"AgencyCode\":\"13039\",\"ContactNo1\":\"8923963627\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"Address\":\"\",\"PinCode\":\"\",\"TrxCurrency\":\"1\",\"CurrencySymbol\":\"INR\"},\"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\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"hotels\",\"ModuleName\":\"hotels\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"hotelsinv\",\"ModuleName\":\"hotelsinv\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Build Package\",\"val\":\"SRC07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"byo\",\"ModuleName\":\"byo\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Land Only Package\",\"val\":\"SRC08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"byonew\",\"ModuleName\":\"byonew\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"holidays\",\"ModuleName\":\"holidays\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"8\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"activities\",\"ModuleName\":\"activities\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"9\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Umrah\",\"val\":\"SRC06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"holidays\\/search-result?cat=umrah\",\"ModuleName\":\"umrah\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"10\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Visa\",\"val\":\"SRC09\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"visa\",\"ModuleName\":\"visa\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"11\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Manage Inventory\",\"val\":\"SRC10\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"flight-inventory\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"12\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"13\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"14\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"15\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"16\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"17\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"18\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Bookings\",\"val\":\"MOD08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"list\\/index\\/my-query\\/type\\/confirmed\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"19\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"20\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"21\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"22\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Sales Report\",\"val\":\"BOK07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"23\",\"url\":\"flight-inventory\\/index\\/flight-booking\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Cancellation Report\",\"val\":\"BOK08\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"24\",\"url\":\"flight-inventory\\/index\\/flight-booking\\/filter\\/cancel\",\"ModuleName\":\"flight-inventory\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"}],\"_UserPicPath\":null,\"paymentMode\":\"1\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":null,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"bookingHold\":\"0\",\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS108900728515\",\"amount\":9272,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2023-10-13T10:49:21.842\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"159228\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"717\",\"eT\":\"32N\"},\"stops\":0,\"duration\":95,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2023-10-23T16:45\",\"at\":\"2023-10-23T18:20\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"159229\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"537\",\"eT\":\"32N\"},\"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 1\"},\"dt\":\"2023-10-23T19:55\",\"at\":\"2023-10-23T21:10\",\"iand\":false,\"isRs\":false,\"sN\":1}]},{\"sI\":[{\"id\":\"159230\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8191\",\"eT\":\"737\"},\"stops\":0,\"duration\":145,\"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 3\"},\"dt\":\"2023-10-26T21:20\",\"at\":\"2023-10-26T23:45\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"C83MHG\",\"AMD-BOM\":\"C83MHG\",\"BOM-DEL\":\"AGCUFR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"prince\",\"lN\":\"singh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":285,\"TF\":9272,\"BF\":5650,\"IGST\":72,\"NF\":8987,\"TAF\":3622},\"afC\":{\"NCM\":{\"TDS\":-15,\"OT\":300},\"TAF\":{\"YQ\":1600,\"MF\":400,\"MFT\":72,\"OT\":1170,\"AGST\":380}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}},\"postField\":[{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"885674\",\"TPSysId\":\"885675\",\"TrxId\":\"71512\",\"VersionId\":\"270538\",\"XRefBookingId\":\"DMCS108900728515\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS108900728515\\\",\\\"bookingId_TJ\\\":\\\"TJS108900728515\\\",\\\"FlightNumber\\\":\\\"G8-717\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"13ebb-04493-e1ab0-7334a\\\",\\\"apiTraceId\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"AirlineSysId\\\":\\\"240\\\",\\\"DepartureTime\\\":\\\"16:45\\\",\\\"ArrivalTime\\\":\\\"21:10\\\",\\\"TravelDate\\\":\\\"2023-10-23T16:45\\\",\\\"LocalFromTime\\\":\\\"2023-10-23 16:45\\\",\\\"FromUTCTime\\\":\\\"2023-10-23T16:45\\\",\\\"LocalToTime\\\":\\\"2023-10-23 21:10\\\",\\\"ToUTCTime\\\":\\\"2023-10-23T21:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"GS\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"GroundTime\\\":95,\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"FlyingMinutes\\\":265,\\\"DepartureDateTxt\\\":\\\"Mon, 23 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 23 Oct\\\",\\\"FlightDuration\\\":\\\"04h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"4,455\\\",\\\"ApiResultIndex\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2500,\\\"Tax\\\":2240,\\\"YQTax\\\":700,\\\"OtherCharges\\\":898,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":170,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":4740,\\\"PublishedFare\\\":4455,\\\"PublishedFareAgent\\\":4455,\\\"OfferedFareAgent\\\":4455,\\\"OfferedFare\\\":4455,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":6,\\\"classOfBooking\\\":\\\"GS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":2240,\\\"TotalBaseFare\\\":4740,\\\"BaseFareCal\\\":4455,\\\"BaseFare\\\":2500,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":700,\\\"AGST\\\":170,\\\"MFT\\\":72,\\\"OT\\\":898,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-AMD\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}},\\\"AMD-BOM\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":4455,\\\"CostToCustomer\\\":4455,\\\"BaseFareCal\\\":4455,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":4455,\\\"intOfferedFare\\\":4455,\\\"intPublishFare\\\":4740,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4455,\\\"CostToAgent\\\":4455,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"326\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Ahmedabad\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"AMD\\\",\\\"destinationArrTime\\\":\\\"2023-10-23T18:20\\\",\\\"SegFlightNumber\\\":\\\"G8-717\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-23T16:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":95,\\\"GroundTime\\\":95,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"16:45\\\",\\\"strArrivalDtTime\\\":\\\"18:20\\\",\\\"FlightDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"327\\\",\\\"originAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Ahmedabad\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2023-10-23T21:10\\\",\\\"SegFlightNumber\\\":\\\"G8-537\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"GS\\\",\\\"originAirportCode\\\":\\\"AMD\\\",\\\"originDepTime\\\":\\\"2023-10-23T19:55\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":75,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":6,\\\"strDepartureDtTime\\\":\\\"19:55\\\",\\\"strArrivalDtTime\\\":\\\"21:10\\\",\\\"FlightDuration\\\":\\\"1h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"30KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"5KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"327\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"XC30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWVG\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"SWNV\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Non Veg Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLSC\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Samosa and Chai\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":250,\\\"Description\\\":\\\"Jain Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLVS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"OLNS\\\",\\\"Price\\\":320,\\\"Description\\\":\\\"Non Veg Sandwich and Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMVG\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Tortilla Wrap Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"PMNV\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Premium Meal Tortilla Wrap Non-Veg + Coke\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"FEST\\\",\\\"Price\\\":499,\\\"Description\\\":\\\"Festive meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"326\\\",\\\"Code\\\":\\\"KDML\\\",\\\"Price\\\":550,\\\"Description\\\":\\\"Smart Kid Bag\\\"}],\\\"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\\\":\\\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-22 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-25 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS108900728515\\\",\\\"amount\\\":9272,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-13T10:49:21.842\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"159228\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"717\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":95,\\\"cT\\\":95,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"aa\\\":{\\\"code\\\":\\\"AMD\\\",\\\"name\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"cityCode\\\":\\\"AMD\\\",\\\"city\\\":\\\"Ahmedabad\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"dt\\\":\\\"2023-10-23T16:45\\\",\\\"at\\\":\\\"2023-10-23T18:20\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0},{\\\"id\\\":\\\"159229\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"537\\\",\\\"eT\\\":\\\"32N\\\"},\\\"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 1\\\"},\\\"dt\\\":\\\"2023-10-23T19:55\\\",\\\"at\\\":\\\"2023-10-23T21:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":1}]},{\\\"sI\\\":[{\\\"id\\\":\\\"159230\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"8191\\\",\\\"eT\\\":\\\"737\\\"},\\\"stops\\\":0,\\\"duration\\\":145,\\\"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 3\\\"},\\\"dt\\\":\\\"2023-10-26T21:20\\\",\\\"at\\\":\\\"2023-10-26T23:45\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"DEL-AMD\\\":\\\"C83MHG\\\",\\\"AMD-BOM\\\":\\\"C83MHG\\\",\\\"BOM-DEL\\\":\\\"AGCUFR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"prince\\\",\\\"lN\\\":\\\"singh\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"NCM\\\":285,\\\"TF\\\":9272,\\\"BF\\\":5650,\\\"IGST\\\":72,\\\"NF\\\":8987,\\\"TAF\\\":3622},\\\"afC\\\":{\\\"NCM\\\":{\\\"TDS\\\":-15,\\\"OT\\\":300},\\\"TAF\\\":{\\\"YQ\\\":1600,\\\"MF\\\":400,\\\"MFT\\\":72,\\\"OT\\\":1170,\\\"AGST\\\":380}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"DEL-AMD\\\":\\\"C83MHG\\\",\\\"AMD-BOM\\\":\\\"C83MHG\\\",\\\"BOM-DEL\\\":\\\"AGCUFR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"prince\\\",\\\"lN\\\":\\\"singh\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":4455,\\\"NetPrice\\\":4455,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":4455,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":0,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Mumbai (BOM)-Delhi (DEL)\",\"Amount\":2500,\"NetAmount\":4455},{\"B2BAgencySysId\":\"92553\",\"MasterTPSysId\":\"885674\",\"TPSysId\":\"885675\",\"TrxId\":\"71512\",\"VersionId\":\"270539\",\"XRefBookingId\":\"DMCS108900728515\",\"APIBookingRes\":\"{\\\"value\\\":{\\\"bookingId\\\":\\\"DMCS108900728515\\\",\\\"bookingId_TJ\\\":\\\"TJS108900728515\\\",\\\"FlightNumber\\\":\\\"SG-8191\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"SearchTraceId\\\":\\\"13ebb-04493-e1ab0-7334a\\\",\\\"apiTraceId\\\":\\\"4-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"21:20\\\",\\\"ArrivalTime\\\":\\\"23:45\\\",\\\"TravelDate\\\":\\\"2023-10-26T21:20\\\",\\\"LocalFromTime\\\":\\\"2023-10-26 21:20\\\",\\\"FromUTCTime\\\":\\\"2023-10-26T21:20\\\",\\\"LocalToTime\\\":\\\"2023-10-26 23:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-26T23:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":145,\\\"DepartureDateTxt\\\":\\\"Thu, 26 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 26 Oct\\\",\\\"FlightDuration\\\":\\\"02h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"8,987\\\",\\\"ApiResultIndex\\\":\\\"4-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":3150,\\\"Tax\\\":1382,\\\"YQTax\\\":900,\\\"OtherCharges\\\":272,\\\"Discount\\\":0,\\\"ServiceFee\\\":0,\\\"ManagementFeeTax\\\":0,\\\"AirlineGSTComponent\\\":210,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":4532,\\\"PublishedFare\\\":4532,\\\"PublishedFareAgent\\\":4532,\\\"OfferedFareAgent\\\":4532,\\\"OfferedFare\\\":4532,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":2,\\\"IsRefundableTxt\\\":\\\"Partial Refundable\\\",\\\"PriceID\\\":\\\"1-3983042595_1BOMDELSG8191_15048389831231\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1382,\\\"TotalBaseFare\\\":4532,\\\"BaseFareCal\\\":4532,\\\"BaseFare\\\":3150,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":0,\\\"YQ\\\":900,\\\"AGST\\\":210,\\\"MFT\\\":0,\\\"OT\\\":272,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"BOM-DEL\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"15 Kg\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":4532,\\\"CostToCustomer\\\":4532,\\\"BaseFareCal\\\":4532,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":4532,\\\"intOfferedFare\\\":4532,\\\"intPublishFare\\\":4532,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4532,\\\"CostToAgent\\\":4532,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"783\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2023-10-26T23:45\\\",\\\"SegFlightNumber\\\":\\\"SG-8191\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2023-10-26T21:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":145,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"21:20\\\",\\\"strArrivalDtTime\\\":\\\"23:45\\\",\\\"FlightDuration\\\":\\\"2h 25m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":true}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":385,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":405,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":434,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"783\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":532,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"}],\\\"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-3983042595_1BOMDELSG8191_15019825117680\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-22 12:00\\\",\\\"localToDateTime\\\":\\\"2023-10-25 12:00\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"2\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":true,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false},\\\"response\\\":{\\\"order\\\":{\\\"bookingId\\\":\\\"TJS108900728515\\\",\\\"amount\\\":9272,\\\"markup\\\":0,\\\"deliveryInfo\\\":{\\\"emails\\\":[\\\"nehakumari@catpl.co.in\\\"],\\\"contacts\\\":[\\\"918923963627\\\"]},\\\"status\\\":\\\"SUCCESS\\\",\\\"createdOn\\\":\\\"2023-10-13T10:49:21.842\\\"},\\\"itemInfos\\\":{\\\"AIR\\\":{\\\"tripInfos\\\":[{\\\"sI\\\":[{\\\"id\\\":\\\"159228\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"717\\\",\\\"eT\\\":\\\"32N\\\"},\\\"stops\\\":0,\\\"duration\\\":95,\\\"cT\\\":95,\\\"da\\\":{\\\"code\\\":\\\"DEL\\\",\\\"name\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"cityCode\\\":\\\"DEL\\\",\\\"city\\\":\\\"Delhi\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 2\\\"},\\\"aa\\\":{\\\"code\\\":\\\"AMD\\\",\\\"name\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"cityCode\\\":\\\"AMD\\\",\\\"city\\\":\\\"Ahmedabad\\\",\\\"country\\\":\\\"India\\\",\\\"countryCode\\\":\\\"IN\\\",\\\"terminal\\\":\\\"Terminal 1\\\"},\\\"dt\\\":\\\"2023-10-23T16:45\\\",\\\"at\\\":\\\"2023-10-23T18:20\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":0},{\\\"id\\\":\\\"159229\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"G8\\\",\\\"name\\\":\\\"Go First\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"537\\\",\\\"eT\\\":\\\"32N\\\"},\\\"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 1\\\"},\\\"dt\\\":\\\"2023-10-23T19:55\\\",\\\"at\\\":\\\"2023-10-23T21:10\\\",\\\"iand\\\":false,\\\"isRs\\\":false,\\\"sN\\\":1}]},{\\\"sI\\\":[{\\\"id\\\":\\\"159230\\\",\\\"fD\\\":{\\\"aI\\\":{\\\"code\\\":\\\"SG\\\",\\\"name\\\":\\\"SpiceJet\\\",\\\"isLcc\\\":true},\\\"fN\\\":\\\"8191\\\",\\\"eT\\\":\\\"737\\\"},\\\"stops\\\":0,\\\"duration\\\":145,\\\"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 3\\\"},\\\"dt\\\":\\\"2023-10-26T21:20\\\",\\\"at\\\":\\\"2023-10-26T23:45\\\",\\\"iand\\\":false,\\\"isRs\\\":true,\\\"sN\\\":0}]}],\\\"travellerInfos\\\":[{\\\"pnrDetails\\\":{\\\"DEL-AMD\\\":\\\"C83MHG\\\",\\\"AMD-BOM\\\":\\\"C83MHG\\\",\\\"BOM-DEL\\\":\\\"AGCUFR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"prince\\\",\\\"lN\\\":\\\"singh\\\"}],\\\"totalPriceInfo\\\":{\\\"totalFareDetail\\\":{\\\"fC\\\":{\\\"NCM\\\":285,\\\"TF\\\":9272,\\\"BF\\\":5650,\\\"IGST\\\":72,\\\"NF\\\":8987,\\\"TAF\\\":3622},\\\"afC\\\":{\\\"NCM\\\":{\\\"TDS\\\":-15,\\\"OT\\\":300},\\\"TAF\\\":{\\\"YQ\\\":1600,\\\"MF\\\":400,\\\"MFT\\\":72,\\\"OT\\\":1170,\\\"AGST\\\":380}}}}}},\\\"gstInfo\\\":[],\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}}}\",\"Passenger\":\"[{\\\"pnrDetails\\\":{\\\"DEL-AMD\\\":\\\"C83MHG\\\",\\\"AMD-BOM\\\":\\\"C83MHG\\\",\\\"BOM-DEL\\\":\\\"AGCUFR\\\"},\\\"ti\\\":\\\"Mr\\\",\\\"pt\\\":\\\"ADULT\\\",\\\"fN\\\":\\\"prince\\\",\\\"lN\\\":\\\"singh\\\"}]\",\"UpdateFare\":\"[{\\\"Price\\\":4532,\\\"NetPrice\\\":4532,\\\"AgencyMarkUp\\\":0,\\\"AgentServiceTaxAmount\\\":0,\\\"MarkUp\\\":0,\\\"AgentsCustomServiceTaxAmount\\\":0,\\\"GTXMarkup\\\":0,\\\"GTXServiceTaxAmount\\\":0,\\\"TotalCost\\\":4532,\\\"MealFare\\\":0,\\\"BaggFare\\\":0,\\\"SeatFare\\\":0}]\",\"Keys\":1,\"ErrorCode\":0,\"IsBookingStatus\":1,\"bookingHold\":\"0\",\"sectorTitle\":\"Delhi (DEL)-Mumbai (BOM)-Delhi (DEL)\",\"Amount\":3150,\"NetAmount\":4532}],\"InvoiceRequest\":{\"FlightBookingData\":[{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"G8-717\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:45\",\"ArrivalTime\":\"21:10\",\"TravelDate\":\"2023-10-23T16:45\",\"LocalFromTime\":\"2023-10-23 16:45\",\"FromUTCTime\":\"2023-10-23T16:45\",\"LocalToTime\":\"2023-10-23 21:10\",\"ToUTCTime\":\"2023-10-23T21:10\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Mon, 23 Oct\",\"ArrivalDateTxt\":\"Mon, 23 Oct\",\"FlightDuration\":\"04h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,455\",\"ApiResultIndex\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2500,\"Tax\":2240,\"YQTax\":700,\"OtherCharges\":898,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4740,\"PublishedFare\":4455,\"PublishedFareAgent\":4455,\"OfferedFareAgent\":4455,\"OfferedFare\":4455,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3983042595_0DELAMDG8717AMDBOMG8537_15048388050126\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":6,\"classOfBooking\":\"GS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2240,\"TotalBaseFare\":4740,\"BaseFareCal\":4455,\"BaseFare\":2500,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":700,\"AGST\":170,\"MFT\":72,\"OT\":898,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-AMD\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}},\"AMD-BOM\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4455,\"CostToCustomer\":4455,\"BaseFareCal\":4455,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4455,\"intOfferedFare\":4455,\"intPublishFare\":4740,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4455,\"CostToAgent\":4455,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"326\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-10-23T18:20\",\"SegFlightNumber\":\"G8-717\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-23T16:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":95,\"GroundTime\":95,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"16:45\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"327\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-10-23T21:10\",\"SegFlightNumber\":\"G8-537\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"GS\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-10-23T19:55\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":75,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC30\",\"Price\":0,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC15\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC10\",\"Price\":0,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"XC05\",\"Price\":0,\"Weight\":\"5KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"327\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"},{\"Currency\":\"INR\",\"key\":\"326\",\"Code\":\"KDML\",\"Price\":550,\"Description\":\"Smart Kid Bag\"}],\"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\":\"1-3983042595_12DELAMDG8717AMDBOMG8537_15018289466385\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false},{\"bookingId\":\"DMCS108900728515\",\"bookingId_TJ\":\"TJS108900728515\",\"FlightNumber\":\"SG-8191\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"apiTraceId\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:45\",\"TravelDate\":\"2023-10-26T21:20\",\"LocalFromTime\":\"2023-10-26 21:20\",\"FromUTCTime\":\"2023-10-26T21:20\",\"LocalToTime\":\"2023-10-26 23:45\",\"ToUTCTime\":\"2023-10-26T23:45\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 26 Oct\",\"ArrivalDateTxt\":\"Thu, 26 Oct\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"8,987\",\"ApiResultIndex\":\"4-3983042595_1BOMDELSG8191_15019825117680\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3150,\"Tax\":1382,\"YQTax\":900,\"OtherCharges\":272,\"Discount\":0,\"ServiceFee\":0,\"ManagementFeeTax\":0,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4532,\"PublishedFare\":4532,\"PublishedFareAgent\":4532,\"OfferedFareAgent\":4532,\"OfferedFare\":4532,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"1-3983042595_1BOMDELSG8191_15048389831231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1382,\"TotalBaseFare\":4532,\"BaseFareCal\":4532,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":0,\"YQ\":900,\"AGST\":210,\"MFT\":0,\"OT\":272,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"BOM-DEL\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4532,\"CostToCustomer\":4532,\"BaseFareCal\":4532,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4532,\"intOfferedFare\":4532,\"intPublishFare\":4532,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4532,\"CostToAgent\":4532,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"783\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-26T23:45\",\"SegFlightNumber\":\"SG-8191\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-10-26T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"SegmentNumber\":0,\"isReturnSegment\":true}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"JNSW\",\"Price\":405,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCVS\",\"Price\":532,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"783\",\"Code\":\"LCNS\",\"Price\":532,\"Description\":\"Low cal salad Non Vegetarian\"}],\"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-3983042595_1BOMDELSG8191_15019825117680\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"2023-10-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"IsInternational\":\"\",\"CustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"prince\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-13 10:47:29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"42\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SearchTraceId\":\"13ebb-04493-e1ab0-7334a\",\"bookingHold\":\"0\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"2\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Mumbai (BOM)\"],\"departure_date\":[\"23\\/10\\/2023\"],\"return_date\":[\"26\\/10\\/2023\"],\"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)\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Mumbai (BOM)\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"1-1-1\",\"strDepatureDate\":[\"2023-10-23\"],\"strReturnDate\":[\"2023-10-26\"],\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"13ebb-04493-e1ab0-7334a\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Mumbai\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"TripType\":0,\"SearchRoute\":\"2\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"23\\/10\\/2023\"],\"return_dates\":[\"26\\/10\\/2023\"],\"departure_dateG\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"23 Oct Mon\"],\"ReturnDateMobile\":[\"26 Oct Thu\"],\"SearchTime\":\"2023-10-13 10:46:37\",\"IsChangeSearch\":1},\"B2BSearch\":{\"B2BAgencySysIdKey\":\"D5C5181A-EE6A-43E7-B92F-E4BDEC05CF1E\",\"B2CAgencySysIdKey\":\"29D1344B-4B07-46B0-8B7A-4C0B81DE3502\",\"MasterAgencySysId\":\"59951\"},\"IsCancellationProtection\":0,\"CPAmountWithTax\":0,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"gstnnumber\":0}}','2023-10-13 10:47:57'),(431,'db7b8-5fadd-25fcd-4ec69','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"24\\/10\\/2023\",\"check_out\":\"25\\/10\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-24\",\"checkoutDate\":\"2023-10-25\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-24\",\"strCheckout\":\"2023-10-25\",\"SearchHotelTraceId\":\"db7b8-5fadd-25fcd-4ec69\",\"interNationalSearch\":false}','2023-10-13 12:30:22'),(432,'4e959-f93db-b4811-7b902','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Delhi (India)\",\"check_in\":\"24\\/10\\/2023\",\"check_out\":\"25\\/10\\/2023\",\"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\":\"7701\",\"TBBCityId\":\"130443\",\"destination\":\"Delhi\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"130443\",\"CountryCode\":\"IN\",\"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\":\"2023-10-24\",\"checkoutDate\":\"2023-10-25\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"130443\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-24\",\"strCheckout\":\"2023-10-25\",\"SearchHotelTraceId\":\"4e959-f93db-b4811-7b902\",\"interNationalSearch\":false}','2023-10-13 17:20:54'),(433,'630f9-05514-b845e-312a5','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"24\\/10\\/2023\",\"check_out\":\"25\\/10\\/2023\",\"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\":\"266\",\"TBBCityId\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-10-24\",\"checkoutDate\":\"2023-10-25\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-24\",\"strCheckout\":\"2023-10-25\",\"SearchHotelTraceId\":\"630f9-05514-b845e-312a5\",\"interNationalSearch\":false}','2023-10-13 19:05:16'),(434,'dc276-dfae0-5cd0e-fee42','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"26\\/10\\/2023\",\"check_out\":\"27\\/10\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"26\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-26\",\"checkoutDate\":\"2023-10-27\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-26\",\"strCheckout\":\"2023-10-27\",\"SearchHotelTraceId\":\"dc276-dfae0-5cd0e-fee42\",\"interNationalSearch\":false}','2023-10-16 10:40:18'),(436,'25a22-beb6c-4bd20-f3b85','{\"BookingData\":[{\"bookingId\":\"BKR104275266879\",\"bookingId_TJ\":\"TJ104275266879\",\"FlightNumber\":\"UK-912\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2023-10-17T20:10\",\"LocalFromTime\":\"2023-10-17 20:10\",\"FromUTCTime\":\"2023-10-17T20:10\",\"LocalToTime\":\"2023-10-17 21:35\",\"ToUTCTime\":\"2023-10-17T21:35\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Tue, 17 Oct\",\"ArrivalDateTxt\":\"Tue, 17 Oct\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4669.8,\"PublishedFareTxt\":\"4,670\",\"ApiResultIndex\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IDR-DEL\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"No Refund\",\"st\":\"0\",\"et\":\"26\"}],\"DATECHANGE\":[{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"CRFT\":9,\"ARFT\":157.5,\"ARF\":3150,\"CRF\":50},\"st\":\"26\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3675,\"additionalFee\":50,\"fcs\":{\"ACF\":3675,\"CCF\":50,\"ACFT\":183.75,\"CCFT\":9},\"st\":\"26\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seats\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3741,\"Tax\":928.8,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4669.8,\"PublishedFare\":4474.46,\"OfferedFare\":4474.46,\"CommissionEarned\":195.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.28,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-21-10-15-2-9406337881_0IDRDELUK912_104400329695030\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Economy Lite\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":195.34,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":928.8,\"BaseFareCal\":4474.46,\"BaseFare\":3741,\"CommissionEarned\":195.34,\"TDS\":-10.28,\"MF\":10,\"YQ\":0,\"AGST\":194,\"MFT\":1.8,\"OT\":593,\"MU\":0,\"YR\":130,\"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\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":100,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":195.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4474.46,\"CostToCustomer\":4474.46,\"BaseFareCal\":4474.46,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4474.46,\"intOfferedFare\":4474.46,\"intPublishFare\":4669.8,\"TripjackMarkup\":0,\"TripjackCommission\":195.34,\"TripjackTDS\":\"10.28\",\"AddiMarkup\":0,\"CommisionPass\":195.34,\"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\":\"556\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-17T21:35\",\"SegFlightNumber\":\"UK-912\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-10-17T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"5KG\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"10KG\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"15KG\",\"Price\":7200,\"amount\":7200,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"20KG\",\"Price\":9600,\"amount\":9600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"25KG\",\"Price\":12000,\"amount\":12000,\"Weight\":\"25KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"30KG\",\"Price\":14400,\"amount\":14400,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"35KG\",\"Price\":16800,\"amount\":16800,\"Weight\":\"35KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"45KG\",\"Price\":21600,\"amount\":21600,\"Weight\":\"45KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"50KG\",\"Price\":26400,\"amount\":26400,\"Weight\":\"50KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"65KG\",\"Price\":31200,\"amount\":31200,\"Weight\":\"65KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"77KG\",\"Price\":38400,\"amount\":38400,\"Weight\":\"77KG\"},{\"Currency\":\"INR\",\"key\":\"556\",\"Code\":\"90KG\",\"Price\":46000,\"amount\":46000,\"Weight\":\"90KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25a22-beb6c-4bd20-f3b85\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-10-16T12:54:18.111\",\"strTraceId\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104275266879\",\"bookingId_TJ\":\"TJ104275266879\",\"FlightNumber\":\"UK-912\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"strTraceId\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2023-10-17T20:10\",\"LocalFromTime\":\"2023-10-17 20:10\",\"FromUTCTime\":\"2023-10-17T20:10\",\"LocalToTime\":\"2023-10-17 21:35\",\"ToUTCTime\":\"2023-10-17T21:35\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Tue, 17 Oct\",\"ArrivalDateTxt\":\"Tue, 17 Oct\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4669.8,\"ApiResultIndex\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"25a22-beb6c-4bd20-f3b85\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-10-16T12:54:18.111\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3741,\"Tax\":928.8,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4669.8,\"PublishedFare\":4474.46,\"OfferedFare\":4474.46,\"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\":\"1\",\"TaxIN\":928.8,\"BaseFareCal\":4474.46,\"BaseFare\":3741,\"CommissionEarned\":195.34,\"TDS\":-10.28,\"MF\":10,\"YQ\":0,\"AGST\":194,\"MFT\":1.8,\"OT\":593,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"556\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-10-17T21:35\",\"SegFlightNumber\":\"UK-912\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-10-17T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-21-10-15-2-9406337881_9IDRDELUK912_103300305768305\",\"localFromDateTime\":\"2023-10-17 20:10\",\"localToDateTime\":\"2023-10-17 21:35\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Indore\",\"mytrip_city_to\":\"Delhi\",\"source_city\":\"IDR\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"departure_date\":\"17\\/10\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Devi Ahilya Bai Holkar Arpt IDR\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IDR\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"IDR\",\"to\":\"DEL\",\"sourceCityText\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"sourceCityId\":12706,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/10\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-10-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"25a22-beb6c-4bd20-f3b85\",\"PreferredAirline\":null,\"from_city_\":\"1__IDR-DEL\"}}','2023-10-16 12:52:47'),(437,'85700-0a63c-0fca2-90c29','{\"FlightBookingData\":[{\"EquipmentType\":\"7M8\",\"FlightNumber\":\"IX-8190\",\"SegFlightNumberArr\":\"IX-8190\",\"AirlineName\":\"Ai Express\",\"AirlineCode\":\"IX\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"85700-0a63c-0fca2-90c29\",\"apiTraceId\":\"22-0040172238_0DELBLRIX8190_62623235685605\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2023-10-19T02:00\",\"LocalFromTime\":\"2023-10-19 02:00\",\"FromUTCTime\":\"2023-10-19T02:00\",\"LocalToTime\":\"2023-10-19 04:45\",\"ToUTCTime\":\"2023-10-19T04:45\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Thu, 19 Oct\",\"ArrivalDateTxt\":\"Thu, 19 Oct\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Bengaluru\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5722,\"PublishedFareTxt\":\"5,722\",\"ApiResultIndex\":\"22-0040172238_0DELBLRIX8190_62623235685605\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4442,\"Tax\":1565,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":230,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6007,\"PublishedFare\":5722,\"PublishedFareAgent\":5722,\"OfferedFareAgent\":5722,\"OfferedFare\":5722,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-0040172238_0DELBLRIX8190_62623235685605\",\"ApiResultIndex\":\"22-0040172238_0DELBLRIX8190_62623235685605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"colors\":\"#000000\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1565,\"TotalBaseFare\":6007,\"BaseFareCal\":5722,\"BaseFare\":4442,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":230,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"tripbinfo\":{\"DEL-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03A\"},\"Segments\":[{\"segmentid\":\"86\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-19T04:45\",\"SegFlightNumber\":\"IX-8190\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-19T02:00\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"$$hashKey\":\"038\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"$$hashKey\":\"02N\"}],\"apiTraceId\":\"22-0040172238_0DELBLRIX8190_62623235685605\",\"SearchTraceId\":\"85700-0a63c-0fca2-90c29\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"19\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Bengaluru Intl Arpt (BLR)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-19\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"85700-0a63c-0fca2-90c29\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"19\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"19 Oct Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-16 15:39:02\",\"IsChangeSearch\":1}}','2023-10-16 15:39:26'),(440,'9bebc-33c34-537c2-5c43b','{\"FlightBookingData\":[{\"bookingId\":\"DMCS106000729932\",\"bookingId_TJ\":\"TJS106000729932\",\"FlightNumber\":\"IX-8190\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"9bebc-33c34-537c2-5c43b\",\"apiTraceId\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2023-10-19T02:00\",\"LocalFromTime\":\"2023-10-19 02:00\",\"FromUTCTime\":\"2023-10-19T02:00\",\"LocalToTime\":\"2023-10-19 04:45\",\"ToUTCTime\":\"2023-10-19T04:45\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Thu, 19 Oct\",\"ArrivalDateTxt\":\"Thu, 19 Oct\",\"FlightDuration\":\"03h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,722\",\"ApiResultIndex\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":4442,\"Tax\":1565,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":230,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6007,\"PublishedFare\":5722,\"PublishedFareAgent\":5722,\"OfferedFareAgent\":5722,\"OfferedFare\":5722,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-1717604427_0DELBLRIX8190_62731458356352\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":2,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1565,\"TotalBaseFare\":6007,\"BaseFareCal\":5722,\"BaseFare\":4442,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":230,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-BLR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"NA\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5722,\"CostToCustomer\":5722,\"BaseFareCal\":5722,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5722,\"intOfferedFare\":5722,\"intPublishFare\":6007,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5722,\"CostToAgent\":5722,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"385\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-10-19T04:45\",\"SegFlightNumber\":\"IX-8190\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-19T02:00\",\"TripIndicator\":1,\"Baggage\":null,\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":165,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"385\",\"Code\":\"VMCB\",\"Price\":600,\"Description\":\"Vegan Moilee Curry with Coconut Rice\"}],\"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\":\"22-1717604427_0DELBLRIX8190_62723708079433\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"2262\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"flight_booking_id_Arr\":[\"119\"],\"ForCustomerSession\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-16 15:41:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"43\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"FFAirlineCode\":\"\",\"FFNumber\":\"\",\"isWheelChair\":0}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-16 15:41:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9bebc-33c34-537c2-5c43b\",\"modified\":\"2023-10-16 15:41:12\",\"created\":\"2023-10-16 15:41:12\",\"CustomerMemberSysId\":\"43\"}],\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"43\"],\"flight_booking_customer\":[[\"126\"]],\"SearchTraceId\":\"9bebc-33c34-537c2-5c43b\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Bengaluru (BLR)\",\"DEL\"],\"departure_date\":[\"19\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"0\"],\"destination_city\":[\"BLR\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\"\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Bengaluru (BLR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-19\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[2262],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"9bebc-33c34-537c2-5c43b\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BLR\"],\"from\":[\"DEL\"],\"to\":[\"BLR\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Bengaluru\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"19\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"19 Oct Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-16 15:40:42\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"9bebc-33c34-537c2-5c43b\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"19\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"0\\\"],\\\"destination_city\\\":[\\\"BLR\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_dateG\\\":[\\\"NA\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"FareTypes\\\":\\\"REGULAR\\\",\\\"apisource\\\":\\\"undefined\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Bengaluru (BLR)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2023-10-19\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[2262],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"9bebc-33c34-537c2-5c43b\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BLR\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BLR\\\"],\\\"Fromlabel\\\":[\\\"Delhi\\\"],\\\"Tolabel\\\":[\\\"Bengaluru\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\\\"],\\\"TripType\\\":0,\\\"SearchRoute\\\":\\\"1\\\",\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"19\\\\\\/10\\\\\\/2023\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":[],\\\"DepatureDateMobile\\\":[\\\"19 Oct Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2023-10-16 15:40:42\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS106000729932\\\",\\\"bookingId_TJ\\\":\\\"TJS106000729932\\\",\\\"FlightNumber\\\":\\\"IX-8190\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":false,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"9bebc-33c34-537c2-5c43b\\\",\\\"apiTraceId\\\":\\\"22-1717604427_0DELBLRIX8190_62723708079433\\\",\\\"AirlineSysId\\\":\\\"82\\\",\\\"DepartureTime\\\":\\\"02:00\\\",\\\"ArrivalTime\\\":\\\"04:45\\\",\\\"TravelDate\\\":\\\"2023-10-19T02:00\\\",\\\"LocalFromTime\\\":\\\"2023-10-19 02:00\\\",\\\"FromUTCTime\\\":\\\"2023-10-19T02:00\\\",\\\"LocalToTime\\\":\\\"2023-10-19 04:45\\\",\\\"ToUTCTime\\\":\\\"2023-10-19T04:45\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"EC\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":165,\\\"DepartureDateTxt\\\":\\\"Thu, 19 Oct\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 19 Oct\\\",\\\"FlightDuration\\\":\\\"03h 45m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"2262\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BLR\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"5,722\\\",\\\"ApiResultIndex\\\":\\\"22-1717604427_0DELBLRIX8190_62723708079433\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":4442,\\\"Tax\\\":1565,\\\"YQTax\\\":0,\\\"OtherCharges\\\":863,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":230,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":0,\\\"intPublishedFare\\\":6007,\\\"PublishedFare\\\":5722,\\\"PublishedFareAgent\\\":5722,\\\"OfferedFareAgent\\\":5722,\\\"OfferedFare\\\":5722,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"22-1717604427_0DELBLRIX8190_62731458356352\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":2,\\\"classOfBooking\\\":\\\"EC\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":0,\\\"apiMarkup\\\":0,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"FixedMarkUp\\\":0,\\\"GSTOnMarkUp\\\":0,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"AddiMarkup\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5722,\\\"CostToAgent\\\":5722,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1565,\\\"TotalBaseFare\\\":6007,\\\"BaseFareCal\\\":5722,\\\"BaseFare\\\":4442,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":230,\\\"MFT\\\":72,\\\"OT\\\":863,\\\"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,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5722,\\\"CostToAgent\\\":5722,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":[],\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"tripbinfo\\\":{\\\"DEL-BLR\\\":{\\\"ADULT\\\":{\\\"cabin\\\":\\\"7 Kg\\\",\\\"checkin\\\":\\\"NA\\\"}}},\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":0,\\\"apiTaxOnMarkup\\\":0,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":0,\\\"IntTaxOnAgencyFixMarkUp\\\":0,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":0,\\\"PublishFare\\\":5722,\\\"CostToCustomer\\\":5722,\\\"BaseFareCal\\\":5722,\\\"intCommisionEarnedForAgency\\\":0,\\\"CostToCompany\\\":5722,\\\"intOfferedFare\\\":5722,\\\"intPublishFare\\\":6007,\\\"TripjackMarkup\\\":0,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":0,\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":285,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5722,\\\"CostToAgent\\\":5722,\\\"AddiMarkup\\\":0,\\\"AddiTaxOnMarkup\\\":0,\\\"IntAdddimarkup\\\":0,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"385\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Bengaluru Intl Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Bengaluru\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BLR\\\",\\\"destinationArrTime\\\":\\\"2023-10-19T04:45\\\",\\\"SegFlightNumber\\\":\\\"IX-8190\\\",\\\"AirlineCode\\\":\\\"IX\\\",\\\"AirlineName\\\":\\\"AI Express\\\",\\\"FareClass\\\":\\\"EC\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2023-10-19T02:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":null,\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":165,\\\"GroundTime\\\":0,\\\"EquipmentType\\\":\\\"\\\",\\\"StopsOver\\\":\\\"\\\",\\\"NoOfSeatAvailable\\\":2,\\\"strDepartureDtTime\\\":\\\"02:00\\\",\\\"strArrivalDtTime\\\":\\\"04:45\\\",\\\"FlightDuration\\\":\\\"2h 45m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.ktas.in\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/IX.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}],\\\"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\\\":\\\"22-1717604427_0DELBLRIX8190_62723708079433\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"status\\\":{\\\"success\\\":false,\\\"httpStatus\\\":403},\\\"errors\\\":[{\\\"errCode\\\":\\\"412\\\",\\\"message\\\":\\\"UnAuthorized Access!, The provided API key is invalid.\\\"}]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2023-10-18 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BLR\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"2262\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"},\\\"isHoldAllowed\\\":false,\\\"isDocIdAllowedAplicable\\\":false,\\\"isDocIdAllowedMandatory\\\":false}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"VMCB\\\",\\\"Price\\\":600,\\\"Description\\\":\\\"Vegan Moilee Curry with Coconut Rice\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAB\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"+ 5 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAC\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"+ 10 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAD\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"+ 15 kg Xcess Baggage\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"385\\\",\\\"Code\\\":\\\"PBAF\\\",\\\"Price\\\":11250,\\\"Weight\\\":\\\"+ 25 Kg Xcess Baggage\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8923963627\",\"leadEmail\":\"nehakumari@catpl.co.in\",\"paxType-1\":\"1\",\"relation-1\":\"9\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"rahul\",\"passenger-lastname-1\":\"singh\",\"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\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"92553\",\"Salutation\":\"1\",\"EmailId\":\"nehakumari@catpl.co.in\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"CountryCode\":\"91\",\"MobileNo\":\"8923963627\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"92553\",\"MasterAgencySysId\":\"59951\",\"CustomerSysId\":\"28\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"8923963627\",\"FirstName\":\"rahul\",\"LastName\":\"singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"92553\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-10-16 15:41:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9bebc-33c34-537c2-5c43b\",\"modified\":\"2023-10-16 15:41:12\",\"created\":\"2023-10-16 15:41:12\",\"MobileNo\":\"8923963627\",\"B2B\":true}],\"isWheelChair\":0}','2023-10-16 15:41:12'),(442,'637cc-329a0-57941-14571','{\"FlightBookingData\":[{\"bookingId\":\"DMCS100400729937\",\"bookingId_TJ\":\"TJS100400729937\",\"FlightNumber\":\"I5-743\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"637cc-329a0-57941-14571\",\"apiTraceId\":\"22-3311985670_0DELJAII5743_62778119490866\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"05:50\",\"TravelDate\":\"2023-10-23T05:00\",\"LocalFromTime\":\"2023-10-23 05:00\",\"FromUTCTime\":\"2023-10-23T05:00\",\"LocalToTime\":\"2023-10-23 05:50\",\"ToUTCTime\":\"2023-10-23T05:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":50,\"DepartureDateTxt\":\"Mon, 23 Oct\",\"ArrivalDateTxt\":\"Mon, 23 Oct\",\"FlightDuration\":\"01h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,451\",\"ApiResultIndex\":\"22-3311985670_0DELJAII5743_62778119490866\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":1325,\"Tax\":1411,\"YQTax\":0,\"OtherCharges\":863,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":76,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2736,\"PublishedFare\":2451,\"PublishedFareAgent\":2451,\"OfferedFareAgent\":2451,\"OfferedFare\":2451,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-3311985670_0DELJAII5743_62830148469199\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"EC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2451,\"CostToAgent\":2451,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1411,\"TotalBaseFare\":2736,\"BaseFareCal\":2451,\"BaseFare\":1325,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":76,\"MFT\":72,\"OT\":863,\"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,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2451,\"CostToAgent\":2451,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"tripbinfo\":{\"DEL-JAI\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"15 Kg (01 Piece only)\"}}},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2451,\"CostToCustomer\":2451,\"BaseFareCal\":2451,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":2451,\"intOfferedFare\":2451,\"intPublishFare\":2736,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2451,\"CostToAgent\":2451,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"30\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-10-23T05:50\",\"SegFlightNumber\":\"I5-743\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-10-23T05:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":50,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess 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\":\"22-3311985670_0DELJAII5743_62778119490866\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-10-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"12995\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":false,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"apiTraceId\":\"22-3311985670_0DELJAII5743_62778119490866\",\"SearchTraceId\":\"637cc-329a0-57941-14571\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\"],\"to_des\":[\"Jaipur (JAI)\",\"DEL\"],\"departure_date\":[\"23\\/10\\/2023\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"JAI\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Jaipur, IN - Sanganeer Arpt (JAI), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Sanganeer Arpt (JAI)\"],\"departure_dateG\":[\"NA\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Jaipur (JAI)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2023-10-23\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[12995],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"637cc-329a0-57941-14571\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"JAI\"],\"from\":[\"DEL\"],\"to\":[\"JAI\"],\"Fromlabel\":[\"Delhi\"],\"Tolabel\":[\"Jaipur\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Jaipur, IN - Sanganeer Arpt (JAI), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"23\\/10\\/2023\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"23 Oct Mon\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2023-10-16 15:41:37\",\"IsChangeSearch\":1},\"SSRArr\":{\"Meal\":[[]],\"Baggage\":[[{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Xcess Baggage\"},{\"Currency\":\"INR\",\"key\":\"30\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Xcess Baggage\"}]],\"SeatPreference\":[]},\"FareRuleRequest\":[{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]}]}','2023-10-16 15:42:31'),(444,'861f9-0839c-567c1-39eca','{\"BookingData\":[{\"bookingId\":\"BKR100475379218\",\"bookingId_TJ\":\"TJ100475379218\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-11-15T13:55\",\"LocalFromTime\":\"2023-11-15 13:55\",\"FromUTCTime\":\"2023-11-15T13:55\",\"LocalToTime\":\"2023-11-16 09:30\",\"ToUTCTime\":\"2023-11-16T09:30\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":960,\"LAYOVERDuration\":\"16h 0m\",\"FlyingMinutes\":1175,\"DepartureDateTxt\":\"Wed, 15 Nov\",\"ArrivalDateTxt\":\"Thu, 16 Nov\",\"FlightDuration\":\"19h 35m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11975.8,\"PublishedFareTxt\":\"11,976\",\"ApiResultIndex\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-ATQ\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Only Statutory Taxes will be refunded\",\"st\":\"0\",\"et\":\"4\"}],\"DATECHANGE\":[{\"amount\":525,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"ARFT\":26.25,\"CRF\":50,\"CRFT\":9,\"ARF\":525},\"st\":\"4\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":1850,\"additionalFee\":50,\"fcs\":{\"ACF\":1850,\"CCFT\":9,\"CCF\":50,\"ACFT\":92.5},\"st\":\"4\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10200,\"Tax\":1775.8,\"YQTax\":0,\"OtherCharges\":1033,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":521,\"CarrierMiscFee\":210,\"MUFee\":0,\"intPublishedFare\":11975.8,\"PublishedFare\":11188.25,\"OfferedFare\":11188.25,\"CommissionEarned\":787.55,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-41.45,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-21-10-15-2-8296579117_0IXJSXRUK612SXRDELUK612DELATQUK697_34055497963026\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":787.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1775.8,\"BaseFareCal\":11188.25,\"BaseFare\":10200,\"CommissionEarned\":787.55,\"TDS\":-41.45,\"MF\":10,\"YQ\":0,\"AGST\":521,\"MFT\":1.8,\"OT\":1033,\"MU\":0,\"YR\":210,\"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\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\"}],\"CancelCharge\":100,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":787.55,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":11188.25,\"CostToCustomer\":11188.25,\"BaseFareCal\":11188.25,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":11188.25,\"intOfferedFare\":11188.25,\"intPublishFare\":11975.8,\"TripjackMarkup\":0,\"TripjackCommission\":787.55,\"TripjackTDS\":\"41.45\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":787.55,\"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\":\"716\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-11-15T15:05\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-11-15T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"717\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-11-15T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-11-15T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":925,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"15h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"718\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-11-16T09:30\",\"SegFlightNumber\":\"UK-697\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-16T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"861f9-0839c-567c1-39eca\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-10-17T18:39:51.971\",\"strTraceId\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR100475379218\",\"bookingId_TJ\":\"TJ100475379218\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"strTraceId\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2023-11-15T13:55\",\"LocalFromTime\":\"2023-11-15 13:55\",\"FromUTCTime\":\"2023-11-15T13:55\",\"LocalToTime\":\"2023-11-16 09:30\",\"ToUTCTime\":\"2023-11-16T09:30\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":960,\"LAYOVERDuration\":\"16h 0m\",\"FlyingMinutes\":1175,\"DepartureDateTxt\":\"Wed, 15 Nov\",\"ArrivalDateTxt\":\"Thu, 16 Nov\",\"FlightDuration\":\"19h 35m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11975.8,\"ApiResultIndex\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"861f9-0839c-567c1-39eca\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-10-17T18:39:51.971\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10200,\"Tax\":1775.8,\"YQTax\":0,\"OtherCharges\":1033,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":521,\"CarrierMiscFee\":210,\"MUFee\":0,\"intPublishedFare\":11975.8,\"PublishedFare\":11188.25,\"OfferedFare\":11188.25,\"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\":\"1\",\"TaxIN\":1775.8,\"BaseFareCal\":11188.25,\"BaseFare\":10200,\"CommissionEarned\":787.55,\"TDS\":-41.45,\"MF\":10,\"YQ\":0,\"AGST\":521,\"MFT\":1.8,\"OT\":1033,\"MU\":0,\"YR\":210,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"716\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-11-15T15:05\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-11-15T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"717\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-11-15T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-11-15T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":925,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"15h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"718\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2023-11-16T09:30\",\"SegFlightNumber\":\"UK-697\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-16T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-21-10-15-2-8296579117_2IXJSXRUK612SXRDELUK612DELATQUK697_40525732646332\",\"localFromDateTime\":\"2023-11-15 13:55\",\"localToDateTime\":\"2023-11-16 09:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Amritsar\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"departure_date\":\"15\\/11\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt ATQ\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"IXJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt ATQ, India\",\"sourceCityId\":13021,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/11\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-11-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"861f9-0839c-567c1-39eca\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-ATQ\"}}','2023-10-17 18:38:19'),(445,'41226-66ef7-f5ca3-607c7','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"25\\/10\\/2023\",\"check_out\":\"26\\/10\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"25\\/10\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-10-25\",\"checkoutDate\":\"2023-10-26\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-10-25\",\"strCheckout\":\"2023-10-26\",\"SearchHotelTraceId\":\"41226-66ef7-f5ca3-607c7\",\"interNationalSearch\":false}','2023-10-19 10:54:49'),(446,'635b5-772a8-cf0ce-ee17b','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"15\\/11\\/2023\",\"check_out\":\"16\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"15\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-15\",\"checkoutDate\":\"2023-11-16\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-15\",\"strCheckout\":\"2023-11-16\",\"SearchHotelTraceId\":\"635b5-772a8-cf0ce-ee17b\",\"interNationalSearch\":false}','2023-10-19 13:56:46'),(447,'7ec24-eca64-75fdf-b4fba','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"09\\/11\\/2023\",\"check_out\":\"10\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-09\",\"checkoutDate\":\"2023-11-10\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-09\",\"strCheckout\":\"2023-11-10\",\"SearchHotelTraceId\":\"7ec24-eca64-75fdf-b4fba\",\"interNationalSearch\":false}','2023-10-20 11:11:49'),(448,'0bfa8-1027b-cc689-31708','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"0bfa8-1027b-cc689-31708\",\"interNationalSearch\":false}','2023-10-20 17:53:03'),(449,'6cdad-deaa4-ede88-9dba3','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"07\\/11\\/2023\",\"check_out\":\"08\\/11\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"07\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-07\",\"checkoutDate\":\"2023-11-08\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-07\",\"strCheckout\":\"2023-11-08\",\"SearchHotelTraceId\":\"6cdad-deaa4-ede88-9dba3\",\"interNationalSearch\":false}','2023-10-23 10:55:24'),(450,'aa952-628f4-7fa58-4099f','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"aa952-628f4-7fa58-4099f\",\"interNationalSearch\":false}','2023-10-23 12:51:43'),(451,'a1d1b-a3d81-76b8b-a1f11','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"a1d1b-a3d81-76b8b-a1f11\",\"interNationalSearch\":false}','2023-10-24 11:03:22'),(452,'bb913-dd840-85bd2-71d93','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"08\\/11\\/2023\",\"check_out\":\"09\\/11\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"08\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-11-08\",\"checkoutDate\":\"2023-11-09\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-08\",\"strCheckout\":\"2023-11-09\",\"SearchHotelTraceId\":\"bb913-dd840-85bd2-71d93\",\"interNationalSearch\":false}','2023-10-26 13:53:59'),(453,'e93cd-2b577-82af1-86e35','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"15\\/11\\/2023\",\"check_out\":\"16\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"15\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-15\",\"checkoutDate\":\"2023-11-16\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-15\",\"strCheckout\":\"2023-11-16\",\"SearchHotelTraceId\":\"e93cd-2b577-82af1-86e35\",\"interNationalSearch\":false}','2023-11-01 13:01:44'),(454,'b34bb-8dded-22269-72a37','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Agra (India)\",\"check_in\":\"15\\/11\\/2023\",\"check_out\":\"16\\/11\\/2023\",\"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\":\"100589\",\"destination\":\"Agra\",\"hotel_countryCode\":\"IN\",\"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\":\"15\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"100589\",\"CountryCode\":\"IN\",\"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\":\"2023-11-15\",\"checkoutDate\":\"2023-11-16\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"100589\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-15\",\"strCheckout\":\"2023-11-16\",\"SearchHotelTraceId\":\"b34bb-8dded-22269-72a37\",\"interNationalSearch\":false}','2023-11-01 13:10:25'),(455,'da24c-c57ce-ec338-c8b10','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai (India)\",\"check_in\":\"16\\/11\\/2023\",\"check_out\":\"17\\/11\\/2023\",\"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\":\"0\",\"TBBCityId\":\"144306\",\"destination\":\"Mumbai\",\"hotel_countryCode\":\"IN\",\"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\":\"16\\/11\\/2023\",\"NoOfNights\":1,\"CityId\":\"144306\",\"CountryCode\":\"IN\",\"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\":\"2023-11-16\",\"checkoutDate\":\"2023-11-17\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"144306\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2023-11-16\",\"strCheckout\":\"2023-11-17\",\"SearchHotelTraceId\":\"da24c-c57ce-ec338-c8b10\",\"interNationalSearch\":false}','2023-11-01 15:13:28'),(457,'68c5f-af523-93928-3d6de','{\"BookingData\":[{\"bookingId\":\"BKR113776512082\",\"bookingId_TJ\":\"TJ113776512082\",\"FlightNumber\":\"EY-5411\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"03:50\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2023-12-05T03:50\",\"LocalFromTime\":\"2023-12-05 03:50\",\"FromUTCTime\":\"2023-12-05T03:50\",\"LocalToTime\":\"2023-12-05 19:15\",\"ToUTCTime\":\"2023-12-05T19:15\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":490,\"LAYOVERDuration\":\"8h 10m\",\"FlyingMinutes\":835,\"DepartureDateTxt\":\"Tue, 05 Dec\",\"ArrivalDateTxt\":\"Tue, 05 Dec\",\"FlightDuration\":\"15h 25m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":27983.6,\"PublishedFareTxt\":\"27,984\",\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FareRuleDetails\":{\"fareRule\":{\"XNB-BLR\":{\"tfr\":{\"DATECHANGE\":[{\"amount\":4910,\"additionalFee\":50,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"CRF\":50,\"ARFT\":245.5,\"ARF\":4910,\"CRFT\":9},\"pp\":\"BEFORE_DEPARTURE\"},{\"amount\":4465,\"additionalFee\":50,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"CRF\":50,\"ARFT\":223.25,\"ARF\":4465,\"CRFT\":9},\"pp\":\"AFTER_DEPARTURE\"}],\"CANCELLATION\":[{\"policyInfo\":\"Not Refundable\",\"fcs\":[],\"pp\":\"BEFORE_DEPARTURE\"},{\"policyInfo\":\"Not Refundable\",\"fcs\":[],\"pp\":\"AFTER_DEPARTURE\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14520,\"Tax\":13463.6,\"YQTax\":7994,\"OtherCharges\":5446,\"Discount\":0,\"ServiceFee\":20,\"ManagementFeeTax\":3.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":27983.6,\"PublishedFare\":27147.98,\"OfferedFare\":27147.98,\"CommissionEarned\":835.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-43.98,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"32-27-21-20-12-2-15-10-5842277974_0XNBAUHEY5411AUHBLREY238_103798547566070\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Economy Hbo\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":835.62,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13463.6,\"BaseFareCal\":27147.98,\"BaseFare\":14520,\"CommissionEarned\":835.62,\"TDS\":-43.98,\"MF\":20,\"YQ\":7994,\"AGST\":0,\"MFT\":3.6,\"OT\":5446,\"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\":\"0KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":835.62,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":27147.98,\"CostToCustomer\":27147.98,\"BaseFareCal\":27147.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":27147.98,\"intOfferedFare\":27147.98,\"intPublishFare\":27983.6,\"TripjackMarkup\":0,\"TripjackCommission\":835.62,\"TripjackTDS\":\"43.98\",\"AddiMarkup\":0,\"CommisionPass\":835.62,\"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\":\"268\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-12-05T05:50\",\"SegFlightNumber\":\"EY-5411\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-12-05T03:50\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":490,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"03:50\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"8h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal A\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"269\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-12-05T19:15\",\"SegFlightNumber\":\"EY-238\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-12-05T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":225,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal A\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"68c5f-af523-93928-3d6de\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-01T15:20:51.646\",\"strTraceId\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-12-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":8219,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR113776512082\",\"bookingId_TJ\":\"TJ113776512082\",\"FlightNumber\":\"EY-5411\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"strTraceId\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"03:50\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2023-12-05T03:50\",\"LocalFromTime\":\"2023-12-05 03:50\",\"FromUTCTime\":\"2023-12-05T03:50\",\"LocalToTime\":\"2023-12-05 19:15\",\"ToUTCTime\":\"2023-12-05T19:15\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":490,\"LAYOVERDuration\":\"8h 10m\",\"FlyingMinutes\":835,\"DepartureDateTxt\":\"Tue, 05 Dec\",\"ArrivalDateTxt\":\"Tue, 05 Dec\",\"FlightDuration\":\"15h 25m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":27983.6,\"ApiResultIndex\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"SearchFlightTraceId\":\"68c5f-af523-93928-3d6de\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-01T15:20:51.646\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14520,\"Tax\":13463.6,\"YQTax\":7994,\"OtherCharges\":5446,\"Discount\":0,\"ServiceFee\":20,\"ManagementFeeTax\":3.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":27983.6,\"PublishedFare\":27147.98,\"OfferedFare\":27147.98,\"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\":13463.6,\"BaseFareCal\":27147.98,\"BaseFare\":14520,\"CommissionEarned\":835.62,\"TDS\":-43.98,\"MF\":20,\"YQ\":7994,\"AGST\":0,\"MFT\":3.6,\"OT\":5446,\"MU\":0,\"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\":\"268\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-12-05T05:50\",\"SegFlightNumber\":\"EY-5411\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2023-12-05T03:50\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":490,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"03:50\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"8h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal A\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"269\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-12-05T19:15\",\"SegFlightNumber\":\"EY-238\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-12-05T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":225,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal A\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-27-21-20-12-2-15-10-5842277974_46XNBAUHEY5411AUHBLREY238_462740076947280\",\"localFromDateTime\":\"2023-12-05 03:50\",\"localToDateTime\":\"2023-12-05 19:15\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":8219,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Dubai\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"DXB\",\"ContSysId_1\":\"228\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"05\\/12\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" AE - Dubai Intl Arpt DXB\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DXB\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"DXB\",\"to\":\"BLR\",\"sourceCityText\":\"Dubai, AE - Dubai Intl Arpt DXB, United Arab Emirates\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":8219,\"destinationCityId\":2262,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/12\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-12-05\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"68c5f-af523-93928-3d6de\",\"PreferredAirline\":null,\"from_city_\":\"1__DXB-BLR\"}}','2023-11-01 15:19:22'),(459,'22fbb-df374-99255-28ecf','{\"BookingData\":[{\"bookingId\":\"BKR104776527392\",\"bookingId_TJ\":\"TJ104776527392\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"20:20\",\"TravelDate\":\"2023-11-25T13:55\",\"LocalFromTime\":\"2023-11-25 13:55\",\"FromUTCTime\":\"2023-11-25T13:55\",\"LocalToTime\":\"2023-11-25 20:20\",\"ToUTCTime\":\"2023-11-25T20:20\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":80,\"LAYOVERDuration\":\"1h 20m\",\"FlyingMinutes\":385,\"DepartureDateTxt\":\"Sat, 25 Nov\",\"ArrivalDateTxt\":\"Sat, 25 Nov\",\"FlightDuration\":\"6h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9736.8,\"PublishedFareTxt\":\"9,737\",\"ApiResultIndex\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXJ-BLR\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"No Refund\",\"st\":\"0\",\"et\":\"26\"}],\"DATECHANGE\":[{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"CRF\":50,\"ARFT\":157.5,\"CRFT\":9,\"ARF\":3150},\"st\":\"26\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3675,\"additionalFee\":50,\"fcs\":{\"ACFT\":183.75,\"CCF\":50,\"ACF\":3675,\"CCFT\":9},\"st\":\"26\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seats\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8068,\"Tax\":1668.8,\"YQTax\":0,\"OtherCharges\":1033,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":414,\"CarrierMiscFee\":210,\"MUFee\":0,\"intPublishedFare\":9736.8,\"PublishedFare\":9115.98,\"OfferedFare\":9115.98,\"CommissionEarned\":620.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-32.67,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"32-21-10-15-2-5135170975_0IXJSXRUK612SXRDELUK612DELBLRUK813_126365986606557\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Economy Lite\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":620.82,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1668.8,\"BaseFareCal\":9115.98,\"BaseFare\":8068,\"CommissionEarned\":620.82,\"TDS\":-32.67,\"MF\":10,\"YQ\":0,\"AGST\":414,\"MFT\":1.8,\"OT\":1033,\"MU\":0,\"YR\":210,\"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\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":100,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":620.82,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":9115.98,\"CostToCustomer\":9115.98,\"BaseFareCal\":9115.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":9115.98,\"intOfferedFare\":9115.98,\"intPublishFare\":9736.8,\"TripjackMarkup\":0,\"TripjackCommission\":620.82,\"TripjackTDS\":\"32.67\",\"AddiMarkup\":0,\"CommisionPass\":620.82,\"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\":\"408\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-11-25T15:05\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-11-25T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"409\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-11-25T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-11-25T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":45,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-11-25T20:20\",\"SegFlightNumber\":\"UK-813\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-25T17:40\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:40\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"22fbb-df374-99255-28ecf\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-01T18:00:26.424\",\"strTraceId\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-11-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104776527392\",\"bookingId_TJ\":\"TJ104776527392\",\"FlightNumber\":\"UK-612\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"strTraceId\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:55\",\"ArrivalTime\":\"20:20\",\"TravelDate\":\"2023-11-25T13:55\",\"LocalFromTime\":\"2023-11-25 13:55\",\"FromUTCTime\":\"2023-11-25T13:55\",\"LocalToTime\":\"2023-11-25 20:20\",\"ToUTCTime\":\"2023-11-25T20:20\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Srinagar\",\"GroundTime\":80,\"LAYOVERDuration\":\"1h 20m\",\"FlyingMinutes\":385,\"DepartureDateTxt\":\"Sat, 25 Nov\",\"ArrivalDateTxt\":\"Sat, 25 Nov\",\"FlightDuration\":\"6h 25m\",\"SourcePlaceSysId\":13021,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"IXJ\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":9736.8,\"ApiResultIndex\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"22fbb-df374-99255-28ecf\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-01T18:00:26.424\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":8068,\"Tax\":1668.8,\"YQTax\":0,\"OtherCharges\":1033,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":414,\"CarrierMiscFee\":210,\"MUFee\":0,\"intPublishedFare\":9736.8,\"PublishedFare\":9115.98,\"OfferedFare\":9115.98,\"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\":\"1\",\"TaxIN\":1668.8,\"BaseFareCal\":9115.98,\"BaseFare\":8068,\"CommissionEarned\":620.82,\"TDS\":-32.67,\"MF\":10,\"YQ\":0,\"AGST\":414,\"MFT\":1.8,\"OT\":1033,\"MU\":0,\"YR\":210,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"408\",\"originAirportName\":\"Satwari Arpt\",\"destinationAirportName\":\"Srinagar Arpt\",\"originCityName\":\"Jammu\",\"originCountryName\":\"India\",\"destinationCityName\":\"Srinagar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"SXR\",\"destinationArrTime\":\"2023-11-25T15:05\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"IXJ\",\"originDepTime\":\"2023-11-25T13:55\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":35,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:55\",\"strArrivalDtTime\":\"15:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 35m\",\"LAYOVERCity\":\"Srinagar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"409\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-11-25T16:55\",\"SegFlightNumber\":\"UK-612\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2023-11-25T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":45,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-11-25T20:20\",\"SegFlightNumber\":\"UK-813\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-25T17:40\",\"TripIndicator\":\"\",\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:40\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-21-10-15-2-5135170975_4IXJSXRUK612SXRDELUK612DELBLRUK813_109754041146216\",\"localFromDateTime\":\"2023-11-25 13:55\",\"localToDateTime\":\"2023-11-25 20:20\",\"strSourceAirportCode\":\"IXJ\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":13021,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jammu\",\"mytrip_city_to\":\"Bengaluru\",\"source_city\":\"IXJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"25\\/11\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Satwari Arpt IXJ\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXJ\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"IXJ\",\"to\":\"BLR\",\"sourceCityText\":\"Jammu, IN - Satwari Arpt IXJ, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":13021,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/11\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-11-25\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"22fbb-df374-99255-28ecf\",\"PreferredAirline\":null,\"from_city_\":\"1__IXJ-BLR\"}}','2023-11-01 17:58:53'),(461,'5210e-8dd3e-df418-7d3e9','{\"BookingData\":[{\"bookingId\":\"BKR101476527586\",\"bookingId_TJ\":\"TJ101476527586\",\"FlightNumber\":\"SG-8536\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:15\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2023-11-25T06:15\",\"LocalFromTime\":\"2023-11-25 06:15\",\"FromUTCTime\":\"2023-11-25T06:15\",\"LocalToTime\":\"2023-11-25 09:20\",\"ToUTCTime\":\"2023-11-25T09:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 25 Nov\",\"ArrivalDateTxt\":\"Sat, 25 Nov\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6736.8,\"PublishedFareTxt\":\"6,737\",\"ApiResultIndex\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BLR\":{\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Working hrs  Monday to Saturday: 10.00 HRS ( 10 AM )  to 23.00HRS ( 11PM ) Sunday : 11.00 HRS ( 11 AM )  to 20.00 HRS ( 8 PM )\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":[],\"st\":\"0\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":[],\"st\":\"0\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"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 |\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6350,\"Tax\":386.8,\"YQTax\":0,\"OtherCharges\":375,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6736.8,\"PublishedFare\":6736.8,\"OfferedFare\":6736.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-7215630811_0DELBLRSG8536_24964285515843\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"0.00\",\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":386.8,\"BaseFareCal\":6736.8,\"BaseFare\":6350,\"CommissionEarned\":0,\"TDS\":0,\"MF\":10,\"YQ\":0,\"AGST\":0,\"MFT\":1.8,\"OT\":375,\"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\":\"7 Kg\"}],\"CancelCharge\":100,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":6736.8,\"CostToCustomer\":6736.8,\"BaseFareCal\":6736.8,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":6736.8,\"intOfferedFare\":6736.8,\"intPublishFare\":6736.8,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"0.00\",\"CommisionPass\":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\":\"995\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-11-25T09:20\",\"SegFlightNumber\":\"SG-8536\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-25T06:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:15\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5210e-8dd3e-df418-7d3e9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-11-01T18:02:25.679\",\"strTraceId\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-11-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR101476527586\",\"bookingId_TJ\":\"TJ101476527586\",\"FlightNumber\":\"SG-8536\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"strTraceId\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:15\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2023-11-25T06:15\",\"LocalFromTime\":\"2023-11-25 06:15\",\"FromUTCTime\":\"2023-11-25T06:15\",\"LocalToTime\":\"2023-11-25 09:20\",\"ToUTCTime\":\"2023-11-25T09:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 25 Nov\",\"ArrivalDateTxt\":\"Sat, 25 Nov\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6736.8,\"ApiResultIndex\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"5210e-8dd3e-df418-7d3e9\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-11-01T18:02:25.679\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":6350,\"Tax\":386.8,\"YQTax\":0,\"OtherCharges\":375,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6736.8,\"PublishedFare\":6736.8,\"OfferedFare\":6736.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\":\"1\",\"TaxIN\":386.8,\"BaseFareCal\":6736.8,\"BaseFare\":6350,\"CommissionEarned\":0,\"TDS\":0,\"MF\":10,\"YQ\":0,\"AGST\":0,\"MFT\":1.8,\"OT\":375,\"MU\":0,\"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\":\"995\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2023-11-25T09:20\",\"SegFlightNumber\":\"SG-8536\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-11-25T06:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:15\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-7215630811_6DELBLRSG8536_26741707079502\",\"localFromDateTime\":\"2023-11-25 06:15\",\"localToDateTime\":\"2023-11-25 09:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Bengaluru\",\"class\":\"2\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"FareTypes\":\"REGULAR\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"departure_date\":\"25\\/11\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt BLR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"DEL\",\"to\":\"BLR\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt BLR, India\",\"sourceCityId\":7701,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/11\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-11-25\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5210e-8dd3e-df418-7d3e9\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BLR\"}}','2023-11-01 18:00:52'),(463,'df12d-a0297-4d886-8c89b','{\"BookingData\":[{\"bookingId\":\"BKR102476669339\",\"bookingId_TJ\":\"TJ102476669339\",\"FlightNumber\":\"AI-636\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2023-11-10T16:40\",\"LocalFromTime\":\"2023-11-10 16:40\",\"FromUTCTime\":\"2023-11-10T16:40\",\"LocalToTime\":\"2023-11-10 18:05\",\"ToUTCTime\":\"2023-11-10T18:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Fri, 10 Nov\",\"ArrivalDateTxt\":\"Fri, 10 Nov\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5214.8,\"PublishedFareTxt\":\"5,215\",\"ApiResultIndex\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IDR-BOM\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"Non-Refundable\",\"st\":\"0\",\"et\":\"8760\"}],\"DATECHANGE\":[{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150},\"st\":\"26\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"policyInfo\":\"Cancellation is not permitted\",\"fcs\":[],\"st\":\"0\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seats\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4220,\"Tax\":994.8,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5214.8,\"PublishedFare\":5090.04,\"OfferedFare\":5090.04,\"CommissionEarned\":124.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-6.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_183105163425287\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Comfort\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"CommisionPass\":124.76,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":994.8,\"BaseFareCal\":5090.04,\"BaseFare\":4220,\"CommissionEarned\":124.76,\"TDS\":-6.57,\"MF\":10,\"YQ\":0,\"AGST\":220,\"MFT\":1.8,\"OT\":593,\"MU\":0,\"YR\":170,\"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\":\"20KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":100,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":124.76,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5090.04,\"CostToCustomer\":5090.04,\"BaseFareCal\":5090.04,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":5090.04,\"intOfferedFare\":5090.04,\"intPublishFare\":5214.8,\"TripjackMarkup\":0,\"TripjackCommission\":124.76,\"TripjackTDS\":\"6.57\",\"AddiMarkup\":0,\"CommisionPass\":124.76,\"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\":\"111\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-11-10T18:05\",\"SegFlightNumber\":\"AI-636\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-11-10T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"5KG\",\"Price\":2520,\"amount\":2520,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"10KG\",\"Price\":5040,\"amount\":5040,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"15KG\",\"Price\":7560,\"amount\":7560,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"20KG\",\"Price\":10080,\"amount\":10080,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"25KG\",\"Price\":12600,\"amount\":12600,\"Weight\":\"25KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"df12d-a0297-4d886-8c89b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-03T13:40:05.353\",\"strTraceId\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-11-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR102476669339\",\"bookingId_TJ\":\"TJ102476669339\",\"FlightNumber\":\"AI-636\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"strTraceId\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2023-11-10T16:40\",\"LocalFromTime\":\"2023-11-10 16:40\",\"FromUTCTime\":\"2023-11-10T16:40\",\"LocalToTime\":\"2023-11-10 18:05\",\"ToUTCTime\":\"2023-11-10T18:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Fri, 10 Nov\",\"ArrivalDateTxt\":\"Fri, 10 Nov\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":12706,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"IDR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5214.8,\"ApiResultIndex\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"df12d-a0297-4d886-8c89b\",\"ICSourceSysId\":7,\"estimetedTime\":15,\"estimetedDateTime\":\"2023-11-03T13:40:05.353\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4220,\"Tax\":994.8,\"YQTax\":0,\"OtherCharges\":593,\"Discount\":0,\"ServiceFee\":10,\"ManagementFeeTax\":1.8,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5214.8,\"PublishedFare\":5090.04,\"OfferedFare\":5090.04,\"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\":\"1\",\"TaxIN\":994.8,\"BaseFareCal\":5090.04,\"BaseFare\":4220,\"CommissionEarned\":124.76,\"TDS\":-6.57,\"MF\":10,\"YQ\":0,\"AGST\":220,\"MFT\":1.8,\"OT\":593,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"111\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-11-10T18:05\",\"SegFlightNumber\":\"AI-636\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2023-11-10T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"32-21-10-15-2-2083689512_0IDRBOMAI636_14200734305559\",\"localFromDateTime\":\"2023-11-10 16:40\",\"localToDateTime\":\"2023-11-10 18:05\",\"strSourceAirportCode\":\"IDR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12706,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Indore\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"IDR\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"10\\/11\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Devi Ahilya Bai Holkar Arpt IDR\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IDR\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"IDR\",\"to\":\"BOM\",\"sourceCityText\":\"Indore, IN - Devi Ahilya Bai Holkar Arpt IDR, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":12706,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"10\\/11\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-11-10\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"df12d-a0297-4d886-8c89b\",\"PreferredAirline\":null,\"from_city_\":\"1__IDR-BOM\"}}','2023-11-03 13:38:31'),(465,'b5484-c59a2-fbe19-5642d','{\"FlightBookingData\":[{\"bookingId\":\"DMCS105200848377\",\"bookingId_TJ\":\"TJS105200848377\",\"FlightNumber\":\"AI-635\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"b5484-c59a2-fbe19-5642d\",\"apiTraceId\":\"15-2-10-9677488800_0BOMIDRAI635~20303671600764\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"09:05\",\"TravelDate\":\"2024-02-09T07:40\",\"LocalFromTime\":\"2024-02-09 07:40\",\"FromUTCTime\":\"2024-02-09T07:40\",\"LocalToTime\":\"2024-02-09 09:05\",\"ToUTCTime\":\"2024-02-09T09:05\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Fri, 09 Feb\",\"ArrivalDateTxt\":\"Fri, 09 Feb\",\"FlightDuration\":\"01h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12706\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"7,154\",\"ApiResultIndex\":\"15-2-10-9677488800_0BOMIDRAI635~20303671600764\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":5730,\"Tax\":1591,\"YQTax\":0,\"OtherCharges\":654,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":295,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":7321,\"PublishedFare\":7154,\"PublishedFareAgent\":7154,\"OfferedFareAgent\":7154,\"OfferedFare\":7036,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"R15-2-10-9677488800_0BOMIDRAI635~20361022703864\",\"ApiResultIndex\":\"R15-2-10-9677488800_0BOMIDRAI635~20361022703864\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"colors\":null,\"SeatAvailable\":null,\"classOfBooking\":\"W\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7154,\"CostToAgent\":7154,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1591,\"TotalBaseFare\":7321,\"BaseFareCal\":7054,\"BaseFare\":5730,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":295,\"MFT\":72,\"OT\":654,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7154,\"CostToAgent\":7154,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7154,\"CostToCustomer\":7154,\"BaseFareCal\":7054,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7054,\"intOfferedFare\":7036,\"intPublishFare\":7321,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":0,\"BR\":\"=\",\"Agencycommission\":285,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":7154,\"CostToAgent\":7154,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"tripbinfo\":{\"BOM-IDR\":{\"ADULT\":{\"cabin\":\"7 Kg\",\"checkin\":\"25 Kg (01 Piece only)\"}}},\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"144\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2024-02-09T09:05\",\"SegFlightNumber\":\"AI-635\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2024-02-09T07:40\",\"TripIndicator\":1,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":85,\"GroundTime\":0,\"EquipmentType\":\"\",\"StopsOver\":\"\",\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.ktas.in\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VGML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"AVML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VJML\",\"Price\":0,\"cost\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VLML\",\"Price\":0,\"cost\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"FPML\",\"Price\":0,\"cost\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"MOML\",\"Price\":0,\"cost\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HNML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"SFML\",\"Price\":0,\"cost\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"DBML\",\"Price\":0,\"cost\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NLML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"CHML\",\"Price\":0,\"cost\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BBML\",\"Price\":0,\"cost\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BLML\",\"Price\":0,\"cost\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"GFML\",\"Price\":0,\"cost\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"KSML\",\"Price\":0,\"cost\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LCML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LFML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LSML\",\"Price\":0,\"cost\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"RVML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VOML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PFML\",\"Price\":0,\"cost\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"ORML\",\"Price\":0,\"cost\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NSML\",\"Price\":0,\"cost\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PRML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LPML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HFML\",\"Price\":0,\"cost\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NFML\",\"Price\":0,\"cost\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VGML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"AVML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VJML\",\"Price\":0,\"cost\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VLML\",\"Price\":0,\"cost\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"FPML\",\"Price\":0,\"cost\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"MOML\",\"Price\":0,\"cost\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HNML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"SFML\",\"Price\":0,\"cost\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"DBML\",\"Price\":0,\"cost\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NLML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"CHML\",\"Price\":0,\"cost\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BBML\",\"Price\":0,\"cost\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BLML\",\"Price\":0,\"cost\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"GFML\",\"Price\":0,\"cost\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"KSML\",\"Price\":0,\"cost\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LCML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LFML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LSML\",\"Price\":0,\"cost\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"RVML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VOML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PFML\",\"Price\":0,\"cost\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"ORML\",\"Price\":0,\"cost\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NSML\",\"Price\":0,\"cost\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PRML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LPML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HFML\",\"Price\":0,\"cost\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NFML\",\"Price\":0,\"cost\":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-9677488800_0BOMIDRAI635~20303671600764\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2024-02-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"IDR\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"12706\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"isHoldAllowed\":true,\"isDocIdAllowedAplicable\":false,\"isDocIdAllowedMandatory\":false}],\"apiTraceId\":\"15-2-10-9677488800_0BOMIDRAI635~20303671600764\",\"SearchTraceId\":\"b5484-c59a2-fbe19-5642d\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\"],\"to_des\":[\"Indore (IDR)\",\"DEL\"],\"departure_date\":[\"09\\/02\\/2024\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"IDR\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Indore, IN - Devi Ahilya Bai Holkar Arpt (IDR), India\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\" IN - Devi Ahilya Bai Holkar Arpt (IDR)\"],\"departure_dateG\":[\"07\\/02\\/2024\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"FareTypes\":\"REGULAR\",\"apisource\":\"undefined\",\"from_city\":[\"Mumbai (BOM)\"],\"to_city\":[\"Indore (IDR)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2024-02-09\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[12706],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"b5484-c59a2-fbe19-5642d\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"IDR\"],\"from\":[\"BOM\"],\"to\":[\"IDR\"],\"Fromlabel\":[\"Mumbai\"],\"Tolabel\":[\"Indore\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Indore, IN - Devi Ahilya Bai Holkar Arpt (IDR), India\"],\"TripType\":0,\"SearchRoute\":\"1\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"09\\/02\\/2024\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":[],\"DepatureDateMobile\":[\"09 Feb Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2024-02-07 11:38:42\",\"IsChangeSearch\":1},\"SSRArr\":{\"Meal\":[[{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VGML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"AVML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VJML\",\"Price\":0,\"cost\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VLML\",\"Price\":0,\"cost\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"FPML\",\"Price\":0,\"cost\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"MOML\",\"Price\":0,\"cost\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HNML\",\"Price\":0,\"cost\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"SFML\",\"Price\":0,\"cost\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"DBML\",\"Price\":0,\"cost\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NLML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"CHML\",\"Price\":0,\"cost\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BBML\",\"Price\":0,\"cost\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"BLML\",\"Price\":0,\"cost\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"GFML\",\"Price\":0,\"cost\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"KSML\",\"Price\":0,\"cost\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LCML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LFML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LSML\",\"Price\":0,\"cost\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"RVML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"VOML\",\"Price\":0,\"cost\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PFML\",\"Price\":0,\"cost\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"ORML\",\"Price\":0,\"cost\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NSML\",\"Price\":0,\"cost\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"PRML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"LPML\",\"Price\":0,\"cost\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"HFML\",\"Price\":0,\"cost\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"144\",\"Code\":\"NFML\",\"Price\":0,\"cost\":0,\"Description\":\"No Fish Meal\"}]],\"Baggage\":[[]],\"SeatPreference\":[]},\"FareRuleRequest\":[{\"status\":{\"success\":false,\"httpStatus\":403},\"errors\":[{\"errCode\":\"412\",\"message\":\"UnAuthorized Access!, The provided API key is invalid.\"}]}]}','2024-02-07 11:39:22'),(466,'61b34-7cff9-f5b4c-abe6f','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Hyderabad (India)\",\"check_in\":\"24\\/02\\/2024\",\"check_out\":\"26\\/02\\/2024\",\"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\"],\"CountryId\":\"101\",\"cityid\":\"12538\",\"TBBCityId\":\"145710\",\"destination\":\"Hyderabad\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/02\\/2024\",\"NoOfNights\":2,\"CityId\":\"145710\",\"CountryCode\":\"IN\",\"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\":\"2024-02-24\",\"checkoutDate\":\"2024-02-26\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"145710\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":2,\"strCheckin\":\"2024-02-24\",\"strCheckout\":\"2024-02-26\",\"SearchHotelTraceId\":\"61b34-7cff9-f5b4c-abe6f\",\"interNationalSearch\":false}','2024-02-07 20:51:37'),(467,'631ff-61f7f-b45ea-477bd','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Hyderabad (India)\",\"check_in\":\"24\\/02\\/2024\",\"check_out\":\"26\\/02\\/2024\",\"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\"],\"CountryId\":\"101\",\"cityid\":\"12538\",\"TBBCityId\":\"145710\",\"destination\":\"Hyderabad\",\"hotel_countryCode\":\"IN\",\"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\":\"24\\/02\\/2024\",\"NoOfNights\":2,\"CityId\":\"145710\",\"CountryCode\":\"IN\",\"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\":\"2024-02-24\",\"checkoutDate\":\"2024-02-26\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"145710\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":2,\"strCheckin\":\"2024-02-24\",\"strCheckout\":\"2024-02-26\",\"SearchHotelTraceId\":\"631ff-61f7f-b45ea-477bd\",\"interNationalSearch\":false}','2024-02-07 20:51:50');
/*!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 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 */;
/*!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=3 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,'Goa','goa','1682676379_blog.jpg','1682676379.jpg',NULL,'neha','2023-05-18',NULL,NULL,NULL,'',NULL,'2022-12-21 17:10:13','2022-12-21 17:10:13',NULL,1,'',1,0,'','','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(2,'Jaipur','jaipur','1682676350_blog.jpg','1682676350.jpg',NULL,'neha','2023-06-16',NULL,NULL,NULL,'',NULL,'2022-12-21 17:13:20','2022-12-21 17:13:20',NULL,1,'',1,0,'','','','',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:31:59

Youez - 2016 - github.com/yon3zu
LinuXploit